]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[NET_SCHED]: act_api: use nlmsg_parse
authorPatrick McHardy <kaber@trash.net>
Thu, 24 Jan 2008 04:32:58 +0000 (20:32 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 23:11:16 +0000 (15:11 -0800)
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>
net/sched/act_api.c

index ae077ed208af79306e3a4d6a4e74ba8cf2caf2e9..2fe0345ddcb1414e7d8dcd1c56c96c2f5a8a8e65 100644 (file)
@@ -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)