All of lore.kernel.org
 help / color / mirror / Atom feed
* comx drivers in 2.6
@ 2003-07-17 23:33 Stephen Hemminger
  2003-07-17 23:42 ` Jeff Garzik
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2003-07-17 23:33 UTC (permalink / raw)
  To: Gergely Madarasz, Jeff Garzik; +Cc: netdev

It looks like the comx drivers never got updated for 2.5/2.6.  Some
obvious issues are:
	- lots of use of /proc files without setting the owner field.
	- still using cli/sti
	- no SMP locking on the linked list (which could be changed to list macros)
	  of hardware and protocols.

Just bumped into this while trying to inspect for all the last possible
broken usage of net_device structure.  It is too far behind to address
those issues.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: comx drivers in 2.6
  2003-07-17 23:33 comx drivers in 2.6 Stephen Hemminger
@ 2003-07-17 23:42 ` Jeff Garzik
  2003-07-18 19:36   ` Stephen Hemminger
  0 siblings, 1 reply; 4+ messages in thread
From: Jeff Garzik @ 2003-07-17 23:42 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Gergely Madarasz, netdev

Stephen Hemminger wrote:
> It looks like the comx drivers never got updated for 2.5/2.6.  Some
> obvious issues are:
> 	- lots of use of /proc files without setting the owner field.
> 	- still using cli/sti
> 	- no SMP locking on the linked list (which could be changed to list macros)
> 	  of hardware and protocols.
> 
> Just bumped into this while trying to inspect for all the last possible
> broken usage of net_device structure.  It is too far behind to address
> those issues.


Submit a patch to mark these CONFIG_OBSOLETE.  AFAIK nobody has cared 
for most of them since 2.2...  (munich is an exception)

	Jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: comx drivers in 2.6
  2003-07-17 23:42 ` Jeff Garzik
@ 2003-07-18 19:36   ` Stephen Hemminger
  2003-07-19  8:14     ` Gergely Madarasz
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2003-07-18 19:36 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Gergely Madarasz, netdev

On Thu, 17 Jul 2003 19:42:16 -0400
Jeff Garzik <jgarzik@pobox.com> wrote:

> Stephen Hemminger wrote:
> > It looks like the comx drivers never got updated for 2.5/2.6.  Some
> > obvious issues are:
> > 	- lots of use of /proc files without setting the owner field.
> > 	- still using cli/sti
> > 	- no SMP locking on the linked list (which could be changed to list macros)
> > 	  of hardware and protocols.
> > 
> > Just bumped into this while trying to inspect for all the last possible
> > broken usage of net_device structure.  It is too far behind to address
> > those issues.
> 
> 
> Submit a patch to mark these CONFIG_OBSOLETE.  AFAIK nobody has cared 
> for most of them since 2.2...  (munich is an exception)
> 

diff -Nru a/drivers/net/wan/Kconfig b/drivers/net/wan/Kconfig
--- a/drivers/net/wan/Kconfig	Fri Jul 18 11:55:47 2003
+++ b/drivers/net/wan/Kconfig	Fri Jul 18 11:55:47 2003
@@ -60,9 +60,10 @@
 #
 # COMX drivers
 #
+# Not updated to 2.6.
 config COMX
 	tristate "MultiGate (COMX) synchronous serial boards support"
-	depends on WAN && (ISA || PCI)
+	depends on WAN && (ISA || PCI) && OBSOLETE
 	---help---
 	  Say Y if you want to use any board from the MultiGate (COMX) family.
 	  These boards are synchronous serial adapters for the PC,

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: comx drivers in 2.6
  2003-07-18 19:36   ` Stephen Hemminger
@ 2003-07-19  8:14     ` Gergely Madarasz
  0 siblings, 0 replies; 4+ messages in thread
From: Gergely Madarasz @ 2003-07-19  8:14 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Jeff Garzik, Gergely Madarasz, netdev, don

On Fri, Jul 18, 2003 at 12:36:25PM -0700, Stephen Hemminger wrote:
> On Thu, 17 Jul 2003 19:42:16 -0400
> Jeff Garzik <jgarzik@pobox.com> wrote:
> 
> > Stephen Hemminger wrote:
> > > It looks like the comx drivers never got updated for 2.5/2.6.  Some
> > > obvious issues are:
> > > 	- lots of use of /proc files without setting the owner field.
> > > 	- still using cli/sti
> > > 	- no SMP locking on the linked list (which could be changed to list macros)
> > > 	  of hardware and protocols.
> > > 
> > > Just bumped into this while trying to inspect for all the last possible
> > > broken usage of net_device structure.  It is too far behind to address
> > > those issues.
> > 
> > 
> > Submit a patch to mark these CONFIG_OBSOLETE.  AFAIK nobody has cared 
> > for most of them since 2.2...  (munich is an exception)
> > 
> 
> diff -Nru a/drivers/net/wan/Kconfig b/drivers/net/wan/Kconfig
> --- a/drivers/net/wan/Kconfig	Fri Jul 18 11:55:47 2003
> +++ b/drivers/net/wan/Kconfig	Fri Jul 18 11:55:47 2003
> @@ -60,9 +60,10 @@
>  #
>  # COMX drivers
>  #
> +# Not updated to 2.6.
>  config COMX
>  	tristate "MultiGate (COMX) synchronous serial boards support"
> -	depends on WAN && (ISA || PCI)
> +	depends on WAN && (ISA || PCI) && OBSOLETE
>  	---help---
>  	  Say Y if you want to use any board from the MultiGate (COMX) family.
>  	  These boards are synchronous serial adapters for the PC,

Please add the following patch too.
I'm suprised I'm still not removed from the maintainers file, though I
have left itc almost two years ago. 

--- MAINTAINERS~        Mon Jul 14 05:35:12 2003
+++ MAINTAINERS Sat Jul 19 10:12:14 2003
@@ -420,8 +420,8 @@
 S:     Supported
 
 COMX/MULTIGATE SYNC SERIAL DRIVERS
-P:     Gergely Madarasz
-M:     Gergely Madarasz <gorgo@itc.hu>
+P:     Pasztor Szilard
+M:     Pasztor Szilard <don@itc.hu>
 S:     Supported
 
 COSA/SRP SYNC SERIAL DRIVER


-- 
Madarasz Gergely   gorgo@thunderchild.debian.net   gorgo@linux.rulez.org
    It's practically impossible to look at a penguin and feel angry.
        Egy pingvinre gyakorlatilag lehetetlen haragosan nezni.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-07-19  8:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-17 23:33 comx drivers in 2.6 Stephen Hemminger
2003-07-17 23:42 ` Jeff Garzik
2003-07-18 19:36   ` Stephen Hemminger
2003-07-19  8:14     ` Gergely Madarasz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.