blob: dac2162c3ac46230da2a33c87ebdc2a7816177a6 [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 Adamsoncbdabc72011-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
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000125static int filelayout_async_handle_error(struct rpc_task *task,
126 struct nfs4_state *state,
127 struct nfs_client *clp,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400128 struct pnfs_layout_segment *lseg)
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000129{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400130 struct inode *inode = lseg->pls_layout->plh_inode;
131 struct nfs_server *mds_server = NFS_SERVER(inode);
132 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Andy Adamson9cb81962012-03-07 10:49:41 -0500133 struct nfs_client *mds_client = mds_server->nfs_client;
Andy Adamson671fb892012-04-27 17:53:49 -0400134 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
Andy Adamson9cb81962012-03-07 10:49:41 -0500135
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000136 if (task->tk_status >= 0)
137 return 0;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000138
139 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -0500140 /* MDS state errors */
141 case -NFS4ERR_DELEG_REVOKED:
142 case -NFS4ERR_ADMIN_REVOKED:
143 case -NFS4ERR_BAD_STATEID:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400144 if (state == NULL)
145 break;
Andy Adamson2dc31752012-03-08 11:03:53 -0500146 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500147 case -NFS4ERR_OPENMODE:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400148 if (state == NULL)
149 break;
Andy Adamson9cb81962012-03-07 10:49:41 -0500150 nfs4_schedule_stateid_recovery(mds_server, state);
151 goto wait_on_recovery;
152 case -NFS4ERR_EXPIRED:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400153 if (state != NULL)
154 nfs4_schedule_stateid_recovery(mds_server, state);
Andy Adamson9cb81962012-03-07 10:49:41 -0500155 nfs4_schedule_lease_recovery(mds_client);
156 goto wait_on_recovery;
157 /* DS session errors */
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000158 case -NFS4ERR_BADSESSION:
159 case -NFS4ERR_BADSLOT:
160 case -NFS4ERR_BAD_HIGH_SLOT:
161 case -NFS4ERR_DEADSESSION:
162 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
163 case -NFS4ERR_SEQ_FALSE_RETRY:
164 case -NFS4ERR_SEQ_MISORDERED:
165 dprintk("%s ERROR %d, Reset session. Exchangeid "
166 "flags 0x%x\n", __func__, task->tk_status,
167 clp->cl_exchange_flags);
Trond Myklebust9f594792012-05-27 13:02:53 -0400168 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000169 break;
170 case -NFS4ERR_DELAY:
171 case -NFS4ERR_GRACE:
172 case -EKEYEXPIRED:
173 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
174 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400175 case -NFS4ERR_RETRY_UNCACHED_REP:
176 break;
Andy Adamson041245c2012-04-27 17:53:53 -0400177 /* Invalidate Layout errors */
178 case -NFS4ERR_PNFS_NO_LAYOUT:
179 case -ESTALE: /* mapped NFS4ERR_STALE */
180 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
181 case -EISDIR: /* mapped NFS4ERR_ISDIR */
182 case -NFS4ERR_FHEXPIRED:
183 case -NFS4ERR_WRONG_TYPE:
184 dprintk("%s Invalid layout error %d\n", __func__,
185 task->tk_status);
186 /*
187 * Destroy layout so new i/o will get a new layout.
188 * Layout will not be destroyed until all current lseg
189 * references are put. Mark layout as invalid to resend failed
190 * i/o and all i/o waiting on the slot table to the MDS until
191 * layout is destroyed and a new valid layout is obtained.
192 */
193 set_bit(NFS_LAYOUT_INVALID,
Andy Adamsond42e7872012-05-22 08:09:28 -0400194 &NFS_I(inode)->layout->plh_flags);
195 pnfs_destroy_layout(NFS_I(inode));
Andy Adamson041245c2012-04-27 17:53:53 -0400196 rpc_wake_up(&tbl->slot_tbl_waitq);
197 goto reset;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400198 /* RPC connection errors */
199 case -ECONNREFUSED:
200 case -EHOSTDOWN:
201 case -EHOSTUNREACH:
202 case -ENETUNREACH:
203 case -EIO:
204 case -ETIMEDOUT:
205 case -EPIPE:
206 dprintk("%s DS connection error %d\n", __func__,
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000207 task->tk_status);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400208 nfs4_mark_deviceid_unavailable(devid);
Andy Adamsonbaf6c2a2012-06-20 15:03:32 -0400209 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags);
Andy Adamson82c7c7a2012-06-20 15:03:31 -0400210 _pnfs_return_layout(inode);
Andy Adamson671fb892012-04-27 17:53:49 -0400211 rpc_wake_up(&tbl->slot_tbl_waitq);
Andy Adamsonb4a29672012-04-27 17:53:52 -0400212 nfs4_ds_disconnect(clp);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400213 /* fall through */
214 default:
Andy Adamson041245c2012-04-27 17:53:53 -0400215reset:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400216 dprintk("%s Retry through MDS. Error %d\n", __func__,
217 task->tk_status);
218 return -NFS4ERR_RESET_TO_MDS;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000219 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500220out:
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000221 task->tk_status = 0;
222 return -EAGAIN;
Andy Adamson9cb81962012-03-07 10:49:41 -0500223wait_on_recovery:
224 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
225 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
226 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
227 goto out;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000228}
229
230/* NFS_PROTO call done callback routines */
231
232static int filelayout_read_done_cb(struct rpc_task *task,
233 struct nfs_read_data *data)
234{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400235 struct nfs_pgio_header *hdr = data->header;
236 int err;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000237
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400238 err = filelayout_async_handle_error(task, data->args.context->state,
239 data->ds_clp, hdr->lseg);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000240
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400241 switch (err) {
242 case -NFS4ERR_RESET_TO_MDS:
243 filelayout_reset_read(data);
244 return task->tk_status;
245 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700246 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000247 return -EAGAIN;
248 }
249
250 return 0;
251}
252
Andy Adamson16b374c2010-10-20 00:18:04 -0400253/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000254 * We reference the rpc_cred of the first WRITE that triggers the need for
255 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
256 * rfc5661 is not clear about which credential should be used.
257 */
258static void
259filelayout_set_layoutcommit(struct nfs_write_data *wdata)
260{
Fred Isamancd841602012-04-20 14:47:44 -0400261 struct nfs_pgio_header *hdr = wdata->header;
262
263 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Andy Adamson863a3c62011-03-23 13:27:54 +0000264 wdata->res.verf->committed == NFS_FILE_SYNC)
265 return;
266
267 pnfs_set_layoutcommit(wdata);
Fred Isamancd841602012-04-20 14:47:44 -0400268 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
269 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000270}
271
Trond Myklebust1dfed272012-09-18 19:51:12 -0400272bool
273filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
274{
275 return filelayout_test_devid_invalid(node) ||
276 nfs4_test_deviceid_unavailable(node);
277}
278
279static bool
280filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
281{
282 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
283
284 return filelayout_test_layout_invalid(lseg->pls_layout) ||
285 filelayout_test_devid_unavailable(node);
286}
287
Andy Adamson863a3c62011-03-23 13:27:54 +0000288/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000289 * Call ops for the async read/write cases
290 * In the case of dense layouts, the offset needs to be reset to its
291 * original value.
292 */
293static void filelayout_read_prepare(struct rpc_task *task, void *data)
294{
Fred Isamancd12ae32012-04-20 14:47:42 -0400295 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000296
Andy Adamson041245c2012-04-27 17:53:53 -0400297 if (filelayout_reset_to_mds(rdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400298 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
299 filelayout_reset_read(rdata);
300 rpc_exit(task, 0);
301 return;
302 }
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000303 rdata->read_done_cb = filelayout_read_done_cb;
304
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000305 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
306 &rdata->args.seq_args, &rdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500307 task))
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000308 return;
309
310 rpc_call_start(task);
311}
312
313static void filelayout_read_call_done(struct rpc_task *task, void *data)
314{
Fred Isamancd12ae32012-04-20 14:47:42 -0400315 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000316
317 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
318
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400319 if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) &&
320 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400321 return;
322
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000323 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400324 rdata->header->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000325}
326
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500327static void filelayout_read_count_stats(struct rpc_task *task, void *data)
328{
Fred Isamancd12ae32012-04-20 14:47:42 -0400329 struct nfs_read_data *rdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500330
Fred Isamancd841602012-04-20 14:47:44 -0400331 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500332}
333
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000334static void filelayout_read_release(void *data)
335{
Fred Isamancd12ae32012-04-20 14:47:42 -0400336 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000337
Andy Adamson996074c2012-05-22 08:09:26 -0400338 nfs_put_client(rdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400339 rdata->header->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000340}
341
Fred Isamana69aef12011-03-03 15:13:47 +0000342static int filelayout_write_done_cb(struct rpc_task *task,
343 struct nfs_write_data *data)
344{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400345 struct nfs_pgio_header *hdr = data->header;
346 int err;
Fred Isamana69aef12011-03-03 15:13:47 +0000347
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400348 err = filelayout_async_handle_error(task, data->args.context->state,
349 data->ds_clp, hdr->lseg);
350
351 switch (err) {
352 case -NFS4ERR_RESET_TO_MDS:
353 filelayout_reset_write(data);
354 return task->tk_status;
355 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700356 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000357 return -EAGAIN;
358 }
359
Andy Adamson863a3c62011-03-23 13:27:54 +0000360 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000361 return 0;
362}
363
Fred Isamane0c2b382011-03-23 13:27:53 +0000364/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400365static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000366{
367 struct nfs_page *first = nfs_list_entry(data->pages.next);
368
369 data->task.tk_status = 0;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -0400370 memcpy(&data->verf.verifier, &first->wb_verf,
371 sizeof(data->verf.verifier));
372 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
Fred Isamane0c2b382011-03-23 13:27:53 +0000373}
374
375static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400376 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000377{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400378 int err;
Fred Isamane0c2b382011-03-23 13:27:53 +0000379
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400380 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
381 data->lseg);
382
383 switch (err) {
384 case -NFS4ERR_RESET_TO_MDS:
385 prepare_to_resend_writes(data);
386 return -EAGAIN;
387 case -EAGAIN:
388 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000389 return -EAGAIN;
390 }
391
392 return 0;
393}
394
Fred Isamana69aef12011-03-03 15:13:47 +0000395static void filelayout_write_prepare(struct rpc_task *task, void *data)
396{
Fred Isamancd12ae32012-04-20 14:47:42 -0400397 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000398
Andy Adamson041245c2012-04-27 17:53:53 -0400399 if (filelayout_reset_to_mds(wdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400400 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
401 filelayout_reset_write(wdata);
402 rpc_exit(task, 0);
403 return;
404 }
Fred Isamana69aef12011-03-03 15:13:47 +0000405 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
406 &wdata->args.seq_args, &wdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500407 task))
Fred Isamana69aef12011-03-03 15:13:47 +0000408 return;
409
410 rpc_call_start(task);
411}
412
413static void filelayout_write_call_done(struct rpc_task *task, void *data)
414{
Fred Isamancd12ae32012-04-20 14:47:42 -0400415 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000416
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400417 if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) &&
418 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400419 return;
420
Fred Isamana69aef12011-03-03 15:13:47 +0000421 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400422 wdata->header->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000423}
424
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500425static void filelayout_write_count_stats(struct rpc_task *task, void *data)
426{
Fred Isamancd12ae32012-04-20 14:47:42 -0400427 struct nfs_write_data *wdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500428
Fred Isamancd841602012-04-20 14:47:44 -0400429 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500430}
431
Fred Isamana69aef12011-03-03 15:13:47 +0000432static void filelayout_write_release(void *data)
433{
Fred Isamancd12ae32012-04-20 14:47:42 -0400434 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000435
Andy Adamson996074c2012-05-22 08:09:26 -0400436 nfs_put_client(wdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400437 wdata->header->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000438}
439
Fred Isaman0b7c0152012-04-20 14:47:39 -0400440static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000441{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400442 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000443
Fred Isaman0b7c0152012-04-20 14:47:39 -0400444 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
445 &wdata->args.seq_args, &wdata->res.seq_res,
446 task))
447 return;
448
449 rpc_call_start(task);
450}
451
452static void filelayout_write_commit_done(struct rpc_task *task, void *data)
453{
454 struct nfs_commit_data *wdata = data;
455
456 /* Note this may cause RPC to be resent */
457 wdata->mds_ops->rpc_call_done(task, data);
458}
459
460static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
461{
462 struct nfs_commit_data *cdata = data;
463
464 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
465}
466
467static void filelayout_commit_release(void *calldata)
468{
469 struct nfs_commit_data *data = calldata;
470
Fred Isamanf453a542012-04-20 14:47:54 -0400471 data->completion_ops->completion(data);
Trond Myklebust9369a432012-09-18 20:57:08 -0400472 pnfs_put_lseg(data->lseg);
Andy Adamson3a7936c2012-04-27 17:53:51 -0400473 nfs_put_client(data->ds_clp);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400474 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000475}
476
Trond Myklebust17280172012-03-11 13:11:00 -0400477static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000478 .rpc_call_prepare = filelayout_read_prepare,
479 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500480 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000481 .rpc_release = filelayout_read_release,
482};
483
Trond Myklebust17280172012-03-11 13:11:00 -0400484static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000485 .rpc_call_prepare = filelayout_write_prepare,
486 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500487 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000488 .rpc_release = filelayout_write_release,
489};
490
Trond Myklebust17280172012-03-11 13:11:00 -0400491static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400492 .rpc_call_prepare = filelayout_commit_prepare,
493 .rpc_call_done = filelayout_write_commit_done,
494 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000495 .rpc_release = filelayout_commit_release,
496};
497
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000498static enum pnfs_try_status
499filelayout_read_pagelist(struct nfs_read_data *data)
500{
Fred Isamancd841602012-04-20 14:47:44 -0400501 struct nfs_pgio_header *hdr = data->header;
502 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000503 struct nfs4_pnfs_ds *ds;
504 loff_t offset = data->args.offset;
505 u32 j, idx;
506 struct nfs_fh *fh;
507 int status;
508
509 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400510 __func__, hdr->inode->i_ino,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000511 data->args.pgbase, (size_t)data->args.count, offset);
512
513 /* Retrieve the correct rpc_client for the byte range */
514 j = nfs4_fl_calc_j_index(lseg, offset);
515 idx = nfs4_fl_calc_ds_index(lseg, j);
516 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400517 if (!ds)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000518 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400519 dprintk("%s USE DS: %s cl_count %d\n", __func__,
520 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000521
522 /* No multipath support. Use first DS */
Andy Adamson3a7936c2012-04-27 17:53:51 -0400523 atomic_inc(&ds->ds_clp->cl_count);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000524 data->ds_clp = ds->ds_clp;
525 fh = nfs4_fl_select_ds_fh(lseg, j);
526 if (fh)
527 data->args.fh = fh;
528
529 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
530 data->mds_offset = offset;
531
532 /* Perform an asynchronous read to ds */
Fred Isamanc5996c42012-04-20 14:47:41 -0400533 status = nfs_initiate_read(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400534 &filelayout_read_call_ops, RPC_TASK_SOFTCONN);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000535 BUG_ON(status != 0);
536 return PNFS_ATTEMPTED;
537}
538
Fred Isamana69aef12011-03-03 15:13:47 +0000539/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000540static enum pnfs_try_status
541filelayout_write_pagelist(struct nfs_write_data *data, int sync)
542{
Fred Isamancd841602012-04-20 14:47:44 -0400543 struct nfs_pgio_header *hdr = data->header;
544 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000545 struct nfs4_pnfs_ds *ds;
546 loff_t offset = data->args.offset;
547 u32 j, idx;
548 struct nfs_fh *fh;
549 int status;
550
551 /* Retrieve the correct rpc_client for the byte range */
552 j = nfs4_fl_calc_j_index(lseg, offset);
553 idx = nfs4_fl_calc_ds_index(lseg, j);
554 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400555 if (!ds)
Fred Isamana69aef12011-03-03 15:13:47 +0000556 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400557 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d\n",
558 __func__, hdr->inode->i_ino, sync, (size_t) data->args.count,
559 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Fred Isamana69aef12011-03-03 15:13:47 +0000560
Fred Isamana69aef12011-03-03 15:13:47 +0000561 data->write_done_cb = filelayout_write_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400562 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamana69aef12011-03-03 15:13:47 +0000563 data->ds_clp = ds->ds_clp;
564 fh = nfs4_fl_select_ds_fh(lseg, j);
565 if (fh)
566 data->args.fh = fh;
567 /*
568 * Get the file offset on the dserver. Set the write offset to
569 * this offset and save the original offset.
570 */
571 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000572
573 /* Perform an asynchronous write */
Fred Isamanc5996c42012-04-20 14:47:41 -0400574 status = nfs_initiate_write(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400575 &filelayout_write_call_ops, sync,
576 RPC_TASK_SOFTCONN);
Fred Isamana69aef12011-03-03 15:13:47 +0000577 BUG_ON(status != 0);
578 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000579}
580
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000581/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400582 * filelayout_check_layout()
583 *
584 * Make sure layout segment parameters are sane WRT the device.
585 * At this point no generic layer initialization of the lseg has occurred,
586 * and nothing has been added to the layout_hdr cache.
587 *
588 */
589static int
590filelayout_check_layout(struct pnfs_layout_hdr *lo,
591 struct nfs4_filelayout_segment *fl,
592 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400593 struct nfs4_deviceid *id,
594 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400595{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400596 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400597 struct nfs4_file_layout_dsaddr *dsaddr;
598 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000599 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400600
601 dprintk("--> %s\n", __func__);
602
Andy Adamson7c24d942011-06-13 18:22:38 -0400603 /* FIXME: remove this check when layout segment support is added */
604 if (lgr->range.offset != 0 ||
605 lgr->range.length != NFS4_MAX_UINT64) {
606 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
607 __func__);
608 goto out;
609 }
610
Andy Adamson16b374c2010-10-20 00:18:04 -0400611 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500612 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400613 __func__, fl->pattern_offset);
614 goto out;
615 }
616
Benny Halevy75247af2011-02-22 15:56:01 -0800617 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
618 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400619 __func__, fl->stripe_unit);
620 goto out;
621 }
622
623 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300624 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
625 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400626 if (d == NULL) {
Trond Myklebust78e4e052012-09-18 21:02:29 -0400627 dsaddr = filelayout_get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400628 if (dsaddr == NULL)
629 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400630 } else
631 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400632 /* Found deviceid is unavailable */
633 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400634 goto out_put;
635
Andy Adamson16b374c2010-10-20 00:18:04 -0400636 fl->dsaddr = dsaddr;
637
Chuck Levere4149662011-10-25 12:18:03 -0400638 if (fl->first_stripe_index >= dsaddr->stripe_count) {
639 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400640 __func__, fl->first_stripe_index);
641 goto out_put;
642 }
643
644 if ((fl->stripe_type == STRIPE_SPARSE &&
645 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
646 (fl->stripe_type == STRIPE_DENSE &&
647 fl->num_fh != dsaddr->stripe_count)) {
648 dprintk("%s num_fh %u not valid for given packing\n",
649 __func__, fl->num_fh);
650 goto out_put;
651 }
652
653 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
654 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
655 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
656 nfss->wsize);
657 }
658
659 status = 0;
660out:
661 dprintk("--> %s returns %d\n", __func__, status);
662 return status;
663out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000664 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400665 goto out;
666}
667
668static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
669{
670 int i;
671
672 for (i = 0; i < fl->num_fh; i++) {
673 if (!fl->fh_array[i])
674 break;
675 kfree(fl->fh_array[i]);
676 }
677 kfree(fl->fh_array);
678 fl->fh_array = NULL;
679}
680
681static void
682_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
683{
684 filelayout_free_fh_array(fl);
685 kfree(fl);
686}
687
688static int
689filelayout_decode_layout(struct pnfs_layout_hdr *flo,
690 struct nfs4_filelayout_segment *fl,
691 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400692 struct nfs4_deviceid *id,
693 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400694{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400695 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400696 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400697 struct page *scratch;
698 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400699 uint32_t nfl_util;
700 int i;
701
702 dprintk("%s: set_layout_map Begin\n", __func__);
703
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400704 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400705 if (!scratch)
706 return -ENOMEM;
707
Benny Halevyf7da7a12011-05-19 14:16:47 -0400708 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400709 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
710
711 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
712 * num_fh (4) */
713 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
714 if (unlikely(!p))
715 goto out_err;
716
Andy Adamson16b374c2010-10-20 00:18:04 -0400717 memcpy(id, p, sizeof(*id));
718 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400719 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400720
721 nfl_util = be32_to_cpup(p++);
722 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
723 fl->commit_through_mds = 1;
724 if (nfl_util & NFL4_UFLG_DENSE)
725 fl->stripe_type = STRIPE_DENSE;
726 else
727 fl->stripe_type = STRIPE_SPARSE;
728 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
729
730 fl->first_stripe_index = be32_to_cpup(p++);
731 p = xdr_decode_hyper(p, &fl->pattern_offset);
732 fl->num_fh = be32_to_cpup(p++);
733
734 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
735 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
736 fl->pattern_offset);
737
Andy Adamsoncec765c2011-06-13 18:36:17 -0400738 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
739 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400740 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400741 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400742 goto out_err;
743
Andy Adamsoncec765c2011-06-13 18:36:17 -0400744 if (fl->num_fh > 0) {
745 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
746 gfp_flags);
747 if (!fl->fh_array)
748 goto out_err;
749 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400750
751 for (i = 0; i < fl->num_fh; i++) {
752 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400753 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400754 if (!fl->fh_array[i])
755 goto out_err_free;
756
757 p = xdr_inline_decode(&stream, 4);
758 if (unlikely(!p))
759 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400760 fl->fh_array[i]->size = be32_to_cpup(p++);
761 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500762 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400763 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400764 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400765 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400766
767 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
768 if (unlikely(!p))
769 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400770 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400771 dprintk("DEBUG: %s: fh len %d\n", __func__,
772 fl->fh_array[i]->size);
773 }
774
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400775 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400776 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400777
778out_err_free:
779 filelayout_free_fh_array(fl);
780out_err:
781 __free_page(scratch);
782 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400783}
784
Fred Isamanc8795132011-03-23 13:27:49 +0000785static void
786filelayout_free_lseg(struct pnfs_layout_segment *lseg)
787{
788 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
789
790 dprintk("--> %s\n", __func__);
791 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400792 /* This assumes a single RW lseg */
793 if (lseg->pls_range.iomode == IOMODE_RW) {
794 struct nfs4_filelayout *flo;
795
796 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
797 flo->commit_info.nbuckets = 0;
798 kfree(flo->commit_info.buckets);
799 flo->commit_info.buckets = NULL;
800 }
Fred Isamanc8795132011-03-23 13:27:49 +0000801 _filelayout_free_lseg(fl);
802}
803
Fred Isaman799ba8d2012-04-20 14:47:38 -0400804static int
805filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400806 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400807 gfp_t gfp_flags)
808{
809 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400810 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400811 int size;
812
813 if (fl->commit_through_mds)
814 return 0;
Fred Isamanea2cf222012-04-20 14:47:53 -0400815 if (cinfo->ds->nbuckets != 0) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400816 /* This assumes there is only one IOMODE_RW lseg. What
817 * we really want to do is have a layout_hdr level
818 * dictionary of <multipath_list4, fh> keys, each
819 * associated with a struct list_head, populated by calls
820 * to filelayout_write_pagelist().
821 * */
822 return 0;
823 }
824
825 size = (fl->stripe_type == STRIPE_SPARSE) ?
826 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
827
Fred Isamanea2cf222012-04-20 14:47:53 -0400828 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400829 gfp_flags);
830 if (!buckets)
831 return -ENOMEM;
832 else {
833 int i;
834
Fred Isamanea2cf222012-04-20 14:47:53 -0400835 spin_lock(cinfo->lock);
836 if (cinfo->ds->nbuckets != 0)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400837 kfree(buckets);
838 else {
Fred Isamanea2cf222012-04-20 14:47:53 -0400839 cinfo->ds->buckets = buckets;
840 cinfo->ds->nbuckets = size;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400841 for (i = 0; i < size; i++) {
842 INIT_LIST_HEAD(&buckets[i].written);
843 INIT_LIST_HEAD(&buckets[i].committing);
844 }
845 }
Fred Isamanea2cf222012-04-20 14:47:53 -0400846 spin_unlock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400847 return 0;
848 }
849}
850
Andy Adamson16b374c2010-10-20 00:18:04 -0400851static struct pnfs_layout_segment *
852filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400853 struct nfs4_layoutget_res *lgr,
854 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400855{
856 struct nfs4_filelayout_segment *fl;
857 int rc;
858 struct nfs4_deviceid id;
859
860 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400861 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400862 if (!fl)
863 return NULL;
864
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400865 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
866 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400867 _filelayout_free_lseg(fl);
868 return NULL;
869 }
870 return &fl->generic_hdr;
871}
872
Fred Isaman94ad1c82011-03-01 01:34:14 +0000873/*
874 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
875 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300876 * return true : coalesce page
877 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000878 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400879static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000880filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
881 struct nfs_page *req)
882{
883 u64 p_stripe, r_stripe;
884 u32 stripe_unit;
885
Benny Halevy19345cb2011-06-19 18:33:46 -0400886 if (!pnfs_generic_pg_test(pgio, prev, req) ||
887 !nfs_generic_pg_test(pgio, prev, req))
888 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300889
Fred Isamanb5542842012-04-20 14:47:43 -0400890 p_stripe = (u64)req_offset(prev);
891 r_stripe = (u64)req_offset(req);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000892 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
893
894 do_div(p_stripe, stripe_unit);
895 do_div(r_stripe, stripe_unit);
896
897 return (p_stripe == r_stripe);
898}
899
Trond Myklebust17280172012-03-11 13:11:00 -0400900static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400901filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
902 struct nfs_page *req)
903{
904 BUG_ON(pgio->pg_lseg != NULL);
905
Fred Isaman1825a0d2012-04-20 19:55:31 -0400906 if (req->wb_offset != req->wb_pgbase) {
907 /*
908 * Handling unaligned pages is difficult, because have to
909 * somehow split a req in two in certain cases in the
910 * pg.test code. Avoid this by just not using pnfs
911 * in this case.
912 */
913 nfs_pageio_reset_read_mds(pgio);
914 return;
915 }
Andy Adamson7c24d942011-06-13 18:22:38 -0400916 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
917 req->wb_context,
918 0,
919 NFS4_MAX_UINT64,
920 IOMODE_READ,
921 GFP_KERNEL);
922 /* If no lseg, fall back to read through mds */
923 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400924 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400925}
926
Trond Myklebust17280172012-03-11 13:11:00 -0400927static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400928filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
929 struct nfs_page *req)
930{
Fred Isamanea2cf222012-04-20 14:47:53 -0400931 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400932 int status;
933
Andy Adamson7c24d942011-06-13 18:22:38 -0400934 BUG_ON(pgio->pg_lseg != NULL);
935
Fred Isaman1825a0d2012-04-20 19:55:31 -0400936 if (req->wb_offset != req->wb_pgbase)
937 goto out_mds;
Andy Adamson7c24d942011-06-13 18:22:38 -0400938 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
939 req->wb_context,
940 0,
941 NFS4_MAX_UINT64,
942 IOMODE_RW,
943 GFP_NOFS);
944 /* If no lseg, fall back to write through mds */
945 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400946 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -0400947 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
948 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400949 if (status < 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -0400950 pnfs_put_lseg(pgio->pg_lseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400951 pgio->pg_lseg = NULL;
952 goto out_mds;
953 }
954 return;
955out_mds:
956 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400957}
958
Trond Myklebust1751c362011-06-10 13:30:23 -0400959static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400960 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400961 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400962 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400963};
964
965static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400966 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400967 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400968 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400969};
970
Fred Isamane0c2b382011-03-23 13:27:53 +0000971static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
972{
973 if (fl->stripe_type == STRIPE_SPARSE)
974 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
975 else
976 return j;
977}
978
Fred Isamand6d6dc72012-03-08 17:29:35 -0500979/* The generic layer is about to remove the req from the commit list.
980 * If this will make the bucket empty, it will need to put the lseg reference.
Fred Isamand6d6dc72012-03-08 17:29:35 -0500981 */
Trond Myklebust8dd37752012-03-15 17:16:40 -0400982static void
Fred Isamanea2cf222012-04-20 14:47:53 -0400983filelayout_clear_request_commit(struct nfs_page *req,
984 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +0000985{
Trond Myklebust8dd37752012-03-15 17:16:40 -0400986 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -0400987
Fred Isamanea2cf222012-04-20 14:47:53 -0400988 spin_lock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400989 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
990 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -0400991 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500992 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -0400993 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500994
Fred Isaman799ba8d2012-04-20 14:47:38 -0400995 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -0400996 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400997 written);
998 freeme = bucket->wlseg;
999 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001000 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001001out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001002 nfs_request_remove_commit_list(req, cinfo);
1003 spin_unlock(cinfo->lock);
Trond Myklebust9369a432012-09-18 20:57:08 -04001004 pnfs_put_lseg(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001005}
1006
1007static struct list_head *
1008filelayout_choose_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001009 struct pnfs_layout_segment *lseg,
1010 struct nfs_commit_info *cinfo)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001011{
Fred Isamane0c2b382011-03-23 13:27:53 +00001012 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1013 u32 i, j;
1014 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -04001015 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +00001016
Fred Isamand6d6dc72012-03-08 17:29:35 -05001017 if (fl->commit_through_mds)
Fred Isamanea2cf222012-04-20 14:47:53 -04001018 return &cinfo->mds->list;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001019
Fred Isamane0c2b382011-03-23 13:27:53 +00001020 /* Note that we are calling nfs4_fl_calc_j_index on each page
1021 * that ends up being committed to a data server. An attractive
1022 * alternative is to add a field to nfs_write_data and nfs_page
1023 * to store the value calculated in filelayout_write_pagelist
1024 * and just use that here.
1025 */
Fred Isamanb5542842012-04-20 14:47:43 -04001026 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +00001027 i = select_bucket_index(fl, j);
Fred Isamanea2cf222012-04-20 14:47:53 -04001028 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001029 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +00001030 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -05001031 /* Non-empty buckets hold a reference on the lseg. That ref
1032 * is normally transferred to the COMMIT call and released
1033 * there. It could also be released if the last req is pulled
1034 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -04001035 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -05001036 */
Trond Myklebust9369a432012-09-18 20:57:08 -04001037 buckets[i].wlseg = pnfs_get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +00001038 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001039 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -04001040 cinfo->ds->nwritten++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001041 return list;
1042}
1043
Trond Myklebust8dd37752012-03-15 17:16:40 -04001044static void
1045filelayout_mark_request_commit(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001046 struct pnfs_layout_segment *lseg,
1047 struct nfs_commit_info *cinfo)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001048{
1049 struct list_head *list;
1050
Fred Isamanea2cf222012-04-20 14:47:53 -04001051 list = filelayout_choose_commit_list(req, lseg, cinfo);
1052 nfs_request_add_commit_list(req, list, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001053}
1054
Fred Isamane0c2b382011-03-23 13:27:53 +00001055static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1056{
1057 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1058
1059 if (flseg->stripe_type == STRIPE_SPARSE)
1060 return i;
1061 else
1062 return nfs4_fl_calc_ds_index(lseg, i);
1063}
1064
1065static struct nfs_fh *
1066select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1067{
1068 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1069
1070 if (flseg->stripe_type == STRIPE_SPARSE) {
1071 if (flseg->num_fh == 1)
1072 i = 0;
1073 else if (flseg->num_fh == 0)
1074 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1075 return NULL;
1076 }
1077 return flseg->fh_array[i];
1078}
1079
Fred Isaman0b7c0152012-04-20 14:47:39 -04001080static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +00001081{
1082 struct pnfs_layout_segment *lseg = data->lseg;
1083 struct nfs4_pnfs_ds *ds;
1084 u32 idx;
1085 struct nfs_fh *fh;
1086
1087 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1088 ds = nfs4_fl_prepare_ds(lseg, idx);
1089 if (!ds) {
Fred Isamane0c2b382011-03-23 13:27:53 +00001090 prepare_to_resend_writes(data);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001091 filelayout_commit_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +00001092 return -EAGAIN;
1093 }
Andy Adamson3a7936c2012-04-27 17:53:51 -04001094 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1095 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
Fred Isaman0b7c0152012-04-20 14:47:39 -04001096 data->commit_done_cb = filelayout_commit_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -04001097 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamane0c2b382011-03-23 13:27:53 +00001098 data->ds_clp = ds->ds_clp;
1099 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1100 if (fh)
1101 data->args.fh = fh;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001102 return nfs_initiate_commit(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001103 &filelayout_commit_call_ops, how,
1104 RPC_TASK_SOFTCONN);
Fred Isamane0c2b382011-03-23 13:27:53 +00001105}
1106
Trond Myklebust8dd37752012-03-15 17:16:40 -04001107static int
Fred Isaman1763da12012-04-20 14:47:57 -04001108transfer_commit_list(struct list_head *src, struct list_head *dst,
1109 struct nfs_commit_info *cinfo, int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001110{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001111 struct nfs_page *req, *tmp;
1112 int ret = 0;
1113
1114 list_for_each_entry_safe(req, tmp, src, wb_list) {
1115 if (!nfs_lock_request(req))
1116 continue;
Trond Myklebust53b8ee32012-05-22 16:36:27 -04001117 kref_get(&req->wb_kref);
Fred Isamanea2cf222012-04-20 14:47:53 -04001118 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001119 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001120 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001121 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1122 nfs_list_add_request(req, dst);
1123 ret++;
Fred Isaman1763da12012-04-20 14:47:57 -04001124 if ((ret == max) && !cinfo->dreq)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001125 break;
1126 }
Fred Isaman1763da12012-04-20 14:47:57 -04001127 return ret;
1128}
1129
1130static int
1131filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1132 struct nfs_commit_info *cinfo,
1133 int max)
1134{
1135 struct list_head *src = &bucket->written;
1136 struct list_head *dst = &bucket->committing;
1137 int ret;
1138
1139 ret = transfer_commit_list(src, dst, cinfo, max);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001140 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001141 cinfo->ds->nwritten -= ret;
1142 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001143 bucket->clseg = bucket->wlseg;
1144 if (list_empty(src))
1145 bucket->wlseg = NULL;
1146 else
Trond Myklebust9369a432012-09-18 20:57:08 -04001147 pnfs_get_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001148 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001149 return ret;
1150}
1151
Fred Isamand6d6dc72012-03-08 17:29:35 -05001152/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001153 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001154 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001155static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1156 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001157{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001158 int i, rv = 0, cnt;
1159
Fred Isamanea2cf222012-04-20 14:47:53 -04001160 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1161 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1162 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001163 max -= cnt;
1164 rv += cnt;
1165 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001166 return rv;
1167}
1168
Fred Isaman1763da12012-04-20 14:47:57 -04001169/* Pull everything off the committing lists and dump into @dst */
1170static void filelayout_recover_commit_reqs(struct list_head *dst,
1171 struct nfs_commit_info *cinfo)
1172{
1173 struct pnfs_commit_bucket *b;
1174 int i;
1175
1176 /* NOTE cinfo->lock is NOT held, relying on fact that this is
1177 * only called on single thread per dreq.
Trond Myklebust9369a432012-09-18 20:57:08 -04001178 * Can't take the lock because need to do pnfs_put_lseg
Fred Isaman1763da12012-04-20 14:47:57 -04001179 */
1180 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1181 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
1182 BUG_ON(!list_empty(&b->written));
Trond Myklebust9369a432012-09-18 20:57:08 -04001183 pnfs_put_lseg(b->wlseg);
Fred Isaman1763da12012-04-20 14:47:57 -04001184 b->wlseg = NULL;
1185 }
1186 }
1187 cinfo->ds->nwritten = 0;
1188}
1189
Trond Myklebust9390f422012-03-16 13:52:45 -04001190static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001191alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001192{
Fred Isamanea2cf222012-04-20 14:47:53 -04001193 struct pnfs_ds_commit_info *fl_cinfo;
1194 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001195 struct nfs_commit_data *data;
Fred Isamane0c2b382011-03-23 13:27:53 +00001196 int i, j;
Trond Myklebust9390f422012-03-16 13:52:45 -04001197 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001198
Fred Isamanea2cf222012-04-20 14:47:53 -04001199 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001200 bucket = fl_cinfo->buckets;
1201 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1202 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001203 continue;
1204 data = nfs_commitdata_alloc();
1205 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001206 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001207 data->ds_commit_index = i;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001208 data->lseg = bucket->clseg;
1209 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001210 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001211 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001212 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001213
Trond Myklebust9390f422012-03-16 13:52:45 -04001214 /* Clean up on error */
Fred Isaman799ba8d2012-04-20 14:47:38 -04001215 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1216 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001217 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001218 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
Trond Myklebust9369a432012-09-18 20:57:08 -04001219 pnfs_put_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001220 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001221 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001222 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001223 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001224}
1225
1226/* This follows nfs_commit_list pretty closely */
1227static int
1228filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001229 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001230{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001231 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001232 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001233 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001234
1235 if (!list_empty(mds_pages)) {
1236 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001237 if (data != NULL) {
1238 data->lseg = NULL;
1239 list_add(&data->pages, &list);
1240 nreq++;
1241 } else
Fred Isamanea2cf222012-04-20 14:47:53 -04001242 nfs_retry_commit(mds_pages, NULL, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001243 }
1244
Fred Isamanea2cf222012-04-20 14:47:53 -04001245 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001246
1247 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001248 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001249 goto out;
1250 }
1251
Fred Isamanea2cf222012-04-20 14:47:53 -04001252 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001253
1254 list_for_each_entry_safe(data, tmp, &list, pages) {
1255 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001256 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001257 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001258 nfs_initiate_commit(NFS_CLIENT(inode), data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001259 data->mds_ops, how, 0);
Fred Isamane0c2b382011-03-23 13:27:53 +00001260 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001261 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001262
Fred Isamanea2cf222012-04-20 14:47:53 -04001263 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001264 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001265 filelayout_initiate_commit(data, how);
1266 }
1267 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001268out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001269 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001270 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001271}
1272
Benny Halevy1775bc32011-05-20 13:47:33 +02001273static void
1274filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1275{
1276 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1277}
1278
Fred Isaman799ba8d2012-04-20 14:47:38 -04001279static struct pnfs_layout_hdr *
1280filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1281{
1282 struct nfs4_filelayout *flo;
1283
1284 flo = kzalloc(sizeof(*flo), gfp_flags);
1285 return &flo->generic_hdr;
1286}
1287
1288static void
1289filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1290{
1291 kfree(FILELAYOUT_FROM_HDR(lo));
1292}
1293
Fred Isamanea2cf222012-04-20 14:47:53 -04001294static struct pnfs_ds_commit_info *
1295filelayout_get_ds_info(struct inode *inode)
1296{
Fred Isamandf011742012-04-24 14:50:34 -04001297 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1298
1299 if (layout == NULL)
1300 return NULL;
1301 else
1302 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
Fred Isamanea2cf222012-04-20 14:47:53 -04001303}
1304
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001305static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001306 .id = LAYOUT_NFSV4_1_FILES,
1307 .name = "LAYOUT_NFSV4_1_FILES",
1308 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001309 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1310 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001311 .alloc_lseg = filelayout_alloc_lseg,
1312 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001313 .pg_read_ops = &filelayout_pg_read_ops,
1314 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001315 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001316 .mark_request_commit = filelayout_mark_request_commit,
1317 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001318 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isaman1763da12012-04-20 14:47:57 -04001319 .recover_commit_reqs = filelayout_recover_commit_reqs,
Fred Isamane0c2b382011-03-23 13:27:53 +00001320 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001321 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001322 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001323 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001324};
1325
1326static int __init nfs4filelayout_init(void)
1327{
1328 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1329 __func__);
1330 return pnfs_register_layoutdriver(&filelayout_type);
1331}
1332
1333static void __exit nfs4filelayout_exit(void)
1334{
1335 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1336 __func__);
1337 pnfs_unregister_layoutdriver(&filelayout_type);
1338}
1339
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001340MODULE_ALIAS("nfs-layouttype4-1");
1341
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001342module_init(nfs4filelayout_init);
1343module_exit(nfs4filelayout_exit);