diff options
author | Eric Auger <eric.auger@linaro.org> | 2014-12-15 12:43:32 -0500 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2015-01-11 08:12:15 -0500 |
commit | 66b030e48af68fd4c22d343908bc057207a0a31e (patch) | |
tree | 7bba27841804e456c6ef97bf744c7c73d982e596 /virt/kvm/arm/vgic.c | |
parent | bab5bb398273bb37547a185f7b344b37c700d0b9 (diff) |
KVM: arm/arm64: vgic: vgic_init returns -ENODEV when no online vcpu
To be more explicit on vgic initialization failure, -ENODEV is
returned by vgic_init when no online vcpus can be found at init.
Signed-off-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'virt/kvm/arm/vgic.c')
-rw-r--r-- | virt/kvm/arm/vgic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c index 03affc7bf453..b8d57e86cfdc 100644 --- a/virt/kvm/arm/vgic.c +++ b/virt/kvm/arm/vgic.c | |||
@@ -1809,7 +1809,7 @@ static int vgic_init(struct kvm *kvm) | |||
1809 | 1809 | ||
1810 | nr_cpus = dist->nr_cpus = atomic_read(&kvm->online_vcpus); | 1810 | nr_cpus = dist->nr_cpus = atomic_read(&kvm->online_vcpus); |
1811 | if (!nr_cpus) /* No vcpus? Can't be good... */ | 1811 | if (!nr_cpus) /* No vcpus? Can't be good... */ |
1812 | return -EINVAL; | 1812 | return -ENODEV; |
1813 | 1813 | ||
1814 | /* | 1814 | /* |
1815 | * If nobody configured the number of interrupts, use the | 1815 | * If nobody configured the number of interrupts, use the |