forked from dtaht/sched_fq_pie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue_compat.h
56 lines (45 loc) · 1.37 KB
/
queue_compat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef __NET_SCHED_QCOMPAT_H
#define __NET_SCHED_QCOMPAT_H
#include <linux/version.h>
/* Backport some stuff. */
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,14,0)
static inline u32 reciprocal_scale(u32 val, u32 ep_ro)
{
return (u32)(((u64) val * ep_ro) >> 32);
}
#define skb_get_hash(a) skb_get_rxhash(a)
#endif
#if LINUX_VERSION_CODE <= KERNEL_VERSION(3,16,0)
static inline void qdisc_qstats_backlog_dec(struct Qdisc *sch,
const struct sk_buff *skb)
{
sch->qstats.backlog -= qdisc_pkt_len(skb);
}
static inline void qdisc_qstats_backlog_inc(struct Qdisc *sch,
const struct sk_buff *skb)
{
sch->qstats.backlog += qdisc_pkt_len(skb);
}
static inline void __qdisc_qstats_drop(struct Qdisc *sch, int count)
{
sch->qstats.drops += count;
}
static inline void qdisc_qstats_drop(struct Qdisc *sch)
{
sch->qstats.drops++;
}
static inline void kvfree(const void *addr)
{
if (is_vmalloc_addr(addr))
vfree(addr);
else
kfree(addr);
}
#define ktime_get_ns() ktime_to_ns(ktime_get())
#define codel_stats_copy_queue(a,b,c,d) gnet_stats_copy_queue(a,c)
#define codel_watchdog_schedule_ns(a,b,c) qdisc_watchdog_schedule_ns(a,b)
#else
#define codel_stats_copy_queue(a,b,c,d) gnet_stats_copy_queue(a,b,c,d)
#define codel_watchdog_schedule_ns(a,b,c) qdisc_watchdog_schedule_ns(a,b,c)
#endif
#endif