#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/jiffies.h>
#include <linux/string.h>
#include <linux/in.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/skbuff.h>
#include <linux/siphash.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <net/netlink.h>
#include <net/pkt_sched.h>
#include <net/pkt_cls.h>
#include <net/red.h>
#define SFQ_MAX_DEPTH …
#define SFQ_DEFAULT_FLOWS …
#define SFQ_MAX_FLOWS …
#define SFQ_EMPTY_SLOT …
#define SFQ_DEFAULT_HASH_DIVISOR …
#define SFQ_ALLOT_SHIFT …
#define SFQ_ALLOT_SIZE(X) …
sfq_index;
struct sfq_head { … };
struct sfq_slot { … };
struct sfq_sched_data { … };
static inline struct sfq_head *sfq_dep_head(struct sfq_sched_data *q, sfq_index val)
{ … }
static unsigned int sfq_hash(const struct sfq_sched_data *q,
const struct sk_buff *skb)
{ … }
static unsigned int sfq_classify(struct sk_buff *skb, struct Qdisc *sch,
int *qerr)
{ … }
static inline void sfq_link(struct sfq_sched_data *q, sfq_index x)
{ … }
#define sfq_unlink(q, x, n, p) …
static inline void sfq_dec(struct sfq_sched_data *q, sfq_index x)
{ … }
static inline void sfq_inc(struct sfq_sched_data *q, sfq_index x)
{ … }
static inline struct sk_buff *slot_dequeue_tail(struct sfq_slot *slot)
{ … }
static inline struct sk_buff *slot_dequeue_head(struct sfq_slot *slot)
{ … }
static inline void slot_queue_init(struct sfq_slot *slot)
{ … }
static inline void slot_queue_add(struct sfq_slot *slot, struct sk_buff *skb)
{ … }
static unsigned int sfq_drop(struct Qdisc *sch, struct sk_buff **to_free)
{ … }
static int sfq_prob_mark(const struct sfq_sched_data *q)
{ … }
static int sfq_hard_mark(const struct sfq_sched_data *q)
{ … }
static int sfq_headdrop(const struct sfq_sched_data *q)
{ … }
static int
sfq_enqueue(struct sk_buff *skb, struct Qdisc *sch, struct sk_buff **to_free)
{ … }
static struct sk_buff *
sfq_dequeue(struct Qdisc *sch)
{ … }
static void
sfq_reset(struct Qdisc *sch)
{ … }
static void sfq_rehash(struct Qdisc *sch)
{ … }
static void sfq_perturbation(struct timer_list *t)
{ … }
static int sfq_change(struct Qdisc *sch, struct nlattr *opt)
{ … }
static void *sfq_alloc(size_t sz)
{ … }
static void sfq_free(void *addr)
{ … }
static void sfq_destroy(struct Qdisc *sch)
{ … }
static int sfq_init(struct Qdisc *sch, struct nlattr *opt,
struct netlink_ext_ack *extack)
{ … }
static int sfq_dump(struct Qdisc *sch, struct sk_buff *skb)
{ … }
static struct Qdisc *sfq_leaf(struct Qdisc *sch, unsigned long arg)
{ … }
static unsigned long sfq_find(struct Qdisc *sch, u32 classid)
{ … }
static unsigned long sfq_bind(struct Qdisc *sch, unsigned long parent,
u32 classid)
{ … }
static void sfq_unbind(struct Qdisc *q, unsigned long cl)
{ … }
static struct tcf_block *sfq_tcf_block(struct Qdisc *sch, unsigned long cl,
struct netlink_ext_ack *extack)
{ … }
static int sfq_dump_class(struct Qdisc *sch, unsigned long cl,
struct sk_buff *skb, struct tcmsg *tcm)
{ … }
static int sfq_dump_class_stats(struct Qdisc *sch, unsigned long cl,
struct gnet_dump *d)
{ … }
static void sfq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
{ … }
static const struct Qdisc_class_ops sfq_class_ops = …;
static struct Qdisc_ops sfq_qdisc_ops __read_mostly = …;
MODULE_ALIAS_NET_SCH(…) …;
static int __init sfq_module_init(void)
{ … }
static void __exit sfq_module_exit(void)
{ … }
module_init(…) …
module_exit(…)
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;