diff options
author | Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | 2005-06-21 15:38:48 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-06-21 15:38:48 -0400 |
commit | 18b504e25fd617bee8830d2cdcaff7fb7b5931bb (patch) | |
tree | 6e7daab06749832d0e40ffae6572abc297d02d11 /include/linux/netlink.h | |
parent | 1d345dac1f30af1cd9f3a1faa12f9f18f17f236e (diff) |
[NETLINK]: netlink_callback structure needs 5 args not 4
net/ipv4/tcp_diag.c uses up to ->args[4]
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netlink.h')
-rw-r--r-- | include/linux/netlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 561d4dc75836..3029cad63a01 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
@@ -147,7 +147,7 @@ struct netlink_callback | |||
147 | int (*dump)(struct sk_buff * skb, struct netlink_callback *cb); | 147 | int (*dump)(struct sk_buff * skb, struct netlink_callback *cb); |
148 | int (*done)(struct netlink_callback *cb); | 148 | int (*done)(struct netlink_callback *cb); |
149 | int family; | 149 | int family; |
150 | long args[4]; | 150 | long args[5]; |
151 | }; | 151 | }; |
152 | 152 | ||
153 | struct netlink_notify | 153 | struct netlink_notify |