public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Use of Moxa serial card with SMP kernels
@ 2004-06-17 15:12 Bruce Marshall
  2004-06-17 15:41 ` Randy.Dunlap
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Bruce Marshall @ 2004-06-17 15:12 UTC (permalink / raw)
  To: linux-kernel

Moxa serial card option not available when requesting an SMP kernel  (2.6.7)

I was told back when 2.6.4 was new that the selection of a Moxa serial card 
was not possible if an SMP kernel was selected.  I used the work-around of 
not using an SMP kernel.

My question:   Is this a permanent problem which will never be fixed or a 
temporary situation?

Thanks.

-- 
+----------------------------------------------------------------------------+
+ Bruce S. Marshall  bmarsh@bmarsh.com  Bellaire, MI         06/17/04 11:08  +
+----------------------------------------------------------------------------+
"There is nothing so annoying as to have two people go right on talking
when you're interrupting."  --Mark Twain

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

* Re: Use of Moxa serial card with SMP kernels
  2004-06-17 15:12 Use of Moxa serial card with SMP kernels Bruce Marshall
@ 2004-06-17 15:41 ` Randy.Dunlap
  2004-06-18 12:09   ` Ragnar Hojland Espinosa
  2004-06-17 15:46 ` Jan-Benedict Glaw
  2004-06-21 14:36 ` Sam Wormleighton
  2 siblings, 1 reply; 7+ messages in thread
From: Randy.Dunlap @ 2004-06-17 15:41 UTC (permalink / raw)
  To: bmarsh; +Cc: linux-kernel

On Thu, 17 Jun 2004 11:12:39 -0400 Bruce Marshall wrote:

| Moxa serial card option not available when requesting an SMP kernel  (2.6.7)
| 
| I was told back when 2.6.4 was new that the selection of a Moxa serial card 
| was not possible if an SMP kernel was selected.  I used the work-around of 
| not using an SMP kernel.
| 
| My question:   Is this a permanent problem which will never be fixed or a 
| temporary situation?

It's permanent until someone takes the time and trouble to fix it.

Both Moxa serial drivers (moxa & mxser) are BROKEN_ON_SMP because
they use cli() to disable interrupts for critical sections.
See Documentation/cli-sti-removal.txt for details.
They will need some acceptable modern form of protection there,

Is anyone working on this?  not that I've heard of.
Have you tried this email address:
Copyright (C) 1999-2000  Moxa Technologies (support@moxa.com.tw).

Is anyone out there motivated to fix this?  This is Bruce's real
question, I believe.

--
~Randy

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

* Re: Use of Moxa serial card with SMP kernels
  2004-06-17 15:12 Use of Moxa serial card with SMP kernels Bruce Marshall
  2004-06-17 15:41 ` Randy.Dunlap
@ 2004-06-17 15:46 ` Jan-Benedict Glaw
  2004-06-21 14:36 ` Sam Wormleighton
  2 siblings, 0 replies; 7+ messages in thread
From: Jan-Benedict Glaw @ 2004-06-17 15:46 UTC (permalink / raw)
  To: Bruce Marshall; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 794 bytes --]

On Thu, 2004-06-17 11:12:39 -0400, Bruce Marshall <bmarsh@bmarsh.com>
wrote in message <200406171112.39485.bmarsh@bmarsh.com>:
> Moxa serial card option not available when requesting an SMP kernel  (2.6.7)

> My question:   Is this a permanent problem which will never be fixed or a 
> temporary situation?

It seems the Moxa driver is known-broken when running on a SMP system.
So this is permanent until somebody hacks it to work on multi-processor
machines...

MfG, JBG

-- 
   Jan-Benedict Glaw       jbglaw@lug-owl.de    . +49-172-7608481
   "Eine Freie Meinung in  einem Freien Kopf    | Gegen Zensur | Gegen Krieg
    fuer einen Freien Staat voll Freier Bürger" | im Internet! |   im Irak!
   ret = do_actions((curr | FREE_SPEECH) & ~(NEW_COPYRIGHT_LAW | DRM | TCPA));

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: Use of Moxa serial card with SMP kernels
  2004-06-17 15:41 ` Randy.Dunlap
@ 2004-06-18 12:09   ` Ragnar Hojland Espinosa
  2004-06-18 12:56     ` Bruce Marshall
  2004-06-21 14:07     ` Bruce Marshall
  0 siblings, 2 replies; 7+ messages in thread
From: Ragnar Hojland Espinosa @ 2004-06-18 12:09 UTC (permalink / raw)
  To: linux-kernel; +Cc: bmarsh, Randy.Dunlap

On Thu, Jun 17, 2004 at 08:41:32AM -0700, Randy.Dunlap wrote:
> Both Moxa serial drivers (moxa & mxser) are BROKEN_ON_SMP because
> they use cli() to disable interrupts for critical sections.
> See Documentation/cli-sti-removal.txt for details.
> They will need some acceptable modern form of protection there,
> 
> Is anyone working on this?  not that I've heard of.
> Have you tried this email address:
> Copyright (C) 1999-2000  Moxa Technologies (support@moxa.com.tw).

