From: "Mkrtchyan, Tigran" <tigran.mkrtchyan@desy.de>
To: Trond Myklebust <trondmy@primarydata.com>
Cc: linux-nfs@vger.kernel.org
Subject: Re: [PATCH] nfs4: client: do not send empty SETATTR after OPEN_CREATE
Date: Thu, 12 May 2016 11:03:06 +0200 (CEST) [thread overview]
Message-ID: <168192002.12755981.1463043786072.JavaMail.zimbra@desy.de> (raw)
In-Reply-To: <BC64443A-0721-414A-9695-CDB2015099AB@primarydata.com>
----- Original Message -----
> From: "Trond Myklebust" <trondmy@primarydata.com>
> To: "Tigran Mkrtchyan" <tigran.mkrtchyan@desy.de>
> Cc: linux-nfs@vger.kernel.org
> Sent: Thursday, May 12, 2016 12:25:18 AM
> Subject: Re: [PATCH] nfs4: client: do not send empty SETATTR after OPEN_CREATE
> On 5/11/16, 18:14, "Tigran Mkrtchyan" <tigran.mkrtchyan@desy.de> wrote:
>
>>OPEN_CREATE with EXCLUSIVE4_1 sends initial file permission.
>>Ignoring fact, that server have indicated that file mod is set, client
>>will send yet another SETATTR request, but, as mode is already set,
>>new SETATTR will be empty. This is not a problem, nevertheless
>>an extra roundtrip and slow open on high latency networks.
>>
>>This change is aims to by-pass setattr if there are no attributes defined.
>>
>>Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
>>---
>> fs/nfs/nfs4proc.c | 6 ++++++
>> 1 file changed, 6 insertions(+)
>>
>>diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
>>index 327b8c3..f6b278f 100644
>>--- a/fs/nfs/nfs4proc.c
>>+++ b/fs/nfs/nfs4proc.c
>>@@ -2724,6 +2724,12 @@ static int nfs4_do_setattr(struct inode *inode, struct
>>rpc_cred *cred,
>> .inode = inode,
>> };
>> int err;
>>+ /*
>>+ * a shortcut: it there are no attributes to be updated, do not send setattr
>>at all
>>+ */
>>+ if (sattr->ia_valid == ATTR_OPEN)
>>+ return 0;
>>+
>
> There is already a similar optimization in nfs_setattr(), so I don’t think it
Obviously not mature enough.
> makes sense to put this in nfs4_do_setattr(). We should rather just fix
> _nfs4_do_open().
Agree. See v2.
Tigran.
>
>> do {
>> err = _nfs4_do_setattr(inode, cred, fattr, sattr, state, ilabel, olabel);
>> switch (err) {
>>--
>>2.5.5
>>
>
> N�����r��y���b�X��ǧv�^�){.n�+����{���"��^n�r���z���h����&���G���h�(�階�ݢj"���m�����z�ޖ���f���h���~�m�
prev parent reply other threads:[~2016-05-12 9:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-11 22:14 [PATCH] nfs4: client: do not send empty SETATTR after OPEN_CREATE Tigran Mkrtchyan
2016-05-11 22:25 ` Trond Myklebust
2016-05-12 9:03 ` Mkrtchyan, Tigran [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=168192002.12755981.1463043786072.JavaMail.zimbra@desy.de \
--to=tigran.mkrtchyan@desy.de \
--cc=linux-nfs@vger.kernel.org \
--cc=trondmy@primarydata.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).