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

Commit 858541d2 authored by Ravi Gummadidala's avatar Ravi Gummadidala Committed by Gerrit - the friendly Code Review server
Browse files

msm: ipa: un-pin IPA RX from core 0



RPS will be used to ensure in-order packet delivery so
remove the pinning to avoid constraining the scheduler.

Change-Id: Ifdbe9c437caa341569f91d63e697c8126ddef414
Signed-off-by: default avatarRavi Gummadidala <rgummadi@codeaurora.org>
parent 169417fe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -860,7 +860,7 @@ static void ipa_sps_irq_rx_notify(struct sps_event_notify *notify)
				break;
			}
			atomic_set(&sys->curr_polling_state, 1);
			queue_work_on(0, sys->wq, &sys->work);
			queue_work(sys->wq, &sys->work);
		}
		break;
	default:
@@ -1004,7 +1004,7 @@ int ipa_setup_sys_pipe(struct ipa_sys_connect_params *sys_in, u32 *clnt_hdl)
		snprintf(buff, IPA_RESOURCE_NAME_MAX, "ipawq%d",
				sys_in->client);
		ep->sys->wq = alloc_workqueue(buff,
				WQ_MEM_RECLAIM | WQ_CPU_INTENSIVE, 1);
				WQ_MEM_RECLAIM | WQ_UNBOUND, 1);
		if (!ep->sys->wq) {
			IPAERR("failed to create wq for client %d\n",
					sys_in->client);