blob: a6586cdee2110780796abaf3af017f4b8a2b94e7 [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"
Trond Myklebustcc668ab2013-08-14 15:31:28 -040036#include "nfs4trace.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040037
38#define NFSDBG_FACILITY NFSDBG_PNFS
Trond Myklebust25c75332012-09-18 17:01:12 -040039#define PNFS_LAYOUTGET_RETRY_TIMEOUT (120*HZ)
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040040
Fred Isaman02c35fc2010-10-20 00:17:59 -040041/* Locking:
42 *
43 * pnfs_spinlock:
44 * protects pnfs_modules_tbl.
45 */
46static DEFINE_SPINLOCK(pnfs_spinlock);
47
48/*
49 * pnfs_modules_tbl holds all pnfs modules
50 */
51static LIST_HEAD(pnfs_modules_tbl);
52
53/* Return the registered pnfs layout driver module matching given id */
54static struct pnfs_layoutdriver_type *
55find_pnfs_driver_locked(u32 id)
56{
57 struct pnfs_layoutdriver_type *local;
58
59 list_for_each_entry(local, &pnfs_modules_tbl, pnfs_tblid)
60 if (local->id == id)
61 goto out;
62 local = NULL;
63out:
64 dprintk("%s: Searching for id %u, found %p\n", __func__, id, local);
65 return local;
66}
67
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040068static struct pnfs_layoutdriver_type *
69find_pnfs_driver(u32 id)
70{
Fred Isaman02c35fc2010-10-20 00:17:59 -040071 struct pnfs_layoutdriver_type *local;
72
73 spin_lock(&pnfs_spinlock);
74 local = find_pnfs_driver_locked(id);
Trond Myklebust0a9c63f2012-06-15 13:02:58 -040075 if (local != NULL && !try_module_get(local->owner)) {
76 dprintk("%s: Could not grab reference on module\n", __func__);
77 local = NULL;
78 }
Fred Isaman02c35fc2010-10-20 00:17:59 -040079 spin_unlock(&pnfs_spinlock);
80 return local;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040081}
82
83void
84unset_pnfs_layoutdriver(struct nfs_server *nfss)
85{
Benny Halevy738fd0f32011-07-30 20:52:36 -040086 if (nfss->pnfs_curr_ld) {
87 if (nfss->pnfs_curr_ld->clear_layoutdriver)
88 nfss->pnfs_curr_ld->clear_layoutdriver(nfss);
Trond Myklebust2a4c8992012-06-14 13:08:38 -040089 /* Decrement the MDS count. Purge the deviceid cache if zero */
90 if (atomic_dec_and_test(&nfss->nfs_client->cl_mds_count))
91 nfs4_deviceid_purge_client(nfss->nfs_client);
Fred Isaman02c35fc2010-10-20 00:17:59 -040092 module_put(nfss->pnfs_curr_ld->owner);
Benny Halevy738fd0f32011-07-30 20:52:36 -040093 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040094 nfss->pnfs_curr_ld = NULL;
95}
96
97/*
98 * Try to set the server's pnfs module to the pnfs layout type specified by id.
99 * Currently only one pNFS layout driver per filesystem is supported.
100 *
101 * @id layout type. Zero (illegal layout type) indicates pNFS not in use.
102 */
103void
Benny Halevy738fd0f32011-07-30 20:52:36 -0400104set_pnfs_layoutdriver(struct nfs_server *server, const struct nfs_fh *mntfh,
105 u32 id)
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400106{
107 struct pnfs_layoutdriver_type *ld_type = NULL;
108
109 if (id == 0)
110 goto out_no_driver;
111 if (!(server->nfs_client->cl_exchange_flags &
112 (EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS))) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500113 printk(KERN_ERR "NFS: %s: id %u cl_exchange_flags 0x%x\n",
114 __func__, id, server->nfs_client->cl_exchange_flags);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400115 goto out_no_driver;
116 }
117 ld_type = find_pnfs_driver(id);
118 if (!ld_type) {
119 request_module("%s-%u", LAYOUT_NFSV4_1_MODULE_PREFIX, id);
120 ld_type = find_pnfs_driver(id);
121 if (!ld_type) {
122 dprintk("%s: No pNFS module found for %u.\n",
123 __func__, id);
124 goto out_no_driver;
125 }
126 }
127 server->pnfs_curr_ld = ld_type;
Benny Halevy738fd0f32011-07-30 20:52:36 -0400128 if (ld_type->set_layoutdriver
129 && ld_type->set_layoutdriver(server, mntfh)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500130 printk(KERN_ERR "NFS: %s: Error initializing pNFS layout "
131 "driver %u.\n", __func__, id);
Benny Halevy738fd0f32011-07-30 20:52:36 -0400132 module_put(ld_type->owner);
133 goto out_no_driver;
134 }
Trond Myklebust2a4c8992012-06-14 13:08:38 -0400135 /* Bump the MDS count */
136 atomic_inc(&server->nfs_client->cl_mds_count);
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000137
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400138 dprintk("%s: pNFS module for %u set\n", __func__, id);
139 return;
140
141out_no_driver:
142 dprintk("%s: Using NFSv4 I/O\n", __func__);
143 server->pnfs_curr_ld = NULL;
144}
Fred Isaman02c35fc2010-10-20 00:17:59 -0400145
146int
147pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
148{
149 int status = -EINVAL;
150 struct pnfs_layoutdriver_type *tmp;
151
152 if (ld_type->id == 0) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500153 printk(KERN_ERR "NFS: %s id 0 is reserved\n", __func__);
Fred Isaman02c35fc2010-10-20 00:17:59 -0400154 return status;
155 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400156 if (!ld_type->alloc_lseg || !ld_type->free_lseg) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500157 printk(KERN_ERR "NFS: %s Layout driver must provide "
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400158 "alloc_lseg and free_lseg.\n", __func__);
159 return status;
160 }
Fred Isaman02c35fc2010-10-20 00:17:59 -0400161
162 spin_lock(&pnfs_spinlock);
163 tmp = find_pnfs_driver_locked(ld_type->id);
164 if (!tmp) {
165 list_add(&ld_type->pnfs_tblid, &pnfs_modules_tbl);
166 status = 0;
167 dprintk("%s Registering id:%u name:%s\n", __func__, ld_type->id,
168 ld_type->name);
169 } else {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500170 printk(KERN_ERR "NFS: %s Module with id %d already loaded!\n",
Fred Isaman02c35fc2010-10-20 00:17:59 -0400171 __func__, ld_type->id);
172 }
173 spin_unlock(&pnfs_spinlock);
174
175 return status;
176}
177EXPORT_SYMBOL_GPL(pnfs_register_layoutdriver);
178
179void
180pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
181{
182 dprintk("%s Deregistering id:%u\n", __func__, ld_type->id);
183 spin_lock(&pnfs_spinlock);
184 list_del(&ld_type->pnfs_tblid);
185 spin_unlock(&pnfs_spinlock);
186}
187EXPORT_SYMBOL_GPL(pnfs_unregister_layoutdriver);
Benny Halevye5e94012010-10-20 00:18:01 -0400188
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400189/*
190 * pNFS client layout cache
191 */
192
Fred Isamancc6e5342011-01-06 11:36:28 +0000193/* Need to hold i_lock if caller does not already hold reference */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000194void
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400195pnfs_get_layout_hdr(struct pnfs_layout_hdr *lo)
Benny Halevye5e94012010-10-20 00:18:01 -0400196{
Fred Isamancc6e5342011-01-06 11:36:28 +0000197 atomic_inc(&lo->plh_refcount);
198}
199
Benny Halevy636fb9c2011-05-22 19:51:33 +0300200static struct pnfs_layout_hdr *
201pnfs_alloc_layout_hdr(struct inode *ino, gfp_t gfp_flags)
202{
203 struct pnfs_layoutdriver_type *ld = NFS_SERVER(ino)->pnfs_curr_ld;
Trond Myklebust57934272012-09-20 20:37:23 -0400204 return ld->alloc_layout_hdr(ino, gfp_flags);
Benny Halevy636fb9c2011-05-22 19:51:33 +0300205}
206
207static void
208pnfs_free_layout_hdr(struct pnfs_layout_hdr *lo)
209{
Trond Myklebust9c626382012-09-20 17:31:43 -0400210 struct nfs_server *server = NFS_SERVER(lo->plh_inode);
211 struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
212
213 if (!list_empty(&lo->plh_layouts)) {
214 struct nfs_client *clp = server->nfs_client;
215
216 spin_lock(&clp->cl_lock);
217 list_del_init(&lo->plh_layouts);
218 spin_unlock(&clp->cl_lock);
219 }
Peng Tao9fa40752011-07-30 20:52:32 -0400220 put_rpccred(lo->plh_lc_cred);
Trond Myklebust57934272012-09-20 20:37:23 -0400221 return ld->free_layout_hdr(lo);
Benny Halevy636fb9c2011-05-22 19:51:33 +0300222}
223
Fred Isamancc6e5342011-01-06 11:36:28 +0000224static void
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400225pnfs_detach_layout_hdr(struct pnfs_layout_hdr *lo)
Fred Isamancc6e5342011-01-06 11:36:28 +0000226{
Trond Myklebustbb346f62012-09-20 15:52:13 -0400227 struct nfs_inode *nfsi = NFS_I(lo->plh_inode);
Fred Isamancc6e5342011-01-06 11:36:28 +0000228 dprintk("%s: freeing layout cache %p\n", __func__, lo);
Trond Myklebustbb346f62012-09-20 15:52:13 -0400229 nfsi->layout = NULL;
230 /* Reset MDS Threshold I/O counters */
231 nfsi->write_io = 0;
232 nfsi->read_io = 0;
Benny Halevye5e94012010-10-20 00:18:01 -0400233}
234
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400235void
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400236pnfs_put_layout_hdr(struct pnfs_layout_hdr *lo)
Andy Adamson974cec82010-10-20 00:18:02 -0400237{
Fred Isamancc6e5342011-01-06 11:36:28 +0000238 struct inode *inode = lo->plh_inode;
239
240 if (atomic_dec_and_lock(&lo->plh_refcount, &inode->i_lock)) {
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400241 pnfs_detach_layout_hdr(lo);
Fred Isamancc6e5342011-01-06 11:36:28 +0000242 spin_unlock(&inode->i_lock);
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400243 pnfs_free_layout_hdr(lo);
Fred Isamancc6e5342011-01-06 11:36:28 +0000244 }
Andy Adamson974cec82010-10-20 00:18:02 -0400245}
246
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400247static int
248pnfs_iomode_to_fail_bit(u32 iomode)
249{
250 return iomode == IOMODE_RW ?
251 NFS_LAYOUT_RW_FAILED : NFS_LAYOUT_RO_FAILED;
252}
253
254static void
Trond Myklebust3e621212012-09-24 13:07:16 -0400255pnfs_layout_set_fail_bit(struct pnfs_layout_hdr *lo, int fail_bit)
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400256{
Trond Myklebust25c75332012-09-18 17:01:12 -0400257 lo->plh_retry_timestamp = jiffies;
Yanchuan Nian39e88fc2013-01-04 20:19:49 +0800258 if (!test_and_set_bit(fail_bit, &lo->plh_flags))
Trond Myklebust3e621212012-09-24 13:07:16 -0400259 atomic_inc(&lo->plh_refcount);
260}
261
262static void
263pnfs_layout_clear_fail_bit(struct pnfs_layout_hdr *lo, int fail_bit)
264{
265 if (test_and_clear_bit(fail_bit, &lo->plh_flags))
266 atomic_dec(&lo->plh_refcount);
267}
268
269static void
270pnfs_layout_io_set_failed(struct pnfs_layout_hdr *lo, u32 iomode)
271{
272 struct inode *inode = lo->plh_inode;
Trond Myklebust115ce572012-09-20 21:19:43 -0400273 struct pnfs_layout_range range = {
274 .iomode = iomode,
275 .offset = 0,
276 .length = NFS4_MAX_UINT64,
277 };
278 LIST_HEAD(head);
Trond Myklebust3e621212012-09-24 13:07:16 -0400279
280 spin_lock(&inode->i_lock);
281 pnfs_layout_set_fail_bit(lo, pnfs_iomode_to_fail_bit(iomode));
Trond Myklebust115ce572012-09-20 21:19:43 -0400282 pnfs_mark_matching_lsegs_invalid(lo, &head, &range);
Trond Myklebust3e621212012-09-24 13:07:16 -0400283 spin_unlock(&inode->i_lock);
Trond Myklebust115ce572012-09-20 21:19:43 -0400284 pnfs_free_lseg_list(&head);
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400285 dprintk("%s Setting layout IOMODE_%s fail bit\n", __func__,
286 iomode == IOMODE_RW ? "RW" : "READ");
287}
288
289static bool
290pnfs_layout_io_test_failed(struct pnfs_layout_hdr *lo, u32 iomode)
291{
Trond Myklebust25c75332012-09-18 17:01:12 -0400292 unsigned long start, end;
Trond Myklebust3e621212012-09-24 13:07:16 -0400293 int fail_bit = pnfs_iomode_to_fail_bit(iomode);
294
295 if (test_bit(fail_bit, &lo->plh_flags) == 0)
Trond Myklebust25c75332012-09-18 17:01:12 -0400296 return false;
297 end = jiffies;
298 start = end - PNFS_LAYOUTGET_RETRY_TIMEOUT;
299 if (!time_in_range(lo->plh_retry_timestamp, start, end)) {
300 /* It is time to retry the failed layoutgets */
Trond Myklebust3e621212012-09-24 13:07:16 -0400301 pnfs_layout_clear_fail_bit(lo, fail_bit);
Trond Myklebust25c75332012-09-18 17:01:12 -0400302 return false;
303 }
304 return true;
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400305}
306
Andy Adamson974cec82010-10-20 00:18:02 -0400307static void
308init_lseg(struct pnfs_layout_hdr *lo, struct pnfs_layout_segment *lseg)
309{
Fred Isaman566052c2011-01-06 11:36:20 +0000310 INIT_LIST_HEAD(&lseg->pls_list);
Peng Taoa9bae562011-07-30 20:52:33 -0400311 INIT_LIST_HEAD(&lseg->pls_lc_list);
Fred Isaman4541d162011-01-06 11:36:23 +0000312 atomic_set(&lseg->pls_refcount, 1);
313 smp_mb();
314 set_bit(NFS_LSEG_VALID, &lseg->pls_flags);
Fred Isaman566052c2011-01-06 11:36:20 +0000315 lseg->pls_layout = lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400316}
317
Trond Myklebust905ca192012-09-20 20:46:49 -0400318static void pnfs_free_lseg(struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400319{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000320 struct inode *ino = lseg->pls_layout->plh_inode;
Andy Adamson974cec82010-10-20 00:18:02 -0400321
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400322 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400323}
324
Fred Isamand684d2a2011-03-01 01:34:13 +0000325static void
Trond Myklebust57036a32012-09-20 16:33:30 -0400326pnfs_layout_remove_lseg(struct pnfs_layout_hdr *lo,
327 struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400328{
Trond Myklebust57036a32012-09-20 16:33:30 -0400329 struct inode *inode = lo->plh_inode;
Fred Isamand684d2a2011-03-01 01:34:13 +0000330
Benny Halevyd20581a2011-05-22 19:52:03 +0300331 WARN_ON(test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
Fred Isamand684d2a2011-03-01 01:34:13 +0000332 list_del_init(&lseg->pls_list);
Trond Myklebust8f0d27d2012-09-20 20:57:11 -0400333 /* Matched by pnfs_get_layout_hdr in pnfs_layout_insert_lseg */
334 atomic_dec(&lo->plh_refcount);
Trond Myklebust173f77e2012-09-21 15:49:42 -0400335 if (list_empty(&lo->plh_segs))
336 clear_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags);
Fred Isamand684d2a2011-03-01 01:34:13 +0000337 rpc_wake_up(&NFS_SERVER(inode)->roc_rpcwaitq);
338}
339
Fred Isamanbae724e2011-03-01 01:34:15 +0000340void
Trond Myklebust9369a432012-09-18 20:57:08 -0400341pnfs_put_lseg(struct pnfs_layout_segment *lseg)
Fred Isamand684d2a2011-03-01 01:34:13 +0000342{
Trond Myklebust57036a32012-09-20 16:33:30 -0400343 struct pnfs_layout_hdr *lo;
Fred Isamand684d2a2011-03-01 01:34:13 +0000344 struct inode *inode;
345
346 if (!lseg)
347 return;
348
Fred Isaman4541d162011-01-06 11:36:23 +0000349 dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
350 atomic_read(&lseg->pls_refcount),
351 test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
Trond Myklebust57036a32012-09-20 16:33:30 -0400352 lo = lseg->pls_layout;
353 inode = lo->plh_inode;
Fred Isamand684d2a2011-03-01 01:34:13 +0000354 if (atomic_dec_and_lock(&lseg->pls_refcount, &inode->i_lock)) {
Trond Myklebust8f0d27d2012-09-20 20:57:11 -0400355 pnfs_get_layout_hdr(lo);
Trond Myklebust57036a32012-09-20 16:33:30 -0400356 pnfs_layout_remove_lseg(lo, lseg);
Fred Isamand684d2a2011-03-01 01:34:13 +0000357 spin_unlock(&inode->i_lock);
Trond Myklebust905ca192012-09-20 20:46:49 -0400358 pnfs_free_lseg(lseg);
Trond Myklebust8f0d27d2012-09-20 20:57:11 -0400359 pnfs_put_layout_hdr(lo);
Fred Isaman4541d162011-01-06 11:36:23 +0000360 }
Andy Adamson974cec82010-10-20 00:18:02 -0400361}
Trond Myklebust9369a432012-09-18 20:57:08 -0400362EXPORT_SYMBOL_GPL(pnfs_put_lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400363
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400364static void pnfs_put_lseg_async_work(struct work_struct *work)
365{
366 struct pnfs_layout_segment *lseg;
367
368 lseg = container_of(work, struct pnfs_layout_segment, pls_work);
369
370 pnfs_put_lseg(lseg);
371}
372
373void
374pnfs_put_lseg_async(struct pnfs_layout_segment *lseg)
375{
376 INIT_WORK(&lseg->pls_work, pnfs_put_lseg_async_work);
377 schedule_work(&lseg->pls_work);
378}
379EXPORT_SYMBOL_GPL(pnfs_put_lseg_async);
380
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400381static u64
Benny Halevyfb3296e2011-05-22 19:47:26 +0300382end_offset(u64 start, u64 len)
Fred Isaman4541d162011-01-06 11:36:23 +0000383{
Benny Halevyfb3296e2011-05-22 19:47:26 +0300384 u64 end;
385
386 end = start + len;
387 return end >= start ? end : NFS4_MAX_UINT64;
388}
389
Benny Halevyfb3296e2011-05-22 19:47:26 +0300390/*
391 * is l2 fully contained in l1?
392 * start1 end1
393 * [----------------------------------)
394 * start2 end2
395 * [----------------)
396 */
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400397static bool
Trond Myklebust7dc0ac72013-06-03 11:30:24 -0400398pnfs_lseg_range_contained(const struct pnfs_layout_range *l1,
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400399 const struct pnfs_layout_range *l2)
Benny Halevyfb3296e2011-05-22 19:47:26 +0300400{
401 u64 start1 = l1->offset;
402 u64 end1 = end_offset(start1, l1->length);
403 u64 start2 = l2->offset;
404 u64 end2 = end_offset(start2, l2->length);
405
406 return (start1 <= start2) && (end1 >= end2);
407}
408
409/*
410 * is l1 and l2 intersecting?
411 * start1 end1
412 * [----------------------------------)
413 * start2 end2
414 * [----------------)
415 */
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400416static bool
Trond Myklebust7dc0ac72013-06-03 11:30:24 -0400417pnfs_lseg_range_intersecting(const struct pnfs_layout_range *l1,
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400418 const struct pnfs_layout_range *l2)
Benny Halevyfb3296e2011-05-22 19:47:26 +0300419{
420 u64 start1 = l1->offset;
421 u64 end1 = end_offset(start1, l1->length);
422 u64 start2 = l2->offset;
423 u64 end2 = end_offset(start2, l2->length);
424
425 return (end1 == NFS4_MAX_UINT64 || end1 > start2) &&
426 (end2 == NFS4_MAX_UINT64 || end2 > start1);
427}
428
Fred Isaman4541d162011-01-06 11:36:23 +0000429static bool
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400430should_free_lseg(const struct pnfs_layout_range *lseg_range,
431 const struct pnfs_layout_range *recall_range)
Fred Isaman4541d162011-01-06 11:36:23 +0000432{
Benny Halevy778b5502011-05-22 19:48:02 +0300433 return (recall_range->iomode == IOMODE_ANY ||
434 lseg_range->iomode == recall_range->iomode) &&
Trond Myklebust7dc0ac72013-06-03 11:30:24 -0400435 pnfs_lseg_range_intersecting(lseg_range, recall_range);
Fred Isaman4541d162011-01-06 11:36:23 +0000436}
437
Trond Myklebust24956802013-03-20 13:03:00 -0400438static bool pnfs_lseg_dec_and_remove_zero(struct pnfs_layout_segment *lseg,
439 struct list_head *tmp_list)
440{
441 if (!atomic_dec_and_test(&lseg->pls_refcount))
442 return false;
443 pnfs_layout_remove_lseg(lseg->pls_layout, lseg);
444 list_add(&lseg->pls_list, tmp_list);
445 return true;
446}
447
Fred Isaman4541d162011-01-06 11:36:23 +0000448/* Returns 1 if lseg is removed from list, 0 otherwise */
449static int mark_lseg_invalid(struct pnfs_layout_segment *lseg,
450 struct list_head *tmp_list)
451{
452 int rv = 0;
453
454 if (test_and_clear_bit(NFS_LSEG_VALID, &lseg->pls_flags)) {
455 /* Remove the reference keeping the lseg in the
456 * list. It will now be removed when all
457 * outstanding io is finished.
458 */
Fred Isamand684d2a2011-03-01 01:34:13 +0000459 dprintk("%s: lseg %p ref %d\n", __func__, lseg,
460 atomic_read(&lseg->pls_refcount));
Trond Myklebust24956802013-03-20 13:03:00 -0400461 if (pnfs_lseg_dec_and_remove_zero(lseg, tmp_list))
Fred Isamand684d2a2011-03-01 01:34:13 +0000462 rv = 1;
Fred Isaman4541d162011-01-06 11:36:23 +0000463 }
464 return rv;
465}
466
467/* Returns count of number of matching invalid lsegs remaining in list
468 * after call.
469 */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000470int
Trond Myklebust49a85062012-09-18 20:43:31 -0400471pnfs_mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
Fred Isaman4541d162011-01-06 11:36:23 +0000472 struct list_head *tmp_list,
Benny Halevy778b5502011-05-22 19:48:02 +0300473 struct pnfs_layout_range *recall_range)
Andy Adamson974cec82010-10-20 00:18:02 -0400474{
475 struct pnfs_layout_segment *lseg, *next;
Fred Isaman4541d162011-01-06 11:36:23 +0000476 int invalid = 0, removed = 0;
Andy Adamson974cec82010-10-20 00:18:02 -0400477
478 dprintk("%s:Begin lo %p\n", __func__, lo);
479
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400480 if (list_empty(&lo->plh_segs))
Fred Isaman38511722011-02-03 18:28:50 +0000481 return 0;
Fred Isaman4541d162011-01-06 11:36:23 +0000482 list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
Benny Halevy778b5502011-05-22 19:48:02 +0300483 if (!recall_range ||
484 should_free_lseg(&lseg->pls_range, recall_range)) {
Fred Isaman4541d162011-01-06 11:36:23 +0000485 dprintk("%s: freeing lseg %p iomode %d "
486 "offset %llu length %llu\n", __func__,
487 lseg, lseg->pls_range.iomode, lseg->pls_range.offset,
488 lseg->pls_range.length);
489 invalid++;
490 removed += mark_lseg_invalid(lseg, tmp_list);
491 }
492 dprintk("%s:Return %i\n", __func__, invalid - removed);
493 return invalid - removed;
Andy Adamson974cec82010-10-20 00:18:02 -0400494}
495
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000496/* note free_me must contain lsegs from a single layout_hdr */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000497void
Fred Isaman4541d162011-01-06 11:36:23 +0000498pnfs_free_lseg_list(struct list_head *free_me)
Andy Adamson974cec82010-10-20 00:18:02 -0400499{
Fred Isaman4541d162011-01-06 11:36:23 +0000500 struct pnfs_layout_segment *lseg, *tmp;
Andy Adamson974cec82010-10-20 00:18:02 -0400501
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000502 if (list_empty(free_me))
503 return;
504
Fred Isaman4541d162011-01-06 11:36:23 +0000505 list_for_each_entry_safe(lseg, tmp, free_me, pls_list) {
Fred Isaman566052c2011-01-06 11:36:20 +0000506 list_del(&lseg->pls_list);
Trond Myklebust905ca192012-09-20 20:46:49 -0400507 pnfs_free_lseg(lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400508 }
509}
510
Benny Halevye5e94012010-10-20 00:18:01 -0400511void
512pnfs_destroy_layout(struct nfs_inode *nfsi)
513{
514 struct pnfs_layout_hdr *lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400515 LIST_HEAD(tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400516
517 spin_lock(&nfsi->vfs_inode.i_lock);
518 lo = nfsi->layout;
519 if (lo) {
Fred Isaman38511722011-02-03 18:28:50 +0000520 lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
Trond Myklebust49a85062012-09-18 20:43:31 -0400521 pnfs_mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
Trond Myklebust3e621212012-09-24 13:07:16 -0400522 pnfs_get_layout_hdr(lo);
523 pnfs_layout_clear_fail_bit(lo, NFS_LAYOUT_RO_FAILED);
524 pnfs_layout_clear_fail_bit(lo, NFS_LAYOUT_RW_FAILED);
525 spin_unlock(&nfsi->vfs_inode.i_lock);
526 pnfs_free_lseg_list(&tmp_list);
527 pnfs_put_layout_hdr(lo);
528 } else
529 spin_unlock(&nfsi->vfs_inode.i_lock);
Benny Halevye5e94012010-10-20 00:18:01 -0400530}
Andy Adamson041245c2012-04-27 17:53:53 -0400531EXPORT_SYMBOL_GPL(pnfs_destroy_layout);
Benny Halevye5e94012010-10-20 00:18:01 -0400532
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500533static bool
534pnfs_layout_add_bulk_destroy_list(struct inode *inode,
535 struct list_head *layout_list)
536{
537 struct pnfs_layout_hdr *lo;
538 bool ret = false;
539
540 spin_lock(&inode->i_lock);
541 lo = NFS_I(inode)->layout;
542 if (lo != NULL && list_empty(&lo->plh_bulk_destroy)) {
543 pnfs_get_layout_hdr(lo);
544 list_add(&lo->plh_bulk_destroy, layout_list);
545 ret = true;
546 }
547 spin_unlock(&inode->i_lock);
548 return ret;
549}
550
551/* Caller must hold rcu_read_lock and clp->cl_lock */
552static int
553pnfs_layout_bulk_destroy_byserver_locked(struct nfs_client *clp,
554 struct nfs_server *server,
555 struct list_head *layout_list)
556{
557 struct pnfs_layout_hdr *lo, *next;
558 struct inode *inode;
559
560 list_for_each_entry_safe(lo, next, &server->layouts, plh_layouts) {
561 inode = igrab(lo->plh_inode);
562 if (inode == NULL)
563 continue;
564 list_del_init(&lo->plh_layouts);
565 if (pnfs_layout_add_bulk_destroy_list(inode, layout_list))
566 continue;
567 rcu_read_unlock();
568 spin_unlock(&clp->cl_lock);
569 iput(inode);
570 spin_lock(&clp->cl_lock);
571 rcu_read_lock();
572 return -EAGAIN;
573 }
574 return 0;
575}
576
577static int
578pnfs_layout_free_bulk_destroy_list(struct list_head *layout_list,
579 bool is_bulk_recall)
580{
581 struct pnfs_layout_hdr *lo;
582 struct inode *inode;
583 struct pnfs_layout_range range = {
584 .iomode = IOMODE_ANY,
585 .offset = 0,
586 .length = NFS4_MAX_UINT64,
587 };
588 LIST_HEAD(lseg_list);
589 int ret = 0;
590
591 while (!list_empty(layout_list)) {
592 lo = list_entry(layout_list->next, struct pnfs_layout_hdr,
593 plh_bulk_destroy);
594 dprintk("%s freeing layout for inode %lu\n", __func__,
595 lo->plh_inode->i_ino);
596 inode = lo->plh_inode;
597 spin_lock(&inode->i_lock);
598 list_del_init(&lo->plh_bulk_destroy);
599 lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
600 if (is_bulk_recall)
601 set_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags);
602 if (pnfs_mark_matching_lsegs_invalid(lo, &lseg_list, &range))
603 ret = -EAGAIN;
604 spin_unlock(&inode->i_lock);
605 pnfs_free_lseg_list(&lseg_list);
606 pnfs_put_layout_hdr(lo);
607 iput(inode);
608 }
609 return ret;
610}
611
612int
613pnfs_destroy_layouts_byfsid(struct nfs_client *clp,
614 struct nfs_fsid *fsid,
615 bool is_recall)
616{
617 struct nfs_server *server;
618 LIST_HEAD(layout_list);
619
620 spin_lock(&clp->cl_lock);
621 rcu_read_lock();
622restart:
623 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
624 if (memcmp(&server->fsid, fsid, sizeof(*fsid)) != 0)
625 continue;
626 if (pnfs_layout_bulk_destroy_byserver_locked(clp,
627 server,
628 &layout_list) != 0)
629 goto restart;
630 }
631 rcu_read_unlock();
632 spin_unlock(&clp->cl_lock);
633
634 if (list_empty(&layout_list))
635 return 0;
636 return pnfs_layout_free_bulk_destroy_list(&layout_list, is_recall);
637}
638
639int
640pnfs_destroy_layouts_byclid(struct nfs_client *clp,
641 bool is_recall)
642{
643 struct nfs_server *server;
644 LIST_HEAD(layout_list);
645
646 spin_lock(&clp->cl_lock);
647 rcu_read_lock();
648restart:
649 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
650 if (pnfs_layout_bulk_destroy_byserver_locked(clp,
651 server,
652 &layout_list) != 0)
653 goto restart;
654 }
655 rcu_read_unlock();
656 spin_unlock(&clp->cl_lock);
657
658 if (list_empty(&layout_list))
659 return 0;
660 return pnfs_layout_free_bulk_destroy_list(&layout_list, is_recall);
661}
662
Andy Adamson974cec82010-10-20 00:18:02 -0400663/*
664 * Called by the state manger to remove all layouts established under an
665 * expired lease.
666 */
667void
668pnfs_destroy_all_layouts(struct nfs_client *clp)
669{
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400670 nfs4_deviceid_mark_client_invalid(clp);
671 nfs4_deviceid_purge_client(clp);
672
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500673 pnfs_destroy_layouts_byclid(clp, false);
Andy Adamson974cec82010-10-20 00:18:02 -0400674}
675
Trond Myklebust5a655032012-10-02 16:47:14 -0700676/*
677 * Compare 2 layout stateid sequence ids, to see which is newer,
678 * taking into account wraparound issues.
679 */
680static bool pnfs_seqid_is_newer(u32 s1, u32 s2)
681{
Trond Myklebust2c64c572014-02-12 09:36:59 -0500682 return (s32)(s1 - s2) > 0;
Trond Myklebust5a655032012-10-02 16:47:14 -0700683}
684
Trond Myklebust78096cc2014-02-12 10:02:27 -0500685static void
686pnfs_verify_layout_stateid(struct pnfs_layout_hdr *lo,
687 const nfs4_stateid *new,
688 struct list_head *free_me_list)
689{
690 if (nfs4_stateid_match_other(&lo->plh_stateid, new))
691 return;
692 /* Layout is new! Kill existing layout segments */
693 pnfs_mark_matching_lsegs_invalid(lo, free_me_list, NULL);
694}
695
Fred Isamanfd6002e2011-01-06 11:36:22 +0000696/* update lo->plh_stateid with new if is more recent */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000697void
698pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo, const nfs4_stateid *new,
699 bool update_barrier)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400700{
Trond Myklebust22aaf712012-10-04 16:32:22 -0700701 u32 oldseq, newseq, new_barrier;
702 int empty = list_empty(&lo->plh_segs);
Andy Adamson974cec82010-10-20 00:18:02 -0400703
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500704 oldseq = be32_to_cpu(lo->plh_stateid.seqid);
705 newseq = be32_to_cpu(new->seqid);
Trond Myklebust22aaf712012-10-04 16:32:22 -0700706 if (empty || pnfs_seqid_is_newer(newseq, oldseq)) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500707 nfs4_stateid_copy(&lo->plh_stateid, new);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000708 if (update_barrier) {
Trond Myklebust22aaf712012-10-04 16:32:22 -0700709 new_barrier = be32_to_cpu(new->seqid);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000710 } else {
711 /* Because of wraparound, we want to keep the barrier
Trond Myklebust22aaf712012-10-04 16:32:22 -0700712 * "close" to the current seqids.
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000713 */
Trond Myklebust22aaf712012-10-04 16:32:22 -0700714 new_barrier = newseq - atomic_read(&lo->plh_outstanding);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000715 }
Trond Myklebust22aaf712012-10-04 16:32:22 -0700716 if (empty || pnfs_seqid_is_newer(new_barrier, lo->plh_barrier))
717 lo->plh_barrier = new_barrier;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000718 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400719}
720
Trond Myklebust19c54ab2012-10-05 16:56:58 -0700721static bool
722pnfs_layout_stateid_blocked(const struct pnfs_layout_hdr *lo,
723 const nfs4_stateid *stateid)
724{
725 u32 seqid = be32_to_cpu(stateid->seqid);
726
727 return !pnfs_seqid_is_newer(seqid, lo->plh_barrier);
728}
729
Fred Isamancf7d63f2011-01-06 11:36:25 +0000730/* lget is set to 1 if called from inside send_layoutget call chain */
731static bool
Trond Myklebust19c54ab2012-10-05 16:56:58 -0700732pnfs_layoutgets_blocked(const struct pnfs_layout_hdr *lo, int lget)
Fred Isamancf7d63f2011-01-06 11:36:25 +0000733{
Fred Isamanf7e89172011-01-06 11:36:32 +0000734 return lo->plh_block_lgets ||
735 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000736 (list_empty(&lo->plh_segs) &&
Fred Isamancf7d63f2011-01-06 11:36:25 +0000737 (atomic_read(&lo->plh_outstanding) > lget));
738}
739
Fred Isamanfd6002e2011-01-06 11:36:22 +0000740int
741pnfs_choose_layoutget_stateid(nfs4_stateid *dst, struct pnfs_layout_hdr *lo,
742 struct nfs4_state *open_state)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400743{
Fred Isamanfd6002e2011-01-06 11:36:22 +0000744 int status = 0;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400745
746 dprintk("--> %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000747 spin_lock(&lo->plh_inode->i_lock);
Trond Myklebust19c54ab2012-10-05 16:56:58 -0700748 if (pnfs_layoutgets_blocked(lo, 1)) {
Fred Isamancf7d63f2011-01-06 11:36:25 +0000749 status = -EAGAIN;
Trond Myklebust5d422302013-03-14 16:57:48 -0400750 } else if (!nfs4_valid_open_stateid(open_state)) {
751 status = -EBADF;
Fred Isamancf7d63f2011-01-06 11:36:25 +0000752 } else if (list_empty(&lo->plh_segs)) {
Fred Isamanfd6002e2011-01-06 11:36:22 +0000753 int seq;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400754
Fred Isamanfd6002e2011-01-06 11:36:22 +0000755 do {
756 seq = read_seqbegin(&open_state->seqlock);
Trond Myklebustf597c532012-03-04 18:13:56 -0500757 nfs4_stateid_copy(dst, &open_state->stateid);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000758 } while (read_seqretry(&open_state->seqlock, seq));
759 } else
Trond Myklebustf597c532012-03-04 18:13:56 -0500760 nfs4_stateid_copy(dst, &lo->plh_stateid);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000761 spin_unlock(&lo->plh_inode->i_lock);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400762 dprintk("<-- %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000763 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400764}
765
766/*
767* Get layout from server.
768* for now, assume that whole file layouts are requested.
769* arg->offset: 0
770* arg->length: all ones
771*/
Benny Halevye5e94012010-10-20 00:18:01 -0400772static struct pnfs_layout_segment *
773send_layoutget(struct pnfs_layout_hdr *lo,
774 struct nfs_open_context *ctx,
Benny Halevyfb3296e2011-05-22 19:47:26 +0300775 struct pnfs_layout_range *range,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400776 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -0400777{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000778 struct inode *ino = lo->plh_inode;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400779 struct nfs_server *server = NFS_SERVER(ino);
780 struct nfs4_layoutget *lgp;
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -0400781 struct pnfs_layout_segment *lseg;
Benny Halevye5e94012010-10-20 00:18:01 -0400782
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400783 dprintk("--> %s\n", __func__);
784
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400785 lgp = kzalloc(sizeof(*lgp), gfp_flags);
Fred Isamancf7d63f2011-01-06 11:36:25 +0000786 if (lgp == NULL)
Andy Adamson974cec82010-10-20 00:18:02 -0400787 return NULL;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400788
Benny Halevyfb3296e2011-05-22 19:47:26 +0300789 lgp->args.minlength = PAGE_CACHE_SIZE;
790 if (lgp->args.minlength > range->length)
791 lgp->args.minlength = range->length;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400792 lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
Benny Halevyfb3296e2011-05-22 19:47:26 +0300793 lgp->args.range = *range;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400794 lgp->args.type = server->pnfs_curr_ld->id;
795 lgp->args.inode = ino;
796 lgp->args.ctx = get_nfs_open_context(ctx);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400797 lgp->gfp_flags = gfp_flags;
Trond Myklebust6ab59342013-05-20 10:49:34 -0400798 lgp->cred = lo->plh_lc_cred;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400799
800 /* Synchronously retrieve layout information from server and
801 * store in lseg.
802 */
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -0400803 lseg = nfs4_proc_layoutget(lgp, gfp_flags);
804 if (IS_ERR(lseg)) {
805 switch (PTR_ERR(lseg)) {
806 case -ENOMEM:
807 case -ERESTARTSYS:
808 break;
809 default:
810 /* remember that LAYOUTGET failed and suspend trying */
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400811 pnfs_layout_io_set_failed(lo, range->iomode);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -0400812 }
813 return NULL;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400814 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400815
Andy Adamson974cec82010-10-20 00:18:02 -0400816 return lseg;
817}
818
Trond Myklebust24956802013-03-20 13:03:00 -0400819static void pnfs_clear_layoutcommit(struct inode *inode,
820 struct list_head *head)
821{
822 struct nfs_inode *nfsi = NFS_I(inode);
823 struct pnfs_layout_segment *lseg, *tmp;
824
825 if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
826 return;
827 list_for_each_entry_safe(lseg, tmp, &nfsi->layout->plh_segs, pls_list) {
828 if (!test_and_clear_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
829 continue;
830 pnfs_lseg_dec_and_remove_zero(lseg, head);
831 }
832}
833
Andy Adamson293b3b02012-06-20 15:03:34 -0400834/*
835 * Initiates a LAYOUTRETURN(FILE), and removes the pnfs_layout_hdr
836 * when the layout segment list is empty.
837 *
838 * Note that a pnfs_layout_hdr can exist with an empty layout segment
839 * list when LAYOUTGET has failed, or when LAYOUTGET succeeded, but the
840 * deviceid is marked invalid.
841 */
Benny Halevycbe82602011-05-22 19:52:37 +0300842int
843_pnfs_return_layout(struct inode *ino)
844{
845 struct pnfs_layout_hdr *lo = NULL;
846 struct nfs_inode *nfsi = NFS_I(ino);
847 LIST_HEAD(tmp_list);
848 struct nfs4_layoutreturn *lrp;
849 nfs4_stateid stateid;
Andy Adamson293b3b02012-06-20 15:03:34 -0400850 int status = 0, empty;
Benny Halevycbe82602011-05-22 19:52:37 +0300851
Andy Adamson366d5052012-06-20 15:03:33 -0400852 dprintk("NFS: %s for inode %lu\n", __func__, ino->i_ino);
Benny Halevycbe82602011-05-22 19:52:37 +0300853
854 spin_lock(&ino->i_lock);
855 lo = nfsi->layout;
Trond Myklebuste5929f32012-09-21 16:37:02 -0400856 if (!lo) {
Benny Halevycbe82602011-05-22 19:52:37 +0300857 spin_unlock(&ino->i_lock);
Andy Adamson293b3b02012-06-20 15:03:34 -0400858 dprintk("NFS: %s no layout to return\n", __func__);
859 goto out;
Benny Halevycbe82602011-05-22 19:52:37 +0300860 }
861 stateid = nfsi->layout->plh_stateid;
862 /* Reference matched in nfs4_layoutreturn_release */
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400863 pnfs_get_layout_hdr(lo);
Andy Adamson293b3b02012-06-20 15:03:34 -0400864 empty = list_empty(&lo->plh_segs);
Trond Myklebust24956802013-03-20 13:03:00 -0400865 pnfs_clear_layoutcommit(ino, &tmp_list);
Trond Myklebust49a85062012-09-18 20:43:31 -0400866 pnfs_mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
Andy Adamson293b3b02012-06-20 15:03:34 -0400867 /* Don't send a LAYOUTRETURN if list was initially empty */
868 if (empty) {
869 spin_unlock(&ino->i_lock);
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400870 pnfs_put_layout_hdr(lo);
Andy Adamson293b3b02012-06-20 15:03:34 -0400871 dprintk("NFS: %s no layout segments to return\n", __func__);
872 goto out;
873 }
Fred Isamanea0ded72011-06-15 12:31:02 -0400874 lo->plh_block_lgets++;
Benny Halevycbe82602011-05-22 19:52:37 +0300875 spin_unlock(&ino->i_lock);
876 pnfs_free_lseg_list(&tmp_list);
877
Benny Halevycbe82602011-05-22 19:52:37 +0300878 lrp = kzalloc(sizeof(*lrp), GFP_KERNEL);
879 if (unlikely(lrp == NULL)) {
880 status = -ENOMEM;
Trond Myklebust65857d52012-09-24 13:49:27 -0400881 spin_lock(&ino->i_lock);
882 lo->plh_block_lgets--;
883 spin_unlock(&ino->i_lock);
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400884 pnfs_put_layout_hdr(lo);
Benny Halevycbe82602011-05-22 19:52:37 +0300885 goto out;
886 }
887
888 lrp->args.stateid = stateid;
889 lrp->args.layout_type = NFS_SERVER(ino)->pnfs_curr_ld->id;
890 lrp->args.inode = ino;
Trond Myklebusta56aaa02011-06-15 11:59:10 -0400891 lrp->args.layout = lo;
Benny Halevycbe82602011-05-22 19:52:37 +0300892 lrp->clp = NFS_SERVER(ino)->nfs_client;
Trond Myklebust95560002013-05-20 10:43:47 -0400893 lrp->cred = lo->plh_lc_cred;
Benny Halevycbe82602011-05-22 19:52:37 +0300894
895 status = nfs4_proc_layoutreturn(lrp);
896out:
897 dprintk("<-- %s status: %d\n", __func__, status);
898 return status;
899}
Andy Adamson0a57cda2012-04-27 17:53:50 -0400900EXPORT_SYMBOL_GPL(_pnfs_return_layout);
Benny Halevycbe82602011-05-22 19:52:37 +0300901
Trond Myklebust24028672013-03-20 13:23:33 -0400902int
903pnfs_commit_and_return_layout(struct inode *inode)
904{
905 struct pnfs_layout_hdr *lo;
906 int ret;
907
908 spin_lock(&inode->i_lock);
909 lo = NFS_I(inode)->layout;
910 if (lo == NULL) {
911 spin_unlock(&inode->i_lock);
912 return 0;
913 }
914 pnfs_get_layout_hdr(lo);
915 /* Block new layoutgets and read/write to ds */
916 lo->plh_block_lgets++;
917 spin_unlock(&inode->i_lock);
918 filemap_fdatawait(inode->i_mapping);
919 ret = pnfs_layoutcommit_inode(inode, true);
920 if (ret == 0)
921 ret = _pnfs_return_layout(inode);
922 spin_lock(&inode->i_lock);
923 lo->plh_block_lgets--;
924 spin_unlock(&inode->i_lock);
925 pnfs_put_layout_hdr(lo);
926 return ret;
927}
928
Fred Isamanf7e89172011-01-06 11:36:32 +0000929bool pnfs_roc(struct inode *ino)
930{
931 struct pnfs_layout_hdr *lo;
932 struct pnfs_layout_segment *lseg, *tmp;
933 LIST_HEAD(tmp_list);
934 bool found = false;
935
936 spin_lock(&ino->i_lock);
937 lo = NFS_I(ino)->layout;
938 if (!lo || !test_and_clear_bit(NFS_LAYOUT_ROC, &lo->plh_flags) ||
939 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags))
940 goto out_nolayout;
941 list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list)
942 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
943 mark_lseg_invalid(lseg, &tmp_list);
944 found = true;
945 }
946 if (!found)
947 goto out_nolayout;
948 lo->plh_block_lgets++;
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400949 pnfs_get_layout_hdr(lo); /* matched in pnfs_roc_release */
Fred Isamanf7e89172011-01-06 11:36:32 +0000950 spin_unlock(&ino->i_lock);
951 pnfs_free_lseg_list(&tmp_list);
952 return true;
953
954out_nolayout:
955 spin_unlock(&ino->i_lock);
956 return false;
957}
958
959void pnfs_roc_release(struct inode *ino)
960{
961 struct pnfs_layout_hdr *lo;
962
963 spin_lock(&ino->i_lock);
964 lo = NFS_I(ino)->layout;
965 lo->plh_block_lgets--;
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400966 if (atomic_dec_and_test(&lo->plh_refcount)) {
967 pnfs_detach_layout_hdr(lo);
968 spin_unlock(&ino->i_lock);
969 pnfs_free_layout_hdr(lo);
970 } else
971 spin_unlock(&ino->i_lock);
Fred Isamanf7e89172011-01-06 11:36:32 +0000972}
973
974void pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
975{
976 struct pnfs_layout_hdr *lo;
977
978 spin_lock(&ino->i_lock);
979 lo = NFS_I(ino)->layout;
Trond Myklebust0f35ad62012-10-04 16:28:17 -0700980 if (pnfs_seqid_is_newer(barrier, lo->plh_barrier))
Fred Isamanf7e89172011-01-06 11:36:32 +0000981 lo->plh_barrier = barrier;
982 spin_unlock(&ino->i_lock);
983}
984
Trond Myklebust7fdab062012-09-20 20:15:57 -0400985bool pnfs_roc_drain(struct inode *ino, u32 *barrier, struct rpc_task *task)
Fred Isamanf7e89172011-01-06 11:36:32 +0000986{
987 struct nfs_inode *nfsi = NFS_I(ino);
Trond Myklebust7fdab062012-09-20 20:15:57 -0400988 struct pnfs_layout_hdr *lo;
Fred Isamanf7e89172011-01-06 11:36:32 +0000989 struct pnfs_layout_segment *lseg;
Trond Myklebust7fdab062012-09-20 20:15:57 -0400990 u32 current_seqid;
Fred Isamanf7e89172011-01-06 11:36:32 +0000991 bool found = false;
992
993 spin_lock(&ino->i_lock);
994 list_for_each_entry(lseg, &nfsi->layout->plh_segs, pls_list)
995 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
Trond Myklebust7fdab062012-09-20 20:15:57 -0400996 rpc_sleep_on(&NFS_SERVER(ino)->roc_rpcwaitq, task, NULL);
Fred Isamanf7e89172011-01-06 11:36:32 +0000997 found = true;
Trond Myklebust7fdab062012-09-20 20:15:57 -0400998 goto out;
Fred Isamanf7e89172011-01-06 11:36:32 +0000999 }
Trond Myklebust7fdab062012-09-20 20:15:57 -04001000 lo = nfsi->layout;
1001 current_seqid = be32_to_cpu(lo->plh_stateid.seqid);
Fred Isamanf7e89172011-01-06 11:36:32 +00001002
Trond Myklebust7fdab062012-09-20 20:15:57 -04001003 /* Since close does not return a layout stateid for use as
1004 * a barrier, we choose the worst-case barrier.
1005 */
1006 *barrier = current_seqid + atomic_read(&lo->plh_outstanding);
1007out:
Fred Isamanf7e89172011-01-06 11:36:32 +00001008 spin_unlock(&ino->i_lock);
1009 return found;
1010}
1011
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001012/*
1013 * Compare two layout segments for sorting into layout cache.
1014 * We want to preferentially return RW over RO layouts, so ensure those
1015 * are seen first.
1016 */
1017static s64
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001018pnfs_lseg_range_cmp(const struct pnfs_layout_range *l1,
Trond Myklebust3cb2df12013-06-03 11:24:36 -04001019 const struct pnfs_layout_range *l2)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001020{
Benny Halevyfb3296e2011-05-22 19:47:26 +03001021 s64 d;
1022
1023 /* high offset > low offset */
1024 d = l1->offset - l2->offset;
1025 if (d)
1026 return d;
1027
1028 /* short length > long length */
1029 d = l2->length - l1->length;
1030 if (d)
1031 return d;
1032
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001033 /* read > read/write */
Benny Halevyfb3296e2011-05-22 19:47:26 +03001034 return (int)(l1->iomode == IOMODE_READ) - (int)(l2->iomode == IOMODE_READ);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001035}
1036
Andy Adamson974cec82010-10-20 00:18:02 -04001037static void
Trond Myklebust57036a32012-09-20 16:33:30 -04001038pnfs_layout_insert_lseg(struct pnfs_layout_hdr *lo,
Andy Adamson974cec82010-10-20 00:18:02 -04001039 struct pnfs_layout_segment *lseg)
1040{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001041 struct pnfs_layout_segment *lp;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001042
Andy Adamson974cec82010-10-20 00:18:02 -04001043 dprintk("%s:Begin\n", __func__);
1044
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001045 list_for_each_entry(lp, &lo->plh_segs, pls_list) {
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001046 if (pnfs_lseg_range_cmp(&lseg->pls_range, &lp->pls_range) > 0)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001047 continue;
Fred Isaman566052c2011-01-06 11:36:20 +00001048 list_add_tail(&lseg->pls_list, &lp->pls_list);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001049 dprintk("%s: inserted lseg %p "
1050 "iomode %d offset %llu length %llu before "
1051 "lp %p iomode %d offset %llu length %llu\n",
Fred Isaman566052c2011-01-06 11:36:20 +00001052 __func__, lseg, lseg->pls_range.iomode,
1053 lseg->pls_range.offset, lseg->pls_range.length,
1054 lp, lp->pls_range.iomode, lp->pls_range.offset,
1055 lp->pls_range.length);
Benny Halevyfb3296e2011-05-22 19:47:26 +03001056 goto out;
Andy Adamson974cec82010-10-20 00:18:02 -04001057 }
Benny Halevyfb3296e2011-05-22 19:47:26 +03001058 list_add_tail(&lseg->pls_list, &lo->plh_segs);
1059 dprintk("%s: inserted lseg %p "
1060 "iomode %d offset %llu length %llu at tail\n",
1061 __func__, lseg, lseg->pls_range.iomode,
1062 lseg->pls_range.offset, lseg->pls_range.length);
1063out:
Trond Myklebust70c3bd22012-09-18 20:51:13 -04001064 pnfs_get_layout_hdr(lo);
Andy Adamson974cec82010-10-20 00:18:02 -04001065
1066 dprintk("%s:Return\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -04001067}
1068
1069static struct pnfs_layout_hdr *
Peng Tao9fa40752011-07-30 20:52:32 -04001070alloc_init_layout_hdr(struct inode *ino,
1071 struct nfs_open_context *ctx,
1072 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -04001073{
1074 struct pnfs_layout_hdr *lo;
1075
Benny Halevy636fb9c2011-05-22 19:51:33 +03001076 lo = pnfs_alloc_layout_hdr(ino, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -04001077 if (!lo)
1078 return NULL;
Fred Isamancc6e5342011-01-06 11:36:28 +00001079 atomic_set(&lo->plh_refcount, 1);
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001080 INIT_LIST_HEAD(&lo->plh_layouts);
1081 INIT_LIST_HEAD(&lo->plh_segs);
Trond Myklebustfd9a8d72013-02-12 09:48:42 -05001082 INIT_LIST_HEAD(&lo->plh_bulk_destroy);
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001083 lo->plh_inode = ino;
Trond Myklebust5cc22162013-05-21 09:26:49 -04001084 lo->plh_lc_cred = get_rpccred(ctx->cred);
Benny Halevye5e94012010-10-20 00:18:01 -04001085 return lo;
1086}
1087
1088static struct pnfs_layout_hdr *
Peng Tao9fa40752011-07-30 20:52:32 -04001089pnfs_find_alloc_layout(struct inode *ino,
1090 struct nfs_open_context *ctx,
1091 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -04001092{
1093 struct nfs_inode *nfsi = NFS_I(ino);
1094 struct pnfs_layout_hdr *new = NULL;
1095
1096 dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
1097
Trond Myklebust251ec412012-10-02 15:41:05 -07001098 if (nfsi->layout != NULL)
1099 goto out_existing;
Benny Halevye5e94012010-10-20 00:18:01 -04001100 spin_unlock(&ino->i_lock);
Peng Tao9fa40752011-07-30 20:52:32 -04001101 new = alloc_init_layout_hdr(ino, ctx, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -04001102 spin_lock(&ino->i_lock);
1103
Trond Myklebust251ec412012-10-02 15:41:05 -07001104 if (likely(nfsi->layout == NULL)) { /* Won the race? */
Benny Halevye5e94012010-10-20 00:18:01 -04001105 nfsi->layout = new;
Trond Myklebust251ec412012-10-02 15:41:05 -07001106 return new;
Yanchuan Nian7175fe92012-10-31 16:05:48 +08001107 } else if (new != NULL)
1108 pnfs_free_layout_hdr(new);
Trond Myklebust251ec412012-10-02 15:41:05 -07001109out_existing:
1110 pnfs_get_layout_hdr(nfsi->layout);
Benny Halevye5e94012010-10-20 00:18:01 -04001111 return nfsi->layout;
1112}
1113
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001114/*
1115 * iomode matching rules:
1116 * iomode lseg match
1117 * ----- ----- -----
1118 * ANY READ true
1119 * ANY RW true
1120 * RW READ false
1121 * RW RW true
1122 * READ READ true
1123 * READ RW true
1124 */
Trond Myklebust3cb2df12013-06-03 11:24:36 -04001125static bool
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001126pnfs_lseg_range_match(const struct pnfs_layout_range *ls_range,
Trond Myklebust3cb2df12013-06-03 11:24:36 -04001127 const struct pnfs_layout_range *range)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001128{
Benny Halevyfb3296e2011-05-22 19:47:26 +03001129 struct pnfs_layout_range range1;
1130
1131 if ((range->iomode == IOMODE_RW &&
1132 ls_range->iomode != IOMODE_RW) ||
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001133 !pnfs_lseg_range_intersecting(ls_range, range))
Benny Halevyfb3296e2011-05-22 19:47:26 +03001134 return 0;
1135
1136 /* range1 covers only the first byte in the range */
1137 range1 = *range;
1138 range1.length = 1;
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001139 return pnfs_lseg_range_contained(ls_range, &range1);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001140}
1141
1142/*
1143 * lookup range in layout
1144 */
Benny Halevye5e94012010-10-20 00:18:01 -04001145static struct pnfs_layout_segment *
Benny Halevyfb3296e2011-05-22 19:47:26 +03001146pnfs_find_lseg(struct pnfs_layout_hdr *lo,
1147 struct pnfs_layout_range *range)
Benny Halevye5e94012010-10-20 00:18:01 -04001148{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001149 struct pnfs_layout_segment *lseg, *ret = NULL;
1150
1151 dprintk("%s:Begin\n", __func__);
1152
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001153 list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
Fred Isaman4541d162011-01-06 11:36:23 +00001154 if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001155 pnfs_lseg_range_match(&lseg->pls_range, range)) {
Trond Myklebust9369a432012-09-18 20:57:08 -04001156 ret = pnfs_get_lseg(lseg);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001157 break;
1158 }
Benny Halevyd771e3a2011-06-14 16:30:16 -04001159 if (lseg->pls_range.offset > range->offset)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001160 break;
1161 }
1162
1163 dprintk("%s:Return lseg %p ref %d\n",
Fred Isaman4541d162011-01-06 11:36:23 +00001164 __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001165 return ret;
Benny Halevye5e94012010-10-20 00:18:01 -04001166}
1167
1168/*
Andy Adamsond23d61c2012-05-23 05:02:37 -04001169 * Use mdsthreshold hints set at each OPEN to determine if I/O should go
1170 * to the MDS or over pNFS
1171 *
1172 * The nfs_inode read_io and write_io fields are cumulative counters reset
1173 * when there are no layout segments. Note that in pnfs_update_layout iomode
1174 * is set to IOMODE_READ for a READ request, and set to IOMODE_RW for a
1175 * WRITE request.
1176 *
1177 * A return of true means use MDS I/O.
1178 *
1179 * From rfc 5661:
1180 * If a file's size is smaller than the file size threshold, data accesses
1181 * SHOULD be sent to the metadata server. If an I/O request has a length that
1182 * is below the I/O size threshold, the I/O SHOULD be sent to the metadata
1183 * server. If both file size and I/O size are provided, the client SHOULD
1184 * reach or exceed both thresholds before sending its read or write
1185 * requests to the data server.
1186 */
1187static bool pnfs_within_mdsthreshold(struct nfs_open_context *ctx,
1188 struct inode *ino, int iomode)
1189{
1190 struct nfs4_threshold *t = ctx->mdsthreshold;
1191 struct nfs_inode *nfsi = NFS_I(ino);
1192 loff_t fsize = i_size_read(ino);
1193 bool size = false, size_set = false, io = false, io_set = false, ret = false;
1194
1195 if (t == NULL)
1196 return ret;
1197
1198 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
1199 __func__, t->bm, t->rd_sz, t->wr_sz, t->rd_io_sz, t->wr_io_sz);
1200
1201 switch (iomode) {
1202 case IOMODE_READ:
1203 if (t->bm & THRESHOLD_RD) {
1204 dprintk("%s fsize %llu\n", __func__, fsize);
1205 size_set = true;
1206 if (fsize < t->rd_sz)
1207 size = true;
1208 }
1209 if (t->bm & THRESHOLD_RD_IO) {
1210 dprintk("%s nfsi->read_io %llu\n", __func__,
1211 nfsi->read_io);
1212 io_set = true;
1213 if (nfsi->read_io < t->rd_io_sz)
1214 io = true;
1215 }
1216 break;
1217 case IOMODE_RW:
1218 if (t->bm & THRESHOLD_WR) {
1219 dprintk("%s fsize %llu\n", __func__, fsize);
1220 size_set = true;
1221 if (fsize < t->wr_sz)
1222 size = true;
1223 }
1224 if (t->bm & THRESHOLD_WR_IO) {
1225 dprintk("%s nfsi->write_io %llu\n", __func__,
1226 nfsi->write_io);
1227 io_set = true;
1228 if (nfsi->write_io < t->wr_io_sz)
1229 io = true;
1230 }
1231 break;
1232 }
1233 if (size_set && io_set) {
1234 if (size && io)
1235 ret = true;
1236 } else if (size || io)
1237 ret = true;
1238
1239 dprintk("<-- %s size %d io %d ret %d\n", __func__, size, io, ret);
1240 return ret;
1241}
1242
1243/*
Benny Halevye5e94012010-10-20 00:18:01 -04001244 * Layout segment is retreived from the server if not cached.
1245 * The appropriate layout segment is referenced and returned to the caller.
1246 */
Andy Adamson7c24d942011-06-13 18:22:38 -04001247struct pnfs_layout_segment *
Benny Halevye5e94012010-10-20 00:18:01 -04001248pnfs_update_layout(struct inode *ino,
1249 struct nfs_open_context *ctx,
Benny Halevyfb3296e2011-05-22 19:47:26 +03001250 loff_t pos,
1251 u64 count,
Trond Myklebusta75b9df2011-05-11 18:00:51 -04001252 enum pnfs_iomode iomode,
1253 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -04001254{
Benny Halevyfb3296e2011-05-22 19:47:26 +03001255 struct pnfs_layout_range arg = {
1256 .iomode = iomode,
1257 .offset = pos,
1258 .length = count,
1259 };
Benny Halevy707ed5f2011-05-22 19:47:46 +03001260 unsigned pg_offset;
Weston Andros Adamson6382a442011-06-01 16:44:44 -04001261 struct nfs_server *server = NFS_SERVER(ino);
1262 struct nfs_client *clp = server->nfs_client;
Benny Halevye5e94012010-10-20 00:18:01 -04001263 struct pnfs_layout_hdr *lo;
1264 struct pnfs_layout_segment *lseg = NULL;
Weston Andros Adamson30005122013-02-28 20:30:10 -05001265 bool first;
Benny Halevye5e94012010-10-20 00:18:01 -04001266
1267 if (!pnfs_enabled_sb(NFS_SERVER(ino)))
Trond Myklebustf86bbcf2012-09-26 11:21:40 -04001268 goto out;
Andy Adamsond23d61c2012-05-23 05:02:37 -04001269
1270 if (pnfs_within_mdsthreshold(ctx, ino, iomode))
Trond Myklebustf86bbcf2012-09-26 11:21:40 -04001271 goto out;
Andy Adamsond23d61c2012-05-23 05:02:37 -04001272
Benny Halevye5e94012010-10-20 00:18:01 -04001273 spin_lock(&ino->i_lock);
Peng Tao9fa40752011-07-30 20:52:32 -04001274 lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags);
Trond Myklebust830ffb52012-09-20 21:25:19 -04001275 if (lo == NULL) {
1276 spin_unlock(&ino->i_lock);
1277 goto out;
1278 }
Benny Halevye5e94012010-10-20 00:18:01 -04001279
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001280 /* Do we even need to bother with this? */
Trond Myklebusta59c30a2012-03-01 11:17:47 -05001281 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001282 dprintk("%s matches recall, use MDS\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -04001283 goto out_unlock;
1284 }
1285
1286 /* if LAYOUTGET already failed once we don't try again */
Trond Myklebustb9e028f2012-09-18 16:41:18 -04001287 if (pnfs_layout_io_test_failed(lo, iomode))
Benny Halevye5e94012010-10-20 00:18:01 -04001288 goto out_unlock;
1289
Andy Adamson568e8c42011-03-01 01:34:22 +00001290 /* Check to see if the layout for the given range already exists */
Benny Halevyfb3296e2011-05-22 19:47:26 +03001291 lseg = pnfs_find_lseg(lo, &arg);
Andy Adamson568e8c42011-03-01 01:34:22 +00001292 if (lseg)
1293 goto out_unlock;
1294
Trond Myklebust19c54ab2012-10-05 16:56:58 -07001295 if (pnfs_layoutgets_blocked(lo, 0))
Fred Isamancf7d63f2011-01-06 11:36:25 +00001296 goto out_unlock;
1297 atomic_inc(&lo->plh_outstanding);
1298
Weston Andros Adamson30005122013-02-28 20:30:10 -05001299 first = list_empty(&lo->plh_layouts) ? true : false;
Fred Isamanf49f9ba2011-02-03 18:28:52 +00001300 spin_unlock(&ino->i_lock);
Weston Andros Adamson30005122013-02-28 20:30:10 -05001301
Fred Isamanf49f9ba2011-02-03 18:28:52 +00001302 if (first) {
Fred Isaman2130ff62011-01-06 11:36:26 +00001303 /* The lo must be on the clp list if there is any
1304 * chance of a CB_LAYOUTRECALL(FILE) coming in.
1305 */
1306 spin_lock(&clp->cl_lock);
Weston Andros Adamson6382a442011-06-01 16:44:44 -04001307 list_add_tail(&lo->plh_layouts, &server->layouts);
Fred Isaman2130ff62011-01-06 11:36:26 +00001308 spin_unlock(&clp->cl_lock);
1309 }
Benny Halevye5e94012010-10-20 00:18:01 -04001310
Benny Halevy707ed5f2011-05-22 19:47:46 +03001311 pg_offset = arg.offset & ~PAGE_CACHE_MASK;
1312 if (pg_offset) {
1313 arg.offset -= pg_offset;
1314 arg.length += pg_offset;
1315 }
Andy Adamson7c24d942011-06-13 18:22:38 -04001316 if (arg.length != NFS4_MAX_UINT64)
1317 arg.length = PAGE_CACHE_ALIGN(arg.length);
Benny Halevy707ed5f2011-05-22 19:47:46 +03001318
Benny Halevyfb3296e2011-05-22 19:47:26 +03001319 lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
Fred Isamancf7d63f2011-01-06 11:36:25 +00001320 atomic_dec(&lo->plh_outstanding);
Trond Myklebust830ffb52012-09-20 21:25:19 -04001321out_put_layout_hdr:
Trond Myklebust70c3bd22012-09-18 20:51:13 -04001322 pnfs_put_layout_hdr(lo);
Benny Halevye5e94012010-10-20 00:18:01 -04001323out:
Trond Myklebustf86bbcf2012-09-26 11:21:40 -04001324 dprintk("%s: inode %s/%llu pNFS layout segment %s for "
1325 "(%s, offset: %llu, length: %llu)\n",
1326 __func__, ino->i_sb->s_id,
1327 (unsigned long long)NFS_FILEID(ino),
1328 lseg == NULL ? "not found" : "found",
1329 iomode==IOMODE_RW ? "read/write" : "read-only",
1330 (unsigned long long)pos,
1331 (unsigned long long)count);
Benny Halevye5e94012010-10-20 00:18:01 -04001332 return lseg;
1333out_unlock:
1334 spin_unlock(&ino->i_lock);
Trond Myklebust830ffb52012-09-20 21:25:19 -04001335 goto out_put_layout_hdr;
Benny Halevye5e94012010-10-20 00:18:01 -04001336}
Andy Adamson7c24d942011-06-13 18:22:38 -04001337EXPORT_SYMBOL_GPL(pnfs_update_layout);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001338
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04001339struct pnfs_layout_segment *
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001340pnfs_layout_process(struct nfs4_layoutget *lgp)
1341{
1342 struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
1343 struct nfs4_layoutget_res *res = &lgp->res;
1344 struct pnfs_layout_segment *lseg;
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001345 struct inode *ino = lo->plh_inode;
Trond Myklebust78096cc2014-02-12 10:02:27 -05001346 LIST_HEAD(free_me);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001347 int status = 0;
1348
1349 /* Inject layout blob into I/O device driver */
Trond Myklebusta75b9df2011-05-11 18:00:51 -04001350 lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res, lgp->gfp_flags);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001351 if (!lseg || IS_ERR(lseg)) {
1352 if (!lseg)
1353 status = -ENOMEM;
1354 else
1355 status = PTR_ERR(lseg);
1356 dprintk("%s: Could not allocate layout: error %d\n",
1357 __func__, status);
1358 goto out;
1359 }
1360
1361 spin_lock(&ino->i_lock);
Trond Myklebusta59c30a2012-03-01 11:17:47 -05001362 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001363 dprintk("%s forget reply due to recall\n", __func__);
1364 goto out_forget_reply;
1365 }
1366
Trond Myklebust19c54ab2012-10-05 16:56:58 -07001367 if (pnfs_layoutgets_blocked(lo, 1) ||
1368 pnfs_layout_stateid_blocked(lo, &res->stateid)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001369 dprintk("%s forget reply due to state\n", __func__);
1370 goto out_forget_reply;
1371 }
Trond Myklebust038d6492012-10-02 16:38:41 -07001372
Trond Myklebust78096cc2014-02-12 10:02:27 -05001373 /* Check that the new stateid matches the old stateid */
1374 pnfs_verify_layout_stateid(lo, &res->stateid, &free_me);
Trond Myklebust038d6492012-10-02 16:38:41 -07001375 /* Done processing layoutget. Set the layout stateid */
1376 pnfs_set_layout_stateid(lo, &res->stateid, false);
1377
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001378 init_lseg(lo, lseg);
Fred Isaman566052c2011-01-06 11:36:20 +00001379 lseg->pls_range = res->range;
Trond Myklebust9369a432012-09-18 20:57:08 -04001380 pnfs_get_lseg(lseg);
Trond Myklebust57036a32012-09-20 16:33:30 -04001381 pnfs_layout_insert_lseg(lo, lseg);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001382
Fred Isamanf7e89172011-01-06 11:36:32 +00001383 if (res->return_on_close) {
1384 set_bit(NFS_LSEG_ROC, &lseg->pls_flags);
1385 set_bit(NFS_LAYOUT_ROC, &lo->plh_flags);
1386 }
1387
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001388 spin_unlock(&ino->i_lock);
Trond Myklebust78096cc2014-02-12 10:02:27 -05001389 pnfs_free_lseg_list(&free_me);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04001390 return lseg;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001391out:
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04001392 return ERR_PTR(status);
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001393
1394out_forget_reply:
1395 spin_unlock(&ino->i_lock);
1396 lseg->pls_layout = lo;
1397 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
1398 goto out;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001399}
1400
Trond Myklebustd8007d42011-06-10 13:30:23 -04001401void
1402pnfs_generic_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
1403{
Peng Tao1fd937b2012-09-25 14:55:57 +08001404 u64 rd_size = req->wb_bytes;
1405
Trond Myklebustbc5a89b2012-10-15 14:58:04 -04001406 WARN_ON_ONCE(pgio->pg_lseg != NULL);
Trond Myklebustd8007d42011-06-10 13:30:23 -04001407
Peng Tao1fd937b2012-09-25 14:55:57 +08001408 if (pgio->pg_dreq == NULL)
1409 rd_size = i_size_read(pgio->pg_inode) - req_offset(req);
1410 else
1411 rd_size = nfs_dreq_bytes_left(pgio->pg_dreq);
1412
Trond Myklebustd8007d42011-06-10 13:30:23 -04001413 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1414 req->wb_context,
1415 req_offset(req),
Peng Tao1fd937b2012-09-25 14:55:57 +08001416 rd_size,
Trond Myklebustd8007d42011-06-10 13:30:23 -04001417 IOMODE_READ,
1418 GFP_KERNEL);
Trond Myklebuste885de12011-06-10 13:30:23 -04001419 /* If no lseg, fall back to read through mds */
1420 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -04001421 nfs_pageio_reset_read_mds(pgio);
Trond Myklebuste885de12011-06-10 13:30:23 -04001422
Trond Myklebustd8007d42011-06-10 13:30:23 -04001423}
1424EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_read);
1425
1426void
Peng Tao62965562012-09-25 14:55:57 +08001427pnfs_generic_pg_init_write(struct nfs_pageio_descriptor *pgio,
1428 struct nfs_page *req, u64 wb_size)
Trond Myklebustd8007d42011-06-10 13:30:23 -04001429{
Trond Myklebustbc5a89b2012-10-15 14:58:04 -04001430 WARN_ON_ONCE(pgio->pg_lseg != NULL);
Trond Myklebustd8007d42011-06-10 13:30:23 -04001431
1432 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1433 req->wb_context,
1434 req_offset(req),
Peng Tao62965562012-09-25 14:55:57 +08001435 wb_size,
Trond Myklebustd8007d42011-06-10 13:30:23 -04001436 IOMODE_RW,
1437 GFP_NOFS);
Trond Myklebuste885de12011-06-10 13:30:23 -04001438 /* If no lseg, fall back to write through mds */
1439 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -04001440 nfs_pageio_reset_write_mds(pgio);
Trond Myklebustd8007d42011-06-10 13:30:23 -04001441}
1442EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_write);
1443
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -04001444/*
1445 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
1446 * of bytes (maximum @req->wb_bytes) that can be coalesced.
1447 */
1448size_t
Benny Halevydfed2062011-05-25 20:25:22 +03001449pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
1450 struct nfs_page *req)
Fred Isamanbae724e2011-03-01 01:34:15 +00001451{
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -04001452 unsigned int size;
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001453 u64 seg_end, req_start, seg_left;
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -04001454
1455 size = nfs_generic_pg_test(pgio, prev, req);
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -04001456 if (!size)
1457 return 0;
Benny Halevy89a58e32011-05-25 20:54:40 +03001458
Trond Myklebust19982ba2011-06-10 13:30:23 -04001459 /*
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001460 * 'size' contains the number of bytes left in the current page (up
1461 * to the original size asked for in @req->wb_bytes).
1462 *
1463 * Calculate how many bytes are left in the layout segment
1464 * and if there are less bytes than 'size', return that instead.
Trond Myklebust19982ba2011-06-10 13:30:23 -04001465 *
1466 * Please also note that 'end_offset' is actually the offset of the
1467 * first byte that lies outside the pnfs_layout_range. FIXME?
1468 *
1469 */
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001470 if (pgio->pg_lseg) {
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001471 seg_end = end_offset(pgio->pg_lseg->pls_range.offset,
1472 pgio->pg_lseg->pls_range.length);
1473 req_start = req_offset(req);
1474 WARN_ON_ONCE(req_start > seg_end);
1475 /* start of request is past the last byte of this segment */
1476 if (req_start >= seg_end)
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001477 return 0;
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001478
1479 /* adjust 'size' iff there are fewer bytes left in the
1480 * segment than what nfs_generic_pg_test returned */
1481 seg_left = seg_end - req_start;
1482 if (seg_left < size)
1483 size = (unsigned int)seg_left;
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001484 }
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -04001485
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001486 return size;
Fred Isamanbae724e2011-03-01 01:34:15 +00001487}
Benny Halevy89a58e32011-05-25 20:54:40 +03001488EXPORT_SYMBOL_GPL(pnfs_generic_pg_test);
Fred Isamanbae724e2011-03-01 01:34:15 +00001489
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001490int pnfs_write_done_resend_to_mds(struct nfs_pgio_header *hdr)
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001491{
1492 struct nfs_pageio_descriptor pgio;
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001493
1494 /* Resend all requests through the MDS */
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001495 nfs_pageio_init_write(&pgio, hdr->inode, FLUSH_STABLE, true,
1496 hdr->completion_ops);
1497 return nfs_pageio_resend(&pgio, hdr);
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001498}
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001499EXPORT_SYMBOL_GPL(pnfs_write_done_resend_to_mds);
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001500
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001501static void pnfs_ld_handle_write_error(struct nfs_pgio_header *hdr)
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001502{
Fred Isamancd841602012-04-20 14:47:44 -04001503
1504 dprintk("pnfs write error = %d\n", hdr->pnfs_error);
1505 if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001506 PNFS_LAYOUTRET_ON_ERROR) {
Fred Isamancd841602012-04-20 14:47:44 -04001507 pnfs_return_layout(hdr->inode);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001508 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001509 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001510 hdr->task.tk_status = pnfs_write_done_resend_to_mds(hdr);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001511}
1512
Benny Halevyd20581a2011-05-22 19:52:03 +03001513/*
1514 * Called by non rpc-based layout drivers
1515 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001516void pnfs_ld_write_done(struct nfs_pgio_header *hdr)
Fred Isaman94ad1c82011-03-01 01:34:14 +00001517{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001518 trace_nfs4_pnfs_write(hdr, hdr->pnfs_error);
Fred Isamancd841602012-04-20 14:47:44 -04001519 if (!hdr->pnfs_error) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001520 pnfs_set_layoutcommit(hdr);
1521 hdr->mds_ops->rpc_call_done(&hdr->task, hdr);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001522 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001523 pnfs_ld_handle_write_error(hdr);
1524 hdr->mds_ops->rpc_release(hdr);
Fred Isaman44b83792011-03-03 15:13:44 +00001525}
Benny Halevyd20581a2011-05-22 19:52:03 +03001526EXPORT_SYMBOL_GPL(pnfs_ld_write_done);
Fred Isaman44b83792011-03-03 15:13:44 +00001527
Trond Myklebustdce81292011-07-13 15:59:19 -04001528static void
1529pnfs_write_through_mds(struct nfs_pageio_descriptor *desc,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001530 struct nfs_pgio_header *hdr)
Trond Myklebustdce81292011-07-13 15:59:19 -04001531{
Fred Isaman6c75dc02012-04-20 14:47:47 -04001532 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
1533 list_splice_tail_init(&hdr->pages, &desc->pg_list);
1534 nfs_pageio_reset_write_mds(desc);
1535 desc->pg_recoalesce = 1;
1536 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001537 nfs_pgio_data_destroy(hdr);
Trond Myklebustdce81292011-07-13 15:59:19 -04001538}
1539
1540static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001541pnfs_try_to_write_data(struct nfs_pgio_header *hdr,
Trond Myklebustdce81292011-07-13 15:59:19 -04001542 const struct rpc_call_ops *call_ops,
1543 struct pnfs_layout_segment *lseg,
1544 int how)
Andy Adamson0382b742011-03-03 15:13:45 +00001545{
Fred Isamancd841602012-04-20 14:47:44 -04001546 struct inode *inode = hdr->inode;
Andy Adamson0382b742011-03-03 15:13:45 +00001547 enum pnfs_try_status trypnfs;
1548 struct nfs_server *nfss = NFS_SERVER(inode);
1549
Fred Isamancd841602012-04-20 14:47:44 -04001550 hdr->mds_ops = call_ops;
Andy Adamson0382b742011-03-03 15:13:45 +00001551
1552 dprintk("%s: Writing ino:%lu %u@%llu (how %d)\n", __func__,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001553 inode->i_ino, hdr->args.count, hdr->args.offset, how);
1554 trypnfs = nfss->pnfs_curr_ld->write_pagelist(hdr, how);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001555 if (trypnfs != PNFS_NOT_ATTEMPTED)
Andy Adamson0382b742011-03-03 15:13:45 +00001556 nfs_inc_stats(inode, NFSIOS_PNFS_WRITE);
Andy Adamson0382b742011-03-03 15:13:45 +00001557 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1558 return trypnfs;
1559}
1560
Trond Myklebustdce81292011-07-13 15:59:19 -04001561static void
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001562pnfs_do_write(struct nfs_pageio_descriptor *desc,
1563 struct nfs_pgio_header *hdr, int how)
Trond Myklebustdce81292011-07-13 15:59:19 -04001564{
Trond Myklebustdce81292011-07-13 15:59:19 -04001565 const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
1566 struct pnfs_layout_segment *lseg = desc->pg_lseg;
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001567 enum pnfs_try_status trypnfs;
Trond Myklebustdce81292011-07-13 15:59:19 -04001568
1569 desc->pg_lseg = NULL;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001570 trypnfs = pnfs_try_to_write_data(hdr, call_ops, lseg, how);
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001571 if (trypnfs == PNFS_NOT_ATTEMPTED)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001572 pnfs_write_through_mds(desc, hdr);
Trond Myklebust9369a432012-09-18 20:57:08 -04001573 pnfs_put_lseg(lseg);
Trond Myklebustdce81292011-07-13 15:59:19 -04001574}
1575
Fred Isaman6c75dc02012-04-20 14:47:47 -04001576static void pnfs_writehdr_free(struct nfs_pgio_header *hdr)
1577{
Trond Myklebust9369a432012-09-18 20:57:08 -04001578 pnfs_put_lseg(hdr->lseg);
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04001579 nfs_pgio_header_free(hdr);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001580}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001581EXPORT_SYMBOL_GPL(pnfs_writehdr_free);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001582
Trond Myklebustdce81292011-07-13 15:59:19 -04001583int
1584pnfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
1585{
Fred Isaman6c75dc02012-04-20 14:47:47 -04001586 struct nfs_pgio_header *hdr;
Trond Myklebustdce81292011-07-13 15:59:19 -04001587 int ret;
1588
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04001589 hdr = nfs_pgio_header_alloc(desc->pg_rw_ops);
1590 if (!hdr) {
Trond Myklebust9b5415b2012-04-27 14:31:47 -04001591 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Trond Myklebust9369a432012-09-18 20:57:08 -04001592 pnfs_put_lseg(desc->pg_lseg);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001593 desc->pg_lseg = NULL;
1594 return -ENOMEM;
1595 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001596 nfs_pgheader_init(desc, hdr, pnfs_writehdr_free);
Trond Myklebust9369a432012-09-18 20:57:08 -04001597 hdr->lseg = pnfs_get_lseg(desc->pg_lseg);
Anna Schumakeref2c4882014-05-06 09:12:36 -04001598 ret = nfs_generic_pgio(desc, hdr);
Trond Myklebustdce81292011-07-13 15:59:19 -04001599 if (ret != 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -04001600 pnfs_put_lseg(desc->pg_lseg);
Trond Myklebustdce81292011-07-13 15:59:19 -04001601 desc->pg_lseg = NULL;
Fred Isaman6c75dc02012-04-20 14:47:47 -04001602 } else
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001603 pnfs_do_write(desc, hdr, desc->pg_ioflags);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001604 return ret;
Trond Myklebustdce81292011-07-13 15:59:19 -04001605}
1606EXPORT_SYMBOL_GPL(pnfs_generic_pg_writepages);
1607
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001608int pnfs_read_done_resend_to_mds(struct nfs_pgio_header *hdr)
Trond Myklebust62e4a762011-11-10 14:30:37 -05001609{
1610 struct nfs_pageio_descriptor pgio;
1611
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001612 /* Resend all requests through the MDS */
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001613 nfs_pageio_init_read(&pgio, hdr->inode, true, hdr->completion_ops);
1614 return nfs_pageio_resend(&pgio, hdr);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001615}
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001616EXPORT_SYMBOL_GPL(pnfs_read_done_resend_to_mds);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001617
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001618static void pnfs_ld_handle_read_error(struct nfs_pgio_header *hdr)
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001619{
Fred Isamancd841602012-04-20 14:47:44 -04001620 dprintk("pnfs read error = %d\n", hdr->pnfs_error);
1621 if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001622 PNFS_LAYOUTRET_ON_ERROR) {
Fred Isamancd841602012-04-20 14:47:44 -04001623 pnfs_return_layout(hdr->inode);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001624 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001625 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001626 hdr->task.tk_status = pnfs_read_done_resend_to_mds(hdr);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001627}
1628
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001629/*
Benny Halevyd20581a2011-05-22 19:52:03 +03001630 * Called by non rpc-based layout drivers
1631 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001632void pnfs_ld_read_done(struct nfs_pgio_header *hdr)
Benny Halevyd20581a2011-05-22 19:52:03 +03001633{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001634 trace_nfs4_pnfs_read(hdr, hdr->pnfs_error);
Fred Isamancd841602012-04-20 14:47:44 -04001635 if (likely(!hdr->pnfs_error)) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001636 __nfs4_read_done_cb(hdr);
1637 hdr->mds_ops->rpc_call_done(&hdr->task, hdr);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001638 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001639 pnfs_ld_handle_read_error(hdr);
1640 hdr->mds_ops->rpc_release(hdr);
Benny Halevyd20581a2011-05-22 19:52:03 +03001641}
1642EXPORT_SYMBOL_GPL(pnfs_ld_read_done);
1643
Trond Myklebust493292d2011-07-13 15:58:28 -04001644static void
1645pnfs_read_through_mds(struct nfs_pageio_descriptor *desc,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001646 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -04001647{
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001648 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
1649 list_splice_tail_init(&hdr->pages, &desc->pg_list);
1650 nfs_pageio_reset_read_mds(desc);
1651 desc->pg_recoalesce = 1;
1652 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001653 nfs_pgio_data_destroy(hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -04001654}
1655
Benny Halevyd20581a2011-05-22 19:52:03 +03001656/*
Andy Adamson64419a92011-03-01 01:34:16 +00001657 * Call the appropriate parallel I/O subsystem read function.
1658 */
Trond Myklebust493292d2011-07-13 15:58:28 -04001659static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001660pnfs_try_to_read_data(struct nfs_pgio_header *hdr,
Trond Myklebust493292d2011-07-13 15:58:28 -04001661 const struct rpc_call_ops *call_ops,
1662 struct pnfs_layout_segment *lseg)
Andy Adamson64419a92011-03-01 01:34:16 +00001663{
Fred Isamancd841602012-04-20 14:47:44 -04001664 struct inode *inode = hdr->inode;
Andy Adamson64419a92011-03-01 01:34:16 +00001665 struct nfs_server *nfss = NFS_SERVER(inode);
1666 enum pnfs_try_status trypnfs;
1667
Fred Isamancd841602012-04-20 14:47:44 -04001668 hdr->mds_ops = call_ops;
Andy Adamson64419a92011-03-01 01:34:16 +00001669
1670 dprintk("%s: Reading ino:%lu %u@%llu\n",
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001671 __func__, inode->i_ino, hdr->args.count, hdr->args.offset);
Andy Adamson64419a92011-03-01 01:34:16 +00001672
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001673 trypnfs = nfss->pnfs_curr_ld->read_pagelist(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001674 if (trypnfs != PNFS_NOT_ATTEMPTED)
Andy Adamson64419a92011-03-01 01:34:16 +00001675 nfs_inc_stats(inode, NFSIOS_PNFS_READ);
Andy Adamson64419a92011-03-01 01:34:16 +00001676 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1677 return trypnfs;
1678}
Andy Adamson863a3c62011-03-23 13:27:54 +00001679
Trond Myklebust493292d2011-07-13 15:58:28 -04001680static void
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001681pnfs_do_read(struct nfs_pageio_descriptor *desc, struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -04001682{
Trond Myklebust493292d2011-07-13 15:58:28 -04001683 const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
1684 struct pnfs_layout_segment *lseg = desc->pg_lseg;
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001685 enum pnfs_try_status trypnfs;
Trond Myklebust493292d2011-07-13 15:58:28 -04001686
1687 desc->pg_lseg = NULL;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001688 trypnfs = pnfs_try_to_read_data(hdr, call_ops, lseg);
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001689 if (trypnfs == PNFS_NOT_ATTEMPTED)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001690 pnfs_read_through_mds(desc, hdr);
Trond Myklebust9369a432012-09-18 20:57:08 -04001691 pnfs_put_lseg(lseg);
Trond Myklebust493292d2011-07-13 15:58:28 -04001692}
1693
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001694static void pnfs_readhdr_free(struct nfs_pgio_header *hdr)
1695{
Trond Myklebust9369a432012-09-18 20:57:08 -04001696 pnfs_put_lseg(hdr->lseg);
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04001697 nfs_pgio_header_free(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001698}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001699EXPORT_SYMBOL_GPL(pnfs_readhdr_free);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001700
Trond Myklebust493292d2011-07-13 15:58:28 -04001701int
1702pnfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
1703{
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001704 struct nfs_pgio_header *hdr;
Trond Myklebust493292d2011-07-13 15:58:28 -04001705 int ret;
1706
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04001707 hdr = nfs_pgio_header_alloc(desc->pg_rw_ops);
1708 if (!hdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -04001709 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001710 ret = -ENOMEM;
Trond Myklebust9369a432012-09-18 20:57:08 -04001711 pnfs_put_lseg(desc->pg_lseg);
Trond Myklebust493292d2011-07-13 15:58:28 -04001712 desc->pg_lseg = NULL;
1713 return ret;
1714 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001715 nfs_pgheader_init(desc, hdr, pnfs_readhdr_free);
Trond Myklebust9369a432012-09-18 20:57:08 -04001716 hdr->lseg = pnfs_get_lseg(desc->pg_lseg);
Anna Schumakeref2c4882014-05-06 09:12:36 -04001717 ret = nfs_generic_pgio(desc, hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001718 if (ret != 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -04001719 pnfs_put_lseg(desc->pg_lseg);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001720 desc->pg_lseg = NULL;
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001721 } else
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001722 pnfs_do_read(desc, hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001723 return ret;
Trond Myklebust493292d2011-07-13 15:58:28 -04001724}
1725EXPORT_SYMBOL_GPL(pnfs_generic_pg_readpages);
1726
Trond Myklebust71244d92014-01-13 13:34:36 -05001727static void pnfs_clear_layoutcommitting(struct inode *inode)
1728{
1729 unsigned long *bitlock = &NFS_I(inode)->flags;
1730
1731 clear_bit_unlock(NFS_INO_LAYOUTCOMMITTING, bitlock);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001732 smp_mb__after_atomic();
Trond Myklebust71244d92014-01-13 13:34:36 -05001733 wake_up_bit(bitlock, NFS_INO_LAYOUTCOMMITTING);
1734}
1735
Andy Adamson863a3c62011-03-23 13:27:54 +00001736/*
Peng Taoa9bae562011-07-30 20:52:33 -04001737 * There can be multiple RW segments.
Andy Adamson863a3c62011-03-23 13:27:54 +00001738 */
Peng Taoa9bae562011-07-30 20:52:33 -04001739static void pnfs_list_write_lseg(struct inode *inode, struct list_head *listp)
Andy Adamson863a3c62011-03-23 13:27:54 +00001740{
Peng Taoa9bae562011-07-30 20:52:33 -04001741 struct pnfs_layout_segment *lseg;
Andy Adamson863a3c62011-03-23 13:27:54 +00001742
Peng Taoa9bae562011-07-30 20:52:33 -04001743 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list) {
1744 if (lseg->pls_range.iomode == IOMODE_RW &&
Trond Myklebusta073dbf2013-03-20 12:34:32 -04001745 test_and_clear_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
Peng Taoa9bae562011-07-30 20:52:33 -04001746 list_add(&lseg->pls_lc_list, listp);
1747 }
Andy Adamson863a3c62011-03-23 13:27:54 +00001748}
1749
Trond Myklebusta073dbf2013-03-20 12:34:32 -04001750static void pnfs_list_write_lseg_done(struct inode *inode, struct list_head *listp)
1751{
1752 struct pnfs_layout_segment *lseg, *tmp;
Trond Myklebusta073dbf2013-03-20 12:34:32 -04001753
1754 /* Matched by references in pnfs_set_layoutcommit */
1755 list_for_each_entry_safe(lseg, tmp, listp, pls_lc_list) {
1756 list_del_init(&lseg->pls_lc_list);
1757 pnfs_put_lseg(lseg);
1758 }
1759
Trond Myklebust71244d92014-01-13 13:34:36 -05001760 pnfs_clear_layoutcommitting(inode);
Trond Myklebusta073dbf2013-03-20 12:34:32 -04001761}
1762
Peng Tao1b0ae062011-09-22 21:50:12 -04001763void pnfs_set_lo_fail(struct pnfs_layout_segment *lseg)
1764{
Trond Myklebustb9e028f2012-09-18 16:41:18 -04001765 pnfs_layout_io_set_failed(lseg->pls_layout, lseg->pls_range.iomode);
Peng Tao1b0ae062011-09-22 21:50:12 -04001766}
1767EXPORT_SYMBOL_GPL(pnfs_set_lo_fail);
1768
Andy Adamson863a3c62011-03-23 13:27:54 +00001769void
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001770pnfs_set_layoutcommit(struct nfs_pgio_header *hdr)
Andy Adamson863a3c62011-03-23 13:27:54 +00001771{
Fred Isamancd841602012-04-20 14:47:44 -04001772 struct inode *inode = hdr->inode;
1773 struct nfs_inode *nfsi = NFS_I(inode);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001774 loff_t end_pos = hdr->mds_offset + hdr->res.count;
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04001775 bool mark_as_dirty = false;
Andy Adamson863a3c62011-03-23 13:27:54 +00001776
Fred Isamancd841602012-04-20 14:47:44 -04001777 spin_lock(&inode->i_lock);
Andy Adamson863a3c62011-03-23 13:27:54 +00001778 if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04001779 mark_as_dirty = true;
Andy Adamson863a3c62011-03-23 13:27:54 +00001780 dprintk("%s: Set layoutcommit for inode %lu ",
Fred Isamancd841602012-04-20 14:47:44 -04001781 __func__, inode->i_ino);
Andy Adamson863a3c62011-03-23 13:27:54 +00001782 }
Fred Isamancd841602012-04-20 14:47:44 -04001783 if (!test_and_set_bit(NFS_LSEG_LAYOUTCOMMIT, &hdr->lseg->pls_flags)) {
Peng Taoa9bae562011-07-30 20:52:33 -04001784 /* references matched in nfs4_layoutcommit_release */
Trond Myklebust9369a432012-09-18 20:57:08 -04001785 pnfs_get_lseg(hdr->lseg);
Peng Taoa9bae562011-07-30 20:52:33 -04001786 }
Peng Taoacff58802011-07-30 20:52:31 -04001787 if (end_pos > nfsi->layout->plh_lwb)
1788 nfsi->layout->plh_lwb = end_pos;
Fred Isamancd841602012-04-20 14:47:44 -04001789 spin_unlock(&inode->i_lock);
Peng Taoacff58802011-07-30 20:52:31 -04001790 dprintk("%s: lseg %p end_pos %llu\n",
Fred Isamancd841602012-04-20 14:47:44 -04001791 __func__, hdr->lseg, nfsi->layout->plh_lwb);
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04001792
1793 /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
1794 * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
1795 if (mark_as_dirty)
Fred Isamancd841602012-04-20 14:47:44 -04001796 mark_inode_dirty_sync(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00001797}
1798EXPORT_SYMBOL_GPL(pnfs_set_layoutcommit);
1799
Peng Tao378520b2014-08-07 10:15:02 +08001800void pnfs_commit_set_layoutcommit(struct nfs_commit_data *data)
1801{
1802 struct inode *inode = data->inode;
1803 struct nfs_inode *nfsi = NFS_I(inode);
1804 bool mark_as_dirty = false;
1805
1806 spin_lock(&inode->i_lock);
1807 if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
1808 mark_as_dirty = true;
1809 dprintk("%s: Set layoutcommit for inode %lu ",
1810 __func__, inode->i_ino);
1811 }
1812 if (!test_and_set_bit(NFS_LSEG_LAYOUTCOMMIT, &data->lseg->pls_flags)) {
1813 /* references matched in nfs4_layoutcommit_release */
1814 pnfs_get_lseg(data->lseg);
1815 }
1816 if (data->lwb > nfsi->layout->plh_lwb)
1817 nfsi->layout->plh_lwb = data->lwb;
1818 spin_unlock(&inode->i_lock);
1819 dprintk("%s: lseg %p end_pos %llu\n",
1820 __func__, data->lseg, nfsi->layout->plh_lwb);
1821
1822 /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
1823 * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
1824 if (mark_as_dirty)
1825 mark_inode_dirty_sync(inode);
1826}
1827EXPORT_SYMBOL_GPL(pnfs_commit_set_layoutcommit);
1828
Andy Adamsondb29c082011-07-30 20:52:38 -04001829void pnfs_cleanup_layoutcommit(struct nfs4_layoutcommit_data *data)
1830{
1831 struct nfs_server *nfss = NFS_SERVER(data->args.inode);
1832
1833 if (nfss->pnfs_curr_ld->cleanup_layoutcommit)
1834 nfss->pnfs_curr_ld->cleanup_layoutcommit(data);
Trond Myklebusta073dbf2013-03-20 12:34:32 -04001835 pnfs_list_write_lseg_done(data->args.inode, &data->lseg_list);
Andy Adamsondb29c082011-07-30 20:52:38 -04001836}
1837
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001838/*
1839 * For the LAYOUT4_NFSV4_1_FILES layout type, NFS_DATA_SYNC WRITEs and
1840 * NFS_UNSTABLE WRITEs with a COMMIT to data servers must store enough
1841 * data to disk to allow the server to recover the data if it crashes.
1842 * LAYOUTCOMMIT is only needed when the NFL4_UFLG_COMMIT_THRU_MDS flag
1843 * is off, and a COMMIT is sent to a data server, or
1844 * if WRITEs to a data server return NFS_DATA_SYNC.
1845 */
Andy Adamson863a3c62011-03-23 13:27:54 +00001846int
Andy Adamsonef311532011-03-12 02:58:10 -05001847pnfs_layoutcommit_inode(struct inode *inode, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00001848{
1849 struct nfs4_layoutcommit_data *data;
1850 struct nfs_inode *nfsi = NFS_I(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00001851 loff_t end_pos;
Trond Myklebust71244d92014-01-13 13:34:36 -05001852 int status;
1853
1854 if (!pnfs_layoutcommit_outstanding(inode))
1855 return 0;
Andy Adamson863a3c62011-03-23 13:27:54 +00001856
1857 dprintk("--> %s inode %lu\n", __func__, inode->i_ino);
1858
Trond Myklebust71244d92014-01-13 13:34:36 -05001859 status = -EAGAIN;
1860 if (test_and_set_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags)) {
1861 if (!sync)
1862 goto out;
NeilBrown74316202014-07-07 15:16:04 +10001863 status = wait_on_bit_lock_action(&nfsi->flags,
Trond Myklebust71244d92014-01-13 13:34:36 -05001864 NFS_INO_LAYOUTCOMMITTING,
1865 nfs_wait_bit_killable,
1866 TASK_KILLABLE);
1867 if (status)
1868 goto out;
1869 }
Andy Adamsonde4b15c2011-03-12 02:58:09 -05001870
Trond Myklebust71244d92014-01-13 13:34:36 -05001871 status = -ENOMEM;
Andy Adamson863a3c62011-03-23 13:27:54 +00001872 /* Note kzalloc ensures data->res.seq_res.sr_slot == NULL */
1873 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebust71244d92014-01-13 13:34:36 -05001874 if (!data)
1875 goto clear_layoutcommitting;
Andy Adamson863a3c62011-03-23 13:27:54 +00001876
Trond Myklebust71244d92014-01-13 13:34:36 -05001877 status = 0;
1878 spin_lock(&inode->i_lock);
1879 if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
1880 goto out_unlock;
Peng Tao92407e72011-10-23 20:21:17 -07001881
Peng Taoa9bae562011-07-30 20:52:33 -04001882 INIT_LIST_HEAD(&data->lseg_list);
Peng Taoa9bae562011-07-30 20:52:33 -04001883 pnfs_list_write_lseg(inode, &data->lseg_list);
Andy Adamson863a3c62011-03-23 13:27:54 +00001884
Peng Taoacff58802011-07-30 20:52:31 -04001885 end_pos = nfsi->layout->plh_lwb;
Peng Taoacff58802011-07-30 20:52:31 -04001886 nfsi->layout->plh_lwb = 0;
Andy Adamson863a3c62011-03-23 13:27:54 +00001887
Trond Myklebustf597c532012-03-04 18:13:56 -05001888 nfs4_stateid_copy(&data->args.stateid, &nfsi->layout->plh_stateid);
Andy Adamson863a3c62011-03-23 13:27:54 +00001889 spin_unlock(&inode->i_lock);
1890
1891 data->args.inode = inode;
Peng Tao9fa40752011-07-30 20:52:32 -04001892 data->cred = get_rpccred(nfsi->layout->plh_lc_cred);
Andy Adamson863a3c62011-03-23 13:27:54 +00001893 nfs_fattr_init(&data->fattr);
1894 data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
1895 data->res.fattr = &data->fattr;
1896 data->args.lastbytewritten = end_pos - 1;
1897 data->res.server = NFS_SERVER(inode);
1898
1899 status = nfs4_proc_layoutcommit(data, sync);
1900out:
Peng Tao92407e72011-10-23 20:21:17 -07001901 if (status)
1902 mark_inode_dirty_sync(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00001903 dprintk("<-- %s status %d\n", __func__, status);
1904 return status;
Trond Myklebust71244d92014-01-13 13:34:36 -05001905out_unlock:
1906 spin_unlock(&inode->i_lock);
Peng Tao92407e72011-10-23 20:21:17 -07001907 kfree(data);
Trond Myklebust71244d92014-01-13 13:34:36 -05001908clear_layoutcommitting:
1909 pnfs_clear_layoutcommitting(inode);
Peng Tao92407e72011-10-23 20:21:17 -07001910 goto out;
Andy Adamson863a3c62011-03-23 13:27:54 +00001911}
Andy Adamson82be4172012-05-23 05:02:35 -04001912
1913struct nfs4_threshold *pnfs_mdsthreshold_alloc(void)
1914{
1915 struct nfs4_threshold *thp;
1916
1917 thp = kzalloc(sizeof(*thp), GFP_NOFS);
1918 if (!thp) {
1919 dprintk("%s mdsthreshold allocation failed\n", __func__);
1920 return NULL;
1921 }
1922 return thp;
1923}