Re: [PATCH] hw/usb: Use __attribute__((packed)) vs __packed

2024-11-21 Thread Paolo Bonzini
On 11/21/24 11:24, Thomas Huth wrote: On 21/11/2024 11.01, Michael Tokarev wrote: 04.11.2024 10:37, Thomas Huth wrote: On 01/11/2024 22.17, Roque Arcudia Hernandez wrote: __packed is non standard and is not present in clang-cl. __attribute__((packed)) has the same semantics. Signed-off-by: Er

Re: [PATCH] hw/usb: Use __attribute__((packed)) vs __packed

2024-11-21 Thread Thomas Huth
On 21/11/2024 11.01, Michael Tokarev wrote: 04.11.2024 10:37, Thomas Huth wrote: On 01/11/2024 22.17, Roque Arcudia Hernandez wrote: __packed is non standard and is not present in clang-cl. __attribute__((packed)) has the same semantics. Signed-off-by: Erwin Jansen Signed-off-by: Roque Arcudi

Re: [PATCH] hw/usb: Use __attribute__((packed)) vs __packed

2024-11-21 Thread Michael Tokarev
04.11.2024 10:37, Thomas Huth wrote: On 01/11/2024 22.17, Roque Arcudia Hernandez wrote: __packed is non standard and is not present in clang-cl. __attribute__((packed)) has the same semantics. Signed-off-by: Erwin Jansen Signed-off-by: Roque Arcudia Hernandez ---   include/hw/usb/dwc2-regs.h

Re: [PATCH] hw/usb: Use __attribute__((packed)) vs __packed

2024-11-03 Thread Thomas Huth
On 01/11/2024 22.17, Roque Arcudia Hernandez wrote: __packed is non standard and is not present in clang-cl. __attribute__((packed)) has the same semantics. Signed-off-by: Erwin Jansen Signed-off-by: Roque Arcudia Hernandez --- include/hw/usb/dwc2-regs.h | 2 +- 1 file changed, 1 insertion(

Re: [PATCH] hw/usb: Use __attribute__((packed)) vs __packed

2024-11-01 Thread Pierrick Bouvier
On 11/1/24 14:17, Roque Arcudia Hernandez wrote: __packed is non standard and is not present in clang-cl. __attribute__((packed)) has the same semantics. Signed-off-by: Erwin Jansen Signed-off-by: Roque Arcudia Hernandez --- include/hw/usb/dwc2-regs.h | 2 +- 1 file changed, 1 insertion(+),

[PATCH] hw/usb: Use __attribute__((packed)) vs __packed

2024-11-01 Thread Roque Arcudia Hernandez
__packed is non standard and is not present in clang-cl. __attribute__((packed)) has the same semantics. Signed-off-by: Erwin Jansen Signed-off-by: Roque Arcudia Hernandez --- include/hw/usb/dwc2-regs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hw/usb/dwc2-regs