Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1416651 > unrolled thread
| Started by | Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
|---|---|
| First post | 2016-06-07 23:50 +0200 |
| Last post | 2016-06-08 08:40 +0200 |
| Articles | 6 — 6 participants |
Back to article view | Back to linux.kernel
[PATCH] KVM: s390: fix build failure Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2016-06-07 23:50 +0200
Re: [PATCH] KVM: s390: fix build failure Christian Borntraeger <borntraeger@de.ibm.com> - 2016-06-08 07:20 +0200
Re: [PATCH] KVM: s390: fix build failure Heiko Carstens <heiko.carstens@de.ibm.com> - 2016-06-08 07:40 +0200
Re: [PATCH] KVM: s390: fix build failure Stephen Rothwell <sfr@canb.auug.org.au> - 2016-06-08 10:20 +0200
Re: [PATCH] KVM: s390: fix build failure Paolo Bonzini <pbonzini@redhat.com> - 2016-06-08 12:30 +0200
Re: [PATCH] KVM: s390: fix build failure Martin Schwidefsky <schwidefsky@de.ibm.com> - 2016-06-08 08:40 +0200
| From | Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
|---|---|
| Date | 2016-06-07 23:50 +0200 |
| Subject | [PATCH] KVM: s390: fix build failure |
| Message-ID | <rHx2N-82s-7@gated-at.bofh.it> |
etr_ptff definitions are moved and renamed but we missed updating them
here and as a result s390 defconfig and allmodconfig was failing with
the error:
arch/s390/kvm/kvm-s390.c:230:45: error: 'ETR_PTFF_QAF' undeclared
Fixes: cc8f94656487 ("s390/time: move PTFF definitions")
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
---
s390 defconfig build log is at:
https://travis-ci.org/sudipm-mukherjee/parport/jobs/135776067
arch/s390/kvm/kvm-s390.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
index fa51aef..3039eaf 100644
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@ -29,7 +29,7 @@
#include <linux/bitmap.h>
#include <asm/asm-offsets.h>
#include <asm/lowcore.h>
-#include <asm/etr.h>
+#include <asm/timex.h>
#include <asm/pgtable.h>
#include <asm/gmap.h>
#include <asm/nmi.h>
@@ -227,7 +227,9 @@ static void kvm_s390_cpu_feat_init(void)
}
if (test_facility(28)) /* TOD-clock steering */
- etr_ptff(kvm_s390_available_subfunc.ptff, ETR_PTFF_QAF);
+ ptff(kvm_s390_available_subfunc.ptff,
+ sizeof(kvm_s390_available_subfunc.ptff),
+ PTFF_QAF);
if (test_facility(17)) { /* MSA */
__cpacf_query(CPACF_KMAC, kvm_s390_available_subfunc.kmac);
--
1.9.1
[toc] | [next] | [standalone]
| From | Christian Borntraeger <borntraeger@de.ibm.com> |
|---|---|
| Date | 2016-06-08 07:20 +0200 |
| Message-ID | <rHE4h-4dP-1@gated-at.bofh.it> |
| In reply to | #1416651 |
On 06/07/2016 11:49 PM, Sudip Mukherjee wrote:
> etr_ptff definitions are moved and renamed but we missed updating them
> here and as a result s390 defconfig and allmodconfig was failing with
> the error:
> arch/s390/kvm/kvm-s390.c:230:45: error: 'ETR_PTFF_QAF' undeclared
>
> Fixes: cc8f94656487 ("s390/time: move PTFF definitions")
> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Thank you for the report and patch.
This is linux-next only. Its a conflict between my kvms390 queue and
Martins s390 queue. We cannot apply this directly as it would break
the build of my tree when not merged in next. (and it does not apply
on Martins tree).
I will have a look how to fix that up.
> ---
>
> s390 defconfig build log is at:
> https://travis-ci.org/sudipm-mukherjee/parport/jobs/135776067
>
> arch/s390/kvm/kvm-s390.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
> index fa51aef..3039eaf 100644
> --- a/arch/s390/kvm/kvm-s390.c
> +++ b/arch/s390/kvm/kvm-s390.c
> @@ -29,7 +29,7 @@
> #include <linux/bitmap.h>
> #include <asm/asm-offsets.h>
> #include <asm/lowcore.h>
> -#include <asm/etr.h>
> +#include <asm/timex.h>
> #include <asm/pgtable.h>
> #include <asm/gmap.h>
> #include <asm/nmi.h>
> @@ -227,7 +227,9 @@ static void kvm_s390_cpu_feat_init(void)
> }
>
> if (test_facility(28)) /* TOD-clock steering */
> - etr_ptff(kvm_s390_available_subfunc.ptff, ETR_PTFF_QAF);
> + ptff(kvm_s390_available_subfunc.ptff,
> + sizeof(kvm_s390_available_subfunc.ptff),
> + PTFF_QAF);
>
> if (test_facility(17)) { /* MSA */
> __cpacf_query(CPACF_KMAC, kvm_s390_available_subfunc.kmac);
>
[toc] | [prev] | [next] | [standalone]
| From | Heiko Carstens <heiko.carstens@de.ibm.com> |
|---|---|
| Date | 2016-06-08 07:40 +0200 |
| Message-ID | <rHEnD-4kg-7@gated-at.bofh.it> |
| In reply to | #1416870 |
On Wed, Jun 08, 2016 at 07:17:35AM +0200, Christian Borntraeger wrote:
> On 06/07/2016 11:49 PM, Sudip Mukherjee wrote:
> > etr_ptff definitions are moved and renamed but we missed updating them
> > here and as a result s390 defconfig and allmodconfig was failing with
> > the error:
> > arch/s390/kvm/kvm-s390.c:230:45: error: 'ETR_PTFF_QAF' undeclared
> >
> > Fixes: cc8f94656487 ("s390/time: move PTFF definitions")
> > Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
>
> Thank you for the report and patch.
>
> This is linux-next only. Its a conflict between my kvms390 queue and
> Martins s390 queue. We cannot apply this directly as it would break
> the build of my tree when not merged in next. (and it does not apply
> on Martins tree).
>
> I will have a look how to fix that up.
We could ask Stephen Rothwell to apply the patch only to linux-next? ;)
> > ---
> >
> > s390 defconfig build log is at:
> > https://travis-ci.org/sudipm-mukherjee/parport/jobs/135776067
> >
> > arch/s390/kvm/kvm-s390.c | 6 ++++--
> > 1 file changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
> > index fa51aef..3039eaf 100644
> > --- a/arch/s390/kvm/kvm-s390.c
> > +++ b/arch/s390/kvm/kvm-s390.c
> > @@ -29,7 +29,7 @@
> > #include <linux/bitmap.h>
> > #include <asm/asm-offsets.h>
> > #include <asm/lowcore.h>
> > -#include <asm/etr.h>
> > +#include <asm/timex.h>
> > #include <asm/pgtable.h>
> > #include <asm/gmap.h>
> > #include <asm/nmi.h>
> > @@ -227,7 +227,9 @@ static void kvm_s390_cpu_feat_init(void)
> > }
> >
> > if (test_facility(28)) /* TOD-clock steering */
> > - etr_ptff(kvm_s390_available_subfunc.ptff, ETR_PTFF_QAF);
> > + ptff(kvm_s390_available_subfunc.ptff,
> > + sizeof(kvm_s390_available_subfunc.ptff),
> > + PTFF_QAF);
> >
> > if (test_facility(17)) { /* MSA */
> > __cpacf_query(CPACF_KMAC, kvm_s390_available_subfunc.kmac);
> >
>
[toc] | [prev] | [next] | [standalone]
| From | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| Date | 2016-06-08 10:20 +0200 |
| Message-ID | <rHGSt-685-7@gated-at.bofh.it> |
| In reply to | #1416880 |
Hi Heiko,
On Wed, 8 Jun 2016 07:31:29 +0200 Heiko Carstens <heiko.carstens@de.ibm.com> wrote:
>
> On Wed, Jun 08, 2016 at 07:17:35AM +0200, Christian Borntraeger wrote:
> > On 06/07/2016 11:49 PM, Sudip Mukherjee wrote:
> > > etr_ptff definitions are moved and renamed but we missed updating them
> > > here and as a result s390 defconfig and allmodconfig was failing with
> > > the error:
> > > arch/s390/kvm/kvm-s390.c:230:45: error: 'ETR_PTFF_QAF' undeclared
> > >
> > > Fixes: cc8f94656487 ("s390/time: move PTFF definitions")
> > > Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> >
> > Thank you for the report and patch.
> >
> > This is linux-next only. Its a conflict between my kvms390 queue and
> > Martins s390 queue. We cannot apply this directly as it would break
> > the build of my tree when not merged in next. (and it does not apply
> > on Martins tree).
> >
> > I will have a look how to fix that up.
>
> We could ask Stephen Rothwell to apply the patch only to linux-next? ;)
Martin sent me the same patch earlier and I applied it to the merge of
the kvms390 tree today. Someone needs to remember to tell Linus when
the time comes.
--
Cheers,
Stephen Rothwell
[toc] | [prev] | [next] | [standalone]
| From | Paolo Bonzini <pbonzini@redhat.com> |
|---|---|
| Date | 2016-06-08 12:30 +0200 |
| Message-ID | <rHIUi-7mg-11@gated-at.bofh.it> |
| In reply to | #1417027 |
----- Original Message -----
> From: "Stephen Rothwell" <sfr@canb.auug.org.au>
> To: "Heiko Carstens" <heiko.carstens@de.ibm.com>
> Cc: "Christian Borntraeger" <borntraeger@de.ibm.com>, "Sudip Mukherjee" <sudipm.mukherjee@gmail.com>, "Cornelia Huck"
> <cornelia.huck@de.ibm.com>, "Paolo Bonzini" <pbonzini@redhat.com>, "Radim Krčmář" <rkrcmar@redhat.com>, "Martin
> Schwidefsky" <schwidefsky@de.ibm.com>, linux-kernel@vger.kernel.org, linux-s390@vger.kernel.org, kvm@vger.kernel.org
> Sent: Wednesday, June 8, 2016 10:09:17 AM
> Subject: Re: [PATCH] KVM: s390: fix build failure
>
> Hi Heiko,
>
> On Wed, 8 Jun 2016 07:31:29 +0200 Heiko Carstens <heiko.carstens@de.ibm.com>
> wrote:
> >
> > On Wed, Jun 08, 2016 at 07:17:35AM +0200, Christian Borntraeger wrote:
> > > On 06/07/2016 11:49 PM, Sudip Mukherjee wrote:
> > > > etr_ptff definitions are moved and renamed but we missed updating them
> > > > here and as a result s390 defconfig and allmodconfig was failing with
> > > > the error:
> > > > arch/s390/kvm/kvm-s390.c:230:45: error: 'ETR_PTFF_QAF' undeclared
> > > >
> > > > Fixes: cc8f94656487 ("s390/time: move PTFF definitions")
> > > > Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> > >
> > > Thank you for the report and patch.
> > >
> > > This is linux-next only. Its a conflict between my kvms390 queue and
> > > Martins s390 queue. We cannot apply this directly as it would break
> > > the build of my tree when not merged in next. (and it does not apply
> > > on Martins tree).
> > >
> > > I will have a look how to fix that up.
> >
> > We could ask Stephen Rothwell to apply the patch only to linux-next? ;)
>
> Martin sent me the same patch earlier and I applied it to the merge of
> the kvms390 tree today. Someone needs to remember to tell Linus when
> the time comes.
I can take care of that. On your side, the resolution will have to migrate
to the KVM tree as soon as Christian sends me a pull request for 4.8.
Thanks,
Paolo
[toc] | [prev] | [next] | [standalone]
| From | Martin Schwidefsky <schwidefsky@de.ibm.com> |
|---|---|
| Date | 2016-06-08 08:40 +0200 |
| Message-ID | <rHFjI-4Tu-47@gated-at.bofh.it> |
| In reply to | #1416651 |
On Tue, 7 Jun 2016 22:49:30 +0100
Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:
> etr_ptff definitions are moved and renamed but we missed updating them
> here and as a result s390 defconfig and allmodconfig was failing with
> the error:
> arch/s390/kvm/kvm-s390.c:230:45: error: 'ETR_PTFF_QAF' undeclared
>
> Fixes: cc8f94656487 ("s390/time: move PTFF definitions")
> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> ---
>
> s390 defconfig build log is at:
> https://travis-ci.org/sudipm-mukherjee/parport/jobs/135776067
>
> arch/s390/kvm/kvm-s390.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
> index fa51aef..3039eaf 100644
> --- a/arch/s390/kvm/kvm-s390.c
> +++ b/arch/s390/kvm/kvm-s390.c
> @@ -29,7 +29,7 @@
> #include <linux/bitmap.h>
> #include <asm/asm-offsets.h>
> #include <asm/lowcore.h>
> -#include <asm/etr.h>
> +#include <asm/timex.h>
> #include <asm/pgtable.h>
> #include <asm/gmap.h>
> #include <asm/nmi.h>
> @@ -227,7 +227,9 @@ static void kvm_s390_cpu_feat_init(void)
> }
>
> if (test_facility(28)) /* TOD-clock steering */
> - etr_ptff(kvm_s390_available_subfunc.ptff, ETR_PTFF_QAF);
> + ptff(kvm_s390_available_subfunc.ptff,
> + sizeof(kvm_s390_available_subfunc.ptff),
> + PTFF_QAF);
>
> if (test_facility(17)) { /* MSA */
> __cpacf_query(CPACF_KMAC, kvm_s390_available_subfunc.kmac);
Already send the exact same patch to Stephen yesterday. But thanks anyway.
--
blue skies,
Martin.
"Reality continues to ruin my life." - Calvin.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web