diff options
author | David S. Miller <davem@davemloft.net> | 2014-08-30 08:55:22 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-02 04:39:55 +0400 |
commit | fa2dbdc253c2aee2a760c64de454cb62469ec11d (patch) | |
tree | ddae689033890a3fd32e01c4d022349f6cbab673 /net/atm | |
parent | 7f2e870f2a48a0524a3b03b04fa019311d16a7f7 (diff) | |
download | linux-fa2dbdc253c2aee2a760c64de454cb62469ec11d.tar.xz |
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>
Diffstat (limited to 'net/atm')
-rw-r--r-- | net/atm/mpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/mpc.c b/net/atm/mpc.c index d662da161e5a..0e982222d425 100644 --- a/net/atm/mpc.c +++ b/net/atm/mpc.c @@ -599,7 +599,7 @@ static netdev_tx_t mpc_send_packet(struct sk_buff *skb, } non_ip: - return __netdev_start_xmit(mpc->old_ops, skb, dev); + return __netdev_start_xmit(mpc->old_ops, skb, dev, false); } static int atm_mpoa_vcc_attach(struct atm_vcc *vcc, void __user *arg) |