On 8/7/20 10:10 AM, Haibo Xu wrote: > Rename kvm_arm_pmu_set_attr() to kvm_arm_dev_set_attr(),
Maybe rename kvm_arm_device_set_attr() to match the structure name? > So both the vPMU and vSPE device can share the same API. > > Signed-off-by: Haibo Xu <haibo...@linaro.org> Regardless, with the typo "operation" in patch subject fixed: Reviewed-by: Philippe Mathieu-Daudé <f4...@amsat.org> > --- > target/arm/kvm64.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c > index 1169237905..75a417d65c 100644 > --- a/target/arm/kvm64.c > +++ b/target/arm/kvm64.c > @@ -398,7 +398,7 @@ static CPUWatchpoint *find_hw_watchpoint(CPUState *cpu, > target_ulong addr) > return NULL; > } > > -static bool kvm_arm_pmu_set_attr(CPUState *cs, struct kvm_device_attr *attr) > +static bool kvm_arm_dev_set_attr(CPUState *cs, struct kvm_device_attr *attr) > { > int err; > > @@ -427,7 +427,7 @@ void kvm_arm_pmu_init(CPUState *cs) > if (!ARM_CPU(cs)->has_pmu) { > return; > } > - if (!kvm_arm_pmu_set_attr(cs, &attr)) { > + if (!kvm_arm_dev_set_attr(cs, &attr)) { > error_report("failed to init PMU"); > abort(); > } > @@ -444,7 +444,7 @@ void kvm_arm_pmu_set_irq(CPUState *cs, int irq) > if (!ARM_CPU(cs)->has_pmu) { > return; > } > - if (!kvm_arm_pmu_set_attr(cs, &attr)) { > + if (!kvm_arm_dev_set_attr(cs, &attr)) { > error_report("failed to set irq for PMU"); > abort(); > } >