Re: [PATCH] scripts/tags.sh: Include trace_*_rcuidle() in tags

2015-08-19 Thread Michal Marek
On 2015-07-28 02:17, Stephen Boyd wrote:
> On 06/16/2015 06:00 PM, Stephen Boyd wrote:
>> Every tracepoint creates two functions, the usual one 'trace_*()'
>> and the rcuidle one 'trace_*_rcuidle()'. Add regex for the
>> rcuidle variant so that we can jump to the tracepoints that use
>> rcuidle.
>>
>> Cc: Steven Rostedt 
>> Signed-off-by: Stephen Boyd 
>> ---
> 
> Can this be applied?

Applied to kbuild.git#misc now.

Michal
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] scripts/tags.sh: Include trace_*_rcuidle() in tags

2015-08-19 Thread Michal Marek
On 2015-07-28 02:17, Stephen Boyd wrote:
 On 06/16/2015 06:00 PM, Stephen Boyd wrote:
 Every tracepoint creates two functions, the usual one 'trace_*()'
 and the rcuidle one 'trace_*_rcuidle()'. Add regex for the
 rcuidle variant so that we can jump to the tracepoints that use
 rcuidle.

 Cc: Steven Rostedt rost...@goodmis.org
 Signed-off-by: Stephen Boyd sb...@codeaurora.org
 ---
 
 Can this be applied?

Applied to kbuild.git#misc now.

Michal
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] scripts/tags.sh: Include trace_*_rcuidle() in tags

2015-07-27 Thread Stephen Boyd
On 06/16/2015 06:00 PM, Stephen Boyd wrote:
> Every tracepoint creates two functions, the usual one 'trace_*()'
> and the rcuidle one 'trace_*_rcuidle()'. Add regex for the
> rcuidle variant so that we can jump to the tracepoints that use
> rcuidle.
>
> Cc: Steven Rostedt 
> Signed-off-by: Stephen Boyd 
> ---

Can this be applied?

>  scripts/tags.sh | 4 
>  1 file changed, 4 insertions(+)
>
> diff --git a/scripts/tags.sh b/scripts/tags.sh
> index cdb491d84503..896bb303f735 100755
> --- a/scripts/tags.sh
> +++ b/scripts/tags.sh
> @@ -170,7 +170,9 @@ exuberant()
>   --regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \
>   
> --regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \
>   --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1/'   \
> + --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1_rcuidle/'   \
>   --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1/' \
> + --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1_rcuidle/' \
>   --regex-c++='/PAGEFLAG\(([^,)]*).*/Page\1/' \
>   --regex-c++='/PAGEFLAG\(([^,)]*).*/SetPage\1/'  \
>   --regex-c++='/PAGEFLAG\(([^,)]*).*/ClearPage\1/'\
> @@ -233,7 +235,9 @@ emacs()
>   --regex='/^SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/sys_\1/'   \
>   --regex='/^COMPAT_SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/compat_sys_\1/' \
>   --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1/'  \
> + --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1_rcuidle/'  \
>   --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1/' \
> + --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1_rcuidle/' \
>   --regex='/PAGEFLAG(\([^,)]*\).*/Page\1/'\
>   --regex='/PAGEFLAG(\([^,)]*\).*/SetPage\1/' \
>   --regex='/PAGEFLAG(\([^,)]*\).*/ClearPage\1/'   \


-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] scripts/tags.sh: Include trace_*_rcuidle() in tags

2015-07-27 Thread Stephen Boyd
On 06/16/2015 06:00 PM, Stephen Boyd wrote:
 Every tracepoint creates two functions, the usual one 'trace_*()'
 and the rcuidle one 'trace_*_rcuidle()'. Add regex for the
 rcuidle variant so that we can jump to the tracepoints that use
 rcuidle.

 Cc: Steven Rostedt rost...@goodmis.org
 Signed-off-by: Stephen Boyd sb...@codeaurora.org
 ---

