]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
cifs: replaced kmalloc + memset with kzalloc
authorDia Vasile <kill.elohim@hotmail.com>
Sun, 10 Mar 2013 12:29:04 +0000 (14:29 +0200)
committerSteve French <smfrench@gmail.com>
Sun, 5 May 2013 03:08:19 +0000 (22:08 -0500)
Signed-off-by: Diana Vasile <kill.elohim@hotmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/smb2pdu.c

index 41d9d0725f0f3a47d432aa754803a4596c0381ac..83ef66ed4c841baf8b3f856935cb61dee926d128 100644 (file)
@@ -846,12 +846,10 @@ create_lease_buf(u8 *lease_key, u8 oplock)
 {
        struct create_lease *buf;
 
-       buf = kmalloc(sizeof(struct create_lease), GFP_KERNEL);
+       buf = kzalloc(sizeof(struct create_lease), GFP_KERNEL);
        if (!buf)
                return NULL;
 
-       memset(buf, 0, sizeof(struct create_lease));
-
        buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key));
        buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8)));
        if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE)