rpmsg: native: Increase iterations count in glink ISR

Currently, if APPS sends more than 10 requests to RPM, glink
hard interrupt service function is unable to process more than 10
acknowledgements.

Increase the loop iterations to 15 to process up to 15 acknowledgements
in the hard interrupt context.

Change-Id: Ief7385f21d5853275a2b90438181c93a01c76f78
Signed-off-by: Pranav Mahesh Phansalkar <quic_pphansal@quicinc.com>
This commit is contained in:
Pranav Mahesh Phansalkar 2024-08-07 13:52:53 +05:30 committed by Pranav Phansalkar
parent a4f519bcfe
commit a3589d370c

View File

@ -1630,7 +1630,7 @@ static irqreturn_t qcom_glink_native_intr(int irq, void *data)
struct qcom_glink *glink = data;
int ret;
ret = qcom_glink_native_rx(glink, 10);
ret = qcom_glink_native_rx(glink, 15);
return (ret) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
}