Skip to content

Commit 59cda49

Browse files
amir73iljankara
authored andcommitted
shmem: allow reporting fanotify events with file handles on tmpfs
Since kernel v5.1, fanotify_init(2) supports the flag FAN_REPORT_FID for identifying objects using file handle and fsid in events. fanotify_mark(2) fails with -ENODEV when trying to set a mark on filesystems that report null f_fsid in stasfs(2). Use the digest of uuid as f_fsid for tmpfs to uniquely identify tmpfs objects as best as possible and allow setting an fanotify mark that reports events with file handles on tmpfs. Link: https://lore.kernel.org/r/[email protected] Acked-by: Hugh Dickins <[email protected]> Reviewed-by: Christian Brauner <[email protected]> Signed-off-by: Amir Goldstein <[email protected]> Signed-off-by: Jan Kara <[email protected]>
1 parent 9591c3a commit 59cda49

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

mm/shmem.c

+3
Original file line numberDiff line numberDiff line change
@@ -2846,6 +2846,9 @@ static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
28462846
buf->f_ffree = sbinfo->free_inodes;
28472847
}
28482848
/* else leave those fields 0 like simple_statfs */
2849+
2850+
buf->f_fsid = uuid_to_fsid(dentry->d_sb->s_uuid.b);
2851+
28492852
return 0;
28502853
}
28512854

0 commit comments

Comments
 (0)