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>
35 #include "nfs4filelayout.h"
37 #define NFSDBG_FACILITY NFSDBG_PNFS_LD
39 MODULE_LICENSE("GPL");
40 MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
41 MODULE_DESCRIPTION("The NFSv4 file layout driver");
43 #define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
46 filelayout_get_dense_offset(struct nfs4_filelayout_segment
*flseg
,
49 u32 stripe_width
= flseg
->stripe_unit
* flseg
->dsaddr
->stripe_count
;
52 offset
-= flseg
->pattern_offset
;
54 do_div(tmp
, stripe_width
);
56 return tmp
* flseg
->stripe_unit
+ do_div(offset
, flseg
->stripe_unit
);
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
64 filelayout_get_dserver_offset(struct pnfs_layout_segment
*lseg
, loff_t offset
)
66 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
68 switch (flseg
->stripe_type
) {
73 return filelayout_get_dense_offset(flseg
, offset
);
79 /* For data server errors we don't recover from */
81 filelayout_set_lo_fail(struct pnfs_layout_segment
*lseg
)
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
);
87 dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__
);
88 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
92 static int filelayout_async_handle_error(struct rpc_task
*task
,
93 struct nfs4_state
*state
,
94 struct nfs_client
*clp
,
97 if (task
->tk_status
>= 0)
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
);
118 rpc_delay(task
, FILELAYOUT_POLL_RETRY_MAX
);
121 dprintk("%s DS error. Retry through MDS %d\n", __func__
,
130 /* NFS_PROTO call done callback routines */
132 static int filelayout_read_done_cb(struct rpc_task
*task
,
133 struct nfs_read_data
*data
)
135 struct nfs_client
*clp
= data
->ds_clp
;
138 dprintk("%s DS read\n", __func__
);
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
);
145 filelayout_set_lo_fail(data
->lseg
);
146 nfs4_reset_read(task
, data
);
147 clp
= NFS_SERVER(data
->inode
)->nfs_client
;
149 nfs_restart_rpc(task
, clp
);
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.
162 filelayout_set_layoutcommit(struct nfs_write_data
*wdata
)
164 if (FILELAYOUT_LSEG(wdata
->lseg
)->commit_through_mds
||
165 wdata
->res
.verf
->committed
== NFS_FILE_SYNC
)
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
);
174 * Call ops for the async read/write cases
175 * In the case of dense layouts, the offset needs to be reset to its
178 static void filelayout_read_prepare(struct rpc_task
*task
, void *data
)
180 struct nfs_read_data
*rdata
= (struct nfs_read_data
*)data
;
182 rdata
->read_done_cb
= filelayout_read_done_cb
;
184 if (nfs41_setup_sequence(rdata
->ds_clp
->cl_session
,
185 &rdata
->args
.seq_args
, &rdata
->res
.seq_res
,
189 rpc_call_start(task
);
192 static void filelayout_read_call_done(struct rpc_task
*task
, void *data
)
194 struct nfs_read_data
*rdata
= (struct nfs_read_data
*)data
;
196 dprintk("--> %s task->tk_status %d\n", __func__
, task
->tk_status
);
198 /* Note this may cause RPC to be resent */
199 rdata
->mds_ops
->rpc_call_done(task
, data
);
202 static void filelayout_read_release(void *data
)
204 struct nfs_read_data
*rdata
= (struct nfs_read_data
*)data
;
206 rdata
->mds_ops
->rpc_release(data
);
209 static int filelayout_write_done_cb(struct rpc_task
*task
,
210 struct nfs_write_data
*data
)
214 if (filelayout_async_handle_error(task
, data
->args
.context
->state
,
215 data
->ds_clp
, &reset
) == -EAGAIN
) {
216 struct nfs_client
*clp
;
218 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
219 __func__
, data
->ds_clp
, data
->ds_clp
->cl_session
);
221 filelayout_set_lo_fail(data
->lseg
);
222 nfs4_reset_write(task
, data
);
223 clp
= NFS_SERVER(data
->inode
)->nfs_client
;
226 nfs_restart_rpc(task
, clp
);
230 filelayout_set_layoutcommit(data
);
234 /* Fake up some data that will cause nfs_commit_release to retry the writes. */
235 static void prepare_to_resend_writes(struct nfs_write_data
*data
)
237 struct nfs_page
*first
= nfs_list_entry(data
->pages
.next
);
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 */
245 static int filelayout_commit_done_cb(struct rpc_task
*task
,
246 struct nfs_write_data
*data
)
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
);
255 prepare_to_resend_writes(data
);
256 filelayout_set_lo_fail(data
->lseg
);
258 nfs_restart_rpc(task
, data
->ds_clp
);
265 static void filelayout_write_prepare(struct rpc_task
*task
, void *data
)
267 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
269 if (nfs41_setup_sequence(wdata
->ds_clp
->cl_session
,
270 &wdata
->args
.seq_args
, &wdata
->res
.seq_res
,
274 rpc_call_start(task
);
277 static void filelayout_write_call_done(struct rpc_task
*task
, void *data
)
279 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
281 /* Note this may cause RPC to be resent */
282 wdata
->mds_ops
->rpc_call_done(task
, data
);
285 static void filelayout_write_release(void *data
)
287 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
289 wdata
->mds_ops
->rpc_release(data
);
292 static void filelayout_commit_release(void *data
)
294 struct nfs_write_data
*wdata
= (struct nfs_write_data
*)data
;
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
);
302 struct 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
,
308 struct 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
,
314 struct 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
,
320 static enum pnfs_try_status
321 filelayout_read_pagelist(struct nfs_read_data
*data
)
323 struct pnfs_layout_segment
*lseg
= data
->lseg
;
324 struct nfs4_pnfs_ds
*ds
;
325 loff_t offset
= data
->args
.offset
;
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
);
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
);
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
);
342 return PNFS_NOT_ATTEMPTED
;
344 dprintk("%s USE DS:ip %x %hu\n", __func__
,
345 ntohl(ds
->ds_ip_addr
), ntohs(ds
->ds_port
));
347 /* No multipath support. Use first DS */
348 data
->ds_clp
= ds
->ds_clp
;
349 fh
= nfs4_fl_select_ds_fh(lseg
, j
);
353 data
->args
.offset
= filelayout_get_dserver_offset(lseg
, offset
);
354 data
->mds_offset
= offset
;
356 /* Perform an asynchronous read to ds */
357 status
= nfs_initiate_read(data
, ds
->ds_clp
->cl_rpcclient
,
358 &filelayout_read_call_ops
);
360 return PNFS_ATTEMPTED
;
363 /* Perform async writes. */
364 static enum pnfs_try_status
365 filelayout_write_pagelist(struct nfs_write_data
*data
, int sync
)
367 struct pnfs_layout_segment
*lseg
= data
->lseg
;
368 struct nfs4_pnfs_ds
*ds
;
369 loff_t offset
= data
->args
.offset
;
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
);
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
;
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
));
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
);
394 * Get the file offset on the dserver. Set the write offset to
395 * this offset and save the original offset.
397 data
->args
.offset
= filelayout_get_dserver_offset(lseg
, offset
);
398 data
->mds_offset
= offset
;
400 /* Perform an asynchronous write */
401 status
= nfs_initiate_write(data
, ds
->ds_clp
->cl_rpcclient
,
402 &filelayout_write_call_ops
, sync
);
404 return PNFS_ATTEMPTED
;
408 * filelayout_check_layout()
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.
416 filelayout_check_layout(struct pnfs_layout_hdr
*lo
,
417 struct nfs4_filelayout_segment
*fl
,
418 struct nfs4_layoutget_res
*lgr
,
419 struct nfs4_deviceid
*id
)
421 struct nfs4_file_layout_dsaddr
*dsaddr
;
422 int status
= -EINVAL
;
423 struct nfs_server
*nfss
= NFS_SERVER(lo
->plh_inode
);
425 dprintk("--> %s\n", __func__
);
427 if (fl
->pattern_offset
> lgr
->range
.offset
) {
428 dprintk("%s pattern_offset %lld to large\n",
429 __func__
, fl
->pattern_offset
);
433 if (!fl
->stripe_unit
|| fl
->stripe_unit
% PAGE_SIZE
) {
434 dprintk("%s Invalid stripe unit (%u)\n",
435 __func__
, fl
->stripe_unit
);
439 /* find and reference the deviceid */
440 dsaddr
= nfs4_fl_find_get_deviceid(id
);
441 if (dsaddr
== NULL
) {
442 dsaddr
= get_device_info(lo
->plh_inode
, id
);
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
);
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
);
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
,
472 dprintk("--> %s returns %d\n", __func__
, status
);
475 nfs4_fl_put_deviceid(dsaddr
);
479 static void filelayout_free_fh_array(struct nfs4_filelayout_segment
*fl
)
483 for (i
= 0; i
< fl
->num_fh
; i
++) {
484 if (!fl
->fh_array
[i
])
486 kfree(fl
->fh_array
[i
]);
493 _filelayout_free_lseg(struct nfs4_filelayout_segment
*fl
)
495 filelayout_free_fh_array(fl
);
500 filelayout_decode_layout(struct pnfs_layout_hdr
*flo
,
501 struct nfs4_filelayout_segment
*fl
,
502 struct nfs4_layoutget_res
*lgr
,
503 struct nfs4_deviceid
*id
)
505 struct xdr_stream stream
;
506 struct xdr_buf buf
= {
507 .pages
= lgr
->layoutp
->pages
,
508 .page_len
= lgr
->layoutp
->len
,
509 .buflen
= lgr
->layoutp
->len
,
510 .len
= lgr
->layoutp
->len
,
512 struct page
*scratch
;
517 dprintk("%s: set_layout_map Begin\n", __func__
);
519 scratch
= alloc_page(GFP_KERNEL
);
523 xdr_init_decode(&stream
, &buf
, NULL
);
524 xdr_set_scratch_buffer(&stream
, page_address(scratch
), PAGE_SIZE
);
526 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
528 p
= xdr_inline_decode(&stream
, NFS4_DEVICEID4_SIZE
+ 20);
532 memcpy(id
, p
, sizeof(*id
));
533 p
+= XDR_QUADLEN(NFS4_DEVICEID4_SIZE
);
536 nfl_util
= be32_to_cpup(p
++);
537 if (nfl_util
& NFL4_UFLG_COMMIT_THRU_MDS
)
538 fl
->commit_through_mds
= 1;
539 if (nfl_util
& NFL4_UFLG_DENSE
)
540 fl
->stripe_type
= STRIPE_DENSE
;
542 fl
->stripe_type
= STRIPE_SPARSE
;
543 fl
->stripe_unit
= nfl_util
& ~NFL4_UFLG_MASK
;
545 fl
->first_stripe_index
= be32_to_cpup(p
++);
546 p
= xdr_decode_hyper(p
, &fl
->pattern_offset
);
547 fl
->num_fh
= be32_to_cpup(p
++);
549 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
550 __func__
, nfl_util
, fl
->num_fh
, fl
->first_stripe_index
,
556 fl
->fh_array
= kzalloc(fl
->num_fh
* sizeof(struct nfs_fh
*),
561 for (i
= 0; i
< fl
->num_fh
; i
++) {
562 /* Do we want to use a mempool here? */
563 fl
->fh_array
[i
] = kmalloc(sizeof(struct nfs_fh
), GFP_KERNEL
);
564 if (!fl
->fh_array
[i
])
567 p
= xdr_inline_decode(&stream
, 4);
570 fl
->fh_array
[i
]->size
= be32_to_cpup(p
++);
571 if (sizeof(struct nfs_fh
) < fl
->fh_array
[i
]->size
) {
572 printk(KERN_ERR
"Too big fh %d received %d\n",
573 i
, fl
->fh_array
[i
]->size
);
577 p
= xdr_inline_decode(&stream
, fl
->fh_array
[i
]->size
);
580 memcpy(fl
->fh_array
[i
]->data
, p
, fl
->fh_array
[i
]->size
);
581 dprintk("DEBUG: %s: fh len %d\n", __func__
,
582 fl
->fh_array
[i
]->size
);
585 __free_page(scratch
);
589 filelayout_free_fh_array(fl
);
591 __free_page(scratch
);
596 filelayout_free_lseg(struct pnfs_layout_segment
*lseg
)
598 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
600 dprintk("--> %s\n", __func__
);
601 nfs4_fl_put_deviceid(fl
->dsaddr
);
602 kfree(fl
->commit_buckets
);
603 _filelayout_free_lseg(fl
);
606 static struct pnfs_layout_segment
*
607 filelayout_alloc_lseg(struct pnfs_layout_hdr
*layoutid
,
608 struct nfs4_layoutget_res
*lgr
)
610 struct nfs4_filelayout_segment
*fl
;
612 struct nfs4_deviceid id
;
614 dprintk("--> %s\n", __func__
);
615 fl
= kzalloc(sizeof(*fl
), GFP_KERNEL
);
619 rc
= filelayout_decode_layout(layoutid
, fl
, lgr
, &id
);
620 if (rc
!= 0 || filelayout_check_layout(layoutid
, fl
, lgr
, &id
)) {
621 _filelayout_free_lseg(fl
);
625 /* This assumes there is only one IOMODE_RW lseg. What
626 * we really want to do is have a layout_hdr level
627 * dictionary of <multipath_list4, fh> keys, each
628 * associated with a struct list_head, populated by calls
629 * to filelayout_write_pagelist().
631 if ((!fl
->commit_through_mds
) && (lgr
->range
.iomode
== IOMODE_RW
)) {
633 int size
= (fl
->stripe_type
== STRIPE_SPARSE
) ?
634 fl
->dsaddr
->ds_num
: fl
->dsaddr
->stripe_count
;
636 fl
->commit_buckets
= kcalloc(size
, sizeof(struct list_head
), GFP_KERNEL
);
637 if (!fl
->commit_buckets
) {
638 filelayout_free_lseg(&fl
->generic_hdr
);
641 fl
->number_of_buckets
= size
;
642 for (i
= 0; i
< size
; i
++)
643 INIT_LIST_HEAD(&fl
->commit_buckets
[i
]);
645 return &fl
->generic_hdr
;
649 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
651 * return 1 : coalesce page
652 * return 0 : don't coalesce page
655 filelayout_pg_test(struct nfs_pageio_descriptor
*pgio
, struct nfs_page
*prev
,
656 struct nfs_page
*req
)
658 u64 p_stripe
, r_stripe
;
663 p_stripe
= (u64
)prev
->wb_index
<< PAGE_CACHE_SHIFT
;
664 r_stripe
= (u64
)req
->wb_index
<< PAGE_CACHE_SHIFT
;
665 stripe_unit
= FILELAYOUT_LSEG(pgio
->pg_lseg
)->stripe_unit
;
667 do_div(p_stripe
, stripe_unit
);
668 do_div(r_stripe
, stripe_unit
);
670 return (p_stripe
== r_stripe
);
673 static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment
*lseg
)
675 return !FILELAYOUT_LSEG(lseg
)->commit_through_mds
;
678 static u32
select_bucket_index(struct nfs4_filelayout_segment
*fl
, u32 j
)
680 if (fl
->stripe_type
== STRIPE_SPARSE
)
681 return nfs4_fl_calc_ds_index(&fl
->generic_hdr
, j
);
686 struct list_head
*filelayout_choose_commit_list(struct nfs_page
*req
)
688 struct pnfs_layout_segment
*lseg
= req
->wb_commit_lseg
;
689 struct nfs4_filelayout_segment
*fl
= FILELAYOUT_LSEG(lseg
);
691 struct list_head
*list
;
693 /* Note that we are calling nfs4_fl_calc_j_index on each page
694 * that ends up being committed to a data server. An attractive
695 * alternative is to add a field to nfs_write_data and nfs_page
696 * to store the value calculated in filelayout_write_pagelist
697 * and just use that here.
699 j
= nfs4_fl_calc_j_index(lseg
,
700 (loff_t
)req
->wb_index
<< PAGE_CACHE_SHIFT
);
701 i
= select_bucket_index(fl
, j
);
702 list
= &fl
->commit_buckets
[i
];
703 if (list_empty(list
)) {
704 /* Non-empty buckets hold a reference on the lseg */
710 static u32
calc_ds_index_from_commit(struct pnfs_layout_segment
*lseg
, u32 i
)
712 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
714 if (flseg
->stripe_type
== STRIPE_SPARSE
)
717 return nfs4_fl_calc_ds_index(lseg
, i
);
720 static struct nfs_fh
*
721 select_ds_fh_from_commit(struct pnfs_layout_segment
*lseg
, u32 i
)
723 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
725 if (flseg
->stripe_type
== STRIPE_SPARSE
) {
726 if (flseg
->num_fh
== 1)
728 else if (flseg
->num_fh
== 0)
729 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
732 return flseg
->fh_array
[i
];
735 static int filelayout_initiate_commit(struct nfs_write_data
*data
, int how
)
737 struct pnfs_layout_segment
*lseg
= data
->lseg
;
738 struct nfs4_pnfs_ds
*ds
;
742 idx
= calc_ds_index_from_commit(lseg
, data
->ds_commit_index
);
743 ds
= nfs4_fl_prepare_ds(lseg
, idx
);
745 printk(KERN_ERR
"%s: prepare_ds failed, use MDS\n", __func__
);
746 set_bit(lo_fail_bit(IOMODE_RW
), &lseg
->pls_layout
->plh_flags
);
747 set_bit(lo_fail_bit(IOMODE_READ
), &lseg
->pls_layout
->plh_flags
);
748 prepare_to_resend_writes(data
);
749 data
->mds_ops
->rpc_release(data
);
752 dprintk("%s ino %lu, how %d\n", __func__
, data
->inode
->i_ino
, how
);
753 data
->write_done_cb
= filelayout_commit_done_cb
;
754 data
->ds_clp
= ds
->ds_clp
;
755 fh
= select_ds_fh_from_commit(lseg
, data
->ds_commit_index
);
758 return nfs_initiate_commit(data
, ds
->ds_clp
->cl_rpcclient
,
759 &filelayout_commit_call_ops
, how
);
763 * This is only useful while we are using whole file layouts.
765 static struct pnfs_layout_segment
*find_only_write_lseg(struct inode
*inode
)
767 struct pnfs_layout_segment
*lseg
, *rv
= NULL
;
769 spin_lock(&inode
->i_lock
);
770 list_for_each_entry(lseg
, &NFS_I(inode
)->layout
->plh_segs
, pls_list
)
771 if (lseg
->pls_range
.iomode
== IOMODE_RW
)
773 spin_unlock(&inode
->i_lock
);
777 static int alloc_ds_commits(struct inode
*inode
, struct list_head
*list
)
779 struct pnfs_layout_segment
*lseg
;
780 struct nfs4_filelayout_segment
*fl
;
781 struct nfs_write_data
*data
;
784 /* Won't need this when non-whole file layout segments are supported
785 * instead we will use a pnfs_layout_hdr structure */
786 lseg
= find_only_write_lseg(inode
);
789 fl
= FILELAYOUT_LSEG(lseg
);
790 for (i
= 0; i
< fl
->number_of_buckets
; i
++) {
791 if (list_empty(&fl
->commit_buckets
[i
]))
793 data
= nfs_commitdata_alloc();
796 data
->ds_commit_index
= i
;
798 list_add(&data
->pages
, list
);
804 for (j
= i
; j
< fl
->number_of_buckets
; j
++) {
805 if (list_empty(&fl
->commit_buckets
[i
]))
807 nfs_retry_commit(&fl
->commit_buckets
[i
], lseg
);
808 put_lseg(lseg
); /* associated with emptying bucket */
811 /* Caller will clean up entries put on list */
815 /* This follows nfs_commit_list pretty closely */
817 filelayout_commit_pagelist(struct inode
*inode
, struct list_head
*mds_pages
,
820 struct nfs_write_data
*data
, *tmp
;
823 if (!list_empty(mds_pages
)) {
824 data
= nfs_commitdata_alloc();
828 list_add(&data
->pages
, &list
);
831 if (alloc_ds_commits(inode
, &list
))
834 list_for_each_entry_safe(data
, tmp
, &list
, pages
) {
835 list_del_init(&data
->pages
);
836 atomic_inc(&NFS_I(inode
)->commits_outstanding
);
838 nfs_init_commit(data
, mds_pages
, NULL
);
839 nfs_initiate_commit(data
, NFS_CLIENT(inode
),
842 nfs_init_commit(data
, &FILELAYOUT_LSEG(data
->lseg
)->commit_buckets
[data
->ds_commit_index
], data
->lseg
);
843 filelayout_initiate_commit(data
, how
);
848 list_for_each_entry_safe(data
, tmp
, &list
, pages
) {
849 nfs_retry_commit(&data
->pages
, data
->lseg
);
850 list_del_init(&data
->pages
);
851 nfs_commit_free(data
);
853 nfs_retry_commit(mds_pages
, NULL
);
854 nfs_commit_clear_lock(NFS_I(inode
));
858 static struct pnfs_layoutdriver_type filelayout_type
= {
859 .id
= LAYOUT_NFSV4_1_FILES
,
860 .name
= "LAYOUT_NFSV4_1_FILES",
861 .owner
= THIS_MODULE
,
862 .alloc_lseg
= filelayout_alloc_lseg
,
863 .free_lseg
= filelayout_free_lseg
,
864 .pg_test
= filelayout_pg_test
,
865 .mark_pnfs_commit
= filelayout_mark_pnfs_commit
,
866 .choose_commit_list
= filelayout_choose_commit_list
,
867 .commit_pagelist
= filelayout_commit_pagelist
,
868 .read_pagelist
= filelayout_read_pagelist
,
869 .write_pagelist
= filelayout_write_pagelist
,
872 static int __init
nfs4filelayout_init(void)
874 printk(KERN_INFO
"%s: NFSv4 File Layout Driver Registering...\n",
876 return pnfs_register_layoutdriver(&filelayout_type
);
879 static void __exit
nfs4filelayout_exit(void)
881 printk(KERN_INFO
"%s: NFSv4 File Layout Driver Unregistering...\n",
883 pnfs_unregister_layoutdriver(&filelayout_type
);
886 module_init(nfs4filelayout_init
);
887 module_exit(nfs4filelayout_exit
);