All of lore.kernel.org
 help / color / mirror / Atom feed
* Converting a device driver for real time kernel
@ 2010-02-09  9:32 Leggo, Adam (UK)
  2010-02-09  9:50 ` Sven-Thorsten Dietrich
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Leggo, Adam (UK) @ 2010-02-09  9:32 UTC (permalink / raw)
  To: linux-rt-users

Hello,
 
What is the best way of converting an existing device driver to work
under a real-time kernel?
 
A device driver provided for a special serial card (Curtiss Wright SL240
sFDFP card http://www.cwcembedded.com/products/0/1/461.html) works under
vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), but compiling
the driver under the real time kernel (2.6.22.19-0.14-rt) the system
locks up and crashes. The rt kernel is being used to write large amounts
of data from the serial card to disk and testing has found the rt kernel
has the best consistent write performance.
 
I have gone back to the supplier and they are not interested in
developing a real time version of the driver. So I am trying to modify
the driver myself. The driver code can be provided if anyone wants a
look (released under GPLv2).
 
Any assistance would be useful.

Regards,
Adam Leggo 
 

********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************


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

* Re: Converting a device driver for real time kernel
  2010-02-09  9:32 Converting a device driver for real time kernel Leggo, Adam (UK)
@ 2010-02-09  9:50 ` Sven-Thorsten Dietrich
  2010-02-09 11:24 ` Carsten Emde
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Sven-Thorsten Dietrich @ 2010-02-09  9:50 UTC (permalink / raw)
  To: Leggo, Adam (UK); +Cc: linux-rt-users, SLE-RT Development

On Tue, 2010-02-09 at 09:32 +0000, Leggo, Adam (UK) wrote:
> Hello,
>  
> What is the best way of converting an existing device driver to work
> under a real-time kernel?
>  
> A device driver provided for a special serial card (Curtiss Wright SL240
> sFDFP card http://www.cwcembedded.com/products/0/1/461.html) works under
> vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), but compiling
> the driver under the real time kernel (2.6.22.19-0.14-rt) the system
> locks up and crashes. The rt kernel is being used to write large amounts
> of data from the serial card to disk and testing has found the rt kernel
> has the best consistent write performance.
>  
> I have gone back to the supplier and they are not interested in
> developing a real time version of the driver. So I am trying to modify
> the driver myself. The driver code can be provided if anyone wants a
> look (released under GPLv2).
>  

Hi Adam,

Generally this list is focused on the mainline RT patch set, and not so
much on distro Kernels. 

I might be wrong, but out-of-tree drivers probably won't get too much
TLC here either.

That being said, your version of the SLERT Kernel is quite old.

I would suggest the following:

1. first update your system and reproduce the issue
2. file a bug and attach the driver source here:
http://bugzilla.novell.com
3. Report any specific error you could capture on a serial / net
console, and provide additional details for "locks up and crashes".

Thanks,

Sven


> Any assistance would be useful.
> 
> Regards,
> Adam Leggo 
>  
> 
> ********************************************************************
> This email and any attachments are confidential to the intended
> recipient and may also be privileged. If you are not the intended
> recipient please delete it from your system and notify the sender.
> You should not copy it or use it for any purpose nor disclose or
> distribute its contents to any other person.
> ********************************************************************
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



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

* Re: Converting a device driver for real time kernel
  2010-02-09  9:32 Converting a device driver for real time kernel Leggo, Adam (UK)
  2010-02-09  9:50 ` Sven-Thorsten Dietrich
