|
@@ -1544,20 +1544,6 @@ static void hdd_resolve_rx_ol_mode(struct hdd_context *hdd_ctx)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * When bus bandwidth is idle, if RX data is delivered with
|
|
|
- * napi_gro_receive, to reduce RX delay related with GRO,
|
|
|
- * check gro_result returned from napi_gro_receive to determine
|
|
|
- * is extra GRO flush still necessary.
|
|
|
- */
|
|
|
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0))
|
|
|
-#define HDD_IS_EXTRA_GRO_FLUSH_NECESSARY(_gro_ret) \
|
|
|
- ((_gro_ret) != GRO_DROP)
|
|
|
-#else
|
|
|
-#define HDD_IS_EXTRA_GRO_FLUSH_NECESSARY(_gro_ret) \
|
|
|
- ((_gro_ret) != GRO_DROP && (_gro_ret) != GRO_NORMAL)
|
|
|
-#endif
|
|
|
-
|
|
|
/**
|
|
|
* hdd_gro_rx_bh_disable() - GRO RX/flush function.
|
|
|
* @napi_to_use: napi to be used to give packets to the stack, gro flush
|
|
@@ -1577,23 +1563,23 @@ static QDF_STATUS hdd_gro_rx_bh_disable(struct hdd_adapter *adapter,
|
|
|
{
|
|
|
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
struct hdd_context *hdd_ctx = adapter->hdd_ctx;
|
|
|
- gro_result_t gro_ret;
|
|
|
+ gro_result_t gro_res;
|
|
|
|
|
|
skb_set_hash(skb, QDF_NBUF_CB_RX_FLOW_ID(skb), PKT_HASH_TYPE_L4);
|
|
|
|
|
|
local_bh_disable();
|
|
|
- gro_ret = napi_gro_receive(napi_to_use, skb);
|
|
|
+ gro_res = napi_gro_receive(napi_to_use, skb);
|
|
|
|
|
|
if (hdd_get_current_throughput_level(hdd_ctx) == PLD_BUS_WIDTH_IDLE) {
|
|
|
- if (HDD_IS_EXTRA_GRO_FLUSH_NECESSARY(gro_ret)) {
|
|
|
+ if (gro_res != GRO_DROP && gro_res != GRO_NORMAL) {
|
|
|
adapter->hdd_stats.tx_rx_stats.
|
|
|
rx_gro_low_tput_flush++;
|
|
|
- dp_rx_napi_gro_flush(napi_to_use);
|
|
|
+ napi_gro_flush(napi_to_use, false);
|
|
|
}
|
|
|
}
|
|
|
local_bh_enable();
|
|
|
|
|
|
- if (gro_ret == GRO_DROP)
|
|
|
+ if (gro_res == GRO_DROP)
|
|
|
status = QDF_STATUS_E_GRO_DROP;
|
|
|
|
|
|
return status;
|
|
@@ -1696,7 +1682,7 @@ static void hdd_rxthread_napi_gro_flush(void *data)
|
|
|
* As we are breaking context in Rxthread mode, there is rx_thread NAPI
|
|
|
* corresponds each hif_napi.
|
|
|
*/
|
|
|
- dp_rx_napi_gro_flush(&qca_napii->rx_thread_napi);
|
|
|
+ napi_gro_flush(&qca_napii->rx_thread_napi, false);
|
|
|
local_bh_enable();
|
|
|
}
|
|
|
|