projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ff1467
)
[GFS2] Bug fix relating to endian conversion in inode.c
author
Steven Whitehouse
<swhiteho@redhat.com>
Mon, 30 Jan 2006 11:49:32 +0000
(11:49 +0000)
committer
Steven Whitehouse
<swhiteho@redhat.com>
Mon, 30 Jan 2006 11:49:32 +0000
(11:49 +0000)
A two line fix to get endian conversion correct.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/inode.c
patch
|
blob
|
history
diff --git
a/fs/gfs2/inode.c
b/fs/gfs2/inode.c
index
9ed7c05
..
e4ba380
100644
(file)
--- a/
fs/gfs2/inode.c
+++ b/
fs/gfs2/inode.c
@@
-1002,7
+1002,8
@@
static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
di = (struct gfs2_dinode *)dibh->b_data;
- di->di_num = *inum;
+ di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
+ di->di_num.no_addr = cpu_to_be64(inum->no_addr);
di->di_mode = cpu_to_be32(mode);
di->di_uid = cpu_to_be32(uid);
di->di_gid = cpu_to_be32(gid);