| 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: <4E36E0B2.60900@tilera.com> Date: Mon, 1 Aug 2011 13:21:54 -0400 From: Chris Metcalf <cmetcalf@...era.com> To: Jeff Kirsher <jeffrey.t.kirsher@...el.com> CC: <davem@...emloft.net>, <netdev@...r.kernel.org>, <gospo@...hat.com>, <sassmann@...hat.com> Subject: Re: [net-next v2 70/71] tile: Move the Tilera driver On 7/30/2011 11:27 PM, Jeff Kirsher wrote: > Move the Tilera driver into drivers/net/ethernet/tile and > make the necessary Kconfig and Makefile changes. > > CC: Chris Metcalf <cmetcalf@...era.com> > Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@...el.com> > [...] > +++ b/drivers/net/ethernet/tile/Kconfig > @@ -0,0 +1,28 @@ > +# > +# Tilera network device configuration > +# > + > +config NET_VENDOR_TILERA > + bool "Tilera devices" > + depends on TILE > + ---help--- > + If you have a network (Ethernet) card belonging to this class, say Y > + and read the Ethernet-HOWTO, available from > + <http://www.tldp.org/docs.html#howto>. > + > + Note that the answer to this question doesn't directly affect the > + kernel: saying N will just cause the configurator to skip all > + the questions about Tilera cards. If you say Y, you will be asked for > + your specific card in the following questions. > + > +config TILE_NET > + tristate "Tilera GBE/XGBE network driver support" > + depends on NET_VENDOR_TILERA && TILE > + default y > + select CRC32 > + ---help--- > + This is a standard Linux network device driver for the > + on-chip Tilera Gigabit Ethernet and XAUI interfaces. > + > + To compile this driver as a module, choose M here: the module > + will be called tile_net. Overall, this seems fine, since the Tilera drivers get grouped more appropriately as a result. However, the drivers in question are not Ethernet cards (and Tilera is not an Ethernet card vendor and has no plans to become one). Instead, this is the driver support for the built-in networking hardware on the Tilera multicore CPU chip. I'm happy to group this support under drivers/net/ethernet/tile/, but I think it's appropriate to default it to "Y" if you are building a TILE kernel (since you are guaranteed to have the networking hardware available). I suspect for now the cleanest thing to do is to fold the two config options together, using NET_VENDOR_TILERA for consistency with other NET_VENDOR_xxx symbols, and defaulting it to "Y" via "depends on TILE". I don't think the Ethernet-HOWO reference is particularly helpful since it mostly tackles all the various card issues, kernel boot param issues, etc., none of which are relevant to this driver. Something like: +config NET_VENDOR_TILERA + bool "Tilera devices" + depends on TILE + default y + select CRC32 + ---help--- + This is a standard Linux network device driver for the arch/tile + on-chip Gigabit Ethernet and XAUI interfaces. + + To compile this driver as a module, choose M here: the module + will be called tile_net. Obviously you'd also need to tweak the TILE_NET symbol in the Makefile to be VENDOR_TILERA. If this makes sense to you, go ahead and make the change, and feel free to use my Acked-by: Chris Metcalf <cmetcalf@...era.com> -- Chris Metcalf, Tilera Corp. http://www.tilera.com -- 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