[PATCH -V19 13/15] vfs: Export file system uuid via /proc/<pid>/mountinfo

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Aneesh Kumar K.V
Date: Friday, August 27, 2010 - 4:03 am

We add a per superblock uuid field. File systems should
update the uuid in the fill_super callback

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
---
 fs/namespace.c     |   16 ++++++++++++++++
 include/linux/fs.h |    1 +
 2 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/fs/namespace.c b/fs/namespace.c
index 2e10cb1..041645a 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -837,6 +837,18 @@ const struct seq_operations mounts_op = {
 	.show	= show_vfsmnt
 };
 
+static int uuid_is_nil(u8 *uuid)
+{
+	int i;
+	u8  *cp = (u8 *)uuid;
+
+	for (i = 0; i < 16; i++) {
+		if (*cp++)
+			return 0;
+	}
+	return 1;
+}
+
 static int show_mountinfo(struct seq_file *m, void *v)
 {
 	struct proc_mounts *p = m->private;
@@ -875,6 +887,10 @@ static int show_mountinfo(struct seq_file *m, void *v)
 	if (IS_MNT_UNBINDABLE(mnt))
 		seq_puts(m, " unbindable");
 
+	if (!uuid_is_nil(mnt->mnt_sb->s_uuid))
+		/* print the uuid */
+		seq_printf(m, " uuid:%pU", mnt->mnt_sb->s_uuid);
+
 	/* Filesystem specific data */
 	seq_puts(m, " - ");
 	show_type(m, sb);
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 8dde859..0f348f9 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1369,6 +1369,7 @@ struct super_block {
 	wait_queue_head_t	s_wait_unfrozen;
 
 	char s_id[32];				/* Informational name */
+	u8 s_uuid[16];				/* UUID */
 
 	void 			*s_fs_info;	/* Filesystem private info */
 	fmode_t			s_mode;
-- 
1.7.0.4

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH -V19 03/15] vfs: Add open by file handle support, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 04/15] vfs: Add handle based readlink syscall, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 05/15] vfs: Add handle based stat syscall, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 06/15] vfs: Add handle based link syscall, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 07/15] vfs: Add handle based chown syscall, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 08/15] vfs: Add handle based xattr syscalls, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 10/15] x86: Add new syscalls for x86_32, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 11/15] x86: Add new syscalls for x86_64, Aneesh Kumar K.V, (Fri Aug 27, 4:02 am)
[PATCH -V19 13/15] vfs: Export file system uuid via /proc/ ..., Aneesh Kumar K.V, (Fri Aug 27, 4:03 am)
[PATCH -V19 14/15] ext3: Copy fs UUID to superblock., Aneesh Kumar K.V, (Fri Aug 27, 4:03 am)
[PATCH -V19 15/15] ext4: Copy fs UUID to superblock, Aneesh Kumar K.V, (Fri Aug 27, 4:03 am)
Re: [PATCH -V19 00/15] Generic name to handle and open by ..., Aneesh Kumar K. V, (Tue Sep 7, 3:21 am)
Re: [PATCH -V19 00/15] Generic name to handle and open by ..., Aneesh Kumar K. V, (Tue Sep 7, 5:59 am)
Re: [PATCH -V19 00/15] Generic name to handle and open by ..., Aneesh Kumar K. V, (Sun Sep 12, 12:22 pm)
Re: [PATCH -V19 00/15] Generic name to handle and open by ..., Aneesh Kumar K. V, (Fri Sep 17, 10:40 am)