diff mbox

os-posix: include sys/mman.h

Message ID 1465214526-16096-1-git-send-email-pbonzini@redhat.com
State New
Headers show

Commit Message

Paolo Bonzini June 6, 2016, 12:02 p.m. UTC
qemu/osdep.h checks whether MAP_ANONYMOUS is defined, but this
check is bogus without a previous include of sys/mman.h.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 include/sysemu/os-posix.h | 1 +
 1 file changed, 1 insertion(+)

Comments

Peter Maydell June 6, 2016, 12:11 p.m. UTC | #1
On 6 June 2016 at 13:02, Paolo Bonzini <pbonzini@redhat.com> wrote:
> qemu/osdep.h checks whether MAP_ANONYMOUS is defined, but this
> check is bogus without a previous include of sys/mman.h.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  include/sysemu/os-posix.h | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/include/sysemu/os-posix.h b/include/sysemu/os-posix.h
> index 07e3e5a..9c7dfdf 100644
> --- a/include/sysemu/os-posix.h
> +++ b/include/sysemu/os-posix.h
> @@ -26,6 +26,7 @@
>  #ifndef QEMU_OS_POSIX_H
>  #define QEMU_OS_POSIX_H
>
> +#include <sys/mman.h>
>  #include <sys/socket.h>
>  #include <netinet/in.h>
>  #include <netinet/tcp.h>
> --
> 2.5.5

Did you discover this because something broke, or just through
code inspection?

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

We could add mman.h to clean-includes and zap the other includes
of it I guess.

thanks
-- PMM
Paolo Bonzini June 6, 2016, 1:59 p.m. UTC | #2
On 06/06/2016 14:11, Peter Maydell wrote:
> On 6 June 2016 at 13:02, Paolo Bonzini <pbonzini@redhat.com> wrote:
>> qemu/osdep.h checks whether MAP_ANONYMOUS is defined, but this
>> check is bogus without a previous include of sys/mman.h.
>>
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>  include/sysemu/os-posix.h | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/include/sysemu/os-posix.h b/include/sysemu/os-posix.h
>> index 07e3e5a..9c7dfdf 100644
>> --- a/include/sysemu/os-posix.h
>> +++ b/include/sysemu/os-posix.h
>> @@ -26,6 +26,7 @@
>>  #ifndef QEMU_OS_POSIX_H
>>  #define QEMU_OS_POSIX_H
>>
>> +#include <sys/mman.h>
>>  #include <sys/socket.h>
>>  #include <netinet/in.h>
>>  #include <netinet/tcp.h>
>> --
>> 2.5.5
> 
> Did you discover this because something broke, or just through
> code inspection?

sparse complained, but I don't think anything else breaks.

> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
> 
> We could add mman.h to clean-includes and zap the other includes
> of it I guess.

Yup, good idea.

Thanks,

Paolo
diff mbox

Patch

diff --git a/include/sysemu/os-posix.h b/include/sysemu/os-posix.h
index 07e3e5a..9c7dfdf 100644
--- a/include/sysemu/os-posix.h
+++ b/include/sysemu/os-posix.h
@@ -26,6 +26,7 @@ 
 #ifndef QEMU_OS_POSIX_H
 #define QEMU_OS_POSIX_H
 
+#include <sys/mman.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <netinet/tcp.h>