From: Justin Pettit Date: Tue, 30 Dec 2008 19:23:34 +0000 (-0800) Subject: Fix missing symbol in brcompat kernel module on older kernels. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e3424a3d947ff0b4b7ea0c16537e0c54488aa4c;p=openvswitch 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. --- 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 =