diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-28 02:34:16 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-02-04 07:34:14 +0100 |
commit | cacdc7d2f9fa42e29b650e2879df42ea7d7833c1 (patch) | |
tree | 45f0ff4663f193b759b74a58a4a902d7667abada /include/net | |
parent | rxrpc: make the users of rxrpc_kernel_send_data() set kvec-backed msg_iter pr... (diff) | |
download | linux-cacdc7d2f9fa42e29b650e2879df42ea7d7833c1.tar.xz linux-cacdc7d2f9fa42e29b650e2879df42ea7d7833c1.zip |
ip: stash a pointer to msghdr in struct ping_fakehdr
... instead of storing its ->mgs_iter.iov there
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ping.h b/include/net/ping.h index f074060bc5de..cc16d413f681 100644 --- a/include/net/ping.h +++ b/include/net/ping.h @@ -59,7 +59,7 @@ extern struct pingv6_ops pingv6_ops; struct pingfakehdr { struct icmphdr icmph; - struct iovec *iov; + struct msghdr *msg; sa_family_t family; __wsum wcheck; }; |