From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52545) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YO68e-0002Ra-MH for qemu-devel@nongnu.org; Wed, 18 Feb 2015 10:02:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YO68b-0001hF-Gt for qemu-devel@nongnu.org; Wed, 18 Feb 2015 10:02:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:34699) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YO68b-0001h9-9v for qemu-devel@nongnu.org; Wed, 18 Feb 2015 10:02:05 -0500 Date: Wed, 18 Feb 2015 16:01:51 +0100 From: "Michael S. Tsirkin" Message-ID: <20150218150151.GB3965@redhat.com> References: <1424122283-12521-1-git-send-email-mst@redhat.com> <1424122283-12521-3-git-send-email-mst@redhat.com> <20150217134528.10378f75@oc7435384737.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150217134528.10378f75@oc7435384737.ibm.com> Subject: Re: [Qemu-devel] [PATCH v3 02/17] include: import virtio headers from linux 4.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thomas Huth Cc: Peter Maydell , qemu-devel@nongnu.org, Alexander Graf , Stefan Hajnoczi , Cornelia Huck , "Chen, Tiejun" On Tue, Feb 17, 2015 at 01:45:28PM +0100, Thomas Huth wrote: > On Mon, 16 Feb 2015 22:35:31 +0100 > "Michael S. Tsirkin" wrote: > > > Add files imported from linux-next (what will become linux 4.0) using > > scripts/update-linux-headers.sh > > > > Signed-off-by: Michael S. Tsirkin > > --- > > include/standard-headers/linux/if_ether.h | 1 + > > include/standard-headers/linux/types.h | 2 + > > include/standard-headers/linux/virtio_9p.h | 44 +++++ > > include/standard-headers/linux/virtio_balloon.h | 59 ++++++ > > include/standard-headers/linux/virtio_blk.h | 143 +++++++++++++++ > > include/standard-headers/linux/virtio_config.h | 64 +++++++ > > include/standard-headers/linux/virtio_console.h | 78 ++++++++ > > include/standard-headers/linux/virtio_ids.h | 43 +++++ > > include/standard-headers/linux/virtio_net.h | 233 ++++++++++++++++++++++++ > > include/standard-headers/linux/virtio_pci.h | 193 ++++++++++++++++++++ > > include/standard-headers/linux/virtio_ring.h | 171 +++++++++++++++++ > > include/standard-headers/linux/virtio_rng.h | 8 + > > include/standard-headers/linux/virtio_scsi.h | 164 +++++++++++++++++ > > include/standard-headers/linux/virtio_types.h | 46 +++++ > > 14 files changed, 1249 insertions(+) > > create mode 100644 include/standard-headers/linux/if_ether.h > > create mode 100644 include/standard-headers/linux/types.h > > create mode 100644 include/standard-headers/linux/virtio_9p.h > > create mode 100644 include/standard-headers/linux/virtio_balloon.h > > create mode 100644 include/standard-headers/linux/virtio_blk.h > > create mode 100644 include/standard-headers/linux/virtio_config.h > > create mode 100644 include/standard-headers/linux/virtio_console.h > > create mode 100644 include/standard-headers/linux/virtio_ids.h > > create mode 100644 include/standard-headers/linux/virtio_net.h > > create mode 100644 include/standard-headers/linux/virtio_pci.h > > create mode 100644 include/standard-headers/linux/virtio_ring.h > > create mode 100644 include/standard-headers/linux/virtio_rng.h > > create mode 100644 include/standard-headers/linux/virtio_scsi.h > > create mode 100644 include/standard-headers/linux/virtio_types.h > > > > diff --git a/include/standard-headers/linux/if_ether.h b/include/standard-headers/linux/if_ether.h > > new file mode 100644 > > index 0000000..91cf735 > > --- /dev/null > > +++ b/include/standard-headers/linux/if_ether.h > > @@ -0,0 +1 @@ > > +#define ETH_ALEN 6 > > diff --git a/include/standard-headers/linux/types.h b/include/standard-headers/linux/types.h > > new file mode 100644 > > index 0000000..7d42ac6 > > --- /dev/null > > +++ b/include/standard-headers/linux/types.h > > @@ -0,0 +1,2 @@ > > +#include > > That should be now, shouldn't it? > > Thomas Oh, right, I forgot to re-run it. I'll fix it up with a patch on top? -- MST