|
@@ -45,8 +45,15 @@ int ip6_datagram_send_ctl(struct net *net, struct sock *sk, struct msghdr *msg,
|
|
|
struct flowi6 *fl6, struct ipcm6_cookie *ipc6,
|
|
|
struct sockcm_cookie *sockc);
|
|
|
|
|
|
-void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
|
|
|
- __u16 srcp, __u16 destp, int bucket);
|
|
|
+void __ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
|
|
|
+ __u16 srcp, __u16 destp, int rqueue, int bucket);
|
|
|
+static inline void
|
|
|
+ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp, __u16 srcp,
|
|
|
+ __u16 destp, int bucket)
|
|
|
+{
|
|
|
+ __ip6_dgram_sock_seq_show(seq, sp, srcp, destp, sk_rmem_alloc_get(sp),
|
|
|
+ bucket);
|
|
|
+}
|
|
|
|
|
|
#define LOOPBACK4_IPV6 cpu_to_be32(0x7f000006)
|
|
|
|