@ 2010-02-09 11:24 ` Carsten Emde
  2010-02-09 12:26 ` Luis Claudio R. Goncalves
  2010-02-09 22:27 ` Thomas Gleixner
  3 siblings, 0 replies; 10+ messages in thread
From: Carsten Emde @ 2010-02-09 11:24 UTC (permalink / raw)
  To: Leggo, Adam (UK); +Cc: RT-Users

Adam,

> [..]
> I have gone back to the supplier and they are not interested in
> developing a real time version of the driver.
I wouldn't ask the supplier to provide a "real time version of the
driver". I would ask them to provide a correctly written Linux driver
that works on a current kernel version and can be submitted to Greg KH's
driver project. And I would ask the supplier to contribute to the
project and collaborate with Greg to make the driver ready for mainline.
If it still crashes under PREEMPT_RT, then the driver is simply buggy -
it just happens that the bugs do not show up or show up less frequently
on the standard mainline kernel.

	Carsten.

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

* Re: Converting a device driver for real time kernel
  2010-02-09  9:32 Converting a device driver for real time kernel Leggo, Adam (UK)
  2010-02-09  9:50 ` Sven-Thorsten Dietrich
  2010-02-09 11:24 ` Carsten Emde
@ 2010-02-09 12:26 ` Luis Claudio R. Goncalves
  2010-02-09 22:27 ` Thomas Gleixner
  3 siblings, 0 replies; 10+ messages in thread
From: Luis Claudio R. Goncalves @ 2010-02-09 12:26 UTC (permalink / raw)
  To: Leggo, Adam (UK); +Cc: linux-rt-users

On Tue, Feb 09, 2010 at 09:32:30AM -0000, Leggo, Adam (UK) wrote:
| Hello,
|  
| What is the best way of converting an existing device driver to work
| under a real-time kernel?
|  
| A device driver provided for a special serial card (Curtiss Wright SL240
| sFDFP card http://www.cwcembedded.com/products/0/1/461.html) works under
| vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), but compiling
| the driver under the real time kernel (2.6.22.19-0.14-rt) the system
| locks up and crashes. The rt kernel is being used to write large amounts
| of data from the serial card to disk and testing has found the rt kernel
| has the best consistent write performance.
|  
| I have gone back to the supplier and they are not interested in
| developing a real time version of the driver. So I am trying to modify
| the driver myself. The driver code can be provided if anyone wants a
| look (released under GPLv2).

The oops or panic messages issued when the kernel locks up are a good
starting point to find the underlying issue.

Due to the nature of PREEMPT_RT subtle concurrency problems on the driver,
that may take a lifetime to appear under upstream Linux, will show up every
now and then on RT.

I would also put my bets on locking. As regular spinlocks are converted to
rtmutexes and can therefore sleep, I would check locking on the driver and
eventually convert some of the locks to old-style spinlocks. The naming on
the non-sleeping locks varies according to the version of the PREEMPT_RT
patch in use.

Luis
-- 
[ Luis Claudio R. Goncalves                    Bass - Gospel - RT ]
[ Fingerprint: 4FDD B8C4 3C59 34BD 8BE9  2696 7203 D980 A448 C8F8 ]


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

* Re: Converting a device driver for real time kernel
  2010-02-09  9:32 Converting a device driver for real time kernel Leggo, Adam (UK)
                   ` (2 preceding siblings ...)
  2010-02-09 12:26 ` Luis Claudio R. Goncalves
@ 2010-02-09 22:27 ` Thomas Gleixner
  2010-02-10 12:51   ` Converting a device driver for real time kernel - OT Armin Steinhoff
                     ` (3 more replies)
  3 siblings, 4 replies; 10+ messages in thread
From: Thomas Gleixner @ 2010-02-09 22:27 UTC (permalink / raw)
  To: Leggo, Adam (UK); +Cc: linux-rt-users

On Tue, 9 Feb 2010, Leggo, Adam (UK) wrote:

> Hello,
>  
> What is the best way of converting an existing device driver to work
> under a real-time kernel?
>  
> A device driver provided for a special serial card (Curtiss Wright SL240
> sFDFP card http://www.cwcembedded.com/products/0/1/461.html) works under
> vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), but compiling
> the driver under the real time kernel (2.6.22.19-0.14-rt) the system
> locks up and crashes. The rt kernel is being used to write large amounts
> of data from the serial card to disk and testing has found the rt kernel
> has the best consistent write performance.
>  
> I have gone back to the supplier and they are not interested in
> developing a real time version of the driver. So I am trying to modify
> the driver myself. The driver code can be provided if anyone wants a
> look (released under GPLv2).
>  
> Any assistance would be useful.

