Re: [PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-11 Thread Michael S. Tsirkin
On Tue, Jul 11, 2023 at 12:40:47PM +0530, Ani Sinha wrote: > > > > On 01-Jul-2023, at 12:31 PM, Akihiko Odaki wrote: > > > > The function number must be lower than the next function number > > advertised with ARI. > > > > Signed-off-by: Akihiko Odaki > > --- > > hw/pci/pci.c | 15

Re: [PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-11 Thread Ani Sinha
> On 01-Jul-2023, at 12:31 PM, Akihiko Odaki wrote: > > The function number must be lower than the next function number > advertised with ARI. > > Signed-off-by: Akihiko Odaki > --- > hw/pci/pci.c | 15 +++ > 1 file changed, 15 insertions(+) > > diff --git a/hw/pci/pci.c

Re: [PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-02 Thread Michael S. Tsirkin
On Sun, Jul 02, 2023 at 04:55:48AM -0400, Michael S. Tsirkin wrote: > On Sun, Jul 02, 2023 at 05:46:38PM +0900, Akihiko Odaki wrote: > > On 2023/07/02 13:58, Michael S. Tsirkin wrote: > > > On Sat, Jul 01, 2023 at 04:01:22PM +0900, Akihiko Odaki wrote: > > > > The function number must be lower

Re: [PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-02 Thread Michael S. Tsirkin
On Sun, Jul 02, 2023 at 05:46:38PM +0900, Akihiko Odaki wrote: > On 2023/07/02 13:58, Michael S. Tsirkin wrote: > > On Sat, Jul 01, 2023 at 04:01:22PM +0900, Akihiko Odaki wrote: > > > The function number must be lower than the next function number > > > advertised with ARI. > > > > > >

Re: [PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-02 Thread Akihiko Odaki
On 2023/07/02 13:58, Michael S. Tsirkin wrote: On Sat, Jul 01, 2023 at 04:01:22PM +0900, Akihiko Odaki wrote: The function number must be lower than the next function number advertised with ARI. Signed-off-by: Akihiko Odaki I don't get this logic at all - where is the limitation coming

Re: [PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-01 Thread Michael S. Tsirkin
On Sat, Jul 01, 2023 at 04:01:22PM +0900, Akihiko Odaki wrote: > The function number must be lower than the next function number > advertised with ARI. > > Signed-off-by: Akihiko Odaki I don't get this logic at all - where is the limitation coming from? All I see in the spec is: Next

[PATCH 4/4] pci: Compare function number and ARI next function number

2023-07-01 Thread Akihiko Odaki
The function number must be lower than the next function number advertised with ARI. Signed-off-by: Akihiko Odaki --- hw/pci/pci.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/hw/pci/pci.c b/hw/pci/pci.c index e2eb4c3b4a..568665ee42 100644 --- a/hw/pci/pci.c +++