diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-07-17 09:36:28 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-07-17 09:36:28 -0400 |
commit | e0f2bf780a970f7aae9263db2e14149132671cf2 (patch) | |
tree | d763d095028efe598d3acf99389af9891d37bf1f /fs/gfs2/log.c | |
parent | 634ee0b9f458f3530b9c0ea7e6951dd03db7d678 (diff) | |
download | kernel_goldelico_gta04-e0f2bf780a970f7aae9263db2e14149132671cf2.zip kernel_goldelico_gta04-e0f2bf780a970f7aae9263db2e14149132671cf2.tar.gz kernel_goldelico_gta04-e0f2bf780a970f7aae9263db2e14149132671cf2.tar.bz2 |
[GFS2] Fix endian conversion bug
Fix an endian coversion bug in log.c spotted by Kevin Anderson.
Cc: Kevin Anderson <kanderso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/log.c')
-rw-r--r-- | fs/gfs2/log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c index 1596e94..60fdc94 100644 --- a/fs/gfs2/log.c +++ b/fs/gfs2/log.c @@ -386,10 +386,10 @@ static void log_write_header(struct gfs2_sbd *sdp, uint32_t flags, int pull) lh->lh_header.mh_magic = cpu_to_be32(GFS2_MAGIC); lh->lh_header.mh_type = cpu_to_be32(GFS2_METATYPE_LH); lh->lh_header.mh_format = cpu_to_be32(GFS2_FORMAT_LH); - lh->lh_sequence = be64_to_cpu(sdp->sd_log_sequence++); - lh->lh_flags = be32_to_cpu(flags); - lh->lh_tail = be32_to_cpu(tail); - lh->lh_blkno = be32_to_cpu(sdp->sd_log_flush_head); + lh->lh_sequence = cpu_to_be64(sdp->sd_log_sequence++); + lh->lh_flags = cpu_to_be32(flags); + lh->lh_tail = cpu_to_be32(tail); + lh->lh_blkno = cpu_to_be32(sdp->sd_log_flush_head); hash = gfs2_disk_hash(bh->b_data, sizeof(struct gfs2_log_header)); lh->lh_hash = cpu_to_be32(hash); |