Re: -git tree build failure #2: drivers/net/cnic.c:2520: error:implicit declaration of functionâ__symbol_getâ

From: Michael Chan
Date: Sat Jun 13 2009 - 20:50:09 EST



On Sat, 2009-06-13 at 13:42 -0700, James Bottomley wrote:
> On Sat, 2009-06-13 at 13:11 -0700, Linus Torvalds wrote:
> >
> >
> > That makes no sense.
> >
> > Look at the first #include in the file - it already includes
> > <linux/module.h>.
> >
> > Why do we need to do it twice?
>
> We don't ... it's the wrong fix. The actual problem is that
> __symbol_get() is only defined for the modular case. What it looks to
> be doing is a reflection call on bnx2_cnic_probe(). I'm not sure why
> it's doing this ... other than perhaps cnic wants to avoid an explicit
> bnx2 dependency? I actually think it's incorrect, since the netdev code
> before it just checked bnx2 is present, so I see no harm in an explicit
> call, so this should fix it.
>
> If it had a good reason for the reflective call, then symbol_get()
> without the __ should be used.
>
> Michael Chan, could you confirm?
>
Thanks James and Ingo. We don't want to have a symbol dependency on
bnx2 because this driver eventually will support the 10G bnx2x driver as
well. So we want the driver to support either or both NIC drivers
without both drivers loaded. Please use the patch below.

cnic: Fix __symbol_get() build error.

Ingo molnar <mingo@xxxxxxx> reported the error when CONFIG_MODULES is
not defined.

Signed-off-by: Michael Chan <mchan@xxxxxxxxxxxx>

diff --git a/drivers/net/cnic.c b/drivers/net/cnic.c
index a9e2fd3..4d1515f 100644
--- a/drivers/net/cnic.c
+++ b/drivers/net/cnic.c
@@ -2519,9 +2519,9 @@ static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
struct cnic_dev *cdev;
struct cnic_local *cp;
struct cnic_eth_dev *ethdev = NULL;
- struct cnic_eth_dev *(*probe)(void *) = NULL;
+ struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;

- probe = __symbol_get("bnx2_cnic_probe");
+ probe = symbol_get(bnx2_cnic_probe);
if (probe) {
ethdev = (*probe)(dev);
symbol_put_addr(probe);
diff --git a/drivers/net/cnic_if.h b/drivers/net/cnic_if.h
index 0638096..d1bce27 100644
--- a/drivers/net/cnic_if.h
+++ b/drivers/net/cnic_if.h
@@ -296,4 +296,6 @@ extern int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops);

extern int cnic_unregister_driver(int ulp_type);

+extern struct cnic_eth_dev *bnx2_cnic_probe(struct net_device *dev);
+
#endif



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/