Skip to content

Commit 6d80c39

Browse files
committed
GFS2: Add UUID to GFS2 sb
This patch adds a UUID to the GFS2 sb structure. This field is not actually referenced from kernel space at all, but is added for completeness and due to the userland tools which get their on-disk structure information from the gfs2_ondisk.h header file. Since we have to be backwards compatible, we will assume that any GFS2 sb for which the UUID is all 0 does not have a UUID as such. We should then be (after some userland changes) able to support the -U mount option. This addresses Fedora bugzilla #242689 Signed-off-by: Steven Whitehouse <[email protected]>
1 parent 719ee34 commit 6d80c39

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

include/linux/gfs2_ondisk.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,11 @@ struct gfs2_sb {
118118

119119
char sb_lockproto[GFS2_LOCKNAME_LEN];
120120
char sb_locktable[GFS2_LOCKNAME_LEN];
121-
/* In gfs1, quota and license dinodes followed */
121+
122+
struct gfs2_inum __pad3; /* Was quota inode in gfs1 */
123+
struct gfs2_inum __pad4; /* Was licence inode in gfs1 */
124+
#define GFS2_HAS_UUID 1
125+
__u8 sb_uuid[16]; /* The UUID, maybe 0 for backwards compat */
122126
};
123127

124128
/*

0 commit comments

Comments
 (0)