Re: [Qemu-devel] [PULL 03/15] i386: avoid null pointer dereference

2016-01-15 Thread Paolo Bonzini
On 15/01/2016 20:46, P J P wrote: > +-- On Fri, 15 Jan 2016, Paolo Bonzini wrote --+ > | This is probably due to the original patch being formatted badly, and > > Sorry! Should I resend it? No, it's okay. Paolo

Re: [Qemu-devel] [PULL 03/15] i386: avoid null pointer dereference

2016-01-15 Thread P J P
+-- On Fri, 15 Jan 2016, Paolo Bonzini wrote --+ | This is probably due to the original patch being formatted badly, and Sorry! Should I resend it? -- Prasad J Pandit / Red Hat Product Security Team 47AF CE69 3A90 54AA 9045 1053 DD13 3D32 FE5B 041F

Re: [Qemu-devel] [PULL 03/15] i386: avoid null pointer dereference

2016-01-15 Thread Paolo Bonzini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 15/01/2016 17:53, Eric Blake wrote: > Did 'git send-email' get confused? This has no contents, and then > there is a message "[Qemu-devel] [PULL] i386: avoid null pointer > dereference" with no mention of where it fits in the series > (presumabl

Re: [Qemu-devel] [PULL 03/15] i386: avoid null pointer dereference

2016-01-15 Thread Eric Blake
Did 'git send-email' get confused? This has no contents, and then there is a message "[Qemu-devel] [PULL] i386: avoid null pointer dereference" with no mention of where it fits in the series (presumably 3/15). On 01/15/2016 09:04 AM, Paolo Bonzini wrote: > From: P J P > > Hello, > > A null

[Qemu-devel] [PULL 03/15] i386: avoid null pointer dereference

2016-01-15 Thread Paolo Bonzini
From: P J P Hello, A null pointer dereference issue was reported by Mr Ling Liu, CC'd here. It occurs while doing I/O port write operations via hmp interface. In that, 'current_cpu' remains null as it is not called from cpu_exec loop, which results in the said issue. Below is a proposed (te