From: Peter Zijlstra <peterz@infradead.org>
To: Jason Wessel <jason.wessel@windriver.com>
Cc: linux-kernel@vger.kernel.org,
kgdb-bugreport@lists.sourceforge.net, kdb@oss.sgi.com,
mingo@elte.hu, mort@sgi.com, linux-arch@vger.kernel.org
Subject: Re: [PATCH 05/37] kdb: core for kgdb back end
Date: Thu, 24 Dec 2009 12:04:32 +0100 [thread overview]
Message-ID: <1261652672.4937.189.camel@laptop> (raw)
In-Reply-To: <1261603190-5036-6-git-send-email-jason.wessel@windriver.com>
On Wed, 2009-12-23 at 15:19 -0600, Jason Wessel wrote:
> diff --git a/kernel/sched.c b/kernel/sched.c
> index 87f1f47..6e1cfcf 100644
> --- a/kernel/sched.c
> +++ b/kernel/sched.c
> @@ -9785,7 +9785,7 @@ void normalize_rt_tasks(void)
>
> #endif /* CONFIG_MAGIC_SYSRQ */
>
> -#ifdef CONFIG_IA64
> +#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
> /*
> * These functions are only useful for the IA64 MCA handling.
> *
> @@ -10912,6 +10912,97 @@ struct cgroup_subsys cpuacct_subsys = {
> };
> #endif /* CONFIG_CGROUP_CPUACCT */
>
> +#ifdef CONFIG_KGDB_KDB
> +#include <linux/kdb.h>
> +
> +static void
> +kdb_prio(char *name, struct rt_prio_array *array, kdb_printf_t xxx_printf,
> + unsigned int cpu)
> +{
> + int pri, printed_header = 0;
> + struct task_struct *p;
> +
> + xxx_printf(" %s rt bitmap: 0x%lx 0x%lx 0x%lx\n",
> + name,
> + array->bitmap[0], array->bitmap[1], array->bitmap[2]);
> +
> + pri = sched_find_first_bit(array->bitmap);
> + if (pri < MAX_RT_PRIO) {
> + xxx_printf(" rt bitmap priorities:");
> + while (pri < MAX_RT_PRIO) {
> + xxx_printf(" %d", pri);
> + pri++;
> + pri = find_next_bit(array->bitmap, MAX_RT_PRIO, pri);
> + }
> + xxx_printf("\n");
> + }
> +
> + for (pri = 0; pri < MAX_RT_PRIO; pri++) {
> + int printed_hdr = 0;
> + struct list_head *head, *curr;
> +
> + head = array->queue + pri;
> + curr = head->next;
> + while (curr != head) {
> + struct task_struct *task;
> + if (!printed_hdr) {
> + xxx_printf(" queue at priority=%d\n", pri);
> + printed_hdr = 1;
> + }
> + task = list_entry(curr, struct task_struct,
> + rt.run_list);
> + if (task)
> + xxx_printf(" 0x%p %d %s time_slice:%d\n",
> + task, task->pid, task->comm,
> + task->rt.time_slice);
> + curr = curr->next;
> + }
> + }
> + for_each_process(p) {
> + if (p->se.on_rq && (task_cpu(p) == cpu) &&
> + (p->policy == SCHED_NORMAL)) {
> + if (!printed_header) {
> + xxx_printf(" sched_normal queue:\n");
> + printed_header = 1;
> + }
> + xxx_printf(" 0x%p %d %s pri:%d spri:%d npri:%d\n",
> + p, p->pid, p->comm, p->prio,
> + p->static_prio, p->normal_prio);
> + }
> + }
> +}
> +
> +/* This code must be in sched.c because struct rq is only defined in this
> + * source. To allow most of kdb to be modular, this code cannot call any kdb
> + * functions directly, any external functions that it needs must be passed in
> + * as parameters.
> + */
Wrong comment style.
> +void
> +kdb_runqueue(unsigned long cpu, kdb_printf_t xxx_printf)
> +{
> + struct rq *rq;
> +
> + rq = cpu_rq(cpu);
> +
> + xxx_printf("CPU%ld lock:%s curr:0x%p(%d)(%s)",
> + cpu, (raw_spin_is_locked(&rq->lock)) ? "LOCKED" : "free",
> + rq->curr, rq->curr->pid, rq->curr->comm);
> + if (rq->curr == rq->idle)
> + xxx_printf(" is idle");
> + xxx_printf("\n ");
> +#ifdef CONFIG_SMP
> + xxx_printf(" cpu_load:%lu %lu %lu",
> + rq->cpu_load[0], rq->cpu_load[1], rq->cpu_load[2]);
> +#endif
> + xxx_printf(" nr_running:%lu nr_switches:%llu\n",
> + rq->nr_running, (long long)rq->nr_switches);
> + kdb_prio("active", &rq->rt.active, xxx_printf, (unsigned int)cpu);
> +}
> +EXPORT_SYMBOL(kdb_runqueue);
> +
> +#endif /* CONFIG_KGDB_KDB */
> +
So what is this code supposed to do? It looks like it simply cannot be
correct.
next prev parent reply other threads:[~2009-12-24 11:05 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-23 21:19 [PATCH 0/37] kgdb, kdb and atomic kernel modesetting series Jason Wessel
2009-12-23 21:19 ` [PATCH 01/37] softlockup: add sched_clock_tick() to avoid kernel warning on kgdb resume Jason Wessel
2009-12-23 21:19 ` [PATCH 02/37] x86,hw_breakpoint,kgdb: kgdb to use hw_breakpoint API Jason Wessel
2009-12-23 21:19 ` [PATCH 03/37] Move kernel/kgdb.c to kernel/debug/debug_core.c Jason Wessel
2009-12-23 21:19 ` [PATCH 04/37] Separate the gdbstub from the debug core Jason Wessel
2009-12-23 21:19 ` [PATCH 05/37] kdb: core for kgdb back end Jason Wessel
2009-12-23 21:19 ` [PATCH 06/37] kgdb: eliminate kgdb_wait(), all cpus enter the same way Jason Wessel
2009-12-23 21:19 ` [PATCH 07/37] kgdb,sparc: Add in kgdb_arch_set_pc for sparc Jason Wessel
2009-12-23 21:19 ` [PATCH 08/37] kgdb,sh: update superh kgdb exception handling Jason Wessel
2009-12-23 21:19 ` [PATCH 09/37] kgdb,blackfin: Add in kgdb_arch_set_pc for blackfin Jason Wessel
2009-12-23 21:19 ` [PATCH 10/37] kgdb: Make mem access function weak in kgdb.c and kgdb.h Jason Wessel
2009-12-23 21:19 ` [PATCH 11/37] kgdb: Fix kernel-doc format error in kgdb.h Jason Wessel
2009-12-23 21:19 ` [PATCH 12/37] kgdb: core changes to support kdb Jason Wessel
2009-12-23 21:19 ` [PATCH 13/37] kgdb,8250,pl011: Return immediately from console poll Jason Wessel
2009-12-23 21:19 ` [PATCH 14/37] sh,sh-sci: Use NO_POLL_CHAR in the SCIF polled console code Jason Wessel
2009-12-23 21:19 ` [PATCH 15/37] sparc,sunzilog: Add console polling support for sunzilog serial driver Jason Wessel
2009-12-23 21:19 ` [PATCH 16/37] kgdb: gdb "monitor" -> kdb passthrough Jason Wessel
2009-12-23 21:19 ` [PATCH 17/37] kgdboc,keyboard: Keyboard driver for kdb with kgdb Jason Wessel
2009-12-23 21:19 ` [PATCH 18/37] kgdb: remove post_primary_code references Jason Wessel
2009-12-23 21:19 ` [PATCH 19/37] x86,kgdb: Add low level debug hook Jason Wessel
2009-12-23 21:19 ` [PATCH 20/37] arm,kgdb: Add hook to catch an oops with debugger Jason Wessel
2009-12-23 21:19 ` [PATCH 21/37] powerpc,kgdb: Introduce low level trap catching Jason Wessel
2009-12-23 21:19 ` [PATCH 22/37] mips,kgdb: kdb low level trap catch and stack trace Jason Wessel
2009-12-23 21:19 ` [PATCH 23/37] kgdb: Add the ability to schedule a breakpoint via a tasklet Jason Wessel
2009-12-23 21:19 ` [PATCH 24/37] kgdboc,kdb: Allow kdb to work on a non open console port Jason Wessel
2009-12-23 21:19 ` [PATCH 25/37] printk,kdb: capture printk() when in kdb shell Jason Wessel
2009-12-23 21:19 ` [PATCH 26/37] keyboard, input: Add hook to input to allow low level event clear Jason Wessel
2009-12-23 21:19 ` [PATCH 27/37] debug_core,kdb: Allow the debug core to process a recursive debug entry Jason Wessel
2009-12-23 21:19 ` [PATCH 28/37] kdb,panic,debug_core: Allow the debug core to receive a panic before smp_send_stop() Jason Wessel
2009-12-23 21:19 ` [PATCH 29/37] MAINTAINERS: update kgdb, kdb, and debug_core info Jason Wessel
2009-12-23 21:19 ` [PATCH 30/37] kgdboc,debug_core: Add call backs to allow kernel mode switching Jason Wessel
2009-12-23 21:19 ` [PATCH 31/37] kgdb: add ops arg to kgdb console active & restore hooks Jason Wessel
2009-12-23 21:19 ` [PATCH 32/37] kms,kdb: Force unblank a console device Jason Wessel
2009-12-23 21:43 ` [PATCH 33/37] drm: add KGDB/KDB support Add support for KDB entry/exit Jason Wessel
2009-12-23 21:43 ` [PATCH 34/37] i915: when kgdb is active display compression should be off Jason Wessel
2009-12-23 21:43 ` [PATCH 35/37] drm_fb_helper: Preserve capability to use atomic kms Jason Wessel
2009-12-23 21:43 ` [PATCH 36/37] drm,i915 - atomic mutex hacks Jason Wessel
2009-12-23 21:43 ` [PATCH 37/37] kgdbts,sh: Add in breakpoint pc offset for superh Jason Wessel
2009-12-24 3:58 ` Paul Mundt
2010-01-04 17:23 ` [PATCH 33/37] drm: add KGDB/KDB support Add support for KDB entry/exit Jesse Barnes
2009-12-23 21:50 ` [PATCH 15/37] sparc,sunzilog: Add console polling support for sunzilog serial driver David Miller
2009-12-23 21:54 ` Jason Wessel
2009-12-23 22:00 ` David Miller
2009-12-24 6:08 ` [PATCH 14/37] sh,sh-sci: Use NO_POLL_CHAR in the SCIF polled console code Paul Mundt
2009-12-26 21:07 ` [PATCH 10/37] kgdb: Make mem access function weak in kgdb.c and kgdb.h Mike Frysinger
2009-12-26 21:12 ` [PATCH 09/37] kgdb,blackfin: Add in kgdb_arch_set_pc for blackfin Mike Frysinger
2009-12-28 9:49 ` Zhang, Sonic
2009-12-28 9:57 ` Zhang, Sonic
2009-12-28 10:17 ` Zhang, Sonic
2009-12-31 2:45 ` Sonic Zhang
2010-01-06 19:43 ` [Kgdb-bugreport] " Jason Wessel
2010-01-06 20:08 ` Mike Frysinger
2010-01-06 20:34 ` Jason Wessel
2010-01-06 20:39 ` Mike Frysinger
2010-01-06 22:40 ` Jason Wessel
2010-01-07 6:27 ` Mike Frysinger
2010-01-07 3:50 ` Zhang, Sonic
2009-12-24 6:07 ` [PATCH 08/37] kgdb,sh: update superh kgdb exception handling Paul Mundt
2009-12-23 21:48 ` [PATCH 07/37] kgdb,sparc: Add in kgdb_arch_set_pc for sparc David Miller
2009-12-23 23:04 ` Jason Wessel
2009-12-24 4:42 ` David Miller
2009-12-24 1:28 ` [PATCH 05/37] kdb: core for kgdb back end Andi Kleen
2009-12-28 22:36 ` Jason Wessel
2009-12-28 23:37 ` Andi Kleen
2009-12-24 11:01 ` Peter Zijlstra
2009-12-24 11:16 ` Peter Zijlstra
2009-12-24 15:57 ` Jason Wessel
2009-12-26 21:34 ` Mike Frysinger
2009-12-24 11:55 ` Jason Wessel
2009-12-24 12:01 ` Peter Zijlstra
2009-12-24 11:04 ` Peter Zijlstra [this message]
2009-12-28 16:33 ` Jason Wessel
2009-12-28 16:55 ` Peter Zijlstra
2009-12-28 17:15 ` Jason Wessel
2009-12-24 0:56 ` [PATCH 0/37] kgdb, kdb and atomic kernel modesetting series Greg KH
2009-12-24 3:55 ` [Kgdb-bugreport] [PATCH 0/37] kgdb,kdb " Jason Wessel
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=1261652672.4937.189.camel@laptop \
--to=peterz@infradead.org \
--cc=jason.wessel@windriver.com \
--cc=kdb@oss.sgi.com \
--cc=kgdb-bugreport@lists.sourceforge.net \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mort@sgi.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