All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	QEMU Developers <qemu-devel@nongnu.org>,
	Mathieu Poirier <mathieu.poirier@linaro.org>
Subject: Re: [PULL 00/23] pc,pci,virtio: lots of new features
Date: Thu, 15 Jul 2021 10:38:34 -0400	[thread overview]
Message-ID: <20210715103657-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <CAC_L=vVJ-fLkJeKYnvx9HZivZ5mm79WtQ9OVHnNke+3smdXTYw@mail.gmail.com>

On Thu, Jul 15, 2021 at 11:54:17AM +0300, Marcel Apfelbaum wrote:
> Hi, 
> 
> On Wed, Jul 14, 2021 at 11:33 PM Peter Maydell <peter.maydell@linaro.org>
> wrote:
> 
>     On Tue, 13 Jul 2021 at 23:10, Michael S. Tsirkin <mst@redhat.com> wrote:
>     >
>     > The following changes since commit
>     708f50199b59476ec4b45ebcdf171550086d6292:
>     >
>     >   Merge remote-tracking branch 'remotes/ericb/tags/
>     pull-nbd-2021-07-09-v2' into staging (2021-07-13 14:32:20 +0100)
>     >
>     > are available in the Git repository at:
>     >
>     >   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>     >
>     > for you to fetch changes up to cf171f90d5e41730ad3e0ce23f1990f34b7e63ef:
>     >
>     >   vhost-vsock: SOCK_SEQPACKET feature bit support (2021-07-13 16:59:12
>     -0400)
>     >
>     > ----------------------------------------------------------------
>     > pc,pci,virtio: lots of new features
>     >
>     > Lots of last minute stuff.
>     >
>     > vhost-user-rng.
>     > vhost-user-i2c.
>     > vhost-vsock SOCK_SEQPACKET support.
>     > IOMMU bypass.
>     > ACPI based pci hotplug.
>     >
>     > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
>     This seems to produce a new meson warning:
> 
>     Configuring 50-qemu-gpu.json using configuration
>     Configuring 50-qemu-virtiofsd.json using configuration
>     Configuring 50-qemu-rng.json using configuration
>     ../../tools/vhost-user-rng/meson.build:7: WARNING: The variable(s)
>     'libexecdir' in the input file
>     'tools/vhost-user-rng/50-qemu-rng.json.in' are not present in the
>     given configuration data.
>     Configuring 50-edk2-i386-secure.json using configuration
>     Configuring 50-edk2-x86_64-secure.json using configuration
>     Configuring 60-edk2-aarch64.json using configuration
> 
>     (the build then seems to go on to complete OK).
> 
> 
> /cc Mathieu
> 
> The below patch solved the warning for me:
> 
> diff --git a/tools/vhost-user-rng/meson.build b/tools/vhost-user-rng/
> meson.build
> index 4dc386daf3..2192a65ca6 100644
> --- a/tools/vhost-user-rng/meson.build
> +++ b/tools/vhost-user-rng/meson.build
> @@ -6,5 +6,5 @@ executable('vhost-user-rng', files(
>  
>  configure_file(input: '50-qemu-rng.json.in',
>                 output: '50-qemu-rng.json',
> -               configuration: config_host,
> +               configuration: { 'libexecdir' : get_option('prefix') /
> get_option('libexecdir') },
>                 install_dir: qemu_datadir / 'vhost-user')
> 
> 
> Thanks,
> Marcel


Thanks Marcel!

Yes this matches what virtiofsd does. Just a cut and paste error then.
I applied this and repushed. Peter do you want to pick up the new tag?
Or we can get the fix in the next pull it's up to you.

for_upstream at commit ca381cf34b020be4cf8f7166f7e15392b849fc25

-- 
MST



  reply	other threads:[~2021-07-15 14:40 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-13 22:10 [PULL 00/23] pc,pci,virtio: lots of new features Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 01/23] hw/i386/acpi-build: Add ACPI PCI hot-plug methods to Q35 Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 02/23] hw/acpi/ich9: Enable ACPI PCI hot-plug Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 03/23] hw/pci/pcie: Do not set HPC flag if acpihp is used Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 04/23] bios-tables-test: Allow changes in DSDT ACPI tables Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 05/23] hw/acpi/ich9: Set ACPI PCI hot-plug as default on Q35 Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 06/23] bios-tables-test: Update golden binaries Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 07/23] vhost-user-rng: Add vhost-user-rng implementation Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 08/23] vhost-user-rng-pci: Add vhost-user-rng-pci implementation Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 09/23] vhost-user-rng: backend: Add RNG vhost-user daemon implementation Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 10/23] docs: Add documentation for vhost based RNG implementation Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 11/23] hw/virtio: add boilerplate for vhost-user-i2c device Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 12/23] hw/virtio: add vhost-user-i2c-pci boilerplate Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 13/23] docs: Add '-device intel-iommu' entry Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 14/23] hw/pci/pci_host: Allow PCI host to bypass iommu Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 15/23] hw/pxb: Add a bypass iommu property Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 16/23] hw/arm/virt: Add default_bus_bypass_iommu machine option Michael S. Tsirkin
2021-07-13 22:10 ` [PULL 17/23] hw/i386: Add a default_bus_bypass_iommu pc " Michael S. Tsirkin
2021-07-13 22:11 ` [PULL 18/23] hw/pci: Add pci_bus_range() to get PCI bus number range Michael S. Tsirkin
2021-07-13 22:11 ` [PULL 19/23] hw/arm/virt-acpi-build: Add IORT support to bypass SMMUv3 Michael S. Tsirkin
2021-07-13 22:11 ` [PULL 20/23] hw/i386/acpi-build: Add DMAR support to bypass iommu Michael S. Tsirkin
2021-07-13 22:11 ` [PULL 21/23] hw/i386/acpi-build: Add IVRS " Michael S. Tsirkin
2021-07-13 22:11 ` [PULL 22/23] docs: Add documentation for iommu bypass Michael S. Tsirkin
2021-07-13 22:11 ` [PULL 23/23] vhost-vsock: SOCK_SEQPACKET feature bit support Michael S. Tsirkin
2021-07-14 20:31 ` [PULL 00/23] pc,pci,virtio: lots of new features Peter Maydell
2021-07-15  8:54   ` Marcel Apfelbaum
2021-07-15 14:38     ` Michael S. Tsirkin [this message]
2021-07-15 21:21   ` Michael S. Tsirkin
2021-07-16  6:41     ` Peter Maydell
2021-07-16  8:41       ` Michael S. Tsirkin
2021-07-16 14:12         ` Peter Maydell
2021-07-16 15:09           ` Michael S. Tsirkin
2021-07-16 15:13           ` Michael S. Tsirkin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210715103657-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=marcel.apfelbaum@gmail.com \
    --cc=mathieu.poirier@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.