mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 01:10:52 +07:00
net/sched/sch_hfsc.c: add unlikely() in qdisc_peek_len()
The condition can only succeed on wrong configurations. Signed-off-by: Michal Soltys <soltys@ziu.info> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
12d0ad3be9
commit
d1d0fc5e4c
@ -882,7 +882,7 @@ qdisc_peek_len(struct Qdisc *sch)
|
|||||||
unsigned int len;
|
unsigned int len;
|
||||||
|
|
||||||
skb = sch->ops->peek(sch);
|
skb = sch->ops->peek(sch);
|
||||||
if (skb == NULL) {
|
if (unlikely(skb == NULL)) {
|
||||||
qdisc_warn_nonwc("qdisc_peek_len", sch);
|
qdisc_warn_nonwc("qdisc_peek_len", sch);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user