Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-22 Thread Simon Glass
Hi Tom, On Thu, 22 Aug 2024 at 09:13, Tom Rini wrote: > > On Fri, Aug 16, 2024 at 05:53:59PM -0600, Simon Glass wrote: > [snip] > > > Some notes from a little bit of digging: There are almost 1000 sandbox > > > tests (17-20mins), but qemu_arm only runs 62 (2mins). With 'make > > > qcheck' it runs

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-22 Thread Tom Rini
On Fri, Aug 16, 2024 at 05:53:59PM -0600, Simon Glass wrote: [snip] > > Some notes from a little bit of digging: There are almost 1000 sandbox > > tests (17-20mins), but qemu_arm only runs 62 (2mins). With 'make > > qcheck' it runs about 2500 tests in about 4 minutes. I just got 'make > > pcheck' g

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-16 Thread Simon Glass
Hi Tom, On Thu, 15 Aug 2024 at 14:33, Simon Glass wrote: > > Hi Tom, > > On Wed, 14 Aug 2024 at 11:56, Tom Rini wrote: > > > > On Sun, Aug 11, 2024 at 08:50:21AM -0600, Simon Glass wrote: > > > Hi Tom, > > > > > > On Thu, 8 Aug 2024 at 14:06, Tom Rini wrote: > > > > > > > > On Thu, Aug 08, 2024

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-15 Thread Simon Glass
Hi Tom, On Thu, 15 Aug 2024 at 16:56, Tom Rini wrote: > > On Thu, Aug 15, 2024 at 09:33:18PM +0100, Simon Glass wrote: > > Hi Tom, > > > > On Wed, 14 Aug 2024 at 11:56, Tom Rini wrote: > > > > > > On Sun, Aug 11, 2024 at 08:50:21AM -0600, Simon Glass wrote: > > > > Hi Tom, > > > > > > > > On Thu

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-15 Thread Tom Rini
On Thu, Aug 15, 2024 at 09:33:18PM +0100, Simon Glass wrote: > Hi Tom, > > On Wed, 14 Aug 2024 at 11:56, Tom Rini wrote: > > > > On Sun, Aug 11, 2024 at 08:50:21AM -0600, Simon Glass wrote: > > > Hi Tom, > > > > > > On Thu, 8 Aug 2024 at 14:06, Tom Rini wrote: > > > > > > > > On Thu, Aug 08, 202

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-15 Thread Simon Glass
Hi Tom, On Wed, 14 Aug 2024 at 11:56, Tom Rini wrote: > > On Sun, Aug 11, 2024 at 08:50:21AM -0600, Simon Glass wrote: > > Hi Tom, > > > > On Thu, 8 Aug 2024 at 14:06, Tom Rini wrote: > > > > > > On Thu, Aug 08, 2024 at 12:44:05PM -0600, Simon Glass wrote: > > > > Hi Heinrick, Tom, > > > > > > >

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-14 Thread Tom Rini
On Sun, Aug 11, 2024 at 08:50:21AM -0600, Simon Glass wrote: > Hi Tom, > > On Thu, 8 Aug 2024 at 14:06, Tom Rini wrote: > > > > On Thu, Aug 08, 2024 at 12:44:05PM -0600, Simon Glass wrote: > > > Hi Heinrick, Tom, > > > > > > On Tue, 6 Aug 2024 at 19:56, Tom Rini wrote: > > > > > > > > On Wed, Au

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-11 Thread Simon Glass
Hi Tom, On Thu, 8 Aug 2024 at 14:06, Tom Rini wrote: > > On Thu, Aug 08, 2024 at 12:44:05PM -0600, Simon Glass wrote: > > Hi Heinrick, Tom, > > > > On Tue, 6 Aug 2024 at 19:56, Tom Rini wrote: > > > > > > On Wed, Aug 07, 2024 at 03:47:21AM +0200, Heinrich Schuchardt wrote: > > > > On 06.08.24 14

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-08 Thread Tom Rini
On Thu, Aug 08, 2024 at 12:44:05PM -0600, Simon Glass wrote: > Hi Heinrick, Tom, > > On Tue, 6 Aug 2024 at 19:56, Tom Rini wrote: > > > > On Wed, Aug 07, 2024 at 03:47:21AM +0200, Heinrich Schuchardt wrote: > > > On 06.08.24 14:58, Simon Glass wrote: > > > > While sandbox supports virtio it canno

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-08 Thread Simon Glass
Hi Heinrick, Tom, On Tue, 6 Aug 2024 at 19:56, Tom Rini wrote: > > On Wed, Aug 07, 2024 at 03:47:21AM +0200, Heinrich Schuchardt wrote: > > On 06.08.24 14:58, Simon Glass wrote: > > > While sandbox supports virtio it cannot support actually using the block > > > devices to read files, since there

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-06 Thread Tom Rini
On Wed, Aug 07, 2024 at 03:47:21AM +0200, Heinrich Schuchardt wrote: > On 06.08.24 14:58, Simon Glass wrote: > > While sandbox supports virtio it cannot support actually using the block > > devices to read files, since there is nothing on the other end of the > > 'virtqueue'. > > > > A recent chan

Re: [PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-06 Thread Heinrich Schuchardt
On 06.08.24 14:58, Simon Glass wrote: While sandbox supports virtio it cannot support actually using the block devices to read files, since there is nothing on the other end of the 'virtqueue'. A recent change makes EFI probe all block devices, whether used or not. This is apparently required by

[PATCH v2 37/39] efi: Avoid using sandbox virtio devices

2024-08-06 Thread Simon Glass
While sandbox supports virtio it cannot support actually using the block devices to read files, since there is nothing on the other end of the 'virtqueue'. A recent change makes EFI probe all block devices, whether used or not. This is apparently required by EFI, although it violates U-Boot's lazy