Skip to content

Commit

Permalink
Merge pull request #160 from jickding/master
Browse files Browse the repository at this point in the history
support for kernel 5.0.0-8 (ubunt 19.04 beta)
  • Loading branch information
gnab committed Dec 12, 2019
2 parents f8c8954 + 0abd99c commit 9cf9443
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions os_dep/linux/os_intfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,13 @@ unsigned int rtw_classify8021d(struct sk_buff *skb)
return dscp >> 5;
}


#if (LINUX_VERSION_CODE>=KERNEL_VERSION(4,19,0))
static u16 rtw_select_queue(struct net_device *dev, struct sk_buff *skb,
struct net_device *sb_dev,
select_queue_fallback_t fallback
#else

static u16 rtw_select_queue(struct net_device *dev, struct sk_buff *skb
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0)
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 19, 0)
Expand All @@ -1020,6 +1027,8 @@ static u16 rtw_select_queue(struct net_device *dev, struct sk_buff *skb
, select_queue_fallback_t fallback
#endif
#endif

#endif
){
_adapter *padapter = rtw_netdev_priv(dev);
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
Expand Down

0 comments on commit 9cf9443

Please sign in to comment.