--- zzzz-none-000/linux-4.1.52/net/sched/sch_htb.c 2018-05-28 02:26:45.000000000 +0000 +++ bcm63-7530ax-731/linux-4.1.52/net/sched/sch_htb.c 2022-03-02 11:37:14.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);