The problem of the driver is probably broken locking, which needs to
be fixed for !RT as well.

But if you want to fix it your self and need some assistance it would
be helpful if you could:

1) Run against a recent -rt kernel

2) provide a serial console log of the kernel crash

3) run the kernel with CONFIG_PROVE_LOCKING=y and provide the output

4) upload the source to some place so we can at least have a look at
   the code to give you hints.

Thanks,

	tglx


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

* Re: Converting a device driver for real time kernel - OT
  2010-02-09 22:27 ` Thomas Gleixner
@ 2010-02-10 12:51   ` Armin Steinhoff
  2010-02-10 12:53   ` Armin Steinhoff
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Armin Steinhoff @ 2010-02-10 12:51 UTC (permalink / raw)
  To: linux-rt-users


Hi all,

I know it's OT ... but what is the real name of

 - "real time kernel (2.6.22.19-0.14-rt)"
 - "!RT kernel" 
 - "-rt kernel"

Any ideas ?  Is it the RTP kernel --- P stands for pre-emption ?

--Armin





Thomas Gleixner wrote:
> On Tue, 9 Feb 2010, Leggo, Adam (UK) wrote:
>
>   
>> Hello,
>>  
>> What is the best way of converting an existing device driver to work
>> under a real-time kernel?
>>  
>> A device driver provided for a special serial card (Curtiss Wright SL240
>> sFDFP card http://www.cwcembedded.com/products/0/1/461.html) works under
>> vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), but compiling
>> the driver under the real time kernel (2.6.22.19-0.14-rt) the system
>> locks up and crashes. The rt kernel is being used to write large amounts
>> of data from the serial card to disk and testing has found the rt kernel
>> has the best consistent write performance.
>>  
>> I have gone back to the supplier and they are not interested in
>> developing a real time version of the driver. So I am trying to modify
>> the driver myself. The driver code can be provided if anyone wants a
>> look (released under GPLv2).
>>  
>> Any assistance would be useful.
>>     
>
> The problem of the driver is probably broken locking, which needs to
> be fixed for !RT as well.
>
> But if you want to fix it your self and need some assistance it would
> be helpful if you could:
>
> 1) Run against a recent -rt kernel
>
> 2) provide a serial console log of the kernel crash
>
> 3) run the kernel with CONFIG_PROVE_LOCKING=y and provide the output
>
> 4) upload the source to some place so we can at least have a look at
>    the code to give you hints.
>
> Thanks,
>
> 	tglx
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>   


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

* Re: Converting a device driver for real time kernel - OT
  2010-02-09 22:27 ` Thomas Gleixner
  2010-02-10 12:51   ` Converting a device driver for real time kernel - OT Armin Steinhoff
@ 2010-02-10 12:53   ` Armin Steinhoff
  2010-02-10 13:05   ` uio_pci_generic not working ? Armin Steinhoff
  2010-02-11 10:57   ` Converting a device driver for real time kernel Leggo, Adam (UK)
  3 siblings, 0 replies; 10+ messages in thread
From: Armin Steinhoff @ 2010-02-10 12:53 UTC (permalink / raw)
  To: linux-rt-users


Hi all,

I know it's OT ... but what is the real name of

 - "real time kernel (2.6.22.19-0.14-rt)"
 - "!RT kernel" 
 - "-rt kernel"

Any ideas ?  Is it the RTP kernel --- P stands for pre-emption ?

--Armin





