Browse Source

msm: ipa: enable multi queue on rmnet_ipa0

Enable multi-queue on rmnet_ipa0 to segregate LL traffic
from default traffic. Default traffic uses rx-0 and LL
traffic uses rx-1.

Change-Id: I438497a44555455721162fc696a3565b3f2cd1b6
Signed-off-by: Chaitanya Pratapa <[email protected]>
Chaitanya Pratapa 3 years ago
parent
commit
ac6f7e39fb
1 changed files with 4 additions and 2 deletions
  1. 4 2
      drivers/platform/msm/ipa/ipa_v3/rmnet_ipa.c

+ 4 - 2
drivers/platform/msm/ipa/ipa_v3/rmnet_ipa.c

@@ -1475,6 +1475,8 @@ static void apps_ipa_packet_receive_notify(void *priv,
 		skb->dev = IPA_NETDEV();
 		skb->protocol = htons(ETH_P_MAP);
 
+		/* default traffic uses rx-0 queue. */
+		skb_record_rx_queue(skb, 0);
 		if (ipa3_rmnet_res.ipa_napi_enable) {
 			trace_rmnet_ipa_netif_rcv_skb3(skb, dev->stats.rx_packets);
 			result = netif_receive_skb(skb);
@@ -3343,10 +3345,10 @@ static int ipa3_wwan_probe(struct platform_device *pdev)
 	}
 
 	/* initialize wan-driver netdev */
-	dev = alloc_netdev(sizeof(struct ipa3_wwan_private),
+	dev = alloc_netdev_mqs(sizeof(struct ipa3_wwan_private),
 			   IPA_WWAN_DEV_NAME,
 			   NET_NAME_UNKNOWN,
-			   ipa3_wwan_setup);
+			   ipa3_wwan_setup, 1, 2);
 	if (!dev) {
 		IPAWANERR("no memory for netdev\n");
 		ret = -ENOMEM;