diff options
author | David Howells <dhowells@redhat.com> | 2018-11-02 00:36:32 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-03-20 23:49:06 +0100 |
commit | f1b5618e013af28b3c78daf424436a79674423c0 (patch) | |
tree | 7fea6c6bb8ef683b92fcabaa9e3f48ed2ec8eeb0 /samples/Makefile | |
parent | vfs: syscall: Add fspick() to select a superblock for reconfiguration (diff) | |
download | linux-f1b5618e013af28b3c78daf424436a79674423c0.tar.xz linux-f1b5618e013af28b3c78daf424436a79674423c0.zip |
vfs: Add a sample program for the new mount API
Add a sample program to demonstrate fsopen/fsmount/move_mount to mount
something.
To make it compile on all arches, irrespective of whether or not syscall
numbers are assigned, define the syscall number to -1 if it isn't to cause
the kernel to return -ENOSYS.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'samples/Makefile')
-rw-r--r-- | samples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/Makefile b/samples/Makefile index b1142a958811..95d71ffd62d5 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -3,4 +3,4 @@ obj-$(CONFIG_SAMPLES) += kobject/ kprobes/ trace_events/ livepatch/ \ hw_breakpoint/ kfifo/ kdb/ hidraw/ rpmsg/ seccomp/ \ configfs/ connector/ v4l/ trace_printk/ \ - vfio-mdev/ statx/ qmi/ binderfs/ + vfio-mdev/ vfs/ qmi/ binderfs/ |