@@ -815,8 +815,8 @@ static int qcom_smd_channel_open(struct qcom_smd_channel *channel,
/* Wait for remote to enter opening or opened */
ret = wait_event_interruptible_timeout(channel->state_change_event,
- channel->remote_state == SMD_CHANNEL_OPENING ||
- channel->remote_state == SMD_CHANNEL_OPENED,
+ GET_RX_CHANNEL_INFO(channel, state) == SMD_CHANNEL_OPENING ||
+ GET_RX_CHANNEL_INFO(channel, state) == SMD_CHANNEL_OPENED,
HZ);
if (!ret) {
dev_err(&edge->dev, "remote side did not enter opening state\n");
@@ -827,7 +827,7 @@ static int qcom_smd_channel_open(struct qcom_smd_channel *channel,
/* Wait for remote to enter opened */
ret = wait_event_interruptible_timeout(channel->state_change_event,
- channel->remote_state == SMD_CHANNEL_OPENED,
+ GET_RX_CHANNEL_INFO(channel, state) == SMD_CHANNEL_OPENED,
HZ);
if (!ret) {
dev_err(&edge->dev, "remote side did not enter open state\n");
In some cases the remote processor does not trigger an interrupt when transitioning a channel from OPENING to OPENED state and as such the value of the cached "remote_state" will be stale. Read the state directly from the "channel info" while waiting for the remote to negotiate the channel state in order to remove false negatives due to this. Fixes: 268105fbc0f8 ("rpmsg: smd: Perform handshake during open") Reported-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> --- drivers/rpmsg/qcom_smd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.16.2