All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Initialize ioreq_t in hvmemul_do_io()
@ 2014-05-22 12:48 Paul Durrant
  2014-05-22 13:14 ` Jan Beulich
  0 siblings, 1 reply; 7+ messages in thread
From: Paul Durrant @ 2014-05-22 12:48 UTC (permalink / raw)
  To: xen-devel; +Cc: Andrew Cooper, Paul Durrant, Keir Fraser, Jan Beulich

All relevant fields of the ioreq_t are properly initialized but coverity
complains about vp_eport being uninitialized (ID 1215178) because it is
the subject of a struct copy in hvm_send_assist_req().

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Cc: Keir Fraser <keir@xen.org>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
---
 xen/arch/x86/hvm/emulate.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/arch/x86/hvm/emulate.c b/xen/arch/x86/hvm/emulate.c
index 904c71a..e516194 100644
--- a/xen/arch/x86/hvm/emulate.c
+++ b/xen/arch/x86/hvm/emulate.c
@@ -57,7 +57,7 @@ static int hvmemul_do_io(
     int value_is_ptr = (p_data == NULL);
     struct vcpu *curr = current;
     struct hvm_vcpu_io *vio;
-    ioreq_t p;
+    ioreq_t p = { 0 };
     unsigned long ram_gfn = paddr_to_pfn(ram_gpa);
     p2m_type_t p2mt;
     struct page_info *ram_page;
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-05-22 14:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-22 12:48 [PATCH] Initialize ioreq_t in hvmemul_do_io() Paul Durrant
2014-05-22 13:14 ` Jan Beulich
2014-05-22 13:20   ` Paul Durrant
2014-05-22 13:27     ` Jan Beulich
2014-05-22 13:47       ` Andrew Cooper
2014-05-22 14:01         ` Paul Durrant
2014-05-22 14:08         ` Jan Beulich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.