[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 <adas@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>

diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index 22ca3b5..e76f345 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -696,6 +696,7 @@
 	}
 
 	di->__pad1 = 0;
+	di->di_payload_format = cpu_to_be32(0);
 	di->di_height = cpu_to_be32(0);
 	di->__pad2 = 0;
 	di->__pad3 = 0;