From: Shuah Khan <skhan@linuxfoundation.org>
To: David Gow <davidgow@google.com>
Cc: Artur Alves <arturacb@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org,
Brendan Higgins <brendan.higgins@linux.dev>,
Rae Moar <rmoar@google.com>,
linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com,
n@nfraprado.net, andrealmeid@riseup.net, vinicius@nukelet.com,
diego.daniel.professional@gmail.com,
Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH v3 0/1] Add KUnit tests for llist
Date: Fri, 20 Sep 2024 09:10:37 -0600 [thread overview]
Message-ID: <f641378c-e729-4c5d-bf55-24a7fc96b623@linuxfoundation.org> (raw)
In-Reply-To: <CABVgOSmNcmnRCn5Q05U1wBebSGTM=OdUXuT7SA-poHXUgKubaQ@mail.gmail.com>
On 9/20/24 01:10, David Gow wrote:
> On Fri, 20 Sept 2024 at 00:01, Shuah Khan <skhan@linuxfoundation.org> wrote:
>>
>> On 9/16/24 18:51, Artur Alves wrote:
>>> Hi all,
>>>
>>> This is part of a hackathon organized by LKCAMP[1], focused on writing
>>> tests using KUnit. We reached out a while ago asking for advice on what
>>> would be a useful contribution[2] and ended up choosing data structures
>>> that did not yet have tests.
>>>
>>> This patch adds tests for the llist data structure, defined in
>>> include/linux/llist.h, and is inspired by the KUnit tests for the doubly
>>> linked list in lib/list-test.c[3].
>>>
>>> It is important to note that this patch depends on the patch referenced
>>> in [4], as it utilizes the newly created lib/tests/ subdirectory.
>>>
>>> [1] https://lkcamp.dev/about/
>>> [2] https://lore.kernel.org/all/Zktnt7rjKryTh9-N@arch/
>>> [3] https://elixir.bootlin.com/linux/latest/source/lib/list-test.c
>>> [4] https://lore.kernel.org/all/20240720181025.work.002-kees@kernel.org/
>>>
>>> ---
>>> Changes in v3:
>>> - Resolved checkpatch warnings:
>>> - Renamed tests for macros starting with 'for_each'
>>
>> Shouldn't this a separate patch to make it easy to review?
>>
>
> I think that, if this were renaming these in an already existing test
> (like the confusingly similar list test), then yes. But since it's
> only a change from v2, I think we're okay.
>
>>> - Removed link from commit message
>>> - Replaced hardcoded constants with ENTRIES_SIZE
>>
>> Shouldn't this a separate patch to make it easy to review?
>
> Again, if we want to change this in other tests (list, hlist) we
> should split it into a separate patch, but I think it's okay for llist
> to go in with these already cleaned up.
>
>>
>>> - Updated initialization of llist_node array
>>> - Fixed typos
>>> - Update Kconfig.debug message for llist_kunit
>>
>> Are these changes to existing code or warnings on your added code?
>
> I think these are all changes to the added code since v2. Artur, is that right?
>
>>>
>>> Changes in v2:
>>> - Add MODULE_DESCRIPTION()
>>> - Move the tests from lib/llist_kunit.c to lib/tests/llist_kunit.c
>>> - Change the license from "GPL v2" to "GPL"
>>>
>>> Artur Alves (1):
>>> lib/llist_kunit.c: add KUnit tests for llist
>>>
>>> lib/Kconfig.debug | 11 ++
>>> lib/tests/Makefile | 1 +
>>> lib/tests/llist_kunit.c | 358 ++++++++++++++++++++++++++++++++++++++++
>>> 3 files changed, 370 insertions(+)
>>> create mode 100644 lib/tests/llist_kunit.c
>>>
>>
>> You are combining lot of changes in one single patch. Each change as a separate
>> patch will help reviewers.
>>
>> Adding new test should be a separate patch.
>>
>> - renaming as a separate patch
>>
>
> I think given that these are just changes between patch versions, not
> renaming/modifying already committed code, that this is okay to go in
> as one patch?
>
> The actual patch is only doing one thing: adding a test suite for the
> llist structure. I don't see the point in committing a version of it
> only to immediately rename things and clean bits up separately in this
> case.
I do think it will help to separate the renaming and adding a new test.
It makes it easier to follow.
thanks,
-- Shuah
next prev parent reply other threads:[~2024-09-20 15:10 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-17 0:51 [PATCH v3 0/1] Add KUnit tests for llist Artur Alves
2024-09-17 0:51 ` [PATCH v3 1/1] lib/llist_kunit.c: add " Artur Alves
2024-10-02 20:27 ` Rae Moar
2024-10-03 6:56 ` David Gow
2024-09-19 16:01 ` [PATCH v3 0/1] Add " Shuah Khan
2024-09-19 22:27 ` Artur Alves Cavalcante de Barros
2024-09-20 7:10 ` David Gow
2024-09-20 15:10 ` Shuah Khan [this message]
2024-09-21 3:07 ` Artur Alves Cavalcante de Barros
2024-09-21 2:49 ` Artur Alves Cavalcante de Barros
2024-09-23 15:48 ` Shuah Khan
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=f641378c-e729-4c5d-bf55-24a7fc96b623@linuxfoundation.org \
--to=skhan@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=andrealmeid@riseup.net \
--cc=arturacb@gmail.com \
--cc=brendan.higgins@linux.dev \
--cc=davidgow@google.com \
--cc=diego.daniel.professional@gmail.com \
--cc=kunit-dev@googlegroups.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=n@nfraprado.net \
--cc=rmoar@google.com \
--cc=vinicius@nukelet.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