aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-03-19 22:28:08 -0300
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-25 22:26:36 -0700
commita36ca733375860b389c15ffdf6a5f92df64a33b6 (patch)
tree36801ab146f9aac5a87eb45bf3c324b3a7c8bac0
parent[SK_BUFF]: Remove skb_add_mtu() leftovers (diff)
downloadlinux-dev-a36ca733375860b389c15ffdf6a5f92df64a33b6.tar.xz
linux-dev-a36ca733375860b389c15ffdf6a5f92df64a33b6.zip
[NETLINK]: Remove NLMSG_{NEW_ANSWER,CANCEL,END}
Not used anywhere and defined inside __KERNEL__, Thomas acked this on irc. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--include/linux/netlink.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h
index 36629fff26d3..0d11f6a7389c 100644
--- a/include/linux/netlink.h
+++ b/include/linux/netlink.h
@@ -229,18 +229,6 @@ __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
#define NLMSG_PUT(skb, pid, seq, type, len) \
NLMSG_NEW(skb, pid, seq, type, len, 0)
-#define NLMSG_NEW_ANSWER(skb, cb, type, len, flags) \
- NLMSG_NEW(skb, NETLINK_CB((cb)->skb).pid, \
- (cb)->nlh->nlmsg_seq, type, len, flags)
-
-#define NLMSG_END(skb, nlh) \
-({ (nlh)->nlmsg_len = skb_tail_pointer(skb) - (unsigned char *)(nlh); \
- (skb)->len; })
-
-#define NLMSG_CANCEL(skb, nlh) \
-({ skb_trim(skb, (unsigned char *) (nlh) - (skb)->data); \
- -1; })
-
extern int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
struct nlmsghdr *nlh,
int (*dump)(struct sk_buff *skb, struct netlink_callback*),