* [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant
@ 2025-09-15 14:18 Miquel Sabaté Solà
2025-09-29 8:08 ` Miquel Sabaté Solà
2025-10-15 9:52 ` Christophe Leroy
0 siblings, 2 replies; 4+ messages in thread
From: Miquel Sabaté Solà @ 2025-09-15 14:18 UTC (permalink / raw)
To: linuxppc-dev
Cc: linux-kernel, maddy, mpe, npiggin, christophe.leroy, mikisabate
This constant was introduced in commit 17ce452f7ea3 ("kgdb, powerpc:
arch specific powerpc kgdb support"), but it is no longer used anywhere
in the source tree.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
---
arch/powerpc/include/asm/kgdb.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/powerpc/include/asm/kgdb.h b/arch/powerpc/include/asm/kgdb.h
index 715c18b75334..4c0afde87e97 100644
--- a/arch/powerpc/include/asm/kgdb.h
+++ b/arch/powerpc/include/asm/kgdb.h
@@ -25,7 +25,6 @@
#define BREAK_INSTR_SIZE 4
#define BUFMAX ((NUMREGBYTES * 2) + 512)
-#define OUTBUFMAX ((NUMREGBYTES * 2) + 512)
#define BREAK_INSTR 0x7d821008 /* twge r2, r2 */
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant
2025-09-15 14:18 [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant Miquel Sabaté Solà
@ 2025-09-29 8:08 ` Miquel Sabaté Solà
2025-10-15 9:37 ` Miquel Sabaté Solà
2025-10-15 9:52 ` Christophe Leroy
1 sibling, 1 reply; 4+ messages in thread
From: Miquel Sabaté Solà @ 2025-09-29 8:08 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel, maddy, mpe, npiggin, christophe.leroy
[-- Attachment #1: Type: text/plain, Size: 802 bytes --]
Miquel Sabaté Solà @ 2025-09-15 16:18 +02:
> This constant was introduced in commit 17ce452f7ea3 ("kgdb, powerpc:
> arch specific powerpc kgdb support"), but it is no longer used anywhere
> in the source tree.
>
> Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
> ---
> arch/powerpc/include/asm/kgdb.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/powerpc/include/asm/kgdb.h b/arch/powerpc/include/asm/kgdb.h
> index 715c18b75334..4c0afde87e97 100644
> --- a/arch/powerpc/include/asm/kgdb.h
> +++ b/arch/powerpc/include/asm/kgdb.h
> @@ -25,7 +25,6 @@
>
> #define BREAK_INSTR_SIZE 4
> #define BUFMAX ((NUMREGBYTES * 2) + 512)
> -#define OUTBUFMAX ((NUMREGBYTES * 2) + 512)
>
> #define BREAK_INSTR 0x7d821008 /* twge r2, r2 */
Gently ping :)
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant
2025-09-29 8:08 ` Miquel Sabaté Solà
@ 2025-10-15 9:37 ` Miquel Sabaté Solà
0 siblings, 0 replies; 4+ messages in thread
From: Miquel Sabaté Solà @ 2025-10-15 9:37 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel, maddy, mpe, npiggin, christophe.leroy
[-- Attachment #1: Type: text/plain, Size: 974 bytes --]
Hello,
Miquel Sabaté Solà @ 2025-09-29 10:08 +02:
> Miquel Sabaté Solà @ 2025-09-15 16:18 +02:
>
>> This constant was introduced in commit 17ce452f7ea3 ("kgdb, powerpc:
>> arch specific powerpc kgdb support"), but it is no longer used anywhere
>> in the source tree.
>>
>> Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
>> ---
>> arch/powerpc/include/asm/kgdb.h | 1 -
>> 1 file changed, 1 deletion(-)
>>
>> diff --git a/arch/powerpc/include/asm/kgdb.h b/arch/powerpc/include/asm/kgdb.h
>> index 715c18b75334..4c0afde87e97 100644
>> --- a/arch/powerpc/include/asm/kgdb.h
>> +++ b/arch/powerpc/include/asm/kgdb.h
>> @@ -25,7 +25,6 @@
>>
>> #define BREAK_INSTR_SIZE 4
>> #define BUFMAX ((NUMREGBYTES * 2) + 512)
>> -#define OUTBUFMAX ((NUMREGBYTES * 2) + 512)
>>
>> #define BREAK_INSTR 0x7d821008 /* twge r2, r2 */
>
> Gently ping :)
Ping again :)
Does anyone have some time to review this patch?
Thanks!
Miquel
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant
2025-09-15 14:18 [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant Miquel Sabaté Solà
2025-09-29 8:08 ` Miquel Sabaté Solà
@ 2025-10-15 9:52 ` Christophe Leroy
1 sibling, 0 replies; 4+ messages in thread
From: Christophe Leroy @ 2025-10-15 9:52 UTC (permalink / raw)
To: Miquel Sabaté Solà, linuxppc-dev
Cc: linux-kernel, maddy, mpe, npiggin
Le 15/09/2025 à 16:18, Miquel Sabaté Solà a écrit :
> [Vous ne recevez pas souvent de courriers de mikisabate@gmail.com. Découvrez pourquoi ceci est important à https://aka.ms/LearnAboutSenderIdentification ]
>
> This constant was introduced in commit 17ce452f7ea3 ("kgdb, powerpc:
> arch specific powerpc kgdb support"), but it is no longer used anywhere
> in the source tree.
>
> Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
> ---
> arch/powerpc/include/asm/kgdb.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/powerpc/include/asm/kgdb.h b/arch/powerpc/include/asm/kgdb.h
> index 715c18b75334..4c0afde87e97 100644
> --- a/arch/powerpc/include/asm/kgdb.h
> +++ b/arch/powerpc/include/asm/kgdb.h
> @@ -25,7 +25,6 @@
>
> #define BREAK_INSTR_SIZE 4
> #define BUFMAX ((NUMREGBYTES * 2) + 512)
> -#define OUTBUFMAX ((NUMREGBYTES * 2) + 512)
>
> #define BREAK_INSTR 0x7d821008 /* twge r2, r2 */
>
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-10-15 10:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-15 14:18 [PATCH] powerpc: kgdb: Remove OUTBUFMAX constant Miquel Sabaté Solà
2025-09-29 8:08 ` Miquel Sabaté Solà
2025-10-15 9:37 ` Miquel Sabaté Solà
2025-10-15 9:52 ` Christophe Leroy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).