aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_choke.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2012-02-06 15:14:37 -0500
committerDavid S. Miller <davem@davemloft.net>2012-02-06 15:14:37 -0500
commita0417fa3a18a14be1f4d9cffcf378a7c42d92a91 (patch)
tree4606685ea5ab5ebe33ad4335dc004c66ea31bdc2 /net/sched/sch_choke.c
parentnetdev: ethernet dev_alloc_skb to netdev_alloc_skb (diff)
downloadlinux-dev-a0417fa3a18a14be1f4d9cffcf378a7c42d92a91.tar.xz
linux-dev-a0417fa3a18a14be1f4d9cffcf378a7c42d92a91.zip
net: Make qdisc_skb_cb upper size bound explicit.
Just like skb->cb[], so that qdisc_skb_cb can be encapsulated inside of other data structures. This is intended to be used by IPoIB so that it can remember addressing information stored at hard_header_ops->create() time that it can fetch when the packet gets to the transmit routine. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/sched/sch_choke.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/sch_choke.c b/net/sched/sch_choke.c
index e465064d39a3..7e267d7b9c75 100644
--- a/net/sched/sch_choke.c
+++ b/net/sched/sch_choke.c
@@ -148,8 +148,7 @@ struct choke_skb_cb {
static inline struct choke_skb_cb *choke_skb_cb(const struct sk_buff *skb)
{
- BUILD_BUG_ON(sizeof(skb->cb) <
- sizeof(struct qdisc_skb_cb) + sizeof(struct choke_skb_cb));
+ qdisc_cb_private_validate(skb, sizeof(struct choke_skb_cb));
return (struct choke_skb_cb *)qdisc_skb_cb(skb)->data;
}