mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
kgdb patches for 6.11
Three small changes this cycle:
1. Cleaning up an architecture abstraction that is no longer needed
because all the architectures have converged.
2. Actually use the prompt argument to kdb_position_cursor() instead of
ignoring it (functionally this fix is a nop but that was due to luck
rather than good judgement)
3. Fix a -Wformat-security warning.
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEELzVBU1D3lWq6cKzwfOMlXTn3iKEFAmaiHisACgkQfOMlXTn3
iKHUgQ//WS9t2GOdKzeOTYKbUfmE/RhdjLzMOqJhbtLn2uV7wbFxbcWDXz7rzcUQ
ipOvaO7wv78AkOasse6cBml8MLkfxvm+qrigFogUDiurRJ06JqkitJTF0fqc0lti
n6n8oHPteEfGY/QXCx/JDoUli4/zfxykUOYqMwKU8WZSjnqwCvNIG9BE17D4QL87
KHVMBpq0NS1eVs39y2mHkQ3PnHzwlf9fyzbmO2mxDIwaAMSR8ZJ5ZkcdH3PM1hhi
vHsbdljhHt9IjZowhjTXUeSHCG7aYbWAGxQNyI6iS936nguJorH2xy5NAXYJo7Ph
gXoEXl0xfeQpRWllzGy2f409ZDLWIRTu8AUjlJLLSJ4E9+aQn5YjPE0oSg/fuudC
49EQo5WGFZz2+1p+7ST5iJp73qGw87A7UWVNtrnxRbq910b4B1k564WBaADjGDh9
TslwOXim+/DwtLXjgUTtiZKxjMKzn+yh58UMwiHeBo84EiQvGFR2ZjBUD7SN2UUN
6ME+5HviUHvXkdWm554l6FRPHwQBuY2XjX0ipW7DtzMJ+rK5cRLc1ylGYyI4Cooz
stMaHTdnCZTacQU4EZTmddQEtfdYmNOU/wu1i91lyudgTlf0SGnH/orD01dskKaT
6L8AU/YobzODZCtyQmXlKeN6OIc1WoBY/Ct84fNSH4wtiVesBcE=
=Se36
-----END PGP SIGNATURE-----
Merge tag 'kgdb-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux
Pull kgdb updates from Daniel Thompson:
"Three small changes this cycle:
- Clean up an architecture abstraction that is no longer needed
because all the architectures have converged.
- Actually use the prompt argument to kdb_position_cursor() instead
of ignoring it (functionally this fix is a nop but that was due to
luck rather than good judgement)
- Fix a -Wformat-security warning"
* tag 'kgdb-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux:
kdb: Get rid of redundant kdb_curr_task()
kdb: Use the passed prompt in kdb_position_cursor()
kdb: address -Wformat-security warnings
This commit is contained in:
commit
9b21993654
|
|
@ -144,7 +144,7 @@ kdb_bt(int argc, const char **argv)
|
|||
kdb_ps_suppressed();
|
||||
/* Run the active tasks first */
|
||||
for_each_online_cpu(cpu) {
|
||||
p = kdb_curr_task(cpu);
|
||||
p = curr_task(cpu);
|
||||
if (kdb_bt1(p, mask, btaprompt))
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@ char kdb_getchar(void)
|
|||
*/
|
||||
static void kdb_position_cursor(char *prompt, char *buffer, char *cp)
|
||||
{
|
||||
kdb_printf("\r%s", kdb_prompt_str);
|
||||
kdb_printf("\r%s", prompt);
|
||||
if (cp > buffer)
|
||||
kdb_printf("%.*s", (int)(cp - buffer), buffer);
|
||||
}
|
||||
|
|
@ -362,7 +362,7 @@ static char *kdb_read(char *buffer, size_t bufsize)
|
|||
if (i >= dtab_count)
|
||||
kdb_printf("...");
|
||||
kdb_printf("\n");
|
||||
kdb_printf(kdb_prompt_str);
|
||||
kdb_printf("%s", kdb_prompt_str);
|
||||
kdb_printf("%s", buffer);
|
||||
if (cp != lastchar)
|
||||
kdb_position_cursor(kdb_prompt_str, buffer, cp);
|
||||
|
|
@ -453,7 +453,7 @@ char *kdb_getstr(char *buffer, size_t bufsize, const char *prompt)
|
|||
{
|
||||
if (prompt && kdb_prompt_str != prompt)
|
||||
strscpy(kdb_prompt_str, prompt, CMD_BUFLEN);
|
||||
kdb_printf(kdb_prompt_str);
|
||||
kdb_printf("%s", kdb_prompt_str);
|
||||
kdb_nextline = 1; /* Prompt and input resets line number */
|
||||
return kdb_read(buffer, bufsize);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -155,16 +155,6 @@ static char *__env[31] = {
|
|||
|
||||
static const int __nenv = ARRAY_SIZE(__env);
|
||||
|
||||
struct task_struct *kdb_curr_task(int cpu)
|
||||
{
|
||||
struct task_struct *p = curr_task(cpu);
|
||||
#ifdef _TIF_MCA_INIT
|
||||
if ((task_thread_info(p)->flags & _TIF_MCA_INIT) && KDB_TSK(cpu))
|
||||
p = krp->p;
|
||||
#endif
|
||||
return p;
|
||||
}
|
||||
|
||||
/*
|
||||
* Update the permissions flags (kdb_cmd_enabled) to match the
|
||||
* current lockdown state.
|
||||
|
|
@ -1228,7 +1218,7 @@ static int kdb_local(kdb_reason_t reason, int error, struct pt_regs *regs,
|
|||
char *cmdbuf;
|
||||
int diag;
|
||||
struct task_struct *kdb_current =
|
||||
kdb_curr_task(raw_smp_processor_id());
|
||||
curr_task(raw_smp_processor_id());
|
||||
|
||||
KDB_DEBUG_STATE("kdb_local 1", reason);
|
||||
|
||||
|
|
@ -2278,7 +2268,7 @@ void kdb_ps_suppressed(void)
|
|||
unsigned long cpu;
|
||||
const struct task_struct *p, *g;
|
||||
for_each_online_cpu(cpu) {
|
||||
p = kdb_curr_task(cpu);
|
||||
p = curr_task(cpu);
|
||||
if (kdb_task_state(p, "-"))
|
||||
++idle;
|
||||
}
|
||||
|
|
@ -2314,7 +2304,7 @@ void kdb_ps1(const struct task_struct *p)
|
|||
kdb_task_has_cpu(p), kdb_process_cpu(p),
|
||||
kdb_task_state_char(p),
|
||||
(void *)(&p->thread),
|
||||
p == kdb_curr_task(raw_smp_processor_id()) ? '*' : ' ',
|
||||
p == curr_task(raw_smp_processor_id()) ? '*' : ' ',
|
||||
p->comm);
|
||||
if (kdb_task_has_cpu(p)) {
|
||||
if (!KDB_TSK(cpu)) {
|
||||
|
|
@ -2350,7 +2340,7 @@ static int kdb_ps(int argc, const char **argv)
|
|||
for_each_online_cpu(cpu) {
|
||||
if (KDB_FLAG(CMD_INTERRUPT))
|
||||
return 0;
|
||||
p = kdb_curr_task(cpu);
|
||||
p = curr_task(cpu);
|
||||
if (kdb_task_state(p, mask))
|
||||
kdb_ps1(p);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -210,8 +210,6 @@ extern void kdb_gdb_state_pass(char *buf);
|
|||
#define KDB_TSK(cpu) kgdb_info[cpu].task
|
||||
#define KDB_TSKREGS(cpu) kgdb_info[cpu].debuggerinfo
|
||||
|
||||
extern struct task_struct *kdb_curr_task(int);
|
||||
|
||||
#define kdb_task_has_cpu(p) (task_curr(p))
|
||||
|
||||
#define GFP_KDB (in_dbg_master() ? GFP_ATOMIC : GFP_KERNEL)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user