aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk.kim@samsung.com>2013-01-03 08:57:21 +0900
committerJaegeuk Kim <jaegeuk.kim@samsung.com>2013-01-04 09:46:27 +0900
commitd66d1f76878fcb1e78592fe8aecd13f438d6c0d7 (patch)
tree4f079f4fbbf4f11bfee0c627b8d9ad54b88d6136 /fs/f2fs
parentf2fs: update f2fs partition info about SIT/NAT layout (diff)
downloadlinux-dev-d66d1f76878fcb1e78592fe8aecd13f438d6c0d7.tar.xz
linux-dev-d66d1f76878fcb1e78592fe8aecd13f438d6c0d7.zip
f2fs: initialize newly allocated dnode structure
This patch resolves Coverity #753112. In practical, the existing code flow does not fall into the reported errorneous path. But, anyway, let's avoid this for future. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-rw-r--r--fs/f2fs/f2fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
index 8199ee9f5875..280713289d8c 100644
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -211,11 +211,11 @@ struct dnode_of_data {
static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
struct page *ipage, struct page *npage, nid_t nid)
{
+ memset(dn, 0, sizeof(*dn));
dn->inode = inode;
dn->inode_page = ipage;
dn->node_page = npage;
dn->nid = nid;
- dn->inode_page_locked = 0;
}
/*