diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-20 23:34:42 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-21 06:30:06 +0300 |
commit | beffb8feb6e26851165ee927e0eb963d6db334b0 (patch) | |
tree | 26340719b6f22cadae640d868d397ef7d1249a61 /fs/nfs/unlink.c | |
parent | 612645f7cfe1221f8066b87d62089719bcf43f68 (diff) | |
download | linux-beffb8feb6e26851165ee927e0eb963d6db334b0.tar.xz |
qstr: constify instances in nfs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfs/unlink.c')
-rw-r--r-- | fs/nfs/unlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/unlink.c b/fs/nfs/unlink.c index 1868246f56e6..191aa577dd1f 100644 --- a/fs/nfs/unlink.c +++ b/fs/nfs/unlink.c @@ -162,7 +162,7 @@ static int nfs_call_unlink(struct dentry *dentry, struct nfs_unlinkdata *data) * @dentry: dentry to unlink */ static int -nfs_async_unlink(struct dentry *dentry, struct qstr *name) +nfs_async_unlink(struct dentry *dentry, const struct qstr *name) { struct nfs_unlinkdata *data; int status = -ENOMEM; |