projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e7f387
)
ocfs2: Zero out padding of on disk dquot structure
author
Jan Kara
<jack@suse.cz>
Wed, 22 Jul 2009 11:17:18 +0000
(13:17 +0200)
committer
Joel Becker
<joel.becker@oracle.com>
Thu, 23 Jul 2009 17:59:17 +0000
(10:59 -0700)
Padding fields of on-disk dquot structure were not zeroed. Zero them
so that it's easier to use them later.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
fs/ocfs2/quota_global.c
patch
|
blob
|
history
diff --git
a/fs/ocfs2/quota_global.c
b/fs/ocfs2/quota_global.c
index
a66cb82
..
7248db6
100644
(file)
--- a/
fs/ocfs2/quota_global.c
+++ b/
fs/ocfs2/quota_global.c
@@
-69,6
+69,7
@@
static void ocfs2_global_mem2diskdqb(void *dp, struct dquot *dquot)
d->dqb_curspace = cpu_to_le64(m->dqb_curspace);
d->dqb_btime = cpu_to_le64(m->dqb_btime);
d->dqb_itime = cpu_to_le64(m->dqb_itime);
+ d->dqb_pad1 = d->dqb_pad2 = 0;
}
static int ocfs2_global_is_id(void *dp, struct dquot *dquot)