From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fidoZ-00071r-2x for qemu-devel@nongnu.org; Thu, 26 Jul 2018 06:48:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fidoW-0008Rp-4S for qemu-devel@nongnu.org; Thu, 26 Jul 2018 06:48:11 -0400 Received: from mail-oi0-x243.google.com ([2607:f8b0:4003:c06::243]:36260) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fidoV-0008Qj-UW for qemu-devel@nongnu.org; Thu, 26 Jul 2018 06:48:08 -0400 Received: by mail-oi0-x243.google.com with SMTP id n21-v6so2124039oig.3 for ; Thu, 26 Jul 2018 03:48:07 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20180725141610.12075-1-otubo@redhat.com> References: <20180725141610.12075-1-otubo@redhat.com> From: Peter Maydell Date: Thu, 26 Jul 2018 11:47:46 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PULL 0/2] seccomp branch queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Otubo Cc: QEMU Developers , =?UTF-8?B?TWFyYy1BbmRyw6kgTHVyZWF1?= On 25 July 2018 at 15:16, Eduardo Otubo wrote: > The following changes since commit 18a398f6a39df4b08ff86ac0d38384193ca5f4= cc: > > Update version for v3.0.0-rc2 release (2018-07-24 22:06:31 +0100) > > are available in the Git repository at: > > https://github.com/otubo/qemu.git tags/pull-seccomp-20180725 > > for you to fetch changes up to 5b2f59307372bae13a2ff95706646674eccb65e0: > > RFC: seccomp: prefer SCMP_ACT_KILL_PROCESS if available (2018-07-25 16:= 07:31 +0200) > > ---------------------------------------------------------------- > pull-seccomp-20180725 > > ---------------------------------------------------------------- > Marc-Andr=C3=A9 Lureau (2): > seccomp: use SIGSYS signal instead of killing the thread > RFC: seccomp: prefer SCMP_ACT_KILL_PROCESS if available Hi. This fails to compile with clang: CC qemu-seccomp.o qemu-seccomp.c:112:1: error: unused function 'qemu_seccomp' [-Werror,-Wunused-function] qemu_seccomp(unsigned int operation, unsigned int flags, void *args) ^ This is because clang is stricter about warning about static inline functions defined in .c files but never used and your ifdef guard on the callsite is not matched by one around the function definition. thanks -- PMM