Re: [PATCH] bus: mhi: core: Use current ee in intvec handler for syserr

2021-02-16 Thread Jeffrey Hugo
On 2/16/2021 10:36 AM, Bhaumik Bhatt wrote: On 2021-02-15 11:32 PM, Manivannan Sadhasivam wrote: On Fri, Feb 12, 2021 at 05:40:14PM -0700, Jeffrey Hugo wrote: The intvec handler stores the caches ee in a local variable for use in processing the intvec.  When determining if a syserr is a fatal e

Re: [PATCH] bus: mhi: core: Use current ee in intvec handler for syserr

2021-02-16 Thread Bhaumik Bhatt
On 2021-02-15 11:32 PM, Manivannan Sadhasivam wrote: On Fri, Feb 12, 2021 at 05:40:14PM -0700, Jeffrey Hugo wrote: The intvec handler stores the caches ee in a local variable for use in processing the intvec. When determining if a syserr is a fatal error or not, the intvec handler is using th

Re: [PATCH] bus: mhi: core: Use current ee in intvec handler for syserr

2021-02-15 Thread Manivannan Sadhasivam
On Fri, Feb 12, 2021 at 05:40:14PM -0700, Jeffrey Hugo wrote: > The intvec handler stores the caches ee in a local variable for use in > processing the intvec. When determining if a syserr is a fatal error or > not, the intvec handler is using the cached version, when it should be > using the curr

Re: [PATCH] bus: mhi: core: Use current ee in intvec handler for syserr

2021-02-14 Thread Loic Poulain
On Sat, 13 Feb 2021 at 01:41, Jeffrey Hugo wrote: > > The intvec handler stores the caches ee in a local variable for use in > processing the intvec. When determining if a syserr is a fatal error or > not, the intvec handler is using the cached version, when it should be > using the current ee re

[PATCH] bus: mhi: core: Use current ee in intvec handler for syserr

2021-02-12 Thread Jeffrey Hugo
The intvec handler stores the caches ee in a local variable for use in processing the intvec. When determining if a syserr is a fatal error or not, the intvec handler is using the cached version, when it should be using the current ee read from the device. Currently, the device could be in the PB

Re: [PATCH] bus: mhi: core: Use current ee in intvec handler

2020-05-18 Thread bbhatt
On 2020-05-17 12:38, Jeffrey Hugo wrote: On 5/15/2020 8:58 PM, bbh...@codeaurora.org wrote: On 2020-05-14 19:17, Jeffrey Hugo wrote: The intvec handler stores the caches ee in a local variable for use in processing the intvec.  It should instead use the current ee which is read at the beginnin

Re: [PATCH] bus: mhi: core: Use current ee in intvec handler

2020-05-17 Thread Jeffrey Hugo
On 5/15/2020 8:58 PM, bbh...@codeaurora.org wrote: On 2020-05-14 19:17, Jeffrey Hugo wrote: The intvec handler stores the caches ee in a local variable for use in processing the intvec.  It should instead use the current ee which is read at the beginning of the intvec incase that the intvec is r

Re: [PATCH] bus: mhi: core: Use current ee in intvec handler

2020-05-15 Thread bbhatt
On 2020-05-14 19:17, Jeffrey Hugo wrote: The intvec handler stores the caches ee in a local variable for use in processing the intvec. It should instead use the current ee which is read at the beginning of the intvec incase that the intvec is related to an ee change. Otherwise, the handler mi

[PATCH] bus: mhi: core: Use current ee in intvec handler

2020-05-14 Thread Jeffrey Hugo
The intvec handler stores the caches ee in a local variable for use in processing the intvec. It should instead use the current ee which is read at the beginning of the intvec incase that the intvec is related to an ee change. Otherwise, the handler might make the wrong decision based on an incor