lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20070710124447.GY3492@stusta.de> Date: Tue, 10 Jul 2007 14:44:47 +0200 From: Adrian Bunk <bunk@...sta.de> To: jgarzik@...ox.com Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org Subject: [2.6 patch] rrunner.c:rr_init() must be __devinit This patch fixes the following section mismatch: <-- snip --> ... MODPOST vmlinux WARNING: drivers/built-in.o(.text+0x26e3f2): Section mismatch: reference to .init.text:rr_init (between 'rr_init_one' and 'rr_remove_one') ... <-- snip --> Signed-off-by: Adrian Bunk <bunk@...sta.de> --- --- linux-2.6.22-rc6-mm1/drivers/net/rrunner.c.old 2007-07-10 04:34:33.000000000 +0200 +++ linux-2.6.22-rc6-mm1/drivers/net/rrunner.c 2007-07-10 04:34:42.000000000 +0200 @@ -516,7 +516,7 @@ } -static int __init rr_init(struct net_device *dev) +static int __devinit rr_init(struct net_device *dev) { struct rr_private *rrpriv; struct rr_regs __iomem *regs; - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists