diff options
| author | David Ahern <[email protected]> | 2012-10-08 11:17:30 -0600 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2012-10-08 17:14:57 -0300 |
| commit | b880deeaffd9df0cec9a4496447d0d7fd78086f2 (patch) | |
| tree | ddebdc1764259d7a904981908a433afaa386f5b6 | |
| parent | 2aa8eab029b319b2b458b3ba393bbba31961ea96 (diff) | |
perf kvm: Remove typecast in init_kvm_event_record
Not needed after changing i to unsigned int.
Signed-off-by: David Ahern <[email protected]>
Cc: Dong Hao <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Xiao Guangrong <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
| -rw-r--r-- | tools/perf/builtin-kvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-kvm.c b/tools/perf/builtin-kvm.c index b98095edf1f4..8416754b2bc3 100644 --- a/tools/perf/builtin-kvm.c +++ b/tools/perf/builtin-kvm.c @@ -313,9 +313,9 @@ struct vcpu_event_record { static void init_kvm_event_record(struct perf_kvm *kvm) { - int i; + unsigned int i; - for (i = 0; i < (int)EVENTS_CACHE_SIZE; i++) + for (i = 0; i < EVENTS_CACHE_SIZE; i++) INIT_LIST_HEAD(&kvm->kvm_events_cache[i]); } |