mirror of https://gitee.com/openkylin/qemu.git
9pfs: fix v9fs_lock error case
In this case, we are marshaling an error status instead of the errno value. Reorganize the out and out_nofid labels to look like all the other cases. Coverity reports this because the "err = -ENOENT" and "err = -EINVAL" assignments above are dead, overwritten by the call to pdu_marshal. (Coverity issues CID1348512 and CID1348513) Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> (also open-coded the success path since locking is a nop for us, Greg Kurz) Signed-off-by: Greg Kurz <groug@kaod.org>
This commit is contained in:
parent
9b9fbe8a4e
commit
4bae2b397f
14
hw/9pfs/9p.c
14
hw/9pfs/9p.c
|
@ -3010,7 +3010,6 @@ out_nofid:
|
||||||
*/
|
*/
|
||||||
static void coroutine_fn v9fs_lock(void *opaque)
|
static void coroutine_fn v9fs_lock(void *opaque)
|
||||||
{
|
{
|
||||||
int8_t status;
|
|
||||||
V9fsFlock flock;
|
V9fsFlock flock;
|
||||||
size_t offset = 7;
|
size_t offset = 7;
|
||||||
struct stat stbuf;
|
struct stat stbuf;
|
||||||
|
@ -3018,7 +3017,6 @@ static void coroutine_fn v9fs_lock(void *opaque)
|
||||||
int32_t fid, err = 0;
|
int32_t fid, err = 0;
|
||||||
V9fsPDU *pdu = opaque;
|
V9fsPDU *pdu = opaque;
|
||||||
|
|
||||||
status = P9_LOCK_ERROR;
|
|
||||||
v9fs_string_init(&flock.client_id);
|
v9fs_string_init(&flock.client_id);
|
||||||
err = pdu_unmarshal(pdu, offset, "dbdqqds", &fid, &flock.type,
|
err = pdu_unmarshal(pdu, offset, "dbdqqds", &fid, &flock.type,
|
||||||
&flock.flags, &flock.start, &flock.length,
|
&flock.flags, &flock.start, &flock.length,
|
||||||
|
@ -3044,15 +3042,15 @@ static void coroutine_fn v9fs_lock(void *opaque)
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
status = P9_LOCK_SUCCESS;
|
err = pdu_marshal(pdu, offset, "b", P9_LOCK_SUCCESS);
|
||||||
|
if (err < 0) {
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
err += offset;
|
||||||
|
trace_v9fs_lock_return(pdu->tag, pdu->id, P9_LOCK_SUCCESS);
|
||||||
out:
|
out:
|
||||||
put_fid(pdu, fidp);
|
put_fid(pdu, fidp);
|
||||||
out_nofid:
|
out_nofid:
|
||||||
err = pdu_marshal(pdu, offset, "b", status);
|
|
||||||
if (err > 0) {
|
|
||||||
err += offset;
|
|
||||||
}
|
|
||||||
trace_v9fs_lock_return(pdu->tag, pdu->id, status);
|
|
||||||
pdu_complete(pdu, err);
|
pdu_complete(pdu, err);
|
||||||
v9fs_string_free(&flock.client_id);
|
v9fs_string_free(&flock.client_id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue