[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 2/8] vfio: make vfio_address_spaces static
From: |
Alex Williamson |
Subject: |
Re: [Qemu-devel] [PATCH 2/8] vfio: make vfio_address_spaces static |
Date: |
Mon, 10 Dec 2018 14:23:32 -0700 |
On Mon, 10 Dec 2018 19:28:10 +0100
Paolo Bonzini <address@hidden> wrote:
> It is not used outside hw/vfio/common.c, so it does not need to
> be extern.
>
> Cc: Alex Williamson <address@hidden>
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
> hw/vfio/common.c | 2 +-
> include/hw/vfio/vfio-common.h | 1 -
> 2 files changed, 1 insertion(+), 2 deletions(-)
Acked-by: Alex Williamson <address@hidden>
> diff --git a/hw/vfio/common.c b/hw/vfio/common.c
> index 7c185e5a2e..7aa804ea0b 100644
> --- a/hw/vfio/common.c
> +++ b/hw/vfio/common.c
> @@ -39,7 +39,7 @@
>
> struct vfio_group_head vfio_group_list =
> QLIST_HEAD_INITIALIZER(vfio_group_list);
> -struct vfio_as_head vfio_address_spaces =
> +static QLIST_HEAD(, VFIOAddressSpace) vfio_address_spaces =
> QLIST_HEAD_INITIALIZER(vfio_address_spaces);
>
> #ifdef CONFIG_KVM
> diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h
> index 1b434d02f6..127ca47815 100644
> --- a/include/hw/vfio/vfio-common.h
> +++ b/include/hw/vfio/vfio-common.h
> @@ -181,7 +181,6 @@ int vfio_get_device(VFIOGroup *group, const char *name,
>
> extern const MemoryRegionOps vfio_region_ops;
> extern QLIST_HEAD(vfio_group_head, VFIOGroup) vfio_group_list;
> -extern QLIST_HEAD(vfio_as_head, VFIOAddressSpace) vfio_address_spaces;
>
> #ifdef CONFIG_LINUX
> int vfio_get_region_info(VFIODevice *vbasedev, int index,
- [Qemu-devel] [PATCH for-4.0 v2 0/8] qemu/queue.h usage cleanup, improved QTAILQ API, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 1/8] qemu/queue.h: do not access tqe_prev directly, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 2/8] vfio: make vfio_address_spaces static, Paolo Bonzini, 2018/12/10
- Re: [Qemu-devel] [PATCH 2/8] vfio: make vfio_address_spaces static,
Alex Williamson <=
- [Qemu-devel] [PATCH 3/8] qemu/queue.h: leave head structs anonymous unless necessary, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 5/8] qemu/queue.h: remove Q_TAILQ_{HEAD, ENTRY}, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 4/8] qemu/queue.h: typedef QTAILQ heads, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 6/8] qemu/queue.h: reimplement QTAILQ without pointer-to-pointers, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 8/8] checkpatch: warn about qemu/queue.h head structs that are not typedef-ed, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 7/8] qemu/queue.h: simplify reverse access to QTAILQ, Paolo Bonzini, 2018/12/10