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" <m...@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 <m...@redhat.com> > > --- > > 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 <inttypes.h> > > That should be <stdint.h> now, shouldn't it? > > Thomas
Oh, right, I forgot to re-run it. I'll fix it up with a patch on top? -- MST