Can this be applied?

  scripts/tags.sh | 4 
  1 file changed, 4 insertions(+)

 diff --git a/scripts/tags.sh b/scripts/tags.sh
 index cdb491d84503..896bb303f735 100755
 --- a/scripts/tags.sh
 +++ b/scripts/tags.sh
 @@ -170,7 +170,9 @@ exuberant()
   --regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \
   
 --regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \
   --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1/'   \
 + --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1_rcuidle/'   \
   --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1/' \
 + --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1_rcuidle/' \
   --regex-c++='/PAGEFLAG\(([^,)]*).*/Page\1/' \
   --regex-c++='/PAGEFLAG\(([^,)]*).*/SetPage\1/'  \
   --regex-c++='/PAGEFLAG\(([^,)]*).*/ClearPage\1/'\
 @@ -233,7 +235,9 @@ emacs()
   --regex='/^SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/sys_\1/'   \
   --regex='/^COMPAT_SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/compat_sys_\1/' \
   --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1/'  \
 + --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1_rcuidle/'  \
   --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1/' \
 + --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1_rcuidle/' \
   --regex='/PAGEFLAG(\([^,)]*\).*/Page\1/'\
   --regex='/PAGEFLAG(\([^,)]*\).*/SetPage\1/' \
   --regex='/PAGEFLAG(\([^,)]*\).*/ClearPage\1/'   \


-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] scripts/tags.sh: Include trace_*_rcuidle() in tags

2015-06-16 Thread Stephen Boyd
Every tracepoint creates two functions, the usual one 'trace_*()'
and the rcuidle one 'trace_*_rcuidle()'. Add regex for the
rcuidle variant so that we can jump to the tracepoints that use
rcuidle.

Cc: Steven Rostedt 
Signed-off-by: Stephen Boyd 
---
 scripts/tags.sh | 4 
 1 file changed, 4 insertions(+)

diff --git a/scripts/tags.sh b/scripts/tags.sh
index cdb491d84503..896bb303f735 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -170,7 +170,9 @@ exuberant()
--regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \

--regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \
--regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1/'   \
+   --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1_rcuidle/'   \
--regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1/' \
+   --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1_rcuidle/' \
--regex-c++='/PAGEFLAG\(([^,)]*).*/Page\1/' \
--regex-c++='/PAGEFLAG\(([^,)]*).*/SetPage\1/'  \
--regex-c++='/PAGEFLAG\(([^,)]*).*/ClearPage\1/'\
@@ -233,7 +235,9 @@ emacs()
--regex='/^SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/sys_\1/'   \
--regex='/^COMPAT_SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/compat_sys_\1/' \
--regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1/'  \
+   --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1_rcuidle/'  \
--regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1/' \
+   --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1_rcuidle/' \
--regex='/PAGEFLAG(\([^,)]*\).*/Page\1/'\
--regex='/PAGEFLAG(\([^,)]*\).*/SetPage\1/' \
--regex='/PAGEFLAG(\([^,)]*\).*/ClearPage\1/'   \
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] scripts/tags.sh: Include trace_*_rcuidle() in tags

2015-06-16 Thread Stephen Boyd
Every tracepoint creates two functions, the usual one 'trace_*()'
and the rcuidle one 'trace_*_rcuidle()'. Add regex for the
rcuidle variant so that we can jump to the tracepoints that use
rcuidle.

Cc: Steven Rostedt rost...@goodmis.org
Signed-off-by: Stephen Boyd sb...@codeaurora.org
---
 scripts/tags.sh | 4 
 1 file changed, 4 insertions(+)

diff --git a/scripts/tags.sh b/scripts/tags.sh
index cdb491d84503..896bb303f735 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -170,7 +170,9 @@ exuberant()
--regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \

--regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \
--regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1/'   \
+   --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1_rcuidle/'   \
--regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1/' \
+   --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1_rcuidle/' \
--regex-c++='/PAGEFLAG\(([^,)]*).*/Page\1/' \
--regex-c++='/PAGEFLAG\(([^,)]*).*/SetPage\1/'  \
--regex-c++='/PAGEFLAG\(([^,)]*).*/ClearPage\1/'\
@@ -233,7 +235,9 @@ emacs()
--regex='/^SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/sys_\1/'   \
--regex='/^COMPAT_SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/compat_sys_\1/' \
--regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1/'  \
+   --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1_rcuidle/'  \
--regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1/' \
+   --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1_rcuidle/' \
--regex='/PAGEFLAG(\([^,)]*\).*/Page\1/'\
--regex='/PAGEFLAG(\([^,)]*\).*/SetPage\1/' \
--regex='/PAGEFLAG(\([^,)]*\).*/ClearPage\1/'   \
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/