提交 716b8e4d 编写于 作者: A Alex Williamson

linux-headers: Update to 3.7-rc5

update-linux-headers.sh script run against Linux tag v3.7-rc5
Signed-off-by: NAlex Williamson <alex.williamson@redhat.com>
上级 f5022a13
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* Authors: Hollis Blanchard <hollisb@us.ibm.com> * Authors: Hollis Blanchard <hollisb@us.ibm.com>
*/ */
#ifndef __POWERPC_KVM_PARA_H__ #ifndef _UAPI__POWERPC_KVM_PARA_H__
#define __POWERPC_KVM_PARA_H__ #define _UAPI__POWERPC_KVM_PARA_H__
#include <linux/types.h> #include <linux/types.h>
...@@ -87,4 +87,4 @@ struct kvm_vcpu_arch_shared { ...@@ -87,4 +87,4 @@ struct kvm_vcpu_arch_shared {
#define KVM_MAGIC_FEAT_MAS0_TO_SPRG7 (1 << 1) #define KVM_MAGIC_FEAT_MAS0_TO_SPRG7 (1 << 1)
#endif /* __POWERPC_KVM_PARA_H__ */ #endif /* _UAPI__POWERPC_KVM_PARA_H__ */
/* /*
* definition for paravirtual devices on s390 * User API definitions for paravirtual devices on s390
* *
* Copyright IBM Corp. 2008 * Copyright IBM Corp. 2008
* *
...@@ -9,9 +9,3 @@ ...@@ -9,9 +9,3 @@
* *
* Author(s): Christian Borntraeger <borntraeger@de.ibm.com> * Author(s): Christian Borntraeger <borntraeger@de.ibm.com>
*/ */
#ifndef __S390_KVM_PARA_H
#define __S390_KVM_PARA_H
#endif /* __S390_KVM_PARA_H */
...@@ -9,6 +9,22 @@ ...@@ -9,6 +9,22 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/ioctl.h> #include <linux/ioctl.h>
#define DE_VECTOR 0
#define DB_VECTOR 1
#define BP_VECTOR 3
#define OF_VECTOR 4
#define BR_VECTOR 5
#define UD_VECTOR 6
#define NM_VECTOR 7
#define DF_VECTOR 8
#define TS_VECTOR 10
#define NP_VECTOR 11
#define SS_VECTOR 12
#define GP_VECTOR 13
#define PF_VECTOR 14
#define MF_VECTOR 16
#define MC_VECTOR 18
/* Select x86 specific features in <linux/kvm.h> */ /* Select x86 specific features in <linux/kvm.h> */
#define __KVM_HAVE_PIT #define __KVM_HAVE_PIT
#define __KVM_HAVE_IOAPIC #define __KVM_HAVE_IOAPIC
...@@ -25,6 +41,7 @@ ...@@ -25,6 +41,7 @@
#define __KVM_HAVE_DEBUGREGS #define __KVM_HAVE_DEBUGREGS
#define __KVM_HAVE_XSAVE #define __KVM_HAVE_XSAVE
#define __KVM_HAVE_XCRS #define __KVM_HAVE_XCRS
#define __KVM_HAVE_READONLY_MEM
/* Architectural interrupt line count. */ /* Architectural interrupt line count. */
#define KVM_NR_INTERRUPTS 256 #define KVM_NR_INTERRUPTS 256
......
...@@ -101,9 +101,13 @@ struct kvm_userspace_memory_region { ...@@ -101,9 +101,13 @@ struct kvm_userspace_memory_region {
__u64 userspace_addr; /* start of the userspace allocated memory */ __u64 userspace_addr; /* start of the userspace allocated memory */
}; };
/* for kvm_memory_region::flags */ /*
#define KVM_MEM_LOG_DIRTY_PAGES 1UL * The bit 0 ~ bit 15 of kvm_memory_region::flags are visible for userspace,
#define KVM_MEMSLOT_INVALID (1UL << 1) * other bits are reserved for kvm internal use which are defined in
* include/linux/kvm_host.h.
*/
#define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
#define KVM_MEM_READONLY (1UL << 1)
/* for KVM_IRQ_LINE */ /* for KVM_IRQ_LINE */
struct kvm_irq_level { struct kvm_irq_level {
...@@ -618,6 +622,10 @@ struct kvm_ppc_smmu_info { ...@@ -618,6 +622,10 @@ struct kvm_ppc_smmu_info {
#define KVM_CAP_PPC_GET_SMMU_INFO 78 #define KVM_CAP_PPC_GET_SMMU_INFO 78
#define KVM_CAP_S390_COW 79 #define KVM_CAP_S390_COW 79
#define KVM_CAP_PPC_ALLOC_HTAB 80 #define KVM_CAP_PPC_ALLOC_HTAB 80
#ifdef __KVM_HAVE_READONLY_MEM
#define KVM_CAP_READONLY_MEM 81
#endif
#define KVM_CAP_IRQFD_RESAMPLE 82
#ifdef KVM_CAP_IRQ_ROUTING #ifdef KVM_CAP_IRQ_ROUTING
...@@ -683,12 +691,21 @@ struct kvm_xen_hvm_config { ...@@ -683,12 +691,21 @@ struct kvm_xen_hvm_config {
#endif #endif
#define KVM_IRQFD_FLAG_DEASSIGN (1 << 0) #define KVM_IRQFD_FLAG_DEASSIGN (1 << 0)
/*
* Available with KVM_CAP_IRQFD_RESAMPLE
*
* KVM_IRQFD_FLAG_RESAMPLE indicates resamplefd is valid and specifies
* the irqfd to operate in resampling mode for level triggered interrupt
* emlation. See Documentation/virtual/kvm/api.txt.
*/
#define KVM_IRQFD_FLAG_RESAMPLE (1 << 1)
struct kvm_irqfd { struct kvm_irqfd {
__u32 fd; __u32 fd;
__u32 gsi; __u32 gsi;
__u32 flags; __u32 flags;
__u8 pad[20]; __u32 resamplefd;
__u8 pad[16];
}; };
struct kvm_clock_data { struct kvm_clock_data {
......
#ifndef __LINUX_KVM_PARA_H #ifndef _UAPI__LINUX_KVM_PARA_H
#define __LINUX_KVM_PARA_H #define _UAPI__LINUX_KVM_PARA_H
/* /*
* This header file provides a method for making a hypercall to the host * This header file provides a method for making a hypercall to the host
...@@ -25,4 +25,4 @@ ...@@ -25,4 +25,4 @@
*/ */
#include <asm/kvm_para.h> #include <asm/kvm_para.h>
#endif /* __LINUX_KVM_PARA_H */ #endif /* _UAPI__LINUX_KVM_PARA_H */
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
* it under the terms of the GNU General Public License version 2 as * it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation. * published by the Free Software Foundation.
*/ */
#ifndef VFIO_H #ifndef _UAPIVFIO_H
#define VFIO_H #define _UAPIVFIO_H
#include <linux/types.h> #include <linux/types.h>
#include <linux/ioctl.h> #include <linux/ioctl.h>
...@@ -365,4 +365,4 @@ struct vfio_iommu_type1_dma_unmap { ...@@ -365,4 +365,4 @@ struct vfio_iommu_type1_dma_unmap {
#define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14) #define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14)
#endif /* VFIO_H */ #endif /* _UAPIVFIO_H */
#ifndef _LINUX_VIRTIO_CONFIG_H #ifndef _UAPI_LINUX_VIRTIO_CONFIG_H
#define _LINUX_VIRTIO_CONFIG_H #define _UAPI_LINUX_VIRTIO_CONFIG_H
/* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so /* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so
* anyone can use the definitions to implement compatible drivers/servers. * anyone can use the definitions to implement compatible drivers/servers.
* *
...@@ -51,4 +51,4 @@ ...@@ -51,4 +51,4 @@
* suppressed them? */ * suppressed them? */
#define VIRTIO_F_NOTIFY_ON_EMPTY 24 #define VIRTIO_F_NOTIFY_ON_EMPTY 24
#endif /* _LINUX_VIRTIO_CONFIG_H */ #endif /* _UAPI_LINUX_VIRTIO_CONFIG_H */
#ifndef _LINUX_VIRTIO_RING_H #ifndef _UAPI_LINUX_VIRTIO_RING_H
#define _LINUX_VIRTIO_RING_H #define _UAPI_LINUX_VIRTIO_RING_H
/* An interface for efficient virtio implementation, currently for use by KVM /* An interface for efficient virtio implementation, currently for use by KVM
* and lguest, but hopefully others soon. Do NOT change this since it will * and lguest, but hopefully others soon. Do NOT change this since it will
* break existing servers and clients. * break existing servers and clients.
...@@ -160,4 +160,4 @@ static __inline__ int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old ...@@ -160,4 +160,4 @@ static __inline__ int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old
return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old); return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old);
} }
#endif /* _LINUX_VIRTIO_RING_H */ #endif /* _UAPI_LINUX_VIRTIO_RING_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册