* [PATCH] xen: unitialised return value in xenbus_write_transaction
@ 2009-01-24 8:22 Ian Campbell
2009-01-26 13:29 ` Ingo Molnar
0 siblings, 1 reply; 2+ messages in thread
From: Ian Campbell @ 2009-01-24 8:22 UTC (permalink / raw)
To: linux-kernel, xen-devel; +Cc: Adam Wendt, Jeremy Fitzhardinge, Ingo Molnar
The return value of xenbus_write_transaction can be uninitialised in
the success case leading to the userspace xenstore utilities failing.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Cc: Adam Wendt <thelsdj@gmail.com>
Cc: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Ingo Molnar <mingo@elte.hu>
---
drivers/xen/xenfs/xenbus.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff -r 7c66d3ac6805 -r 03f51a1eb4a7 drivers/xen/xenfs/xenbus.c
--- a/drivers/xen/xenfs/xenbus.c Fri Jan 23 16:42:41 2009 +0000
+++ b/drivers/xen/xenfs/xenbus.c Fri Jan 23 16:42:41 2009 +0000
@@ -291,7 +291,7 @@
static int xenbus_write_transaction(unsigned msg_type,
struct xenbus_file_priv *u)
{
- int rc, ret;
+ int rc;
void *reply;
struct xenbus_transaction_holder *trans = NULL;
LIST_HEAD(staging_q);
@@ -326,15 +326,14 @@
}
mutex_lock(&u->reply_mutex);
- ret = queue_reply(&staging_q, &u->u.msg, sizeof(u->u.msg));
- if (!ret)
- ret = queue_reply(&staging_q, reply, u->u.msg.len);
- if (!ret) {
+ rc = queue_reply(&staging_q, &u->u.msg, sizeof(u->u.msg));
+ if (!rc)
+ rc = queue_reply(&staging_q, reply, u->u.msg.len);
+ if (!rc) {
list_splice_tail(&staging_q, &u->read_buffers);
wake_up(&u->read_waitq);
} else {
queue_cleanup(&staging_q);
- rc = ret;
}
mutex_unlock(&u->reply_mutex);
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] xen: unitialised return value in xenbus_write_transaction
2009-01-24 8:22 [PATCH] xen: unitialised return value in xenbus_write_transaction Ian Campbell
@ 2009-01-26 13:29 ` Ingo Molnar
0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2009-01-26 13:29 UTC (permalink / raw)
To: Ian Campbell; +Cc: linux-kernel, xen-devel, Adam Wendt, Jeremy Fitzhardinge
* Ian Campbell <ian.campbell@citrix.com> wrote:
> The return value of xenbus_write_transaction can be uninitialised in
> the success case leading to the userspace xenstore utilities failing.
>
> Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
> Cc: Adam Wendt <thelsdj@gmail.com>
> Cc: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
> Cc: Ingo Molnar <mingo@elte.hu>
>
> ---
> drivers/xen/xenfs/xenbus.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
applied to tip/x86/urgent, thanks Ian!
Ingo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-26 13:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-24 8:22 [PATCH] xen: unitialised return value in xenbus_write_transaction Ian Campbell
2009-01-26 13:29 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®