From: shuah <shuah@kernel.org>
To: Randy Dunlap <rdunlap@infradead.org>,
Brendan Higgins <brendanhiggins@google.com>
Cc: kunit-dev@googlegroups.com, linux-kernel@vger.kernel.org,
linux-kselftest@vger.kernel.org, frowand.list@gmail.com,
sboyd@kernel.org, Stephen Rothwell <sfr@canb.auug.org.au>,
shuah <shuah@kernel.org>
Subject: Re: [PATCH v1] kunit: fix failure to build without printk
Date: Tue, 27 Aug 2019 15:16:15 -0600 [thread overview]
Message-ID: <15c04ce1-020f-a286-07fe-c1b883c44b1b@kernel.org> (raw)
In-Reply-To: <5b626f60-8472-a97e-378e-755160e5d948@infradead.org>
On 8/27/19 2:53 PM, Randy Dunlap wrote:
> On 8/27/19 1:21 PM, shuah wrote:
>> On 8/27/19 11:49 AM, Brendan Higgins wrote:
>>> Previously KUnit assumed that printk would always be present, which is
>>> not a valid assumption to make. Fix that by ifdefing out functions which
>>> directly depend on printk core functions similar to what dev_printk
>>> does.
>>>
>>> Reported-by: Randy Dunlap <rdunlap@infradead.org>
>>> Link: https://lore.kernel.org/linux-kselftest/0352fae9-564f-4a97-715a-fabe016259df@kernel.org/T/#t
>>> Cc: Stephen Rothwell <sfr@canb.auug.org.au>
>>> Signed-off-by: Brendan Higgins <brendanhiggins@google.com>
>>> ---
>>> include/kunit/test.h | 7 +++++++
>>> kunit/test.c | 41 ++++++++++++++++++++++++-----------------
>>> 2 files changed, 31 insertions(+), 17 deletions(-)
>>>
>>> diff --git a/include/kunit/test.h b/include/kunit/test.h
>>> index 8b7eb03d4971..339af5f95c4a 100644
>>> --- a/include/kunit/test.h
>>> +++ b/include/kunit/test.h
>>> @@ -339,9 +339,16 @@ static inline void *kunit_kzalloc(struct kunit *test, size_t size, gfp_t gfp)
>>> void kunit_cleanup(struct kunit *test);
>>> +#ifdef CONFIG_PRINTK
>>
>> Please make this #if defined(CONFIG_PRINTK)
>
> explain why, please?
>
> thanks.
>
This can be used to do compound logic. I have been using this style for
that reason starting a couple of years now. I seem to work in code paths
where I have to look for multiple config vars.
In this case, it probably doesn't matter as much either way.
thanks,
-- Shuah
next prev parent reply other threads:[~2019-08-27 21:16 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-27 17:49 [PATCH v1] kunit: fix failure to build without printk Brendan Higgins
2019-08-27 18:58 ` Randy Dunlap
2019-08-27 20:21 ` shuah
2019-08-27 20:53 ` Randy Dunlap
2019-08-27 21:16 ` shuah [this message]
2019-08-27 21:03 ` Brendan Higgins
2019-08-27 21:09 ` Brendan Higgins
2019-08-27 21:36 ` Brendan Higgins
2019-08-27 22:00 ` shuah
2019-08-27 22:16 ` Brendan Higgins
2019-08-27 22:37 ` Tim.Bird
2019-08-27 22:51 ` Brendan Higgins
2019-08-27 22:55 ` shuah
2019-08-27 23:11 ` Brendan Higgins
2019-08-27 21:46 ` Stephen Boyd
2019-08-27 21:51 ` Brendan Higgins
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=15c04ce1-020f-a286-07fe-c1b883c44b1b@kernel.org \
--to=shuah@kernel.org \
--cc=brendanhiggins@google.com \
--cc=frowand.list@gmail.com \
--cc=kunit-dev@googlegroups.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=rdunlap@infradead.org \
--cc=sboyd@kernel.org \
--cc=sfr@canb.auug.org.au \
/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