* [Xenomai-core] [patch] update email addr @ 2006-08-11 0:18 Jim Cromie 2006-08-11 7:02 ` Jan Kiszka 0 siblings, 1 reply; 5+ messages in thread From: Jim Cromie @ 2006-08-11 0:18 UTC (permalink / raw) To: xenomai-core im trying to inline this patch, pls let me know if its still ws fouled (in thunderbird, cp from svn diff |less, preformat b4 paste) Index: CREDITS =================================================================== --- CREDITS (revision 1412) +++ CREDITS (working copy) @@ -43,7 +43,7 @@ D: the map. N: Jim Cromie -E: jcromie@domain.hid +E: jim.cromie@domain.hid D: Comprehensive statistics collection for the testsuite. D: Validation test script. Various script fixes and sanitization. (END) ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-core] [patch] update email addr 2006-08-11 0:18 [Xenomai-core] [patch] update email addr Jim Cromie @ 2006-08-11 7:02 ` Jan Kiszka 2006-08-11 16:20 ` [Xenomai-core] [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests Jim Cromie 0 siblings, 1 reply; 5+ messages in thread From: Jan Kiszka @ 2006-08-11 7:02 UTC (permalink / raw) To: Jim Cromie; +Cc: xenomai-core [-- Attachment #1: Type: text/plain, Size: 1326 bytes --] Jim Cromie wrote: > im trying to inline this patch, > pls let me know if its still ws fouled > (in thunderbird, cp from svn diff |less, preformat b4 paste) > > > > > Index: CREDITS > =================================================================== > --- CREDITS (revision 1412) > +++ CREDITS (working copy) > @@ -43,7 +43,7 @@ > D: the map. > > N: Jim Cromie > -E: jcromie@domain.hid > +E: jim.cromie@domain.hid > D: Comprehensive statistics collection for the testsuite. > D: Validation test script. Various script fixes and sanitization. Obviously damaged, at least here on the list (leading single whitespace missing in unmodified lines). This also applies to your second patch. The required steps with Thunderbird are: 1. start a new mail or reply as HTML (bah!), 2. set the text style of everything to preformat, 3. switch back to "Plain Text Only" under Options/Format. Hope somebody will once hack a plugin for disabling line wrapping on demand without this dance... Anyway,I received complaints my patches were damaged nevertheless when sending inline. So I switched back to attachments (except for real tiny, non-wrapping patches). As long as you unsure that those patches do not suffer from special encoding, one one can still easily quote them on reply. Jan [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 249 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Xenomai-core] [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests 2006-08-11 7:02 ` Jan Kiszka @ 2006-08-11 16:20 ` Jim Cromie 2006-08-11 16:41 ` [Xenomai-core] " Jan Kiszka 2006-08-13 10:27 ` [Xenomai-core] " Gilles Chanteperdrix 0 siblings, 2 replies; 5+ messages in thread From: Jim Cromie @ 2006-08-11 16:20 UTC (permalink / raw) To: Jan Kiszka; +Cc: xenomai-core [-- Attachment #1: Type: text/plain, Size: 2117 bytes --] Jan Kiszka wrote: > Jim Cromie wrote: > >> im trying to inline this patch, >> pls let me know if its still ws fouled >> (in thunderbird, cp from svn diff |less, preformat b4 paste) >> >> >> >> >> Index: CREDITS >> =================================================================== >> --- CREDITS (revision 1412) >> +++ CREDITS (working copy) >> @@ -43,7 +43,7 @@ >> D: the map. >> >> N: Jim Cromie >> -E: jcromie@domain.hid >> +E: jim.cromie@domain.hid >> D: Comprehensive statistics collection for the testsuite. >> D: Validation test script. Various script fixes and sanitization. >> > > Obviously damaged, at least here on the list (leading single whitespace > missing in unmodified lines). This also applies to your second patch. > > The required steps with Thunderbird are: 1. start a new mail or reply as > HTML (bah!), 2. set the text style of everything to preformat, 3. switch > back to "Plain Text Only" under Options/Format. Hope somebody will once > hack a plugin for disabling line wrapping on demand without this dance... > > <marge-simpson-voice> HRMM maybe copy-src is the factor - Ive had luck my way (which yours sounds like) when cpying the diff from an emacs window. No Matter ( machts nichts, or after americanization, MoxNix ) attachments are easier anyway, and RPM seems not to care either way. So, 2 patches: 1- bundle: email, Kconfig spelling, switchbench print in us, not ns. issues : - switchbench segfaults(iirc) for me - both before and after patch, so its not tested - and printf format purposely not tweaked, so as to give someone else the itch ;-) 2 - add newer benchmark tests to xeno-test RFC - irqbench (all 4 ways) - switchbench - segfaults - switchtest by the way, could we get renames ? switch{,bench,test}/switch.c is just unnecessarily confusing ! issues : - are tests ready to add ? perhaps, if optional ? - config dependence ignored we have no guarantee of .config availability (or do we?) - XENOT_* for tool(*) specific option setting from env warrants better prefix, but XENOTEST_TOPTS_* seemed too much thanks -jimc [-- Attachment #2: diff.bundle --] [-- Type: text/plain, Size: 2998 bytes --] Index: src/testsuite/switchbench/switch.c =================================================================== --- src/testsuite/switchbench/switch.c (revision 1416) +++ src/testsuite/switchbench/switch.c (working copy) @@ -38,8 +38,9 @@ static inline void add_histogram(long addval) { - long inabs = rt_timer_tsc2ns(addval >= 0 ? addval : -addval) / 1000; /* usec steps */ - histogram[inabs < HISTOGRAM_CELLS ? inabs : HISTOGRAM_CELLS - 1]++; + /* usec steps */ + long inabs = rt_timer_tsc2ns(addval >= 0 ? addval : -addval) / 1000; + histogram[inabs < HISTOGRAM_CELLS ? inabs : HISTOGRAM_CELLS - 1]++; } void dump_histogram(void) @@ -134,10 +135,10 @@ printf("RTH|%12s|%12s|%12s|%12s\n", "lat min", "lat avg", "lat max", "lost"); - printf("RTD|%12Ld|%12Ld|%12Ld|%12lld\n", - rt_timer_tsc2ns(minjitter), - rt_timer_tsc2ns(avgjitter), - rt_timer_tsc2ns(maxjitter), lost); + printf("RTD|%12.3f|%12.3f|%12.3f|%12lld\n", + rt_timer_tsc2ns(minjitter) / 1000, + rt_timer_tsc2ns(avgjitter) / 1000, + rt_timer_tsc2ns(maxjitter) / 1000, lost); if (do_histogram) dump_histogram(); Index: CREDITS =================================================================== --- CREDITS (revision 1416) +++ CREDITS (working copy) @@ -43,7 +43,7 @@ D: the map. N: Jim Cromie -E: jcromie@domain.hid +E: jim.cromie@domain.hid D: Comprehensive statistics collection for the testsuite. D: Validation test script. Various script fixes and sanitization. Index: ksrc/arch/i386/Kconfig =================================================================== --- ksrc/arch/i386/Kconfig (revision 1416) +++ ksrc/arch/i386/Kconfig (working copy) @@ -67,13 +67,13 @@ and hence may not be altered. For this reason, Xenomai contains code to detect chipsets using - SMIs and optionnaly activate some workarounds to stop SMIs. + SMIs and optionally activate some workarounds to stop SMIs. - Enabling this option will cause Xenomai not to try and detect whether + Enabling this option prevents Xenomai from detecting whether your hardware use SMIs. This option is mostly useful if you know that your system does not use SMIs and really want to size Xenomai modules down. The detection code has no run-time space overhead, - only disk-space overhead. + and a tiny memory footprint (<200 bytes on x86) config XENO_HW_SMI_DETECT bool @@ -98,7 +98,7 @@ and hence may not be altered. For this reason, Xenomai contains code to detect chipsets using - SMIs and optionnaly activate some workarounds to stop SMIs. + SMIs and optionally activate some workarounds to stop SMIs. Enabling this option cause those workarounds to be activated. if XENO_HW_SMI_WORKAROUND [-- Attachment #3: diff.xt-add-benchs --] [-- Type: text/plain, Size: 1397 bytes --] Index: scripts/xeno-test.in =================================================================== --- scripts/xeno-test.in (revision 1416) +++ scripts/xeno-test.in (working copy) @@ -190,16 +192,30 @@ boxstatus ( cd `dirname $0`/../testsuite/latency - loudly ./run -- $opts -t0 - loudly ./run -- $opts -t1 - loudly ./run -- $opts -t2 + loudly ./run -- $XENOT_LAT $opts -t0 '# latency' + loudly ./run -- $XENOT_LAT $opts -t1 '# latency' + loudly ./run -- $XENOT_LAT $opts -t2 '# latency' ) + ( cd `dirname $0`/../testsuite/switch - loudly ./run -- '# switch' + loudly ./run -- $XENOT_SWITCH '# switch' ) + ( cd `dirname $0`/../testsuite/switchbench + loudly ./run -- -p 10 -n -l 1000 $XENOT_SWITCHBENCH '# switchbench' + ) + ( cd `dirname $0`/../testsuite/switchtest + loudly ./run -- -n $XENOT_SWITCHTEST '# switchtest' + ) + ( cd `dirname $0`/../testsuite/cyclic - loudly ./run -- -p 10 -n -l 1000 '# cyclictest' + loudly ./run -- -p 10 -n -l 1000 $XENOT_CYCLIC '# cyclictest' ) + ( cd `dirname $0`/../testsuite/irqbench + loudly ./run -- -P 10 $XENOT_IRQBENCH -t0 '# irqbench user' + loudly ./run -- -P 10 $XENOT_IRQBENCH -t1 '# irqbench kernel' + loudly ./run -- -P 10 $XENOT_IRQBENCH -t2 '# irqbench irq-handler' + loudly ./run -- -P 10 $XENOT_IRQBENCH -t3 '# irqbench hard-irq-handler' + ) boxstatus cleanup_load } ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Xenomai-core] Re: [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests 2006-08-11 16:20 ` [Xenomai-core] [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests Jim Cromie @ 2006-08-11 16:41 ` Jan Kiszka 2006-08-13 10:27 ` [Xenomai-core] " Gilles Chanteperdrix 1 sibling, 0 replies; 5+ messages in thread From: Jan Kiszka @ 2006-08-11 16:41 UTC (permalink / raw) To: Jim Cromie; +Cc: xenomai-core [-- Attachment #1: Type: text/plain, Size: 2589 bytes --] Jim Cromie wrote: > Jan Kiszka wrote: >> Jim Cromie wrote: >> >>> im trying to inline this patch, >>> pls let me know if its still ws fouled >>> (in thunderbird, cp from svn diff |less, preformat b4 paste) >>> >>> >>> >>> >>> Index: CREDITS >>> =================================================================== >>> --- CREDITS (revision 1412) >>> +++ CREDITS (working copy) >>> @@ -43,7 +43,7 @@ >>> D: the map. >>> >>> N: Jim Cromie >>> -E: jcromie@domain.hid >>> +E: jim.cromie@domain.hid >>> D: Comprehensive statistics collection for the testsuite. >>> D: Validation test script. Various script fixes and sanitization. >>> >> >> Obviously damaged, at least here on the list (leading single whitespace >> missing in unmodified lines). This also applies to your second patch. >> >> The required steps with Thunderbird are: 1. start a new mail or reply as >> HTML (bah!), 2. set the text style of everything to preformat, 3. switch >> back to "Plain Text Only" under Options/Format. Hope somebody will once >> hack a plugin for disabling line wrapping on demand without this dance... >> >> > <marge-simpson-voice> HRMM > maybe copy-src is the factor - Ive had luck my way (which yours sounds > like) > when cpying the diff from an emacs window. > > No Matter ( machts nichts, or after americanization, MoxNix ) > attachments are easier anyway, and RPM seems not to care either way. > > So, 2 patches: > > 1- bundle: email, Kconfig spelling, switchbench print in us, not ns. > issues : > - switchbench segfaults(iirc) for me - both before and after patch, > so its not tested - and printf format purposely not tweaked, so as > to give someone else the itch ;-) > Would you mind to attach a debugger and trace this a bit down? I do not see this here. Or are there any special switches to apply? > > 2 - add newer benchmark tests to xeno-test RFC > - irqbench (all 4 ways) See my other mail. This requires a second box and some explanation for the poor newbie who's just looking for a self-contained test run. > - switchbench - segfaults > - switchtest > by the way, could we get renames ? switch{,bench,test}/switch.c > is just unnecessarily confusing ! > > issues : > - are tests ready to add ? perhaps, if optional ? > - config dependence ignored > we have no guarantee of .config availability (or do we?) > - XENOT_* for tool(*) specific option setting from env > warrants better prefix, but XENOTEST_TOPTS_* seemed too much > > thanks > -jimc > Jan [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 250 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-core] [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests 2006-08-11 16:20 ` [Xenomai-core] [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests Jim Cromie 2006-08-11 16:41 ` [Xenomai-core] " Jan Kiszka @ 2006-08-13 10:27 ` Gilles Chanteperdrix 1 sibling, 0 replies; 5+ messages in thread From: Gilles Chanteperdrix @ 2006-08-13 10:27 UTC (permalink / raw) To: Jim Cromie; +Cc: Jan Kiszka, xenomai-core Jim Cromie wrote: > 1- bundle: email, Kconfig spelling, switchbench print in us, not ns. > issues : > - switchbench segfaults(iirc) for me - both before and after patch, > so its not tested - and printf format purposely not tweaked, so as > to give someone else the itch ;-) Patch applied, thanks. > > > 2 - add newer benchmark tests to xeno-test RFC > - irqbench (all 4 ways) > - switchbench - segfaults > - switchtest > by the way, could we get renames ? > switch{,bench,test}/switch.c > is just unnecessarily confusing ! The two switch.c are renamed, I have not applied this second patch, since Jan seems to have an objection. -- Gilles Chanteperdrix. ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-08-13 10:27 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2006-08-11 0:18 [Xenomai-core] [patch] update email addr Jim Cromie 2006-08-11 7:02 ` Jan Kiszka 2006-08-11 16:20 ` [Xenomai-core] [patches] 1-bundle-email-spelling-help 2-rfc-add-newer-bench-tests Jim Cromie 2006-08-11 16:41 ` [Xenomai-core] " Jan Kiszka 2006-08-13 10:27 ` [Xenomai-core] " 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.