[PATCH v3 2/2] hw/nvme: Add property for user-specified IEEE-OUI ID

2024-12-02 Thread Saif Abrar
User-specified IEEE-OUI ID (Identify Controller bytes 75:73) is to be specified in LE format. (e.g. ieee_oui=0xABCDEF => Byte[73]=0xEF, Byte[74]=0xCD, Byte[75]=0xAB) Signed-off-by: Saif Abrar --- This is a new commit for setting IEEE-OUI ID. hw/nvme/ctrl.c | 24

[PATCH v3 1/2] hw/nvme: Add properties for PCI vendor/device IDs

2024-12-02 Thread Saif Abrar
Add properties for user specified PCI vendor, device, subsystem vendor and subsystem IDs. e.g. PCI IDs to be specified as follows: -device nvme,id_vendor=0xABCD,id_device=0xA0B0,id_subsys_vendor=0xEF00,id_subsys=0xEF01 Signed-off-by: Saif Abrar --- v2 -> v3: - User-specified PCI properties

[PATCH v3 0/2] hw/nvme: Add properties for PCI vendor/device IDs and IEEE-OUI

2024-12-02 Thread Saif Abrar
Add properties for user-specified PCI vendor/device IDs and IEEE-OUI. PCI properties are now set independently of each other and used only when use_intel_id is not set. Also, setting of IEEE-OUI is moved to a new commit. Saif Abrar (2): hw/nvme: Add properties for PCI vendor/device IDs hw

[PATCH v2] hw/nvme: Add properties for PCI vendor/device IDs and IEEE-OUI ID

2024-05-17 Thread Saif Abrar
specified in LE format. (e.g. ieee_oui=0xABCDEF => Byte[73]=0xEF, Byte[74]=0xCD, Byte[75]=0xAB). Signed-off-by: Saif Abrar --- v1 -> v2: Updated the commit message to mention 'properties' instead of 'CLI options'. hw/nvme/ctrl.c | 44 +++

[PATCH] hw/nvme: Add CLI options for PCI vendor/device IDs and IEEE-OUI ID

2024-05-09 Thread Saif Abrar
specified in LE format. (e.g. ieee_oui=0xABCDEF => Byte[73]=0xEF, Byte[74]=0xCD, Byte[75]=0xAB). Signed-off-by: Saif Abrar --- hw/nvme/nvme.h | 5 + hw/nvme/ctrl.c | 44 2 files changed, 45 insertions(+), 4 deletions(-) diff --git a/hw/nvme/nvme.

[PATCH] tests/qemu-iotests: Bump timeout of iothreads-stream test

2024-01-24 Thread Saif Abrar
Current value of timeout=0.1 is sometimes too tight. Bump timeout to 0.3 to avoid test failures. Signed-off-by: Saif Abrar --- tests/qemu-iotests/tests/iothreads-stream | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qemu-iotests/tests/iothreads-stream b/tests/qemu