blob: 52d8472120663de91855690fa0996cdf03e4a8a4 [file] [log] [blame]
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001/*
2 * Module for the pnfs nfs4 file layout driver.
3 * Defines all I/O and Policy interface operations, plus code
4 * to register itself with the pNFS client.
5 *
6 * Copyright (c) 2002
7 * The Regents of the University of Michigan
8 * All Rights Reserved
9 *
10 * Dean Hildebrand <dhildebz@umich.edu>
11 *
12 * Permission is granted to use, copy, create derivative works, and
13 * redistribute this software and such derivative works for any purpose,
14 * so long as the name of the University of Michigan is not used in
15 * any advertising or publicity pertaining to the use or distribution
16 * of this software without specific, written prior authorization. If
17 * the above copyright notice or any other identification of the
18 * University of Michigan is included in any copy of any portion of
19 * this software, then the disclaimer below must also be included.
20 *
21 * This software is provided as is, without representation or warranty
22 * of any kind either express or implied, including without limitation
23 * the implied warranties of merchantability, fitness for a particular
24 * purpose, or noninfringement. The Regents of the University of
25 * Michigan shall not be liable for any damages, including special,
26 * indirect, incidental, or consequential damages, with respect to any
27 * claim arising out of or in connection with the use of the software,
28 * even if it has been or is hereafter advised of the possibility of
29 * such damages.
30 */
31
32#include <linux/nfs_fs.h>
Benny Halevy19345cb2011-06-19 18:33:46 -040033#include <linux/nfs_page.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040034#include <linux/module.h>
Andy Adamson16b374c2010-10-20 00:18:04 -040035
Weston Andros Adamson0a702192012-02-17 13:15:24 -050036#include <linux/sunrpc/metrics.h>
37
Andy Adamson16b374c2010-10-20 00:18:04 -040038#include "internal.h"
Andy Adamson9cb81962012-03-07 10:49:41 -050039#include "delegation.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040040#include "nfs4filelayout.h"
Dean Hildebrand7ab672c2010-10-20 00:18:00 -040041
42#define NFSDBG_FACILITY NFSDBG_PNFS_LD
43
44MODULE_LICENSE("GPL");
45MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
46MODULE_DESCRIPTION("The NFSv4 file layout driver");
47
Andy Adamsoncbdabc72011-03-01 01:34:20 +000048#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
49
Fred Isamancfe7f412011-03-01 01:34:18 +000050static loff_t
51filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
52 loff_t offset)
53{
54 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
Chris Metcalf3476f112011-08-11 13:54:28 -070055 u64 stripe_no;
56 u32 rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000057
58 offset -= flseg->pattern_offset;
Chris Metcalf3476f112011-08-11 13:54:28 -070059 stripe_no = div_u64(offset, stripe_width);
60 div_u64_rem(offset, flseg->stripe_unit, &rem);
Fred Isamancfe7f412011-03-01 01:34:18 +000061
Chris Metcalf3476f112011-08-11 13:54:28 -070062 return stripe_no * flseg->stripe_unit + rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000063}
64
65/* This function is used by the layout driver to calculate the
66 * offset of the file on the dserver based on whether the
67 * layout type is STRIPE_DENSE or STRIPE_SPARSE
68 */
69static loff_t
70filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
71{
72 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
73
74 switch (flseg->stripe_type) {
75 case STRIPE_SPARSE:
76 return offset;
77
78 case STRIPE_DENSE:
79 return filelayout_get_dense_offset(flseg, offset);
80 }
81
82 BUG();
83}
84
Andy Adamsone7dd79af2012-04-27 17:53:46 -040085static void filelayout_reset_write(struct nfs_write_data *data)
86{
87 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -040088 struct rpc_task *task = &data->task;
89
90 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
91 dprintk("%s Reset task %5u for i/o through MDS "
92 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
93 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -040094 hdr->inode->i_sb->s_id,
95 (long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -040096 data->args.count,
97 (unsigned long long)data->args.offset);
98
99 task->tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
100 &hdr->pages,
101 hdr->completion_ops);
102 }
103}
104
105static void filelayout_reset_read(struct nfs_read_data *data)
106{
107 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400108 struct rpc_task *task = &data->task;
109
110 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
111 dprintk("%s Reset task %5u for i/o through MDS "
112 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
113 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -0400114 hdr->inode->i_sb->s_id,
115 (long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400116 data->args.count,
117 (unsigned long long)data->args.offset);
118
119 task->tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
120 &hdr->pages,
121 hdr->completion_ops);
122 }
123}
124
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000125static int filelayout_async_handle_error(struct rpc_task *task,
126 struct nfs4_state *state,
127 struct nfs_client *clp,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400128 struct pnfs_layout_segment *lseg)
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000129{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400130 struct inode *inode = lseg->pls_layout->plh_inode;
131 struct nfs_server *mds_server = NFS_SERVER(inode);
132 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Andy Adamson9cb81962012-03-07 10:49:41 -0500133 struct nfs_client *mds_client = mds_server->nfs_client;
Andy Adamson671fb892012-04-27 17:53:49 -0400134 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
Andy Adamson9cb81962012-03-07 10:49:41 -0500135
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000136 if (task->tk_status >= 0)
137 return 0;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000138
139 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -0500140 /* MDS state errors */
141 case -NFS4ERR_DELEG_REVOKED:
142 case -NFS4ERR_ADMIN_REVOKED:
143 case -NFS4ERR_BAD_STATEID:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400144 if (state == NULL)
145 break;
Andy Adamson2dc31752012-03-08 11:03:53 -0500146 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500147 case -NFS4ERR_OPENMODE:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400148 if (state == NULL)
149 break;
Andy Adamson9cb81962012-03-07 10:49:41 -0500150 nfs4_schedule_stateid_recovery(mds_server, state);
151 goto wait_on_recovery;
152 case -NFS4ERR_EXPIRED:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400153 if (state != NULL)
154 nfs4_schedule_stateid_recovery(mds_server, state);
Andy Adamson9cb81962012-03-07 10:49:41 -0500155 nfs4_schedule_lease_recovery(mds_client);
156 goto wait_on_recovery;
157 /* DS session errors */
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000158 case -NFS4ERR_BADSESSION:
159 case -NFS4ERR_BADSLOT:
160 case -NFS4ERR_BAD_HIGH_SLOT:
161 case -NFS4ERR_DEADSESSION:
162 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
163 case -NFS4ERR_SEQ_FALSE_RETRY:
164 case -NFS4ERR_SEQ_MISORDERED:
165 dprintk("%s ERROR %d, Reset session. Exchangeid "
166 "flags 0x%x\n", __func__, task->tk_status,
167 clp->cl_exchange_flags);
Trond Myklebust9f594792012-05-27 13:02:53 -0400168 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000169 break;
170 case -NFS4ERR_DELAY:
171 case -NFS4ERR_GRACE:
172 case -EKEYEXPIRED:
173 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
174 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400175 case -NFS4ERR_RETRY_UNCACHED_REP:
176 break;
Andy Adamson041245c2012-04-27 17:53:53 -0400177 /* Invalidate Layout errors */
178 case -NFS4ERR_PNFS_NO_LAYOUT:
179 case -ESTALE: /* mapped NFS4ERR_STALE */
180 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
181 case -EISDIR: /* mapped NFS4ERR_ISDIR */
182 case -NFS4ERR_FHEXPIRED:
183 case -NFS4ERR_WRONG_TYPE:
184 dprintk("%s Invalid layout error %d\n", __func__,
185 task->tk_status);
186 /*
187 * Destroy layout so new i/o will get a new layout.
188 * Layout will not be destroyed until all current lseg
189 * references are put. Mark layout as invalid to resend failed
190 * i/o and all i/o waiting on the slot table to the MDS until
191 * layout is destroyed and a new valid layout is obtained.
192 */
Andy Adamsond42e7872012-05-22 08:09:28 -0400193 pnfs_destroy_layout(NFS_I(inode));
Andy Adamson041245c2012-04-27 17:53:53 -0400194 rpc_wake_up(&tbl->slot_tbl_waitq);
195 goto reset;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400196 /* RPC connection errors */
197 case -ECONNREFUSED:
198 case -EHOSTDOWN:
199 case -EHOSTUNREACH:
200 case -ENETUNREACH:
201 case -EIO:
202 case -ETIMEDOUT:
203 case -EPIPE:
204 dprintk("%s DS connection error %d\n", __func__,
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000205 task->tk_status);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400206 nfs4_mark_deviceid_unavailable(devid);
Andy Adamsonbaf6c2a2012-06-20 15:03:32 -0400207 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags);
Andy Adamson82c7c7a2012-06-20 15:03:31 -0400208 _pnfs_return_layout(inode);
Andy Adamson671fb892012-04-27 17:53:49 -0400209 rpc_wake_up(&tbl->slot_tbl_waitq);
Andy Adamsonb4a29672012-04-27 17:53:52 -0400210 nfs4_ds_disconnect(clp);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400211 /* fall through */
212 default:
Andy Adamson041245c2012-04-27 17:53:53 -0400213reset:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400214 dprintk("%s Retry through MDS. Error %d\n", __func__,
215 task->tk_status);
216 return -NFS4ERR_RESET_TO_MDS;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000217 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500218out:
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000219 task->tk_status = 0;
220 return -EAGAIN;
Andy Adamson9cb81962012-03-07 10:49:41 -0500221wait_on_recovery:
222 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
223 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
224 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
225 goto out;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000226}
227
228/* NFS_PROTO call done callback routines */
229
230static int filelayout_read_done_cb(struct rpc_task *task,
231 struct nfs_read_data *data)
232{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400233 struct nfs_pgio_header *hdr = data->header;
234 int err;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000235
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400236 err = filelayout_async_handle_error(task, data->args.context->state,
237 data->ds_clp, hdr->lseg);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000238
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400239 switch (err) {
240 case -NFS4ERR_RESET_TO_MDS:
241 filelayout_reset_read(data);
242 return task->tk_status;
243 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700244 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000245 return -EAGAIN;
246 }
247
248 return 0;
249}
250
Andy Adamson16b374c2010-10-20 00:18:04 -0400251/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000252 * We reference the rpc_cred of the first WRITE that triggers the need for
253 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
254 * rfc5661 is not clear about which credential should be used.
255 */
256static void
257filelayout_set_layoutcommit(struct nfs_write_data *wdata)
258{
Fred Isamancd841602012-04-20 14:47:44 -0400259 struct nfs_pgio_header *hdr = wdata->header;
260
261 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Andy Adamson863a3c62011-03-23 13:27:54 +0000262 wdata->res.verf->committed == NFS_FILE_SYNC)
263 return;
264
265 pnfs_set_layoutcommit(wdata);
Fred Isamancd841602012-04-20 14:47:44 -0400266 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
267 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000268}
269
Trond Myklebust1dfed272012-09-18 19:51:12 -0400270bool
271filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
272{
273 return filelayout_test_devid_invalid(node) ||
274 nfs4_test_deviceid_unavailable(node);
275}
276
277static bool
278filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
279{
280 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
281
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400282 return filelayout_test_devid_unavailable(node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400283}
284
Andy Adamson863a3c62011-03-23 13:27:54 +0000285/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000286 * Call ops for the async read/write cases
287 * In the case of dense layouts, the offset needs to be reset to its
288 * original value.
289 */
290static void filelayout_read_prepare(struct rpc_task *task, void *data)
291{
Fred Isamancd12ae32012-04-20 14:47:42 -0400292 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000293
Andy Adamson041245c2012-04-27 17:53:53 -0400294 if (filelayout_reset_to_mds(rdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400295 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
296 filelayout_reset_read(rdata);
297 rpc_exit(task, 0);
298 return;
299 }
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000300 rdata->read_done_cb = filelayout_read_done_cb;
301
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000302 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
303 &rdata->args.seq_args, &rdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500304 task))
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000305 return;
306
307 rpc_call_start(task);
308}
309
310static void filelayout_read_call_done(struct rpc_task *task, void *data)
311{
Fred Isamancd12ae32012-04-20 14:47:42 -0400312 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000313
314 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
315
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400316 if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) &&
317 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400318 return;
319
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000320 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400321 rdata->header->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000322}
323
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500324static void filelayout_read_count_stats(struct rpc_task *task, void *data)
325{
Fred Isamancd12ae32012-04-20 14:47:42 -0400326 struct nfs_read_data *rdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500327
Fred Isamancd841602012-04-20 14:47:44 -0400328 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500329}
330
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000331static void filelayout_read_release(void *data)
332{
Fred Isamancd12ae32012-04-20 14:47:42 -0400333 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000334
Andy Adamson996074c2012-05-22 08:09:26 -0400335 nfs_put_client(rdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400336 rdata->header->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000337}
338
Fred Isamana69aef12011-03-03 15:13:47 +0000339static int filelayout_write_done_cb(struct rpc_task *task,
340 struct nfs_write_data *data)
341{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400342 struct nfs_pgio_header *hdr = data->header;
343 int err;
Fred Isamana69aef12011-03-03 15:13:47 +0000344
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400345 err = filelayout_async_handle_error(task, data->args.context->state,
346 data->ds_clp, hdr->lseg);
347
348 switch (err) {
349 case -NFS4ERR_RESET_TO_MDS:
350 filelayout_reset_write(data);
351 return task->tk_status;
352 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700353 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000354 return -EAGAIN;
355 }
356
Andy Adamson863a3c62011-03-23 13:27:54 +0000357 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000358 return 0;
359}
360
Fred Isamane0c2b382011-03-23 13:27:53 +0000361/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400362static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000363{
364 struct nfs_page *first = nfs_list_entry(data->pages.next);
365
366 data->task.tk_status = 0;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -0400367 memcpy(&data->verf.verifier, &first->wb_verf,
368 sizeof(data->verf.verifier));
369 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
Fred Isamane0c2b382011-03-23 13:27:53 +0000370}
371
372static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400373 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000374{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400375 int err;
Fred Isamane0c2b382011-03-23 13:27:53 +0000376
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400377 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
378 data->lseg);
379
380 switch (err) {
381 case -NFS4ERR_RESET_TO_MDS:
382 prepare_to_resend_writes(data);
383 return -EAGAIN;
384 case -EAGAIN:
385 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000386 return -EAGAIN;
387 }
388
389 return 0;
390}
391
Fred Isamana69aef12011-03-03 15:13:47 +0000392static void filelayout_write_prepare(struct rpc_task *task, void *data)
393{
Fred Isamancd12ae32012-04-20 14:47:42 -0400394 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000395
Andy Adamson041245c2012-04-27 17:53:53 -0400396 if (filelayout_reset_to_mds(wdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400397 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
398 filelayout_reset_write(wdata);
399 rpc_exit(task, 0);
400 return;
401 }
Fred Isamana69aef12011-03-03 15:13:47 +0000402 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
403 &wdata->args.seq_args, &wdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500404 task))
Fred Isamana69aef12011-03-03 15:13:47 +0000405 return;
406
407 rpc_call_start(task);
408}
409
410static void filelayout_write_call_done(struct rpc_task *task, void *data)
411{
Fred Isamancd12ae32012-04-20 14:47:42 -0400412 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000413
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400414 if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) &&
415 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400416 return;
417
Fred Isamana69aef12011-03-03 15:13:47 +0000418 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400419 wdata->header->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000420}
421
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500422static void filelayout_write_count_stats(struct rpc_task *task, void *data)
423{
Fred Isamancd12ae32012-04-20 14:47:42 -0400424 struct nfs_write_data *wdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500425
Fred Isamancd841602012-04-20 14:47:44 -0400426 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500427}
428
Fred Isamana69aef12011-03-03 15:13:47 +0000429static void filelayout_write_release(void *data)
430{
Fred Isamancd12ae32012-04-20 14:47:42 -0400431 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000432
Andy Adamson996074c2012-05-22 08:09:26 -0400433 nfs_put_client(wdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400434 wdata->header->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000435}
436
Fred Isaman0b7c0152012-04-20 14:47:39 -0400437static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000438{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400439 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000440
Fred Isaman0b7c0152012-04-20 14:47:39 -0400441 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
442 &wdata->args.seq_args, &wdata->res.seq_res,
443 task))
444 return;
445
446 rpc_call_start(task);
447}
448
449static void filelayout_write_commit_done(struct rpc_task *task, void *data)
450{
451 struct nfs_commit_data *wdata = data;
452
453 /* Note this may cause RPC to be resent */
454 wdata->mds_ops->rpc_call_done(task, data);
455}
456
457static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
458{
459 struct nfs_commit_data *cdata = data;
460
461 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
462}
463
464static void filelayout_commit_release(void *calldata)
465{
466 struct nfs_commit_data *data = calldata;
467
Fred Isamanf453a542012-04-20 14:47:54 -0400468 data->completion_ops->completion(data);
Trond Myklebust9369a432012-09-18 20:57:08 -0400469 pnfs_put_lseg(data->lseg);
Andy Adamson3a7936c2012-04-27 17:53:51 -0400470 nfs_put_client(data->ds_clp);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400471 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000472}
473
Trond Myklebust17280172012-03-11 13:11:00 -0400474static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000475 .rpc_call_prepare = filelayout_read_prepare,
476 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500477 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000478 .rpc_release = filelayout_read_release,
479};
480
Trond Myklebust17280172012-03-11 13:11:00 -0400481static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000482 .rpc_call_prepare = filelayout_write_prepare,
483 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500484 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000485 .rpc_release = filelayout_write_release,
486};
487
Trond Myklebust17280172012-03-11 13:11:00 -0400488static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400489 .rpc_call_prepare = filelayout_commit_prepare,
490 .rpc_call_done = filelayout_write_commit_done,
491 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000492 .rpc_release = filelayout_commit_release,
493};
494
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000495static enum pnfs_try_status
496filelayout_read_pagelist(struct nfs_read_data *data)
497{
Fred Isamancd841602012-04-20 14:47:44 -0400498 struct nfs_pgio_header *hdr = data->header;
499 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000500 struct nfs4_pnfs_ds *ds;
501 loff_t offset = data->args.offset;
502 u32 j, idx;
503 struct nfs_fh *fh;
504 int status;
505
506 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400507 __func__, hdr->inode->i_ino,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000508 data->args.pgbase, (size_t)data->args.count, offset);
509
510 /* Retrieve the correct rpc_client for the byte range */
511 j = nfs4_fl_calc_j_index(lseg, offset);
512 idx = nfs4_fl_calc_ds_index(lseg, j);
513 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400514 if (!ds)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000515 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400516 dprintk("%s USE DS: %s cl_count %d\n", __func__,
517 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000518
519 /* No multipath support. Use first DS */
Andy Adamson3a7936c2012-04-27 17:53:51 -0400520 atomic_inc(&ds->ds_clp->cl_count);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000521 data->ds_clp = ds->ds_clp;
522 fh = nfs4_fl_select_ds_fh(lseg, j);
523 if (fh)
524 data->args.fh = fh;
525
526 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
527 data->mds_offset = offset;
528
529 /* Perform an asynchronous read to ds */
Fred Isamanc5996c42012-04-20 14:47:41 -0400530 status = nfs_initiate_read(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400531 &filelayout_read_call_ops, RPC_TASK_SOFTCONN);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000532 BUG_ON(status != 0);
533 return PNFS_ATTEMPTED;
534}
535
Fred Isamana69aef12011-03-03 15:13:47 +0000536/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000537static enum pnfs_try_status
538filelayout_write_pagelist(struct nfs_write_data *data, int sync)
539{
Fred Isamancd841602012-04-20 14:47:44 -0400540 struct nfs_pgio_header *hdr = data->header;
541 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000542 struct nfs4_pnfs_ds *ds;
543 loff_t offset = data->args.offset;
544 u32 j, idx;
545 struct nfs_fh *fh;
546 int status;
547
548 /* Retrieve the correct rpc_client for the byte range */
549 j = nfs4_fl_calc_j_index(lseg, offset);
550 idx = nfs4_fl_calc_ds_index(lseg, j);
551 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400552 if (!ds)
Fred Isamana69aef12011-03-03 15:13:47 +0000553 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400554 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d\n",
555 __func__, hdr->inode->i_ino, sync, (size_t) data->args.count,
556 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Fred Isamana69aef12011-03-03 15:13:47 +0000557
Fred Isamana69aef12011-03-03 15:13:47 +0000558 data->write_done_cb = filelayout_write_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400559 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamana69aef12011-03-03 15:13:47 +0000560 data->ds_clp = ds->ds_clp;
561 fh = nfs4_fl_select_ds_fh(lseg, j);
562 if (fh)
563 data->args.fh = fh;
564 /*
565 * Get the file offset on the dserver. Set the write offset to
566 * this offset and save the original offset.
567 */
568 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000569
570 /* Perform an asynchronous write */
Fred Isamanc5996c42012-04-20 14:47:41 -0400571 status = nfs_initiate_write(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400572 &filelayout_write_call_ops, sync,
573 RPC_TASK_SOFTCONN);
Fred Isamana69aef12011-03-03 15:13:47 +0000574 BUG_ON(status != 0);
575 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000576}
577
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000578/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400579 * filelayout_check_layout()
580 *
581 * Make sure layout segment parameters are sane WRT the device.
582 * At this point no generic layer initialization of the lseg has occurred,
583 * and nothing has been added to the layout_hdr cache.
584 *
585 */
586static int
587filelayout_check_layout(struct pnfs_layout_hdr *lo,
588 struct nfs4_filelayout_segment *fl,
589 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400590 struct nfs4_deviceid *id,
591 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400592{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400593 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400594 struct nfs4_file_layout_dsaddr *dsaddr;
595 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000596 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400597
598 dprintk("--> %s\n", __func__);
599
Andy Adamson7c24d942011-06-13 18:22:38 -0400600 /* FIXME: remove this check when layout segment support is added */
601 if (lgr->range.offset != 0 ||
602 lgr->range.length != NFS4_MAX_UINT64) {
603 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
604 __func__);
605 goto out;
606 }
607
Andy Adamson16b374c2010-10-20 00:18:04 -0400608 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500609 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400610 __func__, fl->pattern_offset);
611 goto out;
612 }
613
Benny Halevy75247af2011-02-22 15:56:01 -0800614 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
615 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400616 __func__, fl->stripe_unit);
617 goto out;
618 }
619
620 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300621 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
622 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400623 if (d == NULL) {
Trond Myklebust78e4e052012-09-18 21:02:29 -0400624 dsaddr = filelayout_get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400625 if (dsaddr == NULL)
626 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400627 } else
628 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400629 /* Found deviceid is unavailable */
630 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400631 goto out_put;
632
Andy Adamson16b374c2010-10-20 00:18:04 -0400633 fl->dsaddr = dsaddr;
634
Chuck Levere4149662011-10-25 12:18:03 -0400635 if (fl->first_stripe_index >= dsaddr->stripe_count) {
636 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400637 __func__, fl->first_stripe_index);
638 goto out_put;
639 }
640
641 if ((fl->stripe_type == STRIPE_SPARSE &&
642 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
643 (fl->stripe_type == STRIPE_DENSE &&
644 fl->num_fh != dsaddr->stripe_count)) {
645 dprintk("%s num_fh %u not valid for given packing\n",
646 __func__, fl->num_fh);
647 goto out_put;
648 }
649
650 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
651 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
652 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
653 nfss->wsize);
654 }
655
656 status = 0;
657out:
658 dprintk("--> %s returns %d\n", __func__, status);
659 return status;
660out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000661 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400662 goto out;
663}
664
665static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
666{
667 int i;
668
669 for (i = 0; i < fl->num_fh; i++) {
670 if (!fl->fh_array[i])
671 break;
672 kfree(fl->fh_array[i]);
673 }
674 kfree(fl->fh_array);
675 fl->fh_array = NULL;
676}
677
678static void
679_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
680{
681 filelayout_free_fh_array(fl);
682 kfree(fl);
683}
684
685static int
686filelayout_decode_layout(struct pnfs_layout_hdr *flo,
687 struct nfs4_filelayout_segment *fl,
688 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400689 struct nfs4_deviceid *id,
690 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400691{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400692 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400693 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400694 struct page *scratch;
695 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400696 uint32_t nfl_util;
697 int i;
698
699 dprintk("%s: set_layout_map Begin\n", __func__);
700
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400701 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400702 if (!scratch)
703 return -ENOMEM;
704
Benny Halevyf7da7a12011-05-19 14:16:47 -0400705 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400706 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
707
708 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
709 * num_fh (4) */
710 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
711 if (unlikely(!p))
712 goto out_err;
713
Andy Adamson16b374c2010-10-20 00:18:04 -0400714 memcpy(id, p, sizeof(*id));
715 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400716 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400717
718 nfl_util = be32_to_cpup(p++);
719 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
720 fl->commit_through_mds = 1;
721 if (nfl_util & NFL4_UFLG_DENSE)
722 fl->stripe_type = STRIPE_DENSE;
723 else
724 fl->stripe_type = STRIPE_SPARSE;
725 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
726
727 fl->first_stripe_index = be32_to_cpup(p++);
728 p = xdr_decode_hyper(p, &fl->pattern_offset);
729 fl->num_fh = be32_to_cpup(p++);
730
731 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
732 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
733 fl->pattern_offset);
734
Andy Adamsoncec765c2011-06-13 18:36:17 -0400735 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
736 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400737 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400738 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400739 goto out_err;
740
Andy Adamsoncec765c2011-06-13 18:36:17 -0400741 if (fl->num_fh > 0) {
742 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
743 gfp_flags);
744 if (!fl->fh_array)
745 goto out_err;
746 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400747
748 for (i = 0; i < fl->num_fh; i++) {
749 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400750 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400751 if (!fl->fh_array[i])
752 goto out_err_free;
753
754 p = xdr_inline_decode(&stream, 4);
755 if (unlikely(!p))
756 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400757 fl->fh_array[i]->size = be32_to_cpup(p++);
758 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500759 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400760 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400761 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400762 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400763
764 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
765 if (unlikely(!p))
766 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400767 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400768 dprintk("DEBUG: %s: fh len %d\n", __func__,
769 fl->fh_array[i]->size);
770 }
771
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400772 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400773 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400774
775out_err_free:
776 filelayout_free_fh_array(fl);
777out_err:
778 __free_page(scratch);
779 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400780}
781
Fred Isamanc8795132011-03-23 13:27:49 +0000782static void
783filelayout_free_lseg(struct pnfs_layout_segment *lseg)
784{
785 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
786
787 dprintk("--> %s\n", __func__);
788 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400789 /* This assumes a single RW lseg */
790 if (lseg->pls_range.iomode == IOMODE_RW) {
791 struct nfs4_filelayout *flo;
792
793 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
794 flo->commit_info.nbuckets = 0;
795 kfree(flo->commit_info.buckets);
796 flo->commit_info.buckets = NULL;
797 }
Fred Isamanc8795132011-03-23 13:27:49 +0000798 _filelayout_free_lseg(fl);
799}
800
Fred Isaman799ba8d2012-04-20 14:47:38 -0400801static int
802filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400803 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400804 gfp_t gfp_flags)
805{
806 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400807 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400808 int size;
809
810 if (fl->commit_through_mds)
811 return 0;
Fred Isamanea2cf222012-04-20 14:47:53 -0400812 if (cinfo->ds->nbuckets != 0) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400813 /* This assumes there is only one IOMODE_RW lseg. What
814 * we really want to do is have a layout_hdr level
815 * dictionary of <multipath_list4, fh> keys, each
816 * associated with a struct list_head, populated by calls
817 * to filelayout_write_pagelist().
818 * */
819 return 0;
820 }
821
822 size = (fl->stripe_type == STRIPE_SPARSE) ?
823 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
824
Fred Isamanea2cf222012-04-20 14:47:53 -0400825 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400826 gfp_flags);
827 if (!buckets)
828 return -ENOMEM;
829 else {
830 int i;
831
Fred Isamanea2cf222012-04-20 14:47:53 -0400832 spin_lock(cinfo->lock);
833 if (cinfo->ds->nbuckets != 0)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400834 kfree(buckets);
835 else {
Fred Isamanea2cf222012-04-20 14:47:53 -0400836 cinfo->ds->buckets = buckets;
837 cinfo->ds->nbuckets = size;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400838 for (i = 0; i < size; i++) {
839 INIT_LIST_HEAD(&buckets[i].written);
840 INIT_LIST_HEAD(&buckets[i].committing);
841 }
842 }
Fred Isamanea2cf222012-04-20 14:47:53 -0400843 spin_unlock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400844 return 0;
845 }
846}
847
Andy Adamson16b374c2010-10-20 00:18:04 -0400848static struct pnfs_layout_segment *
849filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400850 struct nfs4_layoutget_res *lgr,
851 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400852{
853 struct nfs4_filelayout_segment *fl;
854 int rc;
855 struct nfs4_deviceid id;
856
857 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400858 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400859 if (!fl)
860 return NULL;
861
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400862 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
863 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400864 _filelayout_free_lseg(fl);
865 return NULL;
866 }
867 return &fl->generic_hdr;
868}
869
Fred Isaman94ad1c82011-03-01 01:34:14 +0000870/*
871 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
872 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300873 * return true : coalesce page
874 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000875 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400876static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000877filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
878 struct nfs_page *req)
879{
880 u64 p_stripe, r_stripe;
881 u32 stripe_unit;
882
Benny Halevy19345cb2011-06-19 18:33:46 -0400883 if (!pnfs_generic_pg_test(pgio, prev, req) ||
884 !nfs_generic_pg_test(pgio, prev, req))
885 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300886
Fred Isamanb5542842012-04-20 14:47:43 -0400887 p_stripe = (u64)req_offset(prev);
888 r_stripe = (u64)req_offset(req);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000889 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
890
891 do_div(p_stripe, stripe_unit);
892 do_div(r_stripe, stripe_unit);
893
894 return (p_stripe == r_stripe);
895}
896
Trond Myklebust17280172012-03-11 13:11:00 -0400897static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400898filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
899 struct nfs_page *req)
900{
901 BUG_ON(pgio->pg_lseg != NULL);
902
Fred Isaman1825a0d2012-04-20 19:55:31 -0400903 if (req->wb_offset != req->wb_pgbase) {
904 /*
905 * Handling unaligned pages is difficult, because have to
906 * somehow split a req in two in certain cases in the
907 * pg.test code. Avoid this by just not using pnfs
908 * in this case.
909 */
910 nfs_pageio_reset_read_mds(pgio);
911 return;
912 }
Andy Adamson7c24d942011-06-13 18:22:38 -0400913 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
914 req->wb_context,
915 0,
916 NFS4_MAX_UINT64,
917 IOMODE_READ,
918 GFP_KERNEL);
919 /* If no lseg, fall back to read through mds */
920 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400921 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400922}
923
Trond Myklebust17280172012-03-11 13:11:00 -0400924static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400925filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
926 struct nfs_page *req)
927{
Fred Isamanea2cf222012-04-20 14:47:53 -0400928 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400929 int status;
930
Andy Adamson7c24d942011-06-13 18:22:38 -0400931 BUG_ON(pgio->pg_lseg != NULL);
932
Fred Isaman1825a0d2012-04-20 19:55:31 -0400933 if (req->wb_offset != req->wb_pgbase)
934 goto out_mds;
Andy Adamson7c24d942011-06-13 18:22:38 -0400935 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
936 req->wb_context,
937 0,
938 NFS4_MAX_UINT64,
939 IOMODE_RW,
940 GFP_NOFS);
941 /* If no lseg, fall back to write through mds */
942 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400943 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -0400944 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
945 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400946 if (status < 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -0400947 pnfs_put_lseg(pgio->pg_lseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400948 pgio->pg_lseg = NULL;
949 goto out_mds;
950 }
951 return;
952out_mds:
953 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400954}
955
Trond Myklebust1751c362011-06-10 13:30:23 -0400956static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400957 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400958 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400959 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400960};
961
962static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400963 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400964 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400965 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400966};
967
Fred Isamane0c2b382011-03-23 13:27:53 +0000968static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
969{
970 if (fl->stripe_type == STRIPE_SPARSE)
971 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
972 else
973 return j;
974}
975
Fred Isamand6d6dc72012-03-08 17:29:35 -0500976/* The generic layer is about to remove the req from the commit list.
977 * If this will make the bucket empty, it will need to put the lseg reference.
Fred Isamand6d6dc72012-03-08 17:29:35 -0500978 */
Trond Myklebust8dd37752012-03-15 17:16:40 -0400979static void
Fred Isamanea2cf222012-04-20 14:47:53 -0400980filelayout_clear_request_commit(struct nfs_page *req,
981 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +0000982{
Trond Myklebust8dd37752012-03-15 17:16:40 -0400983 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -0400984
Fred Isamanea2cf222012-04-20 14:47:53 -0400985 spin_lock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400986 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
987 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -0400988 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500989 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -0400990 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500991
Fred Isaman799ba8d2012-04-20 14:47:38 -0400992 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -0400993 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400994 written);
995 freeme = bucket->wlseg;
996 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500997 }
Trond Myklebust8dd37752012-03-15 17:16:40 -0400998out:
Fred Isamanea2cf222012-04-20 14:47:53 -0400999 nfs_request_remove_commit_list(req, cinfo);
1000 spin_unlock(cinfo->lock);
Trond Myklebust9369a432012-09-18 20:57:08 -04001001 pnfs_put_lseg(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001002}
1003
1004static struct list_head *
1005filelayout_choose_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001006 struct pnfs_layout_segment *lseg,
1007 struct nfs_commit_info *cinfo)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001008{
Fred Isamane0c2b382011-03-23 13:27:53 +00001009 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1010 u32 i, j;
1011 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -04001012 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +00001013
Fred Isamand6d6dc72012-03-08 17:29:35 -05001014 if (fl->commit_through_mds)
Fred Isamanea2cf222012-04-20 14:47:53 -04001015 return &cinfo->mds->list;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001016
Fred Isamane0c2b382011-03-23 13:27:53 +00001017 /* Note that we are calling nfs4_fl_calc_j_index on each page
1018 * that ends up being committed to a data server. An attractive
1019 * alternative is to add a field to nfs_write_data and nfs_page
1020 * to store the value calculated in filelayout_write_pagelist
1021 * and just use that here.
1022 */
Fred Isamanb5542842012-04-20 14:47:43 -04001023 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +00001024 i = select_bucket_index(fl, j);
Fred Isamanea2cf222012-04-20 14:47:53 -04001025 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001026 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +00001027 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -05001028 /* Non-empty buckets hold a reference on the lseg. That ref
1029 * is normally transferred to the COMMIT call and released
1030 * there. It could also be released if the last req is pulled
1031 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -04001032 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -05001033 */
Trond Myklebust9369a432012-09-18 20:57:08 -04001034 buckets[i].wlseg = pnfs_get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +00001035 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001036 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -04001037 cinfo->ds->nwritten++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001038 return list;
1039}
1040
Trond Myklebust8dd37752012-03-15 17:16:40 -04001041static void
1042filelayout_mark_request_commit(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001043 struct pnfs_layout_segment *lseg,
1044 struct nfs_commit_info *cinfo)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001045{
1046 struct list_head *list;
1047
Fred Isamanea2cf222012-04-20 14:47:53 -04001048 list = filelayout_choose_commit_list(req, lseg, cinfo);
1049 nfs_request_add_commit_list(req, list, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001050}
1051
Fred Isamane0c2b382011-03-23 13:27:53 +00001052static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1053{
1054 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1055
1056 if (flseg->stripe_type == STRIPE_SPARSE)
1057 return i;
1058 else
1059 return nfs4_fl_calc_ds_index(lseg, i);
1060}
1061
1062static struct nfs_fh *
1063select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1064{
1065 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1066
1067 if (flseg->stripe_type == STRIPE_SPARSE) {
1068 if (flseg->num_fh == 1)
1069 i = 0;
1070 else if (flseg->num_fh == 0)
1071 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1072 return NULL;
1073 }
1074 return flseg->fh_array[i];
1075}
1076
Fred Isaman0b7c0152012-04-20 14:47:39 -04001077static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +00001078{
1079 struct pnfs_layout_segment *lseg = data->lseg;
1080 struct nfs4_pnfs_ds *ds;
1081 u32 idx;
1082 struct nfs_fh *fh;
1083
1084 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1085 ds = nfs4_fl_prepare_ds(lseg, idx);
1086 if (!ds) {
Fred Isamane0c2b382011-03-23 13:27:53 +00001087 prepare_to_resend_writes(data);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001088 filelayout_commit_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +00001089 return -EAGAIN;
1090 }
Andy Adamson3a7936c2012-04-27 17:53:51 -04001091 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1092 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
Fred Isaman0b7c0152012-04-20 14:47:39 -04001093 data->commit_done_cb = filelayout_commit_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -04001094 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamane0c2b382011-03-23 13:27:53 +00001095 data->ds_clp = ds->ds_clp;
1096 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1097 if (fh)
1098 data->args.fh = fh;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001099 return nfs_initiate_commit(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001100 &filelayout_commit_call_ops, how,
1101 RPC_TASK_SOFTCONN);
Fred Isamane0c2b382011-03-23 13:27:53 +00001102}
1103
Trond Myklebust8dd37752012-03-15 17:16:40 -04001104static int
Fred Isaman1763da12012-04-20 14:47:57 -04001105transfer_commit_list(struct list_head *src, struct list_head *dst,
1106 struct nfs_commit_info *cinfo, int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001107{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001108 struct nfs_page *req, *tmp;
1109 int ret = 0;
1110
1111 list_for_each_entry_safe(req, tmp, src, wb_list) {
1112 if (!nfs_lock_request(req))
1113 continue;
Trond Myklebust53b8ee32012-05-22 16:36:27 -04001114 kref_get(&req->wb_kref);
Fred Isamanea2cf222012-04-20 14:47:53 -04001115 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001116 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001117 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001118 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1119 nfs_list_add_request(req, dst);
1120 ret++;
Fred Isaman1763da12012-04-20 14:47:57 -04001121 if ((ret == max) && !cinfo->dreq)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001122 break;
1123 }
Fred Isaman1763da12012-04-20 14:47:57 -04001124 return ret;
1125}
1126
1127static int
1128filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1129 struct nfs_commit_info *cinfo,
1130 int max)
1131{
1132 struct list_head *src = &bucket->written;
1133 struct list_head *dst = &bucket->committing;
1134 int ret;
1135
1136 ret = transfer_commit_list(src, dst, cinfo, max);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001137 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001138 cinfo->ds->nwritten -= ret;
1139 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001140 bucket->clseg = bucket->wlseg;
1141 if (list_empty(src))
1142 bucket->wlseg = NULL;
1143 else
Trond Myklebust9369a432012-09-18 20:57:08 -04001144 pnfs_get_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001145 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001146 return ret;
1147}
1148
Fred Isamand6d6dc72012-03-08 17:29:35 -05001149/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001150 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001151 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001152static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1153 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001154{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001155 int i, rv = 0, cnt;
1156
Fred Isamanea2cf222012-04-20 14:47:53 -04001157 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1158 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1159 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001160 max -= cnt;
1161 rv += cnt;
1162 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001163 return rv;
1164}
1165
Fred Isaman1763da12012-04-20 14:47:57 -04001166/* Pull everything off the committing lists and dump into @dst */
1167static void filelayout_recover_commit_reqs(struct list_head *dst,
1168 struct nfs_commit_info *cinfo)
1169{
1170 struct pnfs_commit_bucket *b;
1171 int i;
1172
1173 /* NOTE cinfo->lock is NOT held, relying on fact that this is
1174 * only called on single thread per dreq.
Trond Myklebust9369a432012-09-18 20:57:08 -04001175 * Can't take the lock because need to do pnfs_put_lseg
Fred Isaman1763da12012-04-20 14:47:57 -04001176 */
1177 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1178 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
1179 BUG_ON(!list_empty(&b->written));
Trond Myklebust9369a432012-09-18 20:57:08 -04001180 pnfs_put_lseg(b->wlseg);
Fred Isaman1763da12012-04-20 14:47:57 -04001181 b->wlseg = NULL;
1182 }
1183 }
1184 cinfo->ds->nwritten = 0;
1185}
1186
Trond Myklebust9390f422012-03-16 13:52:45 -04001187static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001188alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001189{
Fred Isamanea2cf222012-04-20 14:47:53 -04001190 struct pnfs_ds_commit_info *fl_cinfo;
1191 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001192 struct nfs_commit_data *data;
Fred Isamane0c2b382011-03-23 13:27:53 +00001193 int i, j;
Trond Myklebust9390f422012-03-16 13:52:45 -04001194 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001195
Fred Isamanea2cf222012-04-20 14:47:53 -04001196 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001197 bucket = fl_cinfo->buckets;
1198 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1199 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001200 continue;
1201 data = nfs_commitdata_alloc();
1202 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001203 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001204 data->ds_commit_index = i;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001205 data->lseg = bucket->clseg;
1206 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001207 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001208 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001209 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001210
Trond Myklebust9390f422012-03-16 13:52:45 -04001211 /* Clean up on error */
Fred Isaman799ba8d2012-04-20 14:47:38 -04001212 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1213 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001214 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001215 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
Trond Myklebust9369a432012-09-18 20:57:08 -04001216 pnfs_put_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001217 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001218 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001219 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001220 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001221}
1222
1223/* This follows nfs_commit_list pretty closely */
1224static int
1225filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001226 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001227{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001228 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001229 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001230 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001231
1232 if (!list_empty(mds_pages)) {
1233 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001234 if (data != NULL) {
1235 data->lseg = NULL;
1236 list_add(&data->pages, &list);
1237 nreq++;
1238 } else
Fred Isamanea2cf222012-04-20 14:47:53 -04001239 nfs_retry_commit(mds_pages, NULL, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001240 }
1241
Fred Isamanea2cf222012-04-20 14:47:53 -04001242 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001243
1244 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001245 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001246 goto out;
1247 }
1248
Fred Isamanea2cf222012-04-20 14:47:53 -04001249 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001250
1251 list_for_each_entry_safe(data, tmp, &list, pages) {
1252 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001253 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001254 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001255 nfs_initiate_commit(NFS_CLIENT(inode), data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001256 data->mds_ops, how, 0);
Fred Isamane0c2b382011-03-23 13:27:53 +00001257 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001258 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001259
Fred Isamanea2cf222012-04-20 14:47:53 -04001260 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001261 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001262 filelayout_initiate_commit(data, how);
1263 }
1264 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001265out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001266 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001267 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001268}
1269
Benny Halevy1775bc32011-05-20 13:47:33 +02001270static void
1271filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1272{
1273 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1274}
1275
Fred Isaman799ba8d2012-04-20 14:47:38 -04001276static struct pnfs_layout_hdr *
1277filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1278{
1279 struct nfs4_filelayout *flo;
1280
1281 flo = kzalloc(sizeof(*flo), gfp_flags);
1282 return &flo->generic_hdr;
1283}
1284
1285static void
1286filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1287{
1288 kfree(FILELAYOUT_FROM_HDR(lo));
1289}
1290
Fred Isamanea2cf222012-04-20 14:47:53 -04001291static struct pnfs_ds_commit_info *
1292filelayout_get_ds_info(struct inode *inode)
1293{
Fred Isamandf011742012-04-24 14:50:34 -04001294 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1295
1296 if (layout == NULL)
1297 return NULL;
1298 else
1299 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
Fred Isamanea2cf222012-04-20 14:47:53 -04001300}
1301
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001302static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001303 .id = LAYOUT_NFSV4_1_FILES,
1304 .name = "LAYOUT_NFSV4_1_FILES",
1305 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001306 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1307 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001308 .alloc_lseg = filelayout_alloc_lseg,
1309 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001310 .pg_read_ops = &filelayout_pg_read_ops,
1311 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001312 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001313 .mark_request_commit = filelayout_mark_request_commit,
1314 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001315 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isaman1763da12012-04-20 14:47:57 -04001316 .recover_commit_reqs = filelayout_recover_commit_reqs,
Fred Isamane0c2b382011-03-23 13:27:53 +00001317 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001318 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001319 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001320 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001321};
1322
1323static int __init nfs4filelayout_init(void)
1324{
1325 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1326 __func__);
1327 return pnfs_register_layoutdriver(&filelayout_type);
1328}
1329
1330static void __exit nfs4filelayout_exit(void)
1331{
1332 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1333 __func__);
1334 pnfs_unregister_layoutdriver(&filelayout_type);
1335}
1336
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001337MODULE_ALIAS("nfs-layouttype4-1");
1338
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001339module_init(nfs4filelayout_init);
1340module_exit(nfs4filelayout_exit);