Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c96c9471dd86ba24dc3826bf5688b99d3caf3ace
Commit:     c96c9471dd86ba24dc3826bf5688b99d3caf3ace
Parent:     6d834e04e596d6803cf1074a07fd67e7b5662f1b
Author:     Patrick McHardy <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 23 20:32:58 2008 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:11:16 2008 -0800

    [NET_SCHED]: act_api: use nlmsg_parse
    
    Convert open-coded nlmsg_parse to use the real function.
    
    Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 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 ae077ed..2fe0345 100644
--- a/net/sched/act_api.c
+++ b/net/sched/act_api.c
@@ -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)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to