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_htb.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_htb.c')
-rw-r--r-- | net/sched/sch_htb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index c687388a8cb6..b7abd0ae676a 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c | |||
@@ -50,6 +50,7 @@ | |||
50 | #include <linux/skbuff.h> | 50 | #include <linux/skbuff.h> |
51 | #include <linux/list.h> | 51 | #include <linux/list.h> |
52 | #include <linux/compiler.h> | 52 | #include <linux/compiler.h> |
53 | #include <net/netlink.h> | ||
53 | #include <net/sock.h> | 54 | #include <net/sock.h> |
54 | #include <net/pkt_sched.h> | 55 | #include <net/pkt_sched.h> |
55 | #include <linux/rbtree.h> | 56 | #include <linux/rbtree.h> |
@@ -1128,7 +1129,7 @@ static int htb_dump(struct Qdisc *sch, struct sk_buff *skb) | |||
1128 | return skb->len; | 1129 | return skb->len; |
1129 | rtattr_failure: | 1130 | rtattr_failure: |
1130 | spin_unlock_bh(&sch->dev->queue_lock); | 1131 | spin_unlock_bh(&sch->dev->queue_lock); |
1131 | skb_trim(skb, skb_tail_pointer(skb) - skb->data); | 1132 | nlmsg_trim(skb, skb_tail_pointer(skb)); |
1132 | return -1; | 1133 | return -1; |
1133 | } | 1134 | } |
1134 | 1135 | ||
@@ -1164,7 +1165,7 @@ static int htb_dump_class(struct Qdisc *sch, unsigned long arg, | |||
1164 | return skb->len; | 1165 | return skb->len; |
1165 | rtattr_failure: | 1166 | rtattr_failure: |
1166 | spin_unlock_bh(&sch->dev->queue_lock); | 1167 | spin_unlock_bh(&sch->dev->queue_lock); |
1167 | skb_trim(skb, b - skb->data); | 1168 | nlmsg_trim(skb, b); |
1168 | return -1; | 1169 | return -1; |
1169 | } | 1170 | } |
1170 | 1171 | ||