mirror of https://github.com/torvalds/linux.git
NFSv4 expose nfs_parse_server_name function
Make nfs_parse_server_name available outside of nfs4namespace.c. Signed-off-by: Olga Kornievskaia <kolga@netapp.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
This commit is contained in:
parent
1976b2b314
commit
f5b27cc676
|
|
@ -280,7 +280,8 @@ struct rpc_clnt *nfs4_negotiate_security(struct rpc_clnt *, struct inode *,
|
||||||
int nfs4_submount(struct fs_context *, struct nfs_server *);
|
int nfs4_submount(struct fs_context *, struct nfs_server *);
|
||||||
int nfs4_replace_transport(struct nfs_server *server,
|
int nfs4_replace_transport(struct nfs_server *server,
|
||||||
const struct nfs4_fs_locations *locations);
|
const struct nfs4_fs_locations *locations);
|
||||||
|
size_t nfs_parse_server_name(char *string, size_t len, struct sockaddr *sa,
|
||||||
|
size_t salen, struct net *net);
|
||||||
/* nfs4proc.c */
|
/* nfs4proc.c */
|
||||||
extern int nfs4_handle_exception(struct nfs_server *, int, struct nfs4_exception *);
|
extern int nfs4_handle_exception(struct nfs_server *, int, struct nfs4_exception *);
|
||||||
extern int nfs4_async_handle_error(struct rpc_task *task,
|
extern int nfs4_async_handle_error(struct rpc_task *task,
|
||||||
|
|
|
||||||
|
|
@ -164,8 +164,8 @@ static int nfs4_validate_fspath(struct dentry *dentry,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t nfs_parse_server_name(char *string, size_t len,
|
size_t nfs_parse_server_name(char *string, size_t len, struct sockaddr *sa,
|
||||||
struct sockaddr *sa, size_t salen, struct net *net)
|
size_t salen, struct net *net)
|
||||||
{
|
{
|
||||||
ssize_t ret;
|
ssize_t ret;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue