Re: [RFC v2 6/7] tracepoint: use new hashtable implementation

2012-08-05 Thread Mathieu Desnoyers
* Sasha Levin (levinsasha...@gmail.com) wrote: [...] > > Other than that, it looks good! > > > > Thanks! > > > > Mathieu > > > > Thanks for the review Mathieu! No problem! By the way, if you want to have a look at another hash table API for ideas, here is the RCU lock-free hash table API, with

Re: [RFC v2 6/7] tracepoint: use new hashtable implementation

2012-08-05 Thread Sasha Levin
On 08/05/2012 06:31 PM, Mathieu Desnoyers wrote: > * Steven Rostedt (rost...@goodmis.org) wrote: >> FYI, Mathieu is the author of this file. >> >> -- Steve >> >> >> On Fri, 2012-08-03 at 16:23 +0200, Sasha Levin wrote: >>> Switch tracepoints to use the new hashtable implementation. This reduces >>

Re: [RFC v2 6/7] tracepoint: use new hashtable implementation

2012-08-05 Thread Mathieu Desnoyers
* Steven Rostedt (rost...@goodmis.org) wrote: > FYI, Mathieu is the author of this file. > > -- Steve > > > On Fri, 2012-08-03 at 16:23 +0200, Sasha Levin wrote: > > Switch tracepoints to use the new hashtable implementation. This reduces > > the amount of > > generic unrelated code in the trac

Re: [RFC v2 6/7] tracepoint: use new hashtable implementation

2012-08-04 Thread Steven Rostedt
FYI, Mathieu is the author of this file. -- Steve On Fri, 2012-08-03 at 16:23 +0200, Sasha Levin wrote: > Switch tracepoints to use the new hashtable implementation. This reduces the > amount of > generic unrelated code in the tracepoints. > > Signed-off-by: Sasha Levin > --- > kernel/tracep

[RFC v2 6/7] tracepoint: use new hashtable implementation

2012-08-03 Thread Sasha Levin
Switch tracepoints to use the new hashtable implementation. This reduces the amount of generic unrelated code in the tracepoints. Signed-off-by: Sasha Levin --- kernel/tracepoint.c | 26 +- 1 files changed, 9 insertions(+), 17 deletions(-) diff --git a/kernel/tracepoi