[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/3] Fix libvhost-user.c compilation.
From: |
Michael S. Tsirkin |
Subject: |
Re: [PATCH 1/3] Fix libvhost-user.c compilation. |
Date: |
Tue, 18 Apr 2023 07:47:33 -0400 |
On Wed, Apr 05, 2023 at 07:21:07PM +0200, David 'Digit' Turner wrote:
> The source file uses VIRTIO_F_VERSION_1 which is
> not defined by <linux/virtio_config.h> on Debian 10.
>
> The system-provided <linux/virtio_config.h> which
> does not include the macro definition is included
> through <linux/vhost.h>, so fix the issue by including
> the standard-headers version before that.
>
> Signed-off-by: David 'Digit' Turner <digit@google.com>
And maybe we want to use linux-headers on Linux then?
> ---
> subprojects/libvhost-user/libvhost-user.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/subprojects/libvhost-user/libvhost-user.c
> b/subprojects/libvhost-user/libvhost-user.c
> index 0200b78e8e..0a5768cb55 100644
> --- a/subprojects/libvhost-user/libvhost-user.c
> +++ b/subprojects/libvhost-user/libvhost-user.c
> @@ -32,6 +32,12 @@
> #include <sys/mman.h>
> #include <endian.h>
>
> +/* Necessary to provide VIRTIO_F_VERSION_1 on system
> + * with older linux headers. Must appear before
> + * <linux/vhost.h> below.
> + */
> +#include "standard-headers/linux/virtio_config.h"
> +
> #if defined(__linux__)
> #include <sys/syscall.h>
> #include <fcntl.h>
> --
> 2.40.0.348.gf938b09366-goog
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., (continued)
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., Michael S. Tsirkin, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., David Turner, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., David Turner, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., David Turner, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., Michael S. Tsirkin, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., David Turner, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., David Turner, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., Michael S. Tsirkin, 2023/04/07
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., Daniel P . Berrangé, 2023/04/18
- Re: [PATCH 1/3] Fix libvhost-user.c compilation., David Turner, 2023/04/18
Re: [PATCH 1/3] Fix libvhost-user.c compilation.,
Michael S. Tsirkin <=
[PATCH 2/3] update-linux-headers.sh: Add missing kernel headers., David 'Digit' Turner, 2023/04/05
[PATCH 3/3] Update linux headers to v6.3rc5, David 'Digit' Turner, 2023/04/05