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.
7 * The Regents of the University of Michigan
10 * Dean Hildebrand <dhildebz@umich.edu>
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.
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
32 #include <linux/nfs_fs.h>
33 #include <linux/nfs_page.h>
36 #include "nfs4filelayout.h"
38 #define NFSDBG_FACILITY NFSDBG_PNFS_LD
40 MODULE_LICENSE("GPL");
41 MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
42 MODULE_DESCRIPTION("The NFSv4 file layout driver");
44 #define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
47 filelayout_get_dense_offset(struct nfs4_filelayout_segment
*flseg
,
50 u32 stripe_width
= flseg
->stripe_unit
* flseg
->dsaddr
->stripe_count
;
53 offset
-= flseg
->pattern_offset
;
55 do_div(tmp
, stripe_width
);
57 return tmp
* flseg
->stripe_unit
+ do_div(offset
, flseg
->stripe_unit
);
60 /* This function is used by the layout driver to calculate the
61 * offset of the file on the dserver based on whether the
62 * layout type is STRIPE_DENSE or STRIPE_SPARSE
65 filelayout_get_dserver_offset(struct pnfs_layout_segment
*lseg
, loff_t offset
)
67 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
69 switch (flseg
->stripe_type
) {
74 return filelayout_get_dense_offset(flseg
, offset
);
80 static int filelayout_async_handle_error(struct rpc_task
*task
,
81 struct nfs4_state
*state
,
82 struct nfs_client
*clp
,
85 if (task
->tk_status
>= 0)
90 switch (task
->tk_status
) {
91 case -NFS4ERR_BADSESSION
:
92 case -NFS4ERR_BADSLOT
:
93 case -NFS4ERR_BAD_HIGH_SLOT
:
94 case -NFS4ERR_DEADSESSION
:
95 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
96 case -NFS4ERR_SEQ_FALSE_RETRY
:
97 case -NFS4ERR_SEQ_MISORDERED
:
98 dprintk("%s ERROR %d, Reset session. Exchangeid "
99 "flags 0x%x\n", __func__
, task
->tk_status
,
100 clp
->cl_exchange_flags
);
101 nfs4_schedule_session_recovery(clp
->cl_session
);
106 rpc_delay(task
, FILELAYOUT_POLL_RETRY_MAX
);
108 case -NFS4ERR_RETRY_UNCACHED_REP
:
111 dprintk("%s DS error. Retry through MDS %d\n", __func__
,
120 /* NFS_PROTO call done callback routines */
122 static int filelayout_read_done_cb(struct rpc_task
*task
,
123 struct nfs_read_data
*data
)
125 struct nfs_client
*clp
= data
->ds_clp
;
128 dprintk("%s DS read\n", __func__
);
130 if (filelayout_async_handle_error(task
, data
->args
.context
->state
,
131 data
->ds_clp
, &reset
) == -EAGAIN
) {
132 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
133 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
135 pnfs_set_lo_fail(data
->lseg
);
136 nfs4_reset_read(task
, data
);
137 clp
= NFS_SERVER(data
->inode
)->nfs_client
;
139 nfs_restart_rpc(task
, clp
);
147 * We reference the rpc_cred of the first WRITE that triggers the need for
148 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
149 * rfc5661 is not clear about which credential should be used.
152 filelayout_set_layoutcommit(struct nfs_write_data
*wdata
)
154 if (FILELAYOUT_LSEG(wdata
->lseg
)->commit_through_mds
||
155 wdata
->res
.verf
->committed
== NFS_FILE_SYNC
)
158 pnfs_set_layoutcommit(wdata
);
159 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__
, wdata
->inode
->i_ino
,
160 (unsigned long) NFS_I(wdata
->inode
)->layout
->plh_lwb
);
164 * Call ops for the async read/write cases
165 * In the case of dense layouts, the offset needs to be reset to its
168 static void filelayout_read_prepare(struct rpc_task
*task
, void *data
)
170 struct nfs_read_data
*rdata
= (struct nfs_read_data
*)data
;
172 rdata
->read_done_cb
= filelayout_read_done_cb
;
174 if (nfs41_setup_sequence(rdata
->ds_clp
->cl_session
,
175 &rdata
->args
.seq_args
, &rdata
->res
.seq_res
,
179 rpc_call_start(task
);
182 static void filelayout_read_call_done(struct rpc_task
*task
, void *data
)
184 struct nfs_read_data
*rdata
= (struct nfs_read_data
*)data
;
186 dprintk("--> %s task->tk_status %d\n", __func__
, task
->tk_status
);
188 /* Note this may cause RPC to be resent */
189 rdata
->mds_ops
->rpc_call_done(task
, data
);
192 static void filelayout_read_release(void *data
)
194 struct nfs_read_data
*rdata
= (struct nfs_read_data
*)data
;
196 rdata
->mds_ops
->rpc_release(data
);
199 static int filelayout_write_done_cb(struct rpc_task
*task
,
200 struct nfs_write_data
*data
)
204 if (filelayout_async_handle_error(task
, data
->args
.context
->state
,
205 data
->ds_clp
, &reset
) == -EAGAIN
) {
206 struct nfs_client
*clp
;
208 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
209 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
211 pnfs_set_lo_fail(data
->lseg
);
212 nfs4_reset_write(task
, data
);
213 clp
= NFS_SERVER(data
->inode
)->nfs_client
;
216 nfs_restart_rpc(task
, clp
);
220 filelayout_set_layoutcommit(data
);
224 /* Fake up some data that will cause nfs_commit_release to retry the writes. */
225 static void prepare_to_resend_writes(struct nfs_write_data
*data
)
227 struct nfs_page
*first
= nfs_list_entry(data
->pages
.next
);
229 data
->task
.tk_status
= 0;
230 memcpy(data
->verf
.verifier
, first
->wb_verf
.verifier
,
231 sizeof(first
->wb_verf
.verifier
));
232 data
->verf
.verifier
[0]++; /* ensure verifier mismatch */
235 static int filelayout_commit_done_cb(struct rpc_task
*task
,
236 struct nfs_write_data
*data
)
240 if (filelayout_async_handle_error(task
, data
->args
.context
->state
,
241 data
->ds_clp
, &reset
) == -EAGAIN
) {
242 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
243 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
245 prepare_to_resend_writes(data
);
246 pnfs_set_lo_fail(data
->lseg
);
248 nfs_restart_rpc(task
, data
->ds_clp
);
255 static void filelayout_write_prepare(struct rpc_task
*task
, void *data
)
257 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
259 if (nfs41_setup_sequence(wdata
->ds_clp
->cl_session
,
260 &wdata
->args
.seq_args
, &wdata
->res
.seq_res
,
264 rpc_call_start(task
);
267 static void filelayout_write_call_done(struct rpc_task
*task
, void *data
)
269 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
271 /* Note this may cause RPC to be resent */
272 wdata
->mds_ops
->rpc_call_done(task
, data
);
275 static void filelayout_write_release(void *data
)
277 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
279 wdata
->mds_ops
->rpc_release(data
);
282 static void filelayout_commit_release(void *data
)
284 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
286 nfs_commit_release_pages(wdata
);
287 if (atomic_dec_and_test(&NFS_I(wdata
->inode
)->commits_outstanding
))
288 nfs_commit_clear_lock(NFS_I(wdata
->inode
));
289 nfs_commitdata_release(wdata
);
292 struct rpc_call_ops filelayout_read_call_ops
= {
293 .rpc_call_prepare
= filelayout_read_prepare
,
294 .rpc_call_done
= filelayout_read_call_done
,
295 .rpc_release
= filelayout_read_release
,
298 struct rpc_call_ops filelayout_write_call_ops
= {
299 .rpc_call_prepare
= filelayout_write_prepare
,
300 .rpc_call_done
= filelayout_write_call_done
,
301 .rpc_release
= filelayout_write_release
,
304 struct rpc_call_ops filelayout_commit_call_ops
= {
305 .rpc_call_prepare
= filelayout_write_prepare
,
306 .rpc_call_done
= filelayout_write_call_done
,
307 .rpc_release
= filelayout_commit_release
,
310 static enum pnfs_try_status
311 filelayout_read_pagelist(struct nfs_read_data
*data
)
313 struct pnfs_layout_segment
*lseg
= data
->lseg
;
314 struct nfs4_pnfs_ds
*ds
;
315 loff_t offset
= data
->args
.offset
;
320 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
321 __func__
, data
->inode
->i_ino
,
322 data
->args
.pgbase
, (size_t)data
->args
.count
, offset
);
324 if (test_bit(NFS_DEVICEID_INVALID
, &FILELAYOUT_DEVID_NODE(lseg
)->flags
))
325 return PNFS_NOT_ATTEMPTED
;
327 /* Retrieve the correct rpc_client for the byte range */
328 j
= nfs4_fl_calc_j_index(lseg
, offset
);
329 idx
= nfs4_fl_calc_ds_index(lseg
, j
);
330 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
332 /* Either layout fh index faulty, or ds connect failed */
333 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
334 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
335 return PNFS_NOT_ATTEMPTED
;
337 dprintk("%s USE DS: %s\n", __func__
, ds
->ds_remotestr
);
339 /* No multipath support. Use first DS */
340 data
->ds_clp
= ds
->ds_clp
;
341 fh
= nfs4_fl_select_ds_fh(lseg
, j
);
345 data
->args
.offset
= filelayout_get_dserver_offset(lseg
, offset
);
346 data
->mds_offset
= offset
;
348 /* Perform an asynchronous read to ds */
349 status
= nfs_initiate_read(data
, ds
->ds_clp
->cl_rpcclient
,
350 &filelayout_read_call_ops
);
352 return PNFS_ATTEMPTED
;
355 /* Perform async writes. */
356 static enum pnfs_try_status
357 filelayout_write_pagelist(struct nfs_write_data
*data
, int sync
)
359 struct pnfs_layout_segment
*lseg
= data
->lseg
;
360 struct nfs4_pnfs_ds
*ds
;
361 loff_t offset
= data
->args
.offset
;
366 if (test_bit(NFS_DEVICEID_INVALID
, &FILELAYOUT_DEVID_NODE(lseg
)->flags
))
367 return PNFS_NOT_ATTEMPTED
;
369 /* Retrieve the correct rpc_client for the byte range */
370 j
= nfs4_fl_calc_j_index(lseg
, offset
);
371 idx
= nfs4_fl_calc_ds_index(lseg
, j
);
372 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
374 printk(KERN_ERR
"%s: prepare_ds failed, use MDS\n", __func__
);
375 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
376 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
377 return PNFS_NOT_ATTEMPTED
;
379 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s\n", __func__
,
380 data
->inode
->i_ino
, sync
, (size_t) data
->args
.count
, offset
,
383 data
->write_done_cb
= filelayout_write_done_cb
;
384 data
->ds_clp
= ds
->ds_clp
;
385 fh
= nfs4_fl_select_ds_fh(lseg
, j
);
389 * Get the file offset on the dserver. Set the write offset to
390 * this offset and save the original offset.
392 data
->args
.offset
= filelayout_get_dserver_offset(lseg
, offset
);
394 /* Perform an asynchronous write */
395 status
= nfs_initiate_write(data
, ds
->ds_clp
->cl_rpcclient
,
396 &filelayout_write_call_ops
, sync
);
398 return PNFS_ATTEMPTED
;
402 * filelayout_check_layout()
404 * Make sure layout segment parameters are sane WRT the device.
405 * At this point no generic layer initialization of the lseg has occurred,
406 * and nothing has been added to the layout_hdr cache.
410 filelayout_check_layout(struct pnfs_layout_hdr
*lo
,
411 struct nfs4_filelayout_segment
*fl
,
412 struct nfs4_layoutget_res
*lgr
,
413 struct nfs4_deviceid
*id
,
416 struct nfs4_deviceid_node
*d
;
417 struct nfs4_file_layout_dsaddr
*dsaddr
;
418 int status
= -EINVAL
;
419 struct nfs_server
*nfss
= NFS_SERVER(lo
->plh_inode
);
421 dprintk("--> %s\n", __func__
);
423 /* FIXME: remove this check when layout segment support is added */
424 if (lgr
->range
.offset
!= 0 ||
425 lgr
->range
.length
!= NFS4_MAX_UINT64
) {
426 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
431 if (fl
->pattern_offset
> lgr
->range
.offset
) {
432 dprintk("%s pattern_offset %lld too large\n",
433 __func__
, fl
->pattern_offset
);
437 if (!fl
->stripe_unit
|| fl
->stripe_unit
% PAGE_SIZE
) {
438 dprintk("%s Invalid stripe unit (%u)\n",
439 __func__
, fl
->stripe_unit
);
443 /* find and reference the deviceid */
444 d
= nfs4_find_get_deviceid(NFS_SERVER(lo
->plh_inode
)->pnfs_curr_ld
,
445 NFS_SERVER(lo
->plh_inode
)->nfs_client
, id
);
447 dsaddr
= get_device_info(lo
->plh_inode
, id
, gfp_flags
);
451 dsaddr
= container_of(d
, struct nfs4_file_layout_dsaddr
, id_node
);
452 /* Found deviceid is being reaped */
453 if (test_bit(NFS_DEVICEID_INVALID
, &dsaddr
->id_node
.flags
))
458 if (fl
->first_stripe_index
< 0 ||
459 fl
->first_stripe_index
>= dsaddr
->stripe_count
) {
460 dprintk("%s Bad first_stripe_index %d\n",
461 __func__
, fl
->first_stripe_index
);
465 if ((fl
->stripe_type
== STRIPE_SPARSE
&&
466 fl
->num_fh
> 1 && fl
->num_fh
!= dsaddr
->ds_num
) ||
467 (fl
->stripe_type
== STRIPE_DENSE
&&
468 fl
->num_fh
!= dsaddr
->stripe_count
)) {
469 dprintk("%s num_fh %u not valid for given packing\n",
470 __func__
, fl
->num_fh
);
474 if (fl
->stripe_unit
% nfss
->rsize
|| fl
->stripe_unit
% nfss
->wsize
) {
475 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
476 "wsize %u\n", __func__
, fl
->stripe_unit
, nfss
->rsize
,
482 dprintk("--> %s returns %d\n", __func__
, status
);
485 nfs4_fl_put_deviceid(dsaddr
);
489 static void filelayout_free_fh_array(struct nfs4_filelayout_segment
*fl
)
493 for (i
= 0; i
< fl
->num_fh
; i
++) {
494 if (!fl
->fh_array
[i
])
496 kfree(fl
->fh_array
[i
]);
503 _filelayout_free_lseg(struct nfs4_filelayout_segment
*fl
)
505 filelayout_free_fh_array(fl
);
510 filelayout_decode_layout(struct pnfs_layout_hdr
*flo
,
511 struct nfs4_filelayout_segment
*fl
,
512 struct nfs4_layoutget_res
*lgr
,
513 struct nfs4_deviceid
*id
,
516 struct xdr_stream stream
;
518 struct page
*scratch
;
523 dprintk("%s: set_layout_map Begin\n", __func__
);
525 scratch
= alloc_page(gfp_flags
);
529 xdr_init_decode_pages(&stream
, &buf
, lgr
->layoutp
->pages
, lgr
->layoutp
->len
);
530 xdr_set_scratch_buffer(&stream
, page_address(scratch
), PAGE_SIZE
);
532 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
534 p
= xdr_inline_decode(&stream
, NFS4_DEVICEID4_SIZE
+ 20);
538 memcpy(id
, p
, sizeof(*id
));
539 p
+= XDR_QUADLEN(NFS4_DEVICEID4_SIZE
);
540 nfs4_print_deviceid(id
);
542 nfl_util
= be32_to_cpup(p
++);
543 if (nfl_util
& NFL4_UFLG_COMMIT_THRU_MDS
)
544 fl
->commit_through_mds
= 1;
545 if (nfl_util
& NFL4_UFLG_DENSE
)
546 fl
->stripe_type
= STRIPE_DENSE
;
548 fl
->stripe_type
= STRIPE_SPARSE
;
549 fl
->stripe_unit
= nfl_util
& ~NFL4_UFLG_MASK
;
551 fl
->first_stripe_index
= be32_to_cpup(p
++);
552 p
= xdr_decode_hyper(p
, &fl
->pattern_offset
);
553 fl
->num_fh
= be32_to_cpup(p
++);
555 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
556 __func__
, nfl_util
, fl
->num_fh
, fl
->first_stripe_index
,
559 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
560 * Futher checking is done in filelayout_check_layout */
561 if (fl
->num_fh
< 0 || fl
->num_fh
>
562 max(NFS4_PNFS_MAX_STRIPE_CNT
, NFS4_PNFS_MAX_MULTI_CNT
))
565 if (fl
->num_fh
> 0) {
566 fl
->fh_array
= kzalloc(fl
->num_fh
* sizeof(struct nfs_fh
*),
572 for (i
= 0; i
< fl
->num_fh
; i
++) {
573 /* Do we want to use a mempool here? */
574 fl
->fh_array
[i
] = kmalloc(sizeof(struct nfs_fh
), gfp_flags
);
575 if (!fl
->fh_array
[i
])
578 p
= xdr_inline_decode(&stream
, 4);
581 fl
->fh_array
[i
]->size
= be32_to_cpup(p
++);
582 if (sizeof(struct nfs_fh
) < fl
->fh_array
[i
]->size
) {
583 printk(KERN_ERR
"Too big fh %d received %d\n",
584 i
, fl
->fh_array
[i
]->size
);
588 p
= xdr_inline_decode(&stream
, fl
->fh_array
[i
]->size
);
591 memcpy(fl
->fh_array
[i
]->data
, p
, fl
->fh_array
[i
]->size
);
592 dprintk("DEBUG: %s: fh len %d\n", __func__
,
593 fl
->fh_array
[i
]->size
);
596 __free_page(scratch
);
600 filelayout_free_fh_array(fl
);
602 __free_page(scratch
);
607 filelayout_free_lseg(struct pnfs_layout_segment
*lseg
)
609 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
611 dprintk("--> %s\n", __func__
);
612 nfs4_fl_put_deviceid(fl
->dsaddr
);
613 kfree(fl
->commit_buckets
);
614 _filelayout_free_lseg(fl
);
617 static struct pnfs_layout_segment
*
618 filelayout_alloc_lseg(struct pnfs_layout_hdr
*layoutid
,
619 struct nfs4_layoutget_res
*lgr
,
622 struct nfs4_filelayout_segment
*fl
;
624 struct nfs4_deviceid id
;
626 dprintk("--> %s\n", __func__
);
627 fl
= kzalloc(sizeof(*fl
), gfp_flags
);
631 rc
= filelayout_decode_layout(layoutid
, fl
, lgr
, &id
, gfp_flags
);
632 if (rc
!= 0 || filelayout_check_layout(layoutid
, fl
, lgr
, &id
, gfp_flags
)) {
633 _filelayout_free_lseg(fl
);
637 /* This assumes there is only one IOMODE_RW lseg. What
638 * we really want to do is have a layout_hdr level
639 * dictionary of <multipath_list4, fh> keys, each
640 * associated with a struct list_head, populated by calls
641 * to filelayout_write_pagelist().
643 if ((!fl
->commit_through_mds
) && (lgr
->range
.iomode
== IOMODE_RW
)) {
645 int size
= (fl
->stripe_type
== STRIPE_SPARSE
) ?
646 fl
->dsaddr
->ds_num
: fl
->dsaddr
->stripe_count
;
648 fl
->commit_buckets
= kcalloc(size
, sizeof(struct list_head
), gfp_flags
);
649 if (!fl
->commit_buckets
) {
650 filelayout_free_lseg(&fl
->generic_hdr
);
653 fl
->number_of_buckets
= size
;
654 for (i
= 0; i
< size
; i
++)
655 INIT_LIST_HEAD(&fl
->commit_buckets
[i
]);
657 return &fl
->generic_hdr
;
661 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
663 * return true : coalesce page
664 * return false : don't coalesce page
667 filelayout_pg_test(struct nfs_pageio_descriptor
*pgio
, struct nfs_page
*prev
,
668 struct nfs_page
*req
)
670 u64 p_stripe
, r_stripe
;
673 if (!pnfs_generic_pg_test(pgio
, prev
, req
) ||
674 !nfs_generic_pg_test(pgio
, prev
, req
))
677 p_stripe
= (u64
)prev
->wb_index
<< PAGE_CACHE_SHIFT
;
678 r_stripe
= (u64
)req
->wb_index
<< PAGE_CACHE_SHIFT
;
679 stripe_unit
= FILELAYOUT_LSEG(pgio
->pg_lseg
)->stripe_unit
;
681 do_div(p_stripe
, stripe_unit
);
682 do_div(r_stripe
, stripe_unit
);
684 return (p_stripe
== r_stripe
);
688 filelayout_pg_init_read(struct nfs_pageio_descriptor
*pgio
,
689 struct nfs_page
*req
)
691 BUG_ON(pgio
->pg_lseg
!= NULL
);
693 pgio
->pg_lseg
= pnfs_update_layout(pgio
->pg_inode
,
699 /* If no lseg, fall back to read through mds */
700 if (pgio
->pg_lseg
== NULL
)
701 nfs_pageio_reset_read_mds(pgio
);
705 filelayout_pg_init_write(struct nfs_pageio_descriptor
*pgio
,
706 struct nfs_page
*req
)
708 BUG_ON(pgio
->pg_lseg
!= NULL
);
710 pgio
->pg_lseg
= pnfs_update_layout(pgio
->pg_inode
,
716 /* If no lseg, fall back to write through mds */
717 if (pgio
->pg_lseg
== NULL
)
718 nfs_pageio_reset_write_mds(pgio
);
721 static const struct nfs_pageio_ops filelayout_pg_read_ops
= {
722 .pg_init
= filelayout_pg_init_read
,
723 .pg_test
= filelayout_pg_test
,
724 .pg_doio
= pnfs_generic_pg_readpages
,
727 static const struct nfs_pageio_ops filelayout_pg_write_ops
= {
728 .pg_init
= filelayout_pg_init_write
,
729 .pg_test
= filelayout_pg_test
,
730 .pg_doio
= pnfs_generic_pg_writepages
,
733 static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment
*lseg
)
735 return !FILELAYOUT_LSEG(lseg
)->commit_through_mds
;
738 static u32
select_bucket_index(struct nfs4_filelayout_segment
*fl
, u32 j
)
740 if (fl
->stripe_type
== STRIPE_SPARSE
)
741 return nfs4_fl_calc_ds_index(&fl
->generic_hdr
, j
);
746 struct list_head
*filelayout_choose_commit_list(struct nfs_page
*req
)
748 struct pnfs_layout_segment
*lseg
= req
->wb_commit_lseg
;
749 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
751 struct list_head
*list
;
753 /* Note that we are calling nfs4_fl_calc_j_index on each page
754 * that ends up being committed to a data server. An attractive
755 * alternative is to add a field to nfs_write_data and nfs_page
756 * to store the value calculated in filelayout_write_pagelist
757 * and just use that here.
759 j
= nfs4_fl_calc_j_index(lseg
,
760 (loff_t
)req
->wb_index
<< PAGE_CACHE_SHIFT
);
761 i
= select_bucket_index(fl
, j
);
762 list
= &fl
->commit_buckets
[i
];
763 if (list_empty(list
)) {
764 /* Non-empty buckets hold a reference on the lseg */
770 static u32
calc_ds_index_from_commit(struct pnfs_layout_segment
*lseg
, u32 i
)
772 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
774 if (flseg
->stripe_type
== STRIPE_SPARSE
)
777 return nfs4_fl_calc_ds_index(lseg
, i
);
780 static struct nfs_fh
*
781 select_ds_fh_from_commit(struct pnfs_layout_segment
*lseg
, u32 i
)
783 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
785 if (flseg
->stripe_type
== STRIPE_SPARSE
) {
786 if (flseg
->num_fh
== 1)
788 else if (flseg
->num_fh
== 0)
789 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
792 return flseg
->fh_array
[i
];
795 static int filelayout_initiate_commit(struct nfs_write_data
*data
, int how
)
797 struct pnfs_layout_segment
*lseg
= data
->lseg
;
798 struct nfs4_pnfs_ds
*ds
;
802 idx
= calc_ds_index_from_commit(lseg
, data
->ds_commit_index
);
803 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
805 printk(KERN_ERR
"%s: prepare_ds failed, use MDS\n", __func__
);
806 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
807 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
808 prepare_to_resend_writes(data
);
809 data
->mds_ops
->rpc_release(data
);
812 dprintk("%s ino %lu, how %d\n", __func__
, data
->inode
->i_ino
, how
);
813 data
->write_done_cb
= filelayout_commit_done_cb
;
814 data
->ds_clp
= ds
->ds_clp
;
815 fh
= select_ds_fh_from_commit(lseg
, data
->ds_commit_index
);
818 return nfs_initiate_commit(data
, ds
->ds_clp
->cl_rpcclient
,
819 &filelayout_commit_call_ops
, how
);
823 * This is only useful while we are using whole file layouts.
825 static struct pnfs_layout_segment
*find_only_write_lseg(struct inode
*inode
)
827 struct pnfs_layout_segment
*lseg
, *rv
= NULL
;
829 spin_lock(&inode
->i_lock
);
830 list_for_each_entry(lseg
, &NFS_I(inode
)->layout
->plh_segs
, pls_list
)
831 if (lseg
->pls_range
.iomode
== IOMODE_RW
)
833 spin_unlock(&inode
->i_lock
);
837 static int alloc_ds_commits(struct inode
*inode
, struct list_head
*list
)
839 struct pnfs_layout_segment
*lseg
;
840 struct nfs4_filelayout_segment
*fl
;
841 struct nfs_write_data
*data
;
844 /* Won't need this when non-whole file layout segments are supported
845 * instead we will use a pnfs_layout_hdr structure */
846 lseg
= find_only_write_lseg(inode
);
849 fl
= FILELAYOUT_LSEG(lseg
);
850 for (i
= 0; i
< fl
->number_of_buckets
; i
++) {
851 if (list_empty(&fl
->commit_buckets
[i
]))
853 data
= nfs_commitdata_alloc();
856 data
->ds_commit_index
= i
;
858 list_add(&data
->pages
, list
);
864 for (j
= i
; j
< fl
->number_of_buckets
; j
++) {
865 if (list_empty(&fl
->commit_buckets
[i
]))
867 nfs_retry_commit(&fl
->commit_buckets
[i
], lseg
);
868 put_lseg(lseg
); /* associated with emptying bucket */
871 /* Caller will clean up entries put on list */
875 /* This follows nfs_commit_list pretty closely */
877 filelayout_commit_pagelist(struct inode
*inode
, struct list_head
*mds_pages
,
880 struct nfs_write_data
*data
, *tmp
;
883 if (!list_empty(mds_pages
)) {
884 data
= nfs_commitdata_alloc();
888 list_add(&data
->pages
, &list
);
891 if (alloc_ds_commits(inode
, &list
))
894 list_for_each_entry_safe(data
, tmp
, &list
, pages
) {
895 list_del_init(&data
->pages
);
896 atomic_inc(&NFS_I(inode
)->commits_outstanding
);
898 nfs_init_commit(data
, mds_pages
, NULL
);
899 nfs_initiate_commit(data
, NFS_CLIENT(inode
),
902 nfs_init_commit(data
, &FILELAYOUT_LSEG(data
->lseg
)->commit_buckets
[data
->ds_commit_index
], data
->lseg
);
903 filelayout_initiate_commit(data
, how
);
908 list_for_each_entry_safe(data
, tmp
, &list
, pages
) {
909 nfs_retry_commit(&data
->pages
, data
->lseg
);
910 list_del_init(&data
->pages
);
911 nfs_commit_free(data
);
913 nfs_retry_commit(mds_pages
, NULL
);
914 nfs_commit_clear_lock(NFS_I(inode
));
919 filelayout_free_deveiceid_node(struct nfs4_deviceid_node
*d
)
921 nfs4_fl_free_deviceid(container_of(d
, struct nfs4_file_layout_dsaddr
, id_node
));
924 static struct pnfs_layoutdriver_type filelayout_type
= {
925 .id
= LAYOUT_NFSV4_1_FILES
,
926 .name
= "LAYOUT_NFSV4_1_FILES",
927 .owner
= THIS_MODULE
,
928 .alloc_lseg
= filelayout_alloc_lseg
,
929 .free_lseg
= filelayout_free_lseg
,
930 .pg_read_ops
= &filelayout_pg_read_ops
,
931 .pg_write_ops
= &filelayout_pg_write_ops
,
932 .mark_pnfs_commit
= filelayout_mark_pnfs_commit
,
933 .choose_commit_list
= filelayout_choose_commit_list
,
934 .commit_pagelist
= filelayout_commit_pagelist
,
935 .read_pagelist
= filelayout_read_pagelist
,
936 .write_pagelist
= filelayout_write_pagelist
,
937 .free_deviceid_node
= filelayout_free_deveiceid_node
,
940 static int __init
nfs4filelayout_init(void)
942 printk(KERN_INFO
"%s: NFSv4 File Layout Driver Registering...\n",
944 return pnfs_register_layoutdriver(&filelayout_type
);
947 static void __exit
nfs4filelayout_exit(void)
949 printk(KERN_INFO
"%s: NFSv4 File Layout Driver Unregistering...\n",
951 pnfs_unregister_layoutdriver(&filelayout_type
);
954 MODULE_ALIAS("nfs-layouttype4-1");
956 module_init(nfs4filelayout_init
);
957 module_exit(nfs4filelayout_exit
);