Thomas Gleixner wrote:
> On Tue, 9 Feb 2010, Leggo, Adam (UK) wrote:
>
>   
>> Hello,
>>  
>> What is the best way of converting an existing device driver to work
>> under a real-time kernel?
>>  
>> A device driver provided for a special serial card (Curtiss Wright SL240
>> sFDFP card http://www.cwcembedded.com/products/0/1/461.html) works under
>> vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), but compiling
>> the driver under the real time kernel (2.6.22.19-0.14-rt) the system
>> locks up and crashes. The rt kernel is being used to write large amounts
>> of data from the serial card to disk and testing has found the rt kernel
>> has the best consistent write performance.
>>  
>> I have gone back to the supplier and they are not interested in
>> developing a real time version of the driver. So I am trying to modify
>> the driver myself. The driver code can be provided if anyone wants a
>> look (released under GPLv2).
>>  
>> Any assistance would be useful.
>>     
>
> The problem of the driver is probably broken locking, which needs to
> be fixed for !RT as well.
>
> But if you want to fix it your self and need some assistance it would
> be helpful if you could:
>
> 1) Run against a recent -rt kernel
>
> 2) provide a serial console log of the kernel crash
>
> 3) run the kernel with CONFIG_PROVE_LOCKING=y and provide the output
>
> 4) upload the source to some place so we can at least have a look at
>    the code to give you hints.
>
> Thanks,
>
> 	tglx
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>   


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

* uio_pci_generic not working ?
  2010-02-09 22:27 ` Thomas Gleixner
  2010-02-10 12:51   ` Converting a device driver for real time kernel - OT Armin Steinhoff
  2010-02-10 12:53   ` Armin Steinhoff
@ 2010-02-10 13:05   ` Armin Steinhoff
  2010-02-11  8:20     ` Armin Steinhoff
  2010-02-11 10:57   ` Converting a device driver for real time kernel Leggo, Adam (UK)
  3 siblings, 1 reply; 10+ messages in thread
From: Armin Steinhoff @ 2010-02-10 13:05 UTC (permalink / raw)
  To: linux-rt-users


Hello,

I'm using the module uio_pci_generic of the kernel 2.6.32 together with 
uio of kernel 2.6.22 (openSUSE 10.3).  I hope this is OK ... ?

After insmod uio.ko and insmod uio_pci_generic.ko I don't see the device 
   /dev/uio0 ... also /sys/class doesn't have any related entries.

What's the proper usage of uio_pci_generic ?

Best Regards

--Armin

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

* Re: uio_pci_generic not working ?
  2010-02-10 13:05   ` uio_pci_generic not working ? Armin Steinhoff
@ 2010-02-11  8:20     ` Armin Steinhoff
  0 siblings, 0 replies; 10+ messages in thread
From: Armin Steinhoff @ 2010-02-11  8:20 UTC (permalink / raw)
  To: linux-rt-users


Hi,

problem solved ... the board specific module is working.  uio_pci _ 
generic is sorted out ...

Regards

--Armin

Armin Steinhoff wrote:
>
> Hello,
>
> I'm using the module uio_pci_generic of the kernel 2.6.32 together 
> with uio of kernel 2.6.22 (openSUSE 10.3).  I hope this is OK ... ?
>
> After insmod uio.ko and insmod uio_pci_generic.ko I don't see the 
> device   /dev/uio0 ... also /sys/class doesn't have any related entries.
>
> What's the proper usage of uio_pci_generic ?
>
> Best Regards
>
> --Armin
> -- 
> To unsubscribe from this list: send the line "unsubscribe 
> linux-rt-users" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


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

* RE: Converting a device driver for real time kernel
  2010-02-09 22:27 ` Thomas Gleixner
                     ` (2 preceding siblings ...)
  2010-02-10 13:05   ` uio_pci_generic not working ? Armin Steinhoff
@ 2010-02-11 10:57   ` Leggo, Adam (UK)
  3 siblings, 0 replies; 10+ messages in thread
From: Leggo, Adam (UK) @ 2010-02-11 10:57 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: linux-rt-users


Thanks for all the suggestions. I will start testing them soon.

I have uploaded the driver code, if anyone wants a look:
http://dl.dropbox.com/u/4618054/nsl_driver.zip
Some restricted application code has been removed, but the driver code
is all GPL.

