* [PATCH] s390: fix build failure
@ 2015-12-22 6:40 Sudip Mukherjee
2015-12-22 6:51 ` Dan Williams
0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2015-12-22 6:40 UTC (permalink / raw)
To: Martin Schwidefsky, Heiko Carstens
Cc: linux-kernel, linux-s390, Sudip Mukherjee, Dan Williams,
Andrew Morton
s390 defconfig fails with the error:
ERROR: "phys_to_pfn_t" [drivers/s390/block/dcssblk.ko] undefined!
We need CONFIG_HAS_IOMEM for phys_to_pfn_t() and for that we need to
have CONFIG_PCI.
Fixes: bfac97e7b361 ("mm, dax, pmem: introduce pfn_t")
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
s390 defconfig with next-20151222 is at:
https://travis-ci.org/sudipm-mukherjee/parport/jobs/98258271
arch/s390/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/s390/defconfig b/arch/s390/defconfig
index 9256b48..e56b6df 100644
--- a/arch/s390/defconfig
+++ b/arch/s390/defconfig
@@ -207,3 +207,4 @@ CONFIG_CRC7=m
# CONFIG_XZ_DEC_ARMTHUMB is not set
# CONFIG_XZ_DEC_SPARC is not set
CONFIG_CMM=m
+CONFIG_PCI=y
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] s390: fix build failure
2015-12-22 6:40 Sudip Mukherjee
@ 2015-12-22 6:51 ` Dan Williams
0 siblings, 0 replies; 4+ messages in thread
From: Dan Williams @ 2015-12-22 6:51 UTC (permalink / raw)
To: Sudip Mukherjee
Cc: Martin Schwidefsky, Heiko Carstens, linux-kernel@vger.kernel.org,
linux-s390, Andrew Morton
On Mon, Dec 21, 2015 at 10:40 PM, Sudip Mukherjee
<sudipm.mukherjee@gmail.com> wrote:
> s390 defconfig fails with the error:
> ERROR: "phys_to_pfn_t" [drivers/s390/block/dcssblk.ko] undefined!
>
> We need CONFIG_HAS_IOMEM for phys_to_pfn_t() and for that we need to
> have CONFIG_PCI.
>
> Fixes: bfac97e7b361 ("mm, dax, pmem: introduce pfn_t")
> Cc: Dan Williams <dan.j.williams@intel.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> ---
Hi, I fixed this build breakage in v4 of the patch series that
introduces phys_to_pfn_t() [1]. Chnaging the config is not correct
the HAS_IOMEM dependency for the symbol needs to be satisfied.
[1]: https://lists.01.org/pipermail/linux-nvdimm/2015-December/003610.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] s390: fix build failure
@ 2016-04-01 12:35 Sudip Mukherjee
2016-04-01 14:02 ` Heiko Carstens
0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2016-04-01 12:35 UTC (permalink / raw)
To: Martin Schwidefsky, Heiko Carstens
Cc: linux-kernel, kernel-testers, linux-s390, Sudip Mukherjee,
Matt Redfearn
s390 defconfig and allmodconfig fails with the error:
kernel/seccomp.c: In function '__secure_computing_strict':
kernel/seccomp.c:526:3: error: implicit declaration of function
'get_compat_mode1_syscalls'
The retrieval of compat syscall numbers were moved into inline function
defined in asm-generic header but the asm-generic header was not being
used by s390.
Fixes: 5adddb612ca1 ("seccomp: Get compat syscalls from asm-generic header")
Cc: Matt Redfearn <matt.redfearn@imgtec.com>
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
---
Tested with s390 defconfig and allmodconfig build.
Build logs of next-20160401 are at:
https://travis-ci.org/sudipm-mukherjee/parport/jobs/119983952 (allmodconfig)
and
https://travis-ci.org/sudipm-mukherjee/parport/jobs/119983909 (defconfig)
arch/s390/include/asm/seccomp.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/s390/include/asm/seccomp.h b/arch/s390/include/asm/seccomp.h
index 781a9cf..e10f833 100644
--- a/arch/s390/include/asm/seccomp.h
+++ b/arch/s390/include/asm/seccomp.h
@@ -13,4 +13,6 @@
#define __NR_seccomp_exit_32 __NR_exit
#define __NR_seccomp_sigreturn_32 __NR_sigreturn
+#include <asm-generic/seccomp.h>
+
#endif /* _ASM_S390_SECCOMP_H */
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] s390: fix build failure
2016-04-01 12:35 [PATCH] s390: fix build failure Sudip Mukherjee
@ 2016-04-01 14:02 ` Heiko Carstens
0 siblings, 0 replies; 4+ messages in thread
From: Heiko Carstens @ 2016-04-01 14:02 UTC (permalink / raw)
To: Sudip Mukherjee
Cc: Martin Schwidefsky, linux-kernel, kernel-testers, linux-s390,
Matt Redfearn
On Fri, Apr 01, 2016 at 01:35:16PM +0100, Sudip Mukherjee wrote:
> s390 defconfig and allmodconfig fails with the error:
> kernel/seccomp.c: In function '__secure_computing_strict':
> kernel/seccomp.c:526:3: error: implicit declaration of function
> 'get_compat_mode1_syscalls'
>
> The retrieval of compat syscall numbers were moved into inline function
> defined in asm-generic header but the asm-generic header was not being
> used by s390.
>
> Fixes: 5adddb612ca1 ("seccomp: Get compat syscalls from asm-generic header")
> Cc: Matt Redfearn <matt.redfearn@imgtec.com>
> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> ---
>
> Tested with s390 defconfig and allmodconfig build.
> Build logs of next-20160401 are at:
> https://travis-ci.org/sudipm-mukherjee/parport/jobs/119983952 (allmodconfig)
> and
> https://travis-ci.org/sudipm-mukherjee/parport/jobs/119983909 (defconfig)
>
> arch/s390/include/asm/seccomp.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/s390/include/asm/seccomp.h b/arch/s390/include/asm/seccomp.h
> index 781a9cf..e10f833 100644
> --- a/arch/s390/include/asm/seccomp.h
> +++ b/arch/s390/include/asm/seccomp.h
> @@ -13,4 +13,6 @@
> #define __NR_seccomp_exit_32 __NR_exit
> #define __NR_seccomp_sigreturn_32 __NR_sigreturn
>
> +#include <asm-generic/seccomp.h>
> +
> #endif /* _ASM_S390_SECCOMP_H */
Applied with a modified changelog, since it makes sense anyway to include
the generic header file.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-04-01 14:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-01 12:35 [PATCH] s390: fix build failure Sudip Mukherjee
2016-04-01 14:02 ` Heiko Carstens
-- strict thread matches above, loose matches on Subject: below --
2015-12-22 6:40 Sudip Mukherjee
2015-12-22 6:51 ` Dan Williams
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).