summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/rpc_pipe.c
diff options
context:
space:
mode:
authorJ. Bruce Fields2007-09-26 20:38:09 +0200
committerTrond Myklebust2007-10-09 23:20:25 +0200
commitbf19aacecbeebccb2c3d150a8bd9416b7dba81fe (patch)
treed41fc5fb58d57387454183b10282bbabb5d4b5d9 /net/sunrpc/rpc_pipe.c
parentNFS: Get rid of some obsolete macros (diff)
downloadkernel-qcow2-linux-bf19aacecbeebccb2c3d150a8bd9416b7dba81fe.tar.gz
kernel-qcow2-linux-bf19aacecbeebccb2c3d150a8bd9416b7dba81fe.tar.xz
kernel-qcow2-linux-bf19aacecbeebccb2c3d150a8bd9416b7dba81fe.zip
nfs: add server port to rpc_pipe info file
On the client, when an alternate server port is specified on the mount commandline, we need to make sure gssd knows about it. Also, on the server side, when we're sending krb5 callbacks to the client, we'll use the same mechanism to let gssd know about the callback port. Thanks to Olga Kornievskaia for testing and for an earlier implementation. Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu> Cc: Olga Kornievskaia <aglo@citi.umich.edu> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/rpc_pipe.c')
-rw-r--r--net/sunrpc/rpc_pipe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c
index ae83ac84f63b..c8433e8865aa 100644
--- a/net/sunrpc/rpc_pipe.c
+++ b/net/sunrpc/rpc_pipe.c
@@ -329,6 +329,7 @@ rpc_show_info(struct seq_file *m, void *v)
clnt->cl_prog, clnt->cl_vers);
seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR));
seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO));
+ seq_printf(m, "port: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PORT));
return 0;
}