Commit 9300fdba authored by Stefan Hajnoczi's avatar Stefan Hajnoczi Committed by Trond Myklebust

SUNRPC: drop stale doc comments in xprtsock.c

Several functions have outdated arguments listed in the doc comments.
Drop documentation for arguments that no longer exist.
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent d683cc49
...@@ -901,7 +901,6 @@ static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb) ...@@ -901,7 +901,6 @@ static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
/** /**
* xs_local_data_ready - "data ready" callback for AF_LOCAL sockets * xs_local_data_ready - "data ready" callback for AF_LOCAL sockets
* @sk: socket with data to read * @sk: socket with data to read
* @len: how much data to read
* *
* Currently this assumes we can read the whole reply in a single gulp. * Currently this assumes we can read the whole reply in a single gulp.
*/ */
...@@ -965,7 +964,6 @@ static void xs_local_data_ready(struct sock *sk) ...@@ -965,7 +964,6 @@ static void xs_local_data_ready(struct sock *sk)
/** /**
* xs_udp_data_ready - "data ready" callback for UDP sockets * xs_udp_data_ready - "data ready" callback for UDP sockets
* @sk: socket with data to read * @sk: socket with data to read
* @len: how much data to read
* *
*/ */
static void xs_udp_data_ready(struct sock *sk) static void xs_udp_data_ready(struct sock *sk)
...@@ -1389,7 +1387,6 @@ static int xs_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, uns ...@@ -1389,7 +1387,6 @@ static int xs_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, uns
/** /**
* xs_tcp_data_ready - "data ready" callback for TCP sockets * xs_tcp_data_ready - "data ready" callback for TCP sockets
* @sk: socket with data to read * @sk: socket with data to read
* @bytes: how much data to read
* *
*/ */
static void xs_tcp_data_ready(struct sock *sk) static void xs_tcp_data_ready(struct sock *sk)
...@@ -1886,9 +1883,7 @@ static int xs_local_finish_connecting(struct rpc_xprt *xprt, ...@@ -1886,9 +1883,7 @@ static int xs_local_finish_connecting(struct rpc_xprt *xprt,
/** /**
* xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
* @xprt: RPC transport to connect
* @transport: socket transport to connect * @transport: socket transport to connect
* @create_sock: function to create a socket of the correct type
*/ */
static int xs_local_setup_socket(struct sock_xprt *transport) static int xs_local_setup_socket(struct sock_xprt *transport)
{ {
...@@ -2125,9 +2120,6 @@ static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock) ...@@ -2125,9 +2120,6 @@ static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
/** /**
* xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
* @xprt: RPC transport to connect
* @transport: socket transport to connect
* @create_sock: function to create a socket of the correct type
* *
* Invoked by a work queue tasklet. * Invoked by a work queue tasklet.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment