netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • [parent not found: <200503161611.j2GGBT0F004479@ginger.cmf.nrl.navy.mil>]
  • * [2.6 patch] fix bridge <-> ATM compile error
    @ 2005-03-15 12:19 Adrian Bunk
      0 siblings, 0 replies; 7+ messages in thread
    From: Adrian Bunk @ 2005-03-15 12:19 UTC (permalink / raw)
      To: shemminger, bridge, chas; +Cc: linux-atm-general, netdev, linux-kernel
    
    This patch fixes the following compile error with CONFIG_BRIDGE=y and 
    CONFIG_ATM_LANE=m:
    
    <--  snip  -->
    
    ...
      LD      .tmp_vmlinux1
    net/built-in.o(.init.text+0x3ad1): In function `br_init':
    : undefined reference to `br_fdb_get_hook'
    net/built-in.o(.init.text+0x3adb): In function `br_init':
    : undefined reference to `br_fdb_put_hook'
    net/built-in.o(.exit.text+0xa2): In function `br_deinit':
    : undefined reference to `br_fdb_get_hook'
    net/built-in.o(.exit.text+0xac): In function `br_deinit':
    : undefined reference to `br_fdb_put_hook'
    make: *** [.tmp_vmlinux1] Error 1
    
    <--  snip  -->
    
    Signed-off-by: Adrian Bunk <bunk@stusta.de>
    
    ---
    
     net/bridge/br.c |    6 +++---
     1 files changed, 3 insertions(+), 3 deletions(-)
    
    --- linux-2.6.11-mm3-modular/net/bridge/br.c.old	2005-03-15 03:23:10.000000000 +0100
    +++ linux-2.6.11-mm3-modular/net/bridge/br.c	2005-03-15 03:24:05.000000000 +0100
    @@ -22,7 +22,7 @@
     
     #include "br_private.h"
     
    -#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
    +#if defined(CONFIG_ATM_LANE) || (defined(CONFIG_ATM_LANE_MODULE) && defined(MODULE))
     #include "../atm/lec.h"
     #endif
     
    @@ -39,7 +39,7 @@
     	brioctl_set(br_ioctl_deviceless_stub);
     	br_handle_frame_hook = br_handle_frame;
     
    -#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
    +#if defined(CONFIG_ATM_LANE) || (defined(CONFIG_ATM_LANE_MODULE) && defined(MODULE))
     	br_fdb_get_hook = br_fdb_get;
     	br_fdb_put_hook = br_fdb_put;
     #endif
    @@ -60,7 +60,7 @@
     
     	synchronize_net();
     
    -#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
    +#if defined(CONFIG_ATM_LANE) || (defined(CONFIG_ATM_LANE_MODULE) && defined(MODULE))
     	br_fdb_get_hook = NULL;
     	br_fdb_put_hook = NULL;
     #endif
    
    ^ permalink raw reply	[flat|nested] 7+ messages in thread

    end of thread, other threads:[~2005-03-28 19:11 UTC | newest]
    
    Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20050315121930.GE3189@stusta.de>
         [not found] ` <20050315091305.3fc07561@dxpl.pdx.osdl.net>
    2005-03-15 17:25   ` [2.6 patch] fix bridge <-> ATM compile error Adrian Bunk
         [not found] ` <200503161611.j2GGBT0F004479@ginger.cmf.nrl.navy.mil>
    2005-03-16 18:15   ` Adrian Bunk
    2005-03-16 18:24     ` chas williams - CONTRACTOR
    2005-03-17 20:36     ` chas williams - CONTRACTOR
    2005-03-19 23:04       ` Adrian Bunk
    2005-03-28 19:11         ` Stephen Hemminger
    2005-03-15 12:19 Adrian Bunk
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).