On Mon, 8 Jun 2015, Anna-Maria Gleixner wrote: > On Tue, 2 Jun 2015, Thomas Gleixner wrote: > > Fair enough. Let her resend then. > > I'm sorry. Now it applies. > Anna-Maria > > > cyclictest: Convert the offset of the alignment option to microseconds > > The offset is specified in microseconds according to the > documentation, but, the microseconds to nanoseconds conversion is > missing so the effective offset has the unit of nanoseconds. > > Signed-off-by: Anna-Maria Gleixner <anna-maria@xxxxxxxxx> > --- > src/cyclictest/cyclictest.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > Index: rt-tests/src/cyclictest/cyclictest.c > =================================================================== > --- rt-tests.orig/src/cyclictest/cyclictest.c > +++ rt-tests/src/cyclictest/cyclictest.c > @@ -1289,9 +1289,9 @@ static void process_options (int argc, c > case OPT_ALIGNED: > aligned=1; > if (optarg != NULL) > - offset = atoi(optarg); > + offset = atoi(optarg) * 1000; > else if (optind<argc && atoi(argv[optind])) > - offset = atoi(argv[optind]); > + offset = atoi(argv[optind]) * 1000; > else > offset = 0; > break; > -- Thanks, applied, this will be in the next release John -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html