public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] oprofile updates for v3.2
@ 2011-09-29 15:04 Robert Richter
  2011-09-29 15:34 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Richter @ 2011-09-29 15:04 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net

Ingo,

please pull oprofile updates for v3.2 (tip/perf/core):

  git://amd64.org/linux/rric.git core

Thanks,

-Robert


The following changes since commit d6eed550a9d08fbd1fce32e517e8c49afa6edbf7:

  x86: Perf_event_amd.c needs <asm/apicdef.h> (2011-09-27 19:55:09 +0200)

are available in the git repository at:
  git://amd64.org/linux/rric.git core

Maarten Lankhorst (1):
      oprofile, x86: Convert memory allocation to static array

Robert Richter (1):
      oprofile, x86: Fix overflow and warning (commit 1d12d35)

 arch/x86/oprofile/op_model_ppro.c |   27 ++-------------------------
 1 files changed, 2 insertions(+), 25 deletions(-)

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


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

* Re: [GIT PULL] oprofile updates for v3.2
  2011-09-29 15:04 Robert Richter
@ 2011-09-29 15:34 ` Ingo Molnar
  0 siblings, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2011-09-29 15:34 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 oprofile updates for v3.2 (tip/perf/core):
> 
>   git://amd64.org/linux/rric.git core
> 
> Thanks,
> 
> -Robert
> 
> 
> The following changes since commit d6eed550a9d08fbd1fce32e517e8c49afa6edbf7:
> 
>   x86: Perf_event_amd.c needs <asm/apicdef.h> (2011-09-27 19:55:09 +0200)
> 
> are available in the git repository at:
>   git://amd64.org/linux/rric.git core
> 
> Maarten Lankhorst (1):
>       oprofile, x86: Convert memory allocation to static array
> 
> Robert Richter (1):
>       oprofile, x86: Fix overflow and warning (commit 1d12d35)
> 
>  arch/x86/oprofile/op_model_ppro.c |   27 ++-------------------------
>  1 files changed, 2 insertions(+), 25 deletions(-)

Pulled, thanks Robert!

	Ingo

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

* [GIT PULL] oprofile updates for v3.2
@ 2011-11-08 16:05 Robert Richter
  2011-11-15 10:06 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Richter @ 2011-11-08 16:05 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net

[-- Attachment #1: Type: text/plain, Size: 2352 bytes --]

Ingo,

please pull oprofile fixes for v3.2 (tip/perf/urgent):

  git://amd64.org/linux/rric.git urgent

and oprofile updates for v3.3 (tip/perf/core):

  git://amd64.org/linux/rric.git core

The urgent branch is a subset of core and intended for v3.2. It only
contains patches marked also for stable.

The merge is to resolve conflicts with perf/core.

See also here:

 http://www.amd64.org/gitweb/?p=linux/rric.git;a=summary

Commit ids:

 de346b6 Merge branch 'perf/core' into oprofile/master
 dcfce4a oprofile, x86: Reimplement nmi timer mode using perf event
 75c43a2 oprofile: Remove exit function for timer mode
 159a80b oprofile, x86: Add kernel parameter oprofile.cpu_type=timer
 97f7f81 oprofile, x86: Fix crash when unloading module (nmi timer mode)
 87121ca oprofile: Fix crash when unloading module (hr timer mode)

Thanks,

-Robert



The following changes since commit 886605636e656afeb6fad5e83dbf36967f65cfa5:

  perf report: Add progress bar when processing time ordered events (2011-11-02 12:28:35 -0200)

are available in the git repository at:
  git://amd64.org/linux/rric core

Robert Richter (6):
      oprofile: Fix crash when unloading module (hr timer mode)
      oprofile, x86: Fix crash when unloading module (nmi timer mode)
      oprofile, x86: Add kernel parameter oprofile.cpu_type=timer
      oprofile: Remove exit function for timer mode
      oprofile, x86: Reimplement nmi timer mode using perf event
      Merge branch 'perf/core' into oprofile/master

 Documentation/kernel-parameters.txt |    3 +
 arch/Kconfig                        |    4 +
 arch/x86/oprofile/Makefile          |    3 +-
 arch/x86/oprofile/init.c            |   25 ++----
 arch/x86/oprofile/nmi_int.c         |   27 ++++-
 arch/x86/oprofile/nmi_timer_int.c   |   50 ----------
 drivers/oprofile/nmi_timer_int.c    |  173 +++++++++++++++++++++++++++++++++++
 drivers/oprofile/oprof.c            |   21 ++++-
 drivers/oprofile/oprof.h            |    9 ++
 drivers/oprofile/timer_int.c        |   29 +++---
 kernel/events/core.c                |    2 +
 11 files changed, 252 insertions(+), 94 deletions(-)
 delete mode 100644 arch/x86/oprofile/nmi_timer_int.c
 create mode 100644 drivers/oprofile/nmi_timer_int.c

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

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* Re: [GIT PULL] oprofile updates for v3.2
  2011-11-08 16:05 [GIT PULL] oprofile updates for v3.2 Robert Richter
@ 2011-11-15 10:06 ` Ingo Molnar
  0 siblings, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2011-11-15 10:06 UTC (permalink / raw)
  To: Robert Richter
  Cc: linux-kernel@vger.kernel.org, oprofile-list@lists.sourceforge.net,
	Peter Zijlstra, Arnaldo Carvalho de Melo, Thomas Gleixner


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

> Ingo,
> 
> please pull oprofile fixes for v3.2 (tip/perf/urgent):
> 
>   git://amd64.org/linux/rric.git urgent
> 
> and oprofile updates for v3.3 (tip/perf/core):
> 
>   git://amd64.org/linux/rric.git core
> 
> The urgent branch is a subset of core and intended for v3.2. It only
> contains patches marked also for stable.
> 
> The merge is to resolve conflicts with perf/core.
> 
> See also here:
> 
>  http://www.amd64.org/gitweb/?p=linux/rric.git;a=summary
> 
> Commit ids:
> 
>  de346b6 Merge branch 'perf/core' into oprofile/master
>  dcfce4a oprofile, x86: Reimplement nmi timer mode using perf event
>  75c43a2 oprofile: Remove exit function for timer mode
>  159a80b oprofile, x86: Add kernel parameter oprofile.cpu_type=timer
>  97f7f81 oprofile, x86: Fix crash when unloading module (nmi timer mode)
>  87121ca oprofile: Fix crash when unloading module (hr timer mode)
> 
> Thanks,
> 
> -Robert
> 
> 
> 
> The following changes since commit 886605636e656afeb6fad5e83dbf36967f65cfa5:
> 
>   perf report: Add progress bar when processing time ordered events (2011-11-02 12:28:35 -0200)
> 
> are available in the git repository at:
>   git://amd64.org/linux/rric core
> 
> Robert Richter (6):
>       oprofile: Fix crash when unloading module (hr timer mode)
>       oprofile, x86: Fix crash when unloading module (nmi timer mode)
>       oprofile, x86: Add kernel parameter oprofile.cpu_type=timer
>       oprofile: Remove exit function for timer mode
>       oprofile, x86: Reimplement nmi timer mode using perf event
>       Merge branch 'perf/core' into oprofile/master
> 
>  Documentation/kernel-parameters.txt |    3 +
>  arch/Kconfig                        |    4 +
>  arch/x86/oprofile/Makefile          |    3 +-
>  arch/x86/oprofile/init.c            |   25 ++----
>  arch/x86/oprofile/nmi_int.c         |   27 ++++-
>  arch/x86/oprofile/nmi_timer_int.c   |   50 ----------
>  drivers/oprofile/nmi_timer_int.c    |  173 +++++++++++++++++++++++++++++++++++
>  drivers/oprofile/oprof.c            |   21 ++++-
>  drivers/oprofile/oprof.h            |    9 ++
>  drivers/oprofile/timer_int.c        |   29 +++---
>  kernel/events/core.c                |    2 +
>  11 files changed, 252 insertions(+), 94 deletions(-)
>  delete mode 100644 arch/x86/oprofile/nmi_timer_int.c
>  create mode 100644 drivers/oprofile/nmi_timer_int.c

Pulled both branches, thanks a lot Robert!

	Ingo

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

end of thread, other threads:[~2011-11-15 10:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-08 16:05 [GIT PULL] oprofile updates for v3.2 Robert Richter
2011-11-15 10:06 ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2011-09-29 15:04 Robert Richter
2011-09-29 15:34 ` Ingo Molnar

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