Skip to content

Commit

Permalink
LoongArch: KVM: Rename _kvm_get_cpucfg() to _kvm_get_cpucfg_mask()
Browse files Browse the repository at this point in the history
The function is not actually a getter of guest CPUCFG, but rather
validation of the input CPUCFG ID plus information about the supported
bit flags of that CPUCFG leaf. So rename it to avoid confusion.

Reviewed-by: Bibo Mao <[email protected]>
Signed-off-by: WANG Xuerui <[email protected]>
Signed-off-by: Huacai Chen <[email protected]>
  • Loading branch information
xen0n authored and chenhuacai committed Feb 23, 2024
1 parent 179af57 commit ec83f39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/loongarch/kvm/vcpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ static int _kvm_setcsr(struct kvm_vcpu *vcpu, unsigned int id, u64 val)
return ret;
}

static int _kvm_get_cpucfg(int id, u64 *v)
static int _kvm_get_cpucfg_mask(int id, u64 *v)
{
if (id < 0 || id >= KVM_MAX_CPUCFG_REGS)
return -EINVAL;
Expand Down Expand Up @@ -339,7 +339,7 @@ static int kvm_check_cpucfg(int id, u64 val)
int ret;
u64 mask = 0;

ret = _kvm_get_cpucfg(id, &mask);
ret = _kvm_get_cpucfg_mask(id, &mask);
if (ret)
return ret;

Expand Down Expand Up @@ -567,7 +567,7 @@ static int kvm_loongarch_get_cpucfg_attr(struct kvm_vcpu *vcpu,
uint64_t val;
uint64_t __user *uaddr = (uint64_t __user *)attr->addr;

ret = _kvm_get_cpucfg(attr->attr, &val);
ret = _kvm_get_cpucfg_mask(attr->attr, &val);
if (ret)
return ret;

Expand Down

0 comments on commit ec83f39

Please sign in to comment.