2019-05-19 14:08:20 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2014-12-11 23:02:04 +01:00
|
|
|
/*
|
|
|
|
* Module for pnfs flexfile layout driver.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014, Primary Data, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Tao Peng <bergwolf@primarydata.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/nfs_fs.h>
|
2019-08-23 14:37:50 +02:00
|
|
|
#include <linux/nfs_mount.h>
|
2014-12-11 23:02:04 +01:00
|
|
|
#include <linux/nfs_page.h>
|
|
|
|
#include <linux/module.h>
|
2018-12-03 01:30:30 +01:00
|
|
|
#include <linux/sched/mm.h>
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
#include <linux/sunrpc/metrics.h>
|
|
|
|
|
|
|
|
#include "flexfilelayout.h"
|
|
|
|
#include "../nfs4session.h"
|
2015-04-15 19:00:05 +02:00
|
|
|
#include "../nfs4idmap.h"
|
2014-12-11 23:02:04 +01:00
|
|
|
#include "../internal.h"
|
|
|
|
#include "../delegation.h"
|
|
|
|
#include "../nfs4trace.h"
|
|
|
|
#include "../iostat.h"
|
|
|
|
#include "../nfs.h"
|
2015-06-23 13:52:01 +02:00
|
|
|
#include "../nfs42.h"
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
#define NFSDBG_FACILITY NFSDBG_PNFS_LD
|
|
|
|
|
|
|
|
#define FF_LAYOUT_POLL_RETRY_MAX (15*HZ)
|
2016-12-02 22:15:05 +01:00
|
|
|
#define FF_LAYOUTRETURN_MAXERR 20
|
|
|
|
|
2019-04-07 19:59:08 +02:00
|
|
|
static unsigned short io_maxretrans;
|
|
|
|
|
2016-11-27 21:12:39 +01:00
|
|
|
static void ff_layout_read_record_layoutstats_done(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr);
|
2016-10-19 21:59:28 +02:00
|
|
|
static int ff_layout_mirror_prepare_stats(struct pnfs_layout_hdr *lo,
|
|
|
|
struct nfs42_layoutstat_devinfo *devinfo,
|
|
|
|
int dev_limit);
|
|
|
|
static void ff_layout_encode_ff_layoutupdate(struct xdr_stream *xdr,
|
|
|
|
const struct nfs42_layoutstat_devinfo *devinfo,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror);
|
2016-11-27 21:12:39 +01:00
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static struct pnfs_layout_hdr *
|
|
|
|
ff_layout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct nfs4_flexfile_layout *ffl;
|
|
|
|
|
|
|
|
ffl = kzalloc(sizeof(*ffl), gfp_flags);
|
|
|
|
if (ffl) {
|
|
|
|
INIT_LIST_HEAD(&ffl->error_list);
|
2015-08-25 02:03:17 +02:00
|
|
|
INIT_LIST_HEAD(&ffl->mirrors);
|
2016-08-14 18:47:49 +02:00
|
|
|
ffl->last_report_time = ktime_get();
|
2014-12-11 23:02:04 +01:00
|
|
|
return &ffl->generic_hdr;
|
|
|
|
} else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_free_layout_hdr(struct pnfs_layout_hdr *lo)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_ds_err *err, *n;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(err, n, &FF_LAYOUT_FROM_HDR(lo)->error_list,
|
|
|
|
list) {
|
|
|
|
list_del(&err->list);
|
|
|
|
kfree(err);
|
|
|
|
}
|
|
|
|
kfree(FF_LAYOUT_FROM_HDR(lo));
|
|
|
|
}
|
|
|
|
|
2016-05-16 23:42:43 +02:00
|
|
|
static int decode_pnfs_stateid(struct xdr_stream *xdr, nfs4_stateid *stateid)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
p = xdr_inline_decode(xdr, NFS4_STATEID_SIZE);
|
|
|
|
if (unlikely(p == NULL))
|
|
|
|
return -ENOBUFS;
|
2016-05-16 23:42:43 +02:00
|
|
|
stateid->type = NFS4_PNFS_DS_STATEID_TYPE;
|
|
|
|
memcpy(stateid->data, p, NFS4_STATEID_SIZE);
|
2014-12-11 23:02:04 +01:00
|
|
|
dprintk("%s: stateid id= [%x%x%x%x]\n", __func__,
|
|
|
|
p[0], p[1], p[2], p[3]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int decode_deviceid(struct xdr_stream *xdr, struct nfs4_deviceid *devid)
|
|
|
|
{
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
p = xdr_inline_decode(xdr, NFS4_DEVICEID4_SIZE);
|
|
|
|
if (unlikely(!p))
|
|
|
|
return -ENOBUFS;
|
|
|
|
memcpy(devid, p, NFS4_DEVICEID4_SIZE);
|
|
|
|
nfs4_print_deviceid(devid);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int decode_nfs_fh(struct xdr_stream *xdr, struct nfs_fh *fh)
|
|
|
|
{
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
p = xdr_inline_decode(xdr, 4);
|
|
|
|
if (unlikely(!p))
|
|
|
|
return -ENOBUFS;
|
|
|
|
fh->size = be32_to_cpup(p++);
|
|
|
|
if (fh->size > sizeof(struct nfs_fh)) {
|
|
|
|
printk(KERN_ERR "NFS flexfiles: Too big fh received %d\n",
|
|
|
|
fh->size);
|
|
|
|
return -EOVERFLOW;
|
|
|
|
}
|
|
|
|
/* fh.data */
|
|
|
|
p = xdr_inline_decode(xdr, fh->size);
|
|
|
|
if (unlikely(!p))
|
|
|
|
return -ENOBUFS;
|
|
|
|
memcpy(&fh->data, p, fh->size);
|
|
|
|
dprintk("%s: fh len %d\n", __func__, fh->size);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Currently only stringified uids and gids are accepted.
|
|
|
|
* I.e., kerberos is not supported to the DSes, so no pricipals.
|
|
|
|
*
|
|
|
|
* That means that one common function will suffice, but when
|
|
|
|
* principals are added, this should be split to accomodate
|
|
|
|
* calls to both nfs_map_name_to_uid() and nfs_map_group_to_gid().
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
decode_name(struct xdr_stream *xdr, u32 *id)
|
|
|
|
{
|
|
|
|
__be32 *p;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
/* opaque_length(4)*/
|
|
|
|
p = xdr_inline_decode(xdr, 4);
|
|
|
|
if (unlikely(!p))
|
|
|
|
return -ENOBUFS;
|
|
|
|
len = be32_to_cpup(p++);
|
|
|
|
if (len < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
dprintk("%s: len %u\n", __func__, len);
|
|
|
|
|
|
|
|
/* opaque body */
|
|
|
|
p = xdr_inline_decode(xdr, len);
|
|
|
|
if (unlikely(!p))
|
|
|
|
return -ENOBUFS;
|
|
|
|
|
|
|
|
if (!nfs_map_string_to_numeric((char *)p, len, id))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-25 02:03:17 +02:00
|
|
|
static bool ff_mirror_match_fh(const struct nfs4_ff_layout_mirror *m1,
|
|
|
|
const struct nfs4_ff_layout_mirror *m2)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (m1->fh_versions_cnt != m2->fh_versions_cnt)
|
|
|
|
return false;
|
|
|
|
for (i = 0; i < m1->fh_versions_cnt; i++) {
|
|
|
|
bool found_fh = false;
|
2015-12-30 16:57:01 +01:00
|
|
|
for (j = 0; j < m2->fh_versions_cnt; j++) {
|
2015-08-25 02:03:17 +02:00
|
|
|
if (nfs_compare_fh(&m1->fh_versions[i],
|
|
|
|
&m2->fh_versions[j]) == 0) {
|
|
|
|
found_fh = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found_fh)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nfs4_ff_layout_mirror *
|
|
|
|
ff_layout_add_mirror(struct pnfs_layout_hdr *lo,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror)
|
|
|
|
{
|
|
|
|
struct nfs4_flexfile_layout *ff_layout = FF_LAYOUT_FROM_HDR(lo);
|
|
|
|
struct nfs4_ff_layout_mirror *pos;
|
|
|
|
struct inode *inode = lo->plh_inode;
|
|
|
|
|
|
|
|
spin_lock(&inode->i_lock);
|
|
|
|
list_for_each_entry(pos, &ff_layout->mirrors, mirrors) {
|
2016-09-30 20:37:41 +02:00
|
|
|
if (memcmp(&mirror->devid, &pos->devid, sizeof(pos->devid)) != 0)
|
2015-08-25 02:03:17 +02:00
|
|
|
continue;
|
|
|
|
if (!ff_mirror_match_fh(mirror, pos))
|
|
|
|
continue;
|
2017-10-20 11:53:34 +02:00
|
|
|
if (refcount_inc_not_zero(&pos->ref)) {
|
2015-08-25 02:03:17 +02:00
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
list_add(&mirror->mirrors, &ff_layout->mirrors);
|
|
|
|
mirror->layout = lo;
|
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
return mirror;
|
|
|
|
}
|
|
|
|
|
2015-08-25 05:19:25 +02:00
|
|
|
static void
|
2015-08-25 02:03:17 +02:00
|
|
|
ff_layout_remove_mirror(struct nfs4_ff_layout_mirror *mirror)
|
|
|
|
{
|
|
|
|
struct inode *inode;
|
|
|
|
if (mirror->layout == NULL)
|
|
|
|
return;
|
|
|
|
inode = mirror->layout->plh_inode;
|
|
|
|
spin_lock(&inode->i_lock);
|
|
|
|
list_del(&mirror->mirrors);
|
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
mirror->layout = NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-25 00:08:30 +02:00
|
|
|
static struct nfs4_ff_layout_mirror *ff_layout_alloc_mirror(gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
|
|
|
|
|
|
|
mirror = kzalloc(sizeof(*mirror), gfp_flags);
|
|
|
|
if (mirror != NULL) {
|
|
|
|
spin_lock_init(&mirror->lock);
|
2017-10-20 11:53:34 +02:00
|
|
|
refcount_set(&mirror->ref, 1);
|
2015-08-25 02:03:17 +02:00
|
|
|
INIT_LIST_HEAD(&mirror->mirrors);
|
2015-08-25 00:08:30 +02:00
|
|
|
}
|
|
|
|
return mirror;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_free_mirror(struct nfs4_ff_layout_mirror *mirror)
|
|
|
|
{
|
2018-12-03 01:30:31 +01:00
|
|
|
const struct cred *cred;
|
2016-04-22 02:52:00 +02:00
|
|
|
|
2015-08-25 02:03:17 +02:00
|
|
|
ff_layout_remove_mirror(mirror);
|
2015-08-25 00:08:30 +02:00
|
|
|
kfree(mirror->fh_versions);
|
2016-04-22 02:52:00 +02:00
|
|
|
cred = rcu_access_pointer(mirror->ro_cred);
|
2018-12-03 01:30:31 +01:00
|
|
|
put_cred(cred);
|
2016-04-22 02:52:00 +02:00
|
|
|
cred = rcu_access_pointer(mirror->rw_cred);
|
2018-12-03 01:30:31 +01:00
|
|
|
put_cred(cred);
|
2015-08-25 00:08:30 +02:00
|
|
|
nfs4_ff_layout_put_deviceid(mirror->mirror_ds);
|
|
|
|
kfree(mirror);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_put_mirror(struct nfs4_ff_layout_mirror *mirror)
|
|
|
|
{
|
2017-10-20 11:53:34 +02:00
|
|
|
if (mirror != NULL && refcount_dec_and_test(&mirror->ref))
|
2015-08-25 00:08:30 +02:00
|
|
|
ff_layout_free_mirror(mirror);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static void ff_layout_free_mirror_array(struct nfs4_ff_layout_segment *fls)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (fls->mirror_array) {
|
|
|
|
for (i = 0; i < fls->mirror_array_cnt; i++) {
|
|
|
|
/* normally mirror_ds is freed in
|
|
|
|
* .free_deviceid_node but we still do it here
|
|
|
|
* for .alloc_lseg error path */
|
2015-08-25 00:08:30 +02:00
|
|
|
ff_layout_put_mirror(fls->mirror_array[i]);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
kfree(fls->mirror_array);
|
|
|
|
fls->mirror_array = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ff_layout_check_layout(struct nfs4_layoutget_res *lgr)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
dprintk("--> %s\n", __func__);
|
|
|
|
|
|
|
|
/* FIXME: remove this check when layout segment support is added */
|
|
|
|
if (lgr->range.offset != 0 ||
|
|
|
|
lgr->range.length != NFS4_MAX_UINT64) {
|
|
|
|
dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
|
|
|
|
__func__);
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dprintk("--> %s returns %d\n", __func__, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _ff_layout_free_lseg(struct nfs4_ff_layout_segment *fls)
|
|
|
|
{
|
|
|
|
if (fls) {
|
|
|
|
ff_layout_free_mirror_array(fls);
|
|
|
|
kfree(fls);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-25 23:38:25 +02:00
|
|
|
static bool
|
|
|
|
ff_lseg_range_is_after(const struct pnfs_layout_range *l1,
|
|
|
|
const struct pnfs_layout_range *l2)
|
|
|
|
{
|
|
|
|
u64 end1, end2;
|
|
|
|
|
|
|
|
if (l1->iomode != l2->iomode)
|
|
|
|
return l1->iomode != IOMODE_READ;
|
|
|
|
end1 = pnfs_calc_offset_end(l1->offset, l1->length);
|
|
|
|
end2 = pnfs_calc_offset_end(l2->offset, l2->length);
|
|
|
|
if (end1 < l2->offset)
|
|
|
|
return false;
|
|
|
|
if (end2 < l1->offset)
|
|
|
|
return true;
|
|
|
|
return l2->offset <= l1->offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
ff_lseg_merge(struct pnfs_layout_segment *new,
|
|
|
|
struct pnfs_layout_segment *old)
|
|
|
|
{
|
|
|
|
u64 new_end, old_end;
|
|
|
|
|
2016-05-17 18:28:39 +02:00
|
|
|
if (test_bit(NFS_LSEG_LAYOUTRETURN, &old->pls_flags))
|
|
|
|
return false;
|
2015-08-25 23:38:25 +02:00
|
|
|
if (new->pls_range.iomode != old->pls_range.iomode)
|
|
|
|
return false;
|
|
|
|
old_end = pnfs_calc_offset_end(old->pls_range.offset,
|
|
|
|
old->pls_range.length);
|
|
|
|
if (old_end < new->pls_range.offset)
|
|
|
|
return false;
|
|
|
|
new_end = pnfs_calc_offset_end(new->pls_range.offset,
|
|
|
|
new->pls_range.length);
|
|
|
|
if (new_end < old->pls_range.offset)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Mergeable: copy info from 'old' to 'new' */
|
|
|
|
if (new_end < old_end)
|
|
|
|
new_end = old_end;
|
|
|
|
if (new->pls_range.offset < old->pls_range.offset)
|
|
|
|
new->pls_range.offset = old->pls_range.offset;
|
|
|
|
new->pls_range.length = pnfs_calc_offset_length(new->pls_range.offset,
|
|
|
|
new_end);
|
|
|
|
if (test_bit(NFS_LSEG_ROC, &old->pls_flags))
|
|
|
|
set_bit(NFS_LSEG_ROC, &new->pls_flags);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_add_lseg(struct pnfs_layout_hdr *lo,
|
|
|
|
struct pnfs_layout_segment *lseg,
|
|
|
|
struct list_head *free_me)
|
|
|
|
{
|
|
|
|
pnfs_generic_layout_insert_lseg(lo, lseg,
|
|
|
|
ff_lseg_range_is_after,
|
|
|
|
ff_lseg_merge,
|
|
|
|
free_me);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static void ff_layout_sort_mirrors(struct nfs4_ff_layout_segment *fls)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < fls->mirror_array_cnt - 1; i++) {
|
|
|
|
for (j = i + 1; j < fls->mirror_array_cnt; j++)
|
|
|
|
if (fls->mirror_array[i]->efficiency <
|
2015-06-12 18:58:50 +02:00
|
|
|
fls->mirror_array[j]->efficiency)
|
|
|
|
swap(fls->mirror_array[i],
|
|
|
|
fls->mirror_array[j]);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct pnfs_layout_segment *
|
|
|
|
ff_layout_alloc_lseg(struct pnfs_layout_hdr *lh,
|
|
|
|
struct nfs4_layoutget_res *lgr,
|
|
|
|
gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_segment *ret;
|
|
|
|
struct nfs4_ff_layout_segment *fls = NULL;
|
|
|
|
struct xdr_stream stream;
|
|
|
|
struct xdr_buf buf;
|
|
|
|
struct page *scratch;
|
|
|
|
u64 stripe_unit;
|
|
|
|
u32 mirror_array_cnt;
|
|
|
|
__be32 *p;
|
|
|
|
int i, rc;
|
|
|
|
|
|
|
|
dprintk("--> %s\n", __func__);
|
|
|
|
scratch = alloc_page(gfp_flags);
|
|
|
|
if (!scratch)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages,
|
|
|
|
lgr->layoutp->len);
|
|
|
|
xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
|
|
|
|
|
|
|
|
/* stripe unit and mirror_array_cnt */
|
|
|
|
rc = -EIO;
|
|
|
|
p = xdr_inline_decode(&stream, 8 + 4);
|
|
|
|
if (!p)
|
|
|
|
goto out_err_free;
|
|
|
|
|
|
|
|
p = xdr_decode_hyper(p, &stripe_unit);
|
|
|
|
mirror_array_cnt = be32_to_cpup(p++);
|
|
|
|
dprintk("%s: stripe_unit=%llu mirror_array_cnt=%u\n", __func__,
|
|
|
|
stripe_unit, mirror_array_cnt);
|
|
|
|
|
|
|
|
if (mirror_array_cnt > NFS4_FLEXFILE_LAYOUT_MAX_MIRROR_CNT ||
|
|
|
|
mirror_array_cnt == 0)
|
|
|
|
goto out_err_free;
|
|
|
|
|
|
|
|
rc = -ENOMEM;
|
|
|
|
fls = kzalloc(sizeof(*fls), gfp_flags);
|
|
|
|
if (!fls)
|
|
|
|
goto out_err_free;
|
|
|
|
|
|
|
|
fls->mirror_array_cnt = mirror_array_cnt;
|
|
|
|
fls->stripe_unit = stripe_unit;
|
|
|
|
fls->mirror_array = kcalloc(fls->mirror_array_cnt,
|
|
|
|
sizeof(fls->mirror_array[0]), gfp_flags);
|
|
|
|
if (fls->mirror_array == NULL)
|
|
|
|
goto out_err_free;
|
|
|
|
|
|
|
|
for (i = 0; i < fls->mirror_array_cnt; i++) {
|
2015-08-25 02:03:17 +02:00
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
2018-12-03 01:30:30 +01:00
|
|
|
struct cred *kcred;
|
2019-02-26 17:56:12 +01:00
|
|
|
const struct cred __rcu *cred;
|
2018-12-03 01:30:30 +01:00
|
|
|
kuid_t uid;
|
|
|
|
kgid_t gid;
|
2016-04-22 02:51:59 +02:00
|
|
|
u32 ds_count, fh_count, id;
|
2014-12-11 23:02:04 +01:00
|
|
|
int j;
|
|
|
|
|
|
|
|
rc = -EIO;
|
|
|
|
p = xdr_inline_decode(&stream, 4);
|
|
|
|
if (!p)
|
|
|
|
goto out_err_free;
|
|
|
|
ds_count = be32_to_cpup(p);
|
|
|
|
|
|
|
|
/* FIXME: allow for striping? */
|
|
|
|
if (ds_count != 1)
|
|
|
|
goto out_err_free;
|
|
|
|
|
2015-08-25 00:08:30 +02:00
|
|
|
fls->mirror_array[i] = ff_layout_alloc_mirror(gfp_flags);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (fls->mirror_array[i] == NULL) {
|
|
|
|
rc = -ENOMEM;
|
|
|
|
goto out_err_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
fls->mirror_array[i]->ds_count = ds_count;
|
|
|
|
|
|
|
|
/* deviceid */
|
2016-09-30 20:37:41 +02:00
|
|
|
rc = decode_deviceid(&stream, &fls->mirror_array[i]->devid);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (rc)
|
|
|
|
goto out_err_free;
|
|
|
|
|
|
|
|
/* efficiency */
|
|
|
|
rc = -EIO;
|
|
|
|
p = xdr_inline_decode(&stream, 4);
|
|
|
|
if (!p)
|
|
|
|
goto out_err_free;
|
|
|
|
fls->mirror_array[i]->efficiency = be32_to_cpup(p);
|
|
|
|
|
|
|
|
/* stateid */
|
2016-05-16 23:42:43 +02:00
|
|
|
rc = decode_pnfs_stateid(&stream, &fls->mirror_array[i]->stateid);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (rc)
|
|
|
|
goto out_err_free;
|
|
|
|
|
|
|
|
/* fh */
|
2017-05-19 23:31:12 +02:00
|
|
|
rc = -EIO;
|
2014-12-11 23:02:04 +01:00
|
|
|
p = xdr_inline_decode(&stream, 4);
|
|
|
|
if (!p)
|
|
|
|
goto out_err_free;
|
|
|
|
fh_count = be32_to_cpup(p);
|
|
|
|
|
|
|
|
fls->mirror_array[i]->fh_versions =
|
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-12 23:03:40 +02:00
|
|
|
kcalloc(fh_count, sizeof(struct nfs_fh),
|
2014-12-11 23:02:04 +01:00
|
|
|
gfp_flags);
|
|
|
|
if (fls->mirror_array[i]->fh_versions == NULL) {
|
|
|
|
rc = -ENOMEM;
|
|
|
|
goto out_err_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < fh_count; j++) {
|
|
|
|
rc = decode_nfs_fh(&stream,
|
|
|
|
&fls->mirror_array[i]->fh_versions[j]);
|
|
|
|
if (rc)
|
|
|
|
goto out_err_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
fls->mirror_array[i]->fh_versions_cnt = fh_count;
|
|
|
|
|
|
|
|
/* user */
|
2016-04-22 02:51:59 +02:00
|
|
|
rc = decode_name(&stream, &id);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (rc)
|
|
|
|
goto out_err_free;
|
|
|
|
|
2018-12-03 01:30:30 +01:00
|
|
|
uid = make_kuid(&init_user_ns, id);
|
2016-04-22 02:51:59 +02:00
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
/* group */
|
2016-04-22 02:51:59 +02:00
|
|
|
rc = decode_name(&stream, &id);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (rc)
|
|
|
|
goto out_err_free;
|
|
|
|
|
2018-12-03 01:30:30 +01:00
|
|
|
gid = make_kgid(&init_user_ns, id);
|
2016-04-22 02:51:59 +02:00
|
|
|
|
2018-12-03 01:30:30 +01:00
|
|
|
if (gfp_flags & __GFP_FS)
|
|
|
|
kcred = prepare_kernel_cred(NULL);
|
|
|
|
else {
|
|
|
|
unsigned int nofs_flags = memalloc_nofs_save();
|
|
|
|
kcred = prepare_kernel_cred(NULL);
|
|
|
|
memalloc_nofs_restore(nofs_flags);
|
|
|
|
}
|
|
|
|
rc = -ENOMEM;
|
|
|
|
if (!kcred)
|
|
|
|
goto out_err_free;
|
2018-12-03 01:30:30 +01:00
|
|
|
kcred->fsuid = uid;
|
|
|
|
kcred->fsgid = gid;
|
2019-02-26 17:56:12 +01:00
|
|
|
cred = RCU_INITIALIZER(kcred);
|
2016-04-22 02:51:59 +02:00
|
|
|
|
2016-04-22 02:52:00 +02:00
|
|
|
if (lgr->range.iomode == IOMODE_READ)
|
|
|
|
rcu_assign_pointer(fls->mirror_array[i]->ro_cred, cred);
|
|
|
|
else
|
|
|
|
rcu_assign_pointer(fls->mirror_array[i]->rw_cred, cred);
|
2016-04-22 02:51:59 +02:00
|
|
|
|
2015-08-25 02:03:17 +02:00
|
|
|
mirror = ff_layout_add_mirror(lh, fls->mirror_array[i]);
|
|
|
|
if (mirror != fls->mirror_array[i]) {
|
2016-04-22 02:51:59 +02:00
|
|
|
/* swap cred ptrs so free_mirror will clean up old */
|
2016-04-22 02:52:00 +02:00
|
|
|
if (lgr->range.iomode == IOMODE_READ) {
|
|
|
|
cred = xchg(&mirror->ro_cred, cred);
|
|
|
|
rcu_assign_pointer(fls->mirror_array[i]->ro_cred, cred);
|
|
|
|
} else {
|
|
|
|
cred = xchg(&mirror->rw_cred, cred);
|
|
|
|
rcu_assign_pointer(fls->mirror_array[i]->rw_cred, cred);
|
|
|
|
}
|
2015-08-25 02:03:17 +02:00
|
|
|
ff_layout_free_mirror(fls->mirror_array[i]);
|
|
|
|
fls->mirror_array[i] = mirror;
|
|
|
|
}
|
|
|
|
|
2016-04-22 02:52:00 +02:00
|
|
|
dprintk("%s: iomode %s uid %u gid %u\n", __func__,
|
|
|
|
lgr->range.iomode == IOMODE_READ ? "READ" : "RW",
|
2018-12-03 01:30:30 +01:00
|
|
|
from_kuid(&init_user_ns, uid),
|
|
|
|
from_kgid(&init_user_ns, gid));
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
2015-06-26 20:51:32 +02:00
|
|
|
p = xdr_inline_decode(&stream, 4);
|
2015-11-16 17:26:07 +01:00
|
|
|
if (!p)
|
|
|
|
goto out_sort_mirrors;
|
|
|
|
fls->flags = be32_to_cpup(p);
|
|
|
|
|
|
|
|
p = xdr_inline_decode(&stream, 4);
|
|
|
|
if (!p)
|
|
|
|
goto out_sort_mirrors;
|
|
|
|
for (i=0; i < fls->mirror_array_cnt; i++)
|
|
|
|
fls->mirror_array[i]->report_interval = be32_to_cpup(p);
|
2015-06-26 20:51:32 +02:00
|
|
|
|
2015-11-16 17:26:07 +01:00
|
|
|
out_sort_mirrors:
|
2014-12-11 23:02:04 +01:00
|
|
|
ff_layout_sort_mirrors(fls);
|
|
|
|
rc = ff_layout_check_layout(lgr);
|
|
|
|
if (rc)
|
|
|
|
goto out_err_free;
|
|
|
|
ret = &fls->generic_hdr;
|
|
|
|
dprintk("<-- %s (success)\n", __func__);
|
|
|
|
out_free_page:
|
|
|
|
__free_page(scratch);
|
|
|
|
return ret;
|
|
|
|
out_err_free:
|
|
|
|
_ff_layout_free_lseg(fls);
|
|
|
|
ret = ERR_PTR(rc);
|
|
|
|
dprintk("<-- %s (%d)\n", __func__, rc);
|
|
|
|
goto out_free_page;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool ff_layout_has_rw_segments(struct pnfs_layout_hdr *layout)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_segment *lseg;
|
|
|
|
|
|
|
|
list_for_each_entry(lseg, &layout->plh_segs, pls_list)
|
|
|
|
if (lseg->pls_range.iomode == IOMODE_RW)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_free_lseg(struct pnfs_layout_segment *lseg)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_segment *fls = FF_LAYOUT_LSEG(lseg);
|
|
|
|
|
|
|
|
dprintk("--> %s\n", __func__);
|
|
|
|
|
|
|
|
if (lseg->pls_range.iomode == IOMODE_RW) {
|
|
|
|
struct nfs4_flexfile_layout *ffl;
|
|
|
|
struct inode *inode;
|
|
|
|
|
|
|
|
ffl = FF_LAYOUT_FROM_HDR(lseg->pls_layout);
|
|
|
|
inode = ffl->generic_hdr.plh_inode;
|
|
|
|
spin_lock(&inode->i_lock);
|
|
|
|
if (!ff_layout_has_rw_segments(lseg->pls_layout)) {
|
|
|
|
ffl->commit_info.nbuckets = 0;
|
|
|
|
kfree(ffl->commit_info.buckets);
|
|
|
|
ffl->commit_info.buckets = NULL;
|
|
|
|
}
|
|
|
|
spin_unlock(&inode->i_lock);
|
|
|
|
}
|
|
|
|
_ff_layout_free_lseg(fls);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return 1 until we have multiple lsegs support */
|
|
|
|
static int
|
|
|
|
ff_layout_get_lseg_count(struct nfs4_ff_layout_segment *fls)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:51:59 +02:00
|
|
|
static void
|
2015-08-20 20:12:51 +02:00
|
|
|
nfs4_ff_start_busy_timer(struct nfs4_ff_busy_timer *timer, ktime_t now)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
2015-06-26 03:45:49 +02:00
|
|
|
/* first IO request? */
|
|
|
|
if (atomic_inc_return(&timer->n_ops) == 1) {
|
2015-08-20 20:12:51 +02:00
|
|
|
timer->start_time = now;
|
2015-06-23 13:51:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static ktime_t
|
2015-08-20 20:12:51 +02:00
|
|
|
nfs4_ff_end_busy_timer(struct nfs4_ff_busy_timer *timer, ktime_t now)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
2015-08-20 20:12:51 +02:00
|
|
|
ktime_t start;
|
2015-06-23 13:51:59 +02:00
|
|
|
|
2015-06-26 03:45:49 +02:00
|
|
|
if (atomic_dec_return(&timer->n_ops) < 0)
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
|
|
|
|
start = timer->start_time;
|
|
|
|
timer->start_time = now;
|
2015-06-23 13:51:59 +02:00
|
|
|
return ktime_sub(now, start);
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:52:04 +02:00
|
|
|
static bool
|
2015-06-23 13:52:00 +02:00
|
|
|
nfs4_ff_layoutstat_start_io(struct nfs4_ff_layout_mirror *mirror,
|
2015-08-20 20:12:51 +02:00
|
|
|
struct nfs4_ff_layoutstat *layoutstat,
|
|
|
|
ktime_t now)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
2015-08-25 02:39:18 +02:00
|
|
|
s64 report_interval = FF_LAYOUTSTATS_REPORT_INTERVAL;
|
2016-08-14 18:47:49 +02:00
|
|
|
struct nfs4_flexfile_layout *ffl = FF_LAYOUT_FROM_HDR(mirror->layout);
|
2015-06-23 13:52:00 +02:00
|
|
|
|
2015-08-20 20:12:51 +02:00
|
|
|
nfs4_ff_start_busy_timer(&layoutstat->busy_timer, now);
|
2016-12-25 12:43:07 +01:00
|
|
|
if (!mirror->start_time)
|
2015-06-26 03:45:49 +02:00
|
|
|
mirror->start_time = now;
|
2015-11-16 17:26:07 +01:00
|
|
|
if (mirror->report_interval != 0)
|
|
|
|
report_interval = (s64)mirror->report_interval * 1000LL;
|
|
|
|
else if (layoutstats_timer != 0)
|
2015-08-25 02:39:18 +02:00
|
|
|
report_interval = (s64)layoutstats_timer * 1000LL;
|
2016-08-14 18:47:49 +02:00
|
|
|
if (ktime_to_ms(ktime_sub(now, ffl->last_report_time)) >=
|
2015-08-25 02:39:18 +02:00
|
|
|
report_interval) {
|
2016-08-14 18:47:49 +02:00
|
|
|
ffl->last_report_time = now;
|
2015-06-23 13:52:04 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2015-06-23 13:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nfs4_ff_layout_stat_io_update_requested(struct nfs4_ff_layoutstat *layoutstat,
|
|
|
|
__u64 requested)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_io_stat *iostat = &layoutstat->io_stat;
|
|
|
|
|
|
|
|
iostat->ops_requested++;
|
|
|
|
iostat->bytes_requested += requested;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nfs4_ff_layout_stat_io_update_completed(struct nfs4_ff_layoutstat *layoutstat,
|
|
|
|
__u64 requested,
|
|
|
|
__u64 completed,
|
2015-08-20 20:12:51 +02:00
|
|
|
ktime_t time_completed,
|
|
|
|
ktime_t time_started)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
|
|
|
struct nfs4_ff_io_stat *iostat = &layoutstat->io_stat;
|
2015-08-20 20:12:51 +02:00
|
|
|
ktime_t completion_time = ktime_sub(time_completed, time_started);
|
2015-06-23 13:51:59 +02:00
|
|
|
ktime_t timer;
|
|
|
|
|
|
|
|
iostat->ops_completed++;
|
|
|
|
iostat->bytes_completed += completed;
|
|
|
|
iostat->bytes_not_delivered += requested - completed;
|
|
|
|
|
2015-08-20 20:12:51 +02:00
|
|
|
timer = nfs4_ff_end_busy_timer(&layoutstat->busy_timer, time_completed);
|
2015-06-23 13:51:59 +02:00
|
|
|
iostat->total_busy_time =
|
|
|
|
ktime_add(iostat->total_busy_time, timer);
|
|
|
|
iostat->aggregate_completion_time =
|
2015-08-20 20:12:51 +02:00
|
|
|
ktime_add(iostat->aggregate_completion_time,
|
|
|
|
completion_time);
|
2015-06-23 13:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-08-25 00:22:28 +02:00
|
|
|
nfs4_ff_layout_stat_io_start_read(struct inode *inode,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror,
|
2015-08-20 20:12:51 +02:00
|
|
|
__u64 requested, ktime_t now)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
2015-06-23 13:52:04 +02:00
|
|
|
bool report;
|
|
|
|
|
2015-06-23 13:51:59 +02:00
|
|
|
spin_lock(&mirror->lock);
|
2015-08-20 20:12:51 +02:00
|
|
|
report = nfs4_ff_layoutstat_start_io(mirror, &mirror->read_stat, now);
|
2015-06-23 13:51:59 +02:00
|
|
|
nfs4_ff_layout_stat_io_update_requested(&mirror->read_stat, requested);
|
2016-11-25 19:17:15 +01:00
|
|
|
set_bit(NFS4_FF_MIRROR_STAT_AVAIL, &mirror->flags);
|
2015-06-23 13:51:59 +02:00
|
|
|
spin_unlock(&mirror->lock);
|
2015-06-23 13:52:04 +02:00
|
|
|
|
|
|
|
if (report)
|
2015-08-25 00:22:28 +02:00
|
|
|
pnfs_report_layoutstat(inode, GFP_KERNEL);
|
2015-06-23 13:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nfs4_ff_layout_stat_io_end_read(struct rpc_task *task,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror,
|
|
|
|
__u64 requested,
|
|
|
|
__u64 completed)
|
|
|
|
{
|
|
|
|
spin_lock(&mirror->lock);
|
|
|
|
nfs4_ff_layout_stat_io_update_completed(&mirror->read_stat,
|
|
|
|
requested, completed,
|
2015-08-20 20:12:51 +02:00
|
|
|
ktime_get(), task->tk_start);
|
2016-11-25 19:17:15 +01:00
|
|
|
set_bit(NFS4_FF_MIRROR_STAT_AVAIL, &mirror->flags);
|
2015-06-23 13:51:59 +02:00
|
|
|
spin_unlock(&mirror->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-08-25 00:22:28 +02:00
|
|
|
nfs4_ff_layout_stat_io_start_write(struct inode *inode,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror,
|
2015-08-20 20:12:51 +02:00
|
|
|
__u64 requested, ktime_t now)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
2015-06-23 13:52:04 +02:00
|
|
|
bool report;
|
|
|
|
|
2015-06-23 13:51:59 +02:00
|
|
|
spin_lock(&mirror->lock);
|
2015-08-20 20:12:51 +02:00
|
|
|
report = nfs4_ff_layoutstat_start_io(mirror , &mirror->write_stat, now);
|
2015-06-23 13:51:59 +02:00
|
|
|
nfs4_ff_layout_stat_io_update_requested(&mirror->write_stat, requested);
|
2016-11-25 19:17:15 +01:00
|
|
|
set_bit(NFS4_FF_MIRROR_STAT_AVAIL, &mirror->flags);
|
2015-06-23 13:51:59 +02:00
|
|
|
spin_unlock(&mirror->lock);
|
2015-06-23 13:52:04 +02:00
|
|
|
|
|
|
|
if (report)
|
2015-08-25 00:22:28 +02:00
|
|
|
pnfs_report_layoutstat(inode, GFP_NOIO);
|
2015-06-23 13:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nfs4_ff_layout_stat_io_end_write(struct rpc_task *task,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror,
|
|
|
|
__u64 requested,
|
|
|
|
__u64 completed,
|
|
|
|
enum nfs3_stable_how committed)
|
|
|
|
{
|
|
|
|
if (committed == NFS_UNSTABLE)
|
|
|
|
requested = completed = 0;
|
|
|
|
|
|
|
|
spin_lock(&mirror->lock);
|
|
|
|
nfs4_ff_layout_stat_io_update_completed(&mirror->write_stat,
|
2015-08-20 20:12:51 +02:00
|
|
|
requested, completed, ktime_get(), task->tk_start);
|
2016-11-25 19:17:15 +01:00
|
|
|
set_bit(NFS4_FF_MIRROR_STAT_AVAIL, &mirror->flags);
|
2015-06-23 13:51:59 +02:00
|
|
|
spin_unlock(&mirror->lock);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static int
|
|
|
|
ff_layout_alloc_commit_info(struct pnfs_layout_segment *lseg,
|
|
|
|
struct nfs_commit_info *cinfo,
|
|
|
|
gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_segment *fls = FF_LAYOUT_LSEG(lseg);
|
|
|
|
struct pnfs_commit_bucket *buckets;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
if (cinfo->ds->nbuckets != 0) {
|
|
|
|
/* This assumes there is only one RW lseg per file.
|
|
|
|
* To support multiple lseg per file, we need to
|
|
|
|
* change struct pnfs_commit_bucket to allow dynamic
|
|
|
|
* increasing nbuckets.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = ff_layout_get_lseg_count(fls) * FF_LAYOUT_MIRROR_COUNT(lseg);
|
|
|
|
|
|
|
|
buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
|
|
|
|
gfp_flags);
|
|
|
|
if (!buckets)
|
|
|
|
return -ENOMEM;
|
|
|
|
else {
|
|
|
|
int i;
|
|
|
|
|
2016-04-01 19:45:09 +02:00
|
|
|
spin_lock(&cinfo->inode->i_lock);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (cinfo->ds->nbuckets != 0)
|
|
|
|
kfree(buckets);
|
|
|
|
else {
|
|
|
|
cinfo->ds->buckets = buckets;
|
|
|
|
cinfo->ds->nbuckets = size;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
INIT_LIST_HEAD(&buckets[i].written);
|
|
|
|
INIT_LIST_HEAD(&buckets[i].committing);
|
|
|
|
/* mark direct verifier as unset */
|
|
|
|
buckets[i].direct_verf.committed =
|
|
|
|
NFS_INVALID_STABLE_HOW;
|
|
|
|
}
|
|
|
|
}
|
2016-04-01 19:45:09 +02:00
|
|
|
spin_unlock(&cinfo->inode->i_lock);
|
2014-12-11 23:02:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-14 23:32:40 +01:00
|
|
|
static void
|
|
|
|
ff_layout_mark_ds_unreachable(struct pnfs_layout_segment *lseg, int idx)
|
|
|
|
{
|
|
|
|
struct nfs4_deviceid_node *devid = FF_LAYOUT_DEVID_NODE(lseg, idx);
|
|
|
|
|
|
|
|
if (devid)
|
|
|
|
nfs4_mark_deviceid_unavailable(devid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_mark_ds_reachable(struct pnfs_layout_segment *lseg, int idx)
|
|
|
|
{
|
|
|
|
struct nfs4_deviceid_node *devid = FF_LAYOUT_DEVID_NODE(lseg, idx);
|
|
|
|
|
|
|
|
if (devid)
|
|
|
|
nfs4_mark_deviceid_available(devid);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static struct nfs4_pnfs_ds *
|
2019-02-14 23:32:40 +01:00
|
|
|
ff_layout_choose_ds_for_read(struct pnfs_layout_segment *lseg,
|
|
|
|
int start_idx, int *best_idx,
|
|
|
|
bool check_device)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
2015-11-02 16:11:17 +01:00
|
|
|
struct nfs4_ff_layout_segment *fls = FF_LAYOUT_LSEG(lseg);
|
2019-02-14 19:45:45 +01:00
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
2014-12-11 23:02:04 +01:00
|
|
|
struct nfs4_pnfs_ds *ds;
|
2016-08-29 21:12:54 +02:00
|
|
|
bool fail_return = false;
|
2014-12-11 23:02:04 +01:00
|
|
|
int idx;
|
|
|
|
|
2019-02-14 23:32:40 +01:00
|
|
|
/* mirrors are initially sorted by efficiency */
|
2015-11-02 16:11:17 +01:00
|
|
|
for (idx = start_idx; idx < fls->mirror_array_cnt; idx++) {
|
2016-08-29 21:12:54 +02:00
|
|
|
if (idx+1 == fls->mirror_array_cnt)
|
2019-02-14 23:32:40 +01:00
|
|
|
fail_return = !check_device;
|
2019-02-14 19:45:45 +01:00
|
|
|
|
|
|
|
mirror = FF_LAYOUT_COMP(lseg, idx);
|
2019-02-14 23:32:40 +01:00
|
|
|
ds = nfs4_ff_layout_prepare_ds(lseg, mirror, fail_return);
|
|
|
|
if (!ds)
|
2019-02-14 19:45:45 +01:00
|
|
|
continue;
|
|
|
|
|
2019-02-14 23:32:40 +01:00
|
|
|
if (check_device &&
|
|
|
|
nfs4_test_deviceid_unavailable(&mirror->mirror_ds->id_node))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*best_idx = idx;
|
|
|
|
return ds;
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-02-14 23:32:40 +01:00
|
|
|
static struct nfs4_pnfs_ds *
|
|
|
|
ff_layout_choose_any_ds_for_read(struct pnfs_layout_segment *lseg,
|
|
|
|
int start_idx, int *best_idx)
|
|
|
|
{
|
|
|
|
return ff_layout_choose_ds_for_read(lseg, start_idx, best_idx, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nfs4_pnfs_ds *
|
|
|
|
ff_layout_choose_valid_ds_for_read(struct pnfs_layout_segment *lseg,
|
|
|
|
int start_idx, int *best_idx)
|
|
|
|
{
|
|
|
|
return ff_layout_choose_ds_for_read(lseg, start_idx, best_idx, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nfs4_pnfs_ds *
|
|
|
|
ff_layout_choose_best_ds_for_read(struct pnfs_layout_segment *lseg,
|
|
|
|
int start_idx, int *best_idx)
|
|
|
|
{
|
|
|
|
struct nfs4_pnfs_ds *ds;
|
|
|
|
|
|
|
|
ds = ff_layout_choose_valid_ds_for_read(lseg, start_idx, best_idx);
|
|
|
|
if (ds)
|
|
|
|
return ds;
|
|
|
|
return ff_layout_choose_any_ds_for_read(lseg, start_idx, best_idx);
|
|
|
|
}
|
|
|
|
|
2016-05-25 16:31:14 +02:00
|
|
|
static void
|
|
|
|
ff_layout_pg_get_read(struct nfs_pageio_descriptor *pgio,
|
|
|
|
struct nfs_page *req,
|
|
|
|
bool strict_iomode)
|
|
|
|
{
|
|
|
|
pnfs_put_lseg(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
|
2019-04-07 19:59:11 +02:00
|
|
|
nfs_req_openctx(req),
|
2016-05-25 16:31:14 +02:00
|
|
|
0,
|
|
|
|
NFS4_MAX_UINT64,
|
|
|
|
IOMODE_READ,
|
|
|
|
strict_iomode,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (IS_ERR(pgio->pg_lseg)) {
|
|
|
|
pgio->pg_error = PTR_ERR(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static void
|
|
|
|
ff_layout_pg_init_read(struct nfs_pageio_descriptor *pgio,
|
|
|
|
struct nfs_page *req)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_mirror *pgm;
|
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
|
|
|
struct nfs4_pnfs_ds *ds;
|
|
|
|
int ds_idx;
|
|
|
|
|
2016-08-29 21:12:54 +02:00
|
|
|
retry:
|
2017-04-25 16:56:19 +02:00
|
|
|
pnfs_generic_pg_check_layout(pgio);
|
2014-12-11 23:02:04 +01:00
|
|
|
/* Use full layout for now */
|
2018-08-21 16:25:33 +02:00
|
|
|
if (!pgio->pg_lseg) {
|
2016-05-25 16:31:14 +02:00
|
|
|
ff_layout_pg_get_read(pgio, req, false);
|
2018-08-21 16:25:33 +02:00
|
|
|
if (!pgio->pg_lseg)
|
|
|
|
goto out_nolseg;
|
|
|
|
}
|
|
|
|
if (ff_layout_avoid_read_on_rw(pgio->pg_lseg)) {
|
2016-05-25 16:31:14 +02:00
|
|
|
ff_layout_pg_get_read(pgio, req, true);
|
2018-08-21 16:25:33 +02:00
|
|
|
if (!pgio->pg_lseg)
|
|
|
|
goto out_nolseg;
|
|
|
|
}
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2015-11-02 16:11:17 +01:00
|
|
|
ds = ff_layout_choose_best_ds_for_read(pgio->pg_lseg, 0, &ds_idx);
|
2016-05-17 18:28:38 +02:00
|
|
|
if (!ds) {
|
2016-08-29 21:12:54 +02:00
|
|
|
if (!ff_layout_no_fallback_to_mds(pgio->pg_lseg))
|
2016-05-17 18:28:38 +02:00
|
|
|
goto out_mds;
|
2016-08-29 21:12:54 +02:00
|
|
|
pnfs_put_lseg(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
|
|
|
/* Sleep for 1 second before retrying */
|
|
|
|
ssleep(1);
|
|
|
|
goto retry;
|
2016-05-17 18:28:38 +02:00
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
mirror = FF_LAYOUT_COMP(pgio->pg_lseg, ds_idx);
|
|
|
|
|
|
|
|
pgio->pg_mirror_idx = ds_idx;
|
|
|
|
|
|
|
|
/* read always uses only one mirror - idx 0 for pgio layer */
|
|
|
|
pgm = &pgio->pg_mirrors[0];
|
|
|
|
pgm->pg_bsize = mirror->mirror_ds->ds_versions[0].rsize;
|
|
|
|
|
2019-08-23 14:37:50 +02:00
|
|
|
if (NFS_SERVER(pgio->pg_inode)->flags &
|
|
|
|
(NFS_MOUNT_SOFT|NFS_MOUNT_SOFTERR))
|
|
|
|
pgio->pg_maxretrans = io_maxretrans;
|
2014-12-11 23:02:04 +01:00
|
|
|
return;
|
2018-08-21 16:25:33 +02:00
|
|
|
out_nolseg:
|
|
|
|
if (pgio->pg_error < 0)
|
|
|
|
return;
|
2014-12-11 23:02:04 +01:00
|
|
|
out_mds:
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_pg_init_read(pgio->pg_inode,
|
|
|
|
0, NFS4_MAX_UINT64, IOMODE_READ,
|
|
|
|
NFS_I(pgio->pg_inode)->layout,
|
|
|
|
pgio->pg_lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
pnfs_put_lseg(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
2019-08-23 14:37:50 +02:00
|
|
|
pgio->pg_maxretrans = 0;
|
2014-12-11 23:02:04 +01:00
|
|
|
nfs_pageio_reset_read_mds(pgio);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_pg_init_write(struct nfs_pageio_descriptor *pgio,
|
|
|
|
struct nfs_page *req)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
|
|
|
struct nfs_pgio_mirror *pgm;
|
|
|
|
struct nfs_commit_info cinfo;
|
|
|
|
struct nfs4_pnfs_ds *ds;
|
|
|
|
int i;
|
|
|
|
int status;
|
|
|
|
|
2016-08-29 21:12:54 +02:00
|
|
|
retry:
|
2017-04-25 16:56:19 +02:00
|
|
|
pnfs_generic_pg_check_layout(pgio);
|
2015-12-03 19:57:48 +01:00
|
|
|
if (!pgio->pg_lseg) {
|
2014-12-11 23:02:04 +01:00
|
|
|
pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
|
2019-04-07 19:59:11 +02:00
|
|
|
nfs_req_openctx(req),
|
2014-12-11 23:02:04 +01:00
|
|
|
0,
|
|
|
|
NFS4_MAX_UINT64,
|
|
|
|
IOMODE_RW,
|
2016-05-25 16:31:14 +02:00
|
|
|
false,
|
2014-12-11 23:02:04 +01:00
|
|
|
GFP_NOFS);
|
2015-12-03 19:57:48 +01:00
|
|
|
if (IS_ERR(pgio->pg_lseg)) {
|
|
|
|
pgio->pg_error = PTR_ERR(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-12-11 23:02:04 +01:00
|
|
|
/* If no lseg, fall back to write through mds */
|
|
|
|
if (pgio->pg_lseg == NULL)
|
|
|
|
goto out_mds;
|
|
|
|
|
|
|
|
nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
|
|
|
|
status = ff_layout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
|
|
|
|
if (status < 0)
|
|
|
|
goto out_mds;
|
|
|
|
|
|
|
|
/* Use a direct mapping of ds_idx to pgio mirror_idx */
|
2020-06-22 21:04:15 +02:00
|
|
|
if (pgio->pg_mirror_count != FF_LAYOUT_MIRROR_COUNT(pgio->pg_lseg))
|
|
|
|
goto out_eagain;
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
for (i = 0; i < pgio->pg_mirror_count; i++) {
|
2019-02-14 19:45:45 +01:00
|
|
|
mirror = FF_LAYOUT_COMP(pgio->pg_lseg, i);
|
|
|
|
ds = nfs4_ff_layout_prepare_ds(pgio->pg_lseg, mirror, true);
|
2016-05-17 18:28:38 +02:00
|
|
|
if (!ds) {
|
2016-08-29 21:12:54 +02:00
|
|
|
if (!ff_layout_no_fallback_to_mds(pgio->pg_lseg))
|
2016-05-17 18:28:38 +02:00
|
|
|
goto out_mds;
|
2016-08-29 21:12:54 +02:00
|
|
|
pnfs_put_lseg(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
|
|
|
/* Sleep for 1 second before retrying */
|
|
|
|
ssleep(1);
|
|
|
|
goto retry;
|
2016-05-17 18:28:38 +02:00
|
|
|
}
|
2014-12-11 23:02:04 +01:00
|
|
|
pgm = &pgio->pg_mirrors[i];
|
|
|
|
pgm->pg_bsize = mirror->mirror_ds->ds_versions[0].wsize;
|
|
|
|
}
|
|
|
|
|
2019-08-23 14:37:50 +02:00
|
|
|
if (NFS_SERVER(pgio->pg_inode)->flags &
|
|
|
|
(NFS_MOUNT_SOFT|NFS_MOUNT_SOFTERR))
|
|
|
|
pgio->pg_maxretrans = io_maxretrans;
|
2014-12-11 23:02:04 +01:00
|
|
|
return;
|
2020-06-22 21:04:15 +02:00
|
|
|
out_eagain:
|
|
|
|
pnfs_generic_pg_cleanup(pgio);
|
|
|
|
pgio->pg_error = -EAGAIN;
|
|
|
|
return;
|
2014-12-11 23:02:04 +01:00
|
|
|
out_mds:
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_pg_init_write(pgio->pg_inode,
|
|
|
|
0, NFS4_MAX_UINT64, IOMODE_RW,
|
|
|
|
NFS_I(pgio->pg_inode)->layout,
|
|
|
|
pgio->pg_lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
pnfs_put_lseg(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
2019-08-23 14:37:50 +02:00
|
|
|
pgio->pg_maxretrans = 0;
|
2014-12-11 23:02:04 +01:00
|
|
|
nfs_pageio_reset_write_mds(pgio);
|
2020-06-22 21:04:15 +02:00
|
|
|
pgio->pg_error = -EAGAIN;
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
ff_layout_pg_get_mirror_count_write(struct nfs_pageio_descriptor *pgio,
|
|
|
|
struct nfs_page *req)
|
|
|
|
{
|
2015-12-03 19:57:48 +01:00
|
|
|
if (!pgio->pg_lseg) {
|
2014-12-11 23:02:04 +01:00
|
|
|
pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
|
2019-04-07 19:59:11 +02:00
|
|
|
nfs_req_openctx(req),
|
2014-12-11 23:02:04 +01:00
|
|
|
0,
|
|
|
|
NFS4_MAX_UINT64,
|
|
|
|
IOMODE_RW,
|
2016-05-25 16:31:14 +02:00
|
|
|
false,
|
2014-12-11 23:02:04 +01:00
|
|
|
GFP_NOFS);
|
2015-12-03 19:57:48 +01:00
|
|
|
if (IS_ERR(pgio->pg_lseg)) {
|
|
|
|
pgio->pg_error = PTR_ERR(pgio->pg_lseg);
|
|
|
|
pgio->pg_lseg = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2014-12-11 23:02:04 +01:00
|
|
|
if (pgio->pg_lseg)
|
|
|
|
return FF_LAYOUT_MIRROR_COUNT(pgio->pg_lseg);
|
|
|
|
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_pg_get_mirror_count(pgio->pg_inode,
|
|
|
|
0, NFS4_MAX_UINT64, IOMODE_RW,
|
|
|
|
NFS_I(pgio->pg_inode)->layout,
|
|
|
|
pgio->pg_lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
/* no lseg means that pnfs is not in use, so no mirroring here */
|
|
|
|
nfs_pageio_reset_write_mds(pgio);
|
2015-12-03 19:57:48 +01:00
|
|
|
out:
|
2014-12-11 23:02:04 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct nfs_pageio_ops ff_layout_pg_read_ops = {
|
|
|
|
.pg_init = ff_layout_pg_init_read,
|
|
|
|
.pg_test = pnfs_generic_pg_test,
|
|
|
|
.pg_doio = pnfs_generic_pg_readpages,
|
|
|
|
.pg_cleanup = pnfs_generic_pg_cleanup,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct nfs_pageio_ops ff_layout_pg_write_ops = {
|
|
|
|
.pg_init = ff_layout_pg_init_write,
|
|
|
|
.pg_test = pnfs_generic_pg_test,
|
|
|
|
.pg_doio = pnfs_generic_pg_writepages,
|
|
|
|
.pg_get_mirror_count = ff_layout_pg_get_mirror_count_write,
|
|
|
|
.pg_cleanup = pnfs_generic_pg_cleanup,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ff_layout_reset_write(struct nfs_pgio_header *hdr, bool retry_pnfs)
|
|
|
|
{
|
|
|
|
struct rpc_task *task = &hdr->task;
|
|
|
|
|
|
|
|
pnfs_layoutcommit_inode(hdr->inode, false);
|
|
|
|
|
|
|
|
if (retry_pnfs) {
|
|
|
|
dprintk("%s Reset task %5u for i/o through pNFS "
|
|
|
|
"(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
|
|
|
|
hdr->task.tk_pid,
|
|
|
|
hdr->inode->i_sb->s_id,
|
|
|
|
(unsigned long long)NFS_FILEID(hdr->inode),
|
|
|
|
hdr->args.count,
|
|
|
|
(unsigned long long)hdr->args.offset);
|
|
|
|
|
2015-12-31 17:44:06 +01:00
|
|
|
hdr->completion_ops->reschedule_io(hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
|
|
|
|
dprintk("%s Reset task %5u for i/o through MDS "
|
|
|
|
"(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
|
|
|
|
hdr->task.tk_pid,
|
|
|
|
hdr->inode->i_sb->s_id,
|
|
|
|
(unsigned long long)NFS_FILEID(hdr->inode),
|
|
|
|
hdr->args.count,
|
|
|
|
(unsigned long long)hdr->args.offset);
|
|
|
|
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_write_done(hdr->inode,
|
|
|
|
hdr->args.offset, hdr->args.count,
|
|
|
|
IOMODE_RW, NFS_I(hdr->inode)->layout,
|
|
|
|
hdr->lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
task->tk_status = pnfs_write_done_resend_to_mds(hdr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_reset_read(struct nfs_pgio_header *hdr)
|
|
|
|
{
|
|
|
|
struct rpc_task *task = &hdr->task;
|
|
|
|
|
|
|
|
pnfs_layoutcommit_inode(hdr->inode, false);
|
|
|
|
|
|
|
|
if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
|
|
|
|
dprintk("%s Reset task %5u for i/o through MDS "
|
|
|
|
"(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
|
|
|
|
hdr->task.tk_pid,
|
|
|
|
hdr->inode->i_sb->s_id,
|
|
|
|
(unsigned long long)NFS_FILEID(hdr->inode),
|
|
|
|
hdr->args.count,
|
|
|
|
(unsigned long long)hdr->args.offset);
|
|
|
|
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_read_done(hdr->inode,
|
|
|
|
hdr->args.offset, hdr->args.count,
|
|
|
|
IOMODE_READ, NFS_I(hdr->inode)->layout,
|
|
|
|
hdr->lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
task->tk_status = pnfs_read_done_resend_to_mds(hdr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ff_layout_async_handle_error_v4(struct rpc_task *task,
|
|
|
|
struct nfs4_state *state,
|
|
|
|
struct nfs_client *clp,
|
|
|
|
struct pnfs_layout_segment *lseg,
|
|
|
|
int idx)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_hdr *lo = lseg->pls_layout;
|
|
|
|
struct inode *inode = lo->plh_inode;
|
|
|
|
struct nfs4_deviceid_node *devid = FF_LAYOUT_DEVID_NODE(lseg, idx);
|
|
|
|
struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
|
|
|
|
|
|
|
|
switch (task->tk_status) {
|
|
|
|
case -NFS4ERR_BADSESSION:
|
|
|
|
case -NFS4ERR_BADSLOT:
|
|
|
|
case -NFS4ERR_BAD_HIGH_SLOT:
|
|
|
|
case -NFS4ERR_DEADSESSION:
|
|
|
|
case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
|
|
|
|
case -NFS4ERR_SEQ_FALSE_RETRY:
|
|
|
|
case -NFS4ERR_SEQ_MISORDERED:
|
|
|
|
dprintk("%s ERROR %d, Reset session. Exchangeid "
|
|
|
|
"flags 0x%x\n", __func__, task->tk_status,
|
|
|
|
clp->cl_exchange_flags);
|
|
|
|
nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
|
|
|
|
break;
|
|
|
|
case -NFS4ERR_DELAY:
|
|
|
|
case -NFS4ERR_GRACE:
|
|
|
|
rpc_delay(task, FF_LAYOUT_POLL_RETRY_MAX);
|
|
|
|
break;
|
|
|
|
case -NFS4ERR_RETRY_UNCACHED_REP:
|
|
|
|
break;
|
|
|
|
/* Invalidate Layout errors */
|
|
|
|
case -NFS4ERR_PNFS_NO_LAYOUT:
|
|
|
|
case -ESTALE: /* mapped NFS4ERR_STALE */
|
|
|
|
case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
|
|
|
|
case -EISDIR: /* mapped NFS4ERR_ISDIR */
|
|
|
|
case -NFS4ERR_FHEXPIRED:
|
|
|
|
case -NFS4ERR_WRONG_TYPE:
|
|
|
|
dprintk("%s Invalid layout error %d\n", __func__,
|
|
|
|
task->tk_status);
|
|
|
|
/*
|
|
|
|
* Destroy layout so new i/o will get a new layout.
|
|
|
|
* Layout will not be destroyed until all current lseg
|
|
|
|
* references are put. Mark layout as invalid to resend failed
|
|
|
|
* i/o and all i/o waiting on the slot table to the MDS until
|
|
|
|
* layout is destroyed and a new valid layout is obtained.
|
|
|
|
*/
|
|
|
|
pnfs_destroy_layout(NFS_I(inode));
|
|
|
|
rpc_wake_up(&tbl->slot_tbl_waitq);
|
|
|
|
goto reset;
|
|
|
|
/* RPC connection errors */
|
|
|
|
case -ECONNREFUSED:
|
|
|
|
case -EHOSTDOWN:
|
|
|
|
case -EHOSTUNREACH:
|
|
|
|
case -ENETUNREACH:
|
|
|
|
case -EIO:
|
|
|
|
case -ETIMEDOUT:
|
|
|
|
case -EPIPE:
|
|
|
|
dprintk("%s DS connection error %d\n", __func__,
|
|
|
|
task->tk_status);
|
2016-12-14 22:31:55 +01:00
|
|
|
nfs4_delete_deviceid(devid->ld, devid->nfs_client,
|
|
|
|
&devid->deviceid);
|
2014-12-11 23:02:04 +01:00
|
|
|
rpc_wake_up(&tbl->slot_tbl_waitq);
|
|
|
|
/* fall through */
|
|
|
|
default:
|
2016-05-17 18:28:37 +02:00
|
|
|
if (ff_layout_avoid_mds_available_ds(lseg))
|
2014-12-11 23:02:04 +01:00
|
|
|
return -NFS4ERR_RESET_TO_PNFS;
|
|
|
|
reset:
|
|
|
|
dprintk("%s Retry through MDS. Error %d\n", __func__,
|
|
|
|
task->tk_status);
|
|
|
|
return -NFS4ERR_RESET_TO_MDS;
|
|
|
|
}
|
|
|
|
task->tk_status = 0;
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retry all errors through either pNFS or MDS except for -EJUKEBOX */
|
|
|
|
static int ff_layout_async_handle_error_v3(struct rpc_task *task,
|
|
|
|
struct pnfs_layout_segment *lseg,
|
|
|
|
int idx)
|
|
|
|
{
|
|
|
|
struct nfs4_deviceid_node *devid = FF_LAYOUT_DEVID_NODE(lseg, idx);
|
|
|
|
|
2015-08-30 18:53:06 +02:00
|
|
|
switch (task->tk_status) {
|
|
|
|
/* File access problems. Don't mark the device as unavailable */
|
|
|
|
case -EACCES:
|
|
|
|
case -ESTALE:
|
|
|
|
case -EISDIR:
|
|
|
|
case -EBADHANDLE:
|
|
|
|
case -ELOOP:
|
|
|
|
case -ENOSPC:
|
|
|
|
break;
|
|
|
|
case -EJUKEBOX:
|
|
|
|
nfs_inc_stats(lseg->pls_layout->plh_inode, NFSIOS_DELAY);
|
|
|
|
goto out_retry;
|
|
|
|
default:
|
2014-12-11 23:02:04 +01:00
|
|
|
dprintk("%s DS connection error %d\n", __func__,
|
|
|
|
task->tk_status);
|
2016-12-14 22:31:55 +01:00
|
|
|
nfs4_delete_deviceid(devid->ld, devid->nfs_client,
|
|
|
|
&devid->deviceid);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
2015-08-30 18:53:06 +02:00
|
|
|
/* FIXME: Need to prevent infinite looping here. */
|
|
|
|
return -NFS4ERR_RESET_TO_PNFS;
|
|
|
|
out_retry:
|
2014-12-11 23:02:04 +01:00
|
|
|
task->tk_status = 0;
|
2015-12-17 15:22:15 +01:00
|
|
|
rpc_restart_call_prepare(task);
|
2014-12-11 23:02:04 +01:00
|
|
|
rpc_delay(task, NFS_JUKEBOX_RETRY_TIME);
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ff_layout_async_handle_error(struct rpc_task *task,
|
|
|
|
struct nfs4_state *state,
|
|
|
|
struct nfs_client *clp,
|
|
|
|
struct pnfs_layout_segment *lseg,
|
|
|
|
int idx)
|
|
|
|
{
|
|
|
|
int vers = clp->cl_nfs_mod->rpc_vers->number;
|
|
|
|
|
2019-02-14 23:32:40 +01:00
|
|
|
if (task->tk_status >= 0) {
|
|
|
|
ff_layout_mark_ds_reachable(lseg, idx);
|
2017-02-18 01:49:09 +01:00
|
|
|
return 0;
|
2019-02-14 23:32:40 +01:00
|
|
|
}
|
2017-02-18 01:49:09 +01:00
|
|
|
|
|
|
|
/* Handle the case of an invalid layout segment */
|
|
|
|
if (!pnfs_is_valid_lseg(lseg))
|
|
|
|
return -NFS4ERR_RESET_TO_PNFS;
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
switch (vers) {
|
|
|
|
case 3:
|
|
|
|
return ff_layout_async_handle_error_v3(task, lseg, idx);
|
|
|
|
case 4:
|
|
|
|
return ff_layout_async_handle_error_v4(task, state, clp,
|
|
|
|
lseg, idx);
|
|
|
|
default:
|
|
|
|
/* should never happen */
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_io_track_ds_error(struct pnfs_layout_segment *lseg,
|
|
|
|
int idx, u64 offset, u64 length,
|
2015-08-21 00:59:49 +02:00
|
|
|
u32 status, int opnum, int error)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
|
|
|
int err;
|
|
|
|
|
2015-08-21 00:59:49 +02:00
|
|
|
if (status == 0) {
|
|
|
|
switch (error) {
|
|
|
|
case -ETIMEDOUT:
|
|
|
|
case -EPFNOSUPPORT:
|
|
|
|
case -EPROTONOSUPPORT:
|
|
|
|
case -EOPNOTSUPP:
|
|
|
|
case -ECONNREFUSED:
|
|
|
|
case -ECONNRESET:
|
|
|
|
case -EHOSTDOWN:
|
|
|
|
case -EHOSTUNREACH:
|
|
|
|
case -ENETUNREACH:
|
|
|
|
case -EADDRINUSE:
|
|
|
|
case -ENOBUFS:
|
|
|
|
case -EPIPE:
|
|
|
|
case -EPERM:
|
|
|
|
status = NFS4ERR_NXIO;
|
|
|
|
break;
|
|
|
|
case -EACCES:
|
|
|
|
status = NFS4ERR_ACCESS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-07 23:31:38 +01:00
|
|
|
switch (status) {
|
|
|
|
case NFS4ERR_DELAY:
|
|
|
|
case NFS4ERR_GRACE:
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
mirror = FF_LAYOUT_COMP(lseg, idx);
|
|
|
|
err = ff_layout_track_ds_error(FF_LAYOUT_FROM_HDR(lseg->pls_layout),
|
|
|
|
mirror, offset, length, status, opnum,
|
|
|
|
GFP_NOIO);
|
2019-02-14 23:32:40 +01:00
|
|
|
if (status == NFS4ERR_NXIO)
|
|
|
|
ff_layout_mark_ds_unreachable(lseg, idx);
|
2015-09-03 00:15:11 +02:00
|
|
|
pnfs_error_mark_layout_for_return(lseg->pls_layout->plh_inode, lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
dprintk("%s: err %d op %d status %u\n", __func__, err, opnum, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NFS_PROTO call done callback routines */
|
|
|
|
static int ff_layout_read_done_cb(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
|
|
|
{
|
2019-03-23 04:03:56 +01:00
|
|
|
int new_idx = hdr->pgio_mirror_idx;
|
2014-12-11 23:02:04 +01:00
|
|
|
int err;
|
|
|
|
|
|
|
|
trace_nfs4_pnfs_read(hdr, task->tk_status);
|
2015-08-21 00:59:49 +02:00
|
|
|
if (task->tk_status < 0)
|
2014-12-11 23:02:04 +01:00
|
|
|
ff_layout_io_track_ds_error(hdr->lseg, hdr->pgio_mirror_idx,
|
|
|
|
hdr->args.offset, hdr->args.count,
|
2015-08-21 00:59:49 +02:00
|
|
|
hdr->res.op_status, OP_READ,
|
|
|
|
task->tk_status);
|
2014-12-11 23:02:04 +01:00
|
|
|
err = ff_layout_async_handle_error(task, hdr->args.context->state,
|
|
|
|
hdr->ds_clp, hdr->lseg,
|
|
|
|
hdr->pgio_mirror_idx);
|
|
|
|
|
2018-06-19 01:07:24 +02:00
|
|
|
clear_bit(NFS_IOHDR_RESEND_PNFS, &hdr->flags);
|
|
|
|
clear_bit(NFS_IOHDR_RESEND_MDS, &hdr->flags);
|
2014-12-11 23:02:04 +01:00
|
|
|
switch (err) {
|
|
|
|
case -NFS4ERR_RESET_TO_PNFS:
|
2015-11-02 16:11:17 +01:00
|
|
|
if (ff_layout_choose_best_ds_for_read(hdr->lseg,
|
|
|
|
hdr->pgio_mirror_idx + 1,
|
2019-03-23 04:03:56 +01:00
|
|
|
&new_idx))
|
2019-02-11 04:38:43 +01:00
|
|
|
goto out_layouterror;
|
2018-06-19 01:07:24 +02:00
|
|
|
set_bit(NFS_IOHDR_RESEND_PNFS, &hdr->flags);
|
2014-12-11 23:02:04 +01:00
|
|
|
return task->tk_status;
|
|
|
|
case -NFS4ERR_RESET_TO_MDS:
|
2018-06-19 01:07:24 +02:00
|
|
|
set_bit(NFS_IOHDR_RESEND_MDS, &hdr->flags);
|
2014-12-11 23:02:04 +01:00
|
|
|
return task->tk_status;
|
|
|
|
case -EAGAIN:
|
2015-11-02 16:11:17 +01:00
|
|
|
goto out_eagain;
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2019-02-11 04:38:43 +01:00
|
|
|
out_layouterror:
|
2019-03-23 04:03:56 +01:00
|
|
|
ff_layout_read_record_layoutstats_done(task, hdr);
|
2019-02-11 04:38:43 +01:00
|
|
|
ff_layout_send_layouterror(hdr->lseg);
|
2019-03-23 04:03:56 +01:00
|
|
|
hdr->pgio_mirror_idx = new_idx;
|
2015-11-02 16:11:17 +01:00
|
|
|
out_eagain:
|
|
|
|
rpc_restart_call_prepare(task);
|
|
|
|
return -EAGAIN;
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
2015-06-26 20:51:32 +02:00
|
|
|
static bool
|
|
|
|
ff_layout_need_layoutcommit(struct pnfs_layout_segment *lseg)
|
|
|
|
{
|
|
|
|
return !(FF_LAYOUT_LSEG(lseg)->flags & FF_FLAGS_NO_LAYOUTCOMMIT);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
/*
|
|
|
|
* We reference the rpc_cred of the first WRITE that triggers the need for
|
|
|
|
* a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
|
|
|
|
* rfc5661 is not clear about which credential should be used.
|
|
|
|
*
|
|
|
|
* Flexlayout client should treat DS replied FILE_SYNC as DATA_SYNC, so
|
|
|
|
* to follow http://www.rfc-editor.org/errata_search.php?rfc=5661&eid=2751
|
|
|
|
* we always send layoutcommit after DS writes.
|
|
|
|
*/
|
|
|
|
static void
|
2016-06-26 22:14:40 +02:00
|
|
|
ff_layout_set_layoutcommit(struct inode *inode,
|
|
|
|
struct pnfs_layout_segment *lseg,
|
|
|
|
loff_t end_offset)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
2016-06-26 22:14:40 +02:00
|
|
|
if (!ff_layout_need_layoutcommit(lseg))
|
2015-06-26 20:51:32 +02:00
|
|
|
return;
|
|
|
|
|
2016-06-26 22:14:40 +02:00
|
|
|
pnfs_set_layoutcommit(inode, lseg, end_offset);
|
|
|
|
dprintk("%s inode %lu pls_end_pos %llu\n", __func__, inode->i_ino,
|
|
|
|
(unsigned long long) NFS_I(inode)->layout->plh_lwb);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
static void ff_layout_read_record_layoutstats_start(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
2015-12-22 18:30:24 +01:00
|
|
|
if (test_and_set_bit(NFS_IOHDR_STAT, &hdr->flags))
|
|
|
|
return;
|
2015-08-25 00:22:28 +02:00
|
|
|
nfs4_ff_layout_stat_io_start_read(hdr->inode,
|
2015-06-23 13:51:59 +02:00
|
|
|
FF_LAYOUT_COMP(hdr->lseg, hdr->pgio_mirror_idx),
|
2015-08-20 20:12:51 +02:00
|
|
|
hdr->args.count,
|
|
|
|
task->tk_start);
|
2015-12-22 18:30:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_read_record_layoutstats_done(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
|
|
|
{
|
|
|
|
if (!test_and_clear_bit(NFS_IOHDR_STAT, &hdr->flags))
|
|
|
|
return;
|
|
|
|
nfs4_ff_layout_stat_io_end_read(task,
|
|
|
|
FF_LAYOUT_COMP(hdr->lseg, hdr->pgio_mirror_idx),
|
|
|
|
hdr->args.count,
|
|
|
|
hdr->res.count);
|
2018-06-23 17:42:36 +02:00
|
|
|
set_bit(NFS_LSEG_LAYOUTRETURN, &hdr->lseg->pls_flags);
|
2015-12-22 18:30:24 +01:00
|
|
|
}
|
2015-06-23 13:51:59 +02:00
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
static int ff_layout_read_prepare_common(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
|
|
|
{
|
2014-12-11 23:02:04 +01:00
|
|
|
if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) {
|
|
|
|
rpc_exit(task, -EIO);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
ff_layout_read_record_layoutstats_start(task, hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call ops for the async read/write cases
|
|
|
|
* In the case of dense layouts, the offset needs to be reset to its
|
|
|
|
* original value.
|
|
|
|
*/
|
|
|
|
static void ff_layout_read_prepare_v3(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
|
|
|
if (ff_layout_read_prepare_common(task, hdr))
|
|
|
|
return;
|
|
|
|
|
|
|
|
rpc_call_start(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_read_prepare_v4(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
2017-01-09 22:51:52 +01:00
|
|
|
if (nfs4_setup_sequence(hdr->ds_clp,
|
|
|
|
&hdr->args.seq_args,
|
|
|
|
&hdr->res.seq_res,
|
|
|
|
task))
|
2014-12-11 23:02:04 +01:00
|
|
|
return;
|
|
|
|
|
2018-11-21 12:25:41 +01:00
|
|
|
ff_layout_read_prepare_common(task, hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_read_call_done(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
|
|
|
dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
|
|
|
|
|
|
|
|
if (test_bit(NFS_IOHDR_REDO, &hdr->flags) &&
|
|
|
|
task->tk_status == 0) {
|
|
|
|
nfs4_sequence_done(task, &hdr->res.seq_res);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note this may cause RPC to be resent */
|
|
|
|
hdr->mds_ops->rpc_call_done(task, hdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_read_count_stats(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
ff_layout_read_record_layoutstats_done(task, hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
rpc_count_iostats_metrics(task,
|
|
|
|
&NFS_CLIENT(hdr->inode)->cl_metrics[NFSPROC4_CLNT_READ]);
|
|
|
|
}
|
|
|
|
|
2015-12-22 21:32:00 +01:00
|
|
|
static void ff_layout_read_release(void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
|
|
|
ff_layout_read_record_layoutstats_done(&hdr->task, hdr);
|
2019-02-11 04:38:43 +01:00
|
|
|
if (test_bit(NFS_IOHDR_RESEND_PNFS, &hdr->flags)) {
|
|
|
|
ff_layout_send_layouterror(hdr->lseg);
|
2018-06-19 01:07:24 +02:00
|
|
|
pnfs_read_resend_pnfs(hdr);
|
2019-02-11 04:38:43 +01:00
|
|
|
} else if (test_bit(NFS_IOHDR_RESEND_MDS, &hdr->flags))
|
2018-06-19 01:07:24 +02:00
|
|
|
ff_layout_reset_read(hdr);
|
2015-12-22 21:32:00 +01:00
|
|
|
pnfs_generic_rw_release(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static int ff_layout_write_done_cb(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
|
|
|
{
|
2016-06-27 00:54:58 +02:00
|
|
|
loff_t end_offs = 0;
|
2014-12-11 23:02:04 +01:00
|
|
|
int err;
|
|
|
|
|
|
|
|
trace_nfs4_pnfs_write(hdr, task->tk_status);
|
2015-08-21 00:59:49 +02:00
|
|
|
if (task->tk_status < 0)
|
2014-12-11 23:02:04 +01:00
|
|
|
ff_layout_io_track_ds_error(hdr->lseg, hdr->pgio_mirror_idx,
|
|
|
|
hdr->args.offset, hdr->args.count,
|
2015-08-21 00:59:49 +02:00
|
|
|
hdr->res.op_status, OP_WRITE,
|
|
|
|
task->tk_status);
|
2014-12-11 23:02:04 +01:00
|
|
|
err = ff_layout_async_handle_error(task, hdr->args.context->state,
|
|
|
|
hdr->ds_clp, hdr->lseg,
|
|
|
|
hdr->pgio_mirror_idx);
|
|
|
|
|
2018-06-19 01:23:50 +02:00
|
|
|
clear_bit(NFS_IOHDR_RESEND_PNFS, &hdr->flags);
|
|
|
|
clear_bit(NFS_IOHDR_RESEND_MDS, &hdr->flags);
|
2014-12-11 23:02:04 +01:00
|
|
|
switch (err) {
|
|
|
|
case -NFS4ERR_RESET_TO_PNFS:
|
2018-06-19 01:23:50 +02:00
|
|
|
set_bit(NFS_IOHDR_RESEND_PNFS, &hdr->flags);
|
2015-09-03 00:22:48 +02:00
|
|
|
return task->tk_status;
|
2014-12-11 23:02:04 +01:00
|
|
|
case -NFS4ERR_RESET_TO_MDS:
|
2018-06-19 01:23:50 +02:00
|
|
|
set_bit(NFS_IOHDR_RESEND_MDS, &hdr->flags);
|
2014-12-11 23:02:04 +01:00
|
|
|
return task->tk_status;
|
|
|
|
case -EAGAIN:
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hdr->res.verf->committed == NFS_FILE_SYNC ||
|
|
|
|
hdr->res.verf->committed == NFS_DATA_SYNC)
|
2016-06-27 00:54:58 +02:00
|
|
|
end_offs = hdr->mds_offset + (loff_t)hdr->res.count;
|
|
|
|
|
|
|
|
/* Note: if the write is unstable, don't set end_offs until commit */
|
|
|
|
ff_layout_set_layoutcommit(hdr->inode, hdr->lseg, end_offs);
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2015-08-22 00:40:00 +02:00
|
|
|
/* zero out fattr since we don't care DS attr at all */
|
|
|
|
hdr->fattr.valid = 0;
|
2015-08-19 19:52:59 +02:00
|
|
|
if (task->tk_status >= 0)
|
|
|
|
nfs_writeback_update_inode(hdr);
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ff_layout_commit_done_cb(struct rpc_task *task,
|
|
|
|
struct nfs_commit_data *data)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
trace_nfs4_pnfs_commit_ds(data, task->tk_status);
|
2015-08-21 00:59:49 +02:00
|
|
|
if (task->tk_status < 0)
|
2014-12-11 23:02:04 +01:00
|
|
|
ff_layout_io_track_ds_error(data->lseg, data->ds_commit_index,
|
|
|
|
data->args.offset, data->args.count,
|
2015-08-21 00:59:49 +02:00
|
|
|
data->res.op_status, OP_COMMIT,
|
|
|
|
task->tk_status);
|
2014-12-11 23:02:04 +01:00
|
|
|
err = ff_layout_async_handle_error(task, NULL, data->ds_clp,
|
|
|
|
data->lseg, data->ds_commit_index);
|
|
|
|
|
|
|
|
switch (err) {
|
|
|
|
case -NFS4ERR_RESET_TO_PNFS:
|
2015-09-03 00:22:48 +02:00
|
|
|
pnfs_generic_prepare_to_resend_writes(data);
|
|
|
|
return -EAGAIN;
|
2014-12-11 23:02:04 +01:00
|
|
|
case -NFS4ERR_RESET_TO_MDS:
|
|
|
|
pnfs_generic_prepare_to_resend_writes(data);
|
|
|
|
return -EAGAIN;
|
|
|
|
case -EAGAIN:
|
|
|
|
rpc_restart_call_prepare(task);
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
2016-06-26 22:14:40 +02:00
|
|
|
ff_layout_set_layoutcommit(data->inode, data->lseg, data->lwb);
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
static void ff_layout_write_record_layoutstats_start(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
2015-12-22 18:30:24 +01:00
|
|
|
if (test_and_set_bit(NFS_IOHDR_STAT, &hdr->flags))
|
|
|
|
return;
|
2015-08-25 00:22:28 +02:00
|
|
|
nfs4_ff_layout_stat_io_start_write(hdr->inode,
|
2015-06-23 13:51:59 +02:00
|
|
|
FF_LAYOUT_COMP(hdr->lseg, hdr->pgio_mirror_idx),
|
2015-08-20 20:12:51 +02:00
|
|
|
hdr->args.count,
|
|
|
|
task->tk_start);
|
2015-12-22 18:30:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_write_record_layoutstats_done(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
|
|
|
{
|
|
|
|
if (!test_and_clear_bit(NFS_IOHDR_STAT, &hdr->flags))
|
|
|
|
return;
|
|
|
|
nfs4_ff_layout_stat_io_end_write(task,
|
|
|
|
FF_LAYOUT_COMP(hdr->lseg, hdr->pgio_mirror_idx),
|
|
|
|
hdr->args.count, hdr->res.count,
|
|
|
|
hdr->res.verf->committed);
|
2018-06-23 17:42:36 +02:00
|
|
|
set_bit(NFS_LSEG_LAYOUTRETURN, &hdr->lseg->pls_flags);
|
2015-12-22 18:30:24 +01:00
|
|
|
}
|
2015-06-23 13:51:59 +02:00
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
static int ff_layout_write_prepare_common(struct rpc_task *task,
|
|
|
|
struct nfs_pgio_header *hdr)
|
|
|
|
{
|
2014-12-11 23:02:04 +01:00
|
|
|
if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) {
|
|
|
|
rpc_exit(task, -EIO);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
ff_layout_write_record_layoutstats_start(task, hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_write_prepare_v3(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
|
|
|
if (ff_layout_write_prepare_common(task, hdr))
|
|
|
|
return;
|
|
|
|
|
|
|
|
rpc_call_start(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_write_prepare_v4(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
2017-01-09 22:51:52 +01:00
|
|
|
if (nfs4_setup_sequence(hdr->ds_clp,
|
|
|
|
&hdr->args.seq_args,
|
|
|
|
&hdr->res.seq_res,
|
|
|
|
task))
|
2014-12-11 23:02:04 +01:00
|
|
|
return;
|
|
|
|
|
2018-11-21 12:25:41 +01:00
|
|
|
ff_layout_write_prepare_common(task, hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_write_call_done(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
|
|
|
if (test_bit(NFS_IOHDR_REDO, &hdr->flags) &&
|
|
|
|
task->tk_status == 0) {
|
|
|
|
nfs4_sequence_done(task, &hdr->res.seq_res);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note this may cause RPC to be resent */
|
|
|
|
hdr->mds_ops->rpc_call_done(task, hdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_write_count_stats(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
ff_layout_write_record_layoutstats_done(task, hdr);
|
2014-12-11 23:02:04 +01:00
|
|
|
rpc_count_iostats_metrics(task,
|
|
|
|
&NFS_CLIENT(hdr->inode)->cl_metrics[NFSPROC4_CLNT_WRITE]);
|
|
|
|
}
|
|
|
|
|
2015-12-22 21:32:00 +01:00
|
|
|
static void ff_layout_write_release(void *data)
|
|
|
|
{
|
|
|
|
struct nfs_pgio_header *hdr = data;
|
|
|
|
|
|
|
|
ff_layout_write_record_layoutstats_done(&hdr->task, hdr);
|
2019-02-11 04:38:43 +01:00
|
|
|
if (test_bit(NFS_IOHDR_RESEND_PNFS, &hdr->flags)) {
|
|
|
|
ff_layout_send_layouterror(hdr->lseg);
|
2018-06-19 01:23:50 +02:00
|
|
|
ff_layout_reset_write(hdr, true);
|
2019-02-11 04:38:43 +01:00
|
|
|
} else if (test_bit(NFS_IOHDR_RESEND_MDS, &hdr->flags))
|
2018-06-19 01:23:50 +02:00
|
|
|
ff_layout_reset_write(hdr, false);
|
2015-12-22 21:32:00 +01:00
|
|
|
pnfs_generic_rw_release(data);
|
|
|
|
}
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
static void ff_layout_commit_record_layoutstats_start(struct rpc_task *task,
|
2015-06-23 13:51:59 +02:00
|
|
|
struct nfs_commit_data *cdata)
|
|
|
|
{
|
2015-12-22 18:30:24 +01:00
|
|
|
if (test_and_set_bit(NFS_IOHDR_STAT, &cdata->flags))
|
|
|
|
return;
|
2015-08-25 00:22:28 +02:00
|
|
|
nfs4_ff_layout_stat_io_start_write(cdata->inode,
|
2015-06-23 13:51:59 +02:00
|
|
|
FF_LAYOUT_COMP(cdata->lseg, cdata->ds_commit_index),
|
2015-08-20 20:12:51 +02:00
|
|
|
0, task->tk_start);
|
2015-06-23 13:51:59 +02:00
|
|
|
}
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
static void ff_layout_commit_record_layoutstats_done(struct rpc_task *task,
|
|
|
|
struct nfs_commit_data *cdata)
|
|
|
|
{
|
|
|
|
struct nfs_page *req;
|
|
|
|
__u64 count = 0;
|
|
|
|
|
|
|
|
if (!test_and_clear_bit(NFS_IOHDR_STAT, &cdata->flags))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (task->tk_status == 0) {
|
|
|
|
list_for_each_entry(req, &cdata->pages, wb_list)
|
|
|
|
count += req->wb_bytes;
|
|
|
|
}
|
|
|
|
nfs4_ff_layout_stat_io_end_write(task,
|
|
|
|
FF_LAYOUT_COMP(cdata->lseg, cdata->ds_commit_index),
|
|
|
|
count, count, NFS_FILE_SYNC);
|
2018-06-23 17:42:36 +02:00
|
|
|
set_bit(NFS_LSEG_LAYOUTRETURN, &cdata->lseg->pls_flags);
|
2015-12-22 18:30:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_commit_prepare_common(struct rpc_task *task,
|
|
|
|
struct nfs_commit_data *cdata)
|
|
|
|
{
|
|
|
|
ff_layout_commit_record_layoutstats_start(task, cdata);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static void ff_layout_commit_prepare_v3(struct rpc_task *task, void *data)
|
|
|
|
{
|
2015-06-23 13:51:59 +02:00
|
|
|
ff_layout_commit_prepare_common(task, data);
|
2014-12-11 23:02:04 +01:00
|
|
|
rpc_call_start(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_commit_prepare_v4(struct rpc_task *task, void *data)
|
|
|
|
{
|
|
|
|
struct nfs_commit_data *wdata = data;
|
|
|
|
|
2017-01-09 22:51:52 +01:00
|
|
|
if (nfs4_setup_sequence(wdata->ds_clp,
|
|
|
|
&wdata->args.seq_args,
|
|
|
|
&wdata->res.seq_res,
|
|
|
|
task))
|
2015-06-23 13:51:59 +02:00
|
|
|
return;
|
|
|
|
ff_layout_commit_prepare_common(task, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_commit_done(struct rpc_task *task, void *data)
|
2015-12-08 00:33:14 +01:00
|
|
|
{
|
|
|
|
pnfs_generic_write_commit_done(task, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ff_layout_commit_count_stats(struct rpc_task *task, void *data)
|
2015-06-23 13:51:59 +02:00
|
|
|
{
|
|
|
|
struct nfs_commit_data *cdata = data;
|
|
|
|
|
2015-12-22 18:30:24 +01:00
|
|
|
ff_layout_commit_record_layoutstats_done(task, cdata);
|
2014-12-11 23:02:04 +01:00
|
|
|
rpc_count_iostats_metrics(task,
|
|
|
|
&NFS_CLIENT(cdata->inode)->cl_metrics[NFSPROC4_CLNT_COMMIT]);
|
|
|
|
}
|
|
|
|
|
2015-12-22 21:32:00 +01:00
|
|
|
static void ff_layout_commit_release(void *data)
|
|
|
|
{
|
|
|
|
struct nfs_commit_data *cdata = data;
|
|
|
|
|
|
|
|
ff_layout_commit_record_layoutstats_done(&cdata->task, cdata);
|
|
|
|
pnfs_generic_commit_release(data);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static const struct rpc_call_ops ff_layout_read_call_ops_v3 = {
|
|
|
|
.rpc_call_prepare = ff_layout_read_prepare_v3,
|
|
|
|
.rpc_call_done = ff_layout_read_call_done,
|
|
|
|
.rpc_count_stats = ff_layout_read_count_stats,
|
2015-12-22 21:32:00 +01:00
|
|
|
.rpc_release = ff_layout_read_release,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rpc_call_ops ff_layout_read_call_ops_v4 = {
|
|
|
|
.rpc_call_prepare = ff_layout_read_prepare_v4,
|
|
|
|
.rpc_call_done = ff_layout_read_call_done,
|
|
|
|
.rpc_count_stats = ff_layout_read_count_stats,
|
2015-12-22 21:32:00 +01:00
|
|
|
.rpc_release = ff_layout_read_release,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rpc_call_ops ff_layout_write_call_ops_v3 = {
|
|
|
|
.rpc_call_prepare = ff_layout_write_prepare_v3,
|
|
|
|
.rpc_call_done = ff_layout_write_call_done,
|
|
|
|
.rpc_count_stats = ff_layout_write_count_stats,
|
2015-12-22 21:32:00 +01:00
|
|
|
.rpc_release = ff_layout_write_release,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rpc_call_ops ff_layout_write_call_ops_v4 = {
|
|
|
|
.rpc_call_prepare = ff_layout_write_prepare_v4,
|
|
|
|
.rpc_call_done = ff_layout_write_call_done,
|
|
|
|
.rpc_count_stats = ff_layout_write_count_stats,
|
2015-12-22 21:32:00 +01:00
|
|
|
.rpc_release = ff_layout_write_release,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rpc_call_ops ff_layout_commit_call_ops_v3 = {
|
|
|
|
.rpc_call_prepare = ff_layout_commit_prepare_v3,
|
2015-06-23 13:51:59 +02:00
|
|
|
.rpc_call_done = ff_layout_commit_done,
|
2014-12-11 23:02:04 +01:00
|
|
|
.rpc_count_stats = ff_layout_commit_count_stats,
|
2015-12-22 21:32:00 +01:00
|
|
|
.rpc_release = ff_layout_commit_release,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rpc_call_ops ff_layout_commit_call_ops_v4 = {
|
|
|
|
.rpc_call_prepare = ff_layout_commit_prepare_v4,
|
2015-06-23 13:51:59 +02:00
|
|
|
.rpc_call_done = ff_layout_commit_done,
|
2014-12-11 23:02:04 +01:00
|
|
|
.rpc_count_stats = ff_layout_commit_count_stats,
|
2015-12-22 21:32:00 +01:00
|
|
|
.rpc_release = ff_layout_commit_release,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static enum pnfs_try_status
|
|
|
|
ff_layout_read_pagelist(struct nfs_pgio_header *hdr)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_segment *lseg = hdr->lseg;
|
|
|
|
struct nfs4_pnfs_ds *ds;
|
|
|
|
struct rpc_clnt *ds_clnt;
|
2019-02-14 19:45:45 +01:00
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
2018-12-03 01:30:31 +01:00
|
|
|
const struct cred *ds_cred;
|
2014-12-11 23:02:04 +01:00
|
|
|
loff_t offset = hdr->args.offset;
|
|
|
|
u32 idx = hdr->pgio_mirror_idx;
|
|
|
|
int vers;
|
|
|
|
struct nfs_fh *fh;
|
|
|
|
|
2017-02-27 23:30:02 +01:00
|
|
|
dprintk("--> %s ino %lu pgbase %u req %zu@%llu\n",
|
2014-12-11 23:02:04 +01:00
|
|
|
__func__, hdr->inode->i_ino,
|
|
|
|
hdr->args.pgbase, (size_t)hdr->args.count, offset);
|
|
|
|
|
2019-02-14 19:45:45 +01:00
|
|
|
mirror = FF_LAYOUT_COMP(lseg, idx);
|
|
|
|
ds = nfs4_ff_layout_prepare_ds(lseg, mirror, false);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (!ds)
|
|
|
|
goto out_failed;
|
|
|
|
|
2019-02-28 16:38:41 +01:00
|
|
|
ds_clnt = nfs4_ff_find_or_create_ds_client(mirror, ds->ds_clp,
|
2014-12-11 23:02:04 +01:00
|
|
|
hdr->inode);
|
|
|
|
if (IS_ERR(ds_clnt))
|
|
|
|
goto out_failed;
|
|
|
|
|
2019-02-28 16:41:57 +01:00
|
|
|
ds_cred = ff_layout_get_ds_cred(mirror, &lseg->pls_range, hdr->cred);
|
2016-04-22 02:51:58 +02:00
|
|
|
if (!ds_cred)
|
2014-12-11 23:02:04 +01:00
|
|
|
goto out_failed;
|
|
|
|
|
2019-02-28 16:44:15 +01:00
|
|
|
vers = nfs4_ff_layout_ds_version(mirror);
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
dprintk("%s USE DS: %s cl_count %d vers %d\n", __func__,
|
2017-10-20 11:53:38 +02:00
|
|
|
ds->ds_remotestr, refcount_read(&ds->ds_clp->cl_count), vers);
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2016-05-17 18:28:36 +02:00
|
|
|
hdr->pgio_done_cb = ff_layout_read_done_cb;
|
2017-10-20 11:53:38 +02:00
|
|
|
refcount_inc(&ds->ds_clp->cl_count);
|
2014-12-11 23:02:04 +01:00
|
|
|
hdr->ds_clp = ds->ds_clp;
|
2019-02-28 16:34:13 +01:00
|
|
|
fh = nfs4_ff_layout_select_ds_fh(mirror);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (fh)
|
|
|
|
hdr->args.fh = fh;
|
2018-11-21 12:25:41 +01:00
|
|
|
|
2019-02-28 16:49:11 +01:00
|
|
|
nfs4_ff_layout_select_ds_stateid(mirror, &hdr->args.stateid);
|
2018-11-21 12:25:41 +01:00
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
/*
|
|
|
|
* Note that if we ever decide to split across DSes,
|
|
|
|
* then we may need to handle dense-like offsets.
|
|
|
|
*/
|
|
|
|
hdr->args.offset = offset;
|
|
|
|
hdr->mds_offset = offset;
|
|
|
|
|
|
|
|
/* Perform an asynchronous read to ds */
|
|
|
|
nfs_initiate_pgio(ds_clnt, hdr, ds_cred, ds->ds_clp->rpc_ops,
|
|
|
|
vers == 3 ? &ff_layout_read_call_ops_v3 :
|
|
|
|
&ff_layout_read_call_ops_v4,
|
|
|
|
0, RPC_TASK_SOFTCONN);
|
2018-12-03 01:30:31 +01:00
|
|
|
put_cred(ds_cred);
|
2014-12-11 23:02:04 +01:00
|
|
|
return PNFS_ATTEMPTED;
|
|
|
|
|
|
|
|
out_failed:
|
2016-05-17 18:28:37 +02:00
|
|
|
if (ff_layout_avoid_mds_available_ds(lseg))
|
2014-12-11 23:02:04 +01:00
|
|
|
return PNFS_TRY_AGAIN;
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_read_pagelist(hdr->inode,
|
|
|
|
hdr->args.offset, hdr->args.count,
|
|
|
|
IOMODE_READ, NFS_I(hdr->inode)->layout, lseg);
|
2014-12-11 23:02:04 +01:00
|
|
|
return PNFS_NOT_ATTEMPTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform async writes. */
|
|
|
|
static enum pnfs_try_status
|
|
|
|
ff_layout_write_pagelist(struct nfs_pgio_header *hdr, int sync)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_segment *lseg = hdr->lseg;
|
|
|
|
struct nfs4_pnfs_ds *ds;
|
|
|
|
struct rpc_clnt *ds_clnt;
|
2019-02-14 19:45:45 +01:00
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
2018-12-03 01:30:31 +01:00
|
|
|
const struct cred *ds_cred;
|
2014-12-11 23:02:04 +01:00
|
|
|
loff_t offset = hdr->args.offset;
|
|
|
|
int vers;
|
|
|
|
struct nfs_fh *fh;
|
|
|
|
int idx = hdr->pgio_mirror_idx;
|
|
|
|
|
2019-02-14 19:45:45 +01:00
|
|
|
mirror = FF_LAYOUT_COMP(lseg, idx);
|
|
|
|
ds = nfs4_ff_layout_prepare_ds(lseg, mirror, true);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (!ds)
|
2017-04-29 06:02:37 +02:00
|
|
|
goto out_failed;
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2019-02-28 16:38:41 +01:00
|
|
|
ds_clnt = nfs4_ff_find_or_create_ds_client(mirror, ds->ds_clp,
|
2014-12-11 23:02:04 +01:00
|
|
|
hdr->inode);
|
|
|
|
if (IS_ERR(ds_clnt))
|
2017-04-29 06:02:37 +02:00
|
|
|
goto out_failed;
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2019-02-28 16:41:57 +01:00
|
|
|
ds_cred = ff_layout_get_ds_cred(mirror, &lseg->pls_range, hdr->cred);
|
2016-04-22 02:51:58 +02:00
|
|
|
if (!ds_cred)
|
2017-04-29 06:02:37 +02:00
|
|
|
goto out_failed;
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2019-02-28 16:44:15 +01:00
|
|
|
vers = nfs4_ff_layout_ds_version(mirror);
|
2014-12-11 23:02:04 +01:00
|
|
|
|
2017-02-27 23:30:02 +01:00
|
|
|
dprintk("%s ino %lu sync %d req %zu@%llu DS: %s cl_count %d vers %d\n",
|
2014-12-11 23:02:04 +01:00
|
|
|
__func__, hdr->inode->i_ino, sync, (size_t) hdr->args.count,
|
2017-10-20 11:53:38 +02:00
|
|
|
offset, ds->ds_remotestr, refcount_read(&ds->ds_clp->cl_count),
|
2014-12-11 23:02:04 +01:00
|
|
|
vers);
|
|
|
|
|
|
|
|
hdr->pgio_done_cb = ff_layout_write_done_cb;
|
2017-10-20 11:53:38 +02:00
|
|
|
refcount_inc(&ds->ds_clp->cl_count);
|
2014-12-11 23:02:04 +01:00
|
|
|
hdr->ds_clp = ds->ds_clp;
|
|
|
|
hdr->ds_commit_idx = idx;
|
2019-02-28 16:34:13 +01:00
|
|
|
fh = nfs4_ff_layout_select_ds_fh(mirror);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (fh)
|
|
|
|
hdr->args.fh = fh;
|
|
|
|
|
2019-02-28 16:49:11 +01:00
|
|
|
nfs4_ff_layout_select_ds_stateid(mirror, &hdr->args.stateid);
|
2018-11-21 12:25:41 +01:00
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
/*
|
|
|
|
* Note that if we ever decide to split across DSes,
|
|
|
|
* then we may need to handle dense-like offsets.
|
|
|
|
*/
|
|
|
|
hdr->args.offset = offset;
|
|
|
|
|
|
|
|
/* Perform an asynchronous write */
|
|
|
|
nfs_initiate_pgio(ds_clnt, hdr, ds_cred, ds->ds_clp->rpc_ops,
|
|
|
|
vers == 3 ? &ff_layout_write_call_ops_v3 :
|
|
|
|
&ff_layout_write_call_ops_v4,
|
|
|
|
sync, RPC_TASK_SOFTCONN);
|
2018-12-03 01:30:31 +01:00
|
|
|
put_cred(ds_cred);
|
2014-12-11 23:02:04 +01:00
|
|
|
return PNFS_ATTEMPTED;
|
2017-04-29 06:02:37 +02:00
|
|
|
|
|
|
|
out_failed:
|
|
|
|
if (ff_layout_avoid_mds_available_ds(lseg))
|
|
|
|
return PNFS_TRY_AGAIN;
|
2019-07-18 15:32:17 +02:00
|
|
|
trace_pnfs_mds_fallback_write_pagelist(hdr->inode,
|
|
|
|
hdr->args.offset, hdr->args.count,
|
|
|
|
IOMODE_RW, NFS_I(hdr->inode)->layout, lseg);
|
2017-04-29 06:02:37 +02:00
|
|
|
return PNFS_NOT_ATTEMPTED;
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nfs_fh *
|
|
|
|
select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_segment *flseg = FF_LAYOUT_LSEG(lseg);
|
|
|
|
|
|
|
|
/* FIXME: Assume that there is only one NFS version available
|
|
|
|
* for the DS.
|
|
|
|
*/
|
|
|
|
return &flseg->mirror_array[i]->fh_versions[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ff_layout_initiate_commit(struct nfs_commit_data *data, int how)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_segment *lseg = data->lseg;
|
|
|
|
struct nfs4_pnfs_ds *ds;
|
|
|
|
struct rpc_clnt *ds_clnt;
|
2019-02-14 19:45:45 +01:00
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
2018-12-03 01:30:31 +01:00
|
|
|
const struct cred *ds_cred;
|
2014-12-11 23:02:04 +01:00
|
|
|
u32 idx;
|
2016-04-22 02:51:58 +02:00
|
|
|
int vers, ret;
|
2014-12-11 23:02:04 +01:00
|
|
|
struct nfs_fh *fh;
|
|
|
|
|
2017-07-13 01:10:58 +02:00
|
|
|
if (!lseg || !(pnfs_is_valid_lseg(lseg) ||
|
|
|
|
test_bit(NFS_LSEG_LAYOUTRETURN, &lseg->pls_flags)))
|
|
|
|
goto out_err;
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
|
2019-02-14 19:45:45 +01:00
|
|
|
mirror = FF_LAYOUT_COMP(lseg, idx);
|
|
|
|
ds = nfs4_ff_layout_prepare_ds(lseg, mirror, true);
|
2014-12-11 23:02:04 +01:00
|
|
|
if (!ds)
|
|
|
|
goto out_err;
|
|
|
|
|
2019-02-28 16:38:41 +01:00
|
|
|
ds_clnt = nfs4_ff_find_or_create_ds_client(mirror, ds->ds_clp,
|
2014-12-11 23:02:04 +01:00
|
|
|
data->inode);
|
|
|
|
if (IS_ERR(ds_clnt))
|
|
|
|
goto out_err;
|
|
|
|
|
2019-02-28 16:41:57 +01:00
|
|
|
ds_cred = ff_layout_get_ds_cred(mirror, &lseg->pls_range, data->cred);
|
2016-04-22 02:51:58 +02:00
|
|
|
if (!ds_cred)
|
2014-12-11 23:02:04 +01:00
|
|
|
goto out_err;
|
|
|
|
|
2019-02-28 16:44:15 +01:00
|
|
|
vers = nfs4_ff_layout_ds_version(mirror);
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
dprintk("%s ino %lu, how %d cl_count %d vers %d\n", __func__,
|
2017-10-20 11:53:38 +02:00
|
|
|
data->inode->i_ino, how, refcount_read(&ds->ds_clp->cl_count),
|
2014-12-11 23:02:04 +01:00
|
|
|
vers);
|
|
|
|
data->commit_done_cb = ff_layout_commit_done_cb;
|
|
|
|
data->cred = ds_cred;
|
2017-10-20 11:53:38 +02:00
|
|
|
refcount_inc(&ds->ds_clp->cl_count);
|
2014-12-11 23:02:04 +01:00
|
|
|
data->ds_clp = ds->ds_clp;
|
|
|
|
fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
|
|
|
|
if (fh)
|
|
|
|
data->args.fh = fh;
|
2015-06-23 13:51:59 +02:00
|
|
|
|
2016-04-22 02:51:58 +02:00
|
|
|
ret = nfs_initiate_commit(ds_clnt, data, ds->ds_clp->rpc_ops,
|
2014-12-11 23:02:04 +01:00
|
|
|
vers == 3 ? &ff_layout_commit_call_ops_v3 :
|
|
|
|
&ff_layout_commit_call_ops_v4,
|
|
|
|
how, RPC_TASK_SOFTCONN);
|
2018-12-03 01:30:31 +01:00
|
|
|
put_cred(ds_cred);
|
2016-04-22 02:51:58 +02:00
|
|
|
return ret;
|
2014-12-11 23:02:04 +01:00
|
|
|
out_err:
|
|
|
|
pnfs_generic_prepare_to_resend_writes(data);
|
|
|
|
pnfs_generic_commit_release(data);
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ff_layout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
|
|
|
|
int how, struct nfs_commit_info *cinfo)
|
|
|
|
{
|
|
|
|
return pnfs_generic_commit_pagelist(inode, mds_pages, how, cinfo,
|
|
|
|
ff_layout_initiate_commit);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct pnfs_ds_commit_info *
|
|
|
|
ff_layout_get_ds_info(struct inode *inode)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
|
|
|
|
|
|
|
|
if (layout == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &FF_LAYOUT_FROM_HDR(layout)->commit_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-03-09 22:25:14 +01:00
|
|
|
ff_layout_free_deviceid_node(struct nfs4_deviceid_node *d)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
|
|
|
nfs4_ff_layout_free_deviceid(container_of(d, struct nfs4_ff_layout_ds,
|
|
|
|
id_node));
|
|
|
|
}
|
|
|
|
|
2016-12-10 00:24:18 +01:00
|
|
|
static int ff_layout_encode_ioerr(struct xdr_stream *xdr,
|
2016-12-02 22:15:05 +01:00
|
|
|
const struct nfs4_layoutreturn_args *args,
|
|
|
|
const struct nfs4_flexfile_layoutreturn_args *ff_args)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
|
|
|
__be32 *start;
|
|
|
|
|
|
|
|
start = xdr_reserve_space(xdr, 4);
|
|
|
|
if (unlikely(!start))
|
|
|
|
return -E2BIG;
|
|
|
|
|
2016-12-02 22:15:05 +01:00
|
|
|
*start = cpu_to_be32(ff_args->num_errors);
|
2014-12-11 23:02:04 +01:00
|
|
|
/* This assume we always return _ALL_ layouts */
|
2016-12-02 22:15:05 +01:00
|
|
|
return ff_layout_encode_ds_ioerr(xdr, &ff_args->errors);
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
2016-10-19 21:59:28 +02:00
|
|
|
static void
|
|
|
|
encode_opaque_fixed(struct xdr_stream *xdr, const void *buf, size_t len)
|
|
|
|
{
|
2017-02-19 22:08:26 +01:00
|
|
|
WARN_ON_ONCE(xdr_stream_encode_opaque_fixed(xdr, buf, len) < 0);
|
2016-10-19 21:59:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_encode_ff_iostat_head(struct xdr_stream *xdr,
|
|
|
|
const nfs4_stateid *stateid,
|
|
|
|
const struct nfs42_layoutstat_devinfo *devinfo)
|
|
|
|
{
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
p = xdr_reserve_space(xdr, 8 + 8);
|
|
|
|
p = xdr_encode_hyper(p, devinfo->offset);
|
|
|
|
p = xdr_encode_hyper(p, devinfo->length);
|
|
|
|
encode_opaque_fixed(xdr, stateid->data, NFS4_STATEID_SIZE);
|
|
|
|
p = xdr_reserve_space(xdr, 4*8);
|
|
|
|
p = xdr_encode_hyper(p, devinfo->read_count);
|
|
|
|
p = xdr_encode_hyper(p, devinfo->read_bytes);
|
|
|
|
p = xdr_encode_hyper(p, devinfo->write_count);
|
|
|
|
p = xdr_encode_hyper(p, devinfo->write_bytes);
|
|
|
|
encode_opaque_fixed(xdr, devinfo->dev_id.data, NFS4_DEVICEID4_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_encode_ff_iostat(struct xdr_stream *xdr,
|
|
|
|
const nfs4_stateid *stateid,
|
|
|
|
const struct nfs42_layoutstat_devinfo *devinfo)
|
|
|
|
{
|
|
|
|
ff_layout_encode_ff_iostat_head(xdr, stateid, devinfo);
|
|
|
|
ff_layout_encode_ff_layoutupdate(xdr, devinfo,
|
|
|
|
devinfo->ld_private.data);
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
/* report nothing for now */
|
2016-10-19 21:59:28 +02:00
|
|
|
static void ff_layout_encode_iostats_array(struct xdr_stream *xdr,
|
|
|
|
const struct nfs4_layoutreturn_args *args,
|
|
|
|
struct nfs4_flexfile_layoutreturn_args *ff_args)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
|
|
|
__be32 *p;
|
2016-10-19 21:59:28 +02:00
|
|
|
int i;
|
2014-12-11 23:02:04 +01:00
|
|
|
|
|
|
|
p = xdr_reserve_space(xdr, 4);
|
2016-10-19 21:59:28 +02:00
|
|
|
*p = cpu_to_be32(ff_args->num_dev);
|
|
|
|
for (i = 0; i < ff_args->num_dev; i++)
|
|
|
|
ff_layout_encode_ff_iostat(xdr,
|
|
|
|
&args->layout->plh_stateid,
|
|
|
|
&ff_args->devinfo[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_free_iostats_array(struct nfs42_layoutstat_devinfo *devinfo,
|
|
|
|
unsigned int num_entries)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num_entries; i++) {
|
|
|
|
if (!devinfo[i].ld_private.ops)
|
|
|
|
continue;
|
|
|
|
if (!devinfo[i].ld_private.ops->free)
|
|
|
|
continue;
|
|
|
|
devinfo[i].ld_private.ops->free(&devinfo[i].ld_private);
|
|
|
|
}
|
2014-12-11 23:02:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct nfs4_deviceid_node *
|
|
|
|
ff_layout_alloc_deviceid_node(struct nfs_server *server,
|
|
|
|
struct pnfs_device *pdev, gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_ds *dsaddr;
|
|
|
|
|
|
|
|
dsaddr = nfs4_ff_alloc_deviceid_node(server, pdev, gfp_flags);
|
|
|
|
if (!dsaddr)
|
|
|
|
return NULL;
|
|
|
|
return &dsaddr->id_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-09-16 00:49:52 +02:00
|
|
|
ff_layout_encode_layoutreturn(struct xdr_stream *xdr,
|
2016-12-02 22:15:05 +01:00
|
|
|
const void *voidargs,
|
|
|
|
const struct nfs4_xdr_opaque_data *ff_opaque)
|
2014-12-11 23:02:04 +01:00
|
|
|
{
|
2016-12-02 22:15:05 +01:00
|
|
|
const struct nfs4_layoutreturn_args *args = voidargs;
|
2016-12-10 00:24:18 +01:00
|
|
|
struct nfs4_flexfile_layoutreturn_args *ff_args = ff_opaque->data;
|
2016-12-10 00:07:51 +01:00
|
|
|
struct xdr_buf tmp_buf = {
|
|
|
|
.head = {
|
|
|
|
[0] = {
|
|
|
|
.iov_base = page_address(ff_args->pages[0]),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.buflen = PAGE_SIZE,
|
|
|
|
};
|
|
|
|
struct xdr_stream tmp_xdr;
|
2014-12-11 23:02:04 +01:00
|
|
|
__be32 *start;
|
|
|
|
|
|
|
|
dprintk("%s: Begin\n", __func__);
|
|
|
|
|
2019-02-11 17:24:05 +01:00
|
|
|
xdr_init_encode(&tmp_xdr, &tmp_buf, NULL, NULL);
|
2016-12-10 00:07:51 +01:00
|
|
|
|
|
|
|
ff_layout_encode_ioerr(&tmp_xdr, args, ff_args);
|
|
|
|
ff_layout_encode_iostats_array(&tmp_xdr, args, ff_args);
|
|
|
|
|
|
|
|
start = xdr_reserve_space(xdr, 4);
|
|
|
|
*start = cpu_to_be32(tmp_buf.len);
|
|
|
|
xdr_write_pages(xdr, ff_args->pages, 0, tmp_buf.len);
|
2016-01-21 21:39:40 +01:00
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
dprintk("%s: Return\n", __func__);
|
|
|
|
}
|
|
|
|
|
2016-12-02 22:15:05 +01:00
|
|
|
static void
|
|
|
|
ff_layout_free_layoutreturn(struct nfs4_xdr_opaque_data *args)
|
|
|
|
{
|
|
|
|
struct nfs4_flexfile_layoutreturn_args *ff_args;
|
|
|
|
|
|
|
|
if (!args->data)
|
|
|
|
return;
|
|
|
|
ff_args = args->data;
|
|
|
|
args->data = NULL;
|
|
|
|
|
|
|
|
ff_layout_free_ds_ioerr(&ff_args->errors);
|
2016-10-19 21:59:28 +02:00
|
|
|
ff_layout_free_iostats_array(ff_args->devinfo, ff_args->num_dev);
|
2016-12-02 22:15:05 +01:00
|
|
|
|
2016-12-10 00:07:51 +01:00
|
|
|
put_page(ff_args->pages[0]);
|
2016-12-02 22:15:05 +01:00
|
|
|
kfree(ff_args);
|
|
|
|
}
|
|
|
|
|
2017-01-12 16:38:06 +01:00
|
|
|
static const struct nfs4_xdr_opaque_ops layoutreturn_ops = {
|
2016-12-02 22:15:05 +01:00
|
|
|
.encode = ff_layout_encode_layoutreturn,
|
|
|
|
.free = ff_layout_free_layoutreturn,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
ff_layout_prepare_layoutreturn(struct nfs4_layoutreturn_args *args)
|
|
|
|
{
|
|
|
|
struct nfs4_flexfile_layoutreturn_args *ff_args;
|
2016-10-19 21:59:28 +02:00
|
|
|
struct nfs4_flexfile_layout *ff_layout = FF_LAYOUT_FROM_HDR(args->layout);
|
2016-12-02 22:15:05 +01:00
|
|
|
|
|
|
|
ff_args = kmalloc(sizeof(*ff_args), GFP_KERNEL);
|
|
|
|
if (!ff_args)
|
2016-12-10 00:07:51 +01:00
|
|
|
goto out_nomem;
|
|
|
|
ff_args->pages[0] = alloc_page(GFP_KERNEL);
|
|
|
|
if (!ff_args->pages[0])
|
|
|
|
goto out_nomem_free;
|
2016-12-02 22:15:05 +01:00
|
|
|
|
|
|
|
INIT_LIST_HEAD(&ff_args->errors);
|
|
|
|
ff_args->num_errors = ff_layout_fetch_ds_ioerr(args->layout,
|
|
|
|
&args->range, &ff_args->errors,
|
|
|
|
FF_LAYOUTRETURN_MAXERR);
|
|
|
|
|
2016-10-19 21:59:28 +02:00
|
|
|
spin_lock(&args->inode->i_lock);
|
|
|
|
ff_args->num_dev = ff_layout_mirror_prepare_stats(&ff_layout->generic_hdr,
|
|
|
|
&ff_args->devinfo[0], ARRAY_SIZE(ff_args->devinfo));
|
|
|
|
spin_unlock(&args->inode->i_lock);
|
|
|
|
|
2016-12-02 22:15:05 +01:00
|
|
|
args->ld_private->ops = &layoutreturn_ops;
|
|
|
|
args->ld_private->data = ff_args;
|
|
|
|
return 0;
|
2016-12-10 00:07:51 +01:00
|
|
|
out_nomem_free:
|
|
|
|
kfree(ff_args);
|
|
|
|
out_nomem:
|
|
|
|
return -ENOMEM;
|
2016-12-02 22:15:05 +01:00
|
|
|
}
|
|
|
|
|
2019-02-11 04:38:43 +01:00
|
|
|
#ifdef CONFIG_NFS_V4_2
|
|
|
|
void
|
|
|
|
ff_layout_send_layouterror(struct pnfs_layout_segment *lseg)
|
|
|
|
{
|
|
|
|
struct pnfs_layout_hdr *lo = lseg->pls_layout;
|
|
|
|
struct nfs42_layout_error *errors;
|
|
|
|
LIST_HEAD(head);
|
|
|
|
|
|
|
|
if (!nfs_server_capable(lo->plh_inode, NFS_CAP_LAYOUTERROR))
|
|
|
|
return;
|
|
|
|
ff_layout_fetch_ds_ioerr(lo, &lseg->pls_range, &head, -1);
|
|
|
|
if (list_empty(&head))
|
|
|
|
return;
|
|
|
|
|
|
|
|
errors = kmalloc_array(NFS42_LAYOUTERROR_MAX,
|
|
|
|
sizeof(*errors), GFP_NOFS);
|
|
|
|
if (errors != NULL) {
|
|
|
|
const struct nfs4_ff_layout_ds_err *pos;
|
|
|
|
size_t n = 0;
|
|
|
|
|
|
|
|
list_for_each_entry(pos, &head, list) {
|
|
|
|
errors[n].offset = pos->offset;
|
|
|
|
errors[n].length = pos->length;
|
|
|
|
nfs4_stateid_copy(&errors[n].stateid, &pos->stateid);
|
|
|
|
errors[n].errors[0].dev_id = pos->deviceid;
|
|
|
|
errors[n].errors[0].status = pos->status;
|
|
|
|
errors[n].errors[0].opnum = pos->opnum;
|
|
|
|
n++;
|
|
|
|
if (!list_is_last(&pos->list, &head) &&
|
|
|
|
n < NFS42_LAYOUTERROR_MAX)
|
|
|
|
continue;
|
|
|
|
if (nfs42_proc_layouterror(lseg, errors, n) < 0)
|
|
|
|
break;
|
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
kfree(errors);
|
|
|
|
}
|
|
|
|
ff_layout_free_ds_ioerr(&head);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void
|
|
|
|
ff_layout_send_layouterror(struct pnfs_layout_segment *lseg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-06-23 13:52:02 +02:00
|
|
|
static int
|
|
|
|
ff_layout_ntop4(const struct sockaddr *sap, char *buf, const size_t buflen)
|
|
|
|
{
|
|
|
|
const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
|
|
|
|
|
|
|
|
return snprintf(buf, buflen, "%pI4", &sin->sin_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
ff_layout_ntop6_noscopeid(const struct sockaddr *sap, char *buf,
|
|
|
|
const int buflen)
|
|
|
|
{
|
|
|
|
const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
|
|
|
|
const struct in6_addr *addr = &sin6->sin6_addr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 4291, Section 2.2.2
|
|
|
|
*
|
|
|
|
* Shorthanded ANY address
|
|
|
|
*/
|
|
|
|
if (ipv6_addr_any(addr))
|
|
|
|
return snprintf(buf, buflen, "::");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 4291, Section 2.2.2
|
|
|
|
*
|
|
|
|
* Shorthanded loopback address
|
|
|
|
*/
|
|
|
|
if (ipv6_addr_loopback(addr))
|
|
|
|
return snprintf(buf, buflen, "::1");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 4291, Section 2.2.3
|
|
|
|
*
|
|
|
|
* Special presentation address format for mapped v4
|
|
|
|
* addresses.
|
|
|
|
*/
|
|
|
|
if (ipv6_addr_v4mapped(addr))
|
|
|
|
return snprintf(buf, buflen, "::ffff:%pI4",
|
|
|
|
&addr->s6_addr32[3]);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 4291, Section 2.2.1
|
|
|
|
*/
|
|
|
|
return snprintf(buf, buflen, "%pI6c", addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Derived from rpc_sockaddr2uaddr */
|
|
|
|
static void
|
|
|
|
ff_layout_encode_netaddr(struct xdr_stream *xdr, struct nfs4_pnfs_ds_addr *da)
|
|
|
|
{
|
|
|
|
struct sockaddr *sap = (struct sockaddr *)&da->da_addr;
|
|
|
|
char portbuf[RPCBIND_MAXUADDRPLEN];
|
|
|
|
char addrbuf[RPCBIND_MAXUADDRLEN];
|
|
|
|
char *netid;
|
|
|
|
unsigned short port;
|
|
|
|
int len, netid_len;
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
switch (sap->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
if (ff_layout_ntop4(sap, addrbuf, sizeof(addrbuf)) == 0)
|
|
|
|
return;
|
|
|
|
port = ntohs(((struct sockaddr_in *)sap)->sin_port);
|
|
|
|
netid = "tcp";
|
|
|
|
netid_len = 3;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
if (ff_layout_ntop6_noscopeid(sap, addrbuf, sizeof(addrbuf)) == 0)
|
|
|
|
return;
|
|
|
|
port = ntohs(((struct sockaddr_in6 *)sap)->sin6_port);
|
|
|
|
netid = "tcp6";
|
|
|
|
netid_len = 4;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* we only support tcp and tcp6 */
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(portbuf, sizeof(portbuf), ".%u.%u", port >> 8, port & 0xff);
|
|
|
|
len = strlcat(addrbuf, portbuf, sizeof(addrbuf));
|
|
|
|
|
|
|
|
p = xdr_reserve_space(xdr, 4 + netid_len);
|
|
|
|
xdr_encode_opaque(p, netid, netid_len);
|
|
|
|
|
|
|
|
p = xdr_reserve_space(xdr, 4 + len);
|
|
|
|
xdr_encode_opaque(p, addrbuf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_encode_nfstime(struct xdr_stream *xdr,
|
|
|
|
ktime_t t)
|
|
|
|
{
|
|
|
|
struct timespec64 ts;
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
p = xdr_reserve_space(xdr, 12);
|
|
|
|
ts = ktime_to_timespec64(t);
|
|
|
|
p = xdr_encode_hyper(p, ts.tv_sec);
|
|
|
|
*p++ = cpu_to_be32(ts.tv_nsec);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_encode_io_latency(struct xdr_stream *xdr,
|
|
|
|
struct nfs4_ff_io_stat *stat)
|
|
|
|
{
|
|
|
|
__be32 *p;
|
|
|
|
|
|
|
|
p = xdr_reserve_space(xdr, 5 * 8);
|
|
|
|
p = xdr_encode_hyper(p, stat->ops_requested);
|
|
|
|
p = xdr_encode_hyper(p, stat->bytes_requested);
|
|
|
|
p = xdr_encode_hyper(p, stat->ops_completed);
|
|
|
|
p = xdr_encode_hyper(p, stat->bytes_completed);
|
|
|
|
p = xdr_encode_hyper(p, stat->bytes_not_delivered);
|
|
|
|
ff_layout_encode_nfstime(xdr, stat->total_busy_time);
|
|
|
|
ff_layout_encode_nfstime(xdr, stat->aggregate_completion_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-10-06 23:53:20 +02:00
|
|
|
ff_layout_encode_ff_layoutupdate(struct xdr_stream *xdr,
|
|
|
|
const struct nfs42_layoutstat_devinfo *devinfo,
|
|
|
|
struct nfs4_ff_layout_mirror *mirror)
|
2015-06-23 13:52:02 +02:00
|
|
|
{
|
|
|
|
struct nfs4_pnfs_ds_addr *da;
|
|
|
|
struct nfs4_pnfs_ds *ds = mirror->mirror_ds->ds;
|
|
|
|
struct nfs_fh *fh = &mirror->fh_versions[0];
|
2016-10-06 23:53:20 +02:00
|
|
|
__be32 *p;
|
2015-06-23 13:52:02 +02:00
|
|
|
|
|
|
|
da = list_first_entry(&ds->ds_addrs, struct nfs4_pnfs_ds_addr, da_node);
|
|
|
|
dprintk("%s: DS %s: encoding address %s\n",
|
|
|
|
__func__, ds->ds_remotestr, da->da_remotestr);
|
|
|
|
/* netaddr4 */
|
|
|
|
ff_layout_encode_netaddr(xdr, da);
|
|
|
|
/* nfs_fh4 */
|
|
|
|
p = xdr_reserve_space(xdr, 4 + fh->size);
|
|
|
|
xdr_encode_opaque(p, fh->data, fh->size);
|
|
|
|
/* ff_io_latency4 read */
|
|
|
|
spin_lock(&mirror->lock);
|
|
|
|
ff_layout_encode_io_latency(xdr, &mirror->read_stat.io_stat);
|
|
|
|
/* ff_io_latency4 write */
|
|
|
|
ff_layout_encode_io_latency(xdr, &mirror->write_stat.io_stat);
|
|
|
|
spin_unlock(&mirror->lock);
|
|
|
|
/* nfstime4 */
|
|
|
|
ff_layout_encode_nfstime(xdr, ktime_sub(ktime_get(), mirror->start_time));
|
|
|
|
/* bool */
|
|
|
|
p = xdr_reserve_space(xdr, 4);
|
|
|
|
*p = cpu_to_be32(false);
|
2016-10-06 23:53:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ff_layout_encode_layoutstats(struct xdr_stream *xdr, const void *args,
|
|
|
|
const struct nfs4_xdr_opaque_data *opaque)
|
|
|
|
{
|
|
|
|
struct nfs42_layoutstat_devinfo *devinfo = container_of(opaque,
|
|
|
|
struct nfs42_layoutstat_devinfo, ld_private);
|
|
|
|
__be32 *start;
|
|
|
|
|
|
|
|
/* layoutupdate length */
|
|
|
|
start = xdr_reserve_space(xdr, 4);
|
|
|
|
ff_layout_encode_ff_layoutupdate(xdr, devinfo, opaque->data);
|
2015-06-23 13:52:02 +02:00
|
|
|
|
|
|
|
*start = cpu_to_be32((xdr->p - start - 1) * 4);
|
|
|
|
}
|
|
|
|
|
2016-10-06 23:53:20 +02:00
|
|
|
static void
|
|
|
|
ff_layout_free_layoutstats(struct nfs4_xdr_opaque_data *opaque)
|
|
|
|
{
|
|
|
|
struct nfs4_ff_layout_mirror *mirror = opaque->data;
|
|
|
|
|
|
|
|
ff_layout_put_mirror(mirror);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct nfs4_xdr_opaque_ops layoutstat_ops = {
|
|
|
|
.encode = ff_layout_encode_layoutstats,
|
|
|
|
.free = ff_layout_free_layoutstats,
|
|
|
|
};
|
|
|
|
|
2015-08-25 02:03:17 +02:00
|
|
|
static int
|
2016-09-29 18:15:27 +02:00
|
|
|
ff_layout_mirror_prepare_stats(struct pnfs_layout_hdr *lo,
|
|
|
|
struct nfs42_layoutstat_devinfo *devinfo,
|
2015-08-25 02:03:17 +02:00
|
|
|
int dev_limit)
|
2015-06-23 13:52:01 +02:00
|
|
|
{
|
2015-08-25 02:03:17 +02:00
|
|
|
struct nfs4_flexfile_layout *ff_layout = FF_LAYOUT_FROM_HDR(lo);
|
2015-06-23 13:52:01 +02:00
|
|
|
struct nfs4_ff_layout_mirror *mirror;
|
|
|
|
struct nfs4_deviceid_node *dev;
|
2015-08-25 02:03:17 +02:00
|
|
|
int i = 0;
|
2015-06-23 13:52:01 +02:00
|
|
|
|
2015-08-25 02:03:17 +02:00
|
|
|
list_for_each_entry(mirror, &ff_layout->mirrors, mirrors) {
|
|
|
|
if (i >= dev_limit)
|
2015-06-23 13:52:01 +02:00
|
|
|
break;
|
2016-09-30 20:37:41 +02:00
|
|
|
if (IS_ERR_OR_NULL(mirror->mirror_ds))
|
2015-06-23 13:52:02 +02:00
|
|
|
continue;
|
2016-11-25 19:17:15 +01:00
|
|
|
if (!test_and_clear_bit(NFS4_FF_MIRROR_STAT_AVAIL, &mirror->flags))
|
|
|
|
continue;
|
2015-08-25 02:03:17 +02:00
|
|
|
/* mirror refcount put in cleanup_layoutstats */
|
2017-10-20 11:53:34 +02:00
|
|
|
if (!refcount_inc_not_zero(&mirror->ref))
|
2015-08-25 02:03:17 +02:00
|
|
|
continue;
|
|
|
|
dev = &mirror->mirror_ds->id_node;
|
2015-06-23 13:52:01 +02:00
|
|
|
memcpy(&devinfo->dev_id, &dev->deviceid, NFS4_DEVICEID4_SIZE);
|
2015-08-25 02:03:17 +02:00
|
|
|
devinfo->offset = 0;
|
|
|
|
devinfo->length = NFS4_MAX_UINT64;
|
2016-10-04 00:13:20 +02:00
|
|
|
spin_lock(&mirror->lock);
|
2015-08-10 10:47:32 +02:00
|
|
|
devinfo->read_count = mirror->read_stat.io_stat.ops_completed;
|
2015-06-23 13:52:01 +02:00
|
|
|
devinfo->read_bytes = mirror->read_stat.io_stat.bytes_completed;
|
2015-08-10 10:47:32 +02:00
|
|
|
devinfo->write_count = mirror->write_stat.io_stat.ops_completed;
|
2015-06-23 13:52:01 +02:00
|
|
|
devinfo->write_bytes = mirror->write_stat.io_stat.bytes_completed;
|
2016-10-04 00:13:20 +02:00
|
|
|
spin_unlock(&mirror->lock);
|
2015-06-23 13:52:01 +02:00
|
|
|
devinfo->layout_type = LAYOUT_FLEX_FILES;
|
2016-10-06 23:53:20 +02:00
|
|
|
devinfo->ld_private.ops = &layoutstat_ops;
|
|
|
|
devinfo->ld_private.data = mirror;
|
2015-06-23 13:52:01 +02:00
|
|
|
|
2016-09-29 18:15:27 +02:00
|
|
|
devinfo++;
|
2015-08-25 02:03:17 +02:00
|
|
|
i++;
|
2015-06-23 13:52:01 +02:00
|
|
|
}
|
2015-08-25 02:03:17 +02:00
|
|
|
return i;
|
2015-06-23 13:52:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ff_layout_prepare_layoutstats(struct nfs42_layoutstat_args *args)
|
|
|
|
{
|
2015-08-25 02:03:17 +02:00
|
|
|
struct nfs4_flexfile_layout *ff_layout;
|
2016-09-29 18:15:27 +02:00
|
|
|
const int dev_count = PNFS_LAYOUTSTATS_MAXDEV;
|
2015-06-23 13:52:01 +02:00
|
|
|
|
|
|
|
/* For now, send at most PNFS_LAYOUTSTATS_MAXDEV statistics */
|
2015-08-25 02:03:17 +02:00
|
|
|
args->devinfo = kmalloc_array(dev_count, sizeof(*args->devinfo), GFP_NOIO);
|
2015-06-23 13:52:01 +02:00
|
|
|
if (!args->devinfo)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
spin_lock(&args->inode->i_lock);
|
2016-09-29 18:15:27 +02:00
|
|
|
ff_layout = FF_LAYOUT_FROM_HDR(NFS_I(args->inode)->layout);
|
|
|
|
args->num_dev = ff_layout_mirror_prepare_stats(&ff_layout->generic_hdr,
|
|
|
|
&args->devinfo[0], dev_count);
|
2015-06-23 13:52:01 +02:00
|
|
|
spin_unlock(&args->inode->i_lock);
|
2016-11-25 19:24:09 +01:00
|
|
|
if (!args->num_dev) {
|
|
|
|
kfree(args->devinfo);
|
|
|
|
args->devinfo = NULL;
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
2015-06-23 13:52:01 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-09 22:02:57 +02:00
|
|
|
static int
|
|
|
|
ff_layout_set_layoutdriver(struct nfs_server *server,
|
|
|
|
const struct nfs_fh *dummy)
|
|
|
|
{
|
|
|
|
#if IS_ENABLED(CONFIG_NFS_V4_2)
|
|
|
|
server->caps |= NFS_CAP_LAYOUTSTATS;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-11 23:02:04 +01:00
|
|
|
static struct pnfs_layoutdriver_type flexfilelayout_type = {
|
|
|
|
.id = LAYOUT_FLEX_FILES,
|
|
|
|
.name = "LAYOUT_FLEX_FILES",
|
|
|
|
.owner = THIS_MODULE,
|
2016-09-20 12:56:02 +02:00
|
|
|
.flags = PNFS_LAYOUTGET_ON_OPEN,
|
2018-09-03 19:12:15 +02:00
|
|
|
.max_layoutget_response = 4096, /* 1 page or so... */
|
2017-05-09 22:02:57 +02:00
|
|
|
.set_layoutdriver = ff_layout_set_layoutdriver,
|
2014-12-11 23:02:04 +01:00
|
|
|
.alloc_layout_hdr = ff_layout_alloc_layout_hdr,
|
|
|
|
.free_layout_hdr = ff_layout_free_layout_hdr,
|
|
|
|
.alloc_lseg = ff_layout_alloc_lseg,
|
|
|
|
.free_lseg = ff_layout_free_lseg,
|
2015-08-25 23:38:25 +02:00
|
|
|
.add_lseg = ff_layout_add_lseg,
|
2014-12-11 23:02:04 +01:00
|
|
|
.pg_read_ops = &ff_layout_pg_read_ops,
|
|
|
|
.pg_write_ops = &ff_layout_pg_write_ops,
|
|
|
|
.get_ds_info = ff_layout_get_ds_info,
|
2015-03-09 22:25:14 +01:00
|
|
|
.free_deviceid_node = ff_layout_free_deviceid_node,
|
2015-02-17 23:58:15 +01:00
|
|
|
.mark_request_commit = pnfs_layout_mark_request_commit,
|
2014-12-11 23:02:04 +01:00
|
|
|
.clear_request_commit = pnfs_generic_clear_request_commit,
|
|
|
|
.scan_commit_lists = pnfs_generic_scan_commit_lists,
|
|
|
|
.recover_commit_reqs = pnfs_generic_recover_commit_reqs,
|
|
|
|
.commit_pagelist = ff_layout_commit_pagelist,
|
|
|
|
.read_pagelist = ff_layout_read_pagelist,
|
|
|
|
.write_pagelist = ff_layout_write_pagelist,
|
|
|
|
.alloc_deviceid_node = ff_layout_alloc_deviceid_node,
|
2016-12-02 22:15:05 +01:00
|
|
|
.prepare_layoutreturn = ff_layout_prepare_layoutreturn,
|
2015-03-25 19:14:42 +01:00
|
|
|
.sync = pnfs_nfs_generic_sync,
|
2015-06-23 13:52:01 +02:00
|
|
|
.prepare_layoutstats = ff_layout_prepare_layoutstats,
|
2014-12-11 23:02:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init nfs4flexfilelayout_init(void)
|
|
|
|
{
|
|
|
|
printk(KERN_INFO "%s: NFSv4 Flexfile Layout Driver Registering...\n",
|
|
|
|
__func__);
|
|
|
|
return pnfs_register_layoutdriver(&flexfilelayout_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit nfs4flexfilelayout_exit(void)
|
|
|
|
{
|
|
|
|
printk(KERN_INFO "%s: NFSv4 Flexfile Layout Driver Unregistering...\n",
|
|
|
|
__func__);
|
|
|
|
pnfs_unregister_layoutdriver(&flexfilelayout_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_ALIAS("nfs-layouttype4-4");
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DESCRIPTION("The NFSv4 flexfile layout driver");
|
|
|
|
|
|
|
|
module_init(nfs4flexfilelayout_init);
|
|
|
|
module_exit(nfs4flexfilelayout_exit);
|
2019-04-07 19:59:08 +02:00
|
|
|
|
|
|
|
module_param(io_maxretrans, ushort, 0644);
|
|
|
|
MODULE_PARM_DESC(io_maxretrans, "The number of times the NFSv4.1 client "
|
|
|
|
"retries an I/O request before returning an error. ");
|