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

Commit dab15ad3 authored by Sivan Reinstein's avatar Sivan Reinstein
Browse files

msm: ipa: ignore IPA TAG process timeout failure in SSR clean-up



This change ignores a case where TAG process times out during
SSR  clean-up procedure to avoid crashing the target.

Change-Id: I2cd1aabedd8e0f911d5b145349845e9e5701c7c9
Acked-by: default avatarDavid Arinzon <darinzon@qti.qualcomm.com>
Signed-off-by: default avatarSivan Reinsten <sivanr@codeaurora.org>
parent 030f0a70
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -1497,6 +1497,10 @@ static int ipa_q6_set_ex_path_dis_agg(void)
				kfree(desc[index].user1);
				kfree(desc[index].user1);
			retval = -EINVAL;
			retval = -EINVAL;
		}
		}

		/* Ignoring TAG process timeout */
		if (retval == -ETIME)
			retval = 0;
	}
	}


	kfree(desc);
	kfree(desc);