Hi Paolo, > -----Original Message----- > From: Paolo Bonzini <pbonzini@xxxxxxxxxx> > Sent: Wednesday, October 16, 2019 12:39 AM > To: Jianyong Wu (Arm Technology China) <Jianyong.Wu@xxxxxxx>; > netdev@xxxxxxxxxxxxxxx; yangbo.lu@xxxxxxx; john.stultz@xxxxxxxxxx; > tglx@xxxxxxxxxxxxx; sean.j.christopherson@xxxxxxxxx; maz@xxxxxxxxxx; > richardcochran@xxxxxxxxx; Mark Rutland <Mark.Rutland@xxxxxxx>; > will@xxxxxxxxxx; Suzuki Poulose <Suzuki.Poulose@xxxxxxx> > Cc: linux-kernel@xxxxxxxxxxxxxxx; linux-arm-kernel@xxxxxxxxxxxxxxxxxxx; > kvmarm@xxxxxxxxxxxxxxxxxxxxx; kvm@xxxxxxxxxxxxxxx; Steve Capper > <Steve.Capper@xxxxxxx>; Kaly Xin (Arm Technology China) > <Kaly.Xin@xxxxxxx>; Justin He (Arm Technology China) > <Justin.He@xxxxxxx>; nd <nd@xxxxxxx> > Subject: Re: [PATCH v5 5/6] ptp: arm64: Enable ptp_kvm for arm64 > > On 15/10/19 12:48, Jianyong Wu wrote: > > +int kvm_arch_ptp_get_clock_generic(struct timespec64 *ts, > > + struct arm_smccc_res *hvc_res) { > > + u64 ns; > > + ktime_t ktime_overall; > > + > > + > arm_smccc_1_1_invoke(ARM_SMCCC_VENDOR_HYP_KVM_PTP_FU > NC_ID, > > + hvc_res); > > + if ((long)(hvc_res->a0) < 0) > > + return -EOPNOTSUPP; > > + > > + ktime_overall = hvc_res->a0 << 32 | hvc_res->a1; > > + *ts = ktime_to_timespec64(ktime_overall); > > + > > + return 0; > > +} > > + > > This seems wrong, who uses kvm_arch_ptp_get_clock_fn? > This func used only by kvm_arch_ptp_get_clock and nothing to do with kvm_arch_ptp_get_clock_fn. Also it can be merged into kvm_arch_ptp_get_clock. > Paolo _______________________________________________ kvmarm mailing list kvmarm@xxxxxxxxxxxxxxxxxxxxx https://lists.cs.columbia.edu/mailman/listinfo/kvmarm