NFSv4.1 remove temp code that prevented ds commits
[deliverable/linux.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>
16b374ca
AA
33
34#include "internal.h"
35#include "nfs4filelayout.h"
7ab672ce
DH
36
37#define NFSDBG_FACILITY NFSDBG_PNFS_LD
38
39MODULE_LICENSE("GPL");
40MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
41MODULE_DESCRIPTION("The NFSv4 file layout driver");
42
cbdabc7f
AA
43#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
44
cfe7f412
FI
45static loff_t
46filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
47 loff_t offset)
48{
49 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
50 u64 tmp;
51
52 offset -= flseg->pattern_offset;
53 tmp = offset;
54 do_div(tmp, stripe_width);
55
56 return tmp * flseg->stripe_unit + do_div(offset, flseg->stripe_unit);
57}
58
59/* This function is used by the layout driver to calculate the
60 * offset of the file on the dserver based on whether the
61 * layout type is STRIPE_DENSE or STRIPE_SPARSE
62 */
63static loff_t
64filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
65{
66 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
67
68 switch (flseg->stripe_type) {
69 case STRIPE_SPARSE:
70 return offset;
71
72 case STRIPE_DENSE:
73 return filelayout_get_dense_offset(flseg, offset);
74 }
75
76 BUG();
77}
78
cbdabc7f
AA
79/* For data server errors we don't recover from */
80static void
81filelayout_set_lo_fail(struct pnfs_layout_segment *lseg)
82{
83 if (lseg->pls_range.iomode == IOMODE_RW) {
84 dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__);
85 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
86 } else {
87 dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__);
88 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
89 }
90}
91
92static int filelayout_async_handle_error(struct rpc_task *task,
93 struct nfs4_state *state,
94 struct nfs_client *clp,
95 int *reset)
96{
97 if (task->tk_status >= 0)
98 return 0;
99
100 *reset = 0;
101
102 switch (task->tk_status) {
103 case -NFS4ERR_BADSESSION:
104 case -NFS4ERR_BADSLOT:
105 case -NFS4ERR_BAD_HIGH_SLOT:
106 case -NFS4ERR_DEADSESSION:
107 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
108 case -NFS4ERR_SEQ_FALSE_RETRY:
109 case -NFS4ERR_SEQ_MISORDERED:
110 dprintk("%s ERROR %d, Reset session. Exchangeid "
111 "flags 0x%x\n", __func__, task->tk_status,
112 clp->cl_exchange_flags);
113 nfs4_schedule_session_recovery(clp->cl_session);
114 break;
115 case -NFS4ERR_DELAY:
116 case -NFS4ERR_GRACE:
117 case -EKEYEXPIRED:
118 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
119 break;
120 default:
121 dprintk("%s DS error. Retry through MDS %d\n", __func__,
122 task->tk_status);
123 *reset = 1;
124 break;
125 }
126 task->tk_status = 0;
127 return -EAGAIN;
128}
129
130/* NFS_PROTO call done callback routines */
131
132static int filelayout_read_done_cb(struct rpc_task *task,
133 struct nfs_read_data *data)
134{
135 struct nfs_client *clp = data->ds_clp;
136 int reset = 0;
137
138 dprintk("%s DS read\n", __func__);
139
140 if (filelayout_async_handle_error(task, data->args.context->state,
141 data->ds_clp, &reset) == -EAGAIN) {
142 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
143 __func__, data->ds_clp, data->ds_clp->cl_session);
144 if (reset) {
145 filelayout_set_lo_fail(data->lseg);
146 nfs4_reset_read(task, data);
147 clp = NFS_SERVER(data->inode)->nfs_client;
148 }
149 nfs_restart_rpc(task, clp);
150 return -EAGAIN;
151 }
152
153 return 0;
154}
155
863a3c6c
AA
156/*
157 * We reference the rpc_cred of the first WRITE that triggers the need for
158 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
159 * rfc5661 is not clear about which credential should be used.
160 */
161static void
162filelayout_set_layoutcommit(struct nfs_write_data *wdata)
163{
164 if (FILELAYOUT_LSEG(wdata->lseg)->commit_through_mds ||
165 wdata->res.verf->committed == NFS_FILE_SYNC)
166 return;
167
168 pnfs_set_layoutcommit(wdata);
169 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, wdata->inode->i_ino,
170 (unsigned long) wdata->lseg->pls_end_pos);
171}
172
dc70d7b3
AA
173/*
174 * Call ops for the async read/write cases
175 * In the case of dense layouts, the offset needs to be reset to its
176 * original value.
177 */
178static void filelayout_read_prepare(struct rpc_task *task, void *data)
179{
180 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
181
cbdabc7f
AA
182 rdata->read_done_cb = filelayout_read_done_cb;
183
dc70d7b3
AA
184 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
185 &rdata->args.seq_args, &rdata->res.seq_res,
186 0, task))
187 return;
188
189 rpc_call_start(task);
190}
191
192static void filelayout_read_call_done(struct rpc_task *task, void *data)
193{
194 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
195
196 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
197
198 /* Note this may cause RPC to be resent */
199 rdata->mds_ops->rpc_call_done(task, data);
200}
201
202static void filelayout_read_release(void *data)
203{
204 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
205
206 rdata->mds_ops->rpc_release(data);
207}
208
a69aef14
FI
209static int filelayout_write_done_cb(struct rpc_task *task,
210 struct nfs_write_data *data)
211{
212 int reset = 0;
213
214 if (filelayout_async_handle_error(task, data->args.context->state,
215 data->ds_clp, &reset) == -EAGAIN) {
216 struct nfs_client *clp;
217
218 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
219 __func__, data->ds_clp, data->ds_clp->cl_session);
220 if (reset) {
221 filelayout_set_lo_fail(data->lseg);
222 nfs4_reset_write(task, data);
223 clp = NFS_SERVER(data->inode)->nfs_client;
224 } else
225 clp = data->ds_clp;
226 nfs_restart_rpc(task, clp);
227 return -EAGAIN;
228 }
229
863a3c6c 230 filelayout_set_layoutcommit(data);
a69aef14
FI
231 return 0;
232}
233
e0c2b380
FI
234/* Fake up some data that will cause nfs_commit_release to retry the writes. */
235static void prepare_to_resend_writes(struct nfs_write_data *data)
236{
237 struct nfs_page *first = nfs_list_entry(data->pages.next);
238
239 data->task.tk_status = 0;
240 memcpy(data->verf.verifier, first->wb_verf.verifier,
241 sizeof(first->wb_verf.verifier));
242 data->verf.verifier[0]++; /* ensure verifier mismatch */
243}
244
245static int filelayout_commit_done_cb(struct rpc_task *task,
246 struct nfs_write_data *data)
247{
248 int reset = 0;
249
250 if (filelayout_async_handle_error(task, data->args.context->state,
251 data->ds_clp, &reset) == -EAGAIN) {
252 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
253 __func__, data->ds_clp, data->ds_clp->cl_session);
254 if (reset) {
255 prepare_to_resend_writes(data);
256 filelayout_set_lo_fail(data->lseg);
257 } else
258 nfs_restart_rpc(task, data->ds_clp);
259 return -EAGAIN;
260 }
261
262 return 0;
263}
264
a69aef14
FI
265static void filelayout_write_prepare(struct rpc_task *task, void *data)
266{
267 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
268
269 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
270 &wdata->args.seq_args, &wdata->res.seq_res,
271 0, task))
272 return;
273
274 rpc_call_start(task);
275}
276
277static void filelayout_write_call_done(struct rpc_task *task, void *data)
278{
279 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
280
281 /* Note this may cause RPC to be resent */
282 wdata->mds_ops->rpc_call_done(task, data);
283}
284
285static void filelayout_write_release(void *data)
286{
287 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
288
289 wdata->mds_ops->rpc_release(data);
290}
291
e0c2b380
FI
292static void filelayout_commit_release(void *data)
293{
294 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
295
296 nfs_commit_release_pages(wdata);
297 if (atomic_dec_and_test(&NFS_I(wdata->inode)->commits_outstanding))
298 nfs_commit_clear_lock(NFS_I(wdata->inode));
299 nfs_commitdata_release(wdata);
300}
301
dc70d7b3
AA
302struct rpc_call_ops filelayout_read_call_ops = {
303 .rpc_call_prepare = filelayout_read_prepare,
304 .rpc_call_done = filelayout_read_call_done,
305 .rpc_release = filelayout_read_release,
306};
307
a69aef14
FI
308struct rpc_call_ops filelayout_write_call_ops = {
309 .rpc_call_prepare = filelayout_write_prepare,
310 .rpc_call_done = filelayout_write_call_done,
311 .rpc_release = filelayout_write_release,
312};
313
e0c2b380
FI
314struct rpc_call_ops filelayout_commit_call_ops = {
315 .rpc_call_prepare = filelayout_write_prepare,
316 .rpc_call_done = filelayout_write_call_done,
317 .rpc_release = filelayout_commit_release,
318};
319
dc70d7b3
AA
320static enum pnfs_try_status
321filelayout_read_pagelist(struct nfs_read_data *data)
322{
323 struct pnfs_layout_segment *lseg = data->lseg;
324 struct nfs4_pnfs_ds *ds;
325 loff_t offset = data->args.offset;
326 u32 j, idx;
327 struct nfs_fh *fh;
328 int status;
329
330 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
331 __func__, data->inode->i_ino,
332 data->args.pgbase, (size_t)data->args.count, offset);
333
334 /* Retrieve the correct rpc_client for the byte range */
335 j = nfs4_fl_calc_j_index(lseg, offset);
336 idx = nfs4_fl_calc_ds_index(lseg, j);
337 ds = nfs4_fl_prepare_ds(lseg, idx);
338 if (!ds) {
568e8c49
AA
339 /* Either layout fh index faulty, or ds connect failed */
340 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
341 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
dc70d7b3
AA
342 return PNFS_NOT_ATTEMPTED;
343 }
344 dprintk("%s USE DS:ip %x %hu\n", __func__,
345 ntohl(ds->ds_ip_addr), ntohs(ds->ds_port));
346
347 /* No multipath support. Use first DS */
348 data->ds_clp = ds->ds_clp;
349 fh = nfs4_fl_select_ds_fh(lseg, j);
350 if (fh)
351 data->args.fh = fh;
352
353 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
354 data->mds_offset = offset;
355
356 /* Perform an asynchronous read to ds */
357 status = nfs_initiate_read(data, ds->ds_clp->cl_rpcclient,
358 &filelayout_read_call_ops);
359 BUG_ON(status != 0);
360 return PNFS_ATTEMPTED;
361}
362
a69aef14 363/* Perform async writes. */
0382b744
AA
364static enum pnfs_try_status
365filelayout_write_pagelist(struct nfs_write_data *data, int sync)
366{
a69aef14
FI
367 struct pnfs_layout_segment *lseg = data->lseg;
368 struct nfs4_pnfs_ds *ds;
369 loff_t offset = data->args.offset;
370 u32 j, idx;
371 struct nfs_fh *fh;
372 int status;
373
374 /* Retrieve the correct rpc_client for the byte range */
375 j = nfs4_fl_calc_j_index(lseg, offset);
376 idx = nfs4_fl_calc_ds_index(lseg, j);
377 ds = nfs4_fl_prepare_ds(lseg, idx);
378 if (!ds) {
379 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
380 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
381 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
382 return PNFS_NOT_ATTEMPTED;
383 }
384 dprintk("%s ino %lu sync %d req %Zu@%llu DS:%x:%hu\n", __func__,
385 data->inode->i_ino, sync, (size_t) data->args.count, offset,
386 ntohl(ds->ds_ip_addr), ntohs(ds->ds_port));
387
a69aef14
FI
388 data->write_done_cb = filelayout_write_done_cb;
389 data->ds_clp = ds->ds_clp;
390 fh = nfs4_fl_select_ds_fh(lseg, j);
391 if (fh)
392 data->args.fh = fh;
393 /*
394 * Get the file offset on the dserver. Set the write offset to
395 * this offset and save the original offset.
396 */
397 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
398 data->mds_offset = offset;
399
400 /* Perform an asynchronous write */
401 status = nfs_initiate_write(data, ds->ds_clp->cl_rpcclient,
402 &filelayout_write_call_ops, sync);
403 BUG_ON(status != 0);
404 return PNFS_ATTEMPTED;
0382b744
AA
405}
406
16b374ca
AA
407/*
408 * filelayout_check_layout()
409 *
410 * Make sure layout segment parameters are sane WRT the device.
411 * At this point no generic layer initialization of the lseg has occurred,
412 * and nothing has been added to the layout_hdr cache.
413 *
414 */
415static int
416filelayout_check_layout(struct pnfs_layout_hdr *lo,
417 struct nfs4_filelayout_segment *fl,
418 struct nfs4_layoutget_res *lgr,
419 struct nfs4_deviceid *id)
420{
421 struct nfs4_file_layout_dsaddr *dsaddr;
422 int status = -EINVAL;
b7edfaa1 423 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
16b374ca
AA
424
425 dprintk("--> %s\n", __func__);
426
427 if (fl->pattern_offset > lgr->range.offset) {
428 dprintk("%s pattern_offset %lld to large\n",
429 __func__, fl->pattern_offset);
430 goto out;
431 }
432
75247aff
BH
433 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
434 dprintk("%s Invalid stripe unit (%u)\n",
16b374ca
AA
435 __func__, fl->stripe_unit);
436 goto out;
437 }
438
439 /* find and reference the deviceid */
ea8eecdd 440 dsaddr = nfs4_fl_find_get_deviceid(id);
16b374ca 441 if (dsaddr == NULL) {
b7edfaa1 442 dsaddr = get_device_info(lo->plh_inode, id);
16b374ca
AA
443 if (dsaddr == NULL)
444 goto out;
445 }
446 fl->dsaddr = dsaddr;
447
448 if (fl->first_stripe_index < 0 ||
449 fl->first_stripe_index >= dsaddr->stripe_count) {
450 dprintk("%s Bad first_stripe_index %d\n",
451 __func__, fl->first_stripe_index);
452 goto out_put;
453 }
454
455 if ((fl->stripe_type == STRIPE_SPARSE &&
456 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
457 (fl->stripe_type == STRIPE_DENSE &&
458 fl->num_fh != dsaddr->stripe_count)) {
459 dprintk("%s num_fh %u not valid for given packing\n",
460 __func__, fl->num_fh);
461 goto out_put;
462 }
463
464 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
465 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
466 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
467 nfss->wsize);
468 }
469
470 status = 0;
471out:
472 dprintk("--> %s returns %d\n", __func__, status);
473 return status;
474out_put:
ea8eecdd 475 nfs4_fl_put_deviceid(dsaddr);
16b374ca
AA
476 goto out;
477}
478
479static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
480{
481 int i;
482
483 for (i = 0; i < fl->num_fh; i++) {
484 if (!fl->fh_array[i])
485 break;
486 kfree(fl->fh_array[i]);
487 }
488 kfree(fl->fh_array);
489 fl->fh_array = NULL;
490}
491
492static void
493_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
494{
495 filelayout_free_fh_array(fl);
496 kfree(fl);
497}
498
499static int
500filelayout_decode_layout(struct pnfs_layout_hdr *flo,
501 struct nfs4_filelayout_segment *fl,
502 struct nfs4_layoutget_res *lgr,
503 struct nfs4_deviceid *id)
504{
505 uint32_t *p = (uint32_t *)lgr->layout.buf;
506 uint32_t nfl_util;
507 int i;
508
509 dprintk("%s: set_layout_map Begin\n", __func__);
510
511 memcpy(id, p, sizeof(*id));
512 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
513 print_deviceid(id);
514
515 nfl_util = be32_to_cpup(p++);
516 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
517 fl->commit_through_mds = 1;
518 if (nfl_util & NFL4_UFLG_DENSE)
519 fl->stripe_type = STRIPE_DENSE;
520 else
521 fl->stripe_type = STRIPE_SPARSE;
522 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
523
524 fl->first_stripe_index = be32_to_cpup(p++);
525 p = xdr_decode_hyper(p, &fl->pattern_offset);
526 fl->num_fh = be32_to_cpup(p++);
527
528 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
529 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
530 fl->pattern_offset);
531
532 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
533 GFP_KERNEL);
534 if (!fl->fh_array)
535 return -ENOMEM;
536
537 for (i = 0; i < fl->num_fh; i++) {
538 /* Do we want to use a mempool here? */
539 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), GFP_KERNEL);
540 if (!fl->fh_array[i]) {
541 filelayout_free_fh_array(fl);
542 return -ENOMEM;
543 }
544 fl->fh_array[i]->size = be32_to_cpup(p++);
545 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
546 printk(KERN_ERR "Too big fh %d received %d\n",
547 i, fl->fh_array[i]->size);
548 filelayout_free_fh_array(fl);
549 return -EIO;
550 }
551 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
552 p += XDR_QUADLEN(fl->fh_array[i]->size);
553 dprintk("DEBUG: %s: fh len %d\n", __func__,
554 fl->fh_array[i]->size);
555 }
556
557 return 0;
558}
559
c879513e
FI
560static void
561filelayout_free_lseg(struct pnfs_layout_segment *lseg)
562{
563 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
564
565 dprintk("--> %s\n", __func__);
566 nfs4_fl_put_deviceid(fl->dsaddr);
425eb736 567 kfree(fl->commit_buckets);
c879513e
FI
568 _filelayout_free_lseg(fl);
569}
570
16b374ca
AA
571static struct pnfs_layout_segment *
572filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
573 struct nfs4_layoutget_res *lgr)
574{
575 struct nfs4_filelayout_segment *fl;
576 int rc;
577 struct nfs4_deviceid id;
578
579 dprintk("--> %s\n", __func__);
580 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
581 if (!fl)
582 return NULL;
583
584 rc = filelayout_decode_layout(layoutid, fl, lgr, &id);
585 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id)) {
586 _filelayout_free_lseg(fl);
587 return NULL;
588 }
425eb736
FI
589
590 /* This assumes there is only one IOMODE_RW lseg. What
591 * we really want to do is have a layout_hdr level
592 * dictionary of <multipath_list4, fh> keys, each
593 * associated with a struct list_head, populated by calls
594 * to filelayout_write_pagelist().
595 * */
596 if ((!fl->commit_through_mds) && (lgr->range.iomode == IOMODE_RW)) {
597 int i;
598 int size = (fl->stripe_type == STRIPE_SPARSE) ?
599 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
600
601 fl->commit_buckets = kcalloc(size, sizeof(struct list_head), GFP_KERNEL);
602 if (!fl->commit_buckets) {
603 filelayout_free_lseg(&fl->generic_hdr);
604 return NULL;
605 }
606 fl->number_of_buckets = size;
607 for (i = 0; i < size; i++)
608 INIT_LIST_HEAD(&fl->commit_buckets[i]);
609 }
16b374ca
AA
610 return &fl->generic_hdr;
611}
612
94ad1c80
FI
613/*
614 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
615 *
616 * return 1 : coalesce page
617 * return 0 : don't coalesce page
618 */
619int
620filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
621 struct nfs_page *req)
622{
623 u64 p_stripe, r_stripe;
624 u32 stripe_unit;
625
626 if (!pgio->pg_lseg)
627 return 1;
628 p_stripe = (u64)prev->wb_index << PAGE_CACHE_SHIFT;
629 r_stripe = (u64)req->wb_index << PAGE_CACHE_SHIFT;
630 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
631
632 do_div(p_stripe, stripe_unit);
633 do_div(r_stripe, stripe_unit);
634
635 return (p_stripe == r_stripe);
636}
637
e0c2b380
FI
638static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment *lseg)
639{
640 return !FILELAYOUT_LSEG(lseg)->commit_through_mds;
641}
642
643static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
644{
645 if (fl->stripe_type == STRIPE_SPARSE)
646 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
647 else
648 return j;
649}
650
651struct list_head *filelayout_choose_commit_list(struct nfs_page *req)
652{
653 struct pnfs_layout_segment *lseg = req->wb_commit_lseg;
654 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
655 u32 i, j;
656 struct list_head *list;
657
658 /* Note that we are calling nfs4_fl_calc_j_index on each page
659 * that ends up being committed to a data server. An attractive
660 * alternative is to add a field to nfs_write_data and nfs_page
661 * to store the value calculated in filelayout_write_pagelist
662 * and just use that here.
663 */
664 j = nfs4_fl_calc_j_index(lseg,
665 (loff_t)req->wb_index << PAGE_CACHE_SHIFT);
666 i = select_bucket_index(fl, j);
667 list = &fl->commit_buckets[i];
668 if (list_empty(list)) {
669 /* Non-empty buckets hold a reference on the lseg */
670 get_lseg(lseg);
671 }
672 return list;
673}
674
675static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
676{
677 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
678
679 if (flseg->stripe_type == STRIPE_SPARSE)
680 return i;
681 else
682 return nfs4_fl_calc_ds_index(lseg, i);
683}
684
685static struct nfs_fh *
686select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
687{
688 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
689
690 if (flseg->stripe_type == STRIPE_SPARSE) {
691 if (flseg->num_fh == 1)
692 i = 0;
693 else if (flseg->num_fh == 0)
694 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
695 return NULL;
696 }
697 return flseg->fh_array[i];
698}
699
700static int filelayout_initiate_commit(struct nfs_write_data *data, int how)
701{
702 struct pnfs_layout_segment *lseg = data->lseg;
703 struct nfs4_pnfs_ds *ds;
704 u32 idx;
705 struct nfs_fh *fh;
706
707 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
708 ds = nfs4_fl_prepare_ds(lseg, idx);
709 if (!ds) {
710 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
711 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
712 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
713 prepare_to_resend_writes(data);
714 data->mds_ops->rpc_release(data);
715 return -EAGAIN;
716 }
717 dprintk("%s ino %lu, how %d\n", __func__, data->inode->i_ino, how);
718 data->write_done_cb = filelayout_commit_done_cb;
719 data->ds_clp = ds->ds_clp;
720 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
721 if (fh)
722 data->args.fh = fh;
723 return nfs_initiate_commit(data, ds->ds_clp->cl_rpcclient,
724 &filelayout_commit_call_ops, how);
725}
726
727/*
728 * This is only useful while we are using whole file layouts.
729 */
730static struct pnfs_layout_segment *find_only_write_lseg(struct inode *inode)
731{
732 struct pnfs_layout_segment *lseg, *rv = NULL;
733
734 spin_lock(&inode->i_lock);
735 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list)
736 if (lseg->pls_range.iomode == IOMODE_RW)
737 rv = get_lseg(lseg);
738 spin_unlock(&inode->i_lock);
739 return rv;
740}
741
742static int alloc_ds_commits(struct inode *inode, struct list_head *list)
743{
744 struct pnfs_layout_segment *lseg;
745 struct nfs4_filelayout_segment *fl;
746 struct nfs_write_data *data;
747 int i, j;
748
749 /* Won't need this when non-whole file layout segments are supported
750 * instead we will use a pnfs_layout_hdr structure */
751 lseg = find_only_write_lseg(inode);
752 if (!lseg)
753 return 0;
754 fl = FILELAYOUT_LSEG(lseg);
755 for (i = 0; i < fl->number_of_buckets; i++) {
756 if (list_empty(&fl->commit_buckets[i]))
757 continue;
758 data = nfs_commitdata_alloc();
759 if (!data)
760 goto out_bad;
761 data->ds_commit_index = i;
762 data->lseg = lseg;
763 list_add(&data->pages, list);
764 }
765 put_lseg(lseg);
766 return 0;
767
768out_bad:
769 for (j = i; j < fl->number_of_buckets; j++) {
770 if (list_empty(&fl->commit_buckets[i]))
771 continue;
772 nfs_retry_commit(&fl->commit_buckets[i], lseg);
773 put_lseg(lseg); /* associated with emptying bucket */
774 }
775 put_lseg(lseg);
776 /* Caller will clean up entries put on list */
777 return -ENOMEM;
778}
779
780/* This follows nfs_commit_list pretty closely */
781static int
782filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
783 int how)
784{
785 struct nfs_write_data *data, *tmp;
786 LIST_HEAD(list);
787
788 if (!list_empty(mds_pages)) {
789 data = nfs_commitdata_alloc();
790 if (!data)
791 goto out_bad;
792 data->lseg = NULL;
793 list_add(&data->pages, &list);
794 }
795
796 if (alloc_ds_commits(inode, &list))
797 goto out_bad;
798
799 list_for_each_entry_safe(data, tmp, &list, pages) {
800 list_del_init(&data->pages);
801 atomic_inc(&NFS_I(inode)->commits_outstanding);
802 if (!data->lseg) {
803 nfs_init_commit(data, mds_pages, NULL);
804 nfs_initiate_commit(data, NFS_CLIENT(inode),
805 data->mds_ops, how);
806 } else {
807 nfs_init_commit(data, &FILELAYOUT_LSEG(data->lseg)->commit_buckets[data->ds_commit_index], data->lseg);
808 filelayout_initiate_commit(data, how);
809 }
810 }
811 return 0;
812 out_bad:
813 list_for_each_entry_safe(data, tmp, &list, pages) {
814 nfs_retry_commit(&data->pages, data->lseg);
815 list_del_init(&data->pages);
816 nfs_commit_free(data);
817 }
818 nfs_retry_commit(mds_pages, NULL);
819 nfs_commit_clear_lock(NFS_I(inode));
820 return -ENOMEM;
821}
822
7ab672ce 823static struct pnfs_layoutdriver_type filelayout_type = {
ea8eecdd
CH
824 .id = LAYOUT_NFSV4_1_FILES,
825 .name = "LAYOUT_NFSV4_1_FILES",
826 .owner = THIS_MODULE,
827 .alloc_lseg = filelayout_alloc_lseg,
828 .free_lseg = filelayout_free_lseg,
94ad1c80 829 .pg_test = filelayout_pg_test,
e0c2b380
FI
830 .mark_pnfs_commit = filelayout_mark_pnfs_commit,
831 .choose_commit_list = filelayout_choose_commit_list,
832 .commit_pagelist = filelayout_commit_pagelist,
dc70d7b3 833 .read_pagelist = filelayout_read_pagelist,
0382b744 834 .write_pagelist = filelayout_write_pagelist,
7ab672ce
DH
835};
836
837static int __init nfs4filelayout_init(void)
838{
839 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
840 __func__);
841 return pnfs_register_layoutdriver(&filelayout_type);
842}
843
844static void __exit nfs4filelayout_exit(void)
845{
846 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
847 __func__);
848 pnfs_unregister_layoutdriver(&filelayout_type);
849}
850
851module_init(nfs4filelayout_init);
852module_exit(nfs4filelayout_exit);
This page took 0.086589 seconds and 5 git commands to generate.