Using the existing RT kernel, I have enabled debugging in the driver and
the crash output from dmesg is below.

Regards
Adam Leggo

START dmesg dump

GTDBG: dcfiIoctl()
GTDBG: <4>dcfiIoctlXfer begin
GTDBG: dcfiXferChunk() begin
GTDBG: dcfiXferChunk() end
GTDBG: <4>dcfiIoctlXfer end
GTDBG: dcfiIoctl() exit...
GTDBG: dcfiIoctl()
GTDBG: <4>dcfiIoctlXfer begin
stopped custom tracer.
Unable to handle kernel NULL pointer dereference at 0000000000000028
RIP: 
<6>GTDBG: dcfiXferChunk() end
 [<ffffffff80255b58>] lock_hrtimer_base+0x18/0x60
PGD 5848c7067 PUD 584d19067 PMD 0 
Oops: 0000 [1] PREEMPT SMP 
last sysfs file: /devices/pci0000:00/0000:00:00.0/irq
CPU 1 
Modules linked in: dcfi_nsl_module nfsd exportfs lockd nfs_acl sunrpc
ipv6 button sg battery ac st apparmor<6>GTDBG: <4>dcfiIoctlXfer end
 xfs loop dm_mod usbhid hid ff_memless generic nx_nic ide_core ipmi_si
uhci_hcd ehci_hcd usbcore ipmi_msghandler firmware_class rtc_cmos
rtc_core rtc_lib reiserfs edd fan thermal processor cciss ata_piix
libata sd_mod scsi_mod
Pid: 7023, comm: nsltp Tainted: G      N 2.6.22.19-0.14-rt #1
RIP: 0010:[<ffffffff80255b58>]  [<ffffffff80255b58>]
lock_hrtimer_base+0x18/0x60
RSP: 0018:ffff81057d9afb38  EFLAGS: 00010292
RAX: 0000000000000000 RBX: 0000000000000000 RCX: ffff810308c50b30
RDX: ffff81058c080040 RSI: ffff81057d9afb68 RDI: 0000000000000000
RBP: 0000000000000000 R08: ffff81057d9ae000 R09: 0000000000000000
R10: 0000000000000000 R11: ffffffff8021cec0 R12: ffff81057d9afb68
R13: 0000000000000004 R14: 0000000000000000 R15: 0000000000000292
FS:  0000000041001940(0063) GS:ffff81059762e5c0(0000)
knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 0000000000000028 CR3: 000000058d250000 CR4: 00000000000006e0
Process nsltp (pid: 7023, threadinfo ffff81057d9ae000, task
ffff81058c080040)
Stack:  0000000000000000 00000000ffffffff 0000000000000004
ffffffff80255c08
 0000000000000004 ffffffff8025e97d 0000000000400040
0000000000000000<6>GTDBG: dcfiIoctl() exit...

 ffff810308c50b08 ffffffff80255c76 0000000000000000 ffffffff80468cd2
Call Trace:
GTDBG: dcfiXferChunk() end
GTDBG: <4>dcfiIoctlXfer end
GTDBG: dcfiIoctl() exit...
 [<ffffffff80255c08>] hrtimer_try_to_cancel+0x18/0x70
GTDBG: dcfiIoctl()
 [<ffffffff8025e97d>] do_try_to_take_rt_mutex+0x16d/0x1b0
 [<ffffffff80255c76>] hrtimer_cancel+0x16/0x20
GTDBG: <4>dcfiIoctlXfer begin
GTDBG: dcfiXferChunk() begin
 [<ffffffff80468cd2>] rt_mutex_slowlock+0x242/0x2d8
 [<ffffffff8025f4fd>] rt_down+0x1d/0x60
 [<ffffffff8843c5cd>] :dcfi_nsl_module:dcfiIoctlXfer+0x4bd/0x6a0
