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

Commit 2b45ef8a authored by Sujeet Kumar's avatar Sujeet Kumar
Browse files

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



This reverts commit 1903c01c.

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 b3dc3104
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -464,7 +464,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,
@@ -2012,7 +2012,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;