From: chas w. <ch...@us...> - 2007-12-29 20:59:53
|
Update of /cvsroot/linux-atm/linux-atm/src/br2684 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3370/src/br2684 Modified Files: Tag: V2_5_0 br2684ctl.c Log Message: allow br2684ctl to build with routed support even if the kernel doesnt have the support yet Index: br2684ctl.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/br2684/Attic/br2684ctl.c,v retrieving revision 1.1.2.12 retrieving revision 1.1.2.13 diff -C2 -d -r1.1.2.12 -r1.1.2.13 *** br2684ctl.c 21 Oct 2007 20:08:12 -0000 1.1.2.12 --- br2684ctl.c 29 Dec 2007 20:59:49 -0000 1.1.2.13 *************** *** 11,14 **** --- 11,18 ---- #include <linux/atmdev.h> #include <linux/atmbr2684.h> + #ifndef BR2684_FLAG_ROUTED + #warning "Kernel missing routed support for br2684" + #define BR2684_FLAG_ROUTED (1<<16) /* payload is routed, not bridged */ + #endif /* Written by Marcell GAL <ce...@sc...> to make use of the */ |