All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tracing/events: change the type of __str_loc_item to unsigned short
@ 2009-05-21  5:59 Li Zefan
  2009-05-24 20:31 ` Frederic Weisbecker
  2009-05-27 22:34 ` [tip:tracing/core] " tip-bot for Li Zefan
  0 siblings, 2 replies; 3+ messages in thread
From: Li Zefan @ 2009-05-21  5:59 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Steven Rostedt, Frederic Weisbecker, LKML

When defining a dynamic size string, we add __str_loc_##item to the
trace entry, and it stores the location of the actual string in
entry->_str_data[]

'unsigned short' should be sufficient to store this information, thus
we save 2 bytes per dyn-size string in the ring buffer.

[ Impact: reduce memory occupied by dyn-size strings in ring buffer ]

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 include/trace/ftrace.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h
index edb02bc..b5ff2e8 100644
--- a/include/trace/ftrace.h
+++ b/include/trace/ftrace.h
@@ -25,7 +25,7 @@
 #define __field(type, item)		type	item;
 
 #undef __string
-#define __string(item, src)		int	__str_loc_##item;
+#define __string(item, src)		unsigned short	__str_loc_##item;
 
 #undef TP_STRUCT__entry
 #define TP_STRUCT__entry(args...) args
-- 1.5.4.rc3 

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

* Re: [PATCH] tracing/events: change the type of __str_loc_item to unsigned short
  2009-05-21  5:59 [PATCH] tracing/events: change the type of __str_loc_item to unsigned short Li Zefan
@ 2009-05-24 20:31 ` Frederic Weisbecker
  2009-05-27 22:34 ` [tip:tracing/core] " tip-bot for Li Zefan
  1 sibling, 0 replies; 3+ messages in thread
From: Frederic Weisbecker @ 2009-05-24 20:31 UTC (permalink / raw)
  To: Li Zefan; +Cc: Ingo Molnar, Steven Rostedt, LKML

On Thu, May 21, 2009 at 01:59:18PM +0800, Li Zefan wrote:
> When defining a dynamic size string, we add __str_loc_##item to the
> trace entry, and it stores the location of the actual string in
> entry->_str_data[]
> 
> 'unsigned short' should be sufficient to store this information, thus
> we save 2 bytes per dyn-size string in the ring buffer.
> 
> [ Impact: reduce memory occupied by dyn-size strings in ring buffer ]
> 
> Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
> ---
>  include/trace/ftrace.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h
> index edb02bc..b5ff2e8 100644
> --- a/include/trace/ftrace.h
> +++ b/include/trace/ftrace.h
> @@ -25,7 +25,7 @@
>  #define __field(type, item)		type	item;
>  
>  #undef __string
> -#define __string(item, src)		int	__str_loc_##item;
> +#define __string(item, src)		unsigned short	__str_loc_##item;
>  
>  #undef TP_STRUCT__entry
>  #define TP_STRUCT__entry(args...) args
> -- 1.5.4.rc3 


Yeah, a max length of about 32000 is sufficient, the filter
engine is bounded to MAX_FILTER_STR_VAL anyway :)

Acked-by: Frederic Weisbecker <fweisbec@gmail.com>


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

* [tip:tracing/core] tracing/events: change the type of __str_loc_item to unsigned short
  2009-05-21  5:59 [PATCH] tracing/events: change the type of __str_loc_item to unsigned short Li Zefan
  2009-05-24 20:31 ` Frederic Weisbecker
@ 2009-05-27 22:34 ` tip-bot for Li Zefan
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Li Zefan @ 2009-05-27 22:34 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, fweisbec, rostedt, lizf, tglx

Commit-ID:  b0aae68cc5508f3c2fbf728988c954db4c8b8a53
Gitweb:     http://git.kernel.org/tip/b0aae68cc5508f3c2fbf728988c954db4c8b8a53
Author:     Li Zefan <lizf@cn.fujitsu.com>
AuthorDate: Thu, 21 May 2009 13:59:18 +0800
Committer:  Frederic Weisbecker <fweisbec@gmail.com>
CommitDate: Tue, 26 May 2009 00:15:21 +0200

tracing/events: change the type of __str_loc_item to unsigned short

When defining a dynamic size string, we add __str_loc_##item to the
trace entry, and it stores the location of the actual string in
entry->_str_data[]

'unsigned short' should be sufficient to store this information, thus
we save 2 bytes per dyn-size string in the ring buffer.

[ Impact: reduce memory occupied by dyn-size strings in ring buffer ]

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
LKML-Reference: <4A14EDB6.2050507@cn.fujitsu.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>


---
 include/trace/ftrace.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h
index edb02bc..b5ff2e8 100644
--- a/include/trace/ftrace.h
+++ b/include/trace/ftrace.h
@@ -25,7 +25,7 @@
 #define __field(type, item)		type	item;
 
 #undef __string
-#define __string(item, src)		int	__str_loc_##item;
+#define __string(item, src)		unsigned short	__str_loc_##item;
 
 #undef TP_STRUCT__entry
 #define TP_STRUCT__entry(args...) args

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

end of thread, other threads:[~2009-05-27 22:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-21  5:59 [PATCH] tracing/events: change the type of __str_loc_item to unsigned short Li Zefan
2009-05-24 20:31 ` Frederic Weisbecker
2009-05-27 22:34 ` [tip:tracing/core] " tip-bot for Li Zefan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.