[PATCH v2] clk: move orphan_list back to DEBUG_FS section

2020-11-18 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
commit 903c6bd937ca ("clk: Evict unregistered clks from parent caches") in v4.19.142 moves orphan_list to global section which is not used when CONFIG_DEBUG_FS is disabled. Fixes: drivers/clk/clk.c:49:27: error: 'orphan_list' defined but not used [-Werror=unused-variable] static struct

Re: [PATCH v2] modpost: make KBUILD_MODPOST_WARN also configurable for

2019-04-11 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
seems subject is incomplete in v2, v3 posted: https://lore.kernel.org/patchwork/patch/1060505/ Thanks! - Wladislav On 10.04.2019 11:23, Wiebe, Wladislav (Nokia - DE/Ulm) wrote: > Commit ea837f1c0503 ("kbuild: make modpost processing configurable") > was intended to give KBU

[PATCH v3] modpost: make KBUILD_MODPOST_WARN also configurable for external modules

2019-04-11 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Commit ea837f1c0503 ("kbuild: make modpost processing configurable") was intended to give KBUILD_MODPOST_WARN flexibility to be configurable. Right now KBUILD_MODPOST_WARN gets just ignored when KBUILD_EXTMOD is set which happens per default when building modules out of the tree. This change

Re: [PATCH] modpost: make KBUILD_MODPOST_WARN also configurable for external modules

2019-04-10 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Hi, On 09.04.2019 11:00, Masahiro Yamada wrote: > Hi. > > On Mon, Apr 8, 2019 at 5:03 PM Wiebe, Wladislav (Nokia - DE/Ulm) > wrote: >> >> Hi! >> >> On 07.04.2019 11:04, Masahiro Yamada wrote: >>> (+CC Jonas Gorski) >>> >>> >&

[PATCH v2] modpost: make KBUILD_MODPOST_WARN also configurable for

2019-04-10 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Commit ea837f1c0503 ("kbuild: make modpost processing configurable") was intended to give KBUILD_MODPOST_WARN flexibility to be configurable. Right now KBUILD_MODPOST_WARN gets just ignored when KBUILD_EXTMOD is set which happens per default when building modules out of the tree. This change

Re: [PATCH] modpost: make KBUILD_MODPOST_WARN also configurable for external modules

2019-04-08 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Hi! On 07.04.2019 11:04, Masahiro Yamada wrote: > (+CC Jonas Gorski) > > > On Tue, Mar 26, 2019 at 6:58 PM Wiebe, Wladislav (Nokia - DE/Ulm) > wrote: >> >> Commit ea837f1c0503 ("kbuild: make modpost processing configurable") >> was inten

[PATCH] modpost: make KBUILD_MODPOST_WARN also configurable for external modules

2019-03-26 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Commit ea837f1c0503 ("kbuild: make modpost processing configurable") was intended to give KBUILD_MODPOST_WARN flexibility to be configurable. Right now KBUILD_MODPOST_WARN gets just ignored when KBUILD_EXTMOD is set which happens per default when building modules out of the tree. This change

RE: [PATCH 2/2] EDAC: add ARM Cortex A15 L2 internal asynchronous error detection driver

2019-01-09 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
; can do. > > Is this a level or edge interrupt? Is it necessary to clear that bit in the > register > to lower the interrupt line? > The TRM talks about 'pending L2 internal asynchronous error', pending > makes me suspect this is at least possible. If it is, a level-interrupt to o

[PATCH 1/2] dt-bindings: edac: ARM Cortex A15 L2 asynchronous error detection

2019-01-08 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Add property description + example for using the Cortex A15 L2 asynchronous error detection driver. Signed-off-by: Wladislav Wiebe --- .../bindings/edac/cortex_a15_l2_async_edac.txt | 22 ++ MAINTAINERS| 7 +++ 2 files

[PATCH 2/2] EDAC: add ARM Cortex A15 L2 internal asynchronous error detection driver

2019-01-08 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
This driver adds support for L2 internal asynchronous error detection caused by L2 RAM double-bit ECC error or illegal writes to the Interrupt Controller memory-map region on the Cortex A15. Signed-off-by: Wladislav Wiebe --- MAINTAINERS | 1 + drivers/edac/Kconfig

[PATCH 0/2] Support for ARM Cortex A15 L2 internal asynchronous error detection

2019-01-08 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
This patch series adds support for L2 internal asynchronous error detection caused by L2 RAM double-bit ECC error or illegal writes to the Interrupt Controller memory-map region on the Cortex A15. Testing: - works as module (loadable & unloadable) - OK - works as build in kernel driver - OK -

RE: [PATCH] arm: mm: fault: check ADFSR in case of abort

