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>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
"David S . Miller" <davem@davemloft.net>,
Stephen Rothwell <sfr@canb.auug.org.au>,
Amritha Nambiar <amritha.nambiar@intel.com>,
Willem de Bruijn <willemb@google.com>,
Kees Cook <keescook@chromium.org>,
Matthew Wilcox <willy@infradead.org>,
"Tobin C . Harding" <tobin@kernel.org>,
Will Deacon <will.deacon@arm.com>,
Miklos Szeredi <mszeredi@redhat.com>,
Vineet Gupta <vineet.gupta1@synopsys.com>,
Chris Wilson <chris@chris-wilson.co.uk>,
Arnaldo Carvalho de Melo <acme@redhat.com>,
linux-kernel@vger.kernel.org, Yury Norov <ynorov@marvell.com>,
Jens Axboe <axboe@kernel.dk>,
Steffen Klassert <steffen.klassert@secunet.com>
Subject: Re: [PATCH 6/7] lib: new testcases for bitmap_parse{_user}
Date: Wed, 8 May 2019 11:47:59 +0300 [thread overview]
Message-ID: <20190508084759.GD9224@smile.fi.intel.com> (raw)
In-Reply-To: <20190501010636.30595-7-ynorov@marvell.com>
On Tue, Apr 30, 2019 at 06:06:35PM -0700, Yury Norov wrote:
> New version of bitmap_parse() is unified with bitmap_parse_list(),
> and therefore:
> - weakens rules on whitespaces and commas between hex chunks;
> - in addition to \0 allows using \n as the line ending symbol;
> - allows passing UINT_MAX or any other big number as the length
> of input string instead of actual string length.
>
> The patch covers the cases.
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
>
> Signed-off-by: Yury Norov <ynorov@marvell.com>
> ---
> lib/test_bitmap.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/lib/test_bitmap.c b/lib/test_bitmap.c
> index 731e107d811a..9e6b87895108 100644
> --- a/lib/test_bitmap.c
> +++ b/lib/test_bitmap.c
> @@ -343,14 +343,22 @@ static const unsigned long parse_test2[] __initconst = {
> };
>
> static const struct test_bitmap_parselist parse_tests[] __initconst = {
> + {0, "", &parse_test[0 * step], 32, 0},
> + {0, " ", &parse_test[0 * step], 32, 0},
> {0, "0", &parse_test[0 * step], 32, 0},
> + {0, "0\n", &parse_test[0 * step], 32, 0},
> {0, "1", &parse_test[1 * step], 32, 0},
> {0, "deadbeef", &parse_test[2 * step], 32, 0},
> {0, "1,0", &parse_test[3 * step], 33, 0},
> + {0, "deadbeef,\n,0,1", &parse_test[2 * step], 96, 0},
>
> {0, "deadbeef,1,0", &parse_test2[0 * 2 * step], 96, 0},
> {0, "baadf00d,deadbeef,1,0", &parse_test2[1 * 2 * step], 128, 0},
> {0, "badf00d,deadbeef,1,0", &parse_test2[2 * 2 * step], 124, 0},
> + {0, "badf00d,deadbeef,1,0", &parse_test2[2 * 2 * step], 124, NO_LEN},
> + {0, " badf00d,deadbeef,1,0 ", &parse_test2[2 * 2 * step], 124, 0},
> + {0, " , badf00d,deadbeef,1,0 , ", &parse_test2[2 * 2 * step], 124, 0},
> + {0, " , badf00d, ,, ,,deadbeef,1,0 , ", &parse_test2[2 * 2 * step], 124, 0},
>
> {-EINVAL, "goodfood,deadbeef,1,0", NULL, 128, 0},
> {-EOVERFLOW, "3,0", NULL, 33, 0},
> --
> 2.17.1
>
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2019-05-08 8:48 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-01 1:06 [PATCH 0/7] lib: rework bitmap_parse Yury Norov
2019-05-01 1:06 ` [PATCH 1/7] lib/string: add strnchrnul() Yury Norov
2019-05-08 8:47 ` Andy Shevchenko
2019-05-01 1:06 ` [PATCH 2/7] bitops: more BITS_TO_* macros Yury Norov
2019-05-08 8:47 ` Andy Shevchenko
2019-05-01 1:06 ` [PATCH 3/7] lib: add test for bitmap_parse() Yury Norov
2019-05-08 8:47 ` Andy Shevchenko
2019-05-01 1:06 ` [PATCH 4/7] lib: make bitmap_parse_user a wrapper on bitmap_parse Yury Norov
2019-05-08 8:47 ` Andy Shevchenko
2019-05-01 1:06 ` [PATCH 5/7] lib: rework bitmap_parse() Yury Norov
2019-05-08 8:46 ` Andy Shevchenko
2019-05-10 2:26 ` Yury Norov
2019-05-24 2:51 ` Andrew Morton
2019-05-01 1:06 ` [PATCH 6/7] lib: new testcases for bitmap_parse{_user} Yury Norov
2019-05-08 8:47 ` Andy Shevchenko [this message]
2019-05-01 1:06 ` [PATCH 7/7] cpumask: don't calculate length of the input string Yury Norov
2019-05-08 8:48 ` Andy Shevchenko
2019-05-07 21:04 ` [PATCH 0/7] lib: rework bitmap_parse Yury Norov
-- strict thread matches above, loose matches on Subject: below --
2019-07-21 21:27 [PATCH v3 " Yury Norov
2019-07-21 21:27 ` [PATCH 6/7] lib: new testcases for bitmap_parse{_user} Yury Norov
2019-09-09 3:30 [PATCH v4 0/7] lib: rework bitmap_parse Yury Norov
2019-09-09 3:30 ` [PATCH 6/7] lib: new testcases for bitmap_parse{_user} Yury Norov
2020-01-02 4:30 [PATCH v5 0/7] lib: rework bitmap_parse Yury Norov
2020-01-02 4:30 ` [PATCH 6/7] lib: new testcases for bitmap_parse{_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=20190508084759.GD9224@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=acme@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=amritha.nambiar@intel.com \
--cc=axboe@kernel.dk \
--cc=chris@chris-wilson.co.uk \
--cc=davem@davemloft.net \
--cc=dmitry.torokhov@gmail.com \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=mszeredi@redhat.com \
--cc=sfr@canb.auug.org.au \
--cc=steffen.klassert@secunet.com \
--cc=tobin@kernel.org \
--cc=vineet.gupta1@synopsys.com \
--cc=will.deacon@arm.com \
--cc=willemb@google.com \
--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 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.