Commit 9e924cf4 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

net_sched: long word align struct qdisc_skb_cb data

netem_skb_cb() does :

return (struct netem_skb_cb *)qdisc_skb_cb(skb)->data;

Unfortunatly struct qdisc_skb_cb data is not long word aligned, so
access to psched_time_t time_to_send uses a non aligned access.
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d3bd1b4c
...@@ -199,7 +199,7 @@ struct tcf_proto { ...@@ -199,7 +199,7 @@ struct tcf_proto {
struct qdisc_skb_cb { struct qdisc_skb_cb {
unsigned int pkt_len; unsigned int pkt_len;
char data[]; long data[];
}; };
static inline int qdisc_qlen(struct Qdisc *q) static inline int qdisc_qlen(struct Qdisc *q)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment