mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
net/9p: set error to EREMOTEIO if trans->write returns zero
If trans->write returns 0, p9_write_work goes through the error path, but sets the error code to zero. This patch sets the error code to EREMOTEIO if trans->write returns zero value. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
This commit is contained in:
parent
e46662be7f
commit
1d6b560238
@ -505,8 +505,12 @@ again:
|
||||
return;
|
||||
}
|
||||
|
||||
if (err <= 0)
|
||||
if (err < 0)
|
||||
goto error;
|
||||
else if (err == 0) {
|
||||
err = -EREMOTEIO;
|
||||
goto error;
|
||||
}
|
||||
|
||||
m->wpos += err;
|
||||
if (m->wpos == m->wsize)
|
||||
|
Loading…
Reference in New Issue
Block a user