diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-27 21:17:59 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:32:12 -0400 |
commit | 799fd8b23961f73fb7e7eeaee79f7ef0850e6c31 (patch) | |
tree | 4034646ab5978ec64b4a7a4cb1375c923b9cd473 /virt | |
parent | 63c9744b9a53b8113b6d33ca361452b28f2ec391 (diff) | |
download | linux-3.10-799fd8b23961f73fb7e7eeaee79f7ef0850e6c31.tar.gz linux-3.10-799fd8b23961f73fb7e7eeaee79f7ef0850e6c31.tar.bz2 linux-3.10-799fd8b23961f73fb7e7eeaee79f7ef0850e6c31.zip |
kvm: fix implicit use of stat.h header file
This was coming in via an implicit module.h (and its sub-includes)
before, but we'll be cleaning that up shortly. Call out the stat.h
include requirement in advance.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/iommu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/virt/kvm/iommu.c b/virt/kvm/iommu.c index d5f3b8d1e09..2b361459445 100644 --- a/virt/kvm/iommu.c +++ b/virt/kvm/iommu.c @@ -26,6 +26,7 @@ #include <linux/list.h> #include <linux/kvm_host.h> #include <linux/pci.h> +#include <linux/stat.h> #include <linux/dmar.h> #include <linux/iommu.h> #include <linux/intel-iommu.h> |