* [Qemu-devel] [PATCH] In v9fs_remove_post_remove() we currently ignore the error returned by
@ 2010-06-03 15:38 Sripathi Kodi
2010-06-04 4:38 ` [Qemu-devel] [PATCH] virtio-9p: Return correct error from v9fs_remove Sripathi Kodi
0 siblings, 1 reply; 2+ messages in thread
From: Sripathi Kodi @ 2010-06-03 15:38 UTC (permalink / raw)
To: qemu-devel; +Cc: aneesh.kumar
the previous call to remove() and return an error only if freeing the
fid fails. However, the client expects to see the error from remove().
Currently the client falsely thinks that the remove call has always
succeeded. For example, doing rmdir on a non-empty directory does
not return ENOTEMPTY.
With this patch we ignore the error from free_fid(). The client cannot
use this error value anyway.
Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com>
---
hw/virtio-9p.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index e5d0112..999c0d5 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1943,14 +1943,15 @@ typedef struct V9fsRemoveState {
static void v9fs_remove_post_remove(V9fsState *s, V9fsRemoveState *vs,
int err)
{
- /* For TREMOVE we need to clunk the fid even on failed remove */
- err = free_fid(s, vs->fidp->fid);
if (err < 0) {
- goto out;
+ err = -errno;
+ } else {
+ err = vs->offset;
}
- err = vs->offset;
-out:
+ /* For TREMOVE we need to clunk the fid even on failed remove */
+ free_fid(s, vs->fidp->fid);
+
complete_pdu(s, vs->pdu, err);
qemu_free(vs);
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Qemu-devel] [PATCH] virtio-9p: Return correct error from v9fs_remove
2010-06-03 15:38 [Qemu-devel] [PATCH] In v9fs_remove_post_remove() we currently ignore the error returned by Sripathi Kodi
@ 2010-06-04 4:38 ` Sripathi Kodi
0 siblings, 0 replies; 2+ messages in thread
From: Sripathi Kodi @ 2010-06-04 4:38 UTC (permalink / raw)
To: qemu-devel; +Cc: aneesh.kumar
This patch got mangled last time. Resending.
virtio-9p: Return correct error from v9fs_remove
In v9fs_remove_post_remove() we currently ignore the error returned by
the previous call to remove() and return an error only if freeing the
fid fails. However, the client expects to see the error from remove().
Currently the client falsely thinks that the remove call has always
succeeded. For example, doing rmdir on a non-empty directory does
not return ENOTEMPTY.
With this patch we ignore the error from free_fid(). The client cannot
use this error value anyway.
Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com>
---
hw/virtio-9p.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index e5d0112..999c0d5 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1943,14 +1943,15 @@ typedef struct V9fsRemoveState {
static void v9fs_remove_post_remove(V9fsState *s, V9fsRemoveState *vs,
int err)
{
- /* For TREMOVE we need to clunk the fid even on failed remove */
- err = free_fid(s, vs->fidp->fid);
if (err < 0) {
- goto out;
+ err = -errno;
+ } else {
+ err = vs->offset;
}
- err = vs->offset;
-out:
+ /* For TREMOVE we need to clunk the fid even on failed remove */
+ free_fid(s, vs->fidp->fid);
+
complete_pdu(s, vs->pdu, err);
qemu_free(vs);
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-04 4:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-03 15:38 [Qemu-devel] [PATCH] In v9fs_remove_post_remove() we currently ignore the error returned by Sripathi Kodi
2010-06-04 4:38 ` [Qemu-devel] [PATCH] virtio-9p: Return correct error from v9fs_remove Sripathi Kodi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).