[PATCH 31/40] pnfs_submit wave3 remove struct pnfs_fl_call_data

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Andy Adamson <andros@xxxxxxxxxx>

Signed-off-by: Andy Adamson <andros@xxxxxxxxxx>
---
 fs/nfs/nfs4filelayout.c |   13 +++++++------
 fs/nfs/nfs4proc.c       |    8 ++++----
 fs/nfs/read.c           |    9 +--------
 include/linux/nfs_xdr.h |   13 ++++---------
 4 files changed, 16 insertions(+), 27 deletions(-)

diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c
index c7ba5bc..fa718e1 100644
--- a/fs/nfs/nfs4filelayout.c
+++ b/fs/nfs/nfs4filelayout.c
@@ -104,10 +104,11 @@ static void filelayout_read_call_done(struct rpc_task *task, void *data)
 {
 	struct nfs_read_data *rdata = (struct nfs_read_data *)data;
 
-	if (rdata->fldata.orig_offset) {
+	dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
+	if (rdata->orig_offset) {
 		dprintk("%s new off %llu orig offset %llu\n", __func__,
-			rdata->args.offset, rdata->fldata.orig_offset);
-		rdata->args.offset = rdata->fldata.orig_offset;
+			rdata->args.offset, rdata->orig_offset);
+		rdata->args.offset = rdata->orig_offset;
 	}
 
 	/* Note this may cause RPC to be resent */
@@ -152,14 +153,14 @@ filelayout_read_pagelist(struct nfs_read_data *data)
 	dprintk("%s USE DS:ip %x %hu\n", __func__,
 		ntohl(ds->ds_ip_addr), ntohs(ds->ds_port));
 
-	/* just try the first data server for the index..*/
-	data->fldata.ds_nfs_client = ds->ds_clp;
+	/* No multipath support. Use first DS */
+	data->ds_clp = ds->ds_clp;
 	fh = nfs4_fl_select_ds_fh(lseg, offset);
 	if (fh)
 		data->args.fh = fh;
 
 	data->args.offset = filelayout_get_dserver_offset(lseg, offset);
-	data->fldata.orig_offset = offset;
+	data->orig_offset = offset;
 
 	/* Perform an asynchronous read to ds */
 	nfs_initiate_read(data, ds->ds_clp->cl_rpcclient,
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index 1da0ebf..213e3f0 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -3077,15 +3077,15 @@ static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
 static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
 {
 	struct nfs_server *server = NFS_SERVER(data->inode);
-	struct nfs_client *client = server->nfs_client;
+	struct nfs_client *clp = server->nfs_client;
 
 	dprintk("--> %s\n", __func__);
 
 #ifdef CONFIG_NFS_V4_1
 	/* Is this a DS session */
-	if (data->fldata.ds_nfs_client) {
+	if (data->ds_clp) {
 		dprintk("%s DS read\n", __func__);
-		client = data->fldata.ds_nfs_client;
+		clp = data->ds_clp;
 	}
 #endif /* CONFIG_NFS_V4_1 */
 
@@ -3098,7 +3098,7 @@ static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
 	}
 
 	nfs_invalidate_atime(data->inode);
-	if (task->tk_status > 0 && client == server->nfs_client)
+	if (task->tk_status > 0 && !data->ds_clp)
 		renew_lease(server, data->timestamp);
 	return 0;
 }
diff --git a/fs/nfs/read.c b/fs/nfs/read.c
index 0db6203..9af3048 100644
--- a/fs/nfs/read.c
+++ b/fs/nfs/read.c
@@ -382,14 +382,7 @@ static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data
 {
 	struct nfs_readargs *argp = &data->args;
 	struct nfs_readres *resp = &data->res;
-	struct nfs_client *clp = NFS_SERVER(data->inode)->nfs_client;
 
-#ifdef CONFIG_NFS_V4_1
-	if (data->fldata.ds_nfs_client) {
-		dprintk("%s DS read\n", __func__);
-		clp = data->fldata.ds_nfs_client;
-	}
-#endif /* CONFIG_NFS_V4_1 */
 	if (resp->eof || resp->count == argp->count)
 		return;
 
@@ -403,7 +396,7 @@ static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data
 	argp->offset += resp->count;
 	argp->pgbase += resp->count;
 	argp->count -= resp->count;
-	nfs_restart_rpc(task, clp);
+	nfs_restart_rpc(task, NFS_SERVER(data->inode)->nfs_client);
 }
 
 /*
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h
index 887aff3..4cf522e 100644
--- a/include/linux/nfs_xdr.h
+++ b/include/linux/nfs_xdr.h
@@ -1009,14 +1009,8 @@ struct nfs_page;
 /* pnfs-specific data needed for read, write, and commit calls */
 struct pnfs_call_data {
 	const struct rpc_call_ops *call_ops;
-	u32			orig_count;	/* for retry via MDS */
-	u8			how;		/* for FLUSH_STABLE */
-};
-
-/* files layout-type specific data for read, write, and commit */
-struct pnfs_fl_call_data {
-	struct nfs_client	*ds_nfs_client;
-	__u64			orig_offset;
+	u32			orig_count;     /* for retry via MDS */
+	u8			how;            /* for FLUSH_STABLE */
 };
 #endif /* CONFIG_NFS_V4_1 */
 
@@ -1033,12 +1027,13 @@ struct nfs_read_data {
 	struct nfs_readargs args;
 	struct nfs_readres  res;
 	struct pnfs_layout_segment *lseg;
+	struct nfs_client	*ds_clp;   /* pNFS data server */
 #ifdef CONFIG_NFS_V4
 	unsigned long		timestamp;	/* For lease renewal */
 #endif
 #if defined(CONFIG_NFS_V4_1)
 	struct pnfs_call_data	pdata;
-	struct pnfs_fl_call_data fldata;
+	__u64			orig_offset; /* For filelayout dense stripe */
 #endif /* CONFIG_NFS_V4_1 */
 	struct page		*page_array[NFS_PAGEVEC_SIZE];
 };
-- 
1.6.6

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Filesystem Development]     [Linux USB Development]     [Linux Media Development]     [Video for Linux]     [Linux NILFS]     [Linux Audio Users]     [Yosemite Info]     [Linux SCSI]

  Powered by Linux