Re: kgdb for mainline kernel: core-lite [patch 1/3]

From: Amit S. Kale
Date: Mon Mar 08 2004 - 07:02:57 EST


On Monday 08 Mar 2004 5:24 pm, Andrew Morton wrote:
> "Amit S. Kale" <amitkale@xxxxxxxxxxxxx> wrote:
> > Here is the intrusive piece of code that helps get thread state
> > correctly. Any ideas on cleaning it?
>
> I think George's stub has diverged rather a lot from yours. Much more than
> I was aware.

Yes. It has.
At this point of time no one knows precisely where all they differ and
how/whether they could be merged.

The threads code in my version saves all registers during a context switch.
This provides two benefits:
1. GDB doesn't lose track of registers when going up a stack trace starting
with switch_to.
2. If a thread calls schedule, the thread backtrace starts from caller of
schedule rather than schedule itself. So info threads command shows a more
meaningful output.

-Amit

>
> > --- linux-2.6.3-kgdb.orig/include/linux/sched.h 2004-02-24
> > 10:44:47.000000000 +0530
> > +++ linux-2.6.3-kgdb/include/linux/sched.h 2004-03-04 18:42:56.324188184
> > +0530 @@ -173,7 +173,9 @@
> >
> > #define MAX_SCHEDULE_TIMEOUT LONG_MAX
> > extern signed long FASTCALL(schedule_timeout(signed long timeout));
> > -asmlinkage void schedule(void);
> > +asmlinkage void do_schedule(void);
> > +asmlinkage void kern_schedule(void);
> > +asmlinkage void kern_do_schedule(struct pt_regs);
>
> The stub in -mm has only a single change to sched.c:
>
> diff -puN kernel/sched.c~kgdb-ga kernel/sched.c
> --- 25/kernel/sched.c~kgdb-ga 2004-03-07 01:57:48.000000000 -0800
> +++ 25-akpm/kernel/sched.c 2004-03-07 01:57:48.000000000 -0800
> @@ -2015,6 +2015,13 @@ out_unlock:
>
> EXPORT_SYMBOL(set_user_nice);
>
> +#if defined( CONFIG_KGDB)
> +struct task_struct * kgdb_get_idle(int this_cpu)
> +{
> + return cpu_rq(this_cpu)->idle;
> +}
> +#endif
> +
> #ifndef __alpha__
>
> /*

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/