[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20090327155327.GA14867@x200.localdomain>
Date: Fri, 27 Mar 2009 18:53:27 +0300
From: Alexey Dobriyan <adobriyan@...il.com>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org
Subject: [PATCH] Fix "error: implicit declaration of function
'page_address'"
As seen on mips:
In file included from include/net/sock.h:50,
from security/selinux/avc.c:25:
include/linux/netdevice.h: In function 'skb_gro_mac_header':
include/linux/netdevice.h:1132: error: implicit declaration of function 'page_address'
include/linux/netdevice.h:1133: warning: pointer/integer type mismatch in conditional expression
Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
---
include/linux/netdevice.h | 1 +
1 file changed, 1 insertion(+)
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -32,6 +32,7 @@
#ifdef __KERNEL__
#include <linux/timer.h>
#include <linux/delay.h>
+#include <linux/mm.h>
#include <asm/atomic.h>
#include <asm/cache.h>
#include <asm/byteorder.h>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists