diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-17 09:46:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-17 09:46:31 -0700 |
commit | bf8a9a4755737f6630756f0d87bea9b38f0ed369 (patch) | |
tree | 1bdeab134ab136514a2a24e6b2310a686c007800 /fs | |
parent | a6a4b66bd8f41922c543f7a820c66ed59c25995e (diff) | |
parent | d8076bdb56af5e5918376cd1573a6b0007fc1a89 (diff) | |
download | linux-bf8a9a4755737f6630756f0d87bea9b38f0ed369.tar.gz linux-bf8a9a4755737f6630756f0d87bea9b38f0ed369.tar.bz2 linux-bf8a9a4755737f6630756f0d87bea9b38f0ed369.zip |
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull more vfs mount updates from Al Viro:
"Propagation of new syscalls to other architectures + cosmetic change
from Christian (fscontext didn't follow the convention for anon inode
names)"
* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
uapi: Wire up the mount API syscalls on non-x86 arches [ver #2]
uapi, x86: Fix the syscall numbering of the mount API syscalls [ver #2]
uapi, fsopen: use square brackets around "fscontext" [ver #2]
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fsopen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fsopen.c b/fs/fsopen.c index 3bb9c0c8cbcc..c2891e933ef1 100644 --- a/fs/fsopen.c +++ b/fs/fsopen.c @@ -92,7 +92,7 @@ static int fscontext_create_fd(struct fs_context *fc, unsigned int o_flags) { int fd; - fd = anon_inode_getfd("fscontext", &fscontext_fops, fc, + fd = anon_inode_getfd("[fscontext]", &fscontext_fops, fc, O_RDWR | o_flags); if (fd < 0) put_fs_context(fc); |