From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44208) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cb5NJ-0003X7-GS for qemu-devel@nongnu.org; Tue, 07 Feb 2017 08:00:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cb5NI-0002Zm-Mj for qemu-devel@nongnu.org; Tue, 07 Feb 2017 08:00:01 -0500 References: From: Thomas Huth Message-ID: Date: Tue, 7 Feb 2017 13:59:52 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [Qemu-ppc] [RFC PATCH 2/9] Update headers using update-linux-headers.sh List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sam Bobroff , qemu-devel@nongnu.org Cc: qemu-ppc@nongnu.org, david@gibson.dropbear.id.au, qemu-arm@nongnu.org On 07.02.2017 03:56, Sam Bobroff wrote: > This provides some new definitions needed by ISA 3.00 guests. > > It is a large change because this is the first import since > some kernel header files have become autogenerated. > > Note: update-linux-headers.sh currently generates a change that > (incorrectly) removes virtio_mmio.h and the change has been manually > adjusted to prevent that. > > Signed-off-by: Sam Bobroff > --- > include/standard-headers/linux/input-event-codes.h | 2 +- > include/standard-headers/linux/pci_regs.h | 8 + > include/standard-headers/linux/virtio_ids.h | 1 + > linux-headers/asm-arm/kvm.h | 2 + > linux-headers/asm-arm/unistd.h | 419 +-------------------- > linux-headers/asm-powerpc/kvm.h | 25 ++ > linux-headers/asm-powerpc/unistd.h | 1 + > linux-headers/asm-x86/kvm_para.h | 4 +- > linux-headers/linux/kvm.h | 11 +- > linux-headers/linux/vfio.h | 10 + > 10 files changed, 63 insertions(+), 420 deletions(-) [...] > diff --git a/linux-headers/asm-arm/unistd.h b/linux-headers/asm-arm/unistd.h > index ceb5450c81..155571b874 100644 > --- a/linux-headers/asm-arm/unistd.h > +++ b/linux-headers/asm-arm/unistd.h > @@ -17,409 +17,14 @@ > > #if defined(__thumb__) || defined(__ARM_EABI__) > #define __NR_SYSCALL_BASE 0 > +#include > #else > #define __NR_SYSCALL_BASE __NR_OABI_SYSCALL_BASE > +#include > #endif > > -/* > - * This file contains the system call numbers. > - */ [...] Looks like the contents of asm-arm/unistd.h has been moved to two new files, unistd-eabi.h and unistd-oabi.h, but they are not part of your patch. I guess update-linux-headers.sh needs a fix for that? Thomas