Re: [Qemu-devel] [PATCH 1/4] Clean up wrong usage of FALSE and TRUE in places that use bool from stdbool.h

2019-03-23 Thread Jafar Abdi
Dear Eric Blake, Thank you very much for your review I learned a lot from it, I did what you told me (hopefully I didn't forget something) and send V2 of the patch Again thank you for your time, best regards, Jafar Abdi On Fri, 22 Mar 2019 at 20:39, Eric Blake wrote: > On 3/22/19

[Qemu-devel] [PATCH V2 4/4] hw/tpm: fix usage of bool in tpm-tis.c

2019-03-23 Thread Jafar Abdi
re declared as "bool" (the type from ). Signed-off-by: Jafar Abdi --- hw/tpm/tpm_tis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c index fd183e8..c1eb094 100644 --- a/hw/tpm/tpm_tis.c +++ b/hw/tpm/tpm_tis.c @

[Qemu-devel] [PATCH V2 1/4] authz: fix usage of bool in listfile.c

2019-03-23 Thread Jafar Abdi
re declared as "bool" (the type from ). Signed-off-by: Jafar Abdi Reviewed-by: Eric Blake --- authz/listfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authz/listfile.c b/authz/listfile.c index d457976..03eaf46 100644 --- a/authz/listfile.c +++ b/aut

[Qemu-devel] [PATCH V2 3/4] tests/libqos: fix usage of bool in pci-spapr.c

2019-03-23 Thread Jafar Abdi
re declared as "bool" (the type from ). Signed-off-by: Jafar Abdi Reviewed-by: Eric Blake --- tests/libqos/pci-spapr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libqos/pci-spapr.c b/tests/libqos/pci-spapr.c index 6925925..58ba27a 100644 --- a/tests/libqos/

[Qemu-devel] [PATCH V2 2/4] tests/libqos: fix usage of bool in pci-pc.c

2019-03-23 Thread Jafar Abdi
re declared as "bool" (the type from ). Signed-off-by: Jafar Abdi Reviewed-by: Eric Blake --- tests/libqos/pci-pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libqos/pci-pc.c b/tests/libqos/pci-pc.c index 4ab16fa..407d8af 100644 --- a/tests/libqos/pci-pc

[Qemu-devel] [PATCH V2 0/4] fix usage of bool

2019-03-23 Thread Jafar Abdi
re declared as "bool" (the type from ). Jafar Abdi (4): authz: fix usage of bool in listfile.c tests/libqos: fix usage of bool in pci-pc.c tests/libqos: fix usage of bool in pci-spapr.c hw/tpm: fix usage of bool in tpm-tis.c authz/listfile.c | 2 +- hw/tpm/tpm_tis.c