From: "Michael S. Tsirkin" <mst@redhat.com>
To: Thomas Huth <thuth@linux.vnet.ibm.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
qemu-devel@nongnu.org, Alexander Graf <agraf@suse.de>,
Stefan Hajnoczi <stefanha@redhat.com>,
Cornelia Huck <cornelia.huck@de.ibm.com>,
"Chen, Tiejun" <tiejun.chen@intel.com>
Subject: Re: [Qemu-devel] [PATCH v2 02/17] include: import virtio headers from linux 4.0
Date: Mon, 16 Feb 2015 17:13:53 +0100 [thread overview]
Message-ID: <20150216161353.GD25470@redhat.com> (raw)
In-Reply-To: <20150216170316.42057fa7@oc7435384737.ibm.com>
On Mon, Feb 16, 2015 at 05:03:16PM +0100, Thomas Huth wrote:
> On Sun, 15 Feb 2015 12:38:37 +0100
> "Michael S. Tsirkin" <mst@redhat.com> 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 <mst@redhat.com>
> > ---
> > include/standard-headers/sys/if_ether.h | 1 +
> > include/standard-headers/sys/types.h | 2 +
> > include/standard-headers/sys/virtio_9p.h | 44 +++++
> > include/standard-headers/sys/virtio_balloon.h | 59 +++++++
> > include/standard-headers/sys/virtio_blk.h | 143 ++++++++++++++++
> > include/standard-headers/sys/virtio_config.h | 64 +++++++
> > include/standard-headers/sys/virtio_console.h | 78 +++++++++
> > include/standard-headers/sys/virtio_ids.h | 43 +++++
> > include/standard-headers/sys/virtio_net.h | 233 ++++++++++++++++++++++++++
> > include/standard-headers/sys/virtio_pci.h | 193 +++++++++++++++++++++
> > include/standard-headers/sys/virtio_ring.h | 171 +++++++++++++++++++
> > include/standard-headers/sys/virtio_rng.h | 8 +
> > include/standard-headers/sys/virtio_scsi.h | 164 ++++++++++++++++++
> > include/standard-headers/sys/virtio_types.h | 46 +++++
> > 14 files changed, 1249 insertions(+)
> > create mode 100644 include/standard-headers/sys/if_ether.h
> > create mode 100644 include/standard-headers/sys/types.h
> > create mode 100644 include/standard-headers/sys/virtio_9p.h
> > create mode 100644 include/standard-headers/sys/virtio_balloon.h
> > create mode 100644 include/standard-headers/sys/virtio_blk.h
> > create mode 100644 include/standard-headers/sys/virtio_config.h
> > create mode 100644 include/standard-headers/sys/virtio_console.h
> > create mode 100644 include/standard-headers/sys/virtio_ids.h
> > create mode 100644 include/standard-headers/sys/virtio_net.h
> > create mode 100644 include/standard-headers/sys/virtio_pci.h
> > create mode 100644 include/standard-headers/sys/virtio_ring.h
> > create mode 100644 include/standard-headers/sys/virtio_rng.h
> > create mode 100644 include/standard-headers/sys/virtio_scsi.h
> > create mode 100644 include/standard-headers/sys/virtio_types.h
> >
> > diff --git a/include/standard-headers/sys/if_ether.h b/include/standard-headers/sys/if_ether.h
> > new file mode 100644
> > index 0000000..91cf735
> > --- /dev/null
> > +++ b/include/standard-headers/sys/if_ether.h
> > @@ -0,0 +1 @@
> > +#define ETH_ALEN 6
> > diff --git a/include/standard-headers/sys/types.h b/include/standard-headers/sys/types.h
> > new file mode 100644
> > index 0000000..7d42ac6
> > --- /dev/null
> > +++ b/include/standard-headers/sys/types.h
> > @@ -0,0 +1,2 @@
> > +#include <inttypes.h>
> > +#include "qemu/compiler.h"
> > diff --git a/include/standard-headers/sys/virtio_9p.h b/include/standard-headers/sys/virtio_9p.h
> > new file mode 100644
> > index 0000000..19df0e4
> > --- /dev/null
> > +++ b/include/standard-headers/sys/virtio_9p.h
> > @@ -0,0 +1,44 @@
> > +#ifndef _LINUX_VIRTIO_9P_H
> > +#define _LINUX_VIRTIO_9P_H
>
> Would it make sense to replace the _LINUX_ in the header guards with
> the update-linux-headers.sh script, too (to avoid confusion with the
> real Linux headers)?
>
> Thomas
There will be conflicts if you try to pull in both, anyway.
So just don't do it :)
--
MST
next prev parent reply other threads:[~2015-02-16 16:14 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-15 11:38 [Qemu-devel] [PATCH v2 00/17] virtio: pull headers from linux Michael S. Tsirkin
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 01/17] scripts/update-linux-headers.sh: pull virtio hdrs Michael S. Tsirkin
2015-02-16 14:27 ` Thomas Huth
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 02/17] include: import virtio headers from linux 4.0 Michael S. Tsirkin
2015-02-16 16:03 ` Thomas Huth
2015-02-16 16:13 ` Michael S. Tsirkin [this message]
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 03/17] virtio: use standard virtio_ring.h Michael S. Tsirkin
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 04/17] virtio: use standard-headers Michael S. Tsirkin
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 05/17] virtio-balloon: use standard headers Michael S. Tsirkin
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 06/17] virtio-9p: " Michael S. Tsirkin
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 07/17] virtio-blk: switch to standard-headers Michael S. Tsirkin
2015-02-15 11:38 ` [Qemu-devel] [PATCH v2 08/17] virtio-net, tap: use standard-headers Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 09/17] virtio-rng: " Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 10/17] virtio-scsi: " Michael S. Tsirkin
2015-02-16 9:30 ` Paolo Bonzini
2015-02-16 11:36 ` Michael S. Tsirkin
2015-02-16 11:45 ` Peter Maydell
2015-02-16 14:27 ` Paolo Bonzini
2015-03-11 10:13 ` Alexey Kardashevskiy
2015-03-11 10:57 ` Alexey Kardashevskiy
2015-03-11 12:04 ` Michael S. Tsirkin
2015-03-11 12:52 ` Alexey Kardashevskiy
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 11/17] virtio-serial: switch to standard-headers Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 12/17] update-linux-headers: use standard-headers Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 13/17] linux-headers: " Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 14/17] virtio-pci: use standard headers Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 15/17] scripts: add arch specific standard-headers Michael S. Tsirkin
2015-02-16 15:56 ` Thomas Huth
2015-02-16 16:15 ` Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 16/17] standard-headers: add s390 virtio headers Michael S. Tsirkin
2015-02-15 11:39 ` [Qemu-devel] [PATCH v2 17/17] s390: use standard headers Michael S. Tsirkin
2015-02-15 11:41 ` [Qemu-devel] [PATCH v2 00/17] virtio: pull headers from linux Peter Maydell
2015-02-15 11:43 ` Michael S. Tsirkin
2015-02-16 8:50 ` Cornelia Huck
2015-02-16 9:05 ` Michael S. Tsirkin
2015-02-16 9:32 ` Cornelia Huck
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=20150216161353.GD25470@redhat.com \
--to=mst@redhat.com \
--cc=agraf@suse.de \
--cc=cornelia.huck@de.ibm.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=thuth@linux.vnet.ibm.com \
--cc=tiejun.chen@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).