--- zzzz-none-000/linux-4.1.38/net/sched/sch_htb.c 2017-01-18 18:48:06.000000000 +0000 +++ bcm63-7582-715/linux-4.1.38/net/sched/sch_htb.c 2020-11-25 10:06:48.000000000 +0000 @@ -40,6 +40,9 @@ #include #include #include +#if defined(CONFIG_BCM_KF_BLOG) && defined(CONFIG_BLOG) +#include +#endif /* HTB algorithm. Author: devik@cdi.cz @@ -924,7 +927,14 @@ m |= 1 << prio; skb = htb_dequeue_tree(q, prio, level); if (likely(skb != NULL)) +#if defined(CONFIG_BCM_KF_BLOG) && defined(CONFIG_BLOG) + { + blog_skip(skb, blog_skip_reason_sch_htb); +#endif goto ok; +#if defined(CONFIG_BCM_KF_BLOG) && defined(CONFIG_BLOG) + } +#endif } } qdisc_qstats_overlimit(sch);