From: Olga Kornievskaia <kolga@netapp.com>
To: <Trond.Myklebust@primarydata.com>, <anna.schumaker@netapp.com>
Cc: <linux-nfs@vger.kernel.org>
Subject: [PATCH v3 1/1] PNFS dont retry some error when MDS=DS
Date: Wed, 15 Mar 2017 16:02:15 -0400 [thread overview]
Message-ID: <20170315200215.43997-1-kolga@netapp.com> (raw)
In-Reply-To: <20170315163224.43632-1-kolga@netapp.com>
If we sent an operation to the "DS" and got an error, the code resends
to "MDS" but when they are the same, it gets the same error and goes
into the infinite loop. Example was COMMIT getting EACCES.
Since some setups like ONTAP where each node in the cluster is MDS and
DS need to check if MDS=DS based on if clientids are the same.
Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
---
fs/nfs/filelayout/filelayout.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/fs/nfs/filelayout/filelayout.c b/fs/nfs/filelayout/filelayout.c
index 44347f4..e1d9bea 100644
--- a/fs/nfs/filelayout/filelayout.c
+++ b/fs/nfs/filelayout/filelayout.c
@@ -207,6 +207,10 @@ static int filelayout_async_handle_error(struct rpc_task *task,
/* fall through */
default:
reset:
+ if (clp->cl_exchange_flags & EXCHGID4_FLAG_USE_PNFS_MDS &&
+ clp->cl_exchange_flags & EXCHGID4_FLAG_USE_PNFS_DS &&
+ clp->cl_clientid == mds_client->cl_clientid)
+ return task->tk_status;
dprintk("%s Retry through MDS. Error %d\n", __func__,
task->tk_status);
return -NFS4ERR_RESET_TO_MDS;
@@ -384,9 +388,10 @@ static int filelayout_commit_done_cb(struct rpc_task *task,
return -EAGAIN;
}
- pnfs_set_layoutcommit(data->inode, data->lseg, data->lwb);
+ if (!err)
+ pnfs_set_layoutcommit(data->inode, data->lseg, data->lwb);
- return 0;
+ return err;
}
static void filelayout_write_prepare(struct rpc_task *task, void *data)
--
1.8.3.1
prev parent reply other threads:[~2017-03-15 20:04 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-08 21:52 question about error case in pnfs Olga Kornievskaia
2017-03-10 21:37 ` [PATCH 1/1] PNFS dont retry some error when MDS=DS Olga Kornievskaia
2017-03-11 15:46 ` Trond Myklebust
2017-03-12 18:40 ` Olga Kornievskaia
2017-03-12 21:00 ` Trond Myklebust
2017-03-13 14:42 ` Olga Kornievskaia
2017-03-15 15:08 ` Olga Kornievskaia
2017-03-15 16:32 ` [PATCH v2 " Olga Kornievskaia
2017-03-15 20:02 ` Olga Kornievskaia [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170315200215.43997-1-kolga@netapp.com \
--to=kolga@netapp.com \
--cc=Trond.Myklebust@primarydata.com \
--cc=anna.schumaker@netapp.com \
--cc=linux-nfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.