2023-07-25 09:29:51

by Kemeng Shi

[permalink] [raw]
Subject: [PATCH] kunit: replace KUNIT_TRIGGER_STATIC_STUB maro with KUNIT_STATIC_STUB_REDIRECT

We mix up KUNIT_TRIGGER_STATIC_STUB and KUNIT_STATIC_STUB_REDIRECT in
static_stub header. Just correct KUNIT_TRIGGER_STATIC_STUB to
KUNIT_STATIC_STUB_REDIRECT which is documented.

Signed-off-by: Kemeng Shi <[email protected]>
---
include/kunit/static_stub.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/kunit/static_stub.h b/include/kunit/static_stub.h
index 9b80150a5d62..85315c80b303 100644
--- a/include/kunit/static_stub.h
+++ b/include/kunit/static_stub.h
@@ -11,7 +11,7 @@
#if !IS_ENABLED(CONFIG_KUNIT)

/* If CONFIG_KUNIT is not enabled, these stubs quietly disappear. */
-#define KUNIT_TRIGGER_STATIC_STUB(real_fn_name, args...) do {} while (0)
+#define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0)

#else

@@ -30,7 +30,7 @@
* This is a function prologue which is used to allow calls to the current
* function to be redirected by a KUnit test. KUnit tests can call
* kunit_activate_static_stub() to pass a replacement function in. The
- * replacement function will be called by KUNIT_TRIGGER_STATIC_STUB(), which
+ * replacement function will be called by KUNIT_STATIC_STUB_REDIRECT(), which
* will then return from the function. If the caller is not in a KUnit context,
* the function will continue execution as normal.
*
@@ -87,7 +87,7 @@ void __kunit_activate_static_stub(struct kunit *test,
* When activated, calls to real_fn_addr from within this test (even if called
* indirectly) will instead call replacement_addr. The function pointed to by
* real_fn_addr must begin with the static stub prologue in
- * KUNIT_TRIGGER_STATIC_STUB() for this to work. real_fn_addr and
+ * KUNIT_STATIC_STUB_REDIRECT() for this to work. real_fn_addr and
* replacement_addr must have the same type.
*
* The redirection can be disabled again with kunit_deactivate_static_stub().
--
2.30.0



2023-08-12 05:38:00

by Kemeng Shi

[permalink] [raw]
Subject: Re: [PATCH] kunit: replace KUNIT_TRIGGER_STATIC_STUB maro with KUNIT_STATIC_STUB_REDIRECT

Friendly ping...

on 7/26/2023 1:20 AM, Kemeng Shi wrote:
> We mix up KUNIT_TRIGGER_STATIC_STUB and KUNIT_STATIC_STUB_REDIRECT in
> static_stub header. Just correct KUNIT_TRIGGER_STATIC_STUB to
> KUNIT_STATIC_STUB_REDIRECT which is documented.
>
> Signed-off-by: Kemeng Shi <[email protected]>
> ---
> include/kunit/static_stub.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/include/kunit/static_stub.h b/include/kunit/static_stub.h
> index 9b80150a5d62..85315c80b303 100644
> --- a/include/kunit/static_stub.h
> +++ b/include/kunit/static_stub.h
> @@ -11,7 +11,7 @@
> #if !IS_ENABLED(CONFIG_KUNIT)
>
> /* If CONFIG_KUNIT is not enabled, these stubs quietly disappear. */
> -#define KUNIT_TRIGGER_STATIC_STUB(real_fn_name, args...) do {} while (0)
> +#define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0)
>
> #else
>
> @@ -30,7 +30,7 @@
> * This is a function prologue which is used to allow calls to the current
> * function to be redirected by a KUnit test. KUnit tests can call
> * kunit_activate_static_stub() to pass a replacement function in. The
> - * replacement function will be called by KUNIT_TRIGGER_STATIC_STUB(), which
> + * replacement function will be called by KUNIT_STATIC_STUB_REDIRECT(), which
> * will then return from the function. If the caller is not in a KUnit context,
> * the function will continue execution as normal.
> *
> @@ -87,7 +87,7 @@ void __kunit_activate_static_stub(struct kunit *test,
> * When activated, calls to real_fn_addr from within this test (even if called
> * indirectly) will instead call replacement_addr. The function pointed to by
> * real_fn_addr must begin with the static stub prologue in
> - * KUNIT_TRIGGER_STATIC_STUB() for this to work. real_fn_addr and
> + * KUNIT_STATIC_STUB_REDIRECT() for this to work. real_fn_addr and
> * replacement_addr must have the same type.
> *
> * The redirection can be disabled again with kunit_deactivate_static_stub().
>


2023-08-12 08:50:52

by David Gow

[permalink] [raw]
Subject: Re: [PATCH] kunit: replace KUNIT_TRIGGER_STATIC_STUB maro with KUNIT_STATIC_STUB_REDIRECT

On Tue, 25 Jul 2023 at 17:20, Kemeng Shi <[email protected]> wrote:
>
> We mix up KUNIT_TRIGGER_STATIC_STUB and KUNIT_STATIC_STUB_REDIRECT in
> static_stub header. Just correct KUNIT_TRIGGER_STATIC_STUB to
> KUNIT_STATIC_STUB_REDIRECT which is documented.
>
> Signed-off-by: Kemeng Shi <[email protected]>
> ---

Thanks for catching this!

Only minor note is that there's a typo in the subject ("maro","macro").

Fixes: e047c5eaa763 ("kunit: Expose 'static stub' API to redirect functions")
Reviewed-by: David Gow <[email protected]>

Cheers,
-- David

> include/kunit/static_stub.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/include/kunit/static_stub.h b/include/kunit/static_stub.h
> index 9b80150a5d62..85315c80b303 100644
> --- a/include/kunit/static_stub.h
> +++ b/include/kunit/static_stub.h
> @@ -11,7 +11,7 @@
> #if !IS_ENABLED(CONFIG_KUNIT)
>
> /* If CONFIG_KUNIT is not enabled, these stubs quietly disappear. */
> -#define KUNIT_TRIGGER_STATIC_STUB(real_fn_name, args...) do {} while (0)
> +#define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0)
>
> #else
>
> @@ -30,7 +30,7 @@
> * This is a function prologue which is used to allow calls to the current
> * function to be redirected by a KUnit test. KUnit tests can call
> * kunit_activate_static_stub() to pass a replacement function in. The
> - * replacement function will be called by KUNIT_TRIGGER_STATIC_STUB(), which
> + * replacement function will be called by KUNIT_STATIC_STUB_REDIRECT(), which
> * will then return from the function. If the caller is not in a KUnit context,
> * the function will continue execution as normal.
> *
> @@ -87,7 +87,7 @@ void __kunit_activate_static_stub(struct kunit *test,
> * When activated, calls to real_fn_addr from within this test (even if called
> * indirectly) will instead call replacement_addr. The function pointed to by
> * real_fn_addr must begin with the static stub prologue in
> - * KUNIT_TRIGGER_STATIC_STUB() for this to work. real_fn_addr and
> + * KUNIT_STATIC_STUB_REDIRECT() for this to work. real_fn_addr and
> * replacement_addr must have the same type.
> *
> * The redirection can be disabled again with kunit_deactivate_static_stub().
> --
> 2.30.0
>
> --
> You received this message because you are subscribed to the Google Groups "KUnit Development" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
> To view this discussion on the web visit https://groups.google.com/d/msgid/kunit-dev/20230725172051.2142641-1-shikemeng%40huaweicloud.com.


Attachments:
smime.p7s (3.91 kB)
S/MIME Cryptographic Signature

2023-08-14 02:08:56

by Kemeng Shi

[permalink] [raw]
Subject: Re: [PATCH] kunit: replace KUNIT_TRIGGER_STATIC_STUB maro with KUNIT_STATIC_STUB_REDIRECT



on 8/12/2023 3:48 PM, David Gow wrote:
> On Tue, 25 Jul 2023 at 17:20, Kemeng Shi <[email protected]> wrote:
>>
>> We mix up KUNIT_TRIGGER_STATIC_STUB and KUNIT_STATIC_STUB_REDIRECT in
>> static_stub header. Just correct KUNIT_TRIGGER_STATIC_STUB to
>> KUNIT_STATIC_STUB_REDIRECT which is documented.
>>
>> Signed-off-by: Kemeng Shi <[email protected]>
>> ---
>
> Thanks for catching this!
>
> Only minor note is that there's a typo in the subject ("maro","macro").
>
> Fixes: e047c5eaa763 ("kunit: Expose 'static stub' API to redirect functions")
> Reviewed-by: David Gow <[email protected]>
> Thanks for the feedback, I will fix it in next version.
> Cheers,
> -- David
>
>> include/kunit/static_stub.h | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/include/kunit/static_stub.h b/include/kunit/static_stub.h
>> index 9b80150a5d62..85315c80b303 100644
>> --- a/include/kunit/static_stub.h
>> +++ b/include/kunit/static_stub.h
>> @@ -11,7 +11,7 @@
>> #if !IS_ENABLED(CONFIG_KUNIT)
>>
>> /* If CONFIG_KUNIT is not enabled, these stubs quietly disappear. */
>> -#define KUNIT_TRIGGER_STATIC_STUB(real_fn_name, args...) do {} while (0)
>> +#define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0)
>>
>> #else
>>
>> @@ -30,7 +30,7 @@
>> * This is a function prologue which is used to allow calls to the current
>> * function to be redirected by a KUnit test. KUnit tests can call
>> * kunit_activate_static_stub() to pass a replacement function in. The
>> - * replacement function will be called by KUNIT_TRIGGER_STATIC_STUB(), which
>> + * replacement function will be called by KUNIT_STATIC_STUB_REDIRECT(), which
>> * will then return from the function. If the caller is not in a KUnit context,
>> * the function will continue execution as normal.
>> *
>> @@ -87,7 +87,7 @@ void __kunit_activate_static_stub(struct kunit *test,
>> * When activated, calls to real_fn_addr from within this test (even if called
>> * indirectly) will instead call replacement_addr. The function pointed to by
>> * real_fn_addr must begin with the static stub prologue in
>> - * KUNIT_TRIGGER_STATIC_STUB() for this to work. real_fn_addr and
>> + * KUNIT_STATIC_STUB_REDIRECT() for this to work. real_fn_addr and
>> * replacement_addr must have the same type.
>> *
>> * The redirection can be disabled again with kunit_deactivate_static_stub().
>> --
>> 2.30.0
>>
>> --
>> You received this message because you are subscribed to the Google Groups "KUnit Development" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
>> To view this discussion on the web visit https://groups.google.com/d/msgid/kunit-dev/20230725172051.2142641-1-shikemeng%40huaweicloud.com.