public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Peter Staubach <staubach@redhat.com>
To: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: Alexandros Batsakis <batsakis@netapp.com>, linux-nfs@vger.kernel.org
Subject: Re: [PATCH 01/10] nfs41: adjust max_rqst_sz, max_resp_sz w.r.t to rsize, wsize
Date: Tue, 24 Nov 2009 14:10:26 -0500	[thread overview]
Message-ID: <4B0C2FA2.8000207@redhat.com> (raw)
In-Reply-To: <1259017040.8700.94.camel@localhost>

Trond Myklebust wrote:
> On Mon, 2009-11-23 at 13:54 -0800, Alexandros Batsakis wrote: 
>> The v4.1 client should take into account the desired rsize, wsize when
>> negotiating the max size in CREATE_SESSION. Accordingly, it should use
>> rsize, wsize that are smaller than the session negotiated values.
>>
>> Signed-off-by: Alexandros Batsakis <batsakis@netapp.com>
>> ---
>>  fs/nfs/client.c   |   14 ++++++++++----
>>  fs/nfs/internal.h |    4 ++++
>>  fs/nfs/nfs4proc.c |    7 +++++--
>>  fs/nfs/nfs4xdr.c  |   14 ++++++++++++++
>>  4 files changed, 33 insertions(+), 6 deletions(-)
>>
>> diff --git a/fs/nfs/client.c b/fs/nfs/client.c
>> index 99ea196..f360739 100644
>> --- a/fs/nfs/client.c
>> +++ b/fs/nfs/client.c
>> @@ -911,8 +911,10 @@ static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *
>>  
>>  	server->maxfilesize = fsinfo->maxfilesize;
>>  
>> -	/* We're airborne Set socket buffersize */
>> -	rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
>> +	/* We're airborne Set socket buffersize. */
>> +	if (!nfs4_has_session(server->nfs_client))
>> +		rpc_setbufsize(server->client, server->wsize + 100,
>> +			       server->rsize + 100);
>>  }
> 
> Please move this out of generic NFS code.
> 
> I really don't like this ugly proliferation of 'if (nfs4_has_session())'
> that appears to be creeping into every single function in the NFS client
> code.
> 
>> /*
>> @@ -1260,10 +1262,14 @@ error:
>>  static void nfs4_session_set_rwsize(struct nfs_server *server)
>>  {
>>  #ifdef CONFIG_NFS_V4_1
>> +	struct nfs4_session *sess;
>>  	if (!nfs4_has_session(server->nfs_client))
>>  		return;
>> -	server->rsize = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
>> -	server->wsize = server->nfs_client->cl_session->fc_attrs.max_rqst_sz;
>> +	sess = server->nfs_client->cl_session;
>> +	server->rsize = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
>> +	server->wsize = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
> 
> 
> For one thing, the r/wsize is conventionally set to be a power of 2,
> since most disks have block sizes of that form.
> 
> Secondly, what if the server has given you a max_resp_sz/max_rqst_sz
> that is larger than what you asked for?
> 
>> +	rpc_setbufsize(server->client, sess->fc_attrs.max_rqst_sz,
>> +		       sess->fc_attrs.max_resp_sz);
> 
> Is anyone ever going to use NFSv4.1 over UDP?
> 

I thought that NFSv4 over UDP was outlawed because UDP, as
a transport, did not offer the correct set of semantics
required.  I know that the Linux NFSv4 server registers
NFSv4 over UDP, but I don't know of any other servers which
do.

I was going to file a bug and a patch to stop NFSv4 from
being transported over UDP.  :-)

	Thanx...

		ps

>> #endif /* CONFIG_NFS_V4_1 */
>>  }
>>  
>> diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h
>> index e21b1bb..d946936 100644
>> --- a/fs/nfs/internal.h
>> +++ b/fs/nfs/internal.h
>> @@ -195,6 +195,10 @@ static inline void nfs4_restart_rpc(struct rpc_task *task,
>>  #ifdef CONFIG_NFS_V4
>>  extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
>>  #endif
>> +#ifdef CONFIG_NFS_V4_1
>> +extern const u32 nfs41_maxread_overhead;
>> +extern const u32 nfs41_maxwrite_overhead;
>> +#endif
>>  
>>  /* nfs4proc.c */
>>  #ifdef CONFIG_NFS_V4
>> diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
>> index ff37454..ef77d40 100644
>> --- a/fs/nfs/nfs4proc.c
>> +++ b/fs/nfs/nfs4proc.c
>> @@ -4827,13 +4827,16 @@ int nfs4_proc_destroy_session(struct nfs4_session *session)
>>  int nfs4_init_session(struct nfs_server *server)
>>  {
>>  	struct nfs_client *clp = server->nfs_client;
>> +	struct nfs4_session *session;
>>  	int ret;
>>  
>>  	if (!nfs4_has_session(clp))
>>  		return 0;
>>  
>> -	clp->cl_session->fc_attrs.max_rqst_sz = server->wsize;
>> -	clp->cl_session->fc_attrs.max_resp_sz = server->rsize;
>> +	session = clp->cl_session;
>> +	session->fc_attrs.max_rqst_sz = server->wsize + nfs41_maxwrite_overhead;
>> +	session->fc_attrs.max_resp_sz = server->rsize + nfs41_maxread_overhead;
>> +
>>  	ret = nfs4_recover_expired_lease(server);
>>  	if (!ret)
>>  		ret = nfs4_check_client_ready(clp);
>> diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c
>> index 20b4e30..fc36af4 100644
>> --- a/fs/nfs/nfs4xdr.c
>> +++ b/fs/nfs/nfs4xdr.c
>> @@ -46,6 +46,7 @@
>>  #include <linux/proc_fs.h>
>>  #include <linux/kdev_t.h>
>>  #include <linux/sunrpc/clnt.h>
>> +#include <linux/sunrpc/msg_prot.h>
>>  #include <linux/nfs.h>
>>  #include <linux/nfs4.h>
>>  #include <linux/nfs_fs.h>
>> @@ -676,6 +677,19 @@ static int nfs4_stat_to_errno(int);
>>  					 decode_sequence_maxsz + \
>>  					 decode_putrootfh_maxsz + \
>>  					 decode_fsinfo_maxsz)
>> +
>> +const u32 nfs41_maxwrite_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
>> +				      compound_encode_hdr_maxsz +
>> +				      encode_sequence_maxsz +
>> +				      encode_putfh_maxsz +
>> +				      encode_getattr_maxsz) *
>> +				     XDR_UNIT);
>> +
>> +const u32 nfs41_maxread_overhead = ((RPC_MAX_HEADER_WITH_AUTH +
>> +				     compound_decode_hdr_maxsz +
>> +				     decode_sequence_maxsz +
>> +				     decode_putfh_maxsz) *
>> +				    XDR_UNIT);
>>  #endif /* CONFIG_NFS_V4_1 */
>>  
>>  static const umode_t nfs_type2fmt[] = {
>> -- 
>> 1.6.2.5
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


  parent reply	other threads:[~2009-11-24 19:10 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-23 21:54 [PATCH 01/10] nfs41: adjust max_rqst_sz, max_resp_sz w.r.t to rsize, wsize Alexandros Batsakis
2009-11-23 21:54 ` [PATCH 02/10] nfs41: add support for callback with RPC version number 4 Alexandros Batsakis
2009-11-23 21:54   ` [PATCH 03/10] nfs41: fix cb_recall bug Alexandros Batsakis
2009-11-23 21:54     ` [PATCH 04/10] nfs4: minor delegation cleaning Alexandros Batsakis
2009-11-23 21:54       ` [PATCH 05/10] nfs4: return/expire delegations depending on their type Alexandros Batsakis
2009-11-23 21:54         ` [PATCH 06/10] nfs41: initial support for CB_RECALL_ANY Alexandros Batsakis
2009-11-23 21:54           ` [PATCH 07/10] nfs41: check if session exists and if it is persistent Alexandros Batsakis
2009-11-23 21:54             ` [PATCH 08/10] nfs41: add support for the exclusive create flags Alexandros Batsakis
2009-11-23 21:54               ` [PATCH 09/10] nfs41: remove server-only EXCHGID4_FLAG_CONFIRMED_R flag from exchange_id Alexandros Batsakis
2009-11-23 21:54                 ` [PATCH 10/10] nfs41: check SEQUENCE status flag Alexandros Batsakis
2009-11-23 23:07         ` [PATCH 05/10] nfs4: return/expire delegations depending on their type Trond Myklebust
2009-11-23 23:16     ` [PATCH 03/10] nfs41: fix cb_recall bug Trond Myklebust
2009-11-23 22:06 ` [PATCH 01/10] nfs41: adjust max_rqst_sz, max_resp_sz w.r.t to rsize, wsize Peter Staubach
2009-11-23 22:57 ` Trond Myklebust
2009-11-23 23:14   ` Batsakis, Alexandros
2009-11-24 19:10   ` Peter Staubach [this message]
2009-11-24 20:39     ` J. Bruce Fields

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=4B0C2FA2.8000207@redhat.com \
    --to=staubach@redhat.com \
    --cc=batsakis@netapp.com \
    --cc=linux-nfs@vger.kernel.org \
    --cc=trond.myklebust@fys.uio.no \
    /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