sch_cbs.c (ead5d1f4d877e92c051e1a1ade623d0d30e71619) sch_cbs.c (cc69837fcaf467426ca19e5790085c26146a2300)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * net/sched/sch_cbs.c Credit Based Shaper
4 *
5 * Authors: Vinicius Costa Gomes <vinicius.gomes@intel.com>
6 */
7
8/* Credit Based Shaper (CBS)

--- 36 unchanged lines hidden (view full) ---

45 *
46 * 'locredit': Locredit is the minimum amount of credits that can
47 * be reached. It is a function of the traffic flowing through
48 * this qdisc (IEEE 802.1Q-2014 Annex L, Equation L-2):
49 *
50 * locredit = max_frame_size * (sendslope / port_transmit_rate)
51 */
52
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * net/sched/sch_cbs.c Credit Based Shaper
4 *
5 * Authors: Vinicius Costa Gomes <vinicius.gomes@intel.com>
6 */
7
8/* Credit Based Shaper (CBS)

--- 36 unchanged lines hidden (view full) ---

45 *
46 * 'locredit': Locredit is the minimum amount of credits that can
47 * be reached. It is a function of the traffic flowing through
48 * this qdisc (IEEE 802.1Q-2014 Annex L, Equation L-2):
49 *
50 * locredit = max_frame_size * (sendslope / port_transmit_rate)
51 */
52
53#include <linux/ethtool.h>
53#include <linux/module.h>
54#include <linux/types.h>
55#include <linux/kernel.h>
56#include <linux/string.h>
57#include <linux/errno.h>
58#include <linux/skbuff.h>
59#include <net/netevent.h>
60#include <net/netlink.h>

--- 521 unchanged lines hidden ---
54#include <linux/module.h>
55#include <linux/types.h>
56#include <linux/kernel.h>
57#include <linux/string.h>
58#include <linux/errno.h>
59#include <linux/skbuff.h>
60#include <net/netevent.h>
61#include <net/netlink.h>

--- 521 unchanged lines hidden ---