summaryrefslogtreecommitdiff
path: root/include/uapi/linux
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2015-11-20 14:45:40 +0530
committerJohn Stultz <john.stultz@linaro.org>2016-02-16 13:51:41 -0800
commitaf711d13fa59040b5f09b466c04c9299e27ba002 (patch)
tree0a5e0b4385e1b314637bf512e16d542cd61bfc7c /include/uapi/linux
parent0e922fb48de57debfb0e3030f4391175833fb88d (diff)
netfilter: xt_qtaguid/socket: build fixes for 4.4
Update xt_socket_lookup_slow_v* usage in aosp patches, to align with changes from mainline commit 686c9b50809d "netfilter: x_tables: Use par->net instead of computing from the passed net devices". Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/netfilter/xt_socket.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/uapi/linux/netfilter/xt_socket.h b/include/uapi/linux/netfilter/xt_socket.h
index 15b4c1cf99bb..7f00df6cd897 100644
--- a/include/uapi/linux/netfilter/xt_socket.h
+++ b/include/uapi/linux/netfilter/xt_socket.h
@@ -26,9 +26,11 @@ struct xt_socket_mtinfo3 {
| XT_SOCKET_NOWILDCARD \
| XT_SOCKET_RESTORESKMARK)
-struct sock *xt_socket_lookup_slow_v4(const struct sk_buff *skb,
- const struct net_device *indev);
-struct sock *xt_socket_lookup_slow_v6(const struct sk_buff *skb,
- const struct net_device *indev);
+struct sock *xt_socket_lookup_slow_v4(struct net *net,
+ const struct sk_buff *skb,
+ const struct net_device *indev);
+struct sock *xt_socket_lookup_slow_v6(struct net *net,
+ const struct sk_buff *skb,
+ const struct net_device *indev);
#endif /* _XT_SOCKET_H */