From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gfLlt-0004O2-OR for qemu-devel@nongnu.org; Fri, 04 Jan 2019 04:28:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gfLlp-0007ro-QY for qemu-devel@nongnu.org; Fri, 04 Jan 2019 04:28:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36450) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gfLlp-0007r4-L8 for qemu-devel@nongnu.org; Fri, 04 Jan 2019 04:28:01 -0500 Date: Fri, 4 Jan 2019 10:27:55 +0100 From: Cornelia Huck Message-ID: <20190104102755.4e7f47fd.cohuck@redhat.com> In-Reply-To: <20190104082731.24967-3-pbonzini@redhat.com> References: <20190104082731.24967-1-pbonzini@redhat.com> <20190104082731.24967-3-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/2] include: update Linux headers to 4.21-rc1/5.0-rc1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org, mst@redhat.com, peter.maydell@linaro.org On Fri, 4 Jan 2019 09:27:31 +0100 Paolo Bonzini wrote: > This is simply running the newly-updated script on Linux, in > order to obtain the new header files and all the other updates > from the recent Linux merge window. > > Signed-off-by: Paolo Bonzini > --- > include/standard-headers/drm/drm_fourcc.h | 63 + > include/standard-headers/linux/ethtool.h | 19 +- > .../linux/input-event-codes.h | 17 + > include/standard-headers/linux/pci_regs.h | 1 + > include/standard-headers/linux/vhost_types.h | 128 ++ > .../standard-headers/linux/virtio_balloon.h | 8 + > include/standard-headers/linux/virtio_blk.h | 54 + > .../standard-headers/linux/virtio_config.h | 3 + > include/standard-headers/linux/virtio_gpu.h | 18 + > include/standard-headers/linux/virtio_ring.h | 52 + > linux-headers/asm-arm/unistd-common.h | 1 + > linux-headers/asm-arm64/unistd.h | 1 + > linux-headers/asm-generic/unistd.h | 10 +- > linux-headers/asm-mips/sgidefs.h | 8 - > linux-headers/asm-mips/unistd.h | 1074 +---------------- > linux-headers/asm-mips/unistd_n32.h | 338 ++++++ > linux-headers/asm-mips/unistd_n64.h | 334 +++++ > linux-headers/asm-mips/unistd_o32.h | 374 ++++++ > linux-headers/asm-powerpc/unistd.h | 389 +----- > linux-headers/asm-powerpc/unistd_32.h | 381 ++++++ > linux-headers/asm-powerpc/unistd_64.h | 372 ++++++ > linux-headers/linux/kvm.h | 29 + > linux-headers/linux/vfio.h | 92 ++ > linux-headers/linux/vhost.h | 113 +- > linux-headers/linux/vhost_types.h | 1 + > 25 files changed, 2291 insertions(+), 1589 deletions(-) > create mode 100644 include/standard-headers/linux/vhost_types.h > create mode 100644 linux-headers/asm-mips/unistd_n32.h > create mode 100644 linux-headers/asm-mips/unistd_n64.h > create mode 100644 linux-headers/asm-mips/unistd_o32.h > create mode 100644 linux-headers/asm-powerpc/unistd_32.h > create mode 100644 linux-headers/asm-powerpc/unistd_64.h > create mode 100644 linux-headers/linux/vhost_types.h Acked-by: Cornelia Huck