diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-11-20 19:33:32 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-12-05 19:01:16 -0500 |
commit | 5b5577e4ebbd63de1a774963a373d851857e980a (patch) | |
tree | 8b51fd9574ba975bad670c7d77fb80b56ebd3554 /fs/autofs4 | |
parent | 71215a75ceddf38ba9d4563481da8dd943de10fc (diff) | |
download | op-kernel-dev-5b5577e4ebbd63de1a774963a373d851857e980a.zip op-kernel-dev-5b5577e4ebbd63de1a774963a373d851857e980a.tar.gz |
autofs: constify find_autofs_mount() callback
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/autofs4')
-rw-r--r-- | fs/autofs4/dev-ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/autofs4/dev-ioctl.c b/fs/autofs4/dev-ioctl.c index fc09eb7..dfc6f49 100644 --- a/fs/autofs4/dev-ioctl.c +++ b/fs/autofs4/dev-ioctl.c @@ -204,7 +204,7 @@ static int autofs_dev_ioctl_protosubver(struct file *fp, /* Find the topmost mount satisfying test() */ static int find_autofs_mount(const char *pathname, struct path *res, - int test(struct path *path, void *data), + int test(const struct path *path, void *data), void *data) { struct path path; @@ -230,12 +230,12 @@ static int find_autofs_mount(const char *pathname, return err; } -static int test_by_dev(struct path *path, void *p) +static int test_by_dev(const struct path *path, void *p) { return path->dentry->d_sb->s_dev == *(dev_t *)p; } -static int test_by_type(struct path *path, void *p) +static int test_by_type(const struct path *path, void *p) { struct autofs_info *ino = autofs4_dentry_ino(path->dentry); |