From: Abhijith Das Date: Mon, 10 Jul 2006 17:36:12 +0000 (-0500) Subject: [PATCH] patch to init di_payload_format field in gfs2_dinode X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b2a580d87b33816aa9b50268f70666368e12f7df;p=deliverable%2Flinux.git [PATCH] patch to init di_payload_format field in gfs2_dinode A missing initialisation when creating a new on disk inode. Signed-off-by: Abhijith Das Signed-off-by: Steven Whitehouse --- diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 22ca3b5ddaea..e76f345517b7 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -696,6 +696,7 @@ static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl, } di->__pad1 = 0; + di->di_payload_format = cpu_to_be32(0); di->di_height = cpu_to_be32(0); di->__pad2 = 0; di->__pad3 = 0;