Linux NFS development
 help / color / mirror / Atom feed
* [PATCH 1/2] nfsv4: set hostname when creating nfsv4 ds connection
@ 2014-07-08  3:45 Peng Tao
  2014-07-08  3:45 ` [PATCH 2/2] nfs: check hostname in nfs_get_client Peng Tao
  0 siblings, 1 reply; 2+ messages in thread
From: Peng Tao @ 2014-07-08  3:45 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: linux-nfs, Peng Tao

We reference cl_hostname in many places for debugging purpose.
So make it useful by setting hostname when calling nfs_get_client.

Signed-off-by: Peng Tao <tao.peng@primarydata.com>
---
 fs/nfs/nfs4client.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c
index 9940037..ff8cba2 100644
--- a/fs/nfs/nfs4client.c
+++ b/fs/nfs/nfs4client.c
@@ -856,6 +856,11 @@ struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp,
 	};
 	struct rpc_timeout ds_timeout;
 	struct nfs_client *clp;
+	char buf[INET6_ADDRSTRLEN + 1];
+
+	if (rpc_ntop(ds_addr, buf, sizeof(buf)) <= 0)
+		return ERR_PTR(-EINVAL);
+	cl_init.hostname = buf;
 
 	/*
 	 * Set an authflavor equual to the MDS value. Use the MDS nfs_client
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-07-08  3:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-08  3:45 [PATCH 1/2] nfsv4: set hostname when creating nfsv4 ds connection Peng Tao
2014-07-08  3:45 ` [PATCH 2/2] nfs: check hostname in nfs_get_client Peng Tao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox