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

Commit 408bae0a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa3: fix ipa3_suspend_active_aggr_wa non atomic allocation"

parents 52564c56 f26b638e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -516,7 +516,7 @@ void ipa3_suspend_active_aggr_wa(u32 clnt_hdl)
		}
		suspend_interrupt_data = kzalloc(
				sizeof(*suspend_interrupt_data),
				GFP_KERNEL);
				GFP_ATOMIC);
		if (!suspend_interrupt_data) {
			IPAERR("failed allocating suspend_interrupt_data\n");
			return;
@@ -524,7 +524,7 @@ void ipa3_suspend_active_aggr_wa(u32 clnt_hdl)
		suspend_interrupt_data->endpoints = 1 << clnt_hdl;

		work_data = kzalloc(sizeof(struct ipa3_interrupt_work_wrap),
				GFP_KERNEL);
				GFP_ATOMIC);
		if (!work_data) {
			IPAERR("failed allocating ipa3_interrupt_work_wrap\n");
			goto fail_alloc_work;