Re: [PATCH v2 08/49] nfsv3: introduce nfs3_set_ds_client

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 01/05/2015 07:02 PM, Tom Haynes wrote:
> On Mon, Jan 05, 2015 at 11:25:57AM -0500, Anna Schumaker wrote:
>> On 01/05/2015 11:17 AM, Anna Schumaker wrote:
>>> Hey,
>>>
>>> On 12/24/2014 02:12 AM, Tom Haynes wrote:
>>>> From: Peng Tao <tao.peng@xxxxxxxxxxxxxxx>
>>>>
>>>> The flexfiles layout wants to create DS connection over NFSv3.
>>>> Add nfs3_set_ds_client to allow that to happen.
>>>>
>>>> Signed-off-by: Peng Tao <tao.peng@xxxxxxxxxxxxxxx>
>>>> Signed-off-by: Tom Haynes <Thomas.Haynes@xxxxxxxxxxxxxxx>
>>>> ---
>>>>  fs/nfs/internal.h   |  4 ++++
>>>>  fs/nfs/nfs3_fs.h    |  3 ++-
>>>>  fs/nfs/nfs3client.c | 34 ++++++++++++++++++++++++++++++++++
>>>>  fs/nfs/nfs3super.c  |  2 +-
>>>>  4 files changed, 41 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h
>>>> index 7d7c36f..7332ba1 100644
>>>> --- a/fs/nfs/internal.h
>>>> +++ b/fs/nfs/internal.h
>>>> @@ -193,6 +193,10 @@ extern struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp,
>>>>  					     rpc_authflavor_t au_flavor);
>>>>  extern struct rpc_clnt *nfs4_find_or_create_ds_client(struct nfs_client *,
>>>>  						struct inode *);
>>>> +extern struct nfs_client *nfs3_set_ds_client(struct nfs_client *mds_clp,
>>>> +			const struct sockaddr *ds_addr, int ds_addrlen,
>>>> +			int ds_proto, unsigned int ds_timeo,
>>>> +			unsigned int ds_retrans, rpc_authflavor_t au_flavor);
>>>>  #ifdef CONFIG_PROC_FS
>>>>  extern int __init nfs_fs_proc_init(void);
>>>>  extern void nfs_fs_proc_exit(void);
>>>> diff --git a/fs/nfs/nfs3_fs.h b/fs/nfs/nfs3_fs.h
>>>> index 333ae40..fc9cd85 100644
>>>> --- a/fs/nfs/nfs3_fs.h
>>>> +++ b/fs/nfs/nfs3_fs.h
>>>> @@ -29,6 +29,7 @@ static inline int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
>>>>  struct nfs_server *nfs3_create_server(struct nfs_mount_info *, struct nfs_subversion *);
>>>>  struct nfs_server *nfs3_clone_server(struct nfs_server *, struct nfs_fh *,
>>>>  				     struct nfs_fattr *, rpc_authflavor_t);
>>>> -
>>>> +/* nfs3super.c */
>>>> +extern struct nfs_subversion nfs_v3;
>>>
>>> nit:   Can we keep the blank line between nfs3client.c and nfs3super.c sections?
>>>
>>> Thanks,
>>> Anna
>>>
>>>>  
>>>>  #endif /* __LINUX_FS_NFS_NFS3_FS_H */
>>>> diff --git a/fs/nfs/nfs3client.c b/fs/nfs/nfs3client.c
>>>> index 8c1b437..52e2344 100644
>>>> --- a/fs/nfs/nfs3client.c
>>>> +++ b/fs/nfs/nfs3client.c
>>>> @@ -64,3 +64,37 @@ struct nfs_server *nfs3_clone_server(struct nfs_server *source,
>>>>  		nfs_init_server_aclclient(server);
>>>>  	return server;
>>>>  }
>>>> +
>>>> +/*
>>>> + * Set up a pNFS Data Server client over NFSv3.
>>>> + *
>>>> + * Return any existing nfs_client that matches server address,port,version
>>>> + * and minorversion.
>>>> + *
>>>> + * For a new nfs_client, use a soft mount (default), a low retrans and a
>>>> + * low timeout interval so that if a connection is lost, we retry through
>>>> + * the MDS.
>>>> + */
>>>> +struct nfs_client *nfs3_set_ds_client(struct nfs_client *mds_clp,
>>>> +		const struct sockaddr *ds_addr, int ds_addrlen,
>>>> +		int ds_proto, unsigned int ds_timeo, unsigned int ds_retrans,
>>>> +		rpc_authflavor_t au_flavor)
>>>> +{
>>>> +	struct nfs_client_initdata cl_init = {
>>>> +		.addr = ds_addr,
>>>> +		.addrlen = ds_addrlen,
>>>> +		.nfs_mod = &nfs_v3,
>>>> +		.proto = ds_proto,
>>>> +		.net = mds_clp->cl_net,
>>>> +	};
>>>> +	struct rpc_timeout ds_timeout;
>>>> +	struct nfs_client *clp;
>>>> +
>>>> +	/* Use the MDS nfs_client cl_ipaddr. */
>>>> +	nfs_init_timeout_values(&ds_timeout, ds_proto, ds_timeo, ds_retrans);
>>>> +	clp = nfs_get_client(&cl_init, &ds_timeout, mds_clp->cl_ipaddr,
>>>> +			     au_flavor);
>>>> +
>>>> +	return clp;
>>>> +}
>>>> +EXPORT_SYMBOL_GPL(nfs3_set_ds_client);
>>
>> Compiling with:
>>
>> 	CONFIG_NFS_V4_2=n
>> 	CONFIG_NFS_V4_1=n
>> 	CONFIG_NFS_V4=n
>> 	CONFIG_NFS_V3=y
>> 	CONFIG_NFS_V2=y
>>
>> Gives me:
>>
>> fs/nfs/nfs3client.c: In function 'nfs3_set_ds_client':
>> fs/nfs/nfs3client.c:95:53: error: 'struct nfs_client' has no member named 'cl_ipaddr'
>>   clp = nfs_get_client(&cl_init, &ds_timeout, mds_clp->cl_ipaddr,
>>                                                      ^
>> scripts/Makefile.build:257: recipe for target 'fs/nfs/nfs3client.o' failed
>> make[2]: *** [fs/nfs/nfs3client.o] Error 1
>> scripts/Makefile.build:402: recipe for target 'fs/nfs' failed
>> make[1]: *** [fs/nfs] Error 2
>> Makefile:938: recipe for target 'fs' failed
>> make: *** [fs] Error 2
>> make: *** Waiting for unfinished jobs....
>>
>>
>> I would prefer a fix that doesn't make the NFS v3 module depend on CONFIG_NFS_V4* options, but I'll try not to grumble if that isn't possible here.
> 
> Does that mean you do not want to see this:
> 
> +
> +#if IS_ENABLED(CONFIG_NFS_V4)
> +/*
> + * Set up a pNFS Data Server client over NFSv3.
> + *
> + * Return any existing nfs_client that matches server address,port,version
> + * and minorversion.
> + *
> + * For a new nfs_client, use a soft mount (default), a low retrans and a
> + * low timeout interval so that if a connection is lost, we retry through
> + * the MDS.
> + */
> +struct nfs_client *nfs3_set_ds_client(struct nfs_client *mds_clp,
> +               const struct sockaddr *ds_addr, int ds_addrlen,
> +               int ds_proto, unsigned int ds_timeo, unsigned int ds_retrans,
> +               rpc_authflavor_t au_flavor)
> +{
> +       struct nfs_client_initdata cl_init = {
> +               .addr = ds_addr,
> +               .addrlen = ds_addrlen,
> +               .nfs_mod = &nfs_v3,
> +               .proto = ds_proto,
> +               .net = mds_clp->cl_net,
> +       };
> +       struct rpc_timeout ds_timeout;
> +       struct nfs_client *clp;
> +
> +       /* Use the MDS nfs_client cl_ipaddr. */
> +       nfs_init_timeout_values(&ds_timeout, ds_proto, ds_timeo, ds_retrans);
> +       clp = nfs_get_client(&cl_init, &ds_timeout, mds_clp->cl_ipaddr,
> +                            au_flavor);
> +
> +       return clp;
> +}
> +EXPORT_SYMBOL_GPL(nfs3_set_ds_client);
> +#endif
> 
> ? :-)

Correct!  Maybe instead the struct nfs_client can be changed to have cl_ipaddr when v3 is enabled? :)

Anna

> 
>>
>> Thanks,
>> Anna
>>
>>>> diff --git a/fs/nfs/nfs3super.c b/fs/nfs/nfs3super.c
>>>> index 6af29c2..5c4394e 100644
>>>> --- a/fs/nfs/nfs3super.c
>>>> +++ b/fs/nfs/nfs3super.c
>>>> @@ -7,7 +7,7 @@
>>>>  #include "nfs3_fs.h"
>>>>  #include "nfs.h"
>>>>  
>>>> -static struct nfs_subversion nfs_v3 = {
>>>> +struct nfs_subversion nfs_v3 = {
>>>>  	.owner = THIS_MODULE,
>>>>  	.nfs_fs   = &nfs_fs_type,
>>>>  	.rpc_vers = &nfs_version3,
>>>>
>>>
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> 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@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux Filesystem Development]     [Linux USB Development]     [Linux Media Development]     [Video for Linux]     [Linux NILFS]     [Linux Audio Users]     [Yosemite Info]     [Linux SCSI]

  Powered by Linux