From 8e3424a3d947ff0b4b7ea0c16537e0c54488aa4c Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Tue, 30 Dec 2008 11:23:34 -0800 Subject: [PATCH] Fix missing symbol in brcompat kernel module on older kernels. In kernels older than 2.6.23, the genl_register_mc_group function is not defined, so we fake it. The original checkin didn't build the C file that contains the function's definition. --- datapath/linux-2.6/Modules.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/datapath/linux-2.6/Modules.mk b/datapath/linux-2.6/Modules.mk index dae76061..b3211c14 100644 --- a/datapath/linux-2.6/Modules.mk +++ b/datapath/linux-2.6/Modules.mk @@ -22,6 +22,7 @@ openflow_headers += \ linux-2.6/compat-2.6/include/net/genetlink.h brcompat_sources = \ + linux-2.6/compat-2.6/genetlink.c \ brcompat.c brcompat_headers = -- 2.30.2