[linux-yocto] [PATCH 2/5] Revert "x86/entry: Do not allow external 0x80 interrupts"

2024-04-19 Thread paulg
From: Paul Gortmaker This reverts commit 22ca647c8f880f21881e9b2d38070dc61196a39d. This (2/5) is a part of a fix from the v6.6.7 content. However during repeated boot testing on qemu-x86 (32 and 64) with NFS root it hangs during the verbose printk of the PCI register layout map. The v6.6.6 and

[linux-yocto] [PATCH 1/5] Revert "x86/tdx: Allow 32-bit emulation by default"

2024-04-19 Thread paulg
From: Paul Gortmaker This reverts commit 239bff0171a86e1bafd7da03631d74df1dfec6f1. This (1/5) is a part of a fix from the v6.6.7 content. However during repeated boot testing on qemu-x86 (32 and 64) with NFS root it hangs during the verbose printk of the PCI register layout map. The v6.6.6 and

[linux-yocto] [PATCH 4/5] Revert "x86/coco: Disable 32-bit emulation by default on TDX and SEV"

2024-04-19 Thread paulg
From: Paul Gortmaker This reverts commit 34c686e5be2fa1c03ae09568159a9ef37d1c7cf5. This (4/5) is a part of a fix from the v6.6.7 content. However during repeated boot testing on qemu-x86 (32 and 64) with NFS root it hangs during the verbose printk of the PCI register layout map. The v6.6.6 and

[linux-yocto] [PATCH v6.6/standard/base 0/5] Fix intermittent qemu-x86 boot hangs

2024-04-19 Thread paulg
From: Paul Gortmaker Pretty much everything is documented here: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15463 ...other than I have since put the reverts onto the v6.6/standard/base (v6.6.23-118-g2d01bc1d4eea) and ran boot tests on that for 150 iterations w/o issue. We'll still need t

[linux-yocto] [PATCH 5/5] Revert "x86: Introduce ia32_enabled()"

2024-04-19 Thread paulg
From: Paul Gortmaker This reverts commit f259af26ee04f11cb2c3af0a6873a6bcb67dd338. This (5/5) is a part of a fix from the v6.6.7 content. However during repeated boot testing on qemu-x86 (32 and 64) with NFS root it hangs during the verbose printk of the PCI register layout map. The v6.6.6 and

[linux-yocto] [PATCH 3/5] Revert "x86/entry: Convert INT 0x80 emulation to IDTENTRY"

2024-04-19 Thread paulg
From: Paul Gortmaker This reverts commit 4591766ff6552339fbaa3d3c71814faef1988c2f. This (3/5) is a part of a fix from the v6.6.7 content. However during repeated boot testing on qemu-x86 (32 and 64) with NFS root it hangs during the verbose printk of the PCI register layout map. The v6.6.6 and

[linux-yocto] media: mxc: mxc_v4l2_capture: Fix an error in checking if the name string is NULL

2024-04-19 Thread Kevin Hao
From: Kevin Hao The struct v4l2_input::name is an array, so the checking of (mxc_capture_inputs[cam->current_input].name != NULL) always return true. The issue was introduced by commit 5b1aeb69cf15 ("media: capture: add mxc v4l2 capture driver"). Signed-off-by: Kevin Hao --- Hi Bruce, Please h