public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* gfs2-utils: master - gfs2: fix endian conversion
@ 2009-05-14  8:10 Fabio M. Di Nitto
  0 siblings, 0 replies; only message in thread
From: Fabio M. Di Nitto @ 2009-05-14  8:10 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=6761412f3f324c3c6d4cba8ec26ba8be9383fc59
Commit:        6761412f3f324c3c6d4cba8ec26ba8be9383fc59
Parent:        db311d1be3cfd834310a0dc7c4a30ada9f411b7c
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Thu May 14 10:09:12 2009 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Thu May 14 10:09:48 2009 +0200

gfs2: fix endian conversion

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 gfs2/libgfs2/fs_ops.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gfs2/libgfs2/fs_ops.c b/gfs2/libgfs2/fs_ops.c
index 633901a..0799c03 100644
--- a/gfs2/libgfs2/fs_ops.c
+++ b/gfs2/libgfs2/fs_ops.c
@@ -682,7 +682,7 @@ static int dirent_alloc(struct gfs2_inode *dip, struct gfs2_buffer_head *bh,
 											  GFS2_DIRENT_SIZE(cur_name_len));
 				new->de_name_len = cpu_to_be16(name_len);
 
-				be16_to_cpu(new->de_rec_len);
+				new->de_rec_len = be16_to_cpu(new->de_rec_len);
 				dent->de_rec_len = cpu_to_be16(cur_rec_len - new->de_rec_len);
 
 				*dent_out = new;
@@ -1073,7 +1073,7 @@ static void dir_make_exhash(struct gfs2_inode *dip)
 			break;
 	} while (gfs2_dirent_next(dip, bh, &dent) == 0);
 
-	be16_to_cpu(dent->de_rec_len);
+	dent->de_rec_len = be16_to_cpu(dent->de_rec_len);
 	dent->de_rec_len = cpu_to_be16(dent->de_rec_len +
 		sizeof(struct gfs2_dinode) - sizeof(struct gfs2_leaf));
 


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-05-14  8:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-14  8:10 gfs2-utils: master - gfs2: fix endian conversion Fabio M. Di Nitto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).