Skip to content

Commit

Permalink
[NET_SCHED]: act_api: use nlmsg_parse
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jan 28, 2008
1 parent 6d834e0 commit c96c947
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions net/sched/act_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -984,11 +984,8 @@ find_dump_kind(struct nlmsghdr *n)
struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
struct nlattr *nla[TCAA_MAX + 1];
struct nlattr *kind;
int min_len = NLMSG_LENGTH(sizeof(struct tcamsg));
int attrlen = n->nlmsg_len - NLMSG_ALIGN(min_len);
struct nlattr *attr = (void *) n + NLMSG_ALIGN(min_len);

if (nla_parse(nla, TCAA_MAX, attr, attrlen, NULL) < 0)
if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
return NULL;
tb1 = nla[TCA_ACT_TAB];
if (tb1 == NULL)
Expand Down

0 comments on commit c96c947

Please sign in to comment.