public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] oprofile updates for v2.6.37
@ 2010-10-15 13:47 Robert Richter
  2010-10-17  5:51 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Richter @ 2010-10-15 13:47 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net

Ingo,

please pull for tip/perf/core:

 git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git core

The main part here is the generalization of the perf event backend
(currently arm and sh archs). Patches are for v2.6.37.

I did already a merge with tip/perf/core, so it should merge without
conflicts.

There are still my oprofile x86 updates pending (mainly AMD IBS) that
require my APIC patches to be applied to tip. As soon as they are in
tip I will update the oprofile tree and send a further pull request.

Thanks,

-Robert

The following changes since commit 0fdf13606b67f830559abdaad15980c7f4f05ec4:

Anand Gadiyar (2):
      oprofile: include platform_device.h to fix build break
      oprofile: fix linker errors

Jiri Olsa (2):
      oprofile, x86: Using struct stack_frame for 64bit processes dump
      oprofile, x86: Adding backtrace dump for 32bit process in compat mode

Matt Fleming (7):
      perf: Add helper function to return number of counters
      perf: New helper function for pmu name
      oprofile: Make op_name_from_perf_id() global
      ARM: oprofile: Rename op_arm to oprofile_perf
      ARM: oprofile: Move non-ARM code into separate init/exit
      oprofile: Abstract the perf-events backend
      sh: oprofile: Use perf-events oprofile backend

Robert Richter (17):
      oprofile, arm: initialize perf_event pointers with NULL
      Merge branch 'oprofile/urgent' into oprofile/core
      oprofile, x86: Simplify init/exit functions
      oprofile, ARM: Use oprofile_arch_exit() to cleanup on failure
      oprofile, ARM: Rework op_create_counter()
      oprofile, ARM: Remove some goto statements
      oprofile: Remove duplicate code around __oprofilefs_create_file()
      Merge branch 'oprofile/urgent' (early part) into oprofile/perf
      oprofile, ARM: Release resources on failure
      Merge branch 'oprofile/core' (early part) into oprofile/perf
      oprofile, ARM: Remove some goto statements
      oprofile, ARM: Rework op_create_counter()
      oprofile, ARM: Use oprofile_arch_exit() to cleanup on failure
      Merge branch 'oprofile/perf' into oprofile/core
      oprofile: disable write access to oprofilefs while profiler is running
      Merge remote branch 'tip/perf/core' into oprofile/core
      oprofile: make !CONFIG_PM function stubs static inline

Will Deacon (2):
      oprofile: don't call arch exit code from init code on failure
      ARM: oprofile: fix and simplify init/exit functions

 arch/arm/kernel/perf_event.c      |    6 +
 arch/arm/oprofile/Makefile        |    4 +
 arch/arm/oprofile/common.c        |  311 +----------------------------------
 arch/sh/Kconfig                   |   13 ++
 arch/sh/kernel/perf_event.c       |   18 ++
 arch/sh/oprofile/Makefile         |    4 +
 arch/sh/oprofile/common.c         |  115 +++-----------
 arch/sh/oprofile/op_impl.h        |   33 ----
 arch/x86/oprofile/backtrace.c     |   70 +++++++--
 arch/x86/oprofile/nmi_int.c       |    9 +-
 drivers/oprofile/oprof.c          |   32 +---
 drivers/oprofile/oprof.h          |    2 +-
 drivers/oprofile/oprofile_files.c |    7 +-
 drivers/oprofile/oprofile_perf.c  |  328 +++++++++++++++++++++++++++++++++++++
 drivers/oprofile/oprofilefs.c     |   54 +++----
 include/linux/oprofile.h          |    7 +
 include/linux/perf_event.h        |    2 +
 kernel/perf_event.c               |    5 +
 18 files changed, 510 insertions(+), 510 deletions(-)
 delete mode 100644 arch/sh/oprofile/op_impl.h
 create mode 100644 drivers/oprofile/oprofile_perf.c

-- 
Advanced Micro Devices, Inc.
Operating System Research Center


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

