From 656a0e37da750d8e3e7bde3fe27e45d1a332f15a Mon Sep 17 00:00:00 2001 From: Yu Zhiguo Date: Fri, 25 Jun 2010 17:33:07 +0800 Subject: [PATCH] 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 --- datapath/datapath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.0