I'd try writing and asking about it;  they were very helpful when we
had problems.
-- 
Ragnar Hojland - Project Manager
Linalco "Specialists in Linux and Free Software"
http://www.linalco.com  Tel: +34-91-4561700

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

* Re: Use of Moxa serial card with SMP kernels
  2004-06-18 12:09   ` Ragnar Hojland Espinosa
@ 2004-06-18 12:56     ` Bruce Marshall
  2004-06-21 14:07     ` Bruce Marshall
  1 sibling, 0 replies; 7+ messages in thread
From: Bruce Marshall @ 2004-06-18 12:56 UTC (permalink / raw)
  To: Ragnar Hojland Espinosa; +Cc: linux-kernel, Randy.Dunlap

On Friday 18 June 2004 08:09 am, Ragnar Hojland Espinosa wrote:
> On Thu, Jun 17, 2004 at 08:41:32AM -0700, Randy.Dunlap wrote:
> > Both Moxa serial drivers (moxa & mxser) are BROKEN_ON_SMP because
> > they use cli() to disable interrupts for critical sections.
> > See Documentation/cli-sti-removal.txt for details.
> > They will need some acceptable modern form of protection there,
> >
> > Is anyone working on this?  not that I've heard of.
> > Have you tried this email address:
> > Copyright (C) 1999-2000  Moxa Technologies (support@moxa.com.tw).
>
> I'd try writing and asking about it;  they were very helpful when we
> had problems.

I agree....  I have written to them - they have responded already asking for 
more info - and I'm waiting to hear back from them.
-- 
+----------------------------------------------------------------------------+
+ Bruce S. Marshall  bmarsh@bmarsh.com  Bellaire, MI         06/18/04 08:56  +
+----------------------------------------------------------------------------+
"The police are not here to create disorder, they're here to preserve
    disorder"  -Former Chicago Mayor Daley during 1968 convention

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

* Re: Use of Moxa serial card with SMP kernels
  2004-06-18 12:09   ` Ragnar Hojland Espinosa
  2004-06-18 12:56     ` Bruce Marshall
@ 2004-06-21 14:07     ` Bruce Marshall
  1 sibling, 0 replies; 7+ messages in thread
From: Bruce Marshall @ 2004-06-21 14:07 UTC (permalink / raw)
  To: Ragnar Hojland Espinosa; +Cc: linux-kernel, Randy.Dunlap

On Friday 18 June 2004 08:09 am, Ragnar Hojland Espinosa wrote:
> On Thu, Jun 17, 2004 at 08:41:32AM -0700, Randy.Dunlap wrote:
> > Both Moxa serial drivers (moxa & mxser) are BROKEN_ON_SMP because
> > they use cli() to disable interrupts for critical sections.
> > See Documentation/cli-sti-removal.txt for details.
> > They will need some acceptable modern form of protection there,
> >
> > Is anyone working on this?  not that I've heard of.
> > Have you tried this email address:
> > Copyright (C) 1999-2000  Moxa Technologies (support@moxa.com.tw).
>
> I'd try writing and asking about it;  they were very helpful when we
> had problems.

Yes, they are responsive.   Here is the current reply:

Dear Bruce,   
 
I've got updated news from the R&D Div., they are testing the latest beta 
version of the driver for all the Moxa cards, only they can not provide me 
with a precise schedule. Your case will be remaining open until it is 
resolved, I will also keep you update with the information. 
 
Best Regards, 
 
Stephen Lin / Technical Support Engineer 
 Moxa Technologies Co., Ltd.



-- 
+----------------------------------------------------------------------------+
+ Bruce S. Marshall  bmarsh@bmarsh.com  Bellaire, MI         06/21/04 10:06  +
+----------------------------------------------------------------------------+
"A billion here, a billion there, sooner or later it adds up to real
     money."       -Senator Everett Dirksen

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

* Re: Use of Moxa serial card with SMP kernels
  2004-06-17 15:12 Use of Moxa serial card with SMP kernels Bruce Marshall
  2004-06-17 15:41 ` Randy.Dunlap
  2004-06-17 15:46 ` Jan-Benedict Glaw
@ 2004-06-21 14:36 ` Sam Wormleighton
  2 siblings, 0 replies; 7+ messages in thread
From: Sam Wormleighton @ 2004-06-21 14:36 UTC (permalink / raw)
  To: linux-kernel

unsubscribe linux-kernel

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

end of thread, other threads:[~2004-06-21 14:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-17 15:12 Use of Moxa serial card with SMP kernels Bruce Marshall
2004-06-17 15:41 ` Randy.Dunlap
2004-06-18 12:09   ` Ragnar Hojland Espinosa
2004-06-18 12:56     ` Bruce Marshall
2004-06-21 14:07     ` Bruce Marshall
2004-06-17 15:46 ` Jan-Benedict Glaw
2004-06-21 14:36 ` Sam Wormleighton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox