aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/fs_parser.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2019-12-17 20:09:08 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2020-02-07 14:48:30 -0500
commitaa1918f9491442a007a0cbe41a31539233209777 (patch)
tree27107d8f773475bcee68123ec521d8ca9fdbaf95 /fs/fs_parser.c
parentdon't bother with explicit length argument for __lookup_constant() (diff)
downloadwireguard-linux-aa1918f9491442a007a0cbe41a31539233209777.tar.xz
wireguard-linux-aa1918f9491442a007a0cbe41a31539233209777.zip
get rid of fs_value_is_filename_empty
Its behaviour is identical to that of fs_value_is_filename. It makes no sense, anyway - LOOKUP_EMPTY affects nothing whatsoever once the pathname has been imported from userland. And both fs_value_is_filename and fs_value_is_filename_empty carry an already imported pathname. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fs_parser.c')
-rw-r--r--fs/fs_parser.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/fs_parser.c b/fs/fs_parser.c
index 065ce6c22587..dc5c6737c280 100644
--- a/fs/fs_parser.c
+++ b/fs/fs_parser.c
@@ -268,9 +268,6 @@ int fs_lookup_param(struct fs_context *fc,
return PTR_ERR(f);
put_f = true;
break;
- case fs_value_is_filename_empty:
- flags = LOOKUP_EMPTY;
- /* Fall through */
case fs_value_is_filename:
f = param->name;
put_f = false;