* [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm @ 2013-10-04 10:17 Maxim Uvarov 2013-10-04 10:17 ` [LTP] [PATCH] LTP cacheflush01 add arm variant Maxim Uvarov 2013-10-09 7:59 ` [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Jan Stancek 0 siblings, 2 replies; 7+ messages in thread From: Maxim Uvarov @ 2013-10-04 10:17 UTC (permalink / raw) To: ltp-list; +Cc: linaro-networking, Maxim Uvarov Arm has following vector stab: ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors] which is not accounted in map_count. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.com> --- testcases/kernel/mem/tunable/max_map_count.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/testcases/kernel/mem/tunable/max_map_count.c b/testcases/kernel/mem/tunable/max_map_count.c index 01fbe5e..ca28fba 100644 --- a/testcases/kernel/mem/tunable/max_map_count.c +++ b/testcases/kernel/mem/tunable/max_map_count.c @@ -121,12 +121,24 @@ void cleanup(void) * for in the vm_area_struct's map_count. */ #if defined(__x86_64__) || defined(__x86__) -static int filter_map(char *buf) +static int filter_map(char *line) { + char buf[BUFSIZ]; + int ret; + + ret = sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf); + if (ret != 1) + return 0; + return strcmp(buf, "[vsyscall]") == 0; } +#elif defined(__arm__) +static int filter_map(char *line) +{ + return strncmp(line, "ffff0000-ffff1000", 17) == 0; +} #else -static int filter_map(char *buf) +static int filter_map(char *line) { return 0; } @@ -146,8 +158,7 @@ static long count_maps(pid_t pid) tst_brkm(TBROK | TERRNO, cleanup, "fopen %s", buf); while (getline(&line, &len, fp) != -1) { /* exclude vdso and vsyscall */ - if (sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf) == - 1 && filter_map(buf)) + if (filter_map(line)) continue; map_count++; } -- 1.7.9.5 ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [LTP] [PATCH] LTP cacheflush01 add arm variant 2013-10-04 10:17 [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Maxim Uvarov @ 2013-10-04 10:17 ` Maxim Uvarov 2013-10-09 7:55 ` Jan Stancek 2013-10-09 7:59 ` [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Jan Stancek 1 sibling, 1 reply; 7+ messages in thread From: Maxim Uvarov @ 2013-10-04 10:17 UTC (permalink / raw) To: ltp-list; +Cc: linaro-networking, Maxim Uvarov Cache flush on arm provided via __ARM_NR_cacheflush(unsigned long start, unsigned long end, int flags) defined in ./arch/arm/kernel/traps.c. Flags are not used, providing 0 there. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.com> --- .../kernel/syscalls/cacheflush/cacheflush01.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/testcases/kernel/syscalls/cacheflush/cacheflush01.c b/testcases/kernel/syscalls/cacheflush/cacheflush01.c index 9c02f0a..fae51b4 100644 --- a/testcases/kernel/syscalls/cacheflush/cacheflush01.c +++ b/testcases/kernel/syscalls/cacheflush/cacheflush01.c @@ -137,6 +137,14 @@ int main(int ac, char **av) } /* Invokes cacheflush() with proper parameters */ +#if defined(__arm__) + TEST(ltp_syscall(__ARM_NR_cacheflush, addr, addr + getpagesize(), 0)); + if (TEST_RETURN == 0) { + tst_resm(TPASS, "passed with no errno"); + } else { + tst_resm(TFAIL, "failed with unexpected errno"); + } +#else TEST(ltp_syscall(__NR_cacheflush, addr, getpagesize(), ICACHE)); if (TEST_RETURN == 0) { tst_resm(TPASS, "passed with no errno"); @@ -157,6 +165,7 @@ int main(int ac, char **av) } else { tst_resm(TFAIL, "failed with unexpected errno"); } +#endif cleanup(); tst_exit(); -- 1.7.9.5 ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH] LTP cacheflush01 add arm variant 2013-10-04 10:17 ` [LTP] [PATCH] LTP cacheflush01 add arm variant Maxim Uvarov @ 2013-10-09 7:55 ` Jan Stancek 0 siblings, 0 replies; 7+ messages in thread From: Jan Stancek @ 2013-10-09 7:55 UTC (permalink / raw) To: Maxim Uvarov; +Cc: ltp-list, Maxim Uvarov, linaro-networking ----- Original Message ----- > From: "Maxim Uvarov" <maxim.uvarov@linaro.org> > To: ltp-list@lists.sourceforge.net > Cc: linaro-networking@linaro.org, "Maxim Uvarov" <maxim.uvarov@linaro.com> > Sent: Friday, 4 October, 2013 12:17:12 PM > Subject: [LTP] [PATCH] LTP cacheflush01 add arm variant > > Cache flush on arm provided via > __ARM_NR_cacheflush(unsigned long start, unsigned long end, int flags) > defined in ./arch/arm/kernel/traps.c. > Flags are not used, providing 0 there. > > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.com> Hi, looks good to me. I was thinking about getting rid of that ifdef, but I'm not sure it's worth the trouble for such trivial testcase. Small nits (related to original code): - no need for brackets for single statement - it would be helpful to see the errno in case of failure: tst_resm(TFAIL | TTERRNO, "failed with unexpected errno"); - "malloc failed" flags should be TFAIL | TERRNO - tst_tmpdir()/tst_rmdir() is not needed - unnecessary comments can be removed Regards, Jan > --- > .../kernel/syscalls/cacheflush/cacheflush01.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/testcases/kernel/syscalls/cacheflush/cacheflush01.c > b/testcases/kernel/syscalls/cacheflush/cacheflush01.c > index 9c02f0a..fae51b4 100644 > --- a/testcases/kernel/syscalls/cacheflush/cacheflush01.c > +++ b/testcases/kernel/syscalls/cacheflush/cacheflush01.c > @@ -137,6 +137,14 @@ int main(int ac, char **av) > } > > /* Invokes cacheflush() with proper parameters */ > +#if defined(__arm__) > + TEST(ltp_syscall(__ARM_NR_cacheflush, addr, addr + getpagesize(), 0)); > + if (TEST_RETURN == 0) { > + tst_resm(TPASS, "passed with no errno"); > + } else { > + tst_resm(TFAIL, "failed with unexpected errno"); > + } > +#else > TEST(ltp_syscall(__NR_cacheflush, addr, getpagesize(), ICACHE)); > if (TEST_RETURN == 0) { > tst_resm(TPASS, "passed with no errno"); > @@ -157,6 +165,7 @@ int main(int ac, char **av) > } else { > tst_resm(TFAIL, "failed with unexpected errno"); > } > +#endif > > cleanup(); > tst_exit(); > -- > 1.7.9.5 > > > ------------------------------------------------------------------------------ > October Webinars: Code for Performance > Free Intel webinars can help you accelerate application performance. > Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from > the latest Intel processors and coprocessors. See abstracts and register > > http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk > _______________________________________________ > Ltp-list mailing list > Ltp-list@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ltp-list > ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm 2013-10-04 10:17 [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Maxim Uvarov 2013-10-04 10:17 ` [LTP] [PATCH] LTP cacheflush01 add arm variant Maxim Uvarov @ 2013-10-09 7:59 ` Jan Stancek 2013-10-09 10:33 ` Maxim Uvarov 1 sibling, 1 reply; 7+ messages in thread From: Jan Stancek @ 2013-10-09 7:59 UTC (permalink / raw) To: Maxim Uvarov; +Cc: ltp-list, Maxim Uvarov, linaro-networking ----- Original Message ----- > From: "Maxim Uvarov" <maxim.uvarov@linaro.org> > To: ltp-list@lists.sourceforge.net > Cc: linaro-networking@linaro.org, "Maxim Uvarov" <maxim.uvarov@linaro.com> > Sent: Friday, 4 October, 2013 12:17:11 PM > Subject: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm > > Arm has following vector stab: > ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors] > which is not accounted in map_count. > > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.com> > --- > testcases/kernel/mem/tunable/max_map_count.c | 19 +++++++++++++++---- > 1 file changed, 15 insertions(+), 4 deletions(-) > > diff --git a/testcases/kernel/mem/tunable/max_map_count.c > b/testcases/kernel/mem/tunable/max_map_count.c > index 01fbe5e..ca28fba 100644 > --- a/testcases/kernel/mem/tunable/max_map_count.c > +++ b/testcases/kernel/mem/tunable/max_map_count.c > @@ -121,12 +121,24 @@ void cleanup(void) > * for in the vm_area_struct's map_count. > */ > #if defined(__x86_64__) || defined(__x86__) > -static int filter_map(char *buf) > +static int filter_map(char *line) > { > + char buf[BUFSIZ]; > + int ret; > + > + ret = sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf); > + if (ret != 1) > + return 0; > + > return strcmp(buf, "[vsyscall]") == 0; > } > +#elif defined(__arm__) > +static int filter_map(char *line) > +{ > + return strncmp(line, "ffff0000-ffff1000", 17) == 0; Hi, just curious, why comparing the range instead of name ([vectors])? Regards, Jan > +} > #else > -static int filter_map(char *buf) > +static int filter_map(char *line) > { > return 0; > } > @@ -146,8 +158,7 @@ static long count_maps(pid_t pid) > tst_brkm(TBROK | TERRNO, cleanup, "fopen %s", buf); > while (getline(&line, &len, fp) != -1) { > /* exclude vdso and vsyscall */ > - if (sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf) == > - 1 && filter_map(buf)) > + if (filter_map(line)) > continue; > map_count++; > } > -- > 1.7.9.5 > > > ------------------------------------------------------------------------------ > October Webinars: Code for Performance > Free Intel webinars can help you accelerate application performance. > Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from > the latest Intel processors and coprocessors. See abstracts and register > > http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk > _______________________________________________ > Ltp-list mailing list > Ltp-list@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ltp-list > ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm 2013-10-09 7:59 ` [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Jan Stancek @ 2013-10-09 10:33 ` Maxim Uvarov 2013-10-18 12:22 ` Maxim Uvarov 0 siblings, 1 reply; 7+ messages in thread From: Maxim Uvarov @ 2013-10-09 10:33 UTC (permalink / raw) To: Jan Stancek; +Cc: ltp-list, Maxim Uvarov, linaro-networking On 10/09/2013 11:59 AM, Jan Stancek wrote: > > ----- Original Message ----- >> From: "Maxim Uvarov" <maxim.uvarov@linaro.org> >> To: ltp-list@lists.sourceforge.net >> Cc: linaro-networking@linaro.org, "Maxim Uvarov" <maxim.uvarov@linaro.com> >> Sent: Friday, 4 October, 2013 12:17:11 PM >> Subject: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm >> >> Arm has following vector stab: >> ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors] >> which is not accounted in map_count. >> >> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.com> >> --- >> testcases/kernel/mem/tunable/max_map_count.c | 19 +++++++++++++++---- >> 1 file changed, 15 insertions(+), 4 deletions(-) >> >> diff --git a/testcases/kernel/mem/tunable/max_map_count.c >> b/testcases/kernel/mem/tunable/max_map_count.c >> index 01fbe5e..ca28fba 100644 >> --- a/testcases/kernel/mem/tunable/max_map_count.c >> +++ b/testcases/kernel/mem/tunable/max_map_count.c >> @@ -121,12 +121,24 @@ void cleanup(void) >> * for in the vm_area_struct's map_count. >> */ >> #if defined(__x86_64__) || defined(__x86__) >> -static int filter_map(char *buf) >> +static int filter_map(char *line) >> { >> + char buf[BUFSIZ]; >> + int ret; >> + >> + ret = sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf); >> + if (ret != 1) >> + return 0; >> + >> return strcmp(buf, "[vsyscall]") == 0; >> } >> +#elif defined(__arm__) >> +static int filter_map(char *line) >> +{ >> + return strncmp(line, "ffff0000-ffff1000", 17) == 0; > Hi, > > just curious, why comparing the range instead of name ([vectors])? > > Regards, > Jan for arm there are 8 regions for vectors. Only that region is not accounted. Maxim. >> +} >> #else >> -static int filter_map(char *buf) >> +static int filter_map(char *line) >> { >> return 0; >> } >> @@ -146,8 +158,7 @@ static long count_maps(pid_t pid) >> tst_brkm(TBROK | TERRNO, cleanup, "fopen %s", buf); >> while (getline(&line, &len, fp) != -1) { >> /* exclude vdso and vsyscall */ >> - if (sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf) == >> - 1 && filter_map(buf)) >> + if (filter_map(line)) >> continue; >> map_count++; >> } >> -- >> 1.7.9.5 >> >> >> ------------------------------------------------------------------------------ >> October Webinars: Code for Performance >> Free Intel webinars can help you accelerate application performance. >> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from >> the latest Intel processors and coprocessors. See abstracts and register > >> http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk >> _______________________________________________ >> Ltp-list mailing list >> Ltp-list@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/ltp-list >> ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60134071&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm 2013-10-09 10:33 ` Maxim Uvarov @ 2013-10-18 12:22 ` Maxim Uvarov 2013-10-21 7:50 ` Jan Stancek 0 siblings, 1 reply; 7+ messages in thread From: Maxim Uvarov @ 2013-10-18 12:22 UTC (permalink / raw) To: Jan Stancek; +Cc: ltp-list, Maxim Uvarov, linaro-networking what is the status of that patch? Thank you, Maxim. On 10/09/2013 02:33 PM, Maxim Uvarov wrote: > On 10/09/2013 11:59 AM, Jan Stancek wrote: >> >> ----- Original Message ----- >>> From: "Maxim Uvarov" <maxim.uvarov@linaro.org> >>> To: ltp-list@lists.sourceforge.net >>> Cc: linaro-networking@linaro.org, "Maxim Uvarov" >>> <maxim.uvarov@linaro.com> >>> Sent: Friday, 4 October, 2013 12:17:11 PM >>> Subject: [LTP] [PATCH] LTP max_map_count: filer out not accounted >>> vector stub for arm >>> >>> Arm has following vector stab: >>> ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors] >>> which is not accounted in map_count. >>> >>> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.com> >>> --- >>> testcases/kernel/mem/tunable/max_map_count.c | 19 >>> +++++++++++++++---- >>> 1 file changed, 15 insertions(+), 4 deletions(-) >>> >>> diff --git a/testcases/kernel/mem/tunable/max_map_count.c >>> b/testcases/kernel/mem/tunable/max_map_count.c >>> index 01fbe5e..ca28fba 100644 >>> --- a/testcases/kernel/mem/tunable/max_map_count.c >>> +++ b/testcases/kernel/mem/tunable/max_map_count.c >>> @@ -121,12 +121,24 @@ void cleanup(void) >>> * for in the vm_area_struct's map_count. >>> */ >>> #if defined(__x86_64__) || defined(__x86__) >>> -static int filter_map(char *buf) >>> +static int filter_map(char *line) >>> { >>> + char buf[BUFSIZ]; >>> + int ret; >>> + >>> + ret = sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf); >>> + if (ret != 1) >>> + return 0; >>> + >>> return strcmp(buf, "[vsyscall]") == 0; >>> } >>> +#elif defined(__arm__) >>> +static int filter_map(char *line) >>> +{ >>> + return strncmp(line, "ffff0000-ffff1000", 17) == 0; >> Hi, >> >> just curious, why comparing the range instead of name ([vectors])? >> >> Regards, >> Jan > for arm there are 8 regions for vectors. Only that region is not > accounted. > > Maxim. > >>> +} >>> #else >>> -static int filter_map(char *buf) >>> +static int filter_map(char *line) >>> { >>> return 0; >>> } >>> @@ -146,8 +158,7 @@ static long count_maps(pid_t pid) >>> tst_brkm(TBROK | TERRNO, cleanup, "fopen %s", buf); >>> while (getline(&line, &len, fp) != -1) { >>> /* exclude vdso and vsyscall */ >>> - if (sscanf(line, "%*p-%*p %*4s %*p %*2d:%*2d %*d %s", buf) == >>> - 1 && filter_map(buf)) >>> + if (filter_map(line)) >>> continue; >>> map_count++; >>> } >>> -- >>> 1.7.9.5 >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> October Webinars: Code for Performance >>> Free Intel webinars can help you accelerate application performance. >>> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the >>> most from >>> the latest Intel processors and coprocessors. See abstracts and >>> register > >>> http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk >>> >>> _______________________________________________ >>> Ltp-list mailing list >>> Ltp-list@lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/ltp-list >>> > ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm 2013-10-18 12:22 ` Maxim Uvarov @ 2013-10-21 7:50 ` Jan Stancek 0 siblings, 0 replies; 7+ messages in thread From: Jan Stancek @ 2013-10-21 7:50 UTC (permalink / raw) To: Maxim Uvarov; +Cc: ltp-list, Maxim Uvarov, linaro-networking ----- Original Message ----- > From: "Maxim Uvarov" <maxim.uvarov@linaro.org> > To: "Jan Stancek" <jstancek@redhat.com> > Cc: ltp-list@lists.sourceforge.net, linaro-networking@linaro.org, "Maxim Uvarov" <maxim.uvarov@linaro.com> > Sent: Friday, 18 October, 2013 2:22:20 PM > Subject: Re: [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm > > what is the status of that patch? committed with small changes to patch description. Thank you, Jan > > Thank you, > Maxim. > > On 10/09/2013 02:33 PM, Maxim Uvarov wrote: > > On 10/09/2013 11:59 AM, Jan Stancek wrote: > >> ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-10-21 7:50 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-10-04 10:17 [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Maxim Uvarov 2013-10-04 10:17 ` [LTP] [PATCH] LTP cacheflush01 add arm variant Maxim Uvarov 2013-10-09 7:55 ` Jan Stancek 2013-10-09 7:59 ` [LTP] [PATCH] LTP max_map_count: filer out not accounted vector stub for arm Jan Stancek 2013-10-09 10:33 ` Maxim Uvarov 2013-10-18 12:22 ` Maxim Uvarov 2013-10-21 7:50 ` Jan Stancek
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox