Commit 760edee8 authored by Samudrala, Sridhar's avatar Samudrala, Sridhar Committed by David S. Miller
Browse files

net: sched: Move TCA_CLS_FLAGS_SKIP_HW to uapi header file.

parent 860d7ef6
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -392,9 +392,6 @@ struct tc_cls_u32_offload {
	};
	};
};
};


/* tca flags definitions */
#define TCA_CLS_FLAGS_SKIP_HW 1

static inline bool tc_should_offload(struct net_device *dev, u32 flags)
static inline bool tc_should_offload(struct net_device *dev, u32 flags)
{
{
	if (!(dev->features & NETIF_F_HW_TC))
	if (!(dev->features & NETIF_F_HW_TC))
+3 −0
Original line number Original line Diff line number Diff line
@@ -151,6 +151,9 @@ enum {


#define TCA_POLICE_MAX (__TCA_POLICE_MAX - 1)
#define TCA_POLICE_MAX (__TCA_POLICE_MAX - 1)


/* tca flags definitions */
#define TCA_CLS_FLAGS_SKIP_HW	(1 << 0)

/* U32 filters */
/* U32 filters */


#define TC_U32_HTID(h) ((h)&0xFFF00000)
#define TC_U32_HTID(h) ((h)&0xFFF00000)