34 #ifndef __INCLUDE_RTE_SCHED_COMMON_H__
35 #define __INCLUDE_RTE_SCHED_COMMON_H__
41 #include <sys/types.h>
43 #define __rte_aligned_16 __attribute__((__aligned__(16)))
45 static inline uint32_t
46 rte_sched_min_val_2_u32(uint32_t x, uint32_t y)
48 return (x < y)? x : y;
52 static inline uint32_t
53 rte_min_pos_4_u16(uint16_t *x)
57 pos0 = (x[0] <= x[1])? 0 : 1;
58 pos1 = (x[2] <= x[3])? 2 : 3;
60 return (x[pos0] <= x[pos1])? pos0 : pos1;
66 static inline uint32_t
67 rte_min_pos_4_u16(uint16_t *x)
72 if (x[1] <= x[0]) pos0 = 1;
73 if (x[3] <= x[2]) pos1 = 3;
74 if (x[pos1] <= x[pos0]) pos0 = pos1;
88 static inline uint32_t
89 rte_get_gcd(uint32_t a, uint32_t b)
119 static inline uint32_t
120 rte_get_lcd(uint32_t a, uint32_t b)
122 return (a * b) / rte_get_gcd(a, b);