Skip to content

Commit 2b4db79

Browse files
amir73ilChristoph Hellwig
authored and
Christoph Hellwig
committed
tmpfs: generate random sb->s_uuid
This is used by overlayfs to encode intrasystem unique file handles. Suggested-by: Miklos Szeredi <[email protected]> Cc: Hugh Dickins <[email protected]> Cc: Andrew Morton <[email protected]> Signed-off-by: Amir Goldstein <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
1 parent bf47643 commit 2b4db79

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mm/shmem.c

+2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ static struct vfsmount *shm_mnt;
7575
#include <uapi/linux/memfd.h>
7676
#include <linux/userfaultfd_k.h>
7777
#include <linux/rmap.h>
78+
#include <linux/uuid.h>
7879

7980
#include <linux/uaccess.h>
8081
#include <asm/pgtable.h>
@@ -3761,6 +3762,7 @@ int shmem_fill_super(struct super_block *sb, void *data, int silent)
37613762
#ifdef CONFIG_TMPFS_POSIX_ACL
37623763
sb->s_flags |= MS_POSIXACL;
37633764
#endif
3765+
uuid_gen(&sb->s_uuid);
37643766

37653767
inode = shmem_get_inode(sb, NULL, S_IFDIR | sbinfo->mode, 0, VM_NORESERVE);
37663768
if (!inode)

0 commit comments

Comments
 (0)