Commit 87abb3b15c62033409f5bf2ffb5620c94f91cf2c

Authored by Wang Tianhong
Committed by Steven Rostedt
1 parent 92d8d4a8b0

tracing/trivial: Fix some typos in kernel/trace

Fix some typos in kernel/trace.

Link: http://lkml.kernel.org/r/1343887320.2228.9.camel@louis-ThinkPad-T410

Signed-off-by: Wang Tianhong <wangthbj@linux.vnet.ibm.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>

Showing 2 changed files with 5 additions and 5 deletions Side-by-side Diff

kernel/trace/ring_buffer.c
... ... @@ -2816,7 +2816,7 @@
2816 2816 * to the buffer after this will fail and return NULL.
2817 2817 *
2818 2818 * This is different than ring_buffer_record_disable() as
2819   - * it works like an on/off switch, where as the disable() verison
  2819 + * it works like an on/off switch, where as the disable() version
2820 2820 * must be paired with a enable().
2821 2821 */
2822 2822 void ring_buffer_record_off(struct ring_buffer *buffer)
... ... @@ -2839,7 +2839,7 @@
2839 2839 * ring_buffer_record_off().
2840 2840 *
2841 2841 * This is different than ring_buffer_record_enable() as
2842   - * it works like an on/off switch, where as the enable() verison
  2842 + * it works like an on/off switch, where as the enable() version
2843 2843 * must be paired with a disable().
2844 2844 */
2845 2845 void ring_buffer_record_on(struct ring_buffer *buffer)
kernel/trace/trace.c
... ... @@ -426,15 +426,15 @@
426 426  
427 427 static int __init set_tracing_thresh(char *str)
428 428 {
429   - unsigned long threshhold;
  429 + unsigned long threshold;
430 430 int ret;
431 431  
432 432 if (!str)
433 433 return 0;
434   - ret = strict_strtoul(str, 0, &threshhold);
  434 + ret = strict_strtoul(str, 0, &threshold);
435 435 if (ret < 0)
436 436 return 0;
437   - tracing_thresh = threshhold * 1000;
  437 + tracing_thresh = threshold * 1000;
438 438 return 1;
439 439 }
440 440 __setup("tracing_thresh=", set_tracing_thresh);