blob: 1e42413fab8f3c628e19c34f2fba17248699c586 [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
Trond Myklebust76e697b2012-11-26 14:20:49 -050038#include "nfs4session.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040039#include "internal.h"
Andy Adamson9cb81962012-03-07 10:49:41 -050040#include "delegation.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040041#include "nfs4filelayout.h"
Dean Hildebrand7ab672c2010-10-20 00:18:00 -040042
43#define NFSDBG_FACILITY NFSDBG_PNFS_LD
44
45MODULE_LICENSE("GPL");
46MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
47MODULE_DESCRIPTION("The NFSv4 file layout driver");
48
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000049#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
50
Fred Isamancfe7f412011-03-01 01:34:18 +000051static loff_t
52filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
53 loff_t offset)
54{
55 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
Chris Metcalf3476f112011-08-11 13:54:28 -070056 u64 stripe_no;
57 u32 rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000058
59 offset -= flseg->pattern_offset;
Chris Metcalf3476f112011-08-11 13:54:28 -070060 stripe_no = div_u64(offset, stripe_width);
61 div_u64_rem(offset, flseg->stripe_unit, &rem);
Fred Isamancfe7f412011-03-01 01:34:18 +000062
Chris Metcalf3476f112011-08-11 13:54:28 -070063 return stripe_no * flseg->stripe_unit + rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000064}
65
66/* This function is used by the layout driver to calculate the
67 * offset of the file on the dserver based on whether the
68 * layout type is STRIPE_DENSE or STRIPE_SPARSE
69 */
70static loff_t
71filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
72{
73 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
74
75 switch (flseg->stripe_type) {
76 case STRIPE_SPARSE:
77 return offset;
78
79 case STRIPE_DENSE:
80 return filelayout_get_dense_offset(flseg, offset);
81 }
82
83 BUG();
84}
85
Andy Adamsone7dd79af2012-04-27 17:53:46 -040086static void filelayout_reset_write(struct nfs_write_data *data)
87{
88 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -040089 struct rpc_task *task = &data->task;
90
91 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
92 dprintk("%s Reset task %5u for i/o through MDS "
93 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
94 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -040095 hdr->inode->i_sb->s_id,
96 (long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -040097 data->args.count,
98 (unsigned long long)data->args.offset);
99
100 task->tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
101 &hdr->pages,
102 hdr->completion_ops);
103 }
104}
105
106static void filelayout_reset_read(struct nfs_read_data *data)
107{
108 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400109 struct rpc_task *task = &data->task;
110
111 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
112 dprintk("%s Reset task %5u for i/o through MDS "
113 "(req %s/%lld, %u bytes @ offset %llu)\n", __func__,
114 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -0400115 hdr->inode->i_sb->s_id,
116 (long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400117 data->args.count,
118 (unsigned long long)data->args.offset);
119
120 task->tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
121 &hdr->pages,
122 hdr->completion_ops);
123 }
124}
125
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400126static void filelayout_fenceme(struct inode *inode, struct pnfs_layout_hdr *lo)
127{
128 if (!test_and_clear_bit(NFS_LAYOUT_RETURN, &lo->plh_flags))
129 return;
130 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags);
131 pnfs_return_layout(inode);
132}
133
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000134static int filelayout_async_handle_error(struct rpc_task *task,
135 struct nfs4_state *state,
136 struct nfs_client *clp,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400137 struct pnfs_layout_segment *lseg)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000138{
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400139 struct pnfs_layout_hdr *lo = lseg->pls_layout;
140 struct inode *inode = lo->plh_inode;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400141 struct nfs_server *mds_server = NFS_SERVER(inode);
142 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Andy Adamson9cb81962012-03-07 10:49:41 -0500143 struct nfs_client *mds_client = mds_server->nfs_client;
Andy Adamson671fb892012-04-27 17:53:49 -0400144 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
Andy Adamson9cb81962012-03-07 10:49:41 -0500145
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000146 if (task->tk_status >= 0)
147 return 0;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000148
149 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -0500150 /* MDS state errors */
151 case -NFS4ERR_DELEG_REVOKED:
152 case -NFS4ERR_ADMIN_REVOKED:
153 case -NFS4ERR_BAD_STATEID:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400154 if (state == NULL)
155 break;
Andy Adamson2dc31752012-03-08 11:03:53 -0500156 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500157 case -NFS4ERR_OPENMODE:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400158 if (state == NULL)
159 break;
Andy Adamson9cb81962012-03-07 10:49:41 -0500160 nfs4_schedule_stateid_recovery(mds_server, state);
161 goto wait_on_recovery;
162 case -NFS4ERR_EXPIRED:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400163 if (state != NULL)
164 nfs4_schedule_stateid_recovery(mds_server, state);
Andy Adamson9cb81962012-03-07 10:49:41 -0500165 nfs4_schedule_lease_recovery(mds_client);
166 goto wait_on_recovery;
167 /* DS session errors */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000168 case -NFS4ERR_BADSESSION:
169 case -NFS4ERR_BADSLOT:
170 case -NFS4ERR_BAD_HIGH_SLOT:
171 case -NFS4ERR_DEADSESSION:
172 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
173 case -NFS4ERR_SEQ_FALSE_RETRY:
174 case -NFS4ERR_SEQ_MISORDERED:
175 dprintk("%s ERROR %d, Reset session. Exchangeid "
176 "flags 0x%x\n", __func__, task->tk_status,
177 clp->cl_exchange_flags);
Trond Myklebust9f594792012-05-27 13:02:53 -0400178 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000179 break;
180 case -NFS4ERR_DELAY:
181 case -NFS4ERR_GRACE:
182 case -EKEYEXPIRED:
183 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
184 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400185 case -NFS4ERR_RETRY_UNCACHED_REP:
186 break;
Andy Adamson041245c2012-04-27 17:53:53 -0400187 /* Invalidate Layout errors */
188 case -NFS4ERR_PNFS_NO_LAYOUT:
189 case -ESTALE: /* mapped NFS4ERR_STALE */
190 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
191 case -EISDIR: /* mapped NFS4ERR_ISDIR */
192 case -NFS4ERR_FHEXPIRED:
193 case -NFS4ERR_WRONG_TYPE:
194 dprintk("%s Invalid layout error %d\n", __func__,
195 task->tk_status);
196 /*
197 * Destroy layout so new i/o will get a new layout.
198 * Layout will not be destroyed until all current lseg
199 * references are put. Mark layout as invalid to resend failed
200 * i/o and all i/o waiting on the slot table to the MDS until
201 * layout is destroyed and a new valid layout is obtained.
202 */
Andy Adamsond42e7872012-05-22 08:09:28 -0400203 pnfs_destroy_layout(NFS_I(inode));
Andy Adamson041245c2012-04-27 17:53:53 -0400204 rpc_wake_up(&tbl->slot_tbl_waitq);
205 goto reset;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400206 /* RPC connection errors */
207 case -ECONNREFUSED:
208 case -EHOSTDOWN:
209 case -EHOSTUNREACH:
210 case -ENETUNREACH:
211 case -EIO:
212 case -ETIMEDOUT:
213 case -EPIPE:
214 dprintk("%s DS connection error %d\n", __func__,
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000215 task->tk_status);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400216 nfs4_mark_deviceid_unavailable(devid);
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400217 set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags);
Andy Adamson671fb892012-04-27 17:53:49 -0400218 rpc_wake_up(&tbl->slot_tbl_waitq);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400219 /* fall through */
220 default:
Andy Adamson041245c2012-04-27 17:53:53 -0400221reset:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400222 dprintk("%s Retry through MDS. Error %d\n", __func__,
223 task->tk_status);
224 return -NFS4ERR_RESET_TO_MDS;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000225 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500226out:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000227 task->tk_status = 0;
228 return -EAGAIN;
Andy Adamson9cb81962012-03-07 10:49:41 -0500229wait_on_recovery:
230 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
231 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
232 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
233 goto out;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000234}
235
236/* NFS_PROTO call done callback routines */
237
238static int filelayout_read_done_cb(struct rpc_task *task,
239 struct nfs_read_data *data)
240{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400241 struct nfs_pgio_header *hdr = data->header;
242 int err;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000243
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400244 err = filelayout_async_handle_error(task, data->args.context->state,
245 data->ds_clp, hdr->lseg);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000246
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400247 switch (err) {
248 case -NFS4ERR_RESET_TO_MDS:
249 filelayout_reset_read(data);
250 return task->tk_status;
251 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700252 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000253 return -EAGAIN;
254 }
255
256 return 0;
257}
258
Andy Adamson16b374c2010-10-20 00:18:04 -0400259/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000260 * We reference the rpc_cred of the first WRITE that triggers the need for
261 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
262 * rfc5661 is not clear about which credential should be used.
263 */
264static void
265filelayout_set_layoutcommit(struct nfs_write_data *wdata)
266{
Fred Isamancd841602012-04-20 14:47:44 -0400267 struct nfs_pgio_header *hdr = wdata->header;
268
269 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Andy Adamson863a3c62011-03-23 13:27:54 +0000270 wdata->res.verf->committed == NFS_FILE_SYNC)
271 return;
272
273 pnfs_set_layoutcommit(wdata);
Fred Isamancd841602012-04-20 14:47:44 -0400274 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
275 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000276}
277
Trond Myklebust1dfed272012-09-18 19:51:12 -0400278bool
279filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
280{
281 return filelayout_test_devid_invalid(node) ||
282 nfs4_test_deviceid_unavailable(node);
283}
284
285static bool
286filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
287{
288 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
289
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400290 return filelayout_test_devid_unavailable(node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400291}
292
Andy Adamson863a3c62011-03-23 13:27:54 +0000293/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000294 * Call ops for the async read/write cases
295 * In the case of dense layouts, the offset needs to be reset to its
296 * original value.
297 */
298static void filelayout_read_prepare(struct rpc_task *task, void *data)
299{
Fred Isamancd12ae32012-04-20 14:47:42 -0400300 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000301
Andy Adamson041245c2012-04-27 17:53:53 -0400302 if (filelayout_reset_to_mds(rdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400303 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
304 filelayout_reset_read(rdata);
305 rpc_exit(task, 0);
306 return;
307 }
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000308 rdata->read_done_cb = filelayout_read_done_cb;
309
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400310 nfs41_setup_sequence(rdata->ds_clp->cl_session,
311 &rdata->args.seq_args,
312 &rdata->res.seq_res,
313 task);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000314}
315
316static void filelayout_read_call_done(struct rpc_task *task, void *data)
317{
Fred Isamancd12ae32012-04-20 14:47:42 -0400318 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000319
320 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
321
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400322 if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) &&
323 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400324 return;
325
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000326 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400327 rdata->header->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000328}
329
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500330static void filelayout_read_count_stats(struct rpc_task *task, void *data)
331{
Fred Isamancd12ae32012-04-20 14:47:42 -0400332 struct nfs_read_data *rdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500333
Fred Isamancd841602012-04-20 14:47:44 -0400334 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500335}
336
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000337static void filelayout_read_release(void *data)
338{
Fred Isamancd12ae32012-04-20 14:47:42 -0400339 struct nfs_read_data *rdata = data;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400340 struct pnfs_layout_hdr *lo = rdata->header->lseg->pls_layout;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000341
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400342 filelayout_fenceme(lo->plh_inode, lo);
Andy Adamson996074c2012-05-22 08:09:26 -0400343 nfs_put_client(rdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400344 rdata->header->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000345}
346
Fred Isamana69aef12011-03-03 15:13:47 +0000347static int filelayout_write_done_cb(struct rpc_task *task,
348 struct nfs_write_data *data)
349{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400350 struct nfs_pgio_header *hdr = data->header;
351 int err;
Fred Isamana69aef12011-03-03 15:13:47 +0000352
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400353 err = filelayout_async_handle_error(task, data->args.context->state,
354 data->ds_clp, hdr->lseg);
355
356 switch (err) {
357 case -NFS4ERR_RESET_TO_MDS:
358 filelayout_reset_write(data);
359 return task->tk_status;
360 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700361 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000362 return -EAGAIN;
363 }
364
Andy Adamson863a3c62011-03-23 13:27:54 +0000365 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000366 return 0;
367}
368
Fred Isamane0c2b382011-03-23 13:27:53 +0000369/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400370static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000371{
372 struct nfs_page *first = nfs_list_entry(data->pages.next);
373
374 data->task.tk_status = 0;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -0400375 memcpy(&data->verf.verifier, &first->wb_verf,
376 sizeof(data->verf.verifier));
377 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
Fred Isamane0c2b382011-03-23 13:27:53 +0000378}
379
380static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400381 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000382{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400383 int err;
Fred Isamane0c2b382011-03-23 13:27:53 +0000384
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400385 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
386 data->lseg);
387
388 switch (err) {
389 case -NFS4ERR_RESET_TO_MDS:
390 prepare_to_resend_writes(data);
391 return -EAGAIN;
392 case -EAGAIN:
393 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000394 return -EAGAIN;
395 }
396
397 return 0;
398}
399
Fred Isamana69aef12011-03-03 15:13:47 +0000400static void filelayout_write_prepare(struct rpc_task *task, void *data)
401{
Fred Isamancd12ae32012-04-20 14:47:42 -0400402 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000403
Andy Adamson041245c2012-04-27 17:53:53 -0400404 if (filelayout_reset_to_mds(wdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400405 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
406 filelayout_reset_write(wdata);
407 rpc_exit(task, 0);
408 return;
409 }
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400410 nfs41_setup_sequence(wdata->ds_clp->cl_session,
411 &wdata->args.seq_args,
412 &wdata->res.seq_res,
413 task);
Fred Isamana69aef12011-03-03 15:13:47 +0000414}
415
416static void filelayout_write_call_done(struct rpc_task *task, void *data)
417{
Fred Isamancd12ae32012-04-20 14:47:42 -0400418 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000419
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400420 if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) &&
421 task->tk_status == 0)
Andy Adamson0ad2f372012-04-27 17:53:48 -0400422 return;
423
Fred Isamana69aef12011-03-03 15:13:47 +0000424 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400425 wdata->header->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000426}
427
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500428static void filelayout_write_count_stats(struct rpc_task *task, void *data)
429{
Fred Isamancd12ae32012-04-20 14:47:42 -0400430 struct nfs_write_data *wdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500431
Fred Isamancd841602012-04-20 14:47:44 -0400432 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500433}
434
Fred Isamana69aef12011-03-03 15:13:47 +0000435static void filelayout_write_release(void *data)
436{
Fred Isamancd12ae32012-04-20 14:47:42 -0400437 struct nfs_write_data *wdata = data;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400438 struct pnfs_layout_hdr *lo = wdata->header->lseg->pls_layout;
Fred Isamana69aef12011-03-03 15:13:47 +0000439
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400440 filelayout_fenceme(lo->plh_inode, lo);
Andy Adamson996074c2012-05-22 08:09:26 -0400441 nfs_put_client(wdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400442 wdata->header->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000443}
444
Fred Isaman0b7c0152012-04-20 14:47:39 -0400445static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000446{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400447 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000448
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400449 nfs41_setup_sequence(wdata->ds_clp->cl_session,
450 &wdata->args.seq_args,
451 &wdata->res.seq_res,
452 task);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400453}
454
455static void filelayout_write_commit_done(struct rpc_task *task, void *data)
456{
457 struct nfs_commit_data *wdata = data;
458
459 /* Note this may cause RPC to be resent */
460 wdata->mds_ops->rpc_call_done(task, data);
461}
462
463static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
464{
465 struct nfs_commit_data *cdata = data;
466
467 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
468}
469
470static void filelayout_commit_release(void *calldata)
471{
472 struct nfs_commit_data *data = calldata;
473
Fred Isamanf453a542012-04-20 14:47:54 -0400474 data->completion_ops->completion(data);
Trond Myklebust9369a432012-09-18 20:57:08 -0400475 pnfs_put_lseg(data->lseg);
Andy Adamson3a7936c2012-04-27 17:53:51 -0400476 nfs_put_client(data->ds_clp);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400477 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000478}
479
Trond Myklebust17280172012-03-11 13:11:00 -0400480static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000481 .rpc_call_prepare = filelayout_read_prepare,
482 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500483 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000484 .rpc_release = filelayout_read_release,
485};
486
Trond Myklebust17280172012-03-11 13:11:00 -0400487static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000488 .rpc_call_prepare = filelayout_write_prepare,
489 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500490 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000491 .rpc_release = filelayout_write_release,
492};
493
Trond Myklebust17280172012-03-11 13:11:00 -0400494static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400495 .rpc_call_prepare = filelayout_commit_prepare,
496 .rpc_call_done = filelayout_write_commit_done,
497 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000498 .rpc_release = filelayout_commit_release,
499};
500
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000501static enum pnfs_try_status
502filelayout_read_pagelist(struct nfs_read_data *data)
503{
Fred Isamancd841602012-04-20 14:47:44 -0400504 struct nfs_pgio_header *hdr = data->header;
505 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000506 struct nfs4_pnfs_ds *ds;
507 loff_t offset = data->args.offset;
508 u32 j, idx;
509 struct nfs_fh *fh;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000510
511 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400512 __func__, hdr->inode->i_ino,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000513 data->args.pgbase, (size_t)data->args.count, offset);
514
515 /* Retrieve the correct rpc_client for the byte range */
516 j = nfs4_fl_calc_j_index(lseg, offset);
517 idx = nfs4_fl_calc_ds_index(lseg, j);
518 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400519 if (!ds)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000520 return PNFS_NOT_ATTEMPTED;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400521 dprintk("%s USE DS: %s cl_count %d\n", __func__,
522 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000523
524 /* No multipath support. Use first DS */
Andy Adamson3a7936c2012-04-27 17:53:51 -0400525 atomic_inc(&ds->ds_clp->cl_count);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000526 data->ds_clp = ds->ds_clp;
527 fh = nfs4_fl_select_ds_fh(lseg, j);
528 if (fh)
529 data->args.fh = fh;
530
531 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
532 data->mds_offset = offset;
533
534 /* Perform an asynchronous read to ds */
Trond Myklebustbc5a89b2012-10-15 14:58:04 -0400535 nfs_initiate_read(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400536 &filelayout_read_call_ops, RPC_TASK_SOFTCONN);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000537 return PNFS_ATTEMPTED;
538}
539
Fred Isamana69aef12011-03-03 15:13:47 +0000540/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000541static enum pnfs_try_status
542filelayout_write_pagelist(struct nfs_write_data *data, int sync)
543{
Fred Isamancd841602012-04-20 14:47:44 -0400544 struct nfs_pgio_header *hdr = data->header;
545 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000546 struct nfs4_pnfs_ds *ds;
547 loff_t offset = data->args.offset;
548 u32 j, idx;
549 struct nfs_fh *fh;
Fred Isamana69aef12011-03-03 15:13:47 +0000550
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 */
Trond Myklebustbc5a89b2012-10-15 14:58:04 -0400574 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 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000578}
579
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000580/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400581 * filelayout_check_layout()
582 *
583 * Make sure layout segment parameters are sane WRT the device.
584 * At this point no generic layer initialization of the lseg has occurred,
585 * and nothing has been added to the layout_hdr cache.
586 *
587 */
588static int
589filelayout_check_layout(struct pnfs_layout_hdr *lo,
590 struct nfs4_filelayout_segment *fl,
591 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400592 struct nfs4_deviceid *id,
593 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400594{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400595 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400596 struct nfs4_file_layout_dsaddr *dsaddr;
597 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000598 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400599
600 dprintk("--> %s\n", __func__);
601
Andy Adamson7c24d942011-06-13 18:22:38 -0400602 /* FIXME: remove this check when layout segment support is added */
603 if (lgr->range.offset != 0 ||
604 lgr->range.length != NFS4_MAX_UINT64) {
605 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
606 __func__);
607 goto out;
608 }
609
Andy Adamson16b374c2010-10-20 00:18:04 -0400610 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500611 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400612 __func__, fl->pattern_offset);
613 goto out;
614 }
615
Benny Halevy75247af2011-02-22 15:56:01 -0800616 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
617 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400618 __func__, fl->stripe_unit);
619 goto out;
620 }
621
622 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300623 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
624 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400625 if (d == NULL) {
Trond Myklebust78e4e052012-09-18 21:02:29 -0400626 dsaddr = filelayout_get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400627 if (dsaddr == NULL)
628 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400629 } else
630 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400631 /* Found deviceid is unavailable */
632 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400633 goto out_put;
634
Andy Adamson16b374c2010-10-20 00:18:04 -0400635 fl->dsaddr = dsaddr;
636
Chuck Levere4149662011-10-25 12:18:03 -0400637 if (fl->first_stripe_index >= dsaddr->stripe_count) {
638 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400639 __func__, fl->first_stripe_index);
640 goto out_put;
641 }
642
643 if ((fl->stripe_type == STRIPE_SPARSE &&
644 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
645 (fl->stripe_type == STRIPE_DENSE &&
646 fl->num_fh != dsaddr->stripe_count)) {
647 dprintk("%s num_fh %u not valid for given packing\n",
648 __func__, fl->num_fh);
649 goto out_put;
650 }
651
652 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
653 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
654 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
655 nfss->wsize);
656 }
657
658 status = 0;
659out:
660 dprintk("--> %s returns %d\n", __func__, status);
661 return status;
662out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000663 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400664 goto out;
665}
666
667static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
668{
669 int i;
670
671 for (i = 0; i < fl->num_fh; i++) {
672 if (!fl->fh_array[i])
673 break;
674 kfree(fl->fh_array[i]);
675 }
676 kfree(fl->fh_array);
677 fl->fh_array = NULL;
678}
679
680static void
681_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
682{
683 filelayout_free_fh_array(fl);
684 kfree(fl);
685}
686
687static int
688filelayout_decode_layout(struct pnfs_layout_hdr *flo,
689 struct nfs4_filelayout_segment *fl,
690 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400691 struct nfs4_deviceid *id,
692 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400693{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400694 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400695 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400696 struct page *scratch;
697 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400698 uint32_t nfl_util;
699 int i;
700
701 dprintk("%s: set_layout_map Begin\n", __func__);
702
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400703 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400704 if (!scratch)
705 return -ENOMEM;
706
Benny Halevyf7da7a12011-05-19 14:16:47 -0400707 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400708 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
709
710 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
711 * num_fh (4) */
712 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
713 if (unlikely(!p))
714 goto out_err;
715
Andy Adamson16b374c2010-10-20 00:18:04 -0400716 memcpy(id, p, sizeof(*id));
717 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400718 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400719
720 nfl_util = be32_to_cpup(p++);
721 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
722 fl->commit_through_mds = 1;
723 if (nfl_util & NFL4_UFLG_DENSE)
724 fl->stripe_type = STRIPE_DENSE;
725 else
726 fl->stripe_type = STRIPE_SPARSE;
727 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
728
729 fl->first_stripe_index = be32_to_cpup(p++);
730 p = xdr_decode_hyper(p, &fl->pattern_offset);
731 fl->num_fh = be32_to_cpup(p++);
732
733 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
734 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
735 fl->pattern_offset);
736
Andy Adamsoncec765c2011-06-13 18:36:17 -0400737 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
738 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400739 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400740 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400741 goto out_err;
742
Andy Adamsoncec765c2011-06-13 18:36:17 -0400743 if (fl->num_fh > 0) {
Trond Myklebust1813bad2012-10-11 14:36:52 -0400744 fl->fh_array = kcalloc(fl->num_fh, sizeof(fl->fh_array[0]),
Andy Adamsoncec765c2011-06-13 18:36:17 -0400745 gfp_flags);
746 if (!fl->fh_array)
747 goto out_err;
748 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400749
750 for (i = 0; i < fl->num_fh; i++) {
751 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400752 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400753 if (!fl->fh_array[i])
754 goto out_err_free;
755
756 p = xdr_inline_decode(&stream, 4);
757 if (unlikely(!p))
758 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400759 fl->fh_array[i]->size = be32_to_cpup(p++);
760 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500761 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400762 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400763 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400764 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400765
766 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
767 if (unlikely(!p))
768 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400769 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400770 dprintk("DEBUG: %s: fh len %d\n", __func__,
771 fl->fh_array[i]->size);
772 }
773
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400774 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400775 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400776
777out_err_free:
778 filelayout_free_fh_array(fl);
779out_err:
780 __free_page(scratch);
781 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400782}
783
Fred Isamanc8795132011-03-23 13:27:49 +0000784static void
785filelayout_free_lseg(struct pnfs_layout_segment *lseg)
786{
787 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
788
789 dprintk("--> %s\n", __func__);
790 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400791 /* This assumes a single RW lseg */
792 if (lseg->pls_range.iomode == IOMODE_RW) {
793 struct nfs4_filelayout *flo;
794
795 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
796 flo->commit_info.nbuckets = 0;
797 kfree(flo->commit_info.buckets);
798 flo->commit_info.buckets = NULL;
799 }
Fred Isamanc8795132011-03-23 13:27:49 +0000800 _filelayout_free_lseg(fl);
801}
802
Fred Isaman799ba8d2012-04-20 14:47:38 -0400803static int
804filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400805 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400806 gfp_t gfp_flags)
807{
808 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400809 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400810 int size;
811
812 if (fl->commit_through_mds)
813 return 0;
Fred Isamanea2cf222012-04-20 14:47:53 -0400814 if (cinfo->ds->nbuckets != 0) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400815 /* This assumes there is only one IOMODE_RW lseg. What
816 * we really want to do is have a layout_hdr level
817 * dictionary of <multipath_list4, fh> keys, each
818 * associated with a struct list_head, populated by calls
819 * to filelayout_write_pagelist().
820 * */
821 return 0;
822 }
823
824 size = (fl->stripe_type == STRIPE_SPARSE) ?
825 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
826
Fred Isamanea2cf222012-04-20 14:47:53 -0400827 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400828 gfp_flags);
829 if (!buckets)
830 return -ENOMEM;
831 else {
832 int i;
833
Fred Isamanea2cf222012-04-20 14:47:53 -0400834 spin_lock(cinfo->lock);
835 if (cinfo->ds->nbuckets != 0)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400836 kfree(buckets);
837 else {
Fred Isamanea2cf222012-04-20 14:47:53 -0400838 cinfo->ds->buckets = buckets;
839 cinfo->ds->nbuckets = size;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400840 for (i = 0; i < size; i++) {
841 INIT_LIST_HEAD(&buckets[i].written);
842 INIT_LIST_HEAD(&buckets[i].committing);
843 }
844 }
Fred Isamanea2cf222012-04-20 14:47:53 -0400845 spin_unlock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400846 return 0;
847 }
848}
849
Andy Adamson16b374c2010-10-20 00:18:04 -0400850static struct pnfs_layout_segment *
851filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400852 struct nfs4_layoutget_res *lgr,
853 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400854{
855 struct nfs4_filelayout_segment *fl;
856 int rc;
857 struct nfs4_deviceid id;
858
859 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400860 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400861 if (!fl)
862 return NULL;
863
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400864 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
865 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400866 _filelayout_free_lseg(fl);
867 return NULL;
868 }
869 return &fl->generic_hdr;
870}
871
Fred Isaman94ad1c82011-03-01 01:34:14 +0000872/*
873 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
874 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300875 * return true : coalesce page
876 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000877 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400878static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000879filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
880 struct nfs_page *req)
881{
882 u64 p_stripe, r_stripe;
883 u32 stripe_unit;
884
Benny Halevy19345cb2011-06-19 18:33:46 -0400885 if (!pnfs_generic_pg_test(pgio, prev, req) ||
886 !nfs_generic_pg_test(pgio, prev, req))
887 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300888
Fred Isamanb5542842012-04-20 14:47:43 -0400889 p_stripe = (u64)req_offset(prev);
890 r_stripe = (u64)req_offset(req);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000891 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
892
893 do_div(p_stripe, stripe_unit);
894 do_div(r_stripe, stripe_unit);
895
896 return (p_stripe == r_stripe);
897}
898
Trond Myklebust17280172012-03-11 13:11:00 -0400899static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400900filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
901 struct nfs_page *req)
902{
Trond Myklebustbc5a89b2012-10-15 14:58:04 -0400903 WARN_ON_ONCE(pgio->pg_lseg != NULL);
Andy Adamson7c24d942011-06-13 18:22:38 -0400904
Fred Isaman1825a0d2012-04-20 19:55:31 -0400905 if (req->wb_offset != req->wb_pgbase) {
906 /*
907 * Handling unaligned pages is difficult, because have to
908 * somehow split a req in two in certain cases in the
909 * pg.test code. Avoid this by just not using pnfs
910 * in this case.
911 */
912 nfs_pageio_reset_read_mds(pgio);
913 return;
914 }
Andy Adamson7c24d942011-06-13 18:22:38 -0400915 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
916 req->wb_context,
917 0,
918 NFS4_MAX_UINT64,
919 IOMODE_READ,
920 GFP_KERNEL);
921 /* If no lseg, fall back to read through mds */
922 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400923 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400924}
925
Trond Myklebust17280172012-03-11 13:11:00 -0400926static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400927filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
928 struct nfs_page *req)
929{
Fred Isamanea2cf222012-04-20 14:47:53 -0400930 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400931 int status;
932
Trond Myklebustbc5a89b2012-10-15 14:58:04 -0400933 WARN_ON_ONCE(pgio->pg_lseg != NULL);
Andy Adamson7c24d942011-06-13 18:22:38 -0400934
Fred Isaman1825a0d2012-04-20 19:55:31 -0400935 if (req->wb_offset != req->wb_pgbase)
936 goto out_mds;
Andy Adamson7c24d942011-06-13 18:22:38 -0400937 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
938 req->wb_context,
939 0,
940 NFS4_MAX_UINT64,
941 IOMODE_RW,
942 GFP_NOFS);
943 /* If no lseg, fall back to write through mds */
944 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400945 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -0400946 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
947 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400948 if (status < 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -0400949 pnfs_put_lseg(pgio->pg_lseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400950 pgio->pg_lseg = NULL;
951 goto out_mds;
952 }
953 return;
954out_mds:
955 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400956}
957
Trond Myklebust1751c362011-06-10 13:30:23 -0400958static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400959 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400960 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400961 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400962};
963
964static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400965 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400966 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400967 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400968};
969
Fred Isamane0c2b382011-03-23 13:27:53 +0000970static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
971{
972 if (fl->stripe_type == STRIPE_SPARSE)
973 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
974 else
975 return j;
976}
977
Fred Isamand6d6dc72012-03-08 17:29:35 -0500978/* The generic layer is about to remove the req from the commit list.
979 * If this will make the bucket empty, it will need to put the lseg reference.
Fred Isamand6d6dc72012-03-08 17:29:35 -0500980 */
Trond Myklebust8dd37752012-03-15 17:16:40 -0400981static void
Fred Isamanea2cf222012-04-20 14:47:53 -0400982filelayout_clear_request_commit(struct nfs_page *req,
983 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +0000984{
Trond Myklebust8dd37752012-03-15 17:16:40 -0400985 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -0400986
Fred Isamanea2cf222012-04-20 14:47:53 -0400987 spin_lock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400988 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
989 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -0400990 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500991 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -0400992 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500993
Fred Isaman799ba8d2012-04-20 14:47:38 -0400994 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -0400995 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400996 written);
997 freeme = bucket->wlseg;
998 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500999 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001000out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001001 nfs_request_remove_commit_list(req, cinfo);
1002 spin_unlock(cinfo->lock);
Trond Myklebust9369a432012-09-18 20:57:08 -04001003 pnfs_put_lseg(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001004}
1005
1006static struct list_head *
1007filelayout_choose_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001008 struct pnfs_layout_segment *lseg,
1009 struct nfs_commit_info *cinfo)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001010{
Fred Isamane0c2b382011-03-23 13:27:53 +00001011 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1012 u32 i, j;
1013 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -04001014 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +00001015
Fred Isamand6d6dc72012-03-08 17:29:35 -05001016 if (fl->commit_through_mds)
Fred Isamanea2cf222012-04-20 14:47:53 -04001017 return &cinfo->mds->list;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001018
Fred Isamane0c2b382011-03-23 13:27:53 +00001019 /* Note that we are calling nfs4_fl_calc_j_index on each page
1020 * that ends up being committed to a data server. An attractive
1021 * alternative is to add a field to nfs_write_data and nfs_page
1022 * to store the value calculated in filelayout_write_pagelist
1023 * and just use that here.
1024 */
Fred Isamanb5542842012-04-20 14:47:43 -04001025 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +00001026 i = select_bucket_index(fl, j);
Fred Isamanea2cf222012-04-20 14:47:53 -04001027 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001028 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +00001029 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -05001030 /* Non-empty buckets hold a reference on the lseg. That ref
1031 * is normally transferred to the COMMIT call and released
1032 * there. It could also be released if the last req is pulled
1033 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -04001034 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -05001035 */
Trond Myklebust9369a432012-09-18 20:57:08 -04001036 buckets[i].wlseg = pnfs_get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +00001037 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001038 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -04001039 cinfo->ds->nwritten++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001040 return list;
1041}
1042
Trond Myklebust8dd37752012-03-15 17:16:40 -04001043static void
1044filelayout_mark_request_commit(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001045 struct pnfs_layout_segment *lseg,
1046 struct nfs_commit_info *cinfo)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001047{
1048 struct list_head *list;
1049
Fred Isamanea2cf222012-04-20 14:47:53 -04001050 list = filelayout_choose_commit_list(req, lseg, cinfo);
1051 nfs_request_add_commit_list(req, list, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001052}
1053
Fred Isamane0c2b382011-03-23 13:27:53 +00001054static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1055{
1056 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1057
1058 if (flseg->stripe_type == STRIPE_SPARSE)
1059 return i;
1060 else
1061 return nfs4_fl_calc_ds_index(lseg, i);
1062}
1063
1064static struct nfs_fh *
1065select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1066{
1067 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1068
1069 if (flseg->stripe_type == STRIPE_SPARSE) {
1070 if (flseg->num_fh == 1)
1071 i = 0;
1072 else if (flseg->num_fh == 0)
1073 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1074 return NULL;
1075 }
1076 return flseg->fh_array[i];
1077}
1078
Fred Isaman0b7c0152012-04-20 14:47:39 -04001079static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +00001080{
1081 struct pnfs_layout_segment *lseg = data->lseg;
1082 struct nfs4_pnfs_ds *ds;
1083 u32 idx;
1084 struct nfs_fh *fh;
1085
1086 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1087 ds = nfs4_fl_prepare_ds(lseg, idx);
1088 if (!ds) {
Fred Isamane0c2b382011-03-23 13:27:53 +00001089 prepare_to_resend_writes(data);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001090 filelayout_commit_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +00001091 return -EAGAIN;
1092 }
Andy Adamson3a7936c2012-04-27 17:53:51 -04001093 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1094 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
Fred Isaman0b7c0152012-04-20 14:47:39 -04001095 data->commit_done_cb = filelayout_commit_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -04001096 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamane0c2b382011-03-23 13:27:53 +00001097 data->ds_clp = ds->ds_clp;
1098 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1099 if (fh)
1100 data->args.fh = fh;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001101 return nfs_initiate_commit(ds->ds_clp->cl_rpcclient, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001102 &filelayout_commit_call_ops, how,
1103 RPC_TASK_SOFTCONN);
Fred Isamane0c2b382011-03-23 13:27:53 +00001104}
1105
Trond Myklebust8dd37752012-03-15 17:16:40 -04001106static int
Fred Isaman1763da12012-04-20 14:47:57 -04001107transfer_commit_list(struct list_head *src, struct list_head *dst,
1108 struct nfs_commit_info *cinfo, int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001109{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001110 struct nfs_page *req, *tmp;
1111 int ret = 0;
1112
1113 list_for_each_entry_safe(req, tmp, src, wb_list) {
1114 if (!nfs_lock_request(req))
1115 continue;
Trond Myklebust53b8ee32012-05-22 16:36:27 -04001116 kref_get(&req->wb_kref);
Fred Isamanea2cf222012-04-20 14:47:53 -04001117 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001118 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001119 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001120 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1121 nfs_list_add_request(req, dst);
1122 ret++;
Fred Isaman1763da12012-04-20 14:47:57 -04001123 if ((ret == max) && !cinfo->dreq)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001124 break;
1125 }
Fred Isaman1763da12012-04-20 14:47:57 -04001126 return ret;
1127}
1128
1129static int
1130filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1131 struct nfs_commit_info *cinfo,
1132 int max)
1133{
1134 struct list_head *src = &bucket->written;
1135 struct list_head *dst = &bucket->committing;
1136 int ret;
1137
1138 ret = transfer_commit_list(src, dst, cinfo, max);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001139 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001140 cinfo->ds->nwritten -= ret;
1141 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001142 bucket->clseg = bucket->wlseg;
1143 if (list_empty(src))
1144 bucket->wlseg = NULL;
1145 else
Trond Myklebust9369a432012-09-18 20:57:08 -04001146 pnfs_get_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001147 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001148 return ret;
1149}
1150
Fred Isamand6d6dc72012-03-08 17:29:35 -05001151/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001152 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001153 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001154static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1155 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001156{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001157 int i, rv = 0, cnt;
1158
Fred Isamanea2cf222012-04-20 14:47:53 -04001159 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1160 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1161 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001162 max -= cnt;
1163 rv += cnt;
1164 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001165 return rv;
1166}
1167
Fred Isaman1763da12012-04-20 14:47:57 -04001168/* Pull everything off the committing lists and dump into @dst */
1169static void filelayout_recover_commit_reqs(struct list_head *dst,
1170 struct nfs_commit_info *cinfo)
1171{
1172 struct pnfs_commit_bucket *b;
1173 int i;
1174
1175 /* NOTE cinfo->lock is NOT held, relying on fact that this is
1176 * only called on single thread per dreq.
Trond Myklebust9369a432012-09-18 20:57:08 -04001177 * Can't take the lock because need to do pnfs_put_lseg
Fred Isaman1763da12012-04-20 14:47:57 -04001178 */
1179 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1180 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
Trond Myklebust9369a432012-09-18 20:57:08 -04001181 pnfs_put_lseg(b->wlseg);
Fred Isaman1763da12012-04-20 14:47:57 -04001182 b->wlseg = NULL;
1183 }
1184 }
1185 cinfo->ds->nwritten = 0;
1186}
1187
Trond Myklebust9390f422012-03-16 13:52:45 -04001188static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001189alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001190{
Fred Isamanea2cf222012-04-20 14:47:53 -04001191 struct pnfs_ds_commit_info *fl_cinfo;
1192 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001193 struct nfs_commit_data *data;
Fred Isamane0c2b382011-03-23 13:27:53 +00001194 int i, j;
Trond Myklebust9390f422012-03-16 13:52:45 -04001195 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001196
Fred Isamanea2cf222012-04-20 14:47:53 -04001197 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001198 bucket = fl_cinfo->buckets;
1199 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1200 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001201 continue;
1202 data = nfs_commitdata_alloc();
1203 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001204 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001205 data->ds_commit_index = i;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001206 data->lseg = bucket->clseg;
1207 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001208 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001209 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001210 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001211
Trond Myklebust9390f422012-03-16 13:52:45 -04001212 /* Clean up on error */
Fred Isaman799ba8d2012-04-20 14:47:38 -04001213 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1214 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001215 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001216 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
Trond Myklebust9369a432012-09-18 20:57:08 -04001217 pnfs_put_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001218 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001219 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001220 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001221 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001222}
1223
1224/* This follows nfs_commit_list pretty closely */
1225static int
1226filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001227 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001228{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001229 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001230 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001231 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001232
1233 if (!list_empty(mds_pages)) {
1234 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001235 if (data != NULL) {
1236 data->lseg = NULL;
1237 list_add(&data->pages, &list);
1238 nreq++;
1239 } else
Fred Isamanea2cf222012-04-20 14:47:53 -04001240 nfs_retry_commit(mds_pages, NULL, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001241 }
1242
Fred Isamanea2cf222012-04-20 14:47:53 -04001243 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001244
1245 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001246 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001247 goto out;
1248 }
1249
Fred Isamanea2cf222012-04-20 14:47:53 -04001250 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001251
1252 list_for_each_entry_safe(data, tmp, &list, pages) {
1253 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001254 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001255 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001256 nfs_initiate_commit(NFS_CLIENT(inode), data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001257 data->mds_ops, how, 0);
Fred Isamane0c2b382011-03-23 13:27:53 +00001258 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001259 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001260
Fred Isamanea2cf222012-04-20 14:47:53 -04001261 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001262 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001263 filelayout_initiate_commit(data, how);
1264 }
1265 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001266out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001267 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001268 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001269}
1270
Benny Halevy1775bc32011-05-20 13:47:33 +02001271static void
1272filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1273{
1274 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1275}
1276
Fred Isaman799ba8d2012-04-20 14:47:38 -04001277static struct pnfs_layout_hdr *
1278filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1279{
1280 struct nfs4_filelayout *flo;
1281
1282 flo = kzalloc(sizeof(*flo), gfp_flags);
1283 return &flo->generic_hdr;
1284}
1285
1286static void
1287filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1288{
1289 kfree(FILELAYOUT_FROM_HDR(lo));
1290}
1291
Fred Isamanea2cf222012-04-20 14:47:53 -04001292static struct pnfs_ds_commit_info *
1293filelayout_get_ds_info(struct inode *inode)
1294{
Fred Isamandf011742012-04-24 14:50:34 -04001295 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1296
1297 if (layout == NULL)
1298 return NULL;
1299 else
1300 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
Fred Isamanea2cf222012-04-20 14:47:53 -04001301}
1302
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001303static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001304 .id = LAYOUT_NFSV4_1_FILES,
1305 .name = "LAYOUT_NFSV4_1_FILES",
1306 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001307 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1308 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001309 .alloc_lseg = filelayout_alloc_lseg,
1310 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001311 .pg_read_ops = &filelayout_pg_read_ops,
1312 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001313 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001314 .mark_request_commit = filelayout_mark_request_commit,
1315 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001316 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isaman1763da12012-04-20 14:47:57 -04001317 .recover_commit_reqs = filelayout_recover_commit_reqs,
Fred Isamane0c2b382011-03-23 13:27:53 +00001318 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001319 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001320 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001321 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001322};
1323
1324static int __init nfs4filelayout_init(void)
1325{
1326 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1327 __func__);
1328 return pnfs_register_layoutdriver(&filelayout_type);
1329}
1330
1331static void __exit nfs4filelayout_exit(void)
1332{
1333 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1334 __func__);
1335 pnfs_unregister_layoutdriver(&filelayout_type);
1336}
1337
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001338MODULE_ALIAS("nfs-layouttype4-1");
1339
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001340module_init(nfs4filelayout_init);
1341module_exit(nfs4filelayout_exit);