Re: [Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Tamas K Lengyel
On Thu, Feb 18, 2016 at 7:18 AM, Andrew Cooper wrote: > On 18/02/16 14:16, Razvan Cojocaru wrote: > > On 02/18/2016 04:10 PM, Tamas K Lengyel wrote: > >> On Feb 18, 2016 03:46, "Razvan Cojocaru" >> > wrote:

Re: [Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Andrew Cooper
On 18/02/16 14:16, Razvan Cojocaru wrote: > On 02/18/2016 04:10 PM, Tamas K Lengyel wrote: >> On Feb 18, 2016 03:46, "Razvan Cojocaru" > > wrote: >>> On 02/18/2016 12:45 PM, Corneliu ZUZU wrote: c/s f5365e6: "xen/vm-events: Move

Re: [Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Razvan Cojocaru
On 02/18/2016 04:10 PM, Tamas K Lengyel wrote: > > On Feb 18, 2016 03:46, "Razvan Cojocaru" > wrote: >> >> On 02/18/2016 12:45 PM, Corneliu ZUZU wrote: >> > c/s f5365e6: "xen/vm-events: Move parts of monitor_domctl code to >

Re: [Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Tamas K Lengyel
On Feb 18, 2016 03:46, "Razvan Cojocaru" wrote: > > On 02/18/2016 12:45 PM, Corneliu ZUZU wrote: > > c/s f5365e6: "xen/vm-events: Move parts of monitor_domctl code to common-side", > > introduced a use without initialization issue. > > hvm_event_breakpoint calls

Re: [Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Andrew Cooper
On 18/02/16 10:45, Corneliu ZUZU wrote: > c/s f5365e6: "xen/vm-events: Move parts of monitor_domctl code to > common-side", > introduced a use without initialization issue. > hvm_event_breakpoint calls hvm_event_traps() and if sync is true that > ors some bits into req->flags which was never

Re: [Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Razvan Cojocaru
On 02/18/2016 12:45 PM, Corneliu ZUZU wrote: > c/s f5365e6: "xen/vm-events: Move parts of monitor_domctl code to > common-side", > introduced a use without initialization issue. > hvm_event_breakpoint calls hvm_event_traps() and if sync is true that > ors some bits into req->flags which was never

[Xen-devel] [PATCH] x86/hvm_event: fix uninitialized struct field usage introduced by c/s f5365e6

2016-02-18 Thread Corneliu ZUZU
c/s f5365e6: "xen/vm-events: Move parts of monitor_domctl code to common-side", introduced a use without initialization issue. hvm_event_breakpoint calls hvm_event_traps() and if sync is true that ors some bits into req->flags which was never initialised. Reported by Coverity Scan. Initializes