Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6864aa16 authored by Sujeet Kumar's avatar Sujeet Kumar Committed by Matt Wagantall
Browse files

Revert "usb: gadget: u_ether: Fix Out-of-order packets in UL bi-dir in RNDIS mode"



This reverts commit 1903c01ceed90272c09b85d4c2d3d100143ba432.

Revert this change which cause only to queue rx packets to
cpu0. RPS cpu mask is enabled to queue the rx packets
only to power cluster.

Change-Id: I287a194cfc699423230bc057c832ea8655691078
Signed-off-by: default avatarSujeet Kumar <ksujeet@codeaurora.org>
parent 25cc3ee3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -459,7 +459,7 @@ clean:
	}

	if (queue)
		queue_work_on(0, uether_wq, &dev->rx_work);
		queue_work(uether_wq, &dev->rx_work);
}

static int prealloc(struct list_head *list,
@@ -2235,7 +2235,7 @@ static void uether_debugfs_exit(struct eth_dev *dev)

static int __init gether_init(void)
{
	uether_wq = alloc_workqueue("uether", WQ_CPU_INTENSIVE, 1);
	uether_wq  = create_singlethread_workqueue("uether");
	if (!uether_wq) {
		pr_err("%s: Unable to create workqueue: uether\n", __func__);
		return -ENOMEM;