You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
net: Pass a "more" indication down into netdev_start_xmit() code paths.
For now it will always be false. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -259,7 +259,7 @@ static int packet_direct_xmit(struct sk_buff *skb)
|
||||
|
||||
HARD_TX_LOCK(dev, txq, smp_processor_id());
|
||||
if (!netif_xmit_frozen_or_drv_stopped(txq))
|
||||
ret = netdev_start_xmit(skb, dev, txq);
|
||||
ret = netdev_start_xmit(skb, dev, txq, false);
|
||||
HARD_TX_UNLOCK(dev, txq);
|
||||
|
||||
local_bh_enable();
|
||||
|
||||
Reference in New Issue
Block a user