diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-26 02:06:12 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:26:37 -0400 |
commit | dc5fc579b90ed0a9a4e55b0218cdbaf0a8cf2e67 (patch) | |
tree | 673dbb425c2b09b4256ef71f89dfc5cc01944386 /net/sched/sch_api.c | |
parent | a36ca733375860b389c15ffdf6a5f92df64a33b6 (diff) |
[NETLINK]: Use nlmsg_trim() where appropriate
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_api.c')
-rw-r--r-- | net/sched/sch_api.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index 7482a950717b..0b9abea68fd5 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <linux/bitops.h> | 36 | #include <linux/bitops.h> |
37 | #include <linux/hrtimer.h> | 37 | #include <linux/hrtimer.h> |
38 | 38 | ||
39 | #include <net/netlink.h> | ||
39 | #include <net/sock.h> | 40 | #include <net/sock.h> |
40 | #include <net/pkt_sched.h> | 41 | #include <net/pkt_sched.h> |
41 | 42 | ||
@@ -852,7 +853,7 @@ static int tc_fill_qdisc(struct sk_buff *skb, struct Qdisc *q, u32 clid, | |||
852 | 853 | ||
853 | nlmsg_failure: | 854 | nlmsg_failure: |
854 | rtattr_failure: | 855 | rtattr_failure: |
855 | skb_trim(skb, b - skb->data); | 856 | nlmsg_trim(skb, b); |
856 | return -1; | 857 | return -1; |
857 | } | 858 | } |
858 | 859 | ||
@@ -1081,7 +1082,7 @@ static int tc_fill_tclass(struct sk_buff *skb, struct Qdisc *q, | |||
1081 | 1082 | ||
1082 | nlmsg_failure: | 1083 | nlmsg_failure: |
1083 | rtattr_failure: | 1084 | rtattr_failure: |
1084 | skb_trim(skb, b - skb->data); | 1085 | nlmsg_trim(skb, b); |
1085 | return -1; | 1086 | return -1; |
1086 | } | 1087 | } |
1087 | 1088 | ||