Commit f04015ec authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

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: default avatarJiri 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.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent f9bb36af
...@@ -29,8 +29,9 @@ ...@@ -29,8 +29,9 @@
#define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS)) #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
#define MINOR(dev) ((unsigned int) ((dev) & MINORMASK)) #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK))
unsigned long long process_jbd2_dev_to_name(struct trace_seq *s, static unsigned long long
unsigned long long *args) process_jbd2_dev_to_name(struct trace_seq *s,
unsigned long long *args)
{ {
unsigned int dev = args[0]; unsigned int dev = args[0];
...@@ -38,8 +39,9 @@ unsigned long long process_jbd2_dev_to_name(struct trace_seq *s, ...@@ -38,8 +39,9 @@ unsigned long long process_jbd2_dev_to_name(struct trace_seq *s,
return 0; return 0;
} }
unsigned long long process_jiffies_to_msecs(struct trace_seq *s, static unsigned long long
unsigned long long *args) process_jiffies_to_msecs(struct trace_seq *s,
unsigned long long *args)
{ {
unsigned long long jiffies = args[0]; unsigned long long jiffies = args[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment