diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2014-06-10 22:04:43 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-06-23 11:31:36 -0400 |
commit | 0da22a919d6972f629407f79fc096f29d23a4942 (patch) | |
tree | 1c661f8f06cd0a472f1baf5de7ff08756a0cad89 | |
parent | f15a5cf912f05b572d1f9f3772fba019643f4837 (diff) | |
download | op-kernel-dev-0da22a919d6972f629407f79fc096f29d23a4942.zip op-kernel-dev-0da22a919d6972f629407f79fc096f29d23a4942.tar.gz |
NFSD: Using path_get when assigning path for export
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r-- | fs/nfsd/export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index 13b85f9..ef2d9d6 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -698,8 +698,8 @@ static void svc_export_init(struct cache_head *cnew, struct cache_head *citem) kref_get(&item->ex_client->ref); new->ex_client = item->ex_client; - new->ex_path.dentry = dget(item->ex_path.dentry); - new->ex_path.mnt = mntget(item->ex_path.mnt); + new->ex_path = item->ex_path; + path_get(&item->ex_path); new->ex_fslocs.locations = NULL; new->ex_fslocs.locations_count = 0; new->ex_fslocs.migrated = 0; |