]> git.baikalelectronics.ru Git - kernel.git/commitdiff
sfc: remove duplicate declaration of efx_enqueue_skb_tso()
authorEdward Cree <ecree@solarflare.com>
Tue, 30 Jun 2020 12:12:49 +0000 (13:12 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 30 Jun 2020 20:09:09 +0000 (13:09 -0700)
Define it in nic_common.h, even though the ef100 driver will have a
 different implementation backing it (actually a WARN_ON_ONCE as it
 should never get called by ef100.  But it needs to still exist because
 common TX path code references it).

Signed-off-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/nic.h
drivers/net/ethernet/sfc/nic_common.h
drivers/net/ethernet/sfc/tx.h
drivers/net/ethernet/sfc/tx_common.c

index c24dc55532c2fff39ea448feb7fbe26de927aa38..724e2776b585866290fa60d537db4faf358e5de2 100644 (file)
@@ -306,9 +306,6 @@ extern const struct efx_nic_type efx_hunt_a0_vf_nic_type;
 
 int falcon_probe_board(struct efx_nic *efx, u16 revision_info);
 
-int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue, struct sk_buff *skb,
-                       bool *data_mapped);
-
 /* Falcon/Siena queue operations */
 int efx_farch_tx_probe(struct efx_tx_queue *tx_queue);
 void efx_farch_tx_init(struct efx_tx_queue *tx_queue);
index e90ce85359cb88eb20d0690e1b02b6776ce07e4d..8d0d163afc0d48a5a7be09f953581a19035e4808 100644 (file)
@@ -110,6 +110,9 @@ static inline bool efx_nic_may_tx_pio(struct efx_tx_queue *tx_queue)
               efx_nic_tx_is_empty(partner);
 }
 
+int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue, struct sk_buff *skb,
+                       bool *data_mapped);
+
 /* Decide whether to push a TX descriptor to the NIC vs merely writing
  * the doorbell.  This can reduce latency when we are adding a single
  * descriptor to an empty queue, but is otherwise pointless.  Further,
index e04d5ddeb32c39cb4013359eff1a2cbfe3632f49..a3cf06c5570dba62f02591161587ca6c3a6eb864 100644 (file)
@@ -18,7 +18,4 @@ unsigned int efx_tx_limit_len(struct efx_tx_queue *tx_queue,
 u8 *efx_tx_get_copy_buffer_limited(struct efx_tx_queue *tx_queue,
                                   struct efx_tx_buffer *buffer, size_t len);
 
-int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue, struct sk_buff *skb,
-                       bool *data_mapped);
-
 #endif /* EFX_TX_H */
index 9a005e7c2c681e3688a9df43cecbb85bcec6f8a3..6ac19daa891afd3031e9bb08dd828b33344684e2 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "net_driver.h"
 #include "efx.h"
-#include "nic.h"
+#include "nic_common.h"
 #include "tx_common.h"
 
 static unsigned int efx_tx_cb_page_count(struct efx_tx_queue *tx_queue)