public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext3: return FSID for statvfs
@ 2005-12-06 20:23 Pekka Enberg
  2005-12-07 12:40 ` Andreas Dilger
  0 siblings, 1 reply; 5+ messages in thread
From: Pekka Enberg @ 2005-12-06 20:23 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, sct, adilger

This patch changes ext3_statfs() to return a FSID based on least significant
64-bits of the 128-bit filesystem UUID. This patch is a partial fix for
Bugzilla Bug <http://bugzilla.kernel.org/show_bug.cgi?id=136>.

Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
---

 super.c |    2 ++
 1 file changed, 2 insertions(+)

Index: 2.6/fs/ext3/super.c
===================================================================
--- 2.6.orig/fs/ext3/super.c
+++ 2.6/fs/ext3/super.c
@@ -2340,6 +2340,8 @@ static int ext3_statfs (struct super_blo
 	buf->f_files = le32_to_cpu(es->s_inodes_count);
 	buf->f_ffree = ext3_count_free_inodes (sb);
 	buf->f_namelen = EXT3_NAME_LEN;
+	buf->f_fsid.val[0] = le32_to_cpup((void *)es->s_uuid);
+	buf->f_fsid.val[1] = le32_to_cpup((void *)es->s_uuid + sizeof(u32));
 	return 0;
 }
 



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-12-08  7:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-06 20:23 [PATCH] ext3: return FSID for statvfs Pekka Enberg
2005-12-07 12:40 ` Andreas Dilger
2005-12-07 13:13   ` Pekka J Enberg
2005-12-07 20:01     ` Andreas Dilger
2005-12-08  7:28       ` Pekka J Enberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox