diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-20 22:34:44 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-30 12:25:26 -0400 |
commit | 13983d062f17fb69f249befeba81b5ca253ad641 (patch) | |
tree | eae67a750070333d3b4679664bbf1a4c850aa7cd /fs/fuse/inode.c | |
parent | 9aba36dea59264d11cd36219937296b4903c89b6 (diff) | |
download | linux-stable-13983d062f17fb69f249befeba81b5ca253ad641.tar.gz linux-stable-13983d062f17fb69f249befeba81b5ca253ad641.tar.bz2 linux-stable-13983d062f17fb69f249befeba81b5ca253ad641.zip |
qstr: constify instances in fuse
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 9961d8432ce3..cdc40537da41 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -673,13 +673,11 @@ static struct dentry *fuse_get_dentry(struct super_block *sb, inode = ilookup5(sb, handle->nodeid, fuse_inode_eq, &handle->nodeid); if (!inode) { struct fuse_entry_out outarg; - struct qstr name; + const struct qstr name = QSTR_INIT(".", 1); if (!fc->export_support) goto out_err; - name.len = 1; - name.name = "."; err = fuse_lookup_name(sb, handle->nodeid, &name, &outarg, &inode); if (err && err != -ENOENT) @@ -775,14 +773,12 @@ static struct dentry *fuse_get_parent(struct dentry *child) struct inode *inode; struct dentry *parent; struct fuse_entry_out outarg; - struct qstr name; + const struct qstr name = QSTR_INIT("..", 2); int err; if (!fc->export_support) return ERR_PTR(-ESTALE); - name.len = 2; - name.name = ".."; err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode), &name, &outarg, &inode); if (err) { |