Skip to content

Commit b827ac4

Browse files
author
Kent Overstreet
committed
exportfs: Change bcachefs fid_type enum to avoid conflicts
Per Amir Goldstein, the fid types that bcachefs picked conflicted with xfs and fuse, which previously were in use but not deviced in the master enum. Since bcachefs is still out of tree, we can move. https://lore.kernel.org/linux-next/[email protected]/T/#ma59f65ba61f605b593e69f4690dbd317526d83ba Signed-off-by: Kent Overstreet <[email protected]>
1 parent 7413ab7 commit b827ac4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

include/linux/exportfs.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,18 @@ enum fid_type {
9898
*/
9999
FILEID_FAT_WITH_PARENT = 0x72,
100100

101-
/*
102-
* 64 bit inode number, 32 bit subvolume, 32 bit generation number:
103-
*/
104-
FILEID_BCACHEFS_WITHOUT_PARENT = 0x80,
105-
FILEID_BCACHEFS_WITH_PARENT = 0x81,
106-
107101
/*
108102
* 128 bit child FID (struct lu_fid)
109103
* 128 bit parent FID (struct lu_fid)
110104
*/
111105
FILEID_LUSTRE = 0x97,
112106

107+
/*
108+
* 64 bit inode number, 32 bit subvolume, 32 bit generation number:
109+
*/
110+
FILEID_BCACHEFS_WITHOUT_PARENT = 0xb1,
111+
FILEID_BCACHEFS_WITH_PARENT = 0xb2,
112+
113113
/*
114114
* 64 bit unique kernfs id
115115
*/

0 commit comments

Comments
 (0)