diff options
author | Andy Adamson <andros@netapp.com> | 2012-04-27 17:53:52 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-05-19 17:55:32 -0400 |
commit | b4a2967e52523dbf0281b52c042f9042c6082f99 (patch) | |
tree | e35824780a7d474501af611161e4181e95b18691 /fs/nfs | |
parent | 3a7936c3fc469c196d9163abfea6b7aa9572d443 (diff) |
NFSv4.1 dereference a disconnected data server client record
When the last DS io is processed, the data server client record will be
freed.
Signed-off-by: Andy Adamson <andros@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/nfs4filelayout.c | 1 | ||||
-rw-r--r-- | fs/nfs/nfs4filelayout.h | 1 | ||||
-rw-r--r-- | fs/nfs/nfs4filelayoutdev.c | 22 |
3 files changed, 24 insertions, 0 deletions
diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c index eb8eb00f3b52..eaaca897305c 100644 --- a/fs/nfs/nfs4filelayout.c +++ b/fs/nfs/nfs4filelayout.c | |||
@@ -196,6 +196,7 @@ static int filelayout_async_handle_error(struct rpc_task *task, | |||
196 | _pnfs_return_layout(state->inode); | 196 | _pnfs_return_layout(state->inode); |
197 | filelayout_mark_devid_invalid(devid); | 197 | filelayout_mark_devid_invalid(devid); |
198 | rpc_wake_up(&tbl->slot_tbl_waitq); | 198 | rpc_wake_up(&tbl->slot_tbl_waitq); |
199 | nfs4_ds_disconnect(clp); | ||
199 | /* fall through */ | 200 | /* fall through */ |
200 | default: | 201 | default: |
201 | dprintk("%s Retry through MDS. Error %d\n", __func__, | 202 | dprintk("%s Retry through MDS. Error %d\n", __func__, |
diff --git a/fs/nfs/nfs4filelayout.h b/fs/nfs/nfs4filelayout.h index 3259be60da92..95562ad43e12 100644 --- a/fs/nfs/nfs4filelayout.h +++ b/fs/nfs/nfs4filelayout.h | |||
@@ -146,5 +146,6 @@ extern void nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr); | |||
146 | extern void nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr); | 146 | extern void nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr); |
147 | struct nfs4_file_layout_dsaddr * | 147 | struct nfs4_file_layout_dsaddr * |
148 | get_device_info(struct inode *inode, struct nfs4_deviceid *dev_id, gfp_t gfp_flags); | 148 | get_device_info(struct inode *inode, struct nfs4_deviceid *dev_id, gfp_t gfp_flags); |
149 | void nfs4_ds_disconnect(struct nfs_client *clp); | ||
149 | 150 | ||
150 | #endif /* FS_NFS_NFS4FILELAYOUT_H */ | 151 | #endif /* FS_NFS_NFS4FILELAYOUT_H */ |
diff --git a/fs/nfs/nfs4filelayoutdev.c b/fs/nfs/nfs4filelayoutdev.c index d4d2032c1992..bf49b78db1b3 100644 --- a/fs/nfs/nfs4filelayoutdev.c +++ b/fs/nfs/nfs4filelayoutdev.c | |||
@@ -149,6 +149,28 @@ _data_server_lookup_locked(const struct list_head *dsaddrs) | |||
149 | } | 149 | } |
150 | 150 | ||
151 | /* | 151 | /* |
152 | * Lookup DS by nfs_client pointer. Zero data server client pointer | ||
153 | */ | ||
154 | void nfs4_ds_disconnect(struct nfs_client *clp) | ||
155 | { | ||
156 | struct nfs4_pnfs_ds *ds; | ||
157 | struct nfs_client *found = NULL; | ||
158 | |||
159 | dprintk("%s clp %p\n", __func__, clp); | ||
160 | spin_lock(&nfs4_ds_cache_lock); | ||
161 | list_for_each_entry(ds, &nfs4_data_server_cache, ds_node) | ||
162 | if (ds->ds_clp && ds->ds_clp == clp) { | ||
163 | found = ds->ds_clp; | ||
164 | ds->ds_clp = NULL; | ||
165 | } | ||
166 | spin_unlock(&nfs4_ds_cache_lock); | ||
167 | if (found) { | ||
168 | set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state); | ||
169 | nfs_put_client(clp); | ||
170 | } | ||
171 | } | ||
172 | |||
173 | /* | ||
152 | * Create an rpc connection to the nfs4_pnfs_ds data server | 174 | * Create an rpc connection to the nfs4_pnfs_ds data server |
153 | * Currently only supports IPv4 and IPv6 addresses | 175 | * Currently only supports IPv4 and IPv6 addresses |
154 | */ | 176 | */ |