From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Yury Norov <yury.norov@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Arnd Bergmann <arnd@arndb.de>, Kees Cook <keescook@chromium.org>,
Matthew Wilcox <willy@infradead.org>,
Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>,
Yury Norov <ynorov@marvell.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 6/6] lib/test_bitmap: add tests for bitmap_parselist_user
Date: Tue, 26 Mar 2019 12:12:42 +0200 [thread overview]
Message-ID: <20190326101242.GU9224@smile.fi.intel.com> (raw)
In-Reply-To: <20190325210748.6571-7-ynorov@marvell.com>
On Tue, Mar 26, 2019 at 12:07:48AM +0300, Yury Norov wrote:
> Propagate existing bitmap_parselist() tests to bitmap_parselist_user().
Increasing test coverage is a good point,
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
for all test related patches
>
> Signed-off-by: Yury Norov <ynorov@marvell.com>
> ---
> lib/test_bitmap.c | 46 ++++++++++++++++++++++++++++++++++++----------
> 1 file changed, 36 insertions(+), 10 deletions(-)
>
> diff --git a/lib/test_bitmap.c b/lib/test_bitmap.c
> index 709424a788ee..d4ecac0da160 100644
> --- a/lib/test_bitmap.c
> +++ b/lib/test_bitmap.c
> @@ -11,6 +11,7 @@
> #include <linux/printk.h>
> #include <linux/slab.h>
> #include <linux/string.h>
> +#include <linux/uaccess.h>
>
> static unsigned total_tests __initdata;
> static unsigned failed_tests __initdata;
> @@ -278,39 +279,63 @@ static const struct test_bitmap_parselist parselist_tests[] __initconst = {
> {-EINVAL, "0-\n", NULL, 8, 0},
> };
>
> -static void __init test_bitmap_parselist(void)
> +static void __init __test_bitmap_parselist(int is_user)
> {
> int i;
> int err;
> ktime_t time;
> DECLARE_BITMAP(bmap, 2048);
> + char *mode = is_user ? "_user" : "";
>
> for (i = 0; i < ARRAY_SIZE(parselist_tests); i++) {
> #define ptest parselist_tests[i]
>
> - time = ktime_get();
> - err = bitmap_parselist(ptest.in, bmap, ptest.nbits);
> - time = ktime_get() - time;
> + if (is_user) {
> + mm_segment_t orig_fs = get_fs();
> + size_t len = strlen(ptest.in);
> +
> + set_fs(KERNEL_DS);
> + time = ktime_get();
> + err = bitmap_parselist_user(ptest.in, len,
> + bmap, ptest.nbits);
> + time = ktime_get() - time;
> + set_fs(orig_fs);
> + } else {
> + time = ktime_get();
> + err = bitmap_parselist(ptest.in, bmap, ptest.nbits);
> + time = ktime_get() - time;
> + }
>
> if (err != ptest.errno) {
> - pr_err("test %d: input is %s, errno is %d, expected %d\n",
> - i, ptest.in, err, ptest.errno);
> + pr_err("parselist%s: %d: input is %s, errno is %d, expected %d\n",
> + mode, i, ptest.in, err, ptest.errno);
> continue;
> }
>
> if (!err && ptest.expected
> && !__bitmap_equal(bmap, ptest.expected, ptest.nbits)) {
> - pr_err("test %d: input is %s, result is 0x%lx, expected 0x%lx\n",
> - i, ptest.in, bmap[0], *ptest.expected);
> + pr_err("parselist%s: %d: input is %s, result is 0x%lx, expected 0x%lx\n",
> + mode, i, ptest.in, bmap[0],
> + *ptest.expected);
> continue;
> }
>
> if (ptest.flags & PARSE_TIME)
> - pr_err("test %d: input is '%s' OK, Time: %llu\n",
> - i, ptest.in, time);
> + pr_err("parselist%s: %d: input is '%s' OK, Time: %llu\n",
> + mode, i, ptest.in, time);
> }
> }
>
> +static void __init test_bitmap_parselist(void)
> +{
> + __test_bitmap_parselist(0);
> +}
> +
> +static void __init test_bitmap_parselist_user(void)
> +{
> + __test_bitmap_parselist(1);
> +}
> +
> #define EXP_BYTES (sizeof(exp) * 8)
>
> static void __init test_bitmap_arr32(void)
> @@ -383,6 +408,7 @@ static int __init test_bitmap_init(void)
> test_copy();
> test_bitmap_arr32();
> test_bitmap_parselist();
> + test_bitmap_parselist_user();
> test_mem_optimisations();
>
> if (failed_tests == 0)
> --
> 2.17.1
>
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2019-03-26 10:12 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-25 21:07 [PATCH v2 RESEND 0/6] lib: rework bitmap_parselist and tests Yury Norov
2019-03-25 21:07 ` [PATCH 1/6] bitmap_parselist: don't calculate length of the input string Yury Norov
2019-03-26 10:09 ` Andy Shevchenko
2019-03-25 21:07 ` [PATCH 2/6] bitmap_parselist: move non-parser logic to helpers Yury Norov
2019-03-25 21:54 ` Andrew Morton
2019-03-25 21:07 ` [PATCH 3/6] bitmap_parselist: rework input string parser Yury Norov
2019-03-26 10:10 ` Andy Shevchenko
2019-03-26 21:09 ` Yuri Norov
2019-03-26 21:58 ` Mike Travis
2019-03-25 21:07 ` [PATCH 4/6] lib/test_bitmap: switch test_bitmap_parselist to ktime_get() Yury Norov
2019-03-25 21:07 ` [PATCH 5/6] lib/test_bitmap: add testcases for bitmap_parselist Yury Norov
2019-03-25 21:07 ` [PATCH 6/6] lib/test_bitmap: add tests for bitmap_parselist_user Yury Norov
2019-03-26 10:12 ` Andy Shevchenko [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-02-20 8:36 [PATCH v2 0/5] lib: rework bitmap_parselist and tests Yury Norov
2019-02-20 8:37 ` [PATCH 6/6] lib/test_bitmap: add tests for bitmap_parselist_user Yury Norov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190326101242.GU9224@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=penguin-kernel@I-love.SAKURA.ne.jp \
--cc=willy@infradead.org \
--cc=ynorov@marvell.com \
--cc=yury.norov@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome