Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1394857 > unrolled thread

linux-next: manual merge of the borntraeger tree with the kvms390 tree

Started byStephen Rothwell <sfr@canb.auug.org.au>
First post2016-05-05 06:30 +0200
Last post2016-05-05 06:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  linux-next: manual merge of the borntraeger tree with the kvms390  tree Stephen Rothwell <sfr@canb.auug.org.au> - 2016-05-05 06:30 +0200

#1394857 — linux-next: manual merge of the borntraeger tree with the kvms390 tree

FromStephen Rothwell <sfr@canb.auug.org.au>
Date2016-05-05 06:30 +0200
Subjectlinux-next: manual merge of the borntraeger tree with the kvms390 tree
Message-ID<rvj5g-19Z-3@gated-at.bofh.it>
Hi Christian,

Today's linux-next merge of the borntraeger tree got a conflict in:

  arch/s390/kvm/kvm-s390.c

between commit:

  be7c9d7ba9e4 ("KVM: s390: Populate mask of non-hypervisor managed facility bits")

from the kvms390 tree and commit:

  5c14ad932491 ("KVM: halt_polling: provide a way to qualify wakeups during poll")

from the borntraeger tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc arch/s390/kvm/kvm-s390.c
index c597201a5ca9,009a10e00e80..000000000000
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@@ -2985,17 -2972,13 +2986,22 @@@ void kvm_arch_commit_memory_region(stru
  	return;
  }
  
 +static inline unsigned long nonhyp_mask(int i)
 +{
 +	unsigned int nonhyp_fai = (sclp.hmfai << i * 2) >> 30;
 +
 +	return 0x0000ffffffffffffUL >> (nonhyp_fai << 4);
 +}
 +
+ void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu)
+ {
+ 	vcpu->valid_wakeup = false;
+ }
+ 
  static int __init kvm_s390_init(void)
  {
 +	int i;
 +
  	if (!sclp.has_sief2) {
  		pr_info("SIE not available\n");
  		return -ENODEV;

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web