"Daniel P. Berrange" <berra...@redhat.com> writes: > On Tue, Mar 15, 2016 at 04:03:40PM +0100, Markus Armbruster wrote: >> qemu-common.h should only be included by .c files. Its file comment >> explains why: "No header file should depend on qemu-common.h, as this >> would easily lead to circular header dependencies." >> >> We include it in many headers anyway. Fix that. >> >> Dropping these ill-advised includes requires including >> qemu/fprintf-fn.h, cpu.h or exec/hwaddr.h instead in a few headers >> that actually need those, and of course including qemu-common.h in .c >> files that need it, except some of them need only qemu/module.h. >> >> Signed-off-by: Markus Armbruster <arm...@redhat.com> >> --- >> crypto/secret.c | 1 + >> crypto/tlscreds.c | 1 + >> crypto/tlscredsanon.c | 1 + >> crypto/tlscredsx509.c | 1 + > > >> diff --git a/crypto/secret.c b/crypto/secret.c >> index 285ab7a..65929ac 100644 >> --- a/crypto/secret.c >> +++ b/crypto/secret.c >> @@ -19,6 +19,7 @@ >> */ >> >> #include "qemu/osdep.h" >> +#include "qemu/module.h" >> #include "crypto/secret.h" >> #include "crypto/cipher.h" >> #include "qapi/error.h" >> diff --git a/crypto/tlscreds.c b/crypto/tlscreds.c >> index 1620e12..edc7f88 100644 >> --- a/crypto/tlscreds.c >> +++ b/crypto/tlscreds.c >> @@ -20,6 +20,7 @@ >> >> #include "qemu/osdep.h" >> #include "qapi/error.h" >> +#include "qemu/module.h" >> #include "crypto/tlscredspriv.h" >> #include "trace.h" >> >> diff --git a/crypto/tlscredsanon.c b/crypto/tlscredsanon.c >> index 1464220..50df4f0 100644 >> --- a/crypto/tlscredsanon.c >> +++ b/crypto/tlscredsanon.c >> @@ -19,6 +19,7 @@ >> */ >> >> #include "qemu/osdep.h" >> +#include "qemu/module.h" >> #include "crypto/tlscredsanon.h" >> #include "crypto/tlscredspriv.h" >> #include "qapi/error.h" >> diff --git a/crypto/tlscredsx509.c b/crypto/tlscredsx509.c >> index 6a0179c..2709b2b 100644 >> --- a/crypto/tlscredsx509.c >> +++ b/crypto/tlscredsx509.c >> @@ -19,6 +19,7 @@ >> */ >> >> #include "qemu/osdep.h" >> +#include "qemu/module.h" >> #include "crypto/tlscredsx509.h" >> #include "crypto/tlscredspriv.h" >> #include "crypto/secret.h" > > It feels like these should be in the previous patch that removes > qemu-common.h from the include/crypto files ?
They aren't actually needed then, because qemu/module.h is still included via some inclusion of qemu-common.h in a header. But I can certainly move them to the previous patch anyway, if you'd prefer that. Since we'll probably defer this patch and the next for a bit, I might prefer it myself :)