qstr: constify instances in procfs
authorAl Viro <viro@zeniv.linux.org.uk>
Thu, 21 Jul 2016 02:41:44 +0000 (22:41 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sat, 30 Jul 2016 16:25:46 +0000 (12:25 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/proc/proc_sysctl.c

index 5e57c3e..04f69ea 100644 (file)
@@ -474,7 +474,7 @@ static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
 {
        struct ctl_table_header *head = grab_header(dir);
        struct ctl_table_header *h = NULL;
-       struct qstr *name = &dentry->d_name;
+       const struct qstr *name = &dentry->d_name;
        struct ctl_table *p;
        struct inode *inode;
        struct dentry *err = ERR_PTR(-ENOENT);