2018-10-29 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Hi Robin, Russel, > -Original Message- > From: Robin Murphy > Sent: Monday, October 29, 2018 3:52 PM [..] > On 29/10/2018 14:20, Wiebe, Wladislav (Nokia - DE/Ulm) wrote: > > When running into situations like: > > "Unhandled fault: synchronous ex

RE: [PATCH] arm: mm: fault: check ADFSR in case of abort

2018-10-29 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Hi Robin, Russel, > -Original Message- > From: Robin Murphy > Sent: Monday, October 29, 2018 3:52 PM [..] > On 29/10/2018 14:20, Wiebe, Wladislav (Nokia - DE/Ulm) wrote: > > When running into situations like: > > "Unhandled fault: synchronous ex

[PATCH] arm: mm: fault: check ADFSR in case of abort

2018-10-29 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
When running into situations like: "Unhandled fault: synchronous external abort (0x210) at 0xXXX" or "Unhandled prefetch abort: synchronous external abort (0x210) at 0xXXX" it is useful to know the content of ADFSR (Auxiliary Data Fault Status Register) to indicate an ECC double-bit error in L1 or

[PATCH] arm: mm: fault: check ADFSR in case of abort

2018-10-29 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
When running into situations like: "Unhandled fault: synchronous external abort (0x210) at 0xXXX" or "Unhandled prefetch abort: synchronous external abort (0x210) at 0xXXX" it is useful to know the content of ADFSR (Auxiliary Data Fault Status Register) to indicate an ECC double-bit error in L1 or

[PATCH] ARM: module: suppress misleading allocation failure warning

2016-09-06 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
in case __vmalloc_node_range fails to allocate memory inside of MODULES_VADDR <-> MODULES_END range, it suggests to increase vmalloc size, like reported below: .. [ 41.526591] vmap allocation for size 65536 failed: use vmalloc= to increase size. [ 41.526597] vmalloc: allocation failure: 58712

[PATCH] ARM: module: suppress misleading allocation failure warning

2016-09-06 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
in case __vmalloc_node_range fails to allocate memory inside of MODULES_VADDR <-> MODULES_END range, it suggests to increase vmalloc size, like reported below: .. [ 41.526591] vmap allocation for size 65536 failed: use vmalloc= to increase size. [ 41.526597] vmalloc: allocation failure: 58712

[PATCH] ARM: fix linker call for ARM_MODULE_PLTS

2016-09-02 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
module.lds script doesn't get called when CONFIG_ARM_MODULE_PLTS is enabled. Use KBUILD_LDFLAGS_MODULE to fix it. Signed-off-by: Wladislav Wiebe --- arch/arm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Makefile

[PATCH] ARM: fix linker call for ARM_MODULE_PLTS

2016-09-02 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
module.lds script doesn't get called when CONFIG_ARM_MODULE_PLTS is enabled. Use KBUILD_LDFLAGS_MODULE to fix it. Signed-off-by: Wladislav Wiebe --- arch/arm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 61f6ccc..01c6025

RE: [PATCH] ARM: fix linker call for ARM_MODULE_PLTS

2016-09-02 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
> From: Russell King - ARM Linux [mailto:li...@armlinux.org.uk] > Sent: Friday, September 02, 2016 11:25 AM > > On Fri, Sep 02, 2016 at 09:17:58AM +0000, Wiebe, Wladislav (Nokia - DE/Ulm) > wrote: > > module.lds script doesn't get called when > > CONFIG_ARM_MODU

RE: [PATCH] ARM: fix linker call for ARM_MODULE_PLTS

2016-09-02 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
> From: Russell King - ARM Linux [mailto:li...@armlinux.org.uk] > Sent: Friday, September 02, 2016 11:25 AM > > On Fri, Sep 02, 2016 at 09:17:58AM +0000, Wiebe, Wladislav (Nokia - DE/Ulm) > wrote: > > module.lds script doesn't get called when > > CONFIG_ARM_MODU

[PATCH] pstore: add support for 64 Bit address space

2015-11-13 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Some architectures has there reserved RAM in 64 Bit address space. Therefore converting mem_address module parameter to ullong. Signed-off-by: Wladislav Wiebe --- fs/pstore/ram.c|4 ++-- include/linux/pstore_ram.h |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff

[PATCH] pstore: add support for 64 Bit address space

2015-11-13 Thread Wiebe, Wladislav (Nokia - DE/Ulm)
Some architectures has there reserved RAM in 64 Bit address space. Therefore converting mem_address module parameter to ullong. Signed-off-by: Wladislav Wiebe --- fs/pstore/ram.c|4 ++-- include/linux/pstore_ram.h |2 +- 2 files changed, 3