Message ID | 1372858255-19708-1-git-send-email-mihai.caraman@freescale.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 03.07.2013, at 15:30, Mihai Caraman wrote: > Some exit ids where left out from kvm_exit_names array. > > Signed-off-by: Mihai Caraman <mihai.caraman@freescale.com> > --- > arch/powerpc/kvm/timing.c | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/arch/powerpc/kvm/timing.c b/arch/powerpc/kvm/timing.c > index 07b6110..c392d26 100644 > --- a/arch/powerpc/kvm/timing.c > +++ b/arch/powerpc/kvm/timing.c > @@ -135,7 +135,9 @@ static const char *kvm_exit_names[__NUMBER_OF_KVM_EXIT_TYPES] = { > [USR_PR_INST] = "USR_PR_INST", > [FP_UNAVAIL] = "FP_UNAVAIL", > [DEBUG_EXITS] = "DEBUG", > - [TIMEINGUEST] = "TIMEINGUEST" > + [TIMEINGUEST] = "TIMEINGUEST", > + [DBELL_EXITS] = "DBELL", > + [GDBELL_EXITS] = "GDBELL" Please add a comma at the end here, so that we don't have to uselessly touch the entry next time again. Alex -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/powerpc/kvm/timing.c b/arch/powerpc/kvm/timing.c index 07b6110..c392d26 100644 --- a/arch/powerpc/kvm/timing.c +++ b/arch/powerpc/kvm/timing.c @@ -135,7 +135,9 @@ static const char *kvm_exit_names[__NUMBER_OF_KVM_EXIT_TYPES] = { [USR_PR_INST] = "USR_PR_INST", [FP_UNAVAIL] = "FP_UNAVAIL", [DEBUG_EXITS] = "DEBUG", - [TIMEINGUEST] = "TIMEINGUEST" + [TIMEINGUEST] = "TIMEINGUEST", + [DBELL_EXITS] = "DBELL", + [GDBELL_EXITS] = "GDBELL" }; static int kvmppc_exit_timing_show(struct seq_file *m, void *private)
Some exit ids where left out from kvm_exit_names array. Signed-off-by: Mihai Caraman <mihai.caraman@freescale.com> --- arch/powerpc/kvm/timing.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)