]> Pileus Git - ~andy/linux/commitdiff
[CIFS] Fix minor endian error in durable handle patch series
authorSteve French <smfrench@gmail.com>
Wed, 10 Jul 2013 17:50:57 +0000 (12:50 -0500)
committerSteve French <smfrench@gmail.com>
Wed, 10 Jul 2013 18:08:55 +0000 (13:08 -0500)
Fix endian warning:

  CHECK   fs/cifs/smb2pdu.c
fs/cifs/smb2pdu.c:1068:40: warning: incorrect type in assignment (different base types)
fs/cifs/smb2pdu.c:1068:40:    expected restricted __le32 [usertype] Next
fs/cifs/smb2pdu.c:1068:40:    got unsigned long

Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/smb2pdu.c

index c7ad06fc9d63313ad9f8fafe3a776d48a09ba663..abc9c2809b519c50623209d341733c31a752b2b3 100644 (file)
@@ -1065,7 +1065,8 @@ SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
                if (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
                        struct create_context *ccontext =
                            (struct create_context *)iov[num_iovecs-1].iov_base;
-                       ccontext->Next = sizeof(struct create_lease);
+                       ccontext->Next =
+                               cpu_to_le32(sizeof(struct create_lease));
                }
                rc = add_durable_context(iov, &num_iovecs, oparms);
                if (rc) {