diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-04-04 09:12:40 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-04-27 05:00:59 -0400 |
commit | f603f0731f43421403160f5f8b12e90f2e51f064 (patch) | |
tree | 5e8bbc51d2a7be8b58e310689cebee2a6881f128 /arch | |
parent | 7e8e6ab48d78147f69c1ba2d6a362f8d33254468 (diff) |
KVM: s390: rename stfl to kvm_stfl
Temporarily rename this function to avoid merge conflicts and/or
dependencies. This function will be removed as soon as git-s390
and kvm.git are finally upstream.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Carsten Otte <cotte@de.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/s390/kvm/priv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kvm/priv.c b/arch/s390/kvm/priv.c index c97e904ca3b3..1465946325c5 100644 --- a/arch/s390/kvm/priv.c +++ b/arch/s390/kvm/priv.c | |||
@@ -151,7 +151,7 @@ static int handle_chsc(struct kvm_vcpu *vcpu) | |||
151 | return 0; | 151 | return 0; |
152 | } | 152 | } |
153 | 153 | ||
154 | static unsigned int stfl(void) | 154 | static unsigned int kvm_stfl(void) |
155 | { | 155 | { |
156 | asm volatile( | 156 | asm volatile( |
157 | " .insn s,0xb2b10000,0(0)\n" /* stfl */ | 157 | " .insn s,0xb2b10000,0(0)\n" /* stfl */ |
@@ -162,7 +162,7 @@ static unsigned int stfl(void) | |||
162 | 162 | ||
163 | static int handle_stfl(struct kvm_vcpu *vcpu) | 163 | static int handle_stfl(struct kvm_vcpu *vcpu) |
164 | { | 164 | { |
165 | unsigned int facility_list = stfl(); | 165 | unsigned int facility_list = kvm_stfl(); |
166 | int rc; | 166 | int rc; |
167 | 167 | ||
168 | vcpu->stat.instruction_stfl++; | 168 | vcpu->stat.instruction_stfl++; |