Re: [PATCHv3 0/2]

2025-02-28 Thread Lei Yang
Hi Keith V3 introduced a new bug, the following error messages from qemu output after applying this patch to boot up a guest. Error messages: error: kvm run failed Invalid argument error: kvm run failed Invalid argument EAX= EBX= ECX= EDX=000806f4 ESI= EDI=

Re: [PATCHv3 0/2]

2025-02-28 Thread Sean Christopherson
On Fri, Feb 28, 2025, Lei Yang wrote: > Hi Keith > > V3 introduced a new bug, the following error messages from qemu output > after applying this patch to boot up a guest. Doh, my bug. Not yet tested, but this should fix things. Assuming it does, I'll post a v3 so I can add my SoB. diff --git

Re: [PATCHv3 0/2]

2025-02-28 Thread Sean Christopherson
On Fri, Feb 28, 2025, Paolo Bonzini wrote: > On 2/28/25 16:36, Keith Busch wrote: > > On Fri, Feb 28, 2025 at 07:29:45AM -0800, Sean Christopherson wrote: > > > On Fri, Feb 28, 2025, Keith Busch wrote: > > > > On Fri, Feb 28, 2025 at 06:32:47AM -0800, Sean Christopherson wrote: > > > > > > @@ -35,1

Re: [PATCHv3 1/2] vhost: return task creation error instead of NULL

2025-02-28 Thread Mike Christie
On 2/27/25 5:06 PM, Keith Busch wrote: > From: Keith Busch > > Lets callers distinguish why the vhost task creation failed. No one > currently cares why it failed, so no real runtime change from this > patch, but that will not be the case for long. > > Signed-off-by: Keith Busch > --- > arch/x

Re: [PATCHv3 0/2]

2025-02-28 Thread Paolo Bonzini
On 2/28/25 16:36, Keith Busch wrote: On Fri, Feb 28, 2025 at 07:29:45AM -0800, Sean Christopherson wrote: On Fri, Feb 28, 2025, Keith Busch wrote: On Fri, Feb 28, 2025 at 06:32:47AM -0800, Sean Christopherson wrote: @@ -35,10 +35,12 @@ static inline int call_once(struct once *once, int (*cb)(

Re: [PATCHv3 0/2]

2025-02-28 Thread Keith Busch
On Fri, Feb 28, 2025 at 06:32:47AM -0800, Sean Christopherson wrote: > On Fri, Feb 28, 2025, Sean Christopherson wrote: > > On Fri, Feb 28, 2025, Lei Yang wrote: > > > Hi Keith > > > > > > V3 introduced a new bug, the following error messages from qemu output > > > after applying this patch to boo

Re: [PATCHv3 0/2]

2025-02-28 Thread Sean Christopherson
On Fri, Feb 28, 2025, Keith Busch wrote: > On Fri, Feb 28, 2025 at 06:32:47AM -0800, Sean Christopherson wrote: > > > diff --git a/include/linux/call_once.h b/include/linux/call_once.h > > > index ddcfd91493ea..b053f4701c94 100644 > > > --- a/include/linux/call_once.h > > > +++ b/include/linux/call

Re: [PATCHv3 0/2]

2025-02-28 Thread Keith Busch
On Fri, Feb 28, 2025 at 07:29:45AM -0800, Sean Christopherson wrote: > On Fri, Feb 28, 2025, Keith Busch wrote: > > On Fri, Feb 28, 2025 at 06:32:47AM -0800, Sean Christopherson wrote: > > > > @@ -35,10 +35,12 @@ static inline int call_once(struct once *once, int > > > > (*cb)(struct once *)) > >

Re: [PATCHv3 0/2]

2025-02-28 Thread Sean Christopherson
On Fri, Feb 28, 2025, Sean Christopherson wrote: > On Fri, Feb 28, 2025, Lei Yang wrote: > > Hi Keith > > > > V3 introduced a new bug, the following error messages from qemu output > > after applying this patch to boot up a guest. > > Doh, my bug. Not yet tested, but this should fix things. Ass