blob: 2e45fd9c02a38cc9d7b3ee0ee87150fa3a8e7ea8 [file] [log] [blame]
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001/*
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>
Benny Halevy19345cb2011-06-19 18:33:46 -040033#include <linux/nfs_page.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040034#include <linux/module.h>
Andy Adamson16b374c2010-10-20 00:18:04 -040035
Weston Andros Adamson0a702192012-02-17 13:15:24 -050036#include <linux/sunrpc/metrics.h>
37
Andy Adamson16b374c2010-10-20 00:18:04 -040038#include "internal.h"
Andy Adamson9cb81962012-03-07 10:49:41 -050039#include "delegation.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040040#include "nfs4filelayout.h"
Dean Hildebrand7ab672c2010-10-20 00:18:00 -040041
42#define NFSDBG_FACILITY NFSDBG_PNFS_LD
43
44MODULE_LICENSE("GPL");
45MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
46MODULE_DESCRIPTION("The NFSv4 file layout driver");
47
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000048#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
49
Fred Isamancfe7f412011-03-01 01:34:18 +000050static loff_t
51filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
52 loff_t offset)
53{
54 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
Chris Metcalf3476f112011-08-11 13:54:28 -070055 u64 stripe_no;
56 u32 rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000057
58 offset -= flseg->pattern_offset;
Chris Metcalf3476f112011-08-11 13:54:28 -070059 stripe_no = div_u64(offset, stripe_width);
60 div_u64_rem(offset, flseg->stripe_unit, &rem);
Fred Isamancfe7f412011-03-01 01:34:18 +000061
Chris Metcalf3476f112011-08-11 13:54:28 -070062 return stripe_no * flseg->stripe_unit + rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000063}
64
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
68 */
69static loff_t
70filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
71{
72 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
73
74 switch (flseg->stripe_type) {
75 case STRIPE_SPARSE:
76 return offset;
77
78 case STRIPE_DENSE:
79 return filelayout_get_dense_offset(flseg, offset);
80 }
81
82 BUG();
83}
84
Andy Adamsone7dd79af2012-04-27 17:53:46 -040085static void filelayout_reset_write(struct nfs_write_data *data)
86{
87 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -040088 struct rpc_task *task = &data->task;
89
90 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
91 dprintk("%s Reset task %5u for i/o through MDS "
92 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
93 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -040094 hdr->inode->i_sb->s_id,
95 (long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -040096 data->args.count,
97 (unsigned long long)data->args.offset);
98
99 task->tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
100 &hdr->pages,
101 hdr->completion_ops);
102 }
103}
104
105static void filelayout_reset_read(struct nfs_read_data *data)
106{
107 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400108 struct rpc_task *task = &data->task;
109
110 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
111 dprintk("%s Reset task %5u for i/o through MDS "
112 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
113 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -0400114 hdr->inode->i_sb->s_id,
115 (long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400116 data->args.count,
117 (unsigned long long)data->args.offset);
118
119 task->tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
120 &hdr->pages,
121 hdr->completion_ops);
122 }
123}
124
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400125static void filelayout_fenceme(struct inode *inode, struct pnfs_layout_hdr *lo)
126{
127 if (!test_and_clear_bit(NFS_LAYOUT_RETURN, &lo->plh_flags))
128 return;
129 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags);
130 pnfs_return_layout(inode);
131}
132
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000133static int filelayout_async_handle_error(struct rpc_task *task,
134 struct nfs4_state *state,
135 struct nfs_client *clp,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400136 struct pnfs_layout_segment *lseg)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000137{
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400138 struct pnfs_layout_hdr *lo = lseg->pls_layout;
139 struct inode *inode = lo->plh_inode;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400140 struct nfs_server *mds_server = NFS_SERVER(inode);
141 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Andy Adamson9cb81962012-03-07 10:49:41 -0500142 struct nfs_client *mds_client = mds_server->nfs_client;
Andy Adamson671fb892012-04-27 17:53:49 -0400143 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
Andy Adamson9cb81962012-03-07 10:49:41 -0500144
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000145 if (task->tk_status >= 0)
146 return 0;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000147
148 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -0500149 /* MDS state errors */
150 case -NFS4ERR_DELEG_REVOKED:
151 case -NFS4ERR_ADMIN_REVOKED:
152 case -NFS4ERR_BAD_STATEID:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400153 if (state == NULL)
154 break;
Andy Adamson2dc31752012-03-08 11:03:53 -0500155 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500156 case -NFS4ERR_OPENMODE:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400157 if (state == NULL)
158 break;
Andy Adamson9cb81962012-03-07 10:49:41 -0500159 nfs4_schedule_stateid_recovery(mds_server, state);
160 goto wait_on_recovery;
161 case -NFS4ERR_EXPIRED:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400162 if (state != NULL)
163 nfs4_schedule_stateid_recovery(mds_server, state);
Andy Adamson9cb81962012-03-07 10:49:41 -0500164 nfs4_schedule_lease_recovery(mds_client);
165 goto wait_on_recovery;
166 /* DS session errors */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000167 case -NFS4ERR_BADSESSION:
168 case -NFS4ERR_BADSLOT:
169 case -NFS4ERR_BAD_HIGH_SLOT:
170 case -NFS4ERR_DEADSESSION:
171 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
172 case -NFS4ERR_SEQ_FALSE_RETRY:
173 case -NFS4ERR_SEQ_MISORDERED:
174 dprintk("%s ERROR %d, Reset session. Exchangeid "
175 "flags 0x%x\n", __func__, task->tk_status,
176 clp->cl_exchange_flags);
Trond Myklebust9f594792012-05-27 13:02:53 -0400177 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000178 break;
179 case -NFS4ERR_DELAY:
180 case -NFS4ERR_GRACE:
181 case -EKEYEXPIRED:
182 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
183 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400184 case -NFS4ERR_RETRY_UNCACHED_REP:
185 break;
Andy Adamson041245c2012-04-27 17:53:53 -0400186 /* Invalidate Layout errors */
187 case -NFS4ERR_PNFS_NO_LAYOUT:
188 case -ESTALE: /* mapped NFS4ERR_STALE */
189 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
190 case -EISDIR: /* mapped NFS4ERR_ISDIR */
191 case -NFS4ERR_FHEXPIRED:
192 case -NFS4ERR_WRONG_TYPE:
193 dprintk("%s Invalid layout error %d\n", __func__,
194 task->tk_status);
195 /*
196 * Destroy layout so new i/o will get a new layout.
197 * Layout will not be destroyed until all current lseg
198 * references are put. Mark layout as invalid to resend failed
199 * i/o and all i/o waiting on the slot table to the MDS until
200 * layout is destroyed and a new valid layout is obtained.
201 */
Andy Adamsond42e7872012-05-22 08:09:28 -0400202 pnfs_destroy_layout(NFS_I(inode));
Andy Adamson041245c2012-04-27 17:53:53 -0400203 rpc_wake_up(&tbl->slot_tbl_waitq);
204 goto reset;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400205 /* RPC connection errors */
206 case -ECONNREFUSED:
207 case -EHOSTDOWN:
208 case -EHOSTUNREACH:
209 case -ENETUNREACH:
210 case -EIO:
211 case -ETIMEDOUT:
212 case -EPIPE:
213 dprintk("%s DS connection error %d\n", __func__,
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000214 task->tk_status);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400215 nfs4_mark_deviceid_unavailable(devid);
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400216 set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags);
Andy Adamson671fb892012-04-27 17:53:49 -0400217 rpc_wake_up(&tbl->slot_tbl_waitq);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400218 /* fall through */
219 default:
Andy Adamson041245c2012-04-27 17:53:53 -0400220reset:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400221 dprintk("%s Retry through MDS. Error %d\n", __func__,
222 task->tk_status);
223 return -NFS4ERR_RESET_TO_MDS;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000224 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500225out:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000226 task->tk_status = 0;
227 return -EAGAIN;
Andy Adamson9cb81962012-03-07 10:49:41 -0500228wait_on_recovery:
229 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
230 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
231 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
232 goto out;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000233}
234
235/* NFS_PROTO call done callback routines */
236
237static int filelayout_read_done_cb(struct rpc_task *task,
238 struct nfs_read_data *data)
239{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400240 struct nfs_pgio_header *hdr = data->header;
241 int err;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000242
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400243 err = filelayout_async_handle_error(task, data->args.context->state,
244 data->ds_clp, hdr->lseg);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000245
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400246 switch (err) {
247 case -NFS4ERR_RESET_TO_MDS:
248 filelayout_reset_read(data);
249 return task->tk_status;
250 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700251 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000252 return -EAGAIN;
253 }
254
255 return 0;
256}
257
Andy Adamson16b374c2010-10-20 00:18:04 -0400258/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000259 * We reference the rpc_cred of the first WRITE that triggers the need for
260 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
261 * rfc5661 is not clear about which credential should be used.
262 */
263static void
264filelayout_set_layoutcommit(struct nfs_write_data *wdata)
265{
Fred Isamancd841602012-04-20 14:47:44 -0400266 struct nfs_pgio_header *hdr = wdata->header;
267
268 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Andy Adamson863a3c62011-03-23 13:27:54 +0000269 wdata->res.verf->committed == NFS_FILE_SYNC)
270 return;
271
272 pnfs_set_layoutcommit(wdata);
Fred Isamancd841602012-04-20 14:47:44 -0400273 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
274 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000275}
276
Trond Myklebust1dfed272012-09-18 19:51:12 -0400277bool
278filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
279{
280 return filelayout_test_devid_invalid(node) ||
281 nfs4_test_deviceid_unavailable(node);
282}
283
284static bool
285filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
286{
287 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
288
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400289 return filelayout_test_devid_unavailable(node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400290}
291
Andy Adamson863a3c62011-03-23 13:27:54 +0000292/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000293 * Call ops for the async read/write cases
294 * In the case of dense layouts, the offset needs to be reset to its
295 * original value.
296 */
297static void filelayout_read_prepare(struct rpc_task *task, void *data)
298{
Fred Isamancd12ae32012-04-20 14:47:42 -0400299 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000300
Andy Adamson041245c2012-04-27 17:53:53 -0400301 if (filelayout_reset_to_mds(rdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400302 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
303 filelayout_reset_read(rdata);
304 rpc_exit(task, 0);
305 return;
306 }
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000307 rdata->read_done_cb = filelayout_read_done_cb;
308
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000309 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
310 &rdata->args.seq_args, &rdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500311 task))
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000312 return;
313
314 rpc_call_start(task);
315}
316
317static void filelayout_read_call_done(struct rpc_task *task, void *data)
318{
Fred Isamancd12ae32012-04-20 14:47:42 -0400319 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000320
321 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
322
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400323 if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) &&
324 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400325 return;
326
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000327 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400328 rdata->header->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000329}
330
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500331static void filelayout_read_count_stats(struct rpc_task *task, void *data)
332{
Fred Isamancd12ae32012-04-20 14:47:42 -0400333 struct nfs_read_data *rdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500334
Fred Isamancd841602012-04-20 14:47:44 -0400335 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500336}
337
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000338static void filelayout_read_release(void *data)
339{
Fred Isamancd12ae32012-04-20 14:47:42 -0400340 struct nfs_read_data *rdata = data;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400341 struct pnfs_layout_hdr *lo = rdata->header->lseg->pls_layout;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000342
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400343 filelayout_fenceme(lo->plh_inode, lo);
Andy Adamson996074c2012-05-22 08:09:26 -0400344 nfs_put_client(rdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400345 rdata->header->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000346}
347
Fred Isamana69aef12011-03-03 15:13:47 +0000348static int filelayout_write_done_cb(struct rpc_task *task,
349 struct nfs_write_data *data)
350{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400351 struct nfs_pgio_header *hdr = data->header;
352 int err;
Fred Isamana69aef12011-03-03 15:13:47 +0000353
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400354 err = filelayout_async_handle_error(task, data->args.context->state,
355 data->ds_clp, hdr->lseg);
356
357 switch (err) {
358 case -NFS4ERR_RESET_TO_MDS:
359 filelayout_reset_write(data);
360 return task->tk_status;
361 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700362 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000363 return -EAGAIN;
364 }
365
Andy Adamson863a3c62011-03-23 13:27:54 +0000366 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000367 return 0;
368}
369
Fred Isamane0c2b382011-03-23 13:27:53 +0000370/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400371static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000372{
373 struct nfs_page *first = nfs_list_entry(data->pages.next);
374
375 data->task.tk_status = 0;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -0400376 memcpy(&data->verf.verifier, &first->wb_verf,
377 sizeof(data->verf.verifier));
378 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
Fred Isamane0c2b382011-03-23 13:27:53 +0000379}
380
381static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400382 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000383{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400384 int err;
Fred Isamane0c2b382011-03-23 13:27:53 +0000385
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400386 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
387 data->lseg);
388
389 switch (err) {
390 case -NFS4ERR_RESET_TO_MDS:
391 prepare_to_resend_writes(data);
392 return -EAGAIN;
393 case -EAGAIN:
394 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000395 return -EAGAIN;
396 }
397
398 return 0;
399}
400
Fred Isamana69aef12011-03-03 15:13:47 +0000401static void filelayout_write_prepare(struct rpc_task *task, void *data)
402{
Fred Isamancd12ae32012-04-20 14:47:42 -0400403 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000404
Andy Adamson041245c2012-04-27 17:53:53 -0400405 if (filelayout_reset_to_mds(wdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400406 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
407 filelayout_reset_write(wdata);
408 rpc_exit(task, 0);
409 return;
410 }
Fred Isamana69aef12011-03-03 15:13:47 +0000411 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
412 &wdata->args.seq_args, &wdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500413 task))
Fred Isamana69aef12011-03-03 15:13:47 +0000414 return;
415
416 rpc_call_start(task);
417}
418
419static void filelayout_write_call_done(struct rpc_task *task, void *data)
420{
Fred Isamancd12ae32012-04-20 14:47:42 -0400421 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000422
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400423 if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) &&
424 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400425 return;
426
Fred Isamana69aef12011-03-03 15:13:47 +0000427 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400428 wdata->header->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000429}
430
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500431static void filelayout_write_count_stats(struct rpc_task *task, void *data)
432{
Fred Isamancd12ae32012-04-20 14:47:42 -0400433 struct nfs_write_data *wdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500434
Fred Isamancd841602012-04-20 14:47:44 -0400435 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500436}
437
Fred Isamana69aef12011-03-03 15:13:47 +0000438static void filelayout_write_release(void *data)
439{
Fred Isamancd12ae32012-04-20 14:47:42 -0400440 struct nfs_write_data *wdata = data;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400441 struct pnfs_layout_hdr *lo = wdata->header->lseg->pls_layout;
Fred Isamana69aef12011-03-03 15:13:47 +0000442
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400443 filelayout_fenceme(lo->plh_inode, lo);
Andy Adamson996074c2012-05-22 08:09:26 -0400444 nfs_put_client(wdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400445 wdata->header->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000446}
447
Fred Isaman0b7c0152012-04-20 14:47:39 -0400448static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000449{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400450 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000451
Fred Isaman0b7c0152012-04-20 14:47:39 -0400452 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
453 &wdata->args.seq_args, &wdata->res.seq_res,
454 task))
455 return;
456
457 rpc_call_start(task);
458}
459
460static void filelayout_write_commit_done(struct rpc_task *task, void *data)
461{
462 struct nfs_commit_data *wdata = data;
463
464 /* Note this may cause RPC to be resent */
465 wdata->mds_ops->rpc_call_done(task, data);
466}
467
468static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
469{
470 struct nfs_commit_data *cdata = data;
471
472 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
473}
474
475static void filelayout_commit_release(void *calldata)
476{
477 struct nfs_commit_data *data = calldata;
478
Fred Isamanf453a542012-04-20 14:47:54 -0400479 data->completion_ops->completion(data);
Trond Myklebust9369a432012-09-18 20:57:08 -0400480 pnfs_put_lseg(data->lseg);
Andy Adamson3a7936c2012-04-27 17:53:51 -0400481 nfs_put_client(data->ds_clp);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400482 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000483}
484
Trond Myklebust17280172012-03-11 13:11:00 -0400485static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000486 .rpc_call_prepare = filelayout_read_prepare,
487 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500488 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000489 .rpc_release = filelayout_read_release,
490};
491
Trond Myklebust17280172012-03-11 13:11:00 -0400492static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000493 .rpc_call_prepare = filelayout_write_prepare,
494 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500495 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000496 .rpc_release = filelayout_write_release,
497};
498
Trond Myklebust17280172012-03-11 13:11:00 -0400499static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400500 .rpc_call_prepare = filelayout_commit_prepare,
501 .rpc_call_done = filelayout_write_commit_done,
502 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000503 .rpc_release = filelayout_commit_release,
504};
505
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000506static enum pnfs_try_status
507filelayout_read_pagelist(struct nfs_read_data *data)
508{
Fred Isamancd841602012-04-20 14:47:44 -0400509 struct nfs_pgio_header *hdr = data->header;
510 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000511 struct nfs4_pnfs_ds *ds;
512 loff_t offset = data->args.offset;
513 u32 j, idx;
514 struct nfs_fh *fh;
515 int status;
516
517 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400518 __func__, hdr->inode->i_ino,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000519 data->args.pgbase, (size_t)data->args.count, offset);
520
521 /* Retrieve the correct rpc_client for the byte range */
522 j = nfs4_fl_calc_j_index(lseg, offset);
523 idx = nfs4_fl_calc_ds_index(lseg, j);
524 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400525 if (!ds)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000526 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400527 dprintk("%s USE DS: %s cl_count %d\n", __func__,
528 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000529
530 /* No multipath support. Use first DS */
Andy Adamson3a7936c2012-04-27 17:53:51 -0400531 atomic_inc(&ds->ds_clp->cl_count);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000532 data->ds_clp = ds->ds_clp;
533 fh = nfs4_fl_select_ds_fh(lseg, j);
534 if (fh)
535 data->args.fh = fh;
536
537 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
538 data->mds_offset = offset;
539
540 /* Perform an asynchronous read to ds */
Fred Isamanc5996c42012-04-20 14:47:41 -0400541 status = nfs_initiate_read(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400542 &filelayout_read_call_ops, RPC_TASK_SOFTCONN);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000543 BUG_ON(status != 0);
544 return PNFS_ATTEMPTED;
545}
546
Fred Isamana69aef12011-03-03 15:13:47 +0000547/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000548static enum pnfs_try_status
549filelayout_write_pagelist(struct nfs_write_data *data, int sync)
550{
Fred Isamancd841602012-04-20 14:47:44 -0400551 struct nfs_pgio_header *hdr = data->header;
552 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000553 struct nfs4_pnfs_ds *ds;
554 loff_t offset = data->args.offset;
555 u32 j, idx;
556 struct nfs_fh *fh;
557 int status;
558
559 /* Retrieve the correct rpc_client for the byte range */
560 j = nfs4_fl_calc_j_index(lseg, offset);
561 idx = nfs4_fl_calc_ds_index(lseg, j);
562 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400563 if (!ds)
Fred Isamana69aef12011-03-03 15:13:47 +0000564 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400565 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d\n",
566 __func__, hdr->inode->i_ino, sync, (size_t) data->args.count,
567 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Fred Isamana69aef12011-03-03 15:13:47 +0000568
Fred Isamana69aef12011-03-03 15:13:47 +0000569 data->write_done_cb = filelayout_write_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400570 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamana69aef12011-03-03 15:13:47 +0000571 data->ds_clp = ds->ds_clp;
572 fh = nfs4_fl_select_ds_fh(lseg, j);
573 if (fh)
574 data->args.fh = fh;
575 /*
576 * Get the file offset on the dserver. Set the write offset to
577 * this offset and save the original offset.
578 */
579 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000580
581 /* Perform an asynchronous write */
Fred Isamanc5996c42012-04-20 14:47:41 -0400582 status = nfs_initiate_write(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400583 &filelayout_write_call_ops, sync,
584 RPC_TASK_SOFTCONN);
Fred Isamana69aef12011-03-03 15:13:47 +0000585 BUG_ON(status != 0);
586 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000587}
588
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000589/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400590 * filelayout_check_layout()
591 *
592 * Make sure layout segment parameters are sane WRT the device.
593 * At this point no generic layer initialization of the lseg has occurred,
594 * and nothing has been added to the layout_hdr cache.
595 *
596 */
597static int
598filelayout_check_layout(struct pnfs_layout_hdr *lo,
599 struct nfs4_filelayout_segment *fl,
600 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400601 struct nfs4_deviceid *id,
602 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400603{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400604 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400605 struct nfs4_file_layout_dsaddr *dsaddr;
606 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000607 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400608
609 dprintk("--> %s\n", __func__);
610
Andy Adamson7c24d942011-06-13 18:22:38 -0400611 /* FIXME: remove this check when layout segment support is added */
612 if (lgr->range.offset != 0 ||
613 lgr->range.length != NFS4_MAX_UINT64) {
614 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
615 __func__);
616 goto out;
617 }
618
Andy Adamson16b374c2010-10-20 00:18:04 -0400619 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500620 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400621 __func__, fl->pattern_offset);
622 goto out;
623 }
624
Benny Halevy75247af2011-02-22 15:56:01 -0800625 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
626 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400627 __func__, fl->stripe_unit);
628 goto out;
629 }
630
631 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300632 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
633 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400634 if (d == NULL) {
Trond Myklebust78e4e052012-09-18 21:02:29 -0400635 dsaddr = filelayout_get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400636 if (dsaddr == NULL)
637 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400638 } else
639 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400640 /* Found deviceid is unavailable */
641 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400642 goto out_put;
643
Andy Adamson16b374c2010-10-20 00:18:04 -0400644 fl->dsaddr = dsaddr;
645
Chuck Levere4149662011-10-25 12:18:03 -0400646 if (fl->first_stripe_index >= dsaddr->stripe_count) {
647 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400648 __func__, fl->first_stripe_index);
649 goto out_put;
650 }
651
652 if ((fl->stripe_type == STRIPE_SPARSE &&
653 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
654 (fl->stripe_type == STRIPE_DENSE &&
655 fl->num_fh != dsaddr->stripe_count)) {
656 dprintk("%s num_fh %u not valid for given packing\n",
657 __func__, fl->num_fh);
658 goto out_put;
659 }
660
661 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
662 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
663 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
664 nfss->wsize);
665 }
666
667 status = 0;
668out:
669 dprintk("--> %s returns %d\n", __func__, status);
670 return status;
671out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000672 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400673 goto out;
674}
675
676static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
677{
678 int i;
679
680 for (i = 0; i < fl->num_fh; i++) {
681 if (!fl->fh_array[i])
682 break;
683 kfree(fl->fh_array[i]);
684 }
685 kfree(fl->fh_array);
686 fl->fh_array = NULL;
687}
688
689static void
690_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
691{
692 filelayout_free_fh_array(fl);
693 kfree(fl);
694}
695
696static int
697filelayout_decode_layout(struct pnfs_layout_hdr *flo,
698 struct nfs4_filelayout_segment *fl,
699 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400700 struct nfs4_deviceid *id,
701 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400702{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400703 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400704 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400705 struct page *scratch;
706 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400707 uint32_t nfl_util;
708 int i;
709
710 dprintk("%s: set_layout_map Begin\n", __func__);
711
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400712 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400713 if (!scratch)
714 return -ENOMEM;
715
Benny Halevyf7da7a12011-05-19 14:16:47 -0400716 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400717 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
718
719 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
720 * num_fh (4) */
721 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
722 if (unlikely(!p))
723 goto out_err;
724
Andy Adamson16b374c2010-10-20 00:18:04 -0400725 memcpy(id, p, sizeof(*id));
726 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400727 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400728
729 nfl_util = be32_to_cpup(p++);
730 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
731 fl->commit_through_mds = 1;
732 if (nfl_util & NFL4_UFLG_DENSE)
733 fl->stripe_type = STRIPE_DENSE;
734 else
735 fl->stripe_type = STRIPE_SPARSE;
736 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
737
738 fl->first_stripe_index = be32_to_cpup(p++);
739 p = xdr_decode_hyper(p, &fl->pattern_offset);
740 fl->num_fh = be32_to_cpup(p++);
741
742 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
743 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
744 fl->pattern_offset);
745
Andy Adamsoncec765c2011-06-13 18:36:17 -0400746 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
747 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400748 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400749 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400750 goto out_err;
751
Andy Adamsoncec765c2011-06-13 18:36:17 -0400752 if (fl->num_fh > 0) {
Trond Myklebust1813bad2012-10-11 14:36:52 -0400753 fl->fh_array = kcalloc(fl->num_fh, sizeof(fl->fh_array[0]),
Andy Adamsoncec765c2011-06-13 18:36:17 -0400754 gfp_flags);
755 if (!fl->fh_array)
756 goto out_err;
757 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400758
759 for (i = 0; i < fl->num_fh; i++) {
760 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400761 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400762 if (!fl->fh_array[i])
763 goto out_err_free;
764
765 p = xdr_inline_decode(&stream, 4);
766 if (unlikely(!p))
767 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400768 fl->fh_array[i]->size = be32_to_cpup(p++);
769 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500770 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400771 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400772 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400773 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400774
775 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
776 if (unlikely(!p))
777 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400778 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400779 dprintk("DEBUG: %s: fh len %d\n", __func__,
780 fl->fh_array[i]->size);
781 }
782
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400783 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400784 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400785
786out_err_free:
787 filelayout_free_fh_array(fl);
788out_err:
789 __free_page(scratch);
790 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400791}
792
Fred Isamanc8795132011-03-23 13:27:49 +0000793static void
794filelayout_free_lseg(struct pnfs_layout_segment *lseg)
795{
796 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
797
798 dprintk("--> %s\n", __func__);
799 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400800 /* This assumes a single RW lseg */
801 if (lseg->pls_range.iomode == IOMODE_RW) {
802 struct nfs4_filelayout *flo;
803
804 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
805 flo->commit_info.nbuckets = 0;
806 kfree(flo->commit_info.buckets);
807 flo->commit_info.buckets = NULL;
808 }
Fred Isamanc8795132011-03-23 13:27:49 +0000809 _filelayout_free_lseg(fl);
810}
811
Fred Isaman799ba8d2012-04-20 14:47:38 -0400812static int
813filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400814 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400815 gfp_t gfp_flags)
816{
817 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400818 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400819 int size;
820
821 if (fl->commit_through_mds)
822 return 0;
Fred Isamanea2cf222012-04-20 14:47:53 -0400823 if (cinfo->ds->nbuckets != 0) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400824 /* This assumes there is only one IOMODE_RW lseg. What
825 * we really want to do is have a layout_hdr level
826 * dictionary of <multipath_list4, fh> keys, each
827 * associated with a struct list_head, populated by calls
828 * to filelayout_write_pagelist().
829 * */
830 return 0;
831 }
832
833 size = (fl->stripe_type == STRIPE_SPARSE) ?
834 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
835
Fred Isamanea2cf222012-04-20 14:47:53 -0400836 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400837 gfp_flags);
838 if (!buckets)
839 return -ENOMEM;
840 else {
841 int i;
842
Fred Isamanea2cf222012-04-20 14:47:53 -0400843 spin_lock(cinfo->lock);
844 if (cinfo->ds->nbuckets != 0)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400845 kfree(buckets);
846 else {
Fred Isamanea2cf222012-04-20 14:47:53 -0400847 cinfo->ds->buckets = buckets;
848 cinfo->ds->nbuckets = size;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400849 for (i = 0; i < size; i++) {
850 INIT_LIST_HEAD(&buckets[i].written);
851 INIT_LIST_HEAD(&buckets[i].committing);
852 }
853 }
Fred Isamanea2cf222012-04-20 14:47:53 -0400854 spin_unlock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400855 return 0;
856 }
857}
858
Andy Adamson16b374c2010-10-20 00:18:04 -0400859static struct pnfs_layout_segment *
860filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400861 struct nfs4_layoutget_res *lgr,
862 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400863{
864 struct nfs4_filelayout_segment *fl;
865 int rc;
866 struct nfs4_deviceid id;
867
868 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400869 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400870 if (!fl)
871 return NULL;
872
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400873 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
874 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400875 _filelayout_free_lseg(fl);
876 return NULL;
877 }
878 return &fl->generic_hdr;
879}
880
Fred Isaman94ad1c82011-03-01 01:34:14 +0000881/*
882 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
883 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300884 * return true : coalesce page
885 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000886 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400887static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000888filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
889 struct nfs_page *req)
890{
891 u64 p_stripe, r_stripe;
892 u32 stripe_unit;
893
Benny Halevy19345cb2011-06-19 18:33:46 -0400894 if (!pnfs_generic_pg_test(pgio, prev, req) ||
895 !nfs_generic_pg_test(pgio, prev, req))
896 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300897
Fred Isamanb5542842012-04-20 14:47:43 -0400898 p_stripe = (u64)req_offset(prev);
899 r_stripe = (u64)req_offset(req);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000900 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
901
902 do_div(p_stripe, stripe_unit);
903 do_div(r_stripe, stripe_unit);
904
905 return (p_stripe == r_stripe);
906}
907
Trond Myklebust17280172012-03-11 13:11:00 -0400908static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400909filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
910 struct nfs_page *req)
911{
912 BUG_ON(pgio->pg_lseg != NULL);
913
Fred Isaman1825a0d2012-04-20 19:55:31 -0400914 if (req->wb_offset != req->wb_pgbase) {
915 /*
916 * Handling unaligned pages is difficult, because have to
917 * somehow split a req in two in certain cases in the
918 * pg.test code. Avoid this by just not using pnfs
919 * in this case.
920 */
921 nfs_pageio_reset_read_mds(pgio);
922 return;
923 }
Andy Adamson7c24d942011-06-13 18:22:38 -0400924 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
925 req->wb_context,
926 0,
927 NFS4_MAX_UINT64,
928 IOMODE_READ,
929 GFP_KERNEL);
930 /* If no lseg, fall back to read through mds */
931 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400932 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400933}
934
Trond Myklebust17280172012-03-11 13:11:00 -0400935static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400936filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
937 struct nfs_page *req)
938{
Fred Isamanea2cf222012-04-20 14:47:53 -0400939 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400940 int status;
941
Andy Adamson7c24d942011-06-13 18:22:38 -0400942 BUG_ON(pgio->pg_lseg != NULL);
943
Fred Isaman1825a0d2012-04-20 19:55:31 -0400944 if (req->wb_offset != req->wb_pgbase)
945 goto out_mds;
Andy Adamson7c24d942011-06-13 18:22:38 -0400946 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
947 req->wb_context,
948 0,
949 NFS4_MAX_UINT64,
950 IOMODE_RW,
951 GFP_NOFS);
952 /* If no lseg, fall back to write through mds */
953 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400954 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -0400955 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
956 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400957 if (status < 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -0400958 pnfs_put_lseg(pgio->pg_lseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400959 pgio->pg_lseg = NULL;
960 goto out_mds;
961 }
962 return;
963out_mds:
964 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400965}
966
Trond Myklebust1751c362011-06-10 13:30:23 -0400967static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400968 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400969 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400970 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400971};
972
973static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400974 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400975 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400976 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400977};
978
Fred Isamane0c2b382011-03-23 13:27:53 +0000979static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
980{
981 if (fl->stripe_type == STRIPE_SPARSE)
982 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
983 else
984 return j;
985}
986
Fred Isamand6d6dc72012-03-08 17:29:35 -0500987/* The generic layer is about to remove the req from the commit list.
988 * If this will make the bucket empty, it will need to put the lseg reference.
Fred Isamand6d6dc72012-03-08 17:29:35 -0500989 */
Trond Myklebust8dd37752012-03-15 17:16:40 -0400990static void
Fred Isamanea2cf222012-04-20 14:47:53 -0400991filelayout_clear_request_commit(struct nfs_page *req,
992 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +0000993{
Trond Myklebust8dd37752012-03-15 17:16:40 -0400994 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -0400995
Fred Isamanea2cf222012-04-20 14:47:53 -0400996 spin_lock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400997 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
998 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -0400999 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001000 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001001 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001002
Fred Isaman799ba8d2012-04-20 14:47:38 -04001003 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -04001004 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001005 written);
1006 freeme = bucket->wlseg;
1007 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001008 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001009out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001010 nfs_request_remove_commit_list(req, cinfo);
1011 spin_unlock(cinfo->lock);
Trond Myklebust9369a432012-09-18 20:57:08 -04001012 pnfs_put_lseg(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001013}
1014
1015static struct list_head *
1016filelayout_choose_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001017 struct pnfs_layout_segment *lseg,
1018 struct nfs_commit_info *cinfo)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001019{
Fred Isamane0c2b382011-03-23 13:27:53 +00001020 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1021 u32 i, j;
1022 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -04001023 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +00001024
Fred Isamand6d6dc72012-03-08 17:29:35 -05001025 if (fl->commit_through_mds)
Fred Isamanea2cf222012-04-20 14:47:53 -04001026 return &cinfo->mds->list;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001027
Fred Isamane0c2b382011-03-23 13:27:53 +00001028 /* Note that we are calling nfs4_fl_calc_j_index on each page
1029 * that ends up being committed to a data server. An attractive
1030 * alternative is to add a field to nfs_write_data and nfs_page
1031 * to store the value calculated in filelayout_write_pagelist
1032 * and just use that here.
1033 */
Fred Isamanb5542842012-04-20 14:47:43 -04001034 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +00001035 i = select_bucket_index(fl, j);
Fred Isamanea2cf222012-04-20 14:47:53 -04001036 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001037 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +00001038 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -05001039 /* Non-empty buckets hold a reference on the lseg. That ref
1040 * is normally transferred to the COMMIT call and released
1041 * there. It could also be released if the last req is pulled
1042 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -04001043 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -05001044 */
Trond Myklebust9369a432012-09-18 20:57:08 -04001045 buckets[i].wlseg = pnfs_get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +00001046 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001047 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -04001048 cinfo->ds->nwritten++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001049 return list;
1050}
1051
Trond Myklebust8dd37752012-03-15 17:16:40 -04001052static void
1053filelayout_mark_request_commit(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001054 struct pnfs_layout_segment *lseg,
1055 struct nfs_commit_info *cinfo)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001056{
1057 struct list_head *list;
1058
Fred Isamanea2cf222012-04-20 14:47:53 -04001059 list = filelayout_choose_commit_list(req, lseg, cinfo);
1060 nfs_request_add_commit_list(req, list, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001061}
1062
Fred Isamane0c2b382011-03-23 13:27:53 +00001063static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1064{
1065 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1066
1067 if (flseg->stripe_type == STRIPE_SPARSE)
1068 return i;
1069 else
1070 return nfs4_fl_calc_ds_index(lseg, i);
1071}
1072
1073static struct nfs_fh *
1074select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1075{
1076 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1077
1078 if (flseg->stripe_type == STRIPE_SPARSE) {
1079 if (flseg->num_fh == 1)
1080 i = 0;
1081 else if (flseg->num_fh == 0)
1082 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1083 return NULL;
1084 }
1085 return flseg->fh_array[i];
1086}
1087
Fred Isaman0b7c0152012-04-20 14:47:39 -04001088static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +00001089{
1090 struct pnfs_layout_segment *lseg = data->lseg;
1091 struct nfs4_pnfs_ds *ds;
1092 u32 idx;
1093 struct nfs_fh *fh;
1094
1095 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1096 ds = nfs4_fl_prepare_ds(lseg, idx);
1097 if (!ds) {
Fred Isamane0c2b382011-03-23 13:27:53 +00001098 prepare_to_resend_writes(data);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001099 filelayout_commit_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +00001100 return -EAGAIN;
1101 }
Andy Adamson3a7936c2012-04-27 17:53:51 -04001102 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1103 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
Fred Isaman0b7c0152012-04-20 14:47:39 -04001104 data->commit_done_cb = filelayout_commit_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -04001105 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamane0c2b382011-03-23 13:27:53 +00001106 data->ds_clp = ds->ds_clp;
1107 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1108 if (fh)
1109 data->args.fh = fh;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001110 return nfs_initiate_commit(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001111 &filelayout_commit_call_ops, how,
1112 RPC_TASK_SOFTCONN);
Fred Isamane0c2b382011-03-23 13:27:53 +00001113}
1114
Trond Myklebust8dd37752012-03-15 17:16:40 -04001115static int
Fred Isaman1763da12012-04-20 14:47:57 -04001116transfer_commit_list(struct list_head *src, struct list_head *dst,
1117 struct nfs_commit_info *cinfo, int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001118{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001119 struct nfs_page *req, *tmp;
1120 int ret = 0;
1121
1122 list_for_each_entry_safe(req, tmp, src, wb_list) {
1123 if (!nfs_lock_request(req))
1124 continue;
Trond Myklebust53b8ee32012-05-22 16:36:27 -04001125 kref_get(&req->wb_kref);
Fred Isamanea2cf222012-04-20 14:47:53 -04001126 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001127 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001128 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001129 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1130 nfs_list_add_request(req, dst);
1131 ret++;
Fred Isaman1763da12012-04-20 14:47:57 -04001132 if ((ret == max) && !cinfo->dreq)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001133 break;
1134 }
Fred Isaman1763da12012-04-20 14:47:57 -04001135 return ret;
1136}
1137
1138static int
1139filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1140 struct nfs_commit_info *cinfo,
1141 int max)
1142{
1143 struct list_head *src = &bucket->written;
1144 struct list_head *dst = &bucket->committing;
1145 int ret;
1146
1147 ret = transfer_commit_list(src, dst, cinfo, max);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001148 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001149 cinfo->ds->nwritten -= ret;
1150 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001151 bucket->clseg = bucket->wlseg;
1152 if (list_empty(src))
1153 bucket->wlseg = NULL;
1154 else
Trond Myklebust9369a432012-09-18 20:57:08 -04001155 pnfs_get_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001156 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001157 return ret;
1158}
1159
Fred Isamand6d6dc72012-03-08 17:29:35 -05001160/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001161 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001162 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001163static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1164 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001165{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001166 int i, rv = 0, cnt;
1167
Fred Isamanea2cf222012-04-20 14:47:53 -04001168 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1169 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1170 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001171 max -= cnt;
1172 rv += cnt;
1173 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001174 return rv;
1175}
1176
Fred Isaman1763da12012-04-20 14:47:57 -04001177/* Pull everything off the committing lists and dump into @dst */
1178static void filelayout_recover_commit_reqs(struct list_head *dst,
1179 struct nfs_commit_info *cinfo)
1180{
1181 struct pnfs_commit_bucket *b;
1182 int i;
1183
1184 /* NOTE cinfo->lock is NOT held, relying on fact that this is
1185 * only called on single thread per dreq.
Trond Myklebust9369a432012-09-18 20:57:08 -04001186 * Can't take the lock because need to do pnfs_put_lseg
Fred Isaman1763da12012-04-20 14:47:57 -04001187 */
1188 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1189 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
1190 BUG_ON(!list_empty(&b->written));
Trond Myklebust9369a432012-09-18 20:57:08 -04001191 pnfs_put_lseg(b->wlseg);
Fred Isaman1763da12012-04-20 14:47:57 -04001192 b->wlseg = NULL;
1193 }
1194 }
1195 cinfo->ds->nwritten = 0;
1196}
1197
Trond Myklebust9390f422012-03-16 13:52:45 -04001198static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001199alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001200{
Fred Isamanea2cf222012-04-20 14:47:53 -04001201 struct pnfs_ds_commit_info *fl_cinfo;
1202 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001203 struct nfs_commit_data *data;
Fred Isamane0c2b382011-03-23 13:27:53 +00001204 int i, j;
Trond Myklebust9390f422012-03-16 13:52:45 -04001205 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001206
Fred Isamanea2cf222012-04-20 14:47:53 -04001207 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001208 bucket = fl_cinfo->buckets;
1209 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1210 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001211 continue;
1212 data = nfs_commitdata_alloc();
1213 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001214 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001215 data->ds_commit_index = i;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001216 data->lseg = bucket->clseg;
1217 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001218 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001219 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001220 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001221
Trond Myklebust9390f422012-03-16 13:52:45 -04001222 /* Clean up on error */
Fred Isaman799ba8d2012-04-20 14:47:38 -04001223 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1224 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001225 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001226 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
Trond Myklebust9369a432012-09-18 20:57:08 -04001227 pnfs_put_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001228 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001229 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001230 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001231 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001232}
1233
1234/* This follows nfs_commit_list pretty closely */
1235static int
1236filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001237 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001238{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001239 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001240 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001241 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001242
1243 if (!list_empty(mds_pages)) {
1244 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001245 if (data != NULL) {
1246 data->lseg = NULL;
1247 list_add(&data->pages, &list);
1248 nreq++;
1249 } else
Fred Isamanea2cf222012-04-20 14:47:53 -04001250 nfs_retry_commit(mds_pages, NULL, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001251 }
1252
Fred Isamanea2cf222012-04-20 14:47:53 -04001253 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001254
1255 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001256 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001257 goto out;
1258 }
1259
Fred Isamanea2cf222012-04-20 14:47:53 -04001260 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001261
1262 list_for_each_entry_safe(data, tmp, &list, pages) {
1263 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001264 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001265 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001266 nfs_initiate_commit(NFS_CLIENT(inode), data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001267 data->mds_ops, how, 0);
Fred Isamane0c2b382011-03-23 13:27:53 +00001268 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001269 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001270
Fred Isamanea2cf222012-04-20 14:47:53 -04001271 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001272 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001273 filelayout_initiate_commit(data, how);
1274 }
1275 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001276out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001277 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001278 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001279}
1280
Benny Halevy1775bc32011-05-20 13:47:33 +02001281static void
1282filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1283{
1284 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1285}
1286
Fred Isaman799ba8d2012-04-20 14:47:38 -04001287static struct pnfs_layout_hdr *
1288filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1289{
1290 struct nfs4_filelayout *flo;
1291
1292 flo = kzalloc(sizeof(*flo), gfp_flags);
1293 return &flo->generic_hdr;
1294}
1295
1296static void
1297filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1298{
1299 kfree(FILELAYOUT_FROM_HDR(lo));
1300}
1301
Fred Isamanea2cf222012-04-20 14:47:53 -04001302static struct pnfs_ds_commit_info *
1303filelayout_get_ds_info(struct inode *inode)
1304{
Fred Isamandf011742012-04-24 14:50:34 -04001305 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1306
1307 if (layout == NULL)
1308 return NULL;
1309 else
1310 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
Fred Isamanea2cf222012-04-20 14:47:53 -04001311}
1312
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001313static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001314 .id = LAYOUT_NFSV4_1_FILES,
1315 .name = "LAYOUT_NFSV4_1_FILES",
1316 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001317 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1318 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001319 .alloc_lseg = filelayout_alloc_lseg,
1320 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001321 .pg_read_ops = &filelayout_pg_read_ops,
1322 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001323 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001324 .mark_request_commit = filelayout_mark_request_commit,
1325 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001326 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isaman1763da12012-04-20 14:47:57 -04001327 .recover_commit_reqs = filelayout_recover_commit_reqs,
Fred Isamane0c2b382011-03-23 13:27:53 +00001328 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001329 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001330 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001331 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001332};
1333
1334static int __init nfs4filelayout_init(void)
1335{
1336 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1337 __func__);
1338 return pnfs_register_layoutdriver(&filelayout_type);
1339}
1340
1341static void __exit nfs4filelayout_exit(void)
1342{
1343 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1344 __func__);
1345 pnfs_unregister_layoutdriver(&filelayout_type);
1346}
1347
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001348MODULE_ALIAS("nfs-layouttype4-1");
1349
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001350module_init(nfs4filelayout_init);
1351module_exit(nfs4filelayout_exit);