[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1462375188-6493-1-git-send-email-chao@kernel.org>
Date: Wed, 4 May 2016 23:19:46 +0800
From: Chao Yu <chao@...nel.org>
To: jaegeuk@...nel.org
Cc: linux-f2fs-devel@...ts.sourceforge.net,
linux-kernel@...r.kernel.org, Chao Yu <yuchao0@...wei.com>
Subject: [PATCH 2/4] f2fs: remove unneeded memset when updating xattr
From: Chao Yu <yuchao0@...wei.com>
Each of fields in struct f2fs_xattr_entry will be assigned later,
so previously we don't need to memset the struct.
Signed-off-by: Chao Yu <yuchao0@...wei.com>
---
fs/f2fs/xattr.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/fs/f2fs/xattr.c b/fs/f2fs/xattr.c
index 8ad5847..4be7a9d 100644
--- a/fs/f2fs/xattr.c
+++ b/fs/f2fs/xattr.c
@@ -528,7 +528,6 @@ static int __f2fs_setxattr(struct inode *inode, int index,
* Before we come here, old entry is removed.
* We just write new entry.
*/
- memset(last, 0, newsize);
last->e_name_index = index;
last->e_name_len = len;
memcpy(last->e_name, name, len);
--
2.7.2
Powered by blists - more mailing lists