diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-04-07 05:28:01 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-24 12:28:49 +0300 |
commit | e169371823827dae1fd1d15bceb0fe5497c1a5ba (patch) | |
tree | 8e3f8e4bfaeb5f370eeef55d0282280973ddba0b /include | |
parent | 6ce8e9ce5989ae13f493062975304700be86d20e (diff) | |
download | linux-e169371823827dae1fd1d15bceb0fe5497c1a5ba.tar.xz |
switch ipxrtr_route_packet() from iovec to msghdr
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ipx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ipx.h b/include/net/ipx.h index 320f47b64a7a..e5cff6811b30 100644 --- a/include/net/ipx.h +++ b/include/net/ipx.h @@ -150,7 +150,7 @@ int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc, unsigned char *node); void ipxrtr_del_routes(struct ipx_interface *intrfc); int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx, - struct iovec *iov, size_t len, int noblock); + struct msghdr *msg, size_t len, int noblock); int ipxrtr_route_skb(struct sk_buff *skb); struct ipx_route *ipxrtr_lookup(__be32 net); int ipxrtr_ioctl(unsigned int cmd, void __user *arg); |