diff options
| author | Linus Torvalds <[email protected]> | 2017-10-28 03:35:31 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2017-10-28 03:35:31 +0000 |
| commit | a0cb2b5c390151837b08e5f7bca4a6ecddbcd39c (patch) | |
| tree | ba286b1b841d9d81f7a22bf9d6a66f918f5a22f9 | |
| parent | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s39... (diff) | |
| download | kernel-a0cb2b5c390151837b08e5f7bca4a6ecddbcd39c.tar.gz kernel-a0cb2b5c390151837b08e5f7bca4a6ecddbcd39c.zip | |
Fix tracing sample code warning.
Commit 6575257c60e1 ("tracing/samples: Fix creation and deletion of
simple_thread_fn creation") introduced a new warning due to using a
boolean as a counter.
Just make it "int".
Fixes: 6575257c60e1 ("tracing/samples: Fix creation and deletion of simple_thread_fn creation")
Cc: Steven Rostedt <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | samples/trace_events/trace-events-sample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/trace_events/trace-events-sample.c b/samples/trace_events/trace-events-sample.c index 446beb7ac48d..5522692100ba 100644 --- a/samples/trace_events/trace-events-sample.c +++ b/samples/trace_events/trace-events-sample.c @@ -78,7 +78,7 @@ static int simple_thread_fn(void *arg) } static DEFINE_MUTEX(thread_mutex); -static bool simple_thread_cnt; +static int simple_thread_cnt; int foo_bar_reg(void) { |
