public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Markers Implementation for RCU Tracing
@ 2007-11-29 18:41 K. Prasad
  2007-11-30  1:36 ` Paul E. McKenney
  0 siblings, 1 reply; 5+ messages in thread
From: K. Prasad @ 2007-11-29 18:41 UTC (permalink / raw)
  To: linux-kernel; +Cc: dipankar, ego, mathieu.desnoyers, mingo, paulmck

Hi,
	Please review the ensuing set of patches which convert the
existing RCU tracing mechanism for Preempt RCU and RCU Boost into
markers.

These patches are based upon the 2.6.24-rc2-rt1 kernel tree.

Along with marker transition, the RCU Tracing infrastructure has also
been modularised to be built as a kernel module, thereby enabling
runtime changes to the RCU Tracing infrastructure.

Patch [1/2] - Patch that converts the Preempt RCU tracing in
rcupreempt.c into markers.

Patch [1/2] - Patch that converts the Preempt RCU Boost tracing in
rcupreempt-boost.c into markers.

Thanks,
K.Prasad
(prasad@linux.vnet.ibm.com)


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

* [PATCH 0/2] Markers Implementation for RCU Tracing
@ 2007-11-29 19:31 K. Prasad
  0 siblings, 0 replies; 5+ messages in thread
From: K. Prasad @ 2007-11-29 19:31 UTC (permalink / raw)
  To: linux-kernel; +Cc: dipankar, ego, mathieu.desnoyers, mingo, paulmck

Hi,
	Please review the ensuing set of patches which convert the
existing RCU tracing mechanism for Preempt RCU and RCU Boost into
markers.

These patches are based upon the 2.6.24-rc2-rt1 kernel tree.

Along with marker transition, the RCU Tracing infrastructure has also
been modularised to be built as a kernel module, thereby enabling
runtime changes to the RCU Tracing infrastructure.

Patch [1/2] - Patch that converts the Preempt RCU tracing in
rcupreempt.c into markers.

Patch [1/2] - Patch that converts the Preempt RCU Boost tracing in
rcupreempt-boost.c into markers.

Thanks,
K.Prasad


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

* Re: [PATCH 0/2] Markers Implementation for RCU Tracing
  2007-11-29 18:41 [PATCH 0/2] Markers Implementation for RCU Tracing K. Prasad
@ 2007-11-30  1:36 ` Paul E. McKenney
  2007-11-30  9:07   ` K. Prasad
  0 siblings, 1 reply; 5+ messages in thread
From: Paul E. McKenney @ 2007-11-30  1:36 UTC (permalink / raw)
  To: K. Prasad; +Cc: linux-kernel, dipankar, ego, mathieu.desnoyers, mingo

On Fri, Nov 30, 2007 at 12:11:28AM +0530, K. Prasad wrote:
> Hi,
> 	Please review the ensuing set of patches which convert the
> existing RCU tracing mechanism for Preempt RCU and RCU Boost into
> markers.
> 
> These patches are based upon the 2.6.24-rc2-rt1 kernel tree.
> 
> Along with marker transition, the RCU Tracing infrastructure has also
> been modularised to be built as a kernel module, thereby enabling
> runtime changes to the RCU Tracing infrastructure.
> 
> Patch [1/2] - Patch that converts the Preempt RCU tracing in
> rcupreempt.c into markers.
> 
> Patch [1/2] - Patch that converts the Preempt RCU Boost tracing in
> rcupreempt-boost.c into markers.

Looks good to me, though I do not pretend to understand the markers
implementation.  I presume that the markers implementation forces the
varargs usage -- though the markers do seem quite a bit nicer in allowing
the formatting to be specified more naturally.

							Thanx, Paul

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

* Re: [PATCH 0/2] Markers Implementation for RCU Tracing
  2007-11-30  1:36 ` Paul E. McKenney
@ 2007-11-30  9:07   ` K. Prasad
  0 siblings, 0 replies; 5+ messages in thread
From: K. Prasad @ 2007-11-30  9:07 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: K. Prasad, linux-kernel, dipankar, ego, mathieu.desnoyers, mingo

On Thu, Nov 29, 2007 at 05:36:05PM -0800, Paul E. McKenney wrote:
> On Fri, Nov 30, 2007 at 12:11:28AM +0530, K. Prasad wrote:
> > Hi,
> > 	Please review the ensuing set of patches which convert the
> > existing RCU tracing mechanism for Preempt RCU and RCU Boost into
> > markers.
> > 
> > These patches are based upon the 2.6.24-rc2-rt1 kernel tree.
> > 
> > Along with marker transition, the RCU Tracing infrastructure has also
> > been modularised to be built as a kernel module, thereby enabling
> > runtime changes to the RCU Tracing infrastructure.
> > 
> > Patch [1/2] - Patch that converts the Preempt RCU tracing in
> > rcupreempt.c into markers.
> > 
> > Patch [1/2] - Patch that converts the Preempt RCU Boost tracing in
> > rcupreempt-boost.c into markers.
> 
> Looks good to me, though I do not pretend to understand the markers
> implementation.  I presume that the markers implementation forces the
> varargs usage -- though the markers do seem quite a bit nicer in allowing
> the formatting to be specified more naturally.
> 

Paul,
	Thanks for the quick review.
Yes, varargs are required for marker handlers even with fixed set of
arguments.

Ingo,
	Can you please include these patches in your rt patchset?

Thanks,
K.Prasad


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

* [PATCH 0/2] Markers Implementation for RCU Tracing
@ 2007-12-31  6:00 K. Prasad
  0 siblings, 0 replies; 5+ messages in thread
From: K. Prasad @ 2007-12-31  6:00 UTC (permalink / raw)
  To: mingo, linux-kernel, linux-rt-users
  Cc: dipankar, ego, mathieu.desnoyers, paulmck

Hi Ingo,
	Please accept these patches into the rt tree which convert the
existing RCU tracing mechanism for Preempt RCU and RCU Boost into
markers.
 
These patches are based upon the 2.6.24-rc5-rt1 kernel tree.
 
Along with marker transition, the RCU Tracing infrastructure has also
been modularised to be built as a kernel module, thereby enabling
runtime changes to the RCU Tracing infrastructure.
 
Patch [1/2] - Patch that converts the Preempt RCU tracing in
rcupreempt.c into markers.
 
Patch [1/2] - Patch that converts the Preempt RCU Boost tracing in
rcupreempt-boost.c into markers.
 
Thanks,
K.Prasad
(prasad@linux.vnet.ibm.com)

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

end of thread, other threads:[~2007-12-31  6:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-29 18:41 [PATCH 0/2] Markers Implementation for RCU Tracing K. Prasad
2007-11-30  1:36 ` Paul E. McKenney
2007-11-30  9:07   ` K. Prasad
  -- strict thread matches above, loose matches on Subject: below --
2007-11-29 19:31 K. Prasad
2007-12-31  6:00 K. Prasad

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