diff options
author | Patrick McHardy <kaber@trash.net> | 2008-01-23 23:32:58 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:11:16 -0500 |
commit | c96c9471dd86ba24dc3826bf5688b99d3caf3ace (patch) | |
tree | 4930a6990f5c262ec06333ec7ddfc494a0720a46 /net/sched | |
parent | 6d834e04e596d6803cf1074a07fd67e7b5662f1b (diff) |
[NET_SCHED]: act_api: use nlmsg_parse
Convert open-coded nlmsg_parse to use the real function.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/act_api.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/sched/act_api.c b/net/sched/act_api.c index ae077ed208af..2fe0345ddcb1 100644 --- a/net/sched/act_api.c +++ b/net/sched/act_api.c | |||
@@ -984,11 +984,8 @@ find_dump_kind(struct nlmsghdr *n) | |||
984 | struct nlattr *tb[TCA_ACT_MAX_PRIO + 1]; | 984 | struct nlattr *tb[TCA_ACT_MAX_PRIO + 1]; |
985 | struct nlattr *nla[TCAA_MAX + 1]; | 985 | struct nlattr *nla[TCAA_MAX + 1]; |
986 | struct nlattr *kind; | 986 | struct nlattr *kind; |
987 | int min_len = NLMSG_LENGTH(sizeof(struct tcamsg)); | ||
988 | int attrlen = n->nlmsg_len - NLMSG_ALIGN(min_len); | ||
989 | struct nlattr *attr = (void *) n + NLMSG_ALIGN(min_len); | ||
990 | 987 | ||
991 | if (nla_parse(nla, TCAA_MAX, attr, attrlen, NULL) < 0) | 988 | if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0) |
992 | return NULL; | 989 | return NULL; |
993 | tb1 = nla[TCA_ACT_TAB]; | 990 | tb1 = nla[TCA_ACT_TAB]; |
994 | if (tb1 == NULL) | 991 | if (tb1 == NULL) |