blob: 6620606f2687b427f08813377a87201199e038ad [file] [log] [blame]
Ricardo Labiaga85e174b2010-10-20 00:17:58 -04001/*
2 * pNFS functions to call and manage layout drivers.
3 *
4 * Copyright (c) 2002 [year of first publication]
5 * The Regents of the University of Michigan
6 * All Rights Reserved
7 *
8 * Dean Hildebrand <dhildebz@umich.edu>
9 *
10 * Permission is granted to use, copy, create derivative works, and
11 * redistribute this software and such derivative works for any purpose,
12 * so long as the name of the University of Michigan is not used in
13 * any advertising or publicity pertaining to the use or distribution
14 * of this software without specific, written prior authorization. If
15 * the above copyright notice or any other identification of the
16 * University of Michigan is included in any copy of any portion of
17 * this software, then the disclaimer below must also be included.
18 *
19 * This software is provided as is, without representation or warranty
20 * of any kind either express or implied, including without limitation
21 * the implied warranties of merchantability, fitness for a particular
22 * purpose, or noninfringement. The Regents of the University of
23 * Michigan shall not be liable for any damages, including special,
24 * indirect, incidental, or consequential damages, with respect to any
25 * claim arising out of or in connection with the use of the software,
26 * even if it has been or is hereafter advised of the possibility of
27 * such damages.
28 */
29
30#include <linux/nfs_fs.h>
Trond Myklebust493292d2011-07-13 15:58:28 -040031#include <linux/nfs_page.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040032#include <linux/module.h>
Andy Adamson974cec82010-10-20 00:18:02 -040033#include "internal.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040034#include "pnfs.h"
Andy Adamson64419a92011-03-01 01:34:16 +000035#include "iostat.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040036
37#define NFSDBG_FACILITY NFSDBG_PNFS
38
Fred Isaman02c35fc2010-10-20 00:17:59 -040039/* Locking:
40 *
41 * pnfs_spinlock:
42 * protects pnfs_modules_tbl.
43 */
44static DEFINE_SPINLOCK(pnfs_spinlock);
45
46/*
47 * pnfs_modules_tbl holds all pnfs modules
48 */
49static LIST_HEAD(pnfs_modules_tbl);
50
51/* Return the registered pnfs layout driver module matching given id */
52static struct pnfs_layoutdriver_type *
53find_pnfs_driver_locked(u32 id)
54{
55 struct pnfs_layoutdriver_type *local;
56
57 list_for_each_entry(local, &pnfs_modules_tbl, pnfs_tblid)
58 if (local->id == id)
59 goto out;
60 local = NULL;
61out:
62 dprintk("%s: Searching for id %u, found %p\n", __func__, id, local);
63 return local;
64}
65
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040066static struct pnfs_layoutdriver_type *
67find_pnfs_driver(u32 id)
68{
Fred Isaman02c35fc2010-10-20 00:17:59 -040069 struct pnfs_layoutdriver_type *local;
70
71 spin_lock(&pnfs_spinlock);
72 local = find_pnfs_driver_locked(id);
73 spin_unlock(&pnfs_spinlock);
74 return local;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040075}
76
77void
78unset_pnfs_layoutdriver(struct nfs_server *nfss)
79{
Benny Halevy738fd0f32011-07-30 20:52:36 -040080 if (nfss->pnfs_curr_ld) {
81 if (nfss->pnfs_curr_ld->clear_layoutdriver)
82 nfss->pnfs_curr_ld->clear_layoutdriver(nfss);
Fred Isaman02c35fc2010-10-20 00:17:59 -040083 module_put(nfss->pnfs_curr_ld->owner);
Benny Halevy738fd0f32011-07-30 20:52:36 -040084 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040085 nfss->pnfs_curr_ld = NULL;
86}
87
88/*
89 * Try to set the server's pnfs module to the pnfs layout type specified by id.
90 * Currently only one pNFS layout driver per filesystem is supported.
91 *
92 * @id layout type. Zero (illegal layout type) indicates pNFS not in use.
93 */
94void
Benny Halevy738fd0f32011-07-30 20:52:36 -040095set_pnfs_layoutdriver(struct nfs_server *server, const struct nfs_fh *mntfh,
96 u32 id)
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040097{
98 struct pnfs_layoutdriver_type *ld_type = NULL;
99
100 if (id == 0)
101 goto out_no_driver;
102 if (!(server->nfs_client->cl_exchange_flags &
103 (EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS))) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500104 printk(KERN_ERR "NFS: %s: id %u cl_exchange_flags 0x%x\n",
105 __func__, id, server->nfs_client->cl_exchange_flags);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400106 goto out_no_driver;
107 }
108 ld_type = find_pnfs_driver(id);
109 if (!ld_type) {
110 request_module("%s-%u", LAYOUT_NFSV4_1_MODULE_PREFIX, id);
111 ld_type = find_pnfs_driver(id);
112 if (!ld_type) {
113 dprintk("%s: No pNFS module found for %u.\n",
114 __func__, id);
115 goto out_no_driver;
116 }
117 }
Fred Isaman02c35fc2010-10-20 00:17:59 -0400118 if (!try_module_get(ld_type->owner)) {
119 dprintk("%s: Could not grab reference on module\n", __func__);
120 goto out_no_driver;
121 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400122 server->pnfs_curr_ld = ld_type;
Benny Halevy738fd0f32011-07-30 20:52:36 -0400123 if (ld_type->set_layoutdriver
124 && ld_type->set_layoutdriver(server, mntfh)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500125 printk(KERN_ERR "NFS: %s: Error initializing pNFS layout "
126 "driver %u.\n", __func__, id);
Benny Halevy738fd0f32011-07-30 20:52:36 -0400127 module_put(ld_type->owner);
128 goto out_no_driver;
129 }
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000130
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400131 dprintk("%s: pNFS module for %u set\n", __func__, id);
132 return;
133
134out_no_driver:
135 dprintk("%s: Using NFSv4 I/O\n", __func__);
136 server->pnfs_curr_ld = NULL;
137}
Fred Isaman02c35fc2010-10-20 00:17:59 -0400138
139int
140pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
141{
142 int status = -EINVAL;
143 struct pnfs_layoutdriver_type *tmp;
144
145 if (ld_type->id == 0) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500146 printk(KERN_ERR "NFS: %s id 0 is reserved\n", __func__);
Fred Isaman02c35fc2010-10-20 00:17:59 -0400147 return status;
148 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400149 if (!ld_type->alloc_lseg || !ld_type->free_lseg) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500150 printk(KERN_ERR "NFS: %s Layout driver must provide "
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400151 "alloc_lseg and free_lseg.\n", __func__);
152 return status;
153 }
Fred Isaman02c35fc2010-10-20 00:17:59 -0400154
155 spin_lock(&pnfs_spinlock);
156 tmp = find_pnfs_driver_locked(ld_type->id);
157 if (!tmp) {
158 list_add(&ld_type->pnfs_tblid, &pnfs_modules_tbl);
159 status = 0;
160 dprintk("%s Registering id:%u name:%s\n", __func__, ld_type->id,
161 ld_type->name);
162 } else {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500163 printk(KERN_ERR "NFS: %s Module with id %d already loaded!\n",
Fred Isaman02c35fc2010-10-20 00:17:59 -0400164 __func__, ld_type->id);
165 }
166 spin_unlock(&pnfs_spinlock);
167
168 return status;
169}
170EXPORT_SYMBOL_GPL(pnfs_register_layoutdriver);
171
172void
173pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
174{
175 dprintk("%s Deregistering id:%u\n", __func__, ld_type->id);
176 spin_lock(&pnfs_spinlock);
177 list_del(&ld_type->pnfs_tblid);
178 spin_unlock(&pnfs_spinlock);
179}
180EXPORT_SYMBOL_GPL(pnfs_unregister_layoutdriver);
Benny Halevye5e94012010-10-20 00:18:01 -0400181
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400182/*
183 * pNFS client layout cache
184 */
185
Fred Isamancc6e5342011-01-06 11:36:28 +0000186/* Need to hold i_lock if caller does not already hold reference */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000187void
Fred Isamancc6e5342011-01-06 11:36:28 +0000188get_layout_hdr(struct pnfs_layout_hdr *lo)
Benny Halevye5e94012010-10-20 00:18:01 -0400189{
Fred Isamancc6e5342011-01-06 11:36:28 +0000190 atomic_inc(&lo->plh_refcount);
191}
192
Benny Halevy636fb9c2011-05-22 19:51:33 +0300193static struct pnfs_layout_hdr *
194pnfs_alloc_layout_hdr(struct inode *ino, gfp_t gfp_flags)
195{
196 struct pnfs_layoutdriver_type *ld = NFS_SERVER(ino)->pnfs_curr_ld;
197 return ld->alloc_layout_hdr ? ld->alloc_layout_hdr(ino, gfp_flags) :
198 kzalloc(sizeof(struct pnfs_layout_hdr), gfp_flags);
199}
200
201static void
202pnfs_free_layout_hdr(struct pnfs_layout_hdr *lo)
203{
204 struct pnfs_layoutdriver_type *ld = NFS_SERVER(lo->plh_inode)->pnfs_curr_ld;
Peng Tao9fa40752011-07-30 20:52:32 -0400205 put_rpccred(lo->plh_lc_cred);
Benny Halevy636fb9c2011-05-22 19:51:33 +0300206 return ld->alloc_layout_hdr ? ld->free_layout_hdr(lo) : kfree(lo);
207}
208
Fred Isamancc6e5342011-01-06 11:36:28 +0000209static void
210destroy_layout_hdr(struct pnfs_layout_hdr *lo)
211{
212 dprintk("%s: freeing layout cache %p\n", __func__, lo);
213 BUG_ON(!list_empty(&lo->plh_layouts));
214 NFS_I(lo->plh_inode)->layout = NULL;
Benny Halevy636fb9c2011-05-22 19:51:33 +0300215 pnfs_free_layout_hdr(lo);
Benny Halevye5e94012010-10-20 00:18:01 -0400216}
217
218static void
219put_layout_hdr_locked(struct pnfs_layout_hdr *lo)
220{
Fred Isamancc6e5342011-01-06 11:36:28 +0000221 if (atomic_dec_and_test(&lo->plh_refcount))
222 destroy_layout_hdr(lo);
Benny Halevye5e94012010-10-20 00:18:01 -0400223}
224
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400225void
Fred Isamancc6e5342011-01-06 11:36:28 +0000226put_layout_hdr(struct pnfs_layout_hdr *lo)
Andy Adamson974cec82010-10-20 00:18:02 -0400227{
Fred Isamancc6e5342011-01-06 11:36:28 +0000228 struct inode *inode = lo->plh_inode;
229
230 if (atomic_dec_and_lock(&lo->plh_refcount, &inode->i_lock)) {
231 destroy_layout_hdr(lo);
232 spin_unlock(&inode->i_lock);
233 }
Andy Adamson974cec82010-10-20 00:18:02 -0400234}
235
236static void
237init_lseg(struct pnfs_layout_hdr *lo, struct pnfs_layout_segment *lseg)
238{
Fred Isaman566052c2011-01-06 11:36:20 +0000239 INIT_LIST_HEAD(&lseg->pls_list);
Peng Taoa9bae562011-07-30 20:52:33 -0400240 INIT_LIST_HEAD(&lseg->pls_lc_list);
Fred Isaman4541d162011-01-06 11:36:23 +0000241 atomic_set(&lseg->pls_refcount, 1);
242 smp_mb();
243 set_bit(NFS_LSEG_VALID, &lseg->pls_flags);
Fred Isaman566052c2011-01-06 11:36:20 +0000244 lseg->pls_layout = lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400245}
246
Fred Isaman4541d162011-01-06 11:36:23 +0000247static void free_lseg(struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400248{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000249 struct inode *ino = lseg->pls_layout->plh_inode;
Andy Adamson974cec82010-10-20 00:18:02 -0400250
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400251 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
Fred Isaman52fabd72011-01-06 11:36:18 +0000252 /* Matched by get_layout_hdr in pnfs_insert_layout */
Fred Isamancc6e5342011-01-06 11:36:28 +0000253 put_layout_hdr(NFS_I(ino)->layout);
Andy Adamson974cec82010-10-20 00:18:02 -0400254}
255
Fred Isamand684d2a2011-03-01 01:34:13 +0000256static void
257put_lseg_common(struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400258{
Fred Isamand684d2a2011-03-01 01:34:13 +0000259 struct inode *inode = lseg->pls_layout->plh_inode;
260
Benny Halevyd20581a2011-05-22 19:52:03 +0300261 WARN_ON(test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
Fred Isamand684d2a2011-03-01 01:34:13 +0000262 list_del_init(&lseg->pls_list);
263 if (list_empty(&lseg->pls_layout->plh_segs)) {
264 set_bit(NFS_LAYOUT_DESTROYED, &lseg->pls_layout->plh_flags);
265 /* Matched by initial refcount set in alloc_init_layout_hdr */
266 put_layout_hdr_locked(lseg->pls_layout);
267 }
268 rpc_wake_up(&NFS_SERVER(inode)->roc_rpcwaitq);
269}
270
Fred Isamanbae724e2011-03-01 01:34:15 +0000271void
Fred Isamand684d2a2011-03-01 01:34:13 +0000272put_lseg(struct pnfs_layout_segment *lseg)
273{
274 struct inode *inode;
275
276 if (!lseg)
277 return;
278
Fred Isaman4541d162011-01-06 11:36:23 +0000279 dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
280 atomic_read(&lseg->pls_refcount),
281 test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
Fred Isamand684d2a2011-03-01 01:34:13 +0000282 inode = lseg->pls_layout->plh_inode;
283 if (atomic_dec_and_lock(&lseg->pls_refcount, &inode->i_lock)) {
284 LIST_HEAD(free_me);
Andy Adamson974cec82010-10-20 00:18:02 -0400285
Fred Isamand684d2a2011-03-01 01:34:13 +0000286 put_lseg_common(lseg);
287 list_add(&lseg->pls_list, &free_me);
288 spin_unlock(&inode->i_lock);
289 pnfs_free_lseg_list(&free_me);
Fred Isaman4541d162011-01-06 11:36:23 +0000290 }
Andy Adamson974cec82010-10-20 00:18:02 -0400291}
Fred Isamane0c2b382011-03-23 13:27:53 +0000292EXPORT_SYMBOL_GPL(put_lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400293
Benny Halevyfb3296e2011-05-22 19:47:26 +0300294static inline u64
295end_offset(u64 start, u64 len)
Fred Isaman4541d162011-01-06 11:36:23 +0000296{
Benny Halevyfb3296e2011-05-22 19:47:26 +0300297 u64 end;
298
299 end = start + len;
300 return end >= start ? end : NFS4_MAX_UINT64;
301}
302
303/* last octet in a range */
304static inline u64
305last_byte_offset(u64 start, u64 len)
306{
307 u64 end;
308
309 BUG_ON(!len);
310 end = start + len;
311 return end > start ? end - 1 : NFS4_MAX_UINT64;
312}
313
314/*
315 * is l2 fully contained in l1?
316 * start1 end1
317 * [----------------------------------)
318 * start2 end2
319 * [----------------)
320 */
321static inline int
322lo_seg_contained(struct pnfs_layout_range *l1,
323 struct pnfs_layout_range *l2)
324{
325 u64 start1 = l1->offset;
326 u64 end1 = end_offset(start1, l1->length);
327 u64 start2 = l2->offset;
328 u64 end2 = end_offset(start2, l2->length);
329
330 return (start1 <= start2) && (end1 >= end2);
331}
332
333/*
334 * is l1 and l2 intersecting?
335 * start1 end1
336 * [----------------------------------)
337 * start2 end2
338 * [----------------)
339 */
340static inline int
341lo_seg_intersecting(struct pnfs_layout_range *l1,
342 struct pnfs_layout_range *l2)
343{
344 u64 start1 = l1->offset;
345 u64 end1 = end_offset(start1, l1->length);
346 u64 start2 = l2->offset;
347 u64 end2 = end_offset(start2, l2->length);
348
349 return (end1 == NFS4_MAX_UINT64 || end1 > start2) &&
350 (end2 == NFS4_MAX_UINT64 || end2 > start1);
351}
352
Fred Isaman4541d162011-01-06 11:36:23 +0000353static bool
Benny Halevy778b5502011-05-22 19:48:02 +0300354should_free_lseg(struct pnfs_layout_range *lseg_range,
355 struct pnfs_layout_range *recall_range)
Fred Isaman4541d162011-01-06 11:36:23 +0000356{
Benny Halevy778b5502011-05-22 19:48:02 +0300357 return (recall_range->iomode == IOMODE_ANY ||
358 lseg_range->iomode == recall_range->iomode) &&
359 lo_seg_intersecting(lseg_range, recall_range);
Fred Isaman4541d162011-01-06 11:36:23 +0000360}
361
362/* Returns 1 if lseg is removed from list, 0 otherwise */
363static int mark_lseg_invalid(struct pnfs_layout_segment *lseg,
364 struct list_head *tmp_list)
365{
366 int rv = 0;
367
368 if (test_and_clear_bit(NFS_LSEG_VALID, &lseg->pls_flags)) {
369 /* Remove the reference keeping the lseg in the
370 * list. It will now be removed when all
371 * outstanding io is finished.
372 */
Fred Isamand684d2a2011-03-01 01:34:13 +0000373 dprintk("%s: lseg %p ref %d\n", __func__, lseg,
374 atomic_read(&lseg->pls_refcount));
375 if (atomic_dec_and_test(&lseg->pls_refcount)) {
376 put_lseg_common(lseg);
377 list_add(&lseg->pls_list, tmp_list);
378 rv = 1;
379 }
Fred Isaman4541d162011-01-06 11:36:23 +0000380 }
381 return rv;
382}
383
384/* Returns count of number of matching invalid lsegs remaining in list
385 * after call.
386 */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000387int
Fred Isaman4541d162011-01-06 11:36:23 +0000388mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
389 struct list_head *tmp_list,
Benny Halevy778b5502011-05-22 19:48:02 +0300390 struct pnfs_layout_range *recall_range)
Andy Adamson974cec82010-10-20 00:18:02 -0400391{
392 struct pnfs_layout_segment *lseg, *next;
Fred Isaman4541d162011-01-06 11:36:23 +0000393 int invalid = 0, removed = 0;
Andy Adamson974cec82010-10-20 00:18:02 -0400394
395 dprintk("%s:Begin lo %p\n", __func__, lo);
396
Fred Isaman38511722011-02-03 18:28:50 +0000397 if (list_empty(&lo->plh_segs)) {
Andy Adamson2701d082012-05-24 13:13:24 -0400398 /* Reset MDS Threshold I/O counters */
399 NFS_I(lo->plh_inode)->write_io = 0;
400 NFS_I(lo->plh_inode)->read_io = 0;
Fred Isaman38511722011-02-03 18:28:50 +0000401 if (!test_and_set_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags))
402 put_layout_hdr_locked(lo);
403 return 0;
404 }
Fred Isaman4541d162011-01-06 11:36:23 +0000405 list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
Benny Halevy778b5502011-05-22 19:48:02 +0300406 if (!recall_range ||
407 should_free_lseg(&lseg->pls_range, recall_range)) {
Fred Isaman4541d162011-01-06 11:36:23 +0000408 dprintk("%s: freeing lseg %p iomode %d "
409 "offset %llu length %llu\n", __func__,
410 lseg, lseg->pls_range.iomode, lseg->pls_range.offset,
411 lseg->pls_range.length);
412 invalid++;
413 removed += mark_lseg_invalid(lseg, tmp_list);
414 }
415 dprintk("%s:Return %i\n", __func__, invalid - removed);
416 return invalid - removed;
Andy Adamson974cec82010-10-20 00:18:02 -0400417}
418
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000419/* note free_me must contain lsegs from a single layout_hdr */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000420void
Fred Isaman4541d162011-01-06 11:36:23 +0000421pnfs_free_lseg_list(struct list_head *free_me)
Andy Adamson974cec82010-10-20 00:18:02 -0400422{
Fred Isaman4541d162011-01-06 11:36:23 +0000423 struct pnfs_layout_segment *lseg, *tmp;
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000424 struct pnfs_layout_hdr *lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400425
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000426 if (list_empty(free_me))
427 return;
428
429 lo = list_first_entry(free_me, struct pnfs_layout_segment,
430 pls_list)->pls_layout;
431
432 if (test_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags)) {
433 struct nfs_client *clp;
434
435 clp = NFS_SERVER(lo->plh_inode)->nfs_client;
436 spin_lock(&clp->cl_lock);
437 list_del_init(&lo->plh_layouts);
438 spin_unlock(&clp->cl_lock);
439 }
Fred Isaman4541d162011-01-06 11:36:23 +0000440 list_for_each_entry_safe(lseg, tmp, free_me, pls_list) {
Fred Isaman566052c2011-01-06 11:36:20 +0000441 list_del(&lseg->pls_list);
Fred Isaman4541d162011-01-06 11:36:23 +0000442 free_lseg(lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400443 }
444}
445
Benny Halevye5e94012010-10-20 00:18:01 -0400446void
447pnfs_destroy_layout(struct nfs_inode *nfsi)
448{
449 struct pnfs_layout_hdr *lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400450 LIST_HEAD(tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400451
452 spin_lock(&nfsi->vfs_inode.i_lock);
453 lo = nfsi->layout;
454 if (lo) {
Fred Isaman38511722011-02-03 18:28:50 +0000455 lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
Benny Halevy778b5502011-05-22 19:48:02 +0300456 mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
Benny Halevye5e94012010-10-20 00:18:01 -0400457 }
458 spin_unlock(&nfsi->vfs_inode.i_lock);
Andy Adamson974cec82010-10-20 00:18:02 -0400459 pnfs_free_lseg_list(&tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400460}
Andy Adamson041245c2012-04-27 17:53:53 -0400461EXPORT_SYMBOL_GPL(pnfs_destroy_layout);
Benny Halevye5e94012010-10-20 00:18:01 -0400462
Andy Adamson974cec82010-10-20 00:18:02 -0400463/*
464 * Called by the state manger to remove all layouts established under an
465 * expired lease.
466 */
467void
468pnfs_destroy_all_layouts(struct nfs_client *clp)
469{
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400470 struct nfs_server *server;
Andy Adamson974cec82010-10-20 00:18:02 -0400471 struct pnfs_layout_hdr *lo;
472 LIST_HEAD(tmp_list);
473
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400474 nfs4_deviceid_mark_client_invalid(clp);
475 nfs4_deviceid_purge_client(clp);
476
Andy Adamson974cec82010-10-20 00:18:02 -0400477 spin_lock(&clp->cl_lock);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400478 rcu_read_lock();
479 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
480 if (!list_empty(&server->layouts))
481 list_splice_init(&server->layouts, &tmp_list);
482 }
483 rcu_read_unlock();
Andy Adamson974cec82010-10-20 00:18:02 -0400484 spin_unlock(&clp->cl_lock);
485
486 while (!list_empty(&tmp_list)) {
487 lo = list_entry(tmp_list.next, struct pnfs_layout_hdr,
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000488 plh_layouts);
Andy Adamson974cec82010-10-20 00:18:02 -0400489 dprintk("%s freeing layout for inode %lu\n", __func__,
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000490 lo->plh_inode->i_ino);
Andy Adamson2887fe42011-05-11 01:19:58 -0400491 list_del_init(&lo->plh_layouts);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000492 pnfs_destroy_layout(NFS_I(lo->plh_inode));
Andy Adamson974cec82010-10-20 00:18:02 -0400493 }
494}
495
Fred Isamanfd6002e2011-01-06 11:36:22 +0000496/* update lo->plh_stateid with new if is more recent */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000497void
498pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo, const nfs4_stateid *new,
499 bool update_barrier)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400500{
Fred Isamanfd6002e2011-01-06 11:36:22 +0000501 u32 oldseq, newseq;
Andy Adamson974cec82010-10-20 00:18:02 -0400502
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500503 oldseq = be32_to_cpu(lo->plh_stateid.seqid);
504 newseq = be32_to_cpu(new->seqid);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000505 if ((int)(newseq - oldseq) > 0) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500506 nfs4_stateid_copy(&lo->plh_stateid, new);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000507 if (update_barrier) {
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500508 u32 new_barrier = be32_to_cpu(new->seqid);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000509
510 if ((int)(new_barrier - lo->plh_barrier))
511 lo->plh_barrier = new_barrier;
512 } else {
513 /* Because of wraparound, we want to keep the barrier
514 * "close" to the current seqids. It needs to be
515 * within 2**31 to count as "behind", so if it
516 * gets too near that limit, give us a litle leeway
517 * and bring it to within 2**30.
518 * NOTE - and yes, this is all unsigned arithmetic.
519 */
520 if (unlikely((newseq - lo->plh_barrier) > (3 << 29)))
521 lo->plh_barrier = newseq - (1 << 30);
522 }
523 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400524}
525
Fred Isamancf7d63f2011-01-06 11:36:25 +0000526/* lget is set to 1 if called from inside send_layoutget call chain */
527static bool
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000528pnfs_layoutgets_blocked(struct pnfs_layout_hdr *lo, nfs4_stateid *stateid,
529 int lget)
Fred Isamancf7d63f2011-01-06 11:36:25 +0000530{
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000531 if ((stateid) &&
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500532 (int)(lo->plh_barrier - be32_to_cpu(stateid->seqid)) >= 0)
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000533 return true;
Fred Isamanf7e89172011-01-06 11:36:32 +0000534 return lo->plh_block_lgets ||
Fred Isaman38511722011-02-03 18:28:50 +0000535 test_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags) ||
Fred Isamanf7e89172011-01-06 11:36:32 +0000536 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000537 (list_empty(&lo->plh_segs) &&
Fred Isamancf7d63f2011-01-06 11:36:25 +0000538 (atomic_read(&lo->plh_outstanding) > lget));
539}
540
Fred Isamanfd6002e2011-01-06 11:36:22 +0000541int
542pnfs_choose_layoutget_stateid(nfs4_stateid *dst, struct pnfs_layout_hdr *lo,
543 struct nfs4_state *open_state)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400544{
Fred Isamanfd6002e2011-01-06 11:36:22 +0000545 int status = 0;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400546
547 dprintk("--> %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000548 spin_lock(&lo->plh_inode->i_lock);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000549 if (pnfs_layoutgets_blocked(lo, NULL, 1)) {
Fred Isamancf7d63f2011-01-06 11:36:25 +0000550 status = -EAGAIN;
551 } else if (list_empty(&lo->plh_segs)) {
Fred Isamanfd6002e2011-01-06 11:36:22 +0000552 int seq;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400553
Fred Isamanfd6002e2011-01-06 11:36:22 +0000554 do {
555 seq = read_seqbegin(&open_state->seqlock);
Trond Myklebustf597c532012-03-04 18:13:56 -0500556 nfs4_stateid_copy(dst, &open_state->stateid);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000557 } while (read_seqretry(&open_state->seqlock, seq));
558 } else
Trond Myklebustf597c532012-03-04 18:13:56 -0500559 nfs4_stateid_copy(dst, &lo->plh_stateid);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000560 spin_unlock(&lo->plh_inode->i_lock);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400561 dprintk("<-- %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000562 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400563}
564
565/*
566* Get layout from server.
567* for now, assume that whole file layouts are requested.
568* arg->offset: 0
569* arg->length: all ones
570*/
Benny Halevye5e94012010-10-20 00:18:01 -0400571static struct pnfs_layout_segment *
572send_layoutget(struct pnfs_layout_hdr *lo,
573 struct nfs_open_context *ctx,
Benny Halevyfb3296e2011-05-22 19:47:26 +0300574 struct pnfs_layout_range *range,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400575 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -0400576{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000577 struct inode *ino = lo->plh_inode;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400578 struct nfs_server *server = NFS_SERVER(ino);
579 struct nfs4_layoutget *lgp;
580 struct pnfs_layout_segment *lseg = NULL;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400581 struct page **pages = NULL;
582 int i;
583 u32 max_resp_sz, max_pages;
Benny Halevye5e94012010-10-20 00:18:01 -0400584
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400585 dprintk("--> %s\n", __func__);
586
587 BUG_ON(ctx == NULL);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400588 lgp = kzalloc(sizeof(*lgp), gfp_flags);
Fred Isamancf7d63f2011-01-06 11:36:25 +0000589 if (lgp == NULL)
Andy Adamson974cec82010-10-20 00:18:02 -0400590 return NULL;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400591
592 /* allocate pages for xdr post processing */
593 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
Andy Adamsone5265a02012-04-14 03:56:35 -0400594 max_pages = nfs_page_array_len(0, max_resp_sz);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400595
Trond Myklebust7d9dea92012-01-20 18:57:02 -0500596 pages = kcalloc(max_pages, sizeof(struct page *), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400597 if (!pages)
598 goto out_err_free;
599
600 for (i = 0; i < max_pages; i++) {
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400601 pages[i] = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400602 if (!pages[i])
603 goto out_err_free;
604 }
605
Benny Halevyfb3296e2011-05-22 19:47:26 +0300606 lgp->args.minlength = PAGE_CACHE_SIZE;
607 if (lgp->args.minlength > range->length)
608 lgp->args.minlength = range->length;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400609 lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
Benny Halevyfb3296e2011-05-22 19:47:26 +0300610 lgp->args.range = *range;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400611 lgp->args.type = server->pnfs_curr_ld->id;
612 lgp->args.inode = ino;
613 lgp->args.ctx = get_nfs_open_context(ctx);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400614 lgp->args.layout.pages = pages;
615 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400616 lgp->lsegpp = &lseg;
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400617 lgp->gfp_flags = gfp_flags;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400618
619 /* Synchronously retrieve layout information from server and
620 * store in lseg.
621 */
622 nfs4_proc_layoutget(lgp);
623 if (!lseg) {
624 /* remember that LAYOUTGET failed and suspend trying */
Benny Halevyfb3296e2011-05-22 19:47:26 +0300625 set_bit(lo_fail_bit(range->iomode), &lo->plh_flags);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400626 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400627
628 /* free xdr pages */
629 for (i = 0; i < max_pages; i++)
630 __free_page(pages[i]);
631 kfree(pages);
632
Andy Adamson974cec82010-10-20 00:18:02 -0400633 return lseg;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400634
635out_err_free:
636 /* free any allocated xdr pages, lgp as it's not used */
637 if (pages) {
638 for (i = 0; i < max_pages; i++) {
639 if (!pages[i])
640 break;
641 __free_page(pages[i]);
642 }
643 kfree(pages);
644 }
645 kfree(lgp);
646 return NULL;
Andy Adamson974cec82010-10-20 00:18:02 -0400647}
648
Benny Halevycbe82602011-05-22 19:52:37 +0300649/* Initiates a LAYOUTRETURN(FILE) */
650int
651_pnfs_return_layout(struct inode *ino)
652{
653 struct pnfs_layout_hdr *lo = NULL;
654 struct nfs_inode *nfsi = NFS_I(ino);
655 LIST_HEAD(tmp_list);
656 struct nfs4_layoutreturn *lrp;
657 nfs4_stateid stateid;
658 int status = 0;
659
660 dprintk("--> %s\n", __func__);
661
662 spin_lock(&ino->i_lock);
663 lo = nfsi->layout;
Fred Isamana2e1d4f2011-06-13 18:54:53 -0400664 if (!lo) {
Benny Halevycbe82602011-05-22 19:52:37 +0300665 spin_unlock(&ino->i_lock);
Fred Isamana2e1d4f2011-06-13 18:54:53 -0400666 dprintk("%s: no layout to return\n", __func__);
667 return status;
Benny Halevycbe82602011-05-22 19:52:37 +0300668 }
669 stateid = nfsi->layout->plh_stateid;
670 /* Reference matched in nfs4_layoutreturn_release */
671 get_layout_hdr(lo);
Fred Isamanea0ded72011-06-15 12:31:02 -0400672 mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
673 lo->plh_block_lgets++;
Benny Halevycbe82602011-05-22 19:52:37 +0300674 spin_unlock(&ino->i_lock);
675 pnfs_free_lseg_list(&tmp_list);
676
677 WARN_ON(test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags));
678
679 lrp = kzalloc(sizeof(*lrp), GFP_KERNEL);
680 if (unlikely(lrp == NULL)) {
681 status = -ENOMEM;
Fred Isaman9e2dfdb2011-06-15 14:32:02 -0400682 set_bit(NFS_LAYOUT_RW_FAILED, &lo->plh_flags);
683 set_bit(NFS_LAYOUT_RO_FAILED, &lo->plh_flags);
Benny Halevy1ed3a852011-06-15 11:39:57 -0400684 put_layout_hdr(lo);
Benny Halevycbe82602011-05-22 19:52:37 +0300685 goto out;
686 }
687
688 lrp->args.stateid = stateid;
689 lrp->args.layout_type = NFS_SERVER(ino)->pnfs_curr_ld->id;
690 lrp->args.inode = ino;
Trond Myklebusta56aaa02011-06-15 11:59:10 -0400691 lrp->args.layout = lo;
Benny Halevycbe82602011-05-22 19:52:37 +0300692 lrp->clp = NFS_SERVER(ino)->nfs_client;
693
694 status = nfs4_proc_layoutreturn(lrp);
695out:
696 dprintk("<-- %s status: %d\n", __func__, status);
697 return status;
698}
Andy Adamson0a57cda2012-04-27 17:53:50 -0400699EXPORT_SYMBOL_GPL(_pnfs_return_layout);
Benny Halevycbe82602011-05-22 19:52:37 +0300700
Fred Isamanf7e89172011-01-06 11:36:32 +0000701bool pnfs_roc(struct inode *ino)
702{
703 struct pnfs_layout_hdr *lo;
704 struct pnfs_layout_segment *lseg, *tmp;
705 LIST_HEAD(tmp_list);
706 bool found = false;
707
708 spin_lock(&ino->i_lock);
709 lo = NFS_I(ino)->layout;
710 if (!lo || !test_and_clear_bit(NFS_LAYOUT_ROC, &lo->plh_flags) ||
711 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags))
712 goto out_nolayout;
713 list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list)
714 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
715 mark_lseg_invalid(lseg, &tmp_list);
716 found = true;
717 }
718 if (!found)
719 goto out_nolayout;
720 lo->plh_block_lgets++;
721 get_layout_hdr(lo); /* matched in pnfs_roc_release */
722 spin_unlock(&ino->i_lock);
723 pnfs_free_lseg_list(&tmp_list);
724 return true;
725
726out_nolayout:
727 spin_unlock(&ino->i_lock);
728 return false;
729}
730
731void pnfs_roc_release(struct inode *ino)
732{
733 struct pnfs_layout_hdr *lo;
734
735 spin_lock(&ino->i_lock);
736 lo = NFS_I(ino)->layout;
737 lo->plh_block_lgets--;
738 put_layout_hdr_locked(lo);
739 spin_unlock(&ino->i_lock);
740}
741
742void pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
743{
744 struct pnfs_layout_hdr *lo;
745
746 spin_lock(&ino->i_lock);
747 lo = NFS_I(ino)->layout;
748 if ((int)(barrier - lo->plh_barrier) > 0)
749 lo->plh_barrier = barrier;
750 spin_unlock(&ino->i_lock);
751}
752
753bool pnfs_roc_drain(struct inode *ino, u32 *barrier)
754{
755 struct nfs_inode *nfsi = NFS_I(ino);
756 struct pnfs_layout_segment *lseg;
757 bool found = false;
758
759 spin_lock(&ino->i_lock);
760 list_for_each_entry(lseg, &nfsi->layout->plh_segs, pls_list)
761 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
762 found = true;
763 break;
764 }
765 if (!found) {
766 struct pnfs_layout_hdr *lo = nfsi->layout;
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500767 u32 current_seqid = be32_to_cpu(lo->plh_stateid.seqid);
Fred Isamanf7e89172011-01-06 11:36:32 +0000768
769 /* Since close does not return a layout stateid for use as
770 * a barrier, we choose the worst-case barrier.
771 */
772 *barrier = current_seqid + atomic_read(&lo->plh_outstanding);
773 }
774 spin_unlock(&ino->i_lock);
775 return found;
776}
777
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400778/*
779 * Compare two layout segments for sorting into layout cache.
780 * We want to preferentially return RW over RO layouts, so ensure those
781 * are seen first.
782 */
783static s64
Benny Halevyfb3296e2011-05-22 19:47:26 +0300784cmp_layout(struct pnfs_layout_range *l1,
785 struct pnfs_layout_range *l2)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400786{
Benny Halevyfb3296e2011-05-22 19:47:26 +0300787 s64 d;
788
789 /* high offset > low offset */
790 d = l1->offset - l2->offset;
791 if (d)
792 return d;
793
794 /* short length > long length */
795 d = l2->length - l1->length;
796 if (d)
797 return d;
798
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400799 /* read > read/write */
Benny Halevyfb3296e2011-05-22 19:47:26 +0300800 return (int)(l1->iomode == IOMODE_READ) - (int)(l2->iomode == IOMODE_READ);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400801}
802
Andy Adamson974cec82010-10-20 00:18:02 -0400803static void
804pnfs_insert_layout(struct pnfs_layout_hdr *lo,
805 struct pnfs_layout_segment *lseg)
806{
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400807 struct pnfs_layout_segment *lp;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400808
Andy Adamson974cec82010-10-20 00:18:02 -0400809 dprintk("%s:Begin\n", __func__);
810
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000811 assert_spin_locked(&lo->plh_inode->i_lock);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000812 list_for_each_entry(lp, &lo->plh_segs, pls_list) {
Benny Halevyfb3296e2011-05-22 19:47:26 +0300813 if (cmp_layout(&lseg->pls_range, &lp->pls_range) > 0)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400814 continue;
Fred Isaman566052c2011-01-06 11:36:20 +0000815 list_add_tail(&lseg->pls_list, &lp->pls_list);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400816 dprintk("%s: inserted lseg %p "
817 "iomode %d offset %llu length %llu before "
818 "lp %p iomode %d offset %llu length %llu\n",
Fred Isaman566052c2011-01-06 11:36:20 +0000819 __func__, lseg, lseg->pls_range.iomode,
820 lseg->pls_range.offset, lseg->pls_range.length,
821 lp, lp->pls_range.iomode, lp->pls_range.offset,
822 lp->pls_range.length);
Benny Halevyfb3296e2011-05-22 19:47:26 +0300823 goto out;
Andy Adamson974cec82010-10-20 00:18:02 -0400824 }
Benny Halevyfb3296e2011-05-22 19:47:26 +0300825 list_add_tail(&lseg->pls_list, &lo->plh_segs);
826 dprintk("%s: inserted lseg %p "
827 "iomode %d offset %llu length %llu at tail\n",
828 __func__, lseg, lseg->pls_range.iomode,
829 lseg->pls_range.offset, lseg->pls_range.length);
830out:
Fred Isamancc6e5342011-01-06 11:36:28 +0000831 get_layout_hdr(lo);
Andy Adamson974cec82010-10-20 00:18:02 -0400832
833 dprintk("%s:Return\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -0400834}
835
836static struct pnfs_layout_hdr *
Peng Tao9fa40752011-07-30 20:52:32 -0400837alloc_init_layout_hdr(struct inode *ino,
838 struct nfs_open_context *ctx,
839 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -0400840{
841 struct pnfs_layout_hdr *lo;
842
Benny Halevy636fb9c2011-05-22 19:51:33 +0300843 lo = pnfs_alloc_layout_hdr(ino, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -0400844 if (!lo)
845 return NULL;
Fred Isamancc6e5342011-01-06 11:36:28 +0000846 atomic_set(&lo->plh_refcount, 1);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000847 INIT_LIST_HEAD(&lo->plh_layouts);
848 INIT_LIST_HEAD(&lo->plh_segs);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000849 INIT_LIST_HEAD(&lo->plh_bulk_recall);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000850 lo->plh_inode = ino;
Peng Tao9fa40752011-07-30 20:52:32 -0400851 lo->plh_lc_cred = get_rpccred(ctx->state->owner->so_cred);
Benny Halevye5e94012010-10-20 00:18:01 -0400852 return lo;
853}
854
855static struct pnfs_layout_hdr *
Peng Tao9fa40752011-07-30 20:52:32 -0400856pnfs_find_alloc_layout(struct inode *ino,
857 struct nfs_open_context *ctx,
858 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -0400859{
860 struct nfs_inode *nfsi = NFS_I(ino);
861 struct pnfs_layout_hdr *new = NULL;
862
863 dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
864
865 assert_spin_locked(&ino->i_lock);
Fred Isaman4541d162011-01-06 11:36:23 +0000866 if (nfsi->layout) {
867 if (test_bit(NFS_LAYOUT_DESTROYED, &nfsi->layout->plh_flags))
868 return NULL;
869 else
870 return nfsi->layout;
871 }
Benny Halevye5e94012010-10-20 00:18:01 -0400872 spin_unlock(&ino->i_lock);
Peng Tao9fa40752011-07-30 20:52:32 -0400873 new = alloc_init_layout_hdr(ino, ctx, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -0400874 spin_lock(&ino->i_lock);
875
876 if (likely(nfsi->layout == NULL)) /* Won the race? */
877 nfsi->layout = new;
878 else
Benny Halevy636fb9c2011-05-22 19:51:33 +0300879 pnfs_free_layout_hdr(new);
Benny Halevye5e94012010-10-20 00:18:01 -0400880 return nfsi->layout;
881}
882
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400883/*
884 * iomode matching rules:
885 * iomode lseg match
886 * ----- ----- -----
887 * ANY READ true
888 * ANY RW true
889 * RW READ false
890 * RW RW true
891 * READ READ true
892 * READ RW true
893 */
894static int
Benny Halevyfb3296e2011-05-22 19:47:26 +0300895is_matching_lseg(struct pnfs_layout_range *ls_range,
896 struct pnfs_layout_range *range)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400897{
Benny Halevyfb3296e2011-05-22 19:47:26 +0300898 struct pnfs_layout_range range1;
899
900 if ((range->iomode == IOMODE_RW &&
901 ls_range->iomode != IOMODE_RW) ||
902 !lo_seg_intersecting(ls_range, range))
903 return 0;
904
905 /* range1 covers only the first byte in the range */
906 range1 = *range;
907 range1.length = 1;
908 return lo_seg_contained(ls_range, &range1);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400909}
910
911/*
912 * lookup range in layout
913 */
Benny Halevye5e94012010-10-20 00:18:01 -0400914static struct pnfs_layout_segment *
Benny Halevyfb3296e2011-05-22 19:47:26 +0300915pnfs_find_lseg(struct pnfs_layout_hdr *lo,
916 struct pnfs_layout_range *range)
Benny Halevye5e94012010-10-20 00:18:01 -0400917{
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400918 struct pnfs_layout_segment *lseg, *ret = NULL;
919
920 dprintk("%s:Begin\n", __func__);
921
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000922 assert_spin_locked(&lo->plh_inode->i_lock);
923 list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
Fred Isaman4541d162011-01-06 11:36:23 +0000924 if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
Benny Halevyfb3296e2011-05-22 19:47:26 +0300925 is_matching_lseg(&lseg->pls_range, range)) {
Fred Isamand684d2a2011-03-01 01:34:13 +0000926 ret = get_lseg(lseg);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400927 break;
928 }
Benny Halevyd771e3a2011-06-14 16:30:16 -0400929 if (lseg->pls_range.offset > range->offset)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400930 break;
931 }
932
933 dprintk("%s:Return lseg %p ref %d\n",
Fred Isaman4541d162011-01-06 11:36:23 +0000934 __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400935 return ret;
Benny Halevye5e94012010-10-20 00:18:01 -0400936}
937
938/*
939 * Layout segment is retreived from the server if not cached.
940 * The appropriate layout segment is referenced and returned to the caller.
941 */
Andy Adamson7c24d942011-06-13 18:22:38 -0400942struct pnfs_layout_segment *
Benny Halevye5e94012010-10-20 00:18:01 -0400943pnfs_update_layout(struct inode *ino,
944 struct nfs_open_context *ctx,
Benny Halevyfb3296e2011-05-22 19:47:26 +0300945 loff_t pos,
946 u64 count,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400947 enum pnfs_iomode iomode,
948 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -0400949{
Benny Halevyfb3296e2011-05-22 19:47:26 +0300950 struct pnfs_layout_range arg = {
951 .iomode = iomode,
952 .offset = pos,
953 .length = count,
954 };
Benny Halevy707ed5f2011-05-22 19:47:46 +0300955 unsigned pg_offset;
Benny Halevye5e94012010-10-20 00:18:01 -0400956 struct nfs_inode *nfsi = NFS_I(ino);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400957 struct nfs_server *server = NFS_SERVER(ino);
958 struct nfs_client *clp = server->nfs_client;
Benny Halevye5e94012010-10-20 00:18:01 -0400959 struct pnfs_layout_hdr *lo;
960 struct pnfs_layout_segment *lseg = NULL;
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000961 bool first = false;
Benny Halevye5e94012010-10-20 00:18:01 -0400962
963 if (!pnfs_enabled_sb(NFS_SERVER(ino)))
964 return NULL;
965 spin_lock(&ino->i_lock);
Peng Tao9fa40752011-07-30 20:52:32 -0400966 lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -0400967 if (lo == NULL) {
968 dprintk("%s ERROR: can't get pnfs_layout_hdr\n", __func__);
969 goto out_unlock;
970 }
971
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000972 /* Do we even need to bother with this? */
Trond Myklebusta59c30a2012-03-01 11:17:47 -0500973 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000974 dprintk("%s matches recall, use MDS\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -0400975 goto out_unlock;
976 }
977
978 /* if LAYOUTGET already failed once we don't try again */
Fred Isaman566052c2011-01-06 11:36:20 +0000979 if (test_bit(lo_fail_bit(iomode), &nfsi->layout->plh_flags))
Benny Halevye5e94012010-10-20 00:18:01 -0400980 goto out_unlock;
981
Andy Adamson568e8c42011-03-01 01:34:22 +0000982 /* Check to see if the layout for the given range already exists */
Benny Halevyfb3296e2011-05-22 19:47:26 +0300983 lseg = pnfs_find_lseg(lo, &arg);
Andy Adamson568e8c42011-03-01 01:34:22 +0000984 if (lseg)
985 goto out_unlock;
986
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000987 if (pnfs_layoutgets_blocked(lo, NULL, 0))
Fred Isamancf7d63f2011-01-06 11:36:25 +0000988 goto out_unlock;
989 atomic_inc(&lo->plh_outstanding);
990
Fred Isamancc6e5342011-01-06 11:36:28 +0000991 get_layout_hdr(lo);
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000992 if (list_empty(&lo->plh_segs))
993 first = true;
994 spin_unlock(&ino->i_lock);
995 if (first) {
Fred Isaman2130ff62011-01-06 11:36:26 +0000996 /* The lo must be on the clp list if there is any
997 * chance of a CB_LAYOUTRECALL(FILE) coming in.
998 */
999 spin_lock(&clp->cl_lock);
1000 BUG_ON(!list_empty(&lo->plh_layouts));
Weston Andros Adamson6382a442011-06-01 16:44:44 -04001001 list_add_tail(&lo->plh_layouts, &server->layouts);
Fred Isaman2130ff62011-01-06 11:36:26 +00001002 spin_unlock(&clp->cl_lock);
1003 }
Benny Halevye5e94012010-10-20 00:18:01 -04001004
Benny Halevy707ed5f2011-05-22 19:47:46 +03001005 pg_offset = arg.offset & ~PAGE_CACHE_MASK;
1006 if (pg_offset) {
1007 arg.offset -= pg_offset;
1008 arg.length += pg_offset;
1009 }
Andy Adamson7c24d942011-06-13 18:22:38 -04001010 if (arg.length != NFS4_MAX_UINT64)
1011 arg.length = PAGE_CACHE_ALIGN(arg.length);
Benny Halevy707ed5f2011-05-22 19:47:46 +03001012
Benny Halevyfb3296e2011-05-22 19:47:26 +03001013 lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
Fred Isamanf49f9ba2011-02-03 18:28:52 +00001014 if (!lseg && first) {
1015 spin_lock(&clp->cl_lock);
1016 list_del_init(&lo->plh_layouts);
1017 spin_unlock(&clp->cl_lock);
Fred Isaman2130ff62011-01-06 11:36:26 +00001018 }
Fred Isamancf7d63f2011-01-06 11:36:25 +00001019 atomic_dec(&lo->plh_outstanding);
Fred Isamancc6e5342011-01-06 11:36:28 +00001020 put_layout_hdr(lo);
Benny Halevye5e94012010-10-20 00:18:01 -04001021out:
1022 dprintk("%s end, state 0x%lx lseg %p\n", __func__,
Andy Adamsonbf9c1382011-03-01 01:34:07 +00001023 nfsi->layout ? nfsi->layout->plh_flags : -1, lseg);
Benny Halevye5e94012010-10-20 00:18:01 -04001024 return lseg;
1025out_unlock:
1026 spin_unlock(&ino->i_lock);
1027 goto out;
1028}
Andy Adamson7c24d942011-06-13 18:22:38 -04001029EXPORT_SYMBOL_GPL(pnfs_update_layout);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001030
1031int
1032pnfs_layout_process(struct nfs4_layoutget *lgp)
1033{
1034 struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
1035 struct nfs4_layoutget_res *res = &lgp->res;
1036 struct pnfs_layout_segment *lseg;
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001037 struct inode *ino = lo->plh_inode;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001038 int status = 0;
1039
1040 /* Inject layout blob into I/O device driver */
Trond Myklebusta75b9df2011-05-11 18:00:51 -04001041 lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res, lgp->gfp_flags);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001042 if (!lseg || IS_ERR(lseg)) {
1043 if (!lseg)
1044 status = -ENOMEM;
1045 else
1046 status = PTR_ERR(lseg);
1047 dprintk("%s: Could not allocate layout: error %d\n",
1048 __func__, status);
1049 goto out;
1050 }
1051
1052 spin_lock(&ino->i_lock);
Trond Myklebusta59c30a2012-03-01 11:17:47 -05001053 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001054 dprintk("%s forget reply due to recall\n", __func__);
1055 goto out_forget_reply;
1056 }
1057
1058 if (pnfs_layoutgets_blocked(lo, &res->stateid, 1)) {
1059 dprintk("%s forget reply due to state\n", __func__);
1060 goto out_forget_reply;
1061 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001062 init_lseg(lo, lseg);
Fred Isaman566052c2011-01-06 11:36:20 +00001063 lseg->pls_range = res->range;
Fred Isamand684d2a2011-03-01 01:34:13 +00001064 *lgp->lsegpp = get_lseg(lseg);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001065 pnfs_insert_layout(lo, lseg);
1066
Fred Isamanf7e89172011-01-06 11:36:32 +00001067 if (res->return_on_close) {
1068 set_bit(NFS_LSEG_ROC, &lseg->pls_flags);
1069 set_bit(NFS_LAYOUT_ROC, &lo->plh_flags);
1070 }
1071
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001072 /* Done processing layoutget. Set the layout stateid */
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001073 pnfs_set_layout_stateid(lo, &res->stateid, false);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001074 spin_unlock(&ino->i_lock);
1075out:
1076 return status;
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001077
1078out_forget_reply:
1079 spin_unlock(&ino->i_lock);
1080 lseg->pls_layout = lo;
1081 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
1082 goto out;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001083}
1084
Trond Myklebustd8007d42011-06-10 13:30:23 -04001085void
1086pnfs_generic_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
1087{
1088 BUG_ON(pgio->pg_lseg != NULL);
1089
Fred Isaman1825a0d2012-04-20 19:55:31 -04001090 if (req->wb_offset != req->wb_pgbase) {
1091 nfs_pageio_reset_read_mds(pgio);
1092 return;
1093 }
Trond Myklebustd8007d42011-06-10 13:30:23 -04001094 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1095 req->wb_context,
1096 req_offset(req),
1097 req->wb_bytes,
1098 IOMODE_READ,
1099 GFP_KERNEL);
Trond Myklebuste885de12011-06-10 13:30:23 -04001100 /* If no lseg, fall back to read through mds */
1101 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -04001102 nfs_pageio_reset_read_mds(pgio);
Trond Myklebuste885de12011-06-10 13:30:23 -04001103
Trond Myklebustd8007d42011-06-10 13:30:23 -04001104}
1105EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_read);
1106
1107void
1108pnfs_generic_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
1109{
1110 BUG_ON(pgio->pg_lseg != NULL);
1111
Fred Isaman1825a0d2012-04-20 19:55:31 -04001112 if (req->wb_offset != req->wb_pgbase) {
1113 nfs_pageio_reset_write_mds(pgio);
1114 return;
1115 }
Trond Myklebustd8007d42011-06-10 13:30:23 -04001116 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1117 req->wb_context,
1118 req_offset(req),
1119 req->wb_bytes,
1120 IOMODE_RW,
1121 GFP_NOFS);
Trond Myklebuste885de12011-06-10 13:30:23 -04001122 /* If no lseg, fall back to write through mds */
1123 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -04001124 nfs_pageio_reset_write_mds(pgio);
Trond Myklebustd8007d42011-06-10 13:30:23 -04001125}
1126EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_write);
1127
Benny Halevy18ad0a92011-05-25 21:03:56 +03001128bool
Fred Isaman061ae2e2012-04-20 14:47:48 -04001129pnfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, struct inode *inode,
1130 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -04001131{
1132 struct nfs_server *server = NFS_SERVER(inode);
1133 struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
1134
1135 if (ld == NULL)
1136 return false;
Fred Isaman061ae2e2012-04-20 14:47:48 -04001137 nfs_pageio_init(pgio, inode, ld->pg_read_ops, compl_ops,
1138 server->rsize, 0);
Trond Myklebust1751c362011-06-10 13:30:23 -04001139 return true;
1140}
1141
1142bool
Fred Isaman061ae2e2012-04-20 14:47:48 -04001143pnfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, struct inode *inode,
1144 int ioflags,
1145 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -04001146{
1147 struct nfs_server *server = NFS_SERVER(inode);
1148 struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
1149
1150 if (ld == NULL)
1151 return false;
Fred Isaman061ae2e2012-04-20 14:47:48 -04001152 nfs_pageio_init(pgio, inode, ld->pg_write_ops, compl_ops,
1153 server->wsize, ioflags);
Trond Myklebust1751c362011-06-10 13:30:23 -04001154 return true;
1155}
1156
1157bool
Benny Halevydfed2062011-05-25 20:25:22 +03001158pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
1159 struct nfs_page *req)
Fred Isamanbae724e2011-03-01 01:34:15 +00001160{
Trond Myklebustd8007d42011-06-10 13:30:23 -04001161 if (pgio->pg_lseg == NULL)
1162 return nfs_generic_pg_test(pgio, prev, req);
Benny Halevy89a58e32011-05-25 20:54:40 +03001163
Trond Myklebust19982ba2011-06-10 13:30:23 -04001164 /*
1165 * Test if a nfs_page is fully contained in the pnfs_layout_range.
1166 * Note that this test makes several assumptions:
1167 * - that the previous nfs_page in the struct nfs_pageio_descriptor
1168 * is known to lie within the range.
1169 * - that the nfs_page being tested is known to be contiguous with the
1170 * previous nfs_page.
1171 * - Layout ranges are page aligned, so we only have to test the
1172 * start offset of the request.
1173 *
1174 * Please also note that 'end_offset' is actually the offset of the
1175 * first byte that lies outside the pnfs_layout_range. FIXME?
1176 *
1177 */
1178 return req_offset(req) < end_offset(pgio->pg_lseg->pls_range.offset,
1179 pgio->pg_lseg->pls_range.length);
Fred Isamanbae724e2011-03-01 01:34:15 +00001180}
Benny Halevy89a58e32011-05-25 20:54:40 +03001181EXPORT_SYMBOL_GPL(pnfs_generic_pg_test);
Fred Isamanbae724e2011-03-01 01:34:15 +00001182
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001183int pnfs_write_done_resend_to_mds(struct inode *inode,
Fred Isaman061ae2e2012-04-20 14:47:48 -04001184 struct list_head *head,
1185 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001186{
1187 struct nfs_pageio_descriptor pgio;
1188 LIST_HEAD(failed);
1189
1190 /* Resend all requests through the MDS */
Fred Isaman061ae2e2012-04-20 14:47:48 -04001191 nfs_pageio_init_write_mds(&pgio, inode, FLUSH_STABLE, compl_ops);
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001192 while (!list_empty(head)) {
1193 struct nfs_page *req = nfs_list_entry(head->next);
1194
1195 nfs_list_remove_request(req);
1196 if (!nfs_pageio_add_request(&pgio, req))
1197 nfs_list_add_request(req, &failed);
1198 }
1199 nfs_pageio_complete(&pgio);
1200
1201 if (!list_empty(&failed)) {
1202 /* For some reason our attempt to resend pages. Mark the
1203 * overall send request as having failed, and let
1204 * nfs_writeback_release_full deal with the error.
1205 */
1206 list_move(&failed, head);
1207 return -EIO;
1208 }
1209 return 0;
1210}
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001211EXPORT_SYMBOL_GPL(pnfs_write_done_resend_to_mds);
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001212
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001213static void pnfs_ld_handle_write_error(struct nfs_write_data *data)
1214{
Fred Isamancd841602012-04-20 14:47:44 -04001215 struct nfs_pgio_header *hdr = data->header;
1216
1217 dprintk("pnfs write error = %d\n", hdr->pnfs_error);
1218 if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001219 PNFS_LAYOUTRET_ON_ERROR) {
Fred Isamancd841602012-04-20 14:47:44 -04001220 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(hdr->inode)->flags);
1221 pnfs_return_layout(hdr->inode);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001222 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001223 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
1224 data->task.tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
Fred Isaman061ae2e2012-04-20 14:47:48 -04001225 &hdr->pages,
1226 hdr->completion_ops);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001227}
1228
Benny Halevyd20581a2011-05-22 19:52:03 +03001229/*
1230 * Called by non rpc-based layout drivers
1231 */
Peng Tao8ce160c2011-09-22 21:50:14 -04001232void pnfs_ld_write_done(struct nfs_write_data *data)
Fred Isaman94ad1c82011-03-01 01:34:14 +00001233{
Fred Isamancd841602012-04-20 14:47:44 -04001234 struct nfs_pgio_header *hdr = data->header;
1235
1236 if (!hdr->pnfs_error) {
Benny Halevyd20581a2011-05-22 19:52:03 +03001237 pnfs_set_layoutcommit(data);
Fred Isamancd841602012-04-20 14:47:44 -04001238 hdr->mds_ops->rpc_call_done(&data->task, data);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001239 } else
1240 pnfs_ld_handle_write_error(data);
Fred Isamancd841602012-04-20 14:47:44 -04001241 hdr->mds_ops->rpc_release(data);
Fred Isaman44b83792011-03-03 15:13:44 +00001242}
Benny Halevyd20581a2011-05-22 19:52:03 +03001243EXPORT_SYMBOL_GPL(pnfs_ld_write_done);
Fred Isaman44b83792011-03-03 15:13:44 +00001244
Trond Myklebustdce81292011-07-13 15:59:19 -04001245static void
1246pnfs_write_through_mds(struct nfs_pageio_descriptor *desc,
1247 struct nfs_write_data *data)
1248{
Fred Isamancd841602012-04-20 14:47:44 -04001249 struct nfs_pgio_header *hdr = data->header;
1250
Fred Isaman6c75dc02012-04-20 14:47:47 -04001251 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
1252 list_splice_tail_init(&hdr->pages, &desc->pg_list);
1253 nfs_pageio_reset_write_mds(desc);
1254 desc->pg_recoalesce = 1;
1255 }
Trond Myklebustdce81292011-07-13 15:59:19 -04001256 nfs_writedata_release(data);
1257}
1258
1259static enum pnfs_try_status
Andy Adamson0382b742011-03-03 15:13:45 +00001260pnfs_try_to_write_data(struct nfs_write_data *wdata,
Trond Myklebustdce81292011-07-13 15:59:19 -04001261 const struct rpc_call_ops *call_ops,
1262 struct pnfs_layout_segment *lseg,
1263 int how)
Andy Adamson0382b742011-03-03 15:13:45 +00001264{
Fred Isamancd841602012-04-20 14:47:44 -04001265 struct nfs_pgio_header *hdr = wdata->header;
1266 struct inode *inode = hdr->inode;
Andy Adamson0382b742011-03-03 15:13:45 +00001267 enum pnfs_try_status trypnfs;
1268 struct nfs_server *nfss = NFS_SERVER(inode);
1269
Fred Isamancd841602012-04-20 14:47:44 -04001270 hdr->mds_ops = call_ops;
Andy Adamson0382b742011-03-03 15:13:45 +00001271
1272 dprintk("%s: Writing ino:%lu %u@%llu (how %d)\n", __func__,
1273 inode->i_ino, wdata->args.count, wdata->args.offset, how);
Andy Adamson0382b742011-03-03 15:13:45 +00001274 trypnfs = nfss->pnfs_curr_ld->write_pagelist(wdata, how);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001275 if (trypnfs != PNFS_NOT_ATTEMPTED)
Andy Adamson0382b742011-03-03 15:13:45 +00001276 nfs_inc_stats(inode, NFSIOS_PNFS_WRITE);
Andy Adamson0382b742011-03-03 15:13:45 +00001277 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1278 return trypnfs;
1279}
1280
Trond Myklebustdce81292011-07-13 15:59:19 -04001281static void
1282pnfs_do_multiple_writes(struct nfs_pageio_descriptor *desc, struct list_head *head, int how)
1283{
1284 struct nfs_write_data *data;
1285 const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
1286 struct pnfs_layout_segment *lseg = desc->pg_lseg;
1287
1288 desc->pg_lseg = NULL;
1289 while (!list_empty(head)) {
1290 enum pnfs_try_status trypnfs;
1291
Fred Isaman6c75dc02012-04-20 14:47:47 -04001292 data = list_first_entry(head, struct nfs_write_data, list);
Trond Myklebustdce81292011-07-13 15:59:19 -04001293 list_del_init(&data->list);
1294
1295 trypnfs = pnfs_try_to_write_data(data, call_ops, lseg, how);
1296 if (trypnfs == PNFS_NOT_ATTEMPTED)
1297 pnfs_write_through_mds(desc, data);
1298 }
1299 put_lseg(lseg);
1300}
1301
Fred Isaman6c75dc02012-04-20 14:47:47 -04001302static void pnfs_writehdr_free(struct nfs_pgio_header *hdr)
1303{
1304 put_lseg(hdr->lseg);
1305 nfs_writehdr_free(hdr);
1306}
1307
Trond Myklebustdce81292011-07-13 15:59:19 -04001308int
1309pnfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
1310{
Fred Isaman6c75dc02012-04-20 14:47:47 -04001311 struct nfs_write_header *whdr;
1312 struct nfs_pgio_header *hdr;
Trond Myklebustdce81292011-07-13 15:59:19 -04001313 int ret;
1314
Fred Isaman6c75dc02012-04-20 14:47:47 -04001315 whdr = nfs_writehdr_alloc();
1316 if (!whdr) {
Trond Myklebust9b5415b2012-04-27 14:31:47 -04001317 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001318 put_lseg(desc->pg_lseg);
1319 desc->pg_lseg = NULL;
1320 return -ENOMEM;
1321 }
1322 hdr = &whdr->header;
1323 nfs_pgheader_init(desc, hdr, pnfs_writehdr_free);
1324 hdr->lseg = get_lseg(desc->pg_lseg);
1325 atomic_inc(&hdr->refcnt);
1326 ret = nfs_generic_flush(desc, hdr);
Trond Myklebustdce81292011-07-13 15:59:19 -04001327 if (ret != 0) {
1328 put_lseg(desc->pg_lseg);
1329 desc->pg_lseg = NULL;
Fred Isaman6c75dc02012-04-20 14:47:47 -04001330 } else
1331 pnfs_do_multiple_writes(desc, &hdr->rpc_list, desc->pg_ioflags);
1332 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -04001333 hdr->completion_ops->completion(hdr);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001334 return ret;
Trond Myklebustdce81292011-07-13 15:59:19 -04001335}
1336EXPORT_SYMBOL_GPL(pnfs_generic_pg_writepages);
1337
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001338int pnfs_read_done_resend_to_mds(struct inode *inode,
Fred Isaman061ae2e2012-04-20 14:47:48 -04001339 struct list_head *head,
1340 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust62e4a762011-11-10 14:30:37 -05001341{
1342 struct nfs_pageio_descriptor pgio;
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001343 LIST_HEAD(failed);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001344
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001345 /* Resend all requests through the MDS */
Fred Isaman061ae2e2012-04-20 14:47:48 -04001346 nfs_pageio_init_read_mds(&pgio, inode, compl_ops);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001347 while (!list_empty(head)) {
1348 struct nfs_page *req = nfs_list_entry(head->next);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001349
1350 nfs_list_remove_request(req);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001351 if (!nfs_pageio_add_request(&pgio, req))
1352 nfs_list_add_request(req, &failed);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001353 }
1354 nfs_pageio_complete(&pgio);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001355
1356 if (!list_empty(&failed)) {
1357 list_move(&failed, head);
1358 return -EIO;
1359 }
1360 return 0;
1361}
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001362EXPORT_SYMBOL_GPL(pnfs_read_done_resend_to_mds);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001363
1364static void pnfs_ld_handle_read_error(struct nfs_read_data *data)
1365{
Fred Isamancd841602012-04-20 14:47:44 -04001366 struct nfs_pgio_header *hdr = data->header;
1367
1368 dprintk("pnfs read error = %d\n", hdr->pnfs_error);
1369 if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001370 PNFS_LAYOUTRET_ON_ERROR) {
Fred Isamancd841602012-04-20 14:47:44 -04001371 clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(hdr->inode)->flags);
1372 pnfs_return_layout(hdr->inode);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001373 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001374 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
1375 data->task.tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
Fred Isaman061ae2e2012-04-20 14:47:48 -04001376 &hdr->pages,
1377 hdr->completion_ops);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001378}
1379
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001380/*
Benny Halevyd20581a2011-05-22 19:52:03 +03001381 * Called by non rpc-based layout drivers
1382 */
Peng Tao9b7eecd2011-09-22 21:50:15 -04001383void pnfs_ld_read_done(struct nfs_read_data *data)
Benny Halevyd20581a2011-05-22 19:52:03 +03001384{
Fred Isamancd841602012-04-20 14:47:44 -04001385 struct nfs_pgio_header *hdr = data->header;
1386
1387 if (likely(!hdr->pnfs_error)) {
Benny Halevyd20581a2011-05-22 19:52:03 +03001388 __nfs4_read_done_cb(data);
Fred Isamancd841602012-04-20 14:47:44 -04001389 hdr->mds_ops->rpc_call_done(&data->task, data);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001390 } else
1391 pnfs_ld_handle_read_error(data);
Fred Isamancd841602012-04-20 14:47:44 -04001392 hdr->mds_ops->rpc_release(data);
Benny Halevyd20581a2011-05-22 19:52:03 +03001393}
1394EXPORT_SYMBOL_GPL(pnfs_ld_read_done);
1395
Trond Myklebust493292d2011-07-13 15:58:28 -04001396static void
1397pnfs_read_through_mds(struct nfs_pageio_descriptor *desc,
1398 struct nfs_read_data *data)
1399{
Fred Isamancd841602012-04-20 14:47:44 -04001400 struct nfs_pgio_header *hdr = data->header;
1401
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001402 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
1403 list_splice_tail_init(&hdr->pages, &desc->pg_list);
1404 nfs_pageio_reset_read_mds(desc);
1405 desc->pg_recoalesce = 1;
1406 }
Trond Myklebust493292d2011-07-13 15:58:28 -04001407 nfs_readdata_release(data);
1408}
1409
Benny Halevyd20581a2011-05-22 19:52:03 +03001410/*
Andy Adamson64419a92011-03-01 01:34:16 +00001411 * Call the appropriate parallel I/O subsystem read function.
1412 */
Trond Myklebust493292d2011-07-13 15:58:28 -04001413static enum pnfs_try_status
Andy Adamson64419a92011-03-01 01:34:16 +00001414pnfs_try_to_read_data(struct nfs_read_data *rdata,
Trond Myklebust493292d2011-07-13 15:58:28 -04001415 const struct rpc_call_ops *call_ops,
1416 struct pnfs_layout_segment *lseg)
Andy Adamson64419a92011-03-01 01:34:16 +00001417{
Fred Isamancd841602012-04-20 14:47:44 -04001418 struct nfs_pgio_header *hdr = rdata->header;
1419 struct inode *inode = hdr->inode;
Andy Adamson64419a92011-03-01 01:34:16 +00001420 struct nfs_server *nfss = NFS_SERVER(inode);
1421 enum pnfs_try_status trypnfs;
1422
Fred Isamancd841602012-04-20 14:47:44 -04001423 hdr->mds_ops = call_ops;
Andy Adamson64419a92011-03-01 01:34:16 +00001424
1425 dprintk("%s: Reading ino:%lu %u@%llu\n",
1426 __func__, inode->i_ino, rdata->args.count, rdata->args.offset);
1427
1428 trypnfs = nfss->pnfs_curr_ld->read_pagelist(rdata);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001429 if (trypnfs != PNFS_NOT_ATTEMPTED)
Andy Adamson64419a92011-03-01 01:34:16 +00001430 nfs_inc_stats(inode, NFSIOS_PNFS_READ);
Andy Adamson64419a92011-03-01 01:34:16 +00001431 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1432 return trypnfs;
1433}
Andy Adamson863a3c62011-03-23 13:27:54 +00001434
Trond Myklebust493292d2011-07-13 15:58:28 -04001435static void
1436pnfs_do_multiple_reads(struct nfs_pageio_descriptor *desc, struct list_head *head)
1437{
1438 struct nfs_read_data *data;
1439 const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
1440 struct pnfs_layout_segment *lseg = desc->pg_lseg;
1441
1442 desc->pg_lseg = NULL;
1443 while (!list_empty(head)) {
1444 enum pnfs_try_status trypnfs;
1445
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001446 data = list_first_entry(head, struct nfs_read_data, list);
Trond Myklebust493292d2011-07-13 15:58:28 -04001447 list_del_init(&data->list);
1448
1449 trypnfs = pnfs_try_to_read_data(data, call_ops, lseg);
1450 if (trypnfs == PNFS_NOT_ATTEMPTED)
1451 pnfs_read_through_mds(desc, data);
1452 }
1453 put_lseg(lseg);
1454}
1455
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001456static void pnfs_readhdr_free(struct nfs_pgio_header *hdr)
1457{
1458 put_lseg(hdr->lseg);
1459 nfs_readhdr_free(hdr);
1460}
1461
Trond Myklebust493292d2011-07-13 15:58:28 -04001462int
1463pnfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
1464{
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001465 struct nfs_read_header *rhdr;
1466 struct nfs_pgio_header *hdr;
Trond Myklebust493292d2011-07-13 15:58:28 -04001467 int ret;
1468
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001469 rhdr = nfs_readhdr_alloc();
1470 if (!rhdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -04001471 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001472 ret = -ENOMEM;
Trond Myklebust493292d2011-07-13 15:58:28 -04001473 put_lseg(desc->pg_lseg);
1474 desc->pg_lseg = NULL;
1475 return ret;
1476 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001477 hdr = &rhdr->header;
1478 nfs_pgheader_init(desc, hdr, pnfs_readhdr_free);
1479 hdr->lseg = get_lseg(desc->pg_lseg);
1480 atomic_inc(&hdr->refcnt);
1481 ret = nfs_generic_pagein(desc, hdr);
1482 if (ret != 0) {
1483 put_lseg(desc->pg_lseg);
1484 desc->pg_lseg = NULL;
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001485 } else
1486 pnfs_do_multiple_reads(desc, &hdr->rpc_list);
1487 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -04001488 hdr->completion_ops->completion(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001489 return ret;
Trond Myklebust493292d2011-07-13 15:58:28 -04001490}
1491EXPORT_SYMBOL_GPL(pnfs_generic_pg_readpages);
1492
Andy Adamson863a3c62011-03-23 13:27:54 +00001493/*
Peng Taoa9bae562011-07-30 20:52:33 -04001494 * There can be multiple RW segments.
Andy Adamson863a3c62011-03-23 13:27:54 +00001495 */
Peng Taoa9bae562011-07-30 20:52:33 -04001496static void pnfs_list_write_lseg(struct inode *inode, struct list_head *listp)
Andy Adamson863a3c62011-03-23 13:27:54 +00001497{
Peng Taoa9bae562011-07-30 20:52:33 -04001498 struct pnfs_layout_segment *lseg;
Andy Adamson863a3c62011-03-23 13:27:54 +00001499
Peng Taoa9bae562011-07-30 20:52:33 -04001500 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list) {
1501 if (lseg->pls_range.iomode == IOMODE_RW &&
1502 test_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
1503 list_add(&lseg->pls_lc_list, listp);
1504 }
Andy Adamson863a3c62011-03-23 13:27:54 +00001505}
1506
Peng Tao1b0ae062011-09-22 21:50:12 -04001507void pnfs_set_lo_fail(struct pnfs_layout_segment *lseg)
1508{
1509 if (lseg->pls_range.iomode == IOMODE_RW) {
1510 dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__);
1511 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
1512 } else {
1513 dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__);
1514 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
1515 }
1516}
1517EXPORT_SYMBOL_GPL(pnfs_set_lo_fail);
1518
Andy Adamson863a3c62011-03-23 13:27:54 +00001519void
1520pnfs_set_layoutcommit(struct nfs_write_data *wdata)
1521{
Fred Isamancd841602012-04-20 14:47:44 -04001522 struct nfs_pgio_header *hdr = wdata->header;
1523 struct inode *inode = hdr->inode;
1524 struct nfs_inode *nfsi = NFS_I(inode);
Vitaliy Gusev4b8ee2b2011-05-20 01:34:46 +04001525 loff_t end_pos = wdata->mds_offset + wdata->res.count;
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04001526 bool mark_as_dirty = false;
Andy Adamson863a3c62011-03-23 13:27:54 +00001527
Fred Isamancd841602012-04-20 14:47:44 -04001528 spin_lock(&inode->i_lock);
Andy Adamson863a3c62011-03-23 13:27:54 +00001529 if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04001530 mark_as_dirty = true;
Andy Adamson863a3c62011-03-23 13:27:54 +00001531 dprintk("%s: Set layoutcommit for inode %lu ",
Fred Isamancd841602012-04-20 14:47:44 -04001532 __func__, inode->i_ino);
Andy Adamson863a3c62011-03-23 13:27:54 +00001533 }
Fred Isamancd841602012-04-20 14:47:44 -04001534 if (!test_and_set_bit(NFS_LSEG_LAYOUTCOMMIT, &hdr->lseg->pls_flags)) {
Peng Taoa9bae562011-07-30 20:52:33 -04001535 /* references matched in nfs4_layoutcommit_release */
Fred Isamancd841602012-04-20 14:47:44 -04001536 get_lseg(hdr->lseg);
Peng Taoa9bae562011-07-30 20:52:33 -04001537 }
Peng Taoacff58802011-07-30 20:52:31 -04001538 if (end_pos > nfsi->layout->plh_lwb)
1539 nfsi->layout->plh_lwb = end_pos;
Fred Isamancd841602012-04-20 14:47:44 -04001540 spin_unlock(&inode->i_lock);
Peng Taoacff58802011-07-30 20:52:31 -04001541 dprintk("%s: lseg %p end_pos %llu\n",
Fred Isamancd841602012-04-20 14:47:44 -04001542 __func__, hdr->lseg, nfsi->layout->plh_lwb);
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04001543
1544 /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
1545 * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
1546 if (mark_as_dirty)
Fred Isamancd841602012-04-20 14:47:44 -04001547 mark_inode_dirty_sync(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00001548}
1549EXPORT_SYMBOL_GPL(pnfs_set_layoutcommit);
1550
Andy Adamsondb29c082011-07-30 20:52:38 -04001551void pnfs_cleanup_layoutcommit(struct nfs4_layoutcommit_data *data)
1552{
1553 struct nfs_server *nfss = NFS_SERVER(data->args.inode);
1554
1555 if (nfss->pnfs_curr_ld->cleanup_layoutcommit)
1556 nfss->pnfs_curr_ld->cleanup_layoutcommit(data);
1557}
1558
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001559/*
1560 * For the LAYOUT4_NFSV4_1_FILES layout type, NFS_DATA_SYNC WRITEs and
1561 * NFS_UNSTABLE WRITEs with a COMMIT to data servers must store enough
1562 * data to disk to allow the server to recover the data if it crashes.
1563 * LAYOUTCOMMIT is only needed when the NFL4_UFLG_COMMIT_THRU_MDS flag
1564 * is off, and a COMMIT is sent to a data server, or
1565 * if WRITEs to a data server return NFS_DATA_SYNC.
1566 */
Andy Adamson863a3c62011-03-23 13:27:54 +00001567int
Andy Adamsonef311532011-03-12 02:58:10 -05001568pnfs_layoutcommit_inode(struct inode *inode, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00001569{
1570 struct nfs4_layoutcommit_data *data;
1571 struct nfs_inode *nfsi = NFS_I(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00001572 loff_t end_pos;
1573 int status = 0;
1574
1575 dprintk("--> %s inode %lu\n", __func__, inode->i_ino);
1576
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001577 if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
1578 return 0;
1579
Andy Adamson863a3c62011-03-23 13:27:54 +00001580 /* Note kzalloc ensures data->res.seq_res.sr_slot == NULL */
1581 data = kzalloc(sizeof(*data), GFP_NOFS);
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001582 if (!data) {
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001583 status = -ENOMEM;
1584 goto out;
1585 }
Andy Adamson863a3c62011-03-23 13:27:54 +00001586
Peng Tao92407e72011-10-23 20:21:17 -07001587 if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
1588 goto out_free;
1589
1590 if (test_and_set_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags)) {
1591 if (!sync) {
1592 status = -EAGAIN;
1593 goto out_free;
1594 }
1595 status = wait_on_bit_lock(&nfsi->flags, NFS_INO_LAYOUTCOMMITTING,
1596 nfs_wait_bit_killable, TASK_KILLABLE);
1597 if (status)
1598 goto out_free;
1599 }
1600
Peng Taoa9bae562011-07-30 20:52:33 -04001601 INIT_LIST_HEAD(&data->lseg_list);
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001602 spin_lock(&inode->i_lock);
Andy Adamson863a3c62011-03-23 13:27:54 +00001603 if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
Peng Tao92407e72011-10-23 20:21:17 -07001604 clear_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags);
Andy Adamson863a3c62011-03-23 13:27:54 +00001605 spin_unlock(&inode->i_lock);
Peng Tao92407e72011-10-23 20:21:17 -07001606 wake_up_bit(&nfsi->flags, NFS_INO_LAYOUTCOMMITTING);
1607 goto out_free;
Andy Adamson863a3c62011-03-23 13:27:54 +00001608 }
Peng Taoa9bae562011-07-30 20:52:33 -04001609
1610 pnfs_list_write_lseg(inode, &data->lseg_list);
Andy Adamson863a3c62011-03-23 13:27:54 +00001611
Peng Taoacff58802011-07-30 20:52:31 -04001612 end_pos = nfsi->layout->plh_lwb;
Peng Taoacff58802011-07-30 20:52:31 -04001613 nfsi->layout->plh_lwb = 0;
Andy Adamson863a3c62011-03-23 13:27:54 +00001614
Trond Myklebustf597c532012-03-04 18:13:56 -05001615 nfs4_stateid_copy(&data->args.stateid, &nfsi->layout->plh_stateid);
Andy Adamson863a3c62011-03-23 13:27:54 +00001616 spin_unlock(&inode->i_lock);
1617
1618 data->args.inode = inode;
Peng Tao9fa40752011-07-30 20:52:32 -04001619 data->cred = get_rpccred(nfsi->layout->plh_lc_cred);
Andy Adamson863a3c62011-03-23 13:27:54 +00001620 nfs_fattr_init(&data->fattr);
1621 data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
1622 data->res.fattr = &data->fattr;
1623 data->args.lastbytewritten = end_pos - 1;
1624 data->res.server = NFS_SERVER(inode);
1625
1626 status = nfs4_proc_layoutcommit(data, sync);
1627out:
Peng Tao92407e72011-10-23 20:21:17 -07001628 if (status)
1629 mark_inode_dirty_sync(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00001630 dprintk("<-- %s status %d\n", __func__, status);
1631 return status;
Peng Tao92407e72011-10-23 20:21:17 -07001632out_free:
1633 kfree(data);
1634 goto out;
Andy Adamson863a3c62011-03-23 13:27:54 +00001635}
Andy Adamson82be4172012-05-23 05:02:35 -04001636
1637struct nfs4_threshold *pnfs_mdsthreshold_alloc(void)
1638{
1639 struct nfs4_threshold *thp;
1640
1641 thp = kzalloc(sizeof(*thp), GFP_NOFS);
1642 if (!thp) {
1643 dprintk("%s mdsthreshold allocation failed\n", __func__);
1644 return NULL;
1645 }
1646 return thp;
1647}