public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/15] kgdb,kdb: proposed merge set for 2.6.36
@ 2010-07-30 19:17 Jason Wessel
  2010-07-30 19:17 ` [PATCH 01/15] kgdb: remove custom hex_to_bin()implementation Jason Wessel
                   ` (14 more replies)
  0 siblings, 15 replies; 19+ messages in thread
From: Jason Wessel @ 2010-07-30 19:17 UTC (permalink / raw)
  To: linux-kernel; +Cc: kgdb-bugreport, mingo

These are the patches for kgdb we have so far which have passed
regression testing during the 2.6.35 cycle. 

The key new features here are:

  * ftdump command for kdb
    - dumps the ftrace buffer for all cpus or an indivdual cpu
  * Individual register read / read in kdb (x86, mips, arm)
  * Generic plumbing for gdb serial register packets 'p' and 'P'
    - implmentations for x86, mips and arm
  * A new console poll driver for the sunhv serial console (sparc)
  * ARM kgdb makes use of die notifiers
  * Optimize gdbserial response packets contaning "thread:"

The remainders of the patches contain miscelaenous cleanups.
optimation for the gdb serial packets which contain the "thread:"

Jason.

---
The following changes since commit a2dccdb2055abeb8a7ce8e45e5f83de9c980a00c:
  Linus Torvalds (1):
        Merge branch 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/linux-2.6-kgdb.git kgdb-next

Andi Kleen (1):
      KGDB: Remove set but unused newPC

Andy Shevchenko (1):
      kgdb: remove custom hex_to_bin()implementation

Jason Wessel (12):
      gdbstub: Optimize kgdb's "thread:" response for the gdb serial protocol
      kgdb,kdb: individual register set and and get API
      x86,kgdb: Individual register get/set for x86
      mips,kgdb: Individual register get/set for mips
      arm,kgdb: Individual register get/set for arm
      gdbstub,x86: Implement gdbserial 'p' and 'P' packets
      gdbstub: do not directly use dbg_reg_def[] in gdb_cmd_reg_set()
      arm,kgdb: Add ability to trap into debugger on notify_die
      ftrace,kdb: Extend kdb to be able to dump the ftrace buffer
      ftrace,kdb: Allow dumping a specific cpu's buffer with ftdump
      sunhv,kgdboc: Add sunhv console poll hooks for kgdboc
      mm,kdb,kgdb: Add a debug reference for the kdb kmap usage

Michal Simek (1):
      powerpc: Replace hardcoded offset by BREAK_INSTR_SIZE

 arch/arm/include/asm/kgdb.h  |    6 +-
 arch/arm/kernel/kgdb.c       |  124 +++++++++++++++++---------
 arch/mips/include/asm/kgdb.h |   19 ++--
 arch/mips/kernel/kgdb.c      |  203 ++++++++++++++++++++++++++++++------------
 arch/powerpc/kernel/kgdb.c   |    2 +-
 arch/x86/include/asm/kgdb.h  |   20 +++--
 arch/x86/kernel/kgdb.c       |  171 +++++++++++++++++------------------
 drivers/serial/sunhv.c       |   51 +++++++++++
 include/linux/kgdb.h         |   15 +++-
 kernel/debug/gdbstub.c       |  189 ++++++++++++++++++++++++++++-----------
 kernel/debug/kdb/kdb_main.c  |  132 +++++++++++++++++++++++++---
 kernel/trace/Makefile        |    3 +
 kernel/trace/trace.c         |   43 +++++-----
 kernel/trace/trace.h         |   19 ++++
 kernel/trace/trace_kdb.c     |  136 ++++++++++++++++++++++++++++
 mm/highmem.c                 |    7 ++
 16 files changed, 840 insertions(+), 300 deletions(-)
 create mode 100644 kernel/trace/trace_kdb.c

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2010-08-02 13:30 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-30 19:17 [PATCH 0/15] kgdb,kdb: proposed merge set for 2.6.36 Jason Wessel
2010-07-30 19:17 ` [PATCH 01/15] kgdb: remove custom hex_to_bin()implementation Jason Wessel
2010-07-30 19:17 ` [PATCH 02/15] gdbstub: Optimize kgdb's "thread:" response for the gdb serial protocol Jason Wessel
2010-07-30 19:17 ` [PATCH 03/15] kgdb,kdb: individual register set and and get API Jason Wessel
2010-07-30 19:17 ` [PATCH 04/15] x86,kgdb: Individual register get/set for x86 Jason Wessel
2010-07-30 23:29   ` H. Peter Anvin
2010-07-30 19:17 ` [PATCH 05/15] mips,kgdb: Individual register get/set for mips Jason Wessel
2010-08-02 13:30   ` Ralf Baechle
2010-07-30 19:17 ` [PATCH 06/15] arm,kgdb: Individual register get/set for arm Jason Wessel
2010-07-30 19:17 ` [PATCH 07/15] gdbstub,x86: Implement gdbserial 'p' and 'P' packets Jason Wessel
2010-07-30 19:17 ` [PATCH 08/15] gdbstub: do not directly use dbg_reg_def[] in gdb_cmd_reg_set() Jason Wessel
2010-07-30 19:17 ` [PATCH 09/15] arm,kgdb: Add ability to trap into debugger on notify_die Jason Wessel
2010-07-30 19:17 ` [PATCH 10/15] powerpc: Replace hardcoded offset by BREAK_INSTR_SIZE Jason Wessel
2010-07-30 23:44   ` Benjamin Herrenschmidt
2010-07-30 19:17 ` [PATCH 11/15] ftrace,kdb: Extend kdb to be able to dump the ftrace buffer Jason Wessel
2010-07-30 19:17 ` [PATCH 12/15] ftrace,kdb: Allow dumping a specific cpu's buffer with ftdump Jason Wessel
2010-07-30 19:17 ` [PATCH 13/15] KGDB: Remove set but unused newPC Jason Wessel
2010-07-30 19:17 ` [PATCH 14/15] sunhv,kgdboc: Add sunhv console poll hooks for kgdboc Jason Wessel
2010-07-30 19:17 ` [PATCH 15/15] mm,kdb,kgdb: Add a debug reference for the kdb kmap usage Jason Wessel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox