]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[GFS2] gfs2 endianness bug: be16 assigned to be32 field
authorAl Viro <viro@ftp.linux.org.uk>
Sat, 14 Oct 2006 15:49:30 +0000 (16:49 +0100)
committerSteven Whitehouse <swhiteho@redhat.com>
Fri, 20 Oct 2006 13:14:08 +0000 (09:14 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/dir.c

index 459498cac93bdbafc4ac4d9b40bf62f29e698071..d43caf04bb68c4d6fa789666e60402fa4ba4dd69 100644 (file)
@@ -815,7 +815,7 @@ static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh,
        leaf = (struct gfs2_leaf *)bh->b_data;
        leaf->lf_depth = cpu_to_be16(depth);
        leaf->lf_entries = 0;
-       leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE);
+       leaf->lf_dirent_format = cpu_to_be32(GFS2_FORMAT_DE);
        leaf->lf_next = 0;
        memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
        dent = (struct gfs2_dirent *)(leaf+1);