Skip to content

Commit

Permalink
KVM: s390: rename stfl to kvm_stfl
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Heiko Carstens authored and Avi Kivity committed Apr 27, 2008
1 parent 7e8e6ab commit f603f07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/s390/kvm/priv.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static int handle_chsc(struct kvm_vcpu *vcpu)
return 0;
}

static unsigned int stfl(void)
static unsigned int kvm_stfl(void)
{
asm volatile(
" .insn s,0xb2b10000,0(0)\n" /* stfl */
Expand All @@ -162,7 +162,7 @@ static unsigned int stfl(void)

static int handle_stfl(struct kvm_vcpu *vcpu)
{
unsigned int facility_list = stfl();
unsigned int facility_list = kvm_stfl();
int rc;

vcpu->stat.instruction_stfl++;
Expand Down

0 comments on commit f603f07

Please sign in to comment.