diff options
author | Jiri Olsa <jolsa@redhat.com> | 2013-12-03 08:09:37 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-04 13:36:24 -0500 |
commit | f04015ecb5eb0bf25260de585f0c5f60e84f073a (patch) | |
tree | a546518201a4a3b4267c84616191d01722c89445 | |
parent | f9bb36afb25d3bfda1c9276a55985b710c8a91ae (diff) |
tools lib traceevent: Use static functions in jbd2 plugin
There's no need for following functions to be global:
process_jbd2_dev_to_name
process_jiffies_to_msecs
Make them static.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1386076182-14484-24-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/lib/traceevent/plugin_jbd2.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/lib/traceevent/plugin_jbd2.c b/tools/lib/traceevent/plugin_jbd2.c index 5d85de741b52..2f93f81f0bac 100644 --- a/tools/lib/traceevent/plugin_jbd2.c +++ b/tools/lib/traceevent/plugin_jbd2.c | |||
@@ -29,8 +29,9 @@ | |||
29 | #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS)) | 29 | #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS)) |
30 | #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK)) | 30 | #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK)) |
31 | 31 | ||
32 | unsigned long long process_jbd2_dev_to_name(struct trace_seq *s, | 32 | static unsigned long long |
33 | unsigned long long *args) | 33 | process_jbd2_dev_to_name(struct trace_seq *s, |
34 | unsigned long long *args) | ||
34 | { | 35 | { |
35 | unsigned int dev = args[0]; | 36 | unsigned int dev = args[0]; |
36 | 37 | ||
@@ -38,8 +39,9 @@ unsigned long long process_jbd2_dev_to_name(struct trace_seq *s, | |||
38 | return 0; | 39 | return 0; |
39 | } | 40 | } |
40 | 41 | ||
41 | unsigned long long process_jiffies_to_msecs(struct trace_seq *s, | 42 | static unsigned long long |
42 | unsigned long long *args) | 43 | process_jiffies_to_msecs(struct trace_seq *s, |
44 | unsigned long long *args) | ||
43 | { | 45 | { |
44 | unsigned long long jiffies = args[0]; | 46 | unsigned long long jiffies = args[0]; |
45 | 47 | ||