]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/nfs/nfs4filelayout.c
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
[mirror_ubuntu-bionic-kernel.git] / fs / nfs / nfs4filelayout.c
CommitLineData
7ab672ce
DH
1/*
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>
19345cb2 33#include <linux/nfs_page.h>
143cb494 34#include <linux/module.h>
16b374ca 35
0a702195
WAA
36#include <linux/sunrpc/metrics.h>
37
76e697ba 38#include "nfs4session.h"
16b374ca 39#include "internal.h"
9cb81968 40#include "delegation.h"
16b374ca 41#include "nfs4filelayout.h"
7ab672ce
DH
42
43#define NFSDBG_FACILITY NFSDBG_PNFS_LD
44
45MODULE_LICENSE("GPL");
46MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
47MODULE_DESCRIPTION("The NFSv4 file layout driver");
48
cbdabc7f
AA
49#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
50
cfe7f412
FI
51static loff_t
52filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
53 loff_t offset)
54{
55 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
3476f114
CM
56 u64 stripe_no;
57 u32 rem;
cfe7f412
FI
58
59 offset -= flseg->pattern_offset;
3476f114
CM
60 stripe_no = div_u64(offset, stripe_width);
61 div_u64_rem(offset, flseg->stripe_unit, &rem);
cfe7f412 62
3476f114 63 return stripe_no * flseg->stripe_unit + rem;
cfe7f412
FI
64}
65
66/* This function is used by the layout driver to calculate the
67 * offset of the file on the dserver based on whether the
68 * layout type is STRIPE_DENSE or STRIPE_SPARSE
69 */
70static loff_t
71filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
72{
73 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
74
75 switch (flseg->stripe_type) {
76 case STRIPE_SPARSE:
77 return offset;
78
79 case STRIPE_DENSE:
80 return filelayout_get_dense_offset(flseg, offset);
81 }
82
83 BUG();
84}
85
e7dd79af
AA
86static void filelayout_reset_write(struct nfs_write_data *data)
87{
88 struct nfs_pgio_header *hdr = data->header;
e7dd79af
AA
89 struct rpc_task *task = &data->task;
90
91 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
92 dprintk("%s Reset task %5u for i/o through MDS "
93 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
94 data->task.tk_pid,
497826af
BS
95 hdr->inode->i_sb->s_id,
96 (long long)NFS_FILEID(hdr->inode),
e7dd79af
AA
97 data->args.count,
98 (unsigned long long)data->args.offset);
99
100 task->tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
101 &hdr->pages,
78f33277
BH
102 hdr->completion_ops,
103 hdr->dreq);
e7dd79af
AA
104 }
105}
106
107static void filelayout_reset_read(struct nfs_read_data *data)
108{
109 struct nfs_pgio_header *hdr = data->header;
e7dd79af
AA
110 struct rpc_task *task = &data->task;
111
112 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
113 dprintk("%s Reset task %5u for i/o through MDS "
114 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
115 data->task.tk_pid,
497826af
BS
116 hdr->inode->i_sb->s_id,
117 (long long)NFS_FILEID(hdr->inode),
e7dd79af
AA
118 data->args.count,
119 (unsigned long long)data->args.offset);
120
121 task->tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
122 &hdr->pages,
78f33277
BH
123 hdr->completion_ops,
124 hdr->dreq);
e7dd79af
AA
125 }
126}
127
d527e5c1
TM
128static void filelayout_fenceme(struct inode *inode, struct pnfs_layout_hdr *lo)
129{
130 if (!test_and_clear_bit(NFS_LAYOUT_RETURN, &lo->plh_flags))
131 return;
132 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags);
133 pnfs_return_layout(inode);
134}
135
cbdabc7f
AA
136static int filelayout_async_handle_error(struct rpc_task *task,
137 struct nfs4_state *state,
138 struct nfs_client *clp,
e7dd79af 139 struct pnfs_layout_segment *lseg)
cbdabc7f 140{
d527e5c1
TM
141 struct pnfs_layout_hdr *lo = lseg->pls_layout;
142 struct inode *inode = lo->plh_inode;
e7dd79af
AA
143 struct nfs_server *mds_server = NFS_SERVER(inode);
144 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
9cb81968 145 struct nfs_client *mds_client = mds_server->nfs_client;
671fb896 146 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
9cb81968 147
cbdabc7f
AA
148 if (task->tk_status >= 0)
149 return 0;
cbdabc7f
AA
150
151 switch (task->tk_status) {
9cb81968
AA
152 /* MDS state errors */
153 case -NFS4ERR_DELEG_REVOKED:
154 case -NFS4ERR_ADMIN_REVOKED:
155 case -NFS4ERR_BAD_STATEID:
e7dd79af
AA
156 if (state == NULL)
157 break;
2dc31756 158 nfs_remove_bad_delegation(state->inode);
9cb81968 159 case -NFS4ERR_OPENMODE:
e7dd79af
AA
160 if (state == NULL)
161 break;
9cb81968
AA
162 nfs4_schedule_stateid_recovery(mds_server, state);
163 goto wait_on_recovery;
164 case -NFS4ERR_EXPIRED:
e7dd79af
AA
165 if (state != NULL)
166 nfs4_schedule_stateid_recovery(mds_server, state);
9cb81968
AA
167 nfs4_schedule_lease_recovery(mds_client);
168 goto wait_on_recovery;
169 /* DS session errors */
cbdabc7f
AA
170 case -NFS4ERR_BADSESSION:
171 case -NFS4ERR_BADSLOT:
172 case -NFS4ERR_BAD_HIGH_SLOT:
173 case -NFS4ERR_DEADSESSION:
174 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
175 case -NFS4ERR_SEQ_FALSE_RETRY:
176 case -NFS4ERR_SEQ_MISORDERED:
177 dprintk("%s ERROR %d, Reset session. Exchangeid "
178 "flags 0x%x\n", __func__, task->tk_status,
179 clp->cl_exchange_flags);
9f594791 180 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
cbdabc7f
AA
181 break;
182 case -NFS4ERR_DELAY:
183 case -NFS4ERR_GRACE:
cbdabc7f
AA
184 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
185 break;
a8a4ae3a
AA
186 case -NFS4ERR_RETRY_UNCACHED_REP:
187 break;
041245c8
AA
188 /* Invalidate Layout errors */
189 case -NFS4ERR_PNFS_NO_LAYOUT:
190 case -ESTALE: /* mapped NFS4ERR_STALE */
191 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
192 case -EISDIR: /* mapped NFS4ERR_ISDIR */
193 case -NFS4ERR_FHEXPIRED:
194 case -NFS4ERR_WRONG_TYPE:
195 dprintk("%s Invalid layout error %d\n", __func__,
196 task->tk_status);
197 /*
198 * Destroy layout so new i/o will get a new layout.
199 * Layout will not be destroyed until all current lseg
200 * references are put. Mark layout as invalid to resend failed
201 * i/o and all i/o waiting on the slot table to the MDS until
202 * layout is destroyed and a new valid layout is obtained.
203 */
d42e7873 204 pnfs_destroy_layout(NFS_I(inode));
041245c8
AA
205 rpc_wake_up(&tbl->slot_tbl_waitq);
206 goto reset;
e7dd79af
AA
207 /* RPC connection errors */
208 case -ECONNREFUSED:
209 case -EHOSTDOWN:
210 case -EHOSTUNREACH:
211 case -ENETUNREACH:
212 case -EIO:
213 case -ETIMEDOUT:
214 case -EPIPE:
215 dprintk("%s DS connection error %d\n", __func__,
216 task->tk_status);
1dfed273 217 nfs4_mark_deviceid_unavailable(devid);
d527e5c1 218 set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags);
671fb896 219 rpc_wake_up(&tbl->slot_tbl_waitq);
e7dd79af 220 /* fall through */
cbdabc7f 221 default:
041245c8 222reset:
e7dd79af 223 dprintk("%s Retry through MDS. Error %d\n", __func__,
cbdabc7f 224 task->tk_status);
e7dd79af 225 return -NFS4ERR_RESET_TO_MDS;
cbdabc7f 226 }
9cb81968 227out:
cbdabc7f
AA
228 task->tk_status = 0;
229 return -EAGAIN;
9cb81968
AA
230wait_on_recovery:
231 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
232 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
233 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
234 goto out;
cbdabc7f
AA
235}
236
237/* NFS_PROTO call done callback routines */
238
239static int filelayout_read_done_cb(struct rpc_task *task,
240 struct nfs_read_data *data)
241{
e7dd79af
AA
242 struct nfs_pgio_header *hdr = data->header;
243 int err;
cbdabc7f 244
e7dd79af
AA
245 err = filelayout_async_handle_error(task, data->args.context->state,
246 data->ds_clp, hdr->lseg);
cbdabc7f 247
e7dd79af
AA
248 switch (err) {
249 case -NFS4ERR_RESET_TO_MDS:
250 filelayout_reset_read(data);
251 return task->tk_status;
252 case -EAGAIN:
d00c5d43 253 rpc_restart_call_prepare(task);
cbdabc7f
AA
254 return -EAGAIN;
255 }
256
257 return 0;
258}
259
863a3c6c
AA
260/*
261 * We reference the rpc_cred of the first WRITE that triggers the need for
262 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
263 * rfc5661 is not clear about which credential should be used.
264 */
265static void
266filelayout_set_layoutcommit(struct nfs_write_data *wdata)
267{
cd841605
FI
268 struct nfs_pgio_header *hdr = wdata->header;
269
270 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
863a3c6c
AA
271 wdata->res.verf->committed == NFS_FILE_SYNC)
272 return;
273
274 pnfs_set_layoutcommit(wdata);
cd841605
FI
275 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
276 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
863a3c6c
AA
277}
278
1dfed273
TM
279bool
280filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
281{
282 return filelayout_test_devid_invalid(node) ||
283 nfs4_test_deviceid_unavailable(node);
284}
285
286static bool
287filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
288{
289 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
290
8006bfba 291 return filelayout_test_devid_unavailable(node);
1dfed273
TM
292}
293
dc70d7b3
AA
294/*
295 * Call ops for the async read/write cases
296 * In the case of dense layouts, the offset needs to be reset to its
297 * original value.
298 */
299static void filelayout_read_prepare(struct rpc_task *task, void *data)
300{
cd12ae32 301 struct nfs_read_data *rdata = data;
dc70d7b3 302
041245c8 303 if (filelayout_reset_to_mds(rdata->header->lseg)) {
0ad2f378
AA
304 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
305 filelayout_reset_read(rdata);
306 rpc_exit(task, 0);
307 return;
308 }
cbdabc7f
AA
309 rdata->read_done_cb = filelayout_read_done_cb;
310
d9afbd1b
TM
311 nfs41_setup_sequence(rdata->ds_clp->cl_session,
312 &rdata->args.seq_args,
313 &rdata->res.seq_res,
314 task);
dc70d7b3
AA
315}
316
317static void filelayout_read_call_done(struct rpc_task *task, void *data)
318{
cd12ae32 319 struct nfs_read_data *rdata = data;
dc70d7b3
AA
320
321 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
322
bd4aeffb
AA
323 if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) &&
324 task->tk_status == 0)
0ad2f378
AA
325 return;
326
dc70d7b3 327 /* Note this may cause RPC to be resent */
cd841605 328 rdata->header->mds_ops->rpc_call_done(task, data);
dc70d7b3
AA
329}
330
0a702195
WAA
331static void filelayout_read_count_stats(struct rpc_task *task, void *data)
332{
cd12ae32 333 struct nfs_read_data *rdata = data;
0a702195 334
cd841605 335 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
0a702195
WAA
336}
337
dc70d7b3
AA
338static void filelayout_read_release(void *data)
339{
cd12ae32 340 struct nfs_read_data *rdata = data;
d527e5c1 341 struct pnfs_layout_hdr *lo = rdata->header->lseg->pls_layout;
dc70d7b3 342
d527e5c1 343 filelayout_fenceme(lo->plh_inode, lo);
996074cb 344 nfs_put_client(rdata->ds_clp);
cd841605 345 rdata->header->mds_ops->rpc_release(data);
dc70d7b3
AA
346}
347
a69aef14
FI
348static int filelayout_write_done_cb(struct rpc_task *task,
349 struct nfs_write_data *data)
350{
e7dd79af
AA
351 struct nfs_pgio_header *hdr = data->header;
352 int err;
353
354 err = filelayout_async_handle_error(task, data->args.context->state,
355 data->ds_clp, hdr->lseg);
356
357 switch (err) {
358 case -NFS4ERR_RESET_TO_MDS:
359 filelayout_reset_write(data);
360 return task->tk_status;
361 case -EAGAIN:
d00c5d43 362 rpc_restart_call_prepare(task);
a69aef14
FI
363 return -EAGAIN;
364 }
365
863a3c6c 366 filelayout_set_layoutcommit(data);
a69aef14
FI
367 return 0;
368}
369
e0c2b380 370/* Fake up some data that will cause nfs_commit_release to retry the writes. */
0b7c0153 371static void prepare_to_resend_writes(struct nfs_commit_data *data)
e0c2b380
FI
372{
373 struct nfs_page *first = nfs_list_entry(data->pages.next);
374
375 data->task.tk_status = 0;
2f2c63bc
TM
376 memcpy(&data->verf.verifier, &first->wb_verf,
377 sizeof(data->verf.verifier));
378 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
e0c2b380
FI
379}
380
381static int filelayout_commit_done_cb(struct rpc_task *task,
0b7c0153 382 struct nfs_commit_data *data)
e0c2b380 383{
e7dd79af
AA
384 int err;
385
386 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
387 data->lseg);
388
389 switch (err) {
390 case -NFS4ERR_RESET_TO_MDS:
391 prepare_to_resend_writes(data);
392 return -EAGAIN;
393 case -EAGAIN:
394 rpc_restart_call_prepare(task);
e0c2b380
FI
395 return -EAGAIN;
396 }
397
398 return 0;
399}
400
a69aef14
FI
401static void filelayout_write_prepare(struct rpc_task *task, void *data)
402{
cd12ae32 403 struct nfs_write_data *wdata = data;
a69aef14 404
041245c8 405 if (filelayout_reset_to_mds(wdata->header->lseg)) {
0ad2f378
AA
406 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
407 filelayout_reset_write(wdata);
408 rpc_exit(task, 0);
409 return;
410 }
d9afbd1b
TM
411 nfs41_setup_sequence(wdata->ds_clp->cl_session,
412 &wdata->args.seq_args,
413 &wdata->res.seq_res,
414 task);
a69aef14
FI
415}
416
417static void filelayout_write_call_done(struct rpc_task *task, void *data)
418{
cd12ae32 419 struct nfs_write_data *wdata = data;
a69aef14 420
bd4aeffb
AA
421 if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) &&
422 task->tk_status == 0)
0ad2f378
AA
423 return;
424
a69aef14 425 /* Note this may cause RPC to be resent */
cd841605 426 wdata->header->mds_ops->rpc_call_done(task, data);
a69aef14
FI
427}
428
0a702195
WAA
429static void filelayout_write_count_stats(struct rpc_task *task, void *data)
430{
cd12ae32 431 struct nfs_write_data *wdata = data;
0a702195 432
cd841605 433 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
0a702195
WAA
434}
435
a69aef14
FI
436static void filelayout_write_release(void *data)
437{
cd12ae32 438 struct nfs_write_data *wdata = data;
d527e5c1 439 struct pnfs_layout_hdr *lo = wdata->header->lseg->pls_layout;
a69aef14 440
d527e5c1 441 filelayout_fenceme(lo->plh_inode, lo);
996074cb 442 nfs_put_client(wdata->ds_clp);
cd841605 443 wdata->header->mds_ops->rpc_release(data);
a69aef14
FI
444}
445
0b7c0153 446static void filelayout_commit_prepare(struct rpc_task *task, void *data)
e0c2b380 447{
0b7c0153 448 struct nfs_commit_data *wdata = data;
e0c2b380 449
d9afbd1b
TM
450 nfs41_setup_sequence(wdata->ds_clp->cl_session,
451 &wdata->args.seq_args,
452 &wdata->res.seq_res,
453 task);
0b7c0153
FI
454}
455
456static void filelayout_write_commit_done(struct rpc_task *task, void *data)
457{
458 struct nfs_commit_data *wdata = data;
459
460 /* Note this may cause RPC to be resent */
461 wdata->mds_ops->rpc_call_done(task, data);
462}
463
464static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
465{
466 struct nfs_commit_data *cdata = data;
467
468 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
469}
470
471static void filelayout_commit_release(void *calldata)
472{
473 struct nfs_commit_data *data = calldata;
474
f453a54a 475 data->completion_ops->completion(data);
9369a431 476 pnfs_put_lseg(data->lseg);
3a7936c3 477 nfs_put_client(data->ds_clp);
0b7c0153 478 nfs_commitdata_release(data);
e0c2b380
FI
479}
480
17280175 481static const struct rpc_call_ops filelayout_read_call_ops = {
dc70d7b3
AA
482 .rpc_call_prepare = filelayout_read_prepare,
483 .rpc_call_done = filelayout_read_call_done,
0a702195 484 .rpc_count_stats = filelayout_read_count_stats,
dc70d7b3
AA
485 .rpc_release = filelayout_read_release,
486};
487
17280175 488static const struct rpc_call_ops filelayout_write_call_ops = {
a69aef14
FI
489 .rpc_call_prepare = filelayout_write_prepare,
490 .rpc_call_done = filelayout_write_call_done,
0a702195 491 .rpc_count_stats = filelayout_write_count_stats,
a69aef14
FI
492 .rpc_release = filelayout_write_release,
493};
494
17280175 495static const struct rpc_call_ops filelayout_commit_call_ops = {
0b7c0153
FI
496 .rpc_call_prepare = filelayout_commit_prepare,
497 .rpc_call_done = filelayout_write_commit_done,
498 .rpc_count_stats = filelayout_commit_count_stats,
e0c2b380
FI
499 .rpc_release = filelayout_commit_release,
500};
501
dc70d7b3
AA
502static enum pnfs_try_status
503filelayout_read_pagelist(struct nfs_read_data *data)
504{
cd841605
FI
505 struct nfs_pgio_header *hdr = data->header;
506 struct pnfs_layout_segment *lseg = hdr->lseg;
dc70d7b3
AA
507 struct nfs4_pnfs_ds *ds;
508 loff_t offset = data->args.offset;
509 u32 j, idx;
510 struct nfs_fh *fh;
dc70d7b3
AA
511
512 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
cd841605 513 __func__, hdr->inode->i_ino,
dc70d7b3
AA
514 data->args.pgbase, (size_t)data->args.count, offset);
515
516 /* Retrieve the correct rpc_client for the byte range */
517 j = nfs4_fl_calc_j_index(lseg, offset);
518 idx = nfs4_fl_calc_ds_index(lseg, j);
519 ds = nfs4_fl_prepare_ds(lseg, idx);
90fecfcb 520 if (!ds)
dc70d7b3 521 return PNFS_NOT_ATTEMPTED;
3a7936c3
AA
522 dprintk("%s USE DS: %s cl_count %d\n", __func__,
523 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
dc70d7b3
AA
524
525 /* No multipath support. Use first DS */
3a7936c3 526 atomic_inc(&ds->ds_clp->cl_count);
dc70d7b3
AA
527 data->ds_clp = ds->ds_clp;
528 fh = nfs4_fl_select_ds_fh(lseg, j);
529 if (fh)
530 data->args.fh = fh;
531
532 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
533 data->mds_offset = offset;
534
535 /* Perform an asynchronous read to ds */
bc5a89b3 536 nfs_initiate_read(ds->ds_clp->cl_rpcclient, data,
9f0ec176 537 &filelayout_read_call_ops, RPC_TASK_SOFTCONN);
dc70d7b3
AA
538 return PNFS_ATTEMPTED;
539}
540
a69aef14 541/* Perform async writes. */
0382b744
AA
542static enum pnfs_try_status
543filelayout_write_pagelist(struct nfs_write_data *data, int sync)
544{
cd841605
FI
545 struct nfs_pgio_header *hdr = data->header;
546 struct pnfs_layout_segment *lseg = hdr->lseg;
a69aef14
FI
547 struct nfs4_pnfs_ds *ds;
548 loff_t offset = data->args.offset;
549 u32 j, idx;
550 struct nfs_fh *fh;
a69aef14
FI
551
552 /* Retrieve the correct rpc_client for the byte range */
553 j = nfs4_fl_calc_j_index(lseg, offset);
554 idx = nfs4_fl_calc_ds_index(lseg, j);
555 ds = nfs4_fl_prepare_ds(lseg, idx);
90fecfcb 556 if (!ds)
a69aef14 557 return PNFS_NOT_ATTEMPTED;
3a7936c3
AA
558 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d\n",
559 __func__, hdr->inode->i_ino, sync, (size_t) data->args.count,
560 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
a69aef14 561
a69aef14 562 data->write_done_cb = filelayout_write_done_cb;
3a7936c3 563 atomic_inc(&ds->ds_clp->cl_count);
a69aef14
FI
564 data->ds_clp = ds->ds_clp;
565 fh = nfs4_fl_select_ds_fh(lseg, j);
566 if (fh)
567 data->args.fh = fh;
568 /*
569 * Get the file offset on the dserver. Set the write offset to
570 * this offset and save the original offset.
571 */
572 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
a69aef14
FI
573
574 /* Perform an asynchronous write */
bc5a89b3 575 nfs_initiate_write(ds->ds_clp->cl_rpcclient, data,
9f0ec176
AA
576 &filelayout_write_call_ops, sync,
577 RPC_TASK_SOFTCONN);
a69aef14 578 return PNFS_ATTEMPTED;
0382b744
AA
579}
580
16b374ca
AA
581/*
582 * filelayout_check_layout()
583 *
584 * Make sure layout segment parameters are sane WRT the device.
585 * At this point no generic layer initialization of the lseg has occurred,
586 * and nothing has been added to the layout_hdr cache.
587 *
588 */
589static int
590filelayout_check_layout(struct pnfs_layout_hdr *lo,
591 struct nfs4_filelayout_segment *fl,
592 struct nfs4_layoutget_res *lgr,
a75b9df9
TM
593 struct nfs4_deviceid *id,
594 gfp_t gfp_flags)
16b374ca 595{
a1eaecbc 596 struct nfs4_deviceid_node *d;
16b374ca
AA
597 struct nfs4_file_layout_dsaddr *dsaddr;
598 int status = -EINVAL;
b7edfaa1 599 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
16b374ca
AA
600
601 dprintk("--> %s\n", __func__);
602
7c24d948
AA
603 /* FIXME: remove this check when layout segment support is added */
604 if (lgr->range.offset != 0 ||
605 lgr->range.length != NFS4_MAX_UINT64) {
606 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
607 __func__);
608 goto out;
609 }
610
16b374ca 611 if (fl->pattern_offset > lgr->range.offset) {
3b6445a6 612 dprintk("%s pattern_offset %lld too large\n",
16b374ca
AA
613 __func__, fl->pattern_offset);
614 goto out;
615 }
616
75247aff
BH
617 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
618 dprintk("%s Invalid stripe unit (%u)\n",
16b374ca
AA
619 __func__, fl->stripe_unit);
620 goto out;
621 }
622
623 /* find and reference the deviceid */
35c8bb54
BH
624 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
625 NFS_SERVER(lo->plh_inode)->nfs_client, id);
a1eaecbc 626 if (d == NULL) {
78e4e05c 627 dsaddr = filelayout_get_device_info(lo->plh_inode, id, gfp_flags);
16b374ca
AA
628 if (dsaddr == NULL)
629 goto out;
a1eaecbc
BH
630 } else
631 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
1dfed273
TM
632 /* Found deviceid is unavailable */
633 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
c47abcf8
AA
634 goto out_put;
635
16b374ca
AA
636 fl->dsaddr = dsaddr;
637
e414966b
CL
638 if (fl->first_stripe_index >= dsaddr->stripe_count) {
639 dprintk("%s Bad first_stripe_index %u\n",
16b374ca
AA
640 __func__, fl->first_stripe_index);
641 goto out_put;
642 }
643
644 if ((fl->stripe_type == STRIPE_SPARSE &&
645 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
646 (fl->stripe_type == STRIPE_DENSE &&
647 fl->num_fh != dsaddr->stripe_count)) {
648 dprintk("%s num_fh %u not valid for given packing\n",
649 __func__, fl->num_fh);
650 goto out_put;
651 }
652
653 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
654 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
655 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
656 nfss->wsize);
657 }
658
659 status = 0;
660out:
661 dprintk("--> %s returns %d\n", __func__, status);
662 return status;
663out_put:
ea8eecdd 664 nfs4_fl_put_deviceid(dsaddr);
16b374ca
AA
665 goto out;
666}
667
668static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
669{
670 int i;
671
672 for (i = 0; i < fl->num_fh; i++) {
673 if (!fl->fh_array[i])
674 break;
675 kfree(fl->fh_array[i]);
676 }
677 kfree(fl->fh_array);
678 fl->fh_array = NULL;
679}
680
681static void
682_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
683{
684 filelayout_free_fh_array(fl);
685 kfree(fl);
686}
687
688static int
689filelayout_decode_layout(struct pnfs_layout_hdr *flo,
690 struct nfs4_filelayout_segment *fl,
691 struct nfs4_layoutget_res *lgr,
a75b9df9
TM
692 struct nfs4_deviceid *id,
693 gfp_t gfp_flags)
16b374ca 694{
35124a09 695 struct xdr_stream stream;
f7da7a12 696 struct xdr_buf buf;
35124a09
WAA
697 struct page *scratch;
698 __be32 *p;
16b374ca
AA
699 uint32_t nfl_util;
700 int i;
701
702 dprintk("%s: set_layout_map Begin\n", __func__);
703
a75b9df9 704 scratch = alloc_page(gfp_flags);
35124a09
WAA
705 if (!scratch)
706 return -ENOMEM;
707
f7da7a12 708 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
35124a09
WAA
709 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
710
711 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
712 * num_fh (4) */
713 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
714 if (unlikely(!p))
715 goto out_err;
716
16b374ca
AA
717 memcpy(id, p, sizeof(*id));
718 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
a1eaecbc 719 nfs4_print_deviceid(id);
16b374ca
AA
720
721 nfl_util = be32_to_cpup(p++);
722 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
723 fl->commit_through_mds = 1;
724 if (nfl_util & NFL4_UFLG_DENSE)
725 fl->stripe_type = STRIPE_DENSE;
726 else
727 fl->stripe_type = STRIPE_SPARSE;
728 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
729
730 fl->first_stripe_index = be32_to_cpup(p++);
731 p = xdr_decode_hyper(p, &fl->pattern_offset);
732 fl->num_fh = be32_to_cpup(p++);
733
734 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
735 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
736 fl->pattern_offset);
737
cec765cf
AA
738 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
739 * Futher checking is done in filelayout_check_layout */
e414966b 740 if (fl->num_fh >
cec765cf 741 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
35124a09
WAA
742 goto out_err;
743
cec765cf 744 if (fl->num_fh > 0) {
1813badd 745 fl->fh_array = kcalloc(fl->num_fh, sizeof(fl->fh_array[0]),
cec765cf
AA
746 gfp_flags);
747 if (!fl->fh_array)
748 goto out_err;
749 }
16b374ca
AA
750
751 for (i = 0; i < fl->num_fh; i++) {
752 /* Do we want to use a mempool here? */
a75b9df9 753 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
35124a09
WAA
754 if (!fl->fh_array[i])
755 goto out_err_free;
756
757 p = xdr_inline_decode(&stream, 4);
758 if (unlikely(!p))
759 goto out_err_free;
16b374ca
AA
760 fl->fh_array[i]->size = be32_to_cpup(p++);
761 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
f9fd2d9c 762 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
16b374ca 763 i, fl->fh_array[i]->size);
35124a09 764 goto out_err_free;
16b374ca 765 }
35124a09
WAA
766
767 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
768 if (unlikely(!p))
769 goto out_err_free;
16b374ca 770 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
16b374ca
AA
771 dprintk("DEBUG: %s: fh len %d\n", __func__,
772 fl->fh_array[i]->size);
773 }
774
35124a09 775 __free_page(scratch);
16b374ca 776 return 0;
35124a09
WAA
777
778out_err_free:
779 filelayout_free_fh_array(fl);
780out_err:
781 __free_page(scratch);
782 return -EIO;
16b374ca
AA
783}
784
c879513e
FI
785static void
786filelayout_free_lseg(struct pnfs_layout_segment *lseg)
787{
788 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
789
790 dprintk("--> %s\n", __func__);
791 nfs4_fl_put_deviceid(fl->dsaddr);
799ba8d5
FI
792 /* This assumes a single RW lseg */
793 if (lseg->pls_range.iomode == IOMODE_RW) {
794 struct nfs4_filelayout *flo;
795
796 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
797 flo->commit_info.nbuckets = 0;
798 kfree(flo->commit_info.buckets);
799 flo->commit_info.buckets = NULL;
800 }
c879513e
FI
801 _filelayout_free_lseg(fl);
802}
803
799ba8d5
FI
804static int
805filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
ea2cf228 806 struct nfs_commit_info *cinfo,
799ba8d5
FI
807 gfp_t gfp_flags)
808{
809 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
ea2cf228 810 struct pnfs_commit_bucket *buckets;
799ba8d5
FI
811 int size;
812
813 if (fl->commit_through_mds)
814 return 0;
ea2cf228 815 if (cinfo->ds->nbuckets != 0) {
799ba8d5
FI
816 /* This assumes there is only one IOMODE_RW lseg. What
817 * we really want to do is have a layout_hdr level
818 * dictionary of <multipath_list4, fh> keys, each
819 * associated with a struct list_head, populated by calls
820 * to filelayout_write_pagelist().
821 * */
822 return 0;
823 }
824
825 size = (fl->stripe_type == STRIPE_SPARSE) ?
826 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
827
ea2cf228 828 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
799ba8d5
FI
829 gfp_flags);
830 if (!buckets)
831 return -ENOMEM;
832 else {
833 int i;
834
ea2cf228
FI
835 spin_lock(cinfo->lock);
836 if (cinfo->ds->nbuckets != 0)
799ba8d5
FI
837 kfree(buckets);
838 else {
ea2cf228
FI
839 cinfo->ds->buckets = buckets;
840 cinfo->ds->nbuckets = size;
799ba8d5
FI
841 for (i = 0; i < size; i++) {
842 INIT_LIST_HEAD(&buckets[i].written);
843 INIT_LIST_HEAD(&buckets[i].committing);
844 }
845 }
ea2cf228 846 spin_unlock(cinfo->lock);
799ba8d5
FI
847 return 0;
848 }
849}
850
16b374ca
AA
851static struct pnfs_layout_segment *
852filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
a75b9df9
TM
853 struct nfs4_layoutget_res *lgr,
854 gfp_t gfp_flags)
16b374ca
AA
855{
856 struct nfs4_filelayout_segment *fl;
857 int rc;
858 struct nfs4_deviceid id;
859
860 dprintk("--> %s\n", __func__);
a75b9df9 861 fl = kzalloc(sizeof(*fl), gfp_flags);
16b374ca
AA
862 if (!fl)
863 return NULL;
864
a75b9df9
TM
865 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
866 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
16b374ca
AA
867 _filelayout_free_lseg(fl);
868 return NULL;
869 }
870 return &fl->generic_hdr;
871}
872
94ad1c80
FI
873/*
874 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
875 *
18ad0a9f
BH
876 * return true : coalesce page
877 * return false : don't coalesce page
94ad1c80 878 */
1751c363 879static bool
94ad1c80
FI
880filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
881 struct nfs_page *req)
882{
883 u64 p_stripe, r_stripe;
884 u32 stripe_unit;
885
19345cb2
BH
886 if (!pnfs_generic_pg_test(pgio, prev, req) ||
887 !nfs_generic_pg_test(pgio, prev, req))
888 return false;
89a58e32 889
b5542849
FI
890 p_stripe = (u64)req_offset(prev);
891 r_stripe = (u64)req_offset(req);
94ad1c80
FI
892 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
893
894 do_div(p_stripe, stripe_unit);
895 do_div(r_stripe, stripe_unit);
896
897 return (p_stripe == r_stripe);
898}
899
17280175 900static void
7c24d948
AA
901filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
902 struct nfs_page *req)
903{
bc5a89b3 904 WARN_ON_ONCE(pgio->pg_lseg != NULL);
7c24d948 905
1825a0d0
FI
906 if (req->wb_offset != req->wb_pgbase) {
907 /*
908 * Handling unaligned pages is difficult, because have to
909 * somehow split a req in two in certain cases in the
910 * pg.test code. Avoid this by just not using pnfs
911 * in this case.
912 */
913 nfs_pageio_reset_read_mds(pgio);
914 return;
915 }
7c24d948
AA
916 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
917 req->wb_context,
918 0,
919 NFS4_MAX_UINT64,
920 IOMODE_READ,
921 GFP_KERNEL);
922 /* If no lseg, fall back to read through mds */
923 if (pgio->pg_lseg == NULL)
1f945357 924 nfs_pageio_reset_read_mds(pgio);
7c24d948
AA
925}
926
17280175 927static void
7c24d948
AA
928filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
929 struct nfs_page *req)
930{
ea2cf228 931 struct nfs_commit_info cinfo;
799ba8d5
FI
932 int status;
933
bc5a89b3 934 WARN_ON_ONCE(pgio->pg_lseg != NULL);
7c24d948 935
1825a0d0
FI
936 if (req->wb_offset != req->wb_pgbase)
937 goto out_mds;
7c24d948
AA
938 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
939 req->wb_context,
940 0,
941 NFS4_MAX_UINT64,
942 IOMODE_RW,
943 GFP_NOFS);
944 /* If no lseg, fall back to write through mds */
945 if (pgio->pg_lseg == NULL)
799ba8d5 946 goto out_mds;
ea2cf228
FI
947 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
948 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
799ba8d5 949 if (status < 0) {
9369a431 950 pnfs_put_lseg(pgio->pg_lseg);
799ba8d5
FI
951 pgio->pg_lseg = NULL;
952 goto out_mds;
953 }
954 return;
955out_mds:
956 nfs_pageio_reset_write_mds(pgio);
7c24d948
AA
957}
958
1751c363 959static const struct nfs_pageio_ops filelayout_pg_read_ops = {
7c24d948 960 .pg_init = filelayout_pg_init_read,
1751c363 961 .pg_test = filelayout_pg_test,
493292dd 962 .pg_doio = pnfs_generic_pg_readpages,
1751c363
TM
963};
964
965static const struct nfs_pageio_ops filelayout_pg_write_ops = {
7c24d948 966 .pg_init = filelayout_pg_init_write,
1751c363 967 .pg_test = filelayout_pg_test,
dce81290 968 .pg_doio = pnfs_generic_pg_writepages,
1751c363
TM
969};
970
e0c2b380
FI
971static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
972{
973 if (fl->stripe_type == STRIPE_SPARSE)
974 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
975 else
976 return j;
977}
978
d6d6dc7c
FI
979/* The generic layer is about to remove the req from the commit list.
980 * If this will make the bucket empty, it will need to put the lseg reference.
d6d6dc7c 981 */
8dd37758 982static void
ea2cf228
FI
983filelayout_clear_request_commit(struct nfs_page *req,
984 struct nfs_commit_info *cinfo)
d6d6dc7c 985{
8dd37758 986 struct pnfs_layout_segment *freeme = NULL;
8dd37758 987
ea2cf228 988 spin_lock(cinfo->lock);
8dd37758
TM
989 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
990 goto out;
ea2cf228 991 cinfo->ds->nwritten--;
d6d6dc7c 992 if (list_is_singular(&req->wb_list)) {
ea2cf228 993 struct pnfs_commit_bucket *bucket;
d6d6dc7c 994
799ba8d5 995 bucket = list_first_entry(&req->wb_list,
ea2cf228 996 struct pnfs_commit_bucket,
799ba8d5
FI
997 written);
998 freeme = bucket->wlseg;
999 bucket->wlseg = NULL;
d6d6dc7c 1000 }
8dd37758 1001out:
ea2cf228
FI
1002 nfs_request_remove_commit_list(req, cinfo);
1003 spin_unlock(cinfo->lock);
9369a431 1004 pnfs_put_lseg(freeme);
d6d6dc7c
FI
1005}
1006
1007static struct list_head *
1008filelayout_choose_commit_list(struct nfs_page *req,
ea2cf228
FI
1009 struct pnfs_layout_segment *lseg,
1010 struct nfs_commit_info *cinfo)
e0c2b380 1011{
e0c2b380
FI
1012 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1013 u32 i, j;
1014 struct list_head *list;
ea2cf228 1015 struct pnfs_commit_bucket *buckets;
e0c2b380 1016
d6d6dc7c 1017 if (fl->commit_through_mds)
ea2cf228 1018 return &cinfo->mds->list;
d6d6dc7c 1019
e0c2b380
FI
1020 /* Note that we are calling nfs4_fl_calc_j_index on each page
1021 * that ends up being committed to a data server. An attractive
1022 * alternative is to add a field to nfs_write_data and nfs_page
1023 * to store the value calculated in filelayout_write_pagelist
1024 * and just use that here.
1025 */
b5542849 1026 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
e0c2b380 1027 i = select_bucket_index(fl, j);
ea2cf228 1028 buckets = cinfo->ds->buckets;
799ba8d5 1029 list = &buckets[i].written;
e0c2b380 1030 if (list_empty(list)) {
d6d6dc7c
FI
1031 /* Non-empty buckets hold a reference on the lseg. That ref
1032 * is normally transferred to the COMMIT call and released
1033 * there. It could also be released if the last req is pulled
1034 * off due to a rewrite, in which case it will be done in
799ba8d5 1035 * filelayout_clear_request_commit
d6d6dc7c 1036 */
9369a431 1037 buckets[i].wlseg = pnfs_get_lseg(lseg);
e0c2b380 1038 }
8dd37758 1039 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
ea2cf228 1040 cinfo->ds->nwritten++;
e0c2b380
FI
1041 return list;
1042}
1043
8dd37758
TM
1044static void
1045filelayout_mark_request_commit(struct nfs_page *req,
ea2cf228
FI
1046 struct pnfs_layout_segment *lseg,
1047 struct nfs_commit_info *cinfo)
8dd37758
TM
1048{
1049 struct list_head *list;
1050
ea2cf228
FI
1051 list = filelayout_choose_commit_list(req, lseg, cinfo);
1052 nfs_request_add_commit_list(req, list, cinfo);
8dd37758
TM
1053}
1054
e0c2b380
FI
1055static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1056{
1057 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1058
1059 if (flseg->stripe_type == STRIPE_SPARSE)
1060 return i;
1061 else
1062 return nfs4_fl_calc_ds_index(lseg, i);
1063}
1064
1065static struct nfs_fh *
1066select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1067{
1068 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1069
1070 if (flseg->stripe_type == STRIPE_SPARSE) {
1071 if (flseg->num_fh == 1)
1072 i = 0;
1073 else if (flseg->num_fh == 0)
1074 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1075 return NULL;
1076 }
1077 return flseg->fh_array[i];
1078}
1079
0b7c0153 1080static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
e0c2b380
FI
1081{
1082 struct pnfs_layout_segment *lseg = data->lseg;
1083 struct nfs4_pnfs_ds *ds;
1084 u32 idx;
1085 struct nfs_fh *fh;
1086
1087 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1088 ds = nfs4_fl_prepare_ds(lseg, idx);
1089 if (!ds) {
e0c2b380 1090 prepare_to_resend_writes(data);
8dd37758 1091 filelayout_commit_release(data);
e0c2b380
FI
1092 return -EAGAIN;
1093 }
3a7936c3
AA
1094 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1095 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
0b7c0153 1096 data->commit_done_cb = filelayout_commit_done_cb;
3a7936c3 1097 atomic_inc(&ds->ds_clp->cl_count);
e0c2b380
FI
1098 data->ds_clp = ds->ds_clp;
1099 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1100 if (fh)
1101 data->args.fh = fh;
0b7c0153 1102 return nfs_initiate_commit(ds->ds_clp->cl_rpcclient, data,
9f0ec176
AA
1103 &filelayout_commit_call_ops, how,
1104 RPC_TASK_SOFTCONN);
e0c2b380
FI
1105}
1106
8dd37758 1107static int
1763da12
FI
1108transfer_commit_list(struct list_head *src, struct list_head *dst,
1109 struct nfs_commit_info *cinfo, int max)
8dd37758 1110{
8dd37758
TM
1111 struct nfs_page *req, *tmp;
1112 int ret = 0;
1113
1114 list_for_each_entry_safe(req, tmp, src, wb_list) {
1115 if (!nfs_lock_request(req))
1116 continue;
53b8ee34 1117 kref_get(&req->wb_kref);
ea2cf228 1118 if (cond_resched_lock(cinfo->lock))
3b3be88d 1119 list_safe_reset_next(req, tmp, wb_list);
ea2cf228 1120 nfs_request_remove_commit_list(req, cinfo);
8dd37758
TM
1121 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1122 nfs_list_add_request(req, dst);
1123 ret++;
1763da12 1124 if ((ret == max) && !cinfo->dreq)
8dd37758
TM
1125 break;
1126 }
1763da12
FI
1127 return ret;
1128}
1129
1130static int
1131filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1132 struct nfs_commit_info *cinfo,
1133 int max)
1134{
1135 struct list_head *src = &bucket->written;
1136 struct list_head *dst = &bucket->committing;
1137 int ret;
1138
1139 ret = transfer_commit_list(src, dst, cinfo, max);
799ba8d5 1140 if (ret) {
ea2cf228
FI
1141 cinfo->ds->nwritten -= ret;
1142 cinfo->ds->ncommitting += ret;
799ba8d5
FI
1143 bucket->clseg = bucket->wlseg;
1144 if (list_empty(src))
1145 bucket->wlseg = NULL;
1146 else
9369a431 1147 pnfs_get_lseg(bucket->clseg);
799ba8d5 1148 }
8dd37758
TM
1149 return ret;
1150}
1151
d6d6dc7c 1152/* Move reqs from written to committing lists, returning count of number moved.
ea2cf228 1153 * Note called with cinfo->lock held.
d6d6dc7c 1154 */
ea2cf228
FI
1155static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1156 int max)
d6d6dc7c 1157{
d6d6dc7c
FI
1158 int i, rv = 0, cnt;
1159
ea2cf228
FI
1160 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1161 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1162 cinfo, max);
d6d6dc7c
FI
1163 max -= cnt;
1164 rv += cnt;
1165 }
d6d6dc7c
FI
1166 return rv;
1167}
1168
1763da12
FI
1169/* Pull everything off the committing lists and dump into @dst */
1170static void filelayout_recover_commit_reqs(struct list_head *dst,
1171 struct nfs_commit_info *cinfo)
1172{
1173 struct pnfs_commit_bucket *b;
1174 int i;
1175
1176 /* NOTE cinfo->lock is NOT held, relying on fact that this is
1177 * only called on single thread per dreq.
9369a431 1178 * Can't take the lock because need to do pnfs_put_lseg
1763da12
FI
1179 */
1180 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1181 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
9369a431 1182 pnfs_put_lseg(b->wlseg);
1763da12
FI
1183 b->wlseg = NULL;
1184 }
1185 }
1186 cinfo->ds->nwritten = 0;
1187}
1188
9390f425 1189static unsigned int
ea2cf228 1190alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
e0c2b380 1191{
ea2cf228
FI
1192 struct pnfs_ds_commit_info *fl_cinfo;
1193 struct pnfs_commit_bucket *bucket;
0b7c0153 1194 struct nfs_commit_data *data;
e0c2b380 1195 int i, j;
9390f425 1196 unsigned int nreq = 0;
e0c2b380 1197
ea2cf228 1198 fl_cinfo = cinfo->ds;
799ba8d5
FI
1199 bucket = fl_cinfo->buckets;
1200 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1201 if (list_empty(&bucket->committing))
e0c2b380
FI
1202 continue;
1203 data = nfs_commitdata_alloc();
1204 if (!data)
9390f425 1205 break;
e0c2b380 1206 data->ds_commit_index = i;
799ba8d5
FI
1207 data->lseg = bucket->clseg;
1208 bucket->clseg = NULL;
e0c2b380 1209 list_add(&data->pages, list);
9390f425 1210 nreq++;
e0c2b380 1211 }
e0c2b380 1212
9390f425 1213 /* Clean up on error */
799ba8d5
FI
1214 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1215 if (list_empty(&bucket->committing))
e0c2b380 1216 continue;
ea2cf228 1217 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
9369a431 1218 pnfs_put_lseg(bucket->clseg);
799ba8d5 1219 bucket->clseg = NULL;
e0c2b380 1220 }
e0c2b380 1221 /* Caller will clean up entries put on list */
9390f425 1222 return nreq;
e0c2b380
FI
1223}
1224
1225/* This follows nfs_commit_list pretty closely */
1226static int
1227filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
ea2cf228 1228 int how, struct nfs_commit_info *cinfo)
e0c2b380 1229{
0b7c0153 1230 struct nfs_commit_data *data, *tmp;
e0c2b380 1231 LIST_HEAD(list);
9390f425 1232 unsigned int nreq = 0;
e0c2b380
FI
1233
1234 if (!list_empty(mds_pages)) {
1235 data = nfs_commitdata_alloc();
9390f425
TM
1236 if (data != NULL) {
1237 data->lseg = NULL;
1238 list_add(&data->pages, &list);
1239 nreq++;
1240 } else
ea2cf228 1241 nfs_retry_commit(mds_pages, NULL, cinfo);
e0c2b380
FI
1242 }
1243
ea2cf228 1244 nreq += alloc_ds_commits(cinfo, &list);
9390f425
TM
1245
1246 if (nreq == 0) {
f453a54a 1247 cinfo->completion_ops->error_cleanup(NFS_I(inode));
9390f425
TM
1248 goto out;
1249 }
1250
ea2cf228 1251 atomic_add(nreq, &cinfo->mds->rpcs_out);
e0c2b380
FI
1252
1253 list_for_each_entry_safe(data, tmp, &list, pages) {
1254 list_del_init(&data->pages);
e0c2b380 1255 if (!data->lseg) {
f453a54a 1256 nfs_init_commit(data, mds_pages, NULL, cinfo);
0b7c0153 1257 nfs_initiate_commit(NFS_CLIENT(inode), data,
9f0ec176 1258 data->mds_ops, how, 0);
e0c2b380 1259 } else {
ea2cf228 1260 struct pnfs_commit_bucket *buckets;
799ba8d5 1261
ea2cf228 1262 buckets = cinfo->ds->buckets;
f453a54a 1263 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
e0c2b380
FI
1264 filelayout_initiate_commit(data, how);
1265 }
1266 }
9390f425 1267out:
ea2cf228 1268 cinfo->ds->ncommitting = 0;
9390f425 1269 return PNFS_ATTEMPTED;
e0c2b380
FI
1270}
1271
1775bc34
BH
1272static void
1273filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1274{
1275 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1276}
1277
799ba8d5
FI
1278static struct pnfs_layout_hdr *
1279filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1280{
1281 struct nfs4_filelayout *flo;
1282
1283 flo = kzalloc(sizeof(*flo), gfp_flags);
1284 return &flo->generic_hdr;
1285}
1286
1287static void
1288filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1289{
1290 kfree(FILELAYOUT_FROM_HDR(lo));
1291}
1292
ea2cf228
FI
1293static struct pnfs_ds_commit_info *
1294filelayout_get_ds_info(struct inode *inode)
1295{
df011748
FI
1296 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1297
1298 if (layout == NULL)
1299 return NULL;
1300 else
1301 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
ea2cf228
FI
1302}
1303
7ab672ce 1304static struct pnfs_layoutdriver_type filelayout_type = {
ea8eecdd
CH
1305 .id = LAYOUT_NFSV4_1_FILES,
1306 .name = "LAYOUT_NFSV4_1_FILES",
1307 .owner = THIS_MODULE,
799ba8d5
FI
1308 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1309 .free_layout_hdr = filelayout_free_layout_hdr,
ea8eecdd
CH
1310 .alloc_lseg = filelayout_alloc_lseg,
1311 .free_lseg = filelayout_free_lseg,
1751c363
TM
1312 .pg_read_ops = &filelayout_pg_read_ops,
1313 .pg_write_ops = &filelayout_pg_write_ops,
ea2cf228 1314 .get_ds_info = &filelayout_get_ds_info,
8dd37758
TM
1315 .mark_request_commit = filelayout_mark_request_commit,
1316 .clear_request_commit = filelayout_clear_request_commit,
d6d6dc7c 1317 .scan_commit_lists = filelayout_scan_commit_lists,
1763da12 1318 .recover_commit_reqs = filelayout_recover_commit_reqs,
e0c2b380 1319 .commit_pagelist = filelayout_commit_pagelist,
dc70d7b3 1320 .read_pagelist = filelayout_read_pagelist,
0382b744 1321 .write_pagelist = filelayout_write_pagelist,
1775bc34 1322 .free_deviceid_node = filelayout_free_deveiceid_node,
7ab672ce
DH
1323};
1324
1325static int __init nfs4filelayout_init(void)
1326{
1327 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1328 __func__);
1329 return pnfs_register_layoutdriver(&filelayout_type);
1330}
1331
1332static void __exit nfs4filelayout_exit(void)
1333{
1334 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1335 __func__);
1336 pnfs_unregister_layoutdriver(&filelayout_type);
1337}
1338
f85ef69c
BF
1339MODULE_ALIAS("nfs-layouttype4-1");
1340
7ab672ce
DH
1341module_init(nfs4filelayout_init);
1342module_exit(nfs4filelayout_exit);