From: Bjorn Andersson Date: Fri, 2 Dec 2016 00:59:55 +0000 (-0800) Subject: rpmsg: qcom_smd: Correct return value for O_NONBLOCK X-Git-Tag: v4.10-rc1~162^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d74e7ed5dc1903ac081574a9b6aa94e7ba4ad45;p=thirdparty%2Fkernel%2Flinux.git rpmsg: qcom_smd: Correct return value for O_NONBLOCK qcom_smd_send() should return -EAGAIN for non-blocking channels with insufficient space, so that we can propagate this event to user space. Fixes: 53e2822e56c7 ("rpmsg: Introduce Qualcomm SMD backend") Signed-off-by: Bjorn Andersson --- diff --git a/drivers/rpmsg/qcom_smd.c b/drivers/rpmsg/qcom_smd.c index 92efa74a0024d..d003aa832f227 100644 --- a/drivers/rpmsg/qcom_smd.c +++ b/drivers/rpmsg/qcom_smd.c @@ -739,7 +739,7 @@ static int __qcom_smd_send(struct qcom_smd_channel *channel, const void *data, while (qcom_smd_get_tx_avail(channel) < tlen) { if (!wait) { - ret = -ENOMEM; + ret = -EAGAIN; goto out; }