perf kvm: Remove typecast in init_kvm_event_record
authorDavid Ahern <dsahern@gmail.com>
Mon, 8 Oct 2012 17:17:30 +0000 (11:17 -0600)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 8 Oct 2012 20:14:57 +0000 (17:14 -0300)
Not needed after changing i to unsigned int.

Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Dong Hao <haodong@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/1349716656-48165-7-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-kvm.c

index b98095edf1f4906a3e7cc67d45fbf4f1d35777bb..8416754b2bc3fda0e02ad2395b4d5b3eb1333122 100644 (file)
@@ -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]);
 }
 
This page took 0.031808 seconds and 5 git commands to generate.