From: Yu Zhiguo Date: Fri, 25 Jun 2010 09:33:07 +0000 (+0800) Subject: datapath: fix header file include X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=656a0e37da750d8e3e7bde3fe27e45d1a332f15a;p=ovs.git datapath: fix header file include linux/highmem.h should be included rather than asm/highmem.h, otherwise openvswitch_mod cannot resolve kmap and kunmap on some arch. Signed-off-by: Yu Zhiguo --- diff --git a/datapath/datapath.c b/datapath/datapath.c index c715f0ec7..8991e3549 100644 --- a/datapath/datapath.c +++ b/datapath/datapath.c @@ -32,7 +32,7 @@ #include #include #include -#include +#include #include #include #include