* [Xenomai-help] v2.4.3 bug with system() call
@ 2008-05-13 13:31 Stéphane ANCELOT
2008-05-13 14:31 ` Gilles Chanteperdrix
2008-05-13 14:43 ` [Xenomai-help] v2.4.3 bug with system() call Jan Kiszka
0 siblings, 2 replies; 10+ messages in thread
From: Stéphane ANCELOT @ 2008-05-13 13:31 UTC (permalink / raw)
To: xenomai-help
Hi,
Using the v2.4.3 +kernel 2.6.24.7 I used the system("touch /tmp/xxx_ok")
call in a non realtime init context.
The task is only used to allocate some memory heaps.
I setted up some memory debugging features in the kernel :
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_SLAB=y
CONFIG_DEBUG_SLAB_LEAK=y
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_VM=y
CONFIG_FORCED_INLINING=y
CONFIG_EARLY_PRINTK=y
CONFIG_DEBUG_PAGEALLOC=y
This was not happening with v2.4.2 although that the kernel debugging
flags were not "on"
here is the bug trace :
------------[ cut here ]------------
kernel BUG at mm/rmap.c:602!
invalid opcode: 0000 [#1] PREEMPT DEBUG_PAGEALLOC
Modules linked in: usb_storage e100 mii
Pid: 1628, comm: creven Not tainted (2.6.24.7-ipipe #3)
EIP: 0060:[<c017fb49>] EFLAGS: 00010246 CPU: 0
EIP is at page_dup_rmap+0x19/0x20
EAX: c115e760 EBX: c115e760 ECX: 08048000 EDX: cc6b1200
ESI: 09cbb025 EDI: 00000025 EBP: 08048000 ESP: cc709ec4
DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 0068
Process creven (pid: 1628, ti=cc708000 task=cc6f6ac0 task.ti=cc708000)<0>
I-pipe domain Linux
Stack: 08003875 c017ae62 cc6b1200 cd5d9e70 cc6b4e70 cc6fa080 cc650080
08057000
08057000 c115e760 cd034120 c9cba120 00000000 00000000 08056fff
00000000
00000000 c9c6ec80 cc6b1200 00000000 cc6a6ac0 c0115b90 00000000
00000000
Call Trace:
[<c017ae62>] copy_page_range+0x2b2/0x580
[<c0115b90>] copy_process+0x7a0/0x1000
[<c01165a7>] do_fork+0x47/0x210
[<c0100bb6>] sys_clone+0x36/0x40
[<c0102b89>] syscall_call+0x7/0xb
=======================
Code: 3b 4b 08 0f 93 c0 85 c0 75 ba 5b 89 c8 c3 8d 74 26 00 53 89 c3 83
78 08 ff 74 10 f6 40 10 01 74 05 e8 3c f4 ff ff ff 43 08 5b c3 <0f> 0b
eb fe 8d 76 00 83 ec 1c 89 5c 24 0c 89 c3 89 74 24 10 89
EIP: [<c017fb49>] page_dup_rmap+0x19/0x20 SS:ESP 0068:cc709ec4
---[ end trace b9f3cc48844f8a3b ]---
note: creven[1628] exited with preempt_count 2
BUG: scheduling while atomic: creven/1628/0x00000003
Pid: 1628, comm: creven Tainted: G D 2.6.24.7-ipipe #3
[<c036bed3>] schedule+0x283/0x390
[<c036d525>] rwsem_down_failed_common+0x75/0x190
[<c013cb10>] handle_edge_irq+0xc0/0x150
[<c036d68d>] rwsem_down_read_failed+0x1d/0x24
[<c036d6cb>] call_rwsem_down_read_failed+0x7/0xc
[<c036cb89>] down_read+0x9/0x10
[<c0118ed4>] exit_mm+0x24/0xd0
[<c011a632>] do_exit+0x112/0x800
[<c010410f>] die+0x21f/0x220
[<c0104523>] do_invalid_op+0x83/0x90
[<c017fb49>] page_dup_rmap+0x19/0x20
[<c0111998>] change_page_attr+0x2c8/0x300
[<c01119ed>] kernel_map_pages+0x1d/0x60
[<c0170472>] get_page_from_freelist+0x2c2/0x520
[<c010e78f>] __ipipe_handle_exception+0x7f/0x1c0
[<c036db5b>] error_code+0x6f/0x7c
[<c0170000>] setup_per_zone_pages_min+0x1b0/0x1f0
[<c017fb49>] page_dup_rmap+0x19/0x20
[<c017ae62>] copy_page_range+0x2b2/0x580
[<c0115b90>] copy_process+0x7a0/0x1000
[<c01165a7>] do_fork+0x47/0x210
[<c0100bb6>] sys_clone+0x36/0x40
[<c0102b89>] syscall_call+0x7/0xb
=======================
Best Regards
Steph
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [Xenomai-help] v2.4.3 bug with system() call 2008-05-13 13:31 [Xenomai-help] v2.4.3 bug with system() call Stéphane ANCELOT @ 2008-05-13 14:31 ` Gilles Chanteperdrix 2008-05-14 8:09 ` Stéphane ANCELOT 2008-05-13 14:43 ` [Xenomai-help] v2.4.3 bug with system() call Jan Kiszka 1 sibling, 1 reply; 10+ messages in thread From: Gilles Chanteperdrix @ 2008-05-13 14:31 UTC (permalink / raw) To: Stéphane ANCELOT; +Cc: xenomai-help On Tue, May 13, 2008 at 3:31 PM, Stéphane ANCELOT <sancelot@domain.hid> wrote: > Hi, > Using the v2.4.3 +kernel 2.6.24.7 I used the system("touch /tmp/xxx_ok") > call in a non realtime init context. > > The task is only used to allocate some memory heaps. > > I setted up some memory debugging features in the kernel : > CONFIG_DEBUG_KERNEL=y > CONFIG_DEBUG_SLAB=y > CONFIG_DEBUG_SLAB_LEAK=y > CONFIG_DEBUG_BUGVERBOSE=y > CONFIG_DEBUG_VM=y > CONFIG_FORCED_INLINING=y > CONFIG_EARLY_PRINTK=y > CONFIG_DEBUG_PAGEALLOC=y > > This was not happening with v2.4.2 although that the kernel debugging > flags were not "on" It would be nice if you could try the v2.4.2 with debugging options on, to know if it is a regression or not. -- Gilles ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call 2008-05-13 14:31 ` Gilles Chanteperdrix @ 2008-05-14 8:09 ` Stéphane ANCELOT 2008-05-14 8:57 ` Gilles Chanteperdrix 0 siblings, 1 reply; 10+ messages in thread From: Stéphane ANCELOT @ 2008-05-14 8:09 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai-help [-- Attachment #1: Type: text/html, Size: 1441 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call 2008-05-14 8:09 ` Stéphane ANCELOT @ 2008-05-14 8:57 ` Gilles Chanteperdrix 2008-05-14 12:40 ` Stéphane ANCELOT 2008-05-14 12:45 ` [Xenomai-help] v2.4.3 bug with system() call (ERRATUM) Stéphane ANCELOT 0 siblings, 2 replies; 10+ messages in thread From: Gilles Chanteperdrix @ 2008-05-14 8:57 UTC (permalink / raw) To: Stéphane ANCELOT; +Cc: xenomai-help On Wed, May 14, 2008 at 10:09 AM, Stéphane ANCELOT <sancelot@domain.hid> wrote: > > Gilles Chanteperdrix a écrit : > > On Tue, May 13, 2008 at 3:31 PM, Stéphane ANCELOT <sancelot@domain.hid> wrote: > > > Hi, > Using the v2.4.3 +kernel 2.6.24.7 I used the system("touch /tmp/xxx_ok") > call in a non realtime init context. > > The task is only used to allocate some memory heaps. > > I setted up some memory debugging features in the kernel : > CONFIG_DEBUG_KERNEL=y > CONFIG_DEBUG_SLAB=y > CONFIG_DEBUG_SLAB_LEAK=y > CONFIG_DEBUG_BUGVERBOSE=y > CONFIG_DEBUG_VM=y > CONFIG_FORCED_INLINING=y > CONFIG_EARLY_PRINTK=y > CONFIG_DEBUG_PAGEALLOC=y > > This was not happening with v2.4.2 although that the kernel debugging > flags were not "on" > > It would be nice if you could try the v2.4.2 with debugging options > on, to know if it is a regression or not. > > > No time left, going back on v2.4.2. However, I have exactly the same > problem, if I use the fork() call inside a program. Have you tried Jan fix ? -- Gilles ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call 2008-05-14 8:57 ` Gilles Chanteperdrix @ 2008-05-14 12:40 ` Stéphane ANCELOT 2008-05-14 12:45 ` [Xenomai-help] v2.4.3 bug with system() call (ERRATUM) Stéphane ANCELOT 1 sibling, 0 replies; 10+ messages in thread From: Stéphane ANCELOT @ 2008-05-14 12:40 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai-help [-- Attachment #1: Type: text/html, Size: 1854 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call (ERRATUM) 2008-05-14 8:57 ` Gilles Chanteperdrix 2008-05-14 12:40 ` Stéphane ANCELOT @ 2008-05-14 12:45 ` Stéphane ANCELOT 2008-05-14 12:50 ` Gilles Chanteperdrix 1 sibling, 1 reply; 10+ messages in thread From: Stéphane ANCELOT @ 2008-05-14 12:45 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai-help [-- Attachment #1: Type: text/html, Size: 1794 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call (ERRATUM) 2008-05-14 12:45 ` [Xenomai-help] v2.4.3 bug with system() call (ERRATUM) Stéphane ANCELOT @ 2008-05-14 12:50 ` Gilles Chanteperdrix 2008-05-14 14:34 ` [Xenomai-help] v2.4.3 bug with system() call [FIXED] Stéphane ANCELOT 0 siblings, 1 reply; 10+ messages in thread From: Gilles Chanteperdrix @ 2008-05-14 12:50 UTC (permalink / raw) To: Stéphane ANCELOT; +Cc: xenomai-help On Wed, May 14, 2008 at 2:45 PM, Stéphane ANCELOT <sancelot@domain.hid> wrote: > > > > Gilles Chanteperdrix a écrit : > On Wed, May 14, 2008 at 10:09 AM, Stéphane ANCELOT <sancelot@domain.hid> > wrote: > > > Gilles Chanteperdrix a écrit : > > On Tue, May 13, 2008 at 3:31 PM, Stéphane ANCELOT <sancelot@domain.hid> wrote: > > > Hi, > Using the v2.4.3 +kernel 2.6.24.7 I used the system("touch /tmp/xxx_ok") > call in a non realtime init context. > > The task is only used to allocate some memory heaps. > > I setted up some memory debugging features in the kernel : > CONFIG_DEBUG_KERNEL=y > CONFIG_DEBUG_SLAB=y > CONFIG_DEBUG_SLAB_LEAK=y > CONFIG_DEBUG_BUGVERBOSE=y > CONFIG_DEBUG_VM=y > CONFIG_FORCED_INLINING=y > CONFIG_EARLY_PRINTK=y > CONFIG_DEBUG_PAGEALLOC=y > > This was not happening with v2.4.2 although that the kernel debugging > flags were not "on" > > It would be nice if you could try the v2.4.2 with debugging options > on, to know if it is a regression or not. > > > No time left, going back on v2.4.2. However, I have exactly the same > problem, if I use the fork() call inside a program. > > Have you tried Jan fix ? > > > Sorry, for the last post, I tried again the xeno kernel ...which Jan fix to > use? That one: https://mail.gna.org/public/xenomai-help/2008-05/msg00087.html -- Gilles ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call [FIXED] 2008-05-14 12:50 ` Gilles Chanteperdrix @ 2008-05-14 14:34 ` Stéphane ANCELOT 0 siblings, 0 replies; 10+ messages in thread From: Stéphane ANCELOT @ 2008-05-14 14:34 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai-help [-- Attachment #1: Type: text/html, Size: 2184 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call 2008-05-13 13:31 [Xenomai-help] v2.4.3 bug with system() call Stéphane ANCELOT 2008-05-13 14:31 ` Gilles Chanteperdrix @ 2008-05-13 14:43 ` Jan Kiszka 2008-05-13 14:48 ` Gilles Chanteperdrix 1 sibling, 1 reply; 10+ messages in thread From: Jan Kiszka @ 2008-05-13 14:43 UTC (permalink / raw) To: Stéphane ANCELOT; +Cc: xenomai-help Stéphane ANCELOT wrote: > Hi, > Using the v2.4.3 +kernel 2.6.24.7 I used the system("touch /tmp/xxx_ok") > call in a non realtime init context. > > The task is only used to allocate some memory heaps. > > I setted up some memory debugging features in the kernel : > CONFIG_DEBUG_KERNEL=y > CONFIG_DEBUG_SLAB=y > CONFIG_DEBUG_SLAB_LEAK=y > CONFIG_DEBUG_BUGVERBOSE=y > CONFIG_DEBUG_VM=y > CONFIG_FORCED_INLINING=y > CONFIG_EARLY_PRINTK=y > CONFIG_DEBUG_PAGEALLOC=y > > This was not happening with v2.4.2 although that the kernel debugging > flags were not "on" > > here is the bug trace : > > ------------[ cut here ]------------ > kernel BUG at mm/rmap.c:602! > invalid opcode: 0000 [#1] PREEMPT DEBUG_PAGEALLOC > Modules linked in: usb_storage e100 mii > > Pid: 1628, comm: creven Not tainted (2.6.24.7-ipipe #3) > EIP: 0060:[<c017fb49>] EFLAGS: 00010246 CPU: 0 > EIP is at page_dup_rmap+0x19/0x20 > EAX: c115e760 EBX: c115e760 ECX: 08048000 EDX: cc6b1200 > ESI: 09cbb025 EDI: 00000025 EBP: 08048000 ESP: cc709ec4 > DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 0068 > Process creven (pid: 1628, ti=cc708000 task=cc6f6ac0 task.ti=cc708000)<0> > I-pipe domain Linux > Stack: 08003875 c017ae62 cc6b1200 cd5d9e70 cc6b4e70 cc6fa080 cc650080 > 08057000 > 08057000 c115e760 cd034120 c9cba120 00000000 00000000 08056fff > 00000000 > 00000000 c9c6ec80 cc6b1200 00000000 cc6a6ac0 c0115b90 00000000 > 00000000 > Call Trace: > [<c017ae62>] copy_page_range+0x2b2/0x580 > [<c0115b90>] copy_process+0x7a0/0x1000 > [<c01165a7>] do_fork+0x47/0x210 > [<c0100bb6>] sys_clone+0x36/0x40 > [<c0102b89>] syscall_call+0x7/0xb > ======================= > Code: 3b 4b 08 0f 93 c0 85 c0 75 ba 5b 89 c8 c3 8d 74 26 00 53 89 c3 83 > 78 08 ff 74 10 f6 40 10 01 74 05 e8 3c f4 ff ff ff 43 08 5b c3 <0f> 0b > eb fe 8d 76 00 83 ec 1c 89 5c 24 0c 89 c3 89 74 24 10 89 > EIP: [<c017fb49>] page_dup_rmap+0x19/0x20 SS:ESP 0068:cc709ec4 > ---[ end trace b9f3cc48844f8a3b ]--- > note: creven[1628] exited with preempt_count 2 > BUG: scheduling while atomic: creven/1628/0x00000003 > Pid: 1628, comm: creven Tainted: G D 2.6.24.7-ipipe #3 > [<c036bed3>] schedule+0x283/0x390 > [<c036d525>] rwsem_down_failed_common+0x75/0x190 > [<c013cb10>] handle_edge_irq+0xc0/0x150 > [<c036d68d>] rwsem_down_read_failed+0x1d/0x24 > [<c036d6cb>] call_rwsem_down_read_failed+0x7/0xc > [<c036cb89>] down_read+0x9/0x10 > [<c0118ed4>] exit_mm+0x24/0xd0 > [<c011a632>] do_exit+0x112/0x800 > [<c010410f>] die+0x21f/0x220 > [<c0104523>] do_invalid_op+0x83/0x90 > [<c017fb49>] page_dup_rmap+0x19/0x20 > [<c0111998>] change_page_attr+0x2c8/0x300 > [<c01119ed>] kernel_map_pages+0x1d/0x60 > [<c0170472>] get_page_from_freelist+0x2c2/0x520 > [<c010e78f>] __ipipe_handle_exception+0x7f/0x1c0 > [<c036db5b>] error_code+0x6f/0x7c > [<c0170000>] setup_per_zone_pages_min+0x1b0/0x1f0 > [<c017fb49>] page_dup_rmap+0x19/0x20 > [<c017ae62>] copy_page_range+0x2b2/0x580 > [<c0115b90>] copy_process+0x7a0/0x1000 > [<c01165a7>] do_fork+0x47/0x210 > [<c0100bb6>] sys_clone+0x36/0x40 > [<c0102b89>] syscall_call+0x7/0xb > ======================= This once fixed it for me, but we still need to take a closer look on this. Gilles, any news regarding this? Jan --- mm/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/mm/memory.c =================================================================== --- a/mm/memory.c +++ b/mm/memory.c @@ -502,7 +502,7 @@ copy_one_pte(struct mm_struct *dst_mm, s pte = pte_mkclean(pte); pte = pte_mkold(pte); - page_dup_rmap(uncow_page, vma, addr); + page_add_new_anon_rmap(uncow_page, vma, addr); rss[!!PageAnon(uncow_page)]++; goto out_set_pte; } -- Siemens AG, Corporate Technology, CT SE 2 Corporate Competence Center Embedded Linux ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Xenomai-help] v2.4.3 bug with system() call 2008-05-13 14:43 ` [Xenomai-help] v2.4.3 bug with system() call Jan Kiszka @ 2008-05-13 14:48 ` Gilles Chanteperdrix 0 siblings, 0 replies; 10+ messages in thread From: Gilles Chanteperdrix @ 2008-05-13 14:48 UTC (permalink / raw) To: Jan Kiszka; +Cc: xenomai-help On Tue, May 13, 2008 at 4:43 PM, Jan Kiszka <jan.kiszka@domain.hid> wrote: > > Stéphane ANCELOT wrote: > > Hi, > > Using the v2.4.3 +kernel 2.6.24.7 I used the system("touch /tmp/xxx_ok") > > call in a non realtime init context. > > > > The task is only used to allocate some memory heaps. > > > > I setted up some memory debugging features in the kernel : > > CONFIG_DEBUG_KERNEL=y > > CONFIG_DEBUG_SLAB=y > > CONFIG_DEBUG_SLAB_LEAK=y > > CONFIG_DEBUG_BUGVERBOSE=y > > CONFIG_DEBUG_VM=y > > CONFIG_FORCED_INLINING=y > > CONFIG_EARLY_PRINTK=y > > CONFIG_DEBUG_PAGEALLOC=y > > > > This was not happening with v2.4.2 although that the kernel debugging > > flags were not "on" > > > > here is the bug trace : > > > > ------------[ cut here ]------------ > > kernel BUG at mm/rmap.c:602! > > invalid opcode: 0000 [#1] PREEMPT DEBUG_PAGEALLOC > > Modules linked in: usb_storage e100 mii > > > > Pid: 1628, comm: creven Not tainted (2.6.24.7-ipipe #3) > > EIP: 0060:[<c017fb49>] EFLAGS: 00010246 CPU: 0 > > EIP is at page_dup_rmap+0x19/0x20 > > EAX: c115e760 EBX: c115e760 ECX: 08048000 EDX: cc6b1200 > > ESI: 09cbb025 EDI: 00000025 EBP: 08048000 ESP: cc709ec4 > > DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 0068 > > Process creven (pid: 1628, ti=cc708000 task=cc6f6ac0 task.ti=cc708000)<0> > > I-pipe domain Linux > > Stack: 08003875 c017ae62 cc6b1200 cd5d9e70 cc6b4e70 cc6fa080 cc650080 > > 08057000 > > 08057000 c115e760 cd034120 c9cba120 00000000 00000000 08056fff > > 00000000 > > 00000000 c9c6ec80 cc6b1200 00000000 cc6a6ac0 c0115b90 00000000 > > 00000000 > > Call Trace: > > [<c017ae62>] copy_page_range+0x2b2/0x580 > > [<c0115b90>] copy_process+0x7a0/0x1000 > > [<c01165a7>] do_fork+0x47/0x210 > > [<c0100bb6>] sys_clone+0x36/0x40 > > [<c0102b89>] syscall_call+0x7/0xb > > ======================= > > Code: 3b 4b 08 0f 93 c0 85 c0 75 ba 5b 89 c8 c3 8d 74 26 00 53 89 c3 83 > > 78 08 ff 74 10 f6 40 10 01 74 05 e8 3c f4 ff ff ff 43 08 5b c3 <0f> 0b > > eb fe 8d 76 00 83 ec 1c 89 5c 24 0c 89 c3 89 74 24 10 89 > > EIP: [<c017fb49>] page_dup_rmap+0x19/0x20 SS:ESP 0068:cc709ec4 > > ---[ end trace b9f3cc48844f8a3b ]--- > > note: creven[1628] exited with preempt_count 2 > > BUG: scheduling while atomic: creven/1628/0x00000003 > > Pid: 1628, comm: creven Tainted: G D 2.6.24.7-ipipe #3 > > [<c036bed3>] schedule+0x283/0x390 > > [<c036d525>] rwsem_down_failed_common+0x75/0x190 > > [<c013cb10>] handle_edge_irq+0xc0/0x150 > > [<c036d68d>] rwsem_down_read_failed+0x1d/0x24 > > [<c036d6cb>] call_rwsem_down_read_failed+0x7/0xc > > [<c036cb89>] down_read+0x9/0x10 > > [<c0118ed4>] exit_mm+0x24/0xd0 > > [<c011a632>] do_exit+0x112/0x800 > > [<c010410f>] die+0x21f/0x220 > > [<c0104523>] do_invalid_op+0x83/0x90 > > [<c017fb49>] page_dup_rmap+0x19/0x20 > > [<c0111998>] change_page_attr+0x2c8/0x300 > > [<c01119ed>] kernel_map_pages+0x1d/0x60 > > [<c0170472>] get_page_from_freelist+0x2c2/0x520 > > [<c010e78f>] __ipipe_handle_exception+0x7f/0x1c0 > > [<c036db5b>] error_code+0x6f/0x7c > > [<c0170000>] setup_per_zone_pages_min+0x1b0/0x1f0 > > [<c017fb49>] page_dup_rmap+0x19/0x20 > > [<c017ae62>] copy_page_range+0x2b2/0x580 > > [<c0115b90>] copy_process+0x7a0/0x1000 > > [<c01165a7>] do_fork+0x47/0x210 > > [<c0100bb6>] sys_clone+0x36/0x40 > > [<c0102b89>] syscall_call+0x7/0xb > > ======================= > > This once fixed it for me, but we still need to take a closer look on > this. Gilles, any news regarding this? I am ready to test Tomas use case, to see if I can reproduce (and then hopefully solve) the bug he met. I did not have a look at page_add_new_anon_rmap yet, so I do not know if it is safe to be called from copy_page_range. -- Gilles ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-05-14 14:34 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-05-13 13:31 [Xenomai-help] v2.4.3 bug with system() call Stéphane ANCELOT 2008-05-13 14:31 ` Gilles Chanteperdrix 2008-05-14 8:09 ` Stéphane ANCELOT 2008-05-14 8:57 ` Gilles Chanteperdrix 2008-05-14 12:40 ` Stéphane ANCELOT 2008-05-14 12:45 ` [Xenomai-help] v2.4.3 bug with system() call (ERRATUM) Stéphane ANCELOT 2008-05-14 12:50 ` Gilles Chanteperdrix 2008-05-14 14:34 ` [Xenomai-help] v2.4.3 bug with system() call [FIXED] Stéphane ANCELOT 2008-05-13 14:43 ` [Xenomai-help] v2.4.3 bug with system() call Jan Kiszka 2008-05-13 14:48 ` Gilles Chanteperdrix
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.