* Re: [GIT PULL] oprofile updates for v2.6.37
  2010-10-15 13:47 [GIT PULL] oprofile updates for v2.6.37 Robert Richter
@ 2010-10-17  5:51 ` Ingo Molnar
  0 siblings, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2010-10-17  5:51 UTC (permalink / raw)
  To: Robert Richter
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net


* Robert Richter <robert.richter@amd.com> wrote:

> Ingo,
> 
> please pull for tip/perf/core:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git core
> 
> The main part here is the generalization of the perf event backend
> (currently arm and sh archs). Patches are for v2.6.37.
> 
> I did already a merge with tip/perf/core, so it should merge without
> conflicts.
> 
> There are still my oprofile x86 updates pending (mainly AMD IBS) that
> require my APIC patches to be applied to tip. As soon as they are in
> tip I will update the oprofile tree and send a further pull request.
> 
> Thanks,
> 
> -Robert
> 
> The following changes since commit 0fdf13606b67f830559abdaad15980c7f4f05ec4:
> 
> Anand Gadiyar (2):
>       oprofile: include platform_device.h to fix build break
>       oprofile: fix linker errors
> 
> Jiri Olsa (2):
>       oprofile, x86: Using struct stack_frame for 64bit processes dump
>       oprofile, x86: Adding backtrace dump for 32bit process in compat mode
> 
> Matt Fleming (7):
>       perf: Add helper function to return number of counters
>       perf: New helper function for pmu name
>       oprofile: Make op_name_from_perf_id() global
>       ARM: oprofile: Rename op_arm to oprofile_perf
>       ARM: oprofile: Move non-ARM code into separate init/exit
>       oprofile: Abstract the perf-events backend
>       sh: oprofile: Use perf-events oprofile backend
> 
> Robert Richter (17):
>       oprofile, arm: initialize perf_event pointers with NULL
>       Merge branch 'oprofile/urgent' into oprofile/core
>       oprofile, x86: Simplify init/exit functions
>       oprofile, ARM: Use oprofile_arch_exit() to cleanup on failure
>       oprofile, ARM: Rework op_create_counter()
>       oprofile, ARM: Remove some goto statements
>       oprofile: Remove duplicate code around __oprofilefs_create_file()
>       Merge branch 'oprofile/urgent' (early part) into oprofile/perf
>       oprofile, ARM: Release resources on failure
>       Merge branch 'oprofile/core' (early part) into oprofile/perf
>       oprofile, ARM: Remove some goto statements
>       oprofile, ARM: Rework op_create_counter()
>       oprofile, ARM: Use oprofile_arch_exit() to cleanup on failure
>       Merge branch 'oprofile/perf' into oprofile/core
>       oprofile: disable write access to oprofilefs while profiler is running
>       Merge remote branch 'tip/perf/core' into oprofile/core
>       oprofile: make !CONFIG_PM function stubs static inline
> 
> Will Deacon (2):
>       oprofile: don't call arch exit code from init code on failure
>       ARM: oprofile: fix and simplify init/exit functions
> 
>  arch/arm/kernel/perf_event.c      |    6 +
>  arch/arm/oprofile/Makefile        |    4 +
>  arch/arm/oprofile/common.c        |  311 +----------------------------------
>  arch/sh/Kconfig                   |   13 ++
>  arch/sh/kernel/perf_event.c       |   18 ++
>  arch/sh/oprofile/Makefile         |    4 +
>  arch/sh/oprofile/common.c         |  115 +++-----------
>  arch/sh/oprofile/op_impl.h        |   33 ----
>  arch/x86/oprofile/backtrace.c     |   70 +++++++--
>  arch/x86/oprofile/nmi_int.c       |    9 +-
>  drivers/oprofile/oprof.c          |   32 +---
>  drivers/oprofile/oprof.h          |    2 +-
>  drivers/oprofile/oprofile_files.c |    7 +-
>  drivers/oprofile/oprofile_perf.c  |  328 +++++++++++++++++++++++++++++++++++++
>  drivers/oprofile/oprofilefs.c     |   54 +++----
>  include/linux/oprofile.h          |    7 +
>  include/linux/perf_event.h        |    2 +
>  kernel/perf_event.c               |    5 +
>  18 files changed, 510 insertions(+), 510 deletions(-)
>  delete mode 100644 arch/sh/oprofile/op_impl.h
>  create mode 100644 drivers/oprofile/oprofile_perf.c

Pulled, thanks a lot Robert!

	Ingo

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

* [GIT PULL] oprofile updates for v2.6.37
@ 2010-10-25 15:46 Robert Richter
  2010-10-25 17:16 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Richter @ 2010-10-25 15:46 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net

Ingo,

please consider to pull AMD oprofile cpu updates for tip/perf/core and
v2.6.37:

 git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git x86

Thanks,

-Robert


The following changes since commit d4429f608abde89e8bc1e24b43cd503feb95c496:

  Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc (2010-10-21 21:19:54 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git for-next

Robert Richter (10):
      oprofile, x86: Add support for AMD family 12h
      oprofile, x86: Add support for AMD family 14h
      oprofile, x86: Check IBS capability bits 1 and 2
      oprofile, x86: Remove duplicate check for IBS_CAPS_OPCNT
      oprofile, x86: Introduce struct ibs_state
      oprofile, x86: Add support for IBS branch target address reporting
      oprofile, x86: Add support for IBS periodic op counter extension
      Merge commit 'v2.6.36' into oprofile/core
      Merge commit 'linux-2.6/master' (early part) into oprofile/core
      Merge branch 'oprofile/core' into oprofile/x86

 arch/x86/include/asm/msr-index.h  |    1 +
 arch/x86/include/asm/perf_event.h |   19 +++---
 arch/x86/oprofile/nmi_int.c       |    6 ++
 arch/x86/oprofile/op_model_amd.c  |  120 +++++++++++++++++++++++++-----------
 4 files changed, 100 insertions(+), 46 deletions(-)

-- 
Advanced Micro Devices, Inc.
Operating System Research Center


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

* Re: [GIT PULL] oprofile updates for v2.6.37
  2010-10-25 15:46 Robert Richter
@ 2010-10-25 17:16 ` Ingo Molnar
  0 siblings, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2010-10-25 17:16 UTC (permalink / raw)
  To: Robert Richter
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net


