public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] pending lockdep patches
@ 2009-02-14 16:36 Peter Zijlstra
  2009-02-14 22:31 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Zijlstra @ 2009-02-14 16:36 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: L-K

The following changes since commit 394c22392b6c3aa78825cf7cb0daed5797b64ee1:
  Ingo Molnar (1):                                                          
        Merge branch 'linus'                                                

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git lockdep-200902141725

Johannes Berg (1):
      timer: implement lockdep deadlock detection

Nick Piggin (1):
      lockdep: annotate reclaim context (__GFP_NOFS)

Peter Zijlstra (22):
      lockdep: sanitize bit names
      lockdep: sanitize reclaim bit names
      lockdep: lockdep_states.h
      lockdep: simplify mark_held_locks
      lockdep: simplify mark_lock()
      lockdep: move state bit definitions around
      lockdep: generate the state bit definitions
      lockdep: generate usage strings
      lockdep: split up mark_lock_irq()
      lockdep: simplify the mark_lock_irq() helpers
      lockdep: further simplify mark_lock_irq() helpers
      lockdep: simplify mark_lock_irq() helpers #3
      lockdep: merge the _READ mark_lock_irq() helpers
      lockdep: merge the !_READ mark_lock_irq() helpers
      lockdep: fully reduce mark_lock_irq()
      lockdep: remove macro usage from mark_held_locks()
      lockdep: add comments to mark_lock_irq()
      lockdep: simplify get_user_chars()
      lockdep: get_user_chars() redo
      lockdep: simplify check_prev_add_irq()
      lockdep: use stringify.h
      lockstat: warn about disabled lock debugging

 Documentation/lockdep-design.txt |   30 ++-
 include/linux/lockdep.h          |   50 +---
 include/linux/sched.h            |    1 +
 include/linux/timer.h            |   93 +++++++-
 kernel/lockdep.c                 |  507 +++++++++++++++++++-------------------
 kernel/lockdep_internals.h       |   45 ++++-
 kernel/lockdep_proc.c            |   22 +-
 kernel/lockdep_states.h          |    9 +
 kernel/timer.c                   |   68 +++++-
 mm/page_alloc.c                  |    5 +
 mm/slab.c                        |    4 +
 mm/slob.c                        |    2 +
 mm/slub.c                        |    1 +
 mm/vmscan.c                      |    3 +
 14 files changed, 501 insertions(+), 339 deletions(-)
 create mode 100644 kernel/lockdep_states.h



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

* Re: [GIT PULL] pending lockdep patches
  2009-02-14 16:36 [GIT PULL] pending lockdep patches Peter Zijlstra
@ 2009-02-14 22:31 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2009-02-14 22:31 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: L-K


* Peter Zijlstra <peterz@infradead.org> wrote:

> The following changes since commit 394c22392b6c3aa78825cf7cb0daed5797b64ee1:
>   Ingo Molnar (1):                                                          
>         Merge branch 'linus'                                                
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git lockdep-200902141725
> 
> Johannes Berg (1):
>       timer: implement lockdep deadlock detection
> 
> Nick Piggin (1):
>       lockdep: annotate reclaim context (__GFP_NOFS)
> 
> Peter Zijlstra (22):
>       lockdep: sanitize bit names
>       lockdep: sanitize reclaim bit names
>       lockdep: lockdep_states.h
>       lockdep: simplify mark_held_locks
>       lockdep: simplify mark_lock()
>       lockdep: move state bit definitions around
>       lockdep: generate the state bit definitions
>       lockdep: generate usage strings
>       lockdep: split up mark_lock_irq()
>       lockdep: simplify the mark_lock_irq() helpers
>       lockdep: further simplify mark_lock_irq() helpers
>       lockdep: simplify mark_lock_irq() helpers #3
>       lockdep: merge the _READ mark_lock_irq() helpers
>       lockdep: merge the !_READ mark_lock_irq() helpers
>       lockdep: fully reduce mark_lock_irq()
>       lockdep: remove macro usage from mark_held_locks()
>       lockdep: add comments to mark_lock_irq()
>       lockdep: simplify get_user_chars()
>       lockdep: get_user_chars() redo
>       lockdep: simplify check_prev_add_irq()
>       lockdep: use stringify.h
>       lockstat: warn about disabled lock debugging
> 
>  Documentation/lockdep-design.txt |   30 ++-
>  include/linux/lockdep.h          |   50 +---
>  include/linux/sched.h            |    1 +
>  include/linux/timer.h            |   93 +++++++-
>  kernel/lockdep.c                 |  507 +++++++++++++++++++-------------------
>  kernel/lockdep_internals.h       |   45 ++++-
>  kernel/lockdep_proc.c            |   22 +-
>  kernel/lockdep_states.h          |    9 +
>  kernel/timer.c                   |   68 +++++-
>  mm/page_alloc.c                  |    5 +
>  mm/slab.c                        |    4 +
>  mm/slob.c                        |    2 +
>  mm/slub.c                        |    1 +
>  mm/vmscan.c                      |    3 +
>  14 files changed, 501 insertions(+), 339 deletions(-)
>  create mode 100644 kernel/lockdep_states.h

Pulled into tip:core/locking, thanks a lot Peter!

	Ingo

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

end of thread, other threads:[~2009-02-14 22:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-14 16:36 [GIT PULL] pending lockdep patches Peter Zijlstra
2009-02-14 22:31 ` Ingo Molnar

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