mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:20:52 +07:00
ef601a9cfd
fanotify references anon_inode_getfd(), which is only available with ANON_INODES enabled. Presently this bails out with the following: LD vmlinux fs/built-in.o: In function `sys_fanotify_init': (.text+0x26d1c): undefined reference to `anon_inode_getfd' make: *** [vmlinux] Error 1 which is trivially corrected by adding an ANON_INODES select. Signed-off-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Eric Paris <eparis@redhat.com>
13 lines
361 B
Plaintext
13 lines
361 B
Plaintext
config FANOTIFY
|
|
bool "Filesystem wide access notification"
|
|
select FSNOTIFY
|
|
select ANON_INODES
|
|
default y
|
|
---help---
|
|
Say Y here to enable fanotify suport. fanotify is a file access
|
|
notification system which differs from inotify in that it sends
|
|
and open file descriptor to the userspace listener along with
|
|
the event.
|
|
|
|
If unsure, say Y.
|