netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] (4/25) sk98: change #define to typedef
@ 2004-11-16 15:56 Mirko Lindner
  2004-11-16 17:12 ` Stephen Hemminger
  2004-11-17 15:01 ` Christoph Hellwig
  0 siblings, 2 replies; 6+ messages in thread
From: Mirko Lindner @ 2004-11-16 15:56 UTC (permalink / raw)
  To: Christoph Hellwig, Stephen Hemminger
  Cc: Jeff Garzik, Mirko Lindner, netdev, Ralph Roesler

 > I don't think the driver is complex enough for all that os-common mess.
 > If you look at the BSD sk driver it's about a third of the size of the
 > Linux driver because it doesn't have all this mess.

Note that the kernel BSD sk driver was _not_ written by SysKonnect and 
only supports Genesis and Yukon1; linux supports Genesis (single and 
dual), Yukon1, Yukon Plus, Yukon EC, Yukon FE and Yukon2 (single and 
dual). The BSD sk driver supports substantially less functionality than 
the Linux driver. For example, there is no link failover capability in 
the sk driver; it has no power management; numerous chip changes and 
minor tweaks have not been added, since many problems have become 
apparent through our other supported platforms (some 15 operating 
systems) and have since been fixed in our common modules; sk has no 
wake-on-LAN and so on. The official SysKonnect BSD driver (yk) also uses 
the common modules and is not open source.

However, the real point is that the Linux driver (as indeed _all_ of our 
drivers) shares common code with all our supported platforms and this 
necessarily introduces some overhead. But it isn't excessive, and the 
benefits _far_ outweigh the drawbacks, namely, that we have a very wide 
range of systems sharing common code and thus the probability of finding 
and fixing bugs is very substantially higher than if we wrote a 
dedicated driver for each platform.

For instance the symbol SK_IOC mentioned in your mail:

 > -#define SK_IOC char __iomem *
 > +typedef void __iomem *SK_IOC;

is used in a large number of OS independent driver files (e.g. skvpd.c).
The -for instance- file skvpd.c used by our Linux driver is used
at the same time without any changes by all our other drivers running
on other operating systems (e.g. Solaris, Windows).

This is the reason why we need to redefine this symbol to the Linux
specific implementation (void __iomem).

Mirko

^ permalink raw reply	[flat|nested] 6+ messages in thread
[parent not found: <20041115150910.0f3b8498@zqx3.pdx.osdl.net>]

end of thread, other threads:[~2004-11-19  0:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-16 15:56 [PATCH] (4/25) sk98: change #define to typedef Mirko Lindner
2004-11-16 17:12 ` Stephen Hemminger
2004-11-17 15:01 ` Christoph Hellwig
2004-11-19  0:23   ` Stephen Hemminger
     [not found] <20041115150910.0f3b8498@zqx3.pdx.osdl.net>
2004-11-15 23:22 ` Stephen Hemminger
2004-11-16  8:22   ` Christoph Hellwig

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).