* Robert Richter <robert.richter@amd.com> wrote:

> Ingo,
> 
> please consider to pull AMD oprofile cpu updates for tip/perf/core and
> v2.6.37:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git x86
> 
> Thanks,
> 
> -Robert
> 
> 
> The following changes since commit d4429f608abde89e8bc1e24b43cd503feb95c496:
> 
>   Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc (2010-10-21 21:19:54 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile.git for-next
> 
> Robert Richter (10):
>       oprofile, x86: Add support for AMD family 12h
>       oprofile, x86: Add support for AMD family 14h
>       oprofile, x86: Check IBS capability bits 1 and 2
>       oprofile, x86: Remove duplicate check for IBS_CAPS_OPCNT
>       oprofile, x86: Introduce struct ibs_state
>       oprofile, x86: Add support for IBS branch target address reporting
>       oprofile, x86: Add support for IBS periodic op counter extension
>       Merge commit 'v2.6.36' into oprofile/core
>       Merge commit 'linux-2.6/master' (early part) into oprofile/core
>       Merge branch 'oprofile/core' into oprofile/x86
> 
>  arch/x86/include/asm/msr-index.h  |    1 +
>  arch/x86/include/asm/perf_event.h |   19 +++---
>  arch/x86/oprofile/nmi_int.c       |    6 ++
>  arch/x86/oprofile/op_model_amd.c  |  120 +++++++++++++++++++++++++-----------
>  4 files changed, 100 insertions(+), 46 deletions(-)

Pulled, thanks Robert!

	Ingo

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

end of thread, other threads:[~2010-10-25 17:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-15 13:47 [GIT PULL] oprofile updates for v2.6.37 Robert Richter
2010-10-17  5:51 ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2010-10-25 15:46 Robert Richter
2010-10-25 17:16 ` Ingo Molnar

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