File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2629,6 +2629,7 @@ int dev_get_phys_port_id(struct net_device *dev,
2629
2629
int dev_hard_start_xmit (struct sk_buff * skb , struct net_device * dev ,
2630
2630
struct netdev_queue * txq );
2631
2631
int dev_forward_skb (struct net_device * dev , struct sk_buff * skb );
2632
+ bool is_skb_forwardable (struct net_device * dev , struct sk_buff * skb );
2632
2633
2633
2634
extern int netdev_budget ;
2634
2635
Original file line number Diff line number Diff line change @@ -1640,8 +1640,7 @@ static inline void net_timestamp_set(struct sk_buff *skb)
1640
1640
__net_timestamp(SKB); \
1641
1641
} \
1642
1642
1643
- static inline bool is_skb_forwardable (struct net_device * dev ,
1644
- struct sk_buff * skb )
1643
+ bool is_skb_forwardable (struct net_device * dev , struct sk_buff * skb )
1645
1644
{
1646
1645
unsigned int len ;
1647
1646
@@ -1660,6 +1659,7 @@ static inline bool is_skb_forwardable(struct net_device *dev,
1660
1659
1661
1660
return false;
1662
1661
}
1662
+ EXPORT_SYMBOL_GPL (is_skb_forwardable );
1663
1663
1664
1664
/**
1665
1665
* dev_forward_skb - loopback an skb to another netif
You can’t perform that action at this time.
0 commit comments