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>
34 #include <linux/module.h>
36 #include <linux/sunrpc/metrics.h>
39 #include "delegation.h"
40 #include "nfs4filelayout.h"
42 #define NFSDBG_FACILITY NFSDBG_PNFS_LD
44 MODULE_LICENSE("GPL");
45 MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
46 MODULE_DESCRIPTION("The NFSv4 file layout driver");
48 #define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
51 filelayout_get_dense_offset(struct nfs4_filelayout_segment
*flseg
,
54 u32 stripe_width
= flseg
->stripe_unit
* flseg
->dsaddr
->stripe_count
;
58 offset
-= flseg
->pattern_offset
;
59 stripe_no
= div_u64(offset
, stripe_width
);
60 div_u64_rem(offset
, flseg
->stripe_unit
, &rem
);
62 return stripe_no
* flseg
->stripe_unit
+ rem
;
65 /* This function is used by the layout driver to calculate the
66 * offset of the file on the dserver based on whether the
67 * layout type is STRIPE_DENSE or STRIPE_SPARSE
70 filelayout_get_dserver_offset(struct pnfs_layout_segment
*lseg
, loff_t offset
)
72 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
74 switch (flseg
->stripe_type
) {
79 return filelayout_get_dense_offset(flseg
, offset
);
85 static int filelayout_async_handle_error(struct rpc_task
*task
,
86 struct nfs4_state
*state
,
87 struct nfs_client
*clp
,
90 struct nfs_server
*mds_server
= NFS_SERVER(state
->inode
);
91 struct nfs_client
*mds_client
= mds_server
->nfs_client
;
93 if (task
->tk_status
>= 0)
97 switch (task
->tk_status
) {
98 /* MDS state errors */
99 case -NFS4ERR_DELEG_REVOKED
:
100 case -NFS4ERR_ADMIN_REVOKED
:
101 case -NFS4ERR_BAD_STATEID
:
102 nfs_remove_bad_delegation(state
->inode
);
103 case -NFS4ERR_OPENMODE
:
104 nfs4_schedule_stateid_recovery(mds_server
, state
);
105 goto wait_on_recovery
;
106 case -NFS4ERR_EXPIRED
:
107 nfs4_schedule_stateid_recovery(mds_server
, state
);
108 nfs4_schedule_lease_recovery(mds_client
);
109 goto wait_on_recovery
;
110 /* DS session errors */
111 case -NFS4ERR_BADSESSION
:
112 case -NFS4ERR_BADSLOT
:
113 case -NFS4ERR_BAD_HIGH_SLOT
:
114 case -NFS4ERR_DEADSESSION
:
115 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
116 case -NFS4ERR_SEQ_FALSE_RETRY
:
117 case -NFS4ERR_SEQ_MISORDERED
:
118 dprintk("%s ERROR %d, Reset session. Exchangeid "
119 "flags 0x%x\n", __func__
, task
->tk_status
,
120 clp
->cl_exchange_flags
);
121 nfs4_schedule_session_recovery(clp
->cl_session
);
126 rpc_delay(task
, FILELAYOUT_POLL_RETRY_MAX
);
128 case -NFS4ERR_RETRY_UNCACHED_REP
:
131 dprintk("%s DS error. Retry through MDS %d\n", __func__
,
140 rpc_sleep_on(&mds_client
->cl_rpcwaitq
, task
, NULL
);
141 if (test_bit(NFS4CLNT_MANAGER_RUNNING
, &mds_client
->cl_state
) == 0)
142 rpc_wake_up_queued_task(&mds_client
->cl_rpcwaitq
, task
);
146 /* NFS_PROTO call done callback routines */
148 static int filelayout_read_done_cb(struct rpc_task
*task
,
149 struct nfs_read_data
*data
)
151 struct nfs_pgio_header
*hdr
= data
->header
;
154 dprintk("%s DS read\n", __func__
);
156 if (filelayout_async_handle_error(task
, data
->args
.context
->state
,
157 data
->ds_clp
, &reset
) == -EAGAIN
) {
158 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
159 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
161 pnfs_set_lo_fail(hdr
->lseg
);
162 nfs4_reset_read(task
, data
);
164 rpc_restart_call_prepare(task
);
172 * We reference the rpc_cred of the first WRITE that triggers the need for
173 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
174 * rfc5661 is not clear about which credential should be used.
177 filelayout_set_layoutcommit(struct nfs_write_data
*wdata
)
179 struct nfs_pgio_header
*hdr
= wdata
->header
;
181 if (FILELAYOUT_LSEG(hdr
->lseg
)->commit_through_mds
||
182 wdata
->res
.verf
->committed
== NFS_FILE_SYNC
)
185 pnfs_set_layoutcommit(wdata
);
186 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__
, hdr
->inode
->i_ino
,
187 (unsigned long) NFS_I(hdr
->inode
)->layout
->plh_lwb
);
191 * Call ops for the async read/write cases
192 * In the case of dense layouts, the offset needs to be reset to its
195 static void filelayout_read_prepare(struct rpc_task
*task
, void *data
)
197 struct nfs_read_data
*rdata
= data
;
199 rdata
->read_done_cb
= filelayout_read_done_cb
;
201 if (nfs41_setup_sequence(rdata
->ds_clp
->cl_session
,
202 &rdata
->args
.seq_args
, &rdata
->res
.seq_res
,
206 rpc_call_start(task
);
209 static void filelayout_read_call_done(struct rpc_task
*task
, void *data
)
211 struct nfs_read_data
*rdata
= data
;
213 dprintk("--> %s task->tk_status %d\n", __func__
, task
->tk_status
);
215 /* Note this may cause RPC to be resent */
216 rdata
->header
->mds_ops
->rpc_call_done(task
, data
);
219 static void filelayout_read_count_stats(struct rpc_task
*task
, void *data
)
221 struct nfs_read_data
*rdata
= data
;
223 rpc_count_iostats(task
, NFS_SERVER(rdata
->header
->inode
)->client
->cl_metrics
);
226 static void filelayout_read_release(void *data
)
228 struct nfs_read_data
*rdata
= data
;
230 rdata
->header
->mds_ops
->rpc_release(data
);
233 static int filelayout_write_done_cb(struct rpc_task
*task
,
234 struct nfs_write_data
*data
)
236 struct nfs_pgio_header
*hdr
= data
->header
;
239 if (filelayout_async_handle_error(task
, data
->args
.context
->state
,
240 data
->ds_clp
, &reset
) == -EAGAIN
) {
241 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
242 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
244 pnfs_set_lo_fail(hdr
->lseg
);
245 nfs4_reset_write(task
, data
);
247 rpc_restart_call_prepare(task
);
251 filelayout_set_layoutcommit(data
);
255 /* Fake up some data that will cause nfs_commit_release to retry the writes. */
256 static void prepare_to_resend_writes(struct nfs_commit_data
*data
)
258 struct nfs_page
*first
= nfs_list_entry(data
->pages
.next
);
260 data
->task
.tk_status
= 0;
261 memcpy(data
->verf
.verifier
, first
->wb_verf
.verifier
,
262 sizeof(first
->wb_verf
.verifier
));
263 data
->verf
.verifier
[0]++; /* ensure verifier mismatch */
266 static int filelayout_commit_done_cb(struct rpc_task
*task
,
267 struct nfs_commit_data
*data
)
271 if (filelayout_async_handle_error(task
, data
->context
->state
,
272 data
->ds_clp
, &reset
) == -EAGAIN
) {
273 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
274 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
276 prepare_to_resend_writes(data
);
277 pnfs_set_lo_fail(data
->lseg
);
279 rpc_restart_call_prepare(task
);
286 static void filelayout_write_prepare(struct rpc_task
*task
, void *data
)
288 struct nfs_write_data
*wdata
= data
;
290 if (nfs41_setup_sequence(wdata
->ds_clp
->cl_session
,
291 &wdata
->args
.seq_args
, &wdata
->res
.seq_res
,
295 rpc_call_start(task
);
298 static void filelayout_write_call_done(struct rpc_task
*task
, void *data
)
300 struct nfs_write_data
*wdata
= data
;
302 /* Note this may cause RPC to be resent */
303 wdata
->header
->mds_ops
->rpc_call_done(task
, data
);
306 static void filelayout_write_count_stats(struct rpc_task
*task
, void *data
)
308 struct nfs_write_data
*wdata
= data
;
310 rpc_count_iostats(task
, NFS_SERVER(wdata
->header
->inode
)->client
->cl_metrics
);
313 static void filelayout_write_release(void *data
)
315 struct nfs_write_data
*wdata
= data
;
317 wdata
->header
->mds_ops
->rpc_release(data
);
320 static void filelayout_commit_prepare(struct rpc_task
*task
, void *data
)
322 struct nfs_commit_data
*wdata
= data
;
324 if (nfs41_setup_sequence(wdata
->ds_clp
->cl_session
,
325 &wdata
->args
.seq_args
, &wdata
->res
.seq_res
,
329 rpc_call_start(task
);
332 static void filelayout_write_commit_done(struct rpc_task
*task
, void *data
)
334 struct nfs_commit_data
*wdata
= data
;
336 /* Note this may cause RPC to be resent */
337 wdata
->mds_ops
->rpc_call_done(task
, data
);
340 static void filelayout_commit_count_stats(struct rpc_task
*task
, void *data
)
342 struct nfs_commit_data
*cdata
= data
;
344 rpc_count_iostats(task
, NFS_SERVER(cdata
->inode
)->client
->cl_metrics
);
347 static void filelayout_commit_release(void *calldata
)
349 struct nfs_commit_data
*data
= calldata
;
351 data
->completion_ops
->completion(data
);
352 put_lseg(data
->lseg
);
353 nfs_commitdata_release(data
);
356 static const struct rpc_call_ops filelayout_read_call_ops
= {
357 .rpc_call_prepare
= filelayout_read_prepare
,
358 .rpc_call_done
= filelayout_read_call_done
,
359 .rpc_count_stats
= filelayout_read_count_stats
,
360 .rpc_release
= filelayout_read_release
,
363 static const struct rpc_call_ops filelayout_write_call_ops
= {
364 .rpc_call_prepare
= filelayout_write_prepare
,
365 .rpc_call_done
= filelayout_write_call_done
,
366 .rpc_count_stats
= filelayout_write_count_stats
,
367 .rpc_release
= filelayout_write_release
,
370 static const struct rpc_call_ops filelayout_commit_call_ops
= {
371 .rpc_call_prepare
= filelayout_commit_prepare
,
372 .rpc_call_done
= filelayout_write_commit_done
,
373 .rpc_count_stats
= filelayout_commit_count_stats
,
374 .rpc_release
= filelayout_commit_release
,
377 static enum pnfs_try_status
378 filelayout_read_pagelist(struct nfs_read_data
*data
)
380 struct nfs_pgio_header
*hdr
= data
->header
;
381 struct pnfs_layout_segment
*lseg
= hdr
->lseg
;
382 struct nfs4_pnfs_ds
*ds
;
383 loff_t offset
= data
->args
.offset
;
388 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
389 __func__
, hdr
->inode
->i_ino
,
390 data
->args
.pgbase
, (size_t)data
->args
.count
, offset
);
392 if (test_bit(NFS_DEVICEID_INVALID
, &FILELAYOUT_DEVID_NODE(lseg
)->flags
))
393 return PNFS_NOT_ATTEMPTED
;
395 /* Retrieve the correct rpc_client for the byte range */
396 j
= nfs4_fl_calc_j_index(lseg
, offset
);
397 idx
= nfs4_fl_calc_ds_index(lseg
, j
);
398 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
400 /* Either layout fh index faulty, or ds connect failed */
401 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
402 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
403 return PNFS_NOT_ATTEMPTED
;
405 dprintk("%s USE DS: %s\n", __func__
, ds
->ds_remotestr
);
407 /* No multipath support. Use first DS */
408 data
->ds_clp
= ds
->ds_clp
;
409 fh
= nfs4_fl_select_ds_fh(lseg
, j
);
413 data
->args
.offset
= filelayout_get_dserver_offset(lseg
, offset
);
414 data
->mds_offset
= offset
;
416 /* Perform an asynchronous read to ds */
417 status
= nfs_initiate_read(ds
->ds_clp
->cl_rpcclient
, data
,
418 &filelayout_read_call_ops
);
420 return PNFS_ATTEMPTED
;
423 /* Perform async writes. */
424 static enum pnfs_try_status
425 filelayout_write_pagelist(struct nfs_write_data
*data
, int sync
)
427 struct nfs_pgio_header
*hdr
= data
->header
;
428 struct pnfs_layout_segment
*lseg
= hdr
->lseg
;
429 struct nfs4_pnfs_ds
*ds
;
430 loff_t offset
= data
->args
.offset
;
435 if (test_bit(NFS_DEVICEID_INVALID
, &FILELAYOUT_DEVID_NODE(lseg
)->flags
))
436 return PNFS_NOT_ATTEMPTED
;
438 /* Retrieve the correct rpc_client for the byte range */
439 j
= nfs4_fl_calc_j_index(lseg
, offset
);
440 idx
= nfs4_fl_calc_ds_index(lseg
, j
);
441 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
443 printk(KERN_ERR
"NFS: %s: prepare_ds failed, use MDS\n",
445 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
446 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
447 return PNFS_NOT_ATTEMPTED
;
449 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s\n", __func__
,
450 hdr
->inode
->i_ino
, sync
, (size_t) data
->args
.count
, offset
,
453 data
->write_done_cb
= filelayout_write_done_cb
;
454 data
->ds_clp
= ds
->ds_clp
;
455 fh
= nfs4_fl_select_ds_fh(lseg
, j
);
459 * Get the file offset on the dserver. Set the write offset to
460 * this offset and save the original offset.
462 data
->args
.offset
= filelayout_get_dserver_offset(lseg
, offset
);
464 /* Perform an asynchronous write */
465 status
= nfs_initiate_write(ds
->ds_clp
->cl_rpcclient
, data
,
466 &filelayout_write_call_ops
, sync
);
468 return PNFS_ATTEMPTED
;
472 * filelayout_check_layout()
474 * Make sure layout segment parameters are sane WRT the device.
475 * At this point no generic layer initialization of the lseg has occurred,
476 * and nothing has been added to the layout_hdr cache.
480 filelayout_check_layout(struct pnfs_layout_hdr
*lo
,
481 struct nfs4_filelayout_segment
*fl
,
482 struct nfs4_layoutget_res
*lgr
,
483 struct nfs4_deviceid
*id
,
486 struct nfs4_deviceid_node
*d
;
487 struct nfs4_file_layout_dsaddr
*dsaddr
;
488 int status
= -EINVAL
;
489 struct nfs_server
*nfss
= NFS_SERVER(lo
->plh_inode
);
491 dprintk("--> %s\n", __func__
);
493 /* FIXME: remove this check when layout segment support is added */
494 if (lgr
->range
.offset
!= 0 ||
495 lgr
->range
.length
!= NFS4_MAX_UINT64
) {
496 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
501 if (fl
->pattern_offset
> lgr
->range
.offset
) {
502 dprintk("%s pattern_offset %lld too large\n",
503 __func__
, fl
->pattern_offset
);
507 if (!fl
->stripe_unit
|| fl
->stripe_unit
% PAGE_SIZE
) {
508 dprintk("%s Invalid stripe unit (%u)\n",
509 __func__
, fl
->stripe_unit
);
513 /* find and reference the deviceid */
514 d
= nfs4_find_get_deviceid(NFS_SERVER(lo
->plh_inode
)->pnfs_curr_ld
,
515 NFS_SERVER(lo
->plh_inode
)->nfs_client
, id
);
517 dsaddr
= get_device_info(lo
->plh_inode
, id
, gfp_flags
);
521 dsaddr
= container_of(d
, struct nfs4_file_layout_dsaddr
, id_node
);
522 /* Found deviceid is being reaped */
523 if (test_bit(NFS_DEVICEID_INVALID
, &dsaddr
->id_node
.flags
))
528 if (fl
->first_stripe_index
>= dsaddr
->stripe_count
) {
529 dprintk("%s Bad first_stripe_index %u\n",
530 __func__
, fl
->first_stripe_index
);
534 if ((fl
->stripe_type
== STRIPE_SPARSE
&&
535 fl
->num_fh
> 1 && fl
->num_fh
!= dsaddr
->ds_num
) ||
536 (fl
->stripe_type
== STRIPE_DENSE
&&
537 fl
->num_fh
!= dsaddr
->stripe_count
)) {
538 dprintk("%s num_fh %u not valid for given packing\n",
539 __func__
, fl
->num_fh
);
543 if (fl
->stripe_unit
% nfss
->rsize
|| fl
->stripe_unit
% nfss
->wsize
) {
544 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
545 "wsize %u\n", __func__
, fl
->stripe_unit
, nfss
->rsize
,
551 dprintk("--> %s returns %d\n", __func__
, status
);
554 nfs4_fl_put_deviceid(dsaddr
);
558 static void filelayout_free_fh_array(struct nfs4_filelayout_segment
*fl
)
562 for (i
= 0; i
< fl
->num_fh
; i
++) {
563 if (!fl
->fh_array
[i
])
565 kfree(fl
->fh_array
[i
]);
572 _filelayout_free_lseg(struct nfs4_filelayout_segment
*fl
)
574 filelayout_free_fh_array(fl
);
579 filelayout_decode_layout(struct pnfs_layout_hdr
*flo
,
580 struct nfs4_filelayout_segment
*fl
,
581 struct nfs4_layoutget_res
*lgr
,
582 struct nfs4_deviceid
*id
,
585 struct xdr_stream stream
;
587 struct page
*scratch
;
592 dprintk("%s: set_layout_map Begin\n", __func__
);
594 scratch
= alloc_page(gfp_flags
);
598 xdr_init_decode_pages(&stream
, &buf
, lgr
->layoutp
->pages
, lgr
->layoutp
->len
);
599 xdr_set_scratch_buffer(&stream
, page_address(scratch
), PAGE_SIZE
);
601 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
603 p
= xdr_inline_decode(&stream
, NFS4_DEVICEID4_SIZE
+ 20);
607 memcpy(id
, p
, sizeof(*id
));
608 p
+= XDR_QUADLEN(NFS4_DEVICEID4_SIZE
);
609 nfs4_print_deviceid(id
);
611 nfl_util
= be32_to_cpup(p
++);
612 if (nfl_util
& NFL4_UFLG_COMMIT_THRU_MDS
)
613 fl
->commit_through_mds
= 1;
614 if (nfl_util
& NFL4_UFLG_DENSE
)
615 fl
->stripe_type
= STRIPE_DENSE
;
617 fl
->stripe_type
= STRIPE_SPARSE
;
618 fl
->stripe_unit
= nfl_util
& ~NFL4_UFLG_MASK
;
620 fl
->first_stripe_index
= be32_to_cpup(p
++);
621 p
= xdr_decode_hyper(p
, &fl
->pattern_offset
);
622 fl
->num_fh
= be32_to_cpup(p
++);
624 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
625 __func__
, nfl_util
, fl
->num_fh
, fl
->first_stripe_index
,
628 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
629 * Futher checking is done in filelayout_check_layout */
631 max(NFS4_PNFS_MAX_STRIPE_CNT
, NFS4_PNFS_MAX_MULTI_CNT
))
634 if (fl
->num_fh
> 0) {
635 fl
->fh_array
= kzalloc(fl
->num_fh
* sizeof(struct nfs_fh
*),
641 for (i
= 0; i
< fl
->num_fh
; i
++) {
642 /* Do we want to use a mempool here? */
643 fl
->fh_array
[i
] = kmalloc(sizeof(struct nfs_fh
), gfp_flags
);
644 if (!fl
->fh_array
[i
])
647 p
= xdr_inline_decode(&stream
, 4);
650 fl
->fh_array
[i
]->size
= be32_to_cpup(p
++);
651 if (sizeof(struct nfs_fh
) < fl
->fh_array
[i
]->size
) {
652 printk(KERN_ERR
"NFS: Too big fh %d received %d\n",
653 i
, fl
->fh_array
[i
]->size
);
657 p
= xdr_inline_decode(&stream
, fl
->fh_array
[i
]->size
);
660 memcpy(fl
->fh_array
[i
]->data
, p
, fl
->fh_array
[i
]->size
);
661 dprintk("DEBUG: %s: fh len %d\n", __func__
,
662 fl
->fh_array
[i
]->size
);
665 __free_page(scratch
);
669 filelayout_free_fh_array(fl
);
671 __free_page(scratch
);
676 filelayout_free_lseg(struct pnfs_layout_segment
*lseg
)
678 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
680 dprintk("--> %s\n", __func__
);
681 nfs4_fl_put_deviceid(fl
->dsaddr
);
682 /* This assumes a single RW lseg */
683 if (lseg
->pls_range
.iomode
== IOMODE_RW
) {
684 struct nfs4_filelayout
*flo
;
686 flo
= FILELAYOUT_FROM_HDR(lseg
->pls_layout
);
687 flo
->commit_info
.nbuckets
= 0;
688 kfree(flo
->commit_info
.buckets
);
689 flo
->commit_info
.buckets
= NULL
;
691 _filelayout_free_lseg(fl
);
695 filelayout_alloc_commit_info(struct pnfs_layout_segment
*lseg
,
696 struct nfs_commit_info
*cinfo
,
699 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
700 struct pnfs_commit_bucket
*buckets
;
703 if (fl
->commit_through_mds
)
705 if (cinfo
->ds
->nbuckets
!= 0) {
706 /* This assumes there is only one IOMODE_RW lseg. What
707 * we really want to do is have a layout_hdr level
708 * dictionary of <multipath_list4, fh> keys, each
709 * associated with a struct list_head, populated by calls
710 * to filelayout_write_pagelist().
715 size
= (fl
->stripe_type
== STRIPE_SPARSE
) ?
716 fl
->dsaddr
->ds_num
: fl
->dsaddr
->stripe_count
;
718 buckets
= kcalloc(size
, sizeof(struct pnfs_commit_bucket
),
725 spin_lock(cinfo
->lock
);
726 if (cinfo
->ds
->nbuckets
!= 0)
729 cinfo
->ds
->buckets
= buckets
;
730 cinfo
->ds
->nbuckets
= size
;
731 for (i
= 0; i
< size
; i
++) {
732 INIT_LIST_HEAD(&buckets
[i
].written
);
733 INIT_LIST_HEAD(&buckets
[i
].committing
);
736 spin_unlock(cinfo
->lock
);
741 static struct pnfs_layout_segment
*
742 filelayout_alloc_lseg(struct pnfs_layout_hdr
*layoutid
,
743 struct nfs4_layoutget_res
*lgr
,
746 struct nfs4_filelayout_segment
*fl
;
748 struct nfs4_deviceid id
;
750 dprintk("--> %s\n", __func__
);
751 fl
= kzalloc(sizeof(*fl
), gfp_flags
);
755 rc
= filelayout_decode_layout(layoutid
, fl
, lgr
, &id
, gfp_flags
);
756 if (rc
!= 0 || filelayout_check_layout(layoutid
, fl
, lgr
, &id
, gfp_flags
)) {
757 _filelayout_free_lseg(fl
);
760 return &fl
->generic_hdr
;
764 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
766 * return true : coalesce page
767 * return false : don't coalesce page
770 filelayout_pg_test(struct nfs_pageio_descriptor
*pgio
, struct nfs_page
*prev
,
771 struct nfs_page
*req
)
773 u64 p_stripe
, r_stripe
;
776 if (!pnfs_generic_pg_test(pgio
, prev
, req
) ||
777 !nfs_generic_pg_test(pgio
, prev
, req
))
780 p_stripe
= (u64
)req_offset(prev
);
781 r_stripe
= (u64
)req_offset(req
);
782 stripe_unit
= FILELAYOUT_LSEG(pgio
->pg_lseg
)->stripe_unit
;
784 do_div(p_stripe
, stripe_unit
);
785 do_div(r_stripe
, stripe_unit
);
787 return (p_stripe
== r_stripe
);
791 filelayout_pg_init_read(struct nfs_pageio_descriptor
*pgio
,
792 struct nfs_page
*req
)
794 BUG_ON(pgio
->pg_lseg
!= NULL
);
796 if (req
->wb_offset
!= req
->wb_pgbase
) {
798 * Handling unaligned pages is difficult, because have to
799 * somehow split a req in two in certain cases in the
800 * pg.test code. Avoid this by just not using pnfs
803 nfs_pageio_reset_read_mds(pgio
);
806 pgio
->pg_lseg
= pnfs_update_layout(pgio
->pg_inode
,
812 /* If no lseg, fall back to read through mds */
813 if (pgio
->pg_lseg
== NULL
)
814 nfs_pageio_reset_read_mds(pgio
);
818 filelayout_pg_init_write(struct nfs_pageio_descriptor
*pgio
,
819 struct nfs_page
*req
)
821 struct nfs_commit_info cinfo
;
824 BUG_ON(pgio
->pg_lseg
!= NULL
);
826 if (req
->wb_offset
!= req
->wb_pgbase
)
828 pgio
->pg_lseg
= pnfs_update_layout(pgio
->pg_inode
,
834 /* If no lseg, fall back to write through mds */
835 if (pgio
->pg_lseg
== NULL
)
837 nfs_init_cinfo(&cinfo
, pgio
->pg_inode
, pgio
->pg_dreq
);
838 status
= filelayout_alloc_commit_info(pgio
->pg_lseg
, &cinfo
, GFP_NOFS
);
840 put_lseg(pgio
->pg_lseg
);
841 pgio
->pg_lseg
= NULL
;
846 nfs_pageio_reset_write_mds(pgio
);
849 static const struct nfs_pageio_ops filelayout_pg_read_ops
= {
850 .pg_init
= filelayout_pg_init_read
,
851 .pg_test
= filelayout_pg_test
,
852 .pg_doio
= pnfs_generic_pg_readpages
,
855 static const struct nfs_pageio_ops filelayout_pg_write_ops
= {
856 .pg_init
= filelayout_pg_init_write
,
857 .pg_test
= filelayout_pg_test
,
858 .pg_doio
= pnfs_generic_pg_writepages
,
861 static u32
select_bucket_index(struct nfs4_filelayout_segment
*fl
, u32 j
)
863 if (fl
->stripe_type
== STRIPE_SPARSE
)
864 return nfs4_fl_calc_ds_index(&fl
->generic_hdr
, j
);
869 /* The generic layer is about to remove the req from the commit list.
870 * If this will make the bucket empty, it will need to put the lseg reference.
873 filelayout_clear_request_commit(struct nfs_page
*req
,
874 struct nfs_commit_info
*cinfo
)
876 struct pnfs_layout_segment
*freeme
= NULL
;
878 spin_lock(cinfo
->lock
);
879 if (!test_and_clear_bit(PG_COMMIT_TO_DS
, &req
->wb_flags
))
881 cinfo
->ds
->nwritten
--;
882 if (list_is_singular(&req
->wb_list
)) {
883 struct pnfs_commit_bucket
*bucket
;
885 bucket
= list_first_entry(&req
->wb_list
,
886 struct pnfs_commit_bucket
,
888 freeme
= bucket
->wlseg
;
889 bucket
->wlseg
= NULL
;
892 nfs_request_remove_commit_list(req
, cinfo
);
893 spin_unlock(cinfo
->lock
);
897 static struct list_head
*
898 filelayout_choose_commit_list(struct nfs_page
*req
,
899 struct pnfs_layout_segment
*lseg
,
900 struct nfs_commit_info
*cinfo
)
902 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
904 struct list_head
*list
;
905 struct pnfs_commit_bucket
*buckets
;
907 if (fl
->commit_through_mds
)
908 return &cinfo
->mds
->list
;
910 /* Note that we are calling nfs4_fl_calc_j_index on each page
911 * that ends up being committed to a data server. An attractive
912 * alternative is to add a field to nfs_write_data and nfs_page
913 * to store the value calculated in filelayout_write_pagelist
914 * and just use that here.
916 j
= nfs4_fl_calc_j_index(lseg
, req_offset(req
));
917 i
= select_bucket_index(fl
, j
);
918 buckets
= cinfo
->ds
->buckets
;
919 list
= &buckets
[i
].written
;
920 if (list_empty(list
)) {
921 /* Non-empty buckets hold a reference on the lseg. That ref
922 * is normally transferred to the COMMIT call and released
923 * there. It could also be released if the last req is pulled
924 * off due to a rewrite, in which case it will be done in
925 * filelayout_clear_request_commit
927 buckets
[i
].wlseg
= get_lseg(lseg
);
929 set_bit(PG_COMMIT_TO_DS
, &req
->wb_flags
);
930 cinfo
->ds
->nwritten
++;
935 filelayout_mark_request_commit(struct nfs_page
*req
,
936 struct pnfs_layout_segment
*lseg
,
937 struct nfs_commit_info
*cinfo
)
939 struct list_head
*list
;
941 list
= filelayout_choose_commit_list(req
, lseg
, cinfo
);
942 nfs_request_add_commit_list(req
, list
, cinfo
);
945 static u32
calc_ds_index_from_commit(struct pnfs_layout_segment
*lseg
, u32 i
)
947 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
949 if (flseg
->stripe_type
== STRIPE_SPARSE
)
952 return nfs4_fl_calc_ds_index(lseg
, i
);
955 static struct nfs_fh
*
956 select_ds_fh_from_commit(struct pnfs_layout_segment
*lseg
, u32 i
)
958 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
960 if (flseg
->stripe_type
== STRIPE_SPARSE
) {
961 if (flseg
->num_fh
== 1)
963 else if (flseg
->num_fh
== 0)
964 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
967 return flseg
->fh_array
[i
];
970 static int filelayout_initiate_commit(struct nfs_commit_data
*data
, int how
)
972 struct pnfs_layout_segment
*lseg
= data
->lseg
;
973 struct nfs4_pnfs_ds
*ds
;
977 idx
= calc_ds_index_from_commit(lseg
, data
->ds_commit_index
);
978 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
980 printk(KERN_ERR
"NFS: %s: prepare_ds failed, use MDS\n",
982 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
983 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
984 prepare_to_resend_writes(data
);
985 filelayout_commit_release(data
);
988 dprintk("%s ino %lu, how %d\n", __func__
, data
->inode
->i_ino
, how
);
989 data
->commit_done_cb
= filelayout_commit_done_cb
;
990 data
->ds_clp
= ds
->ds_clp
;
991 fh
= select_ds_fh_from_commit(lseg
, data
->ds_commit_index
);
994 return nfs_initiate_commit(ds
->ds_clp
->cl_rpcclient
, data
,
995 &filelayout_commit_call_ops
, how
);
999 transfer_commit_list(struct list_head
*src
, struct list_head
*dst
,
1000 struct nfs_commit_info
*cinfo
, int max
)
1002 struct nfs_page
*req
, *tmp
;
1005 list_for_each_entry_safe(req
, tmp
, src
, wb_list
) {
1006 if (!nfs_lock_request(req
))
1008 if (cond_resched_lock(cinfo
->lock
))
1009 list_safe_reset_next(req
, tmp
, wb_list
);
1010 nfs_request_remove_commit_list(req
, cinfo
);
1011 clear_bit(PG_COMMIT_TO_DS
, &req
->wb_flags
);
1012 nfs_list_add_request(req
, dst
);
1014 if ((ret
== max
) && !cinfo
->dreq
)
1021 filelayout_scan_ds_commit_list(struct pnfs_commit_bucket
*bucket
,
1022 struct nfs_commit_info
*cinfo
,
1025 struct list_head
*src
= &bucket
->written
;
1026 struct list_head
*dst
= &bucket
->committing
;
1029 ret
= transfer_commit_list(src
, dst
, cinfo
, max
);
1031 cinfo
->ds
->nwritten
-= ret
;
1032 cinfo
->ds
->ncommitting
+= ret
;
1033 bucket
->clseg
= bucket
->wlseg
;
1034 if (list_empty(src
))
1035 bucket
->wlseg
= NULL
;
1037 get_lseg(bucket
->clseg
);
1042 /* Move reqs from written to committing lists, returning count of number moved.
1043 * Note called with cinfo->lock held.
1045 static int filelayout_scan_commit_lists(struct nfs_commit_info
*cinfo
,
1050 for (i
= 0; i
< cinfo
->ds
->nbuckets
&& max
!= 0; i
++) {
1051 cnt
= filelayout_scan_ds_commit_list(&cinfo
->ds
->buckets
[i
],
1059 /* Pull everything off the committing lists and dump into @dst */
1060 static void filelayout_recover_commit_reqs(struct list_head
*dst
,
1061 struct nfs_commit_info
*cinfo
)
1063 struct pnfs_commit_bucket
*b
;
1066 /* NOTE cinfo->lock is NOT held, relying on fact that this is
1067 * only called on single thread per dreq.
1068 * Can't take the lock because need to do put_lseg
1070 for (i
= 0, b
= cinfo
->ds
->buckets
; i
< cinfo
->ds
->nbuckets
; i
++, b
++) {
1071 if (transfer_commit_list(&b
->written
, dst
, cinfo
, 0)) {
1072 BUG_ON(!list_empty(&b
->written
));
1077 cinfo
->ds
->nwritten
= 0;
1081 alloc_ds_commits(struct nfs_commit_info
*cinfo
, struct list_head
*list
)
1083 struct pnfs_ds_commit_info
*fl_cinfo
;
1084 struct pnfs_commit_bucket
*bucket
;
1085 struct nfs_commit_data
*data
;
1087 unsigned int nreq
= 0;
1089 fl_cinfo
= cinfo
->ds
;
1090 bucket
= fl_cinfo
->buckets
;
1091 for (i
= 0; i
< fl_cinfo
->nbuckets
; i
++, bucket
++) {
1092 if (list_empty(&bucket
->committing
))
1094 data
= nfs_commitdata_alloc();
1097 data
->ds_commit_index
= i
;
1098 data
->lseg
= bucket
->clseg
;
1099 bucket
->clseg
= NULL
;
1100 list_add(&data
->pages
, list
);
1104 /* Clean up on error */
1105 for (j
= i
; j
< fl_cinfo
->nbuckets
; j
++, bucket
++) {
1106 if (list_empty(&bucket
->committing
))
1108 nfs_retry_commit(&bucket
->committing
, bucket
->clseg
, cinfo
);
1109 put_lseg(bucket
->clseg
);
1110 bucket
->clseg
= NULL
;
1112 /* Caller will clean up entries put on list */
1116 /* This follows nfs_commit_list pretty closely */
1118 filelayout_commit_pagelist(struct inode
*inode
, struct list_head
*mds_pages
,
1119 int how
, struct nfs_commit_info
*cinfo
)
1121 struct nfs_commit_data
*data
, *tmp
;
1123 unsigned int nreq
= 0;
1125 if (!list_empty(mds_pages
)) {
1126 data
= nfs_commitdata_alloc();
1129 list_add(&data
->pages
, &list
);
1132 nfs_retry_commit(mds_pages
, NULL
, cinfo
);
1135 nreq
+= alloc_ds_commits(cinfo
, &list
);
1138 cinfo
->completion_ops
->error_cleanup(NFS_I(inode
));
1142 atomic_add(nreq
, &cinfo
->mds
->rpcs_out
);
1144 list_for_each_entry_safe(data
, tmp
, &list
, pages
) {
1145 list_del_init(&data
->pages
);
1147 nfs_init_commit(data
, mds_pages
, NULL
, cinfo
);
1148 nfs_initiate_commit(NFS_CLIENT(inode
), data
,
1149 data
->mds_ops
, how
);
1151 struct pnfs_commit_bucket
*buckets
;
1153 buckets
= cinfo
->ds
->buckets
;
1154 nfs_init_commit(data
, &buckets
[data
->ds_commit_index
].committing
, data
->lseg
, cinfo
);
1155 filelayout_initiate_commit(data
, how
);
1159 cinfo
->ds
->ncommitting
= 0;
1160 return PNFS_ATTEMPTED
;
1164 filelayout_free_deveiceid_node(struct nfs4_deviceid_node
*d
)
1166 nfs4_fl_free_deviceid(container_of(d
, struct nfs4_file_layout_dsaddr
, id_node
));
1169 static struct pnfs_layout_hdr
*
1170 filelayout_alloc_layout_hdr(struct inode
*inode
, gfp_t gfp_flags
)
1172 struct nfs4_filelayout
*flo
;
1174 flo
= kzalloc(sizeof(*flo
), gfp_flags
);
1175 return &flo
->generic_hdr
;
1179 filelayout_free_layout_hdr(struct pnfs_layout_hdr
*lo
)
1181 kfree(FILELAYOUT_FROM_HDR(lo
));
1184 static struct pnfs_ds_commit_info
*
1185 filelayout_get_ds_info(struct inode
*inode
)
1187 return &FILELAYOUT_FROM_HDR(NFS_I(inode
)->layout
)->commit_info
;
1190 static struct pnfs_layoutdriver_type filelayout_type
= {
1191 .id
= LAYOUT_NFSV4_1_FILES
,
1192 .name
= "LAYOUT_NFSV4_1_FILES",
1193 .owner
= THIS_MODULE
,
1194 .alloc_layout_hdr
= filelayout_alloc_layout_hdr
,
1195 .free_layout_hdr
= filelayout_free_layout_hdr
,
1196 .alloc_lseg
= filelayout_alloc_lseg
,
1197 .free_lseg
= filelayout_free_lseg
,
1198 .pg_read_ops
= &filelayout_pg_read_ops
,
1199 .pg_write_ops
= &filelayout_pg_write_ops
,
1200 .get_ds_info
= &filelayout_get_ds_info
,
1201 .mark_request_commit
= filelayout_mark_request_commit
,
1202 .clear_request_commit
= filelayout_clear_request_commit
,
1203 .scan_commit_lists
= filelayout_scan_commit_lists
,
1204 .recover_commit_reqs
= filelayout_recover_commit_reqs
,
1205 .commit_pagelist
= filelayout_commit_pagelist
,
1206 .read_pagelist
= filelayout_read_pagelist
,
1207 .write_pagelist
= filelayout_write_pagelist
,
1208 .free_deviceid_node
= filelayout_free_deveiceid_node
,
1211 static int __init
nfs4filelayout_init(void)
1213 printk(KERN_INFO
"%s: NFSv4 File Layout Driver Registering...\n",
1215 return pnfs_register_layoutdriver(&filelayout_type
);
1218 static void __exit
nfs4filelayout_exit(void)
1220 printk(KERN_INFO
"%s: NFSv4 File Layout Driver Unregistering...\n",
1222 pnfs_unregister_layoutdriver(&filelayout_type
);
1225 MODULE_ALIAS("nfs-layouttype4-1");
1227 module_init(nfs4filelayout_init
);
1228 module_exit(nfs4filelayout_exit
);