vfio: include <linux/slab.h> for kmalloc

The vfio drivers call kmalloc or kzalloc, but do not
include <linux/slab.h>, which causes build errors on
ARM.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Cc: kvm@vger.kernel.org
This commit is contained in:
Arnd Bergmann
2013-03-15 12:58:20 -06:00
committed by Alex Williamson
szülő f6161aa153
commit 25e9789ddd
2 fájl változott, egészen pontosan 2 új sor hozzáadva és 0 régi sor törölve

Fájl megtekintése

@@ -27,6 +27,7 @@
#include <linux/pci.h>
#include <linux/uaccess.h>
#include <linux/vfio.h>
#include <linux/slab.h>
#include "vfio_pci_private.h"