Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-07 Thread Stefan Hajnoczi
On Wed, Nov 02, 2016 at 05:21:03PM +0100, Cornelia Huck wrote: > Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") > attempted to convert all users of run_on_cpu to use the new > run_on_cpu_data type. It missed to change the called sigp_* routines, > however. Fix that. > > Fixes: 1

Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-07 Thread Fam Zheng
On Mon, 11/07 09:34, Paolo Bonzini wrote: > > > On 07/11/2016 08:36, Fam Zheng wrote: > > On Fri, 11/04 10:06, Paolo Bonzini wrote: > >> > >> > >> On 02/11/2016 17:21, Cornelia Huck wrote: > >>> Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") > >>> attempted to convert all users

Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-07 Thread Paolo Bonzini
On 07/11/2016 08:36, Fam Zheng wrote: > On Fri, 11/04 10:06, Paolo Bonzini wrote: >> >> >> On 02/11/2016 17:21, Cornelia Huck wrote: >>> Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") >>> attempted to convert all users of run_on_cpu to use the new >>> run_on_cpu_data type. It m

Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-06 Thread Fam Zheng
On Fri, 11/04 10:06, Paolo Bonzini wrote: > > > On 02/11/2016 17:21, Cornelia Huck wrote: > > Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") > > attempted to convert all users of run_on_cpu to use the new > > run_on_cpu_data type. It missed to change the called sigp_* routines,

Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-04 Thread Paolo Bonzini
On 02/11/2016 17:21, Cornelia Huck wrote: > Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") > attempted to convert all users of run_on_cpu to use the new > run_on_cpu_data type. It missed to change the called sigp_* routines, > however. Fix that. > > Fixes: 14e6fe12a ("*_run_on

Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-04 Thread Christian Borntraeger
On 11/04/2016 09:23 AM, Christian Borntraeger wrote: > On 11/02/2016 05:21 PM, Cornelia Huck wrote: >> Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") >> attempted to convert all users of run_on_cpu to use the new >> run_on_cpu_data type. It missed to change the called sigp_* rout

Re: [Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-04 Thread Christian Borntraeger
On 11/02/2016 05:21 PM, Cornelia Huck wrote: > Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") > attempted to convert all users of run_on_cpu to use the new > run_on_cpu_data type. It missed to change the called sigp_* routines, > however. Fix that. > > Fixes: 14e6fe12a ("*_run_o

[Qemu-devel] [PATCH] s390x/kvm: fix run_on_cpu sigp conversions

2016-11-02 Thread Cornelia Huck
Commit 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") attempted to convert all users of run_on_cpu to use the new run_on_cpu_data type. It missed to change the called sigp_* routines, however. Fix that. Fixes: 14e6fe12a ("*_run_on_cpu: introduce run_on_cpu_data type") Signed-off-by: Co