All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] liblockdep fixes for v4.12
@ 2017-05-25 12:58 Levin, Alexander (Sasha Levin)
  2017-05-25 12:58 ` [PATCH 01/21] liblockdep: Fix undefined symbol prandom_u32 Levin, Alexander (Sasha Levin)
                   ` (21 more replies)
  0 siblings, 22 replies; 49+ messages in thread
From: Levin, Alexander (Sasha Levin) @ 2017-05-25 12:58 UTC (permalink / raw)
  To: mingo; +Cc: linux-kernel, ben, a.p.zijlstra, tglx

The following changes since commit 56fff1bb0f31358bf81a3c64a8dcd6da0dc44263:

  Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux (2017-05-23 09:57:39 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux.git liblockdep-fixes

for you to fetch changes up to 9e6d473e27d81ed1d0e3849d2ef9f35a94a64cd5:

  tools: liblockdep: hide liblockdep output from test results (2017-05-25 08:27:54 -0400)

----------------------------------------------------------------
Alexander Sverdlin (2):
      tools: add install make target for liblockdep
      tools: liblockdep: Don't mix fd-based and stream IO

Ben Hutchings (10):
      liblockdep: Fix undefined symbol prandom_u32
      liblockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain::depth
      liblockdep: Define the ARRAY_SIZE() macro
      liblockdep: Enable -Wall by default
      liblockdep: Fix 'unused value' warnings
      liblockdep: Fix 'set but not used' warnings
      liblockdep: Fix 'defined but not used' warning for init_utsname()
      tools: liblockdep: Fix object file paths used in an out-of-tree build
      tools: liblockdep: Remove double-quotes from soname
      tools: liblockdep: Use LDFLAGS

Sasha Levin (8):
      MAINTAINERS: update email for Sasha Levin
      tools: liblockdep: fix compilation for 4.11
      tools include: add empty include/linux/sched/mm.h
      tools: liblockdep: include err.h
      tools: liblockdep: add empty __is_[module,kernel]_percpu_address
      tools include: add IS_ERR_OR_NULL to err.h
      tools: liblockdep: add dummy current_gfp_context()
      tools: liblockdep: hide liblockdep output from test results

Vishal Thanki (1):
      liblockdep: Remove -lpthread compiler option

 MAINTAINERS                                    |   2 +-
 tools/Makefile                                 |   8 +++--
 tools/include/linux/bitops.h                   |  10 ++++++
 tools/include/linux/err.h                      |   5 +++
 tools/include/linux/jhash.h                    | 175 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 tools/include/linux/sched/clock.h              |   0
 tools/include/linux/sched/mm.h                 |   0
 tools/include/linux/sched/task.h               |   0
 tools/include/linux/unaligned/packed_struct.h  |  46 +++++++++++++++++++++++++++
 tools/lib/lockdep/Makefile                     |   9 +++---
 tools/lib/lockdep/lockdep.c                    |  17 ++++++++++
 tools/lib/lockdep/preload.c                    |   3 +-
 tools/lib/lockdep/run_tests.sh                 |   8 ++---
 tools/lib/lockdep/uinclude/linux/bitops.h      |   3 --
 tools/lib/lockdep/uinclude/linux/compiler.h    |   2 ++
 tools/lib/lockdep/uinclude/linux/debug_locks.h |   2 +-
 tools/lib/lockdep/uinclude/linux/irqflags.h    |   8 ++---
 tools/lib/lockdep/uinclude/linux/kallsyms.h    |   3 +-
 tools/lib/lockdep/uinclude/linux/kernel.h      |  20 ++++++++++--
 tools/lib/lockdep/uinclude/linux/lockdep.h     |  26 ++++++++--------
 tools/lib/lockdep/uinclude/linux/module.h      |   5 +++
 tools/lib/lockdep/uinclude/linux/rcu.h         |   2 ++
 22 files changed, 317 insertions(+), 37 deletions(-)
 create mode 100644 tools/include/linux/jhash.h
 create mode 100644 tools/include/linux/sched/clock.h
 create mode 100644 tools/include/linux/sched/mm.h
 create mode 100644 tools/include/linux/sched/task.h
 create mode 100644 tools/include/linux/unaligned/packed_struct.h
 delete mode 100644 tools/lib/lockdep/uinclude/linux/bitops.h

Alexander Sverdlin (2):
  tools: add install make target for liblockdep
  tools: liblockdep: Don't mix fd-based and stream IO

Ben Hutchings (10):
  liblockdep: Fix undefined symbol prandom_u32
  liblockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing
    lock_chain::depth
  liblockdep: Define the ARRAY_SIZE() macro
  liblockdep: Enable -Wall by default
  liblockdep: Fix 'unused value' warnings
  liblockdep: Fix 'set but not used' warnings
  liblockdep: Fix 'defined but not used' warning for init_utsname()
  tools: liblockdep: Fix object file paths used in an out-of-tree build
  tools: liblockdep: Remove double-quotes from soname
  tools: liblockdep: Use LDFLAGS

Sasha Levin (8):
  MAINTAINERS: update email for Sasha Levin
  tools: liblockdep: fix compilation for 4.11
  tools include: add empty include/linux/sched/mm.h
  tools: liblockdep: include err.h
  tools: liblockdep: add empty __is_[module,kernel]_percpu_address
  tools include: add IS_ERR_OR_NULL to err.h
  tools: liblockdep: add dummy current_gfp_context()
  tools: liblockdep: hide liblockdep output from test results

Vishal Thanki (1):
  liblockdep: Remove -lpthread compiler option

 MAINTAINERS                                    |   2 +-
 tools/Makefile                                 |   8 +-
 tools/include/linux/bitops.h                   |  10 ++
 tools/include/linux/err.h                      |   5 +
 tools/include/linux/jhash.h                    | 175 +++++++++++++++++++++++++
 tools/include/linux/sched/clock.h              |   0
 tools/include/linux/sched/mm.h                 |   0
 tools/include/linux/sched/task.h               |   0
 tools/include/linux/unaligned/packed_struct.h  |  46 +++++++
 tools/lib/lockdep/Makefile                     |   9 +-
 tools/lib/lockdep/lockdep.c                    |  17 +++
 tools/lib/lockdep/preload.c                    |   3 +-
 tools/lib/lockdep/run_tests.sh                 |   8 +-
 tools/lib/lockdep/uinclude/linux/bitops.h      |   3 -
 tools/lib/lockdep/uinclude/linux/compiler.h    |   2 +
 tools/lib/lockdep/uinclude/linux/debug_locks.h |   2 +-
 tools/lib/lockdep/uinclude/linux/irqflags.h    |   8 +-
 tools/lib/lockdep/uinclude/linux/kallsyms.h    |   3 +-
 tools/lib/lockdep/uinclude/linux/kernel.h      |  20 ++-
 tools/lib/lockdep/uinclude/linux/lockdep.h     |  26 ++--
 tools/lib/lockdep/uinclude/linux/module.h      |   5 +
 tools/lib/lockdep/uinclude/linux/rcu.h         |   2 +
 22 files changed, 317 insertions(+), 37 deletions(-)
 create mode 100644 tools/include/linux/jhash.h
 create mode 100644 tools/include/linux/sched/clock.h
 create mode 100644 tools/include/linux/sched/mm.h
 create mode 100644 tools/include/linux/sched/task.h
 create mode 100644 tools/include/linux/unaligned/packed_struct.h
 delete mode 100644 tools/lib/lockdep/uinclude/linux/bitops.h

-- 
2.11.0

^ permalink raw reply	[flat|nested] 49+ messages in thread
* [PATCH 00/21] liblockdep fixes for v4.12
@ 2017-05-25 12:51 Levin, Alexander (Sasha Levin)
  2017-05-25 12:51 ` [PATCH 01/21] liblockdep: Fix undefined symbol prandom_u32 Levin, Alexander (Sasha Levin)
  0 siblings, 1 reply; 49+ messages in thread
From: Levin, Alexander (Sasha Levin) @ 2017-05-25 12:51 UTC (permalink / raw)
  To: mingo
  Cc: linux-kernel, ben, a.p.zijlstra, tglx, Levin, Alexander (Sasha Levin)

The following changes since commit 56fff1bb0f31358bf81a3c64a8dcd6da0dc44263:

  Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux (2017-05-23 09:57:39 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux.git liblockdep-fixes

for you to fetch changes up to 9e6d473e27d81ed1d0e3849d2ef9f35a94a64cd5:

  tools: liblockdep: hide liblockdep output from test results (2017-05-25 08:27:54 -0400)

----------------------------------------------------------------
Alexander Sverdlin (2):
      tools: add install make target for liblockdep
      tools: liblockdep: Don't mix fd-based and stream IO

Ben Hutchings (10):
      liblockdep: Fix undefined symbol prandom_u32
      liblockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain::depth
      liblockdep: Define the ARRAY_SIZE() macro
      liblockdep: Enable -Wall by default
      liblockdep: Fix 'unused value' warnings
      liblockdep: Fix 'set but not used' warnings
      liblockdep: Fix 'defined but not used' warning for init_utsname()
      tools: liblockdep: Fix object file paths used in an out-of-tree build
      tools: liblockdep: Remove double-quotes from soname
      tools: liblockdep: Use LDFLAGS

Sasha Levin (8):
      MAINTAINERS: update email for Sasha Levin
      tools: liblockdep: fix compilation for 4.11
      tools include: add empty include/linux/sched/mm.h
      tools: liblockdep: include err.h
      tools: liblockdep: add empty __is_[module,kernel]_percpu_address
      tools include: add IS_ERR_OR_NULL to err.h
      tools: liblockdep: add dummy current_gfp_context()
      tools: liblockdep: hide liblockdep output from test results

Vishal Thanki (1):
      liblockdep: Remove -lpthread compiler option

 MAINTAINERS                                    |   2 +-
 tools/Makefile                                 |   8 +++--
 tools/include/linux/bitops.h                   |  10 ++++++
 tools/include/linux/err.h                      |   5 +++
 tools/include/linux/jhash.h                    | 175 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 tools/include/linux/sched/clock.h              |   0
 tools/include/linux/sched/mm.h                 |   0
 tools/include/linux/sched/task.h               |   0
 tools/include/linux/unaligned/packed_struct.h  |  46 +++++++++++++++++++++++++++
 tools/lib/lockdep/Makefile                     |   9 +++---
 tools/lib/lockdep/lockdep.c                    |  17 ++++++++++
 tools/lib/lockdep/preload.c                    |   3 +-
 tools/lib/lockdep/run_tests.sh                 |   8 ++---
 tools/lib/lockdep/uinclude/linux/bitops.h      |   3 --
 tools/lib/lockdep/uinclude/linux/compiler.h    |   2 ++
 tools/lib/lockdep/uinclude/linux/debug_locks.h |   2 +-
 tools/lib/lockdep/uinclude/linux/irqflags.h    |   8 ++---
 tools/lib/lockdep/uinclude/linux/kallsyms.h    |   3 +-
 tools/lib/lockdep/uinclude/linux/kernel.h      |  20 ++++++++++--
 tools/lib/lockdep/uinclude/linux/lockdep.h     |  26 ++++++++--------
 tools/lib/lockdep/uinclude/linux/module.h      |   5 +++
 tools/lib/lockdep/uinclude/linux/rcu.h         |   2 ++
 22 files changed, 317 insertions(+), 37 deletions(-)
 create mode 100644 tools/include/linux/jhash.h
 create mode 100644 tools/include/linux/sched/clock.h
 create mode 100644 tools/include/linux/sched/mm.h
 create mode 100644 tools/include/linux/sched/task.h
 create mode 100644 tools/include/linux/unaligned/packed_struct.h
 delete mode 100644 tools/lib/lockdep/uinclude/linux/bitops.h

Alexander Sverdlin (2):
  tools: add install make target for liblockdep
  tools: liblockdep: Don't mix fd-based and stream IO

Ben Hutchings (10):
  liblockdep: Fix undefined symbol prandom_u32
  liblockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing
    lock_chain::depth
  liblockdep: Define the ARRAY_SIZE() macro
  liblockdep: Enable -Wall by default
  liblockdep: Fix 'unused value' warnings
  liblockdep: Fix 'set but not used' warnings
  liblockdep: Fix 'defined but not used' warning for init_utsname()
  tools: liblockdep: Fix object file paths used in an out-of-tree build
  tools: liblockdep: Remove double-quotes from soname
  tools: liblockdep: Use LDFLAGS

Sasha Levin (8):
  MAINTAINERS: update email for Sasha Levin
  tools: liblockdep: fix compilation for 4.11
  tools include: add empty include/linux/sched/mm.h
  tools: liblockdep: include err.h
  tools: liblockdep: add empty __is_[module,kernel]_percpu_address
  tools include: add IS_ERR_OR_NULL to err.h
  tools: liblockdep: add dummy current_gfp_context()
  tools: liblockdep: hide liblockdep output from test results

Vishal Thanki (1):
  liblockdep: Remove -lpthread compiler option

 MAINTAINERS                                    |   2 +-
 tools/Makefile                                 |   8 +-
 tools/include/linux/bitops.h                   |  10 ++
 tools/include/linux/err.h                      |   5 +
 tools/include/linux/jhash.h                    | 175 +++++++++++++++++++++++++
 tools/include/linux/sched/clock.h              |   0
 tools/include/linux/sched/mm.h                 |   0
 tools/include/linux/sched/task.h               |   0
 tools/include/linux/unaligned/packed_struct.h  |  46 +++++++
 tools/lib/lockdep/Makefile                     |   9 +-
 tools/lib/lockdep/lockdep.c                    |  17 +++
 tools/lib/lockdep/preload.c                    |   3 +-
 tools/lib/lockdep/run_tests.sh                 |   8 +-
 tools/lib/lockdep/uinclude/linux/bitops.h      |   3 -
 tools/lib/lockdep/uinclude/linux/compiler.h    |   2 +
 tools/lib/lockdep/uinclude/linux/debug_locks.h |   2 +-
 tools/lib/lockdep/uinclude/linux/irqflags.h    |   8 +-
 tools/lib/lockdep/uinclude/linux/kallsyms.h    |   3 +-
 tools/lib/lockdep/uinclude/linux/kernel.h      |  20 ++-
 tools/lib/lockdep/uinclude/linux/lockdep.h     |  26 ++--
 tools/lib/lockdep/uinclude/linux/module.h      |   5 +
 tools/lib/lockdep/uinclude/linux/rcu.h         |   2 +
 22 files changed, 317 insertions(+), 37 deletions(-)
 create mode 100644 tools/include/linux/jhash.h
 create mode 100644 tools/include/linux/sched/clock.h
 create mode 100644 tools/include/linux/sched/mm.h
 create mode 100644 tools/include/linux/sched/task.h
 create mode 100644 tools/include/linux/unaligned/packed_struct.h
 delete mode 100644 tools/lib/lockdep/uinclude/linux/bitops.h

-- 
2.11.0

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

end of thread, other threads:[~2017-06-05  9:16 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-25 12:58 [PATCH 00/21] liblockdep fixes for v4.12 Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 01/21] liblockdep: Fix undefined symbol prandom_u32 Levin, Alexander (Sasha Levin)
2017-06-05  9:01   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 02/21] liblockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain::depth Levin, Alexander (Sasha Levin)
2017-06-05  9:01   ` [tip:locking/core] tools/lib/lockdep: Reduce MAX_LOCK_DEPTH to avoid overflowing lock_chain/: Depth tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 03/21] liblockdep: Define the ARRAY_SIZE() macro Levin, Alexander (Sasha Levin)
2017-06-05  9:02   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 04/21] liblockdep: Enable -Wall by default Levin, Alexander (Sasha Levin)
2017-06-05  9:02   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 05/21] liblockdep: Fix 'unused value' warnings Levin, Alexander (Sasha Levin)
2017-06-05  9:03   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 06/21] liblockdep: Fix 'set but not used' warnings Levin, Alexander (Sasha Levin)
2017-06-05  9:04   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 07/21] liblockdep: Fix 'defined but not used' warning for init_utsname() Levin, Alexander (Sasha Levin)
2017-06-05  9:04   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 08/21] liblockdep: Remove -lpthread compiler option Levin, Alexander (Sasha Levin)
2017-06-05  9:05   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Vishal Thanki
2017-05-25 12:58 ` [PATCH 09/21] MAINTAINERS: update email for Sasha Levin Levin, Alexander (Sasha Levin)
2017-06-05  9:05   ` [tip:locking/core] MAINTAINERS: Update " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 10/21] tools: add install make target for liblockdep Levin, Alexander (Sasha Levin)
2017-06-05  9:06   ` [tip:locking/core] tools: Add " tip-bot for Alexander Sverdlin
2017-05-25 12:58 ` [PATCH 11/21] tools: liblockdep: Don't mix fd-based and stream IO Levin, Alexander (Sasha Levin)
2017-06-05  9:06   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Alexander Sverdlin
2017-05-25 12:58 ` [PATCH 12/21] tools: liblockdep: fix compilation for 4.11 Levin, Alexander (Sasha Levin)
2017-06-05  9:07   ` [tip:locking/core] tools/lib/lockdep: Fix " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 13/21] tools: liblockdep: Fix object file paths used in an out-of-tree build Levin, Alexander (Sasha Levin)
2017-06-05  9:07   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 14/21] tools: liblockdep: Remove double-quotes from soname Levin, Alexander (Sasha Levin)
2017-06-05  9:08   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 15/21] tools: liblockdep: Use LDFLAGS Levin, Alexander (Sasha Levin)
2017-06-05  9:09   ` [tip:locking/core] tools/lib/lockdep: " tip-bot for Ben Hutchings
2017-05-25 12:58 ` [PATCH 16/21] tools include: add empty include/linux/sched/mm.h Levin, Alexander (Sasha Levin)
2017-06-05  9:09   ` [tip:locking/core] tools/include: Add (mostly) " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 17/21] tools: liblockdep: include err.h Levin, Alexander (Sasha Levin)
2017-06-05  9:10   ` [tip:locking/core] tools/lib/lockdep: Include err.h tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 18/21] tools: liblockdep: add empty __is_[module,kernel]_percpu_address Levin, Alexander (Sasha Levin)
2017-06-05  9:10   ` [tip:locking/core] tools/lib/lockdep: Add " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 19/21] tools include: add IS_ERR_OR_NULL to err.h Levin, Alexander (Sasha Levin)
2017-06-05  9:11   ` [tip:locking/core] tools/include: Add " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 20/21] tools: liblockdep: add dummy current_gfp_context() Levin, Alexander (Sasha Levin)
2017-06-05  9:11   ` [tip:locking/core] tools/lib/lockdep: Add " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-25 12:58 ` [PATCH 21/21] tools: liblockdep: hide liblockdep output from test results Levin, Alexander (Sasha Levin)
2017-06-05  9:12   ` [tip:locking/core] tools/lib/lockdep: Hide " tip-bot for Levin, Alexander (Sasha Levin)
2017-05-26  6:52 ` [PATCH 00/21] liblockdep fixes for v4.12 Ingo Molnar
2017-05-26 10:57   ` Levin, Alexander (Sasha Levin)
2017-05-26 11:21     ` Ingo Molnar
2017-05-26 11:41       ` Levin, Alexander (Sasha Levin)
2017-05-28  9:11         ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2017-05-25 12:51 Levin, Alexander (Sasha Levin)
2017-05-25 12:51 ` [PATCH 01/21] liblockdep: Fix undefined symbol prandom_u32 Levin, Alexander (Sasha Levin)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.