From: Eduardo Otubo <eduardo.otubo@profitbricks.com>
To: Juan Quintela <quintela@redhat.com>
Cc: pmoore@redhat.com, peter.maydell@linaro.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL for v2.3 01/01] seccomp: update libseccomp version and remove arch restriction
Date: Thu, 26 Mar 2015 15:41:05 +0100 [thread overview]
Message-ID: <20150326144104.GB24566@vader> (raw)
In-Reply-To: <87fv8rx33k.fsf@neno.neno>
[-- Attachment #1: Type: text/plain, Size: 3308 bytes --]
On Thu, Mar 26, 2015 at 03=09=19PM +0100, Juan Quintela wrote:
> Juan Quintela <quintela@redhat.com> wrote:
> > Eduardo Otubo <eduardo.otubo@profitbricks.com> wrote:
> >> Libseccomp version updated to 2.2.0 and arch restriction to x86/x86_64
> >> is now removed. It's supposed to work on armv7l as well.
> >>
> >> Related bug: https://bugs.launchpad.net/qemu/+bug/1363641
> >>
> >> Signed-off-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>
>
>
> Just in case anyone is interested, default virt-test output with current
> qemu
>
>
> 15:05:01 ERROR| Qemu output:
> 15:05:01 ERROR| qemu-system-x86_64: -sandbox on: sandboxing request but seccomp
> is not compiled into this build
> 15:05:01 ERROR|
> 15:05:01 ERROR|
> 15:05:01 ERROR| FAIL type_specific.io-github-autotest-qemu.migrate.default.tcp -> VMStartError: VM 'virt-tests-vm1' failed to start: Qemu is defunct.
> Qemu output:
> qemu-system-x86_64: -sandbox on: sandboxing request but seccomp is not compiled into this build
>
>
>
> Notice that you can "fix" the problem running with --qemu_sandbox=off,
> but breaking the main test suite just before release looks wrong?
Is it possible to temporarely disable this feature in your testing
environment while libseccomp is not updated?
Regards,
>
> Later, Juan.
>
> >
> > This prevent compliation on x86_64 on Fedora 21.
> >
> > (migration/next)$ make -j5 -C /scratch/tmp/next/all/
> > make: Entering directory '/scratch/tmp/next/all'
> > config-host.mak is out-of-date, running configure
> >
> > ERROR: User requested feature libseccomp
> > configure was not able to find it.
> > Install libseccomp devel >= 2.2.0
> >
> > Makefile:30: recipe for target 'config-host.mak' failed
> > make: *** [config-host.mak] Error 1
> > make: Leaving directory '/scratch/tmp/next/all'
> > (migration/next)$ rpm -qa | grep seccomp
> > libseccomp-2.1.1-5.fc21.x86_64
> > libseccomp-devel-2.1.1-5.fc21.x86_64
> > libseccomp-debuginfo-2.1.1-5.fc21.x86_64
> > (migration/next)$
> >
> > This was compiling correctly until this patch got in. And virt-test
> > uses seccomp by default.
> >
> > Fedora 21 is less than 3 months old. Do we really want to avoid
> > compilation there?
> >
> > Thanks, Juan.
> >
> >
> >> ---
> >> configure | 5 ++---
> >> 1 file changed, 2 insertions(+), 3 deletions(-)
> >>
> >> diff --git a/configure b/configure
> >> index 589798e..cbe6495 100755
> >> --- a/configure
> >> +++ b/configure
> >> @@ -1848,14 +1848,13 @@ fi
> >> # libseccomp check
> >>
> >> if test "$seccomp" != "no" ; then
> >> - if test "$cpu" = "i386" || test "$cpu" = "x86_64" &&
> >> - $pkg_config --atleast-version=2.1.1 libseccomp; then
> >> + if $pkg_config --atleast-version=2.2.0 libseccomp; then
> >> libs_softmmu="$libs_softmmu `$pkg_config --libs libseccomp`"
> >> QEMU_CFLAGS="$QEMU_CFLAGS `$pkg_config --cflags libseccomp`"
> >> seccomp="yes"
> >> else
> >> if test "$seccomp" = "yes"; then
> >> - feature_not_found "libseccomp" "Install libseccomp devel >= 2.1.1"
> >> + feature_not_found "libseccomp" "Install libseccomp devel >= 2.2.0"
> >> fi
> >> seccomp="no"
> >> fi
--
Eduardo Otubo
ProfitBricks GmbH
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
next prev parent reply other threads:[~2015-03-26 14:41 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-25 10:26 [Qemu-devel] [PULL for v2.3 00/01] seccomp branch queue Eduardo Otubo
2015-03-25 10:26 ` [Qemu-devel] [PULL for v2.3 01/01] seccomp: update libseccomp version and remove arch restriction Eduardo Otubo
2015-03-26 13:38 ` Juan Quintela
2015-03-26 14:09 ` Juan Quintela
2015-03-26 14:17 ` Peter Maydell
2015-03-26 14:41 ` Eduardo Otubo [this message]
2015-03-26 14:37 ` Eduardo Otubo
2015-03-26 14:44 ` Peter Maydell
2015-03-26 14:50 ` Juan Quintela
2015-03-26 15:06 ` Eduardo Otubo
2015-03-26 15:30 ` Juan Quintela
2015-03-26 14:58 ` Peter Maydell
2015-03-26 12:18 ` [Qemu-devel] [PULL for v2.3 00/01] seccomp branch queue Peter Maydell
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=20150326144104.GB24566@vader \
--to=eduardo.otubo@profitbricks.com \
--cc=peter.maydell@linaro.org \
--cc=pmoore@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/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.