GTDBG: dcfiIoctl()
GTDBG: <4>dcfiIoctlXfer begin
GTDBG: dcfiXferChunk() begin
 [<ffffffff8843c965>] :dcfi_nsl_module:dcfiIoctl+0x1b5/0x440
 [<ffffffff8025e97d>] do_try_to_take_rt_mutex+0x16d/0x1b0
 [<ffffffff80468c26>] rt_mutex_slowlock+0x196/0x2d8
 [<ffffffff8843c7b0>] :dcfi_nsl_module:dcfiIoctl+0x0/0x440
 [<ffffffff802bb8b3>] do_ioctl+0x93/0xe0
 [<ffffffff802bb974>] vfs_ioctl+0x74/0x2d0
 [<ffffffff802bbc65>] sys_ioctl+0x95/0xb0
 [<ffffffff8020a04e>] system_call+0x7e/0x83


Code: 48 8b 5d 28 48 85 db 74 33 48 8b 3b e8 87 3b 21 00 49 89 04 
RIP  [<ffffffff80255b58>] lock_hrtimer_base+0x18/0x60
 RSP <ffff81057d9afb38>
CR2: 0000000000000028
GTDBG: dcfiXferChunk() end
GTDBG: <4>dcfiIoctlXfer end
GTDBG: dcfiIoctl() exit...
GTDBG: dcfiXferChunk() end
GTDBG: <4>dcfiIoctlXfer end
GTDBG: dcfiIoctl() exit... 

END dmesg dump

-----Original Message-----
From: Thomas Gleixner [mailto:tglx@linutronix.de] 
Sent: 09 February 2010 22:28
To: Leggo, Adam (UK)
Cc: linux-rt-users@vger.kernel.org
Subject: Re: Converting a device driver for real time kernel


                    *** WARNING ***

  This message has originated outside your organisation,
  either from an external partner or the Global Internet. 
      Keep this in mind if you answer this message.


On Tue, 9 Feb 2010, Leggo, Adam (UK) wrote:

> Hello,
>  
> What is the best way of converting an existing device driver to work 
> under a real-time kernel?
>  
> A device driver provided for a special serial card (Curtiss Wright 
> SL240 sFDFP card http://www.cwcembedded.com/products/0/1/461.html) 
> works under vanilla Linux (SLES SP10 SP2 kernel 2.6.16.60-0.21-smp), 
> but compiling the driver under the real time kernel 
> (2.6.22.19-0.14-rt) the system locks up and crashes. The rt kernel is 
> being used to write large amounts of data from the serial card to disk

> and testing has found the rt kernel has the best consistent write
performance.
>  
> I have gone back to the supplier and they are not interested in 
> developing a real time version of the driver. So I am trying to modify

> the driver myself. The driver code can be provided if anyone wants a 
> look (released under GPLv2).
>  
> Any assistance would be useful.

The problem of the driver is probably broken locking, which needs to be
fixed for !RT as well.

But if you want to fix it your self and need some assistance it would be
helpful if you could:

1) Run against a recent -rt kernel

2) provide a serial console log of the kernel crash

3) run the kernel with CONFIG_PROVE_LOCKING=y and provide the output

4) upload the source to some place so we can at least have a look at
   the code to give you hints.

Thanks,

	tglx



********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************


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

end of thread, other threads:[~2010-02-11 10:57 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-09  9:32 Converting a device driver for real time kernel Leggo, Adam (UK)
2010-02-09  9:50 ` Sven-Thorsten Dietrich
2010-02-09 11:24 ` Carsten Emde
2010-02-09 12:26 ` Luis Claudio R. Goncalves
2010-02-09 22:27 ` Thomas Gleixner
2010-02-10 12:51   ` Converting a device driver for real time kernel - OT Armin Steinhoff
2010-02-10 12:53   ` Armin Steinhoff
2010-02-10 13:05   ` uio_pci_generic not working ? Armin Steinhoff
2010-02-11  8:20     ` Armin Steinhoff
2010-02-11 10:57   ` Converting a device driver for real time kernel Leggo, Adam (UK)

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.