[PATCH] powerpc/mm: Define MAX_PHYSMEM_BITS for all 64-bit configs

2019-04-08 Thread Michael Ellerman
The recent commit 8bc086899816 ("powerpc/mm: Only define MAX_PHYSMEM_BITS in SPARSEMEM configurations") removed our definition of MAX_PHYSMEM_BITS when SPARSEMEM is disabled. This inadvertently broke some 64-bit FLATMEM using configs with eg: arch/powerpc/include/asm/book3s/64/mmu-hash.h:584:6:

Re: [PATCH v10 02/18] counter: Documentation: Add Generic Counter sysfs documentation

2019-04-08 Thread William Breathitt Gray
On Mon, Apr 08, 2019 at 11:55:31PM +0200, Pavel Machek wrote: > On Tue 2019-04-02 15:30:37, William Breathitt Gray wrote: > > This patch adds standard documentation for the userspace sysfs > > attributes of the Generic Counter interface. > > > > Reviewed-by: Jonathan Cameron > > Signed-off-by: Wi

Re: [PATCH v10 01/18] counter: Introduce the Generic Counter interface

2019-04-08 Thread William Breathitt Gray
On Mon, Apr 08, 2019 at 11:55:15PM +0200, Pavel Machek wrote: > Hi! > > > +const char *const counter_count_direction_str[2] = { > > + [COUNTER_COUNT_DIRECTION_FORWARD] = "forward", > > + [COUNTER_COUNT_DIRECTION_BACKWARD] = "backward" > > +}; > > +EXPORT_SYMBOL_GPL(counter_count_direction_str)

[PATCH v2] powerpc/watchdog: Use hrtimers for per-CPU heartbeat

2019-04-08 Thread Nicholas Piggin
Using a jiffies timer creates a dependency on the tick_do_timer_cpu incrementing jiffies. If that CPU has locked up and jiffies is not incrementing, the watchdog heartbeat timer for all CPUs stops and creates false positives and confusing warnings on local CPUs, and also causes the SMP detector to

[PATCH] powerpc/mm/radix: Do slb preload only with hash translation mode

2019-04-08 Thread Aneesh Kumar K.V
Add radix_enabled check to avoid slb preload with radix translation. Signed-off-by: Aneesh Kumar K.V --- Without this we result in kernel crash as we move hash related variables out of mm_context_t arch/powerpc/kernel/process.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --gi

Re: [EXT] Re: [PATCH V1] ASoC: fsl_esai: replace fall-through with break

2019-04-08 Thread Nicolin Chen
Hi Gustavo, On Mon, Apr 08, 2019 at 10:20:25PM -0500, Gustavo A. R. Silva wrote: > >>> diff --git a/sound/soc/fsl/fsl_esai.c b/sound/soc/fsl/fsl_esai.c index > >>> c7410bbfd2af..bad0dfed6b68 100644 > >>> --- a/sound/soc/fsl/fsl_esai.c > >>> +++ b/sound/soc/fsl/fsl_esai.c > >>> @@ -251,7 +251,7 @@

Re: [EXT] Re: [PATCH V1] ASoC: fsl_esai: replace fall-through with break

2019-04-08 Thread Gustavo A. R. Silva
Hi Shengjiu, On 4/8/19 9:54 PM, S.j. Wang wrote: > Hi Gustavo > >> >> >> On 4/8/19 4:28 AM, S.j. Wang wrote: >>> case ESAI_HCKT_EXTAL and case ESAI_HCKR_EXTAL should be >> independent of >>> each other, so replace fall-through with break. >>> >> If this is correct, then you should use the followi

Re: [PATCH 8/8] powerpc/eeh: Remove eeh_probe_devices() and eeh_addr_cache_build()

2019-04-08 Thread Sam Bobroff
On Wed, Mar 20, 2019 at 05:05:49PM +1100, Alexey Kardashevskiy wrote: > > > On 20/03/2019 13:58, Sam Bobroff wrote: > > Now that EEH support for all devices (on PowerNV and pSeries) is > > provided by the pcibios bus add device hooks, eeh_probe_devices() and > > eeh_addr_cache_build() are redunda

Re: [PATCH 5/8] powerpc/eeh: Add eeh_show_enabled()

2019-04-08 Thread Sam Bobroff
On Wed, Mar 20, 2019 at 05:02:23PM +1100, Alexey Kardashevskiy wrote: > > > On 20/03/2019 13:58, Sam Bobroff wrote: > > Move the EEH enabled message into it's own function so that future > > work can call it from multiple places. > > > > Signed-off-by: Sam Bobroff > > --- > > arch/powerpc/incl

[PATCH v2] powerpc/64s/radix: Fix radix segment exception handling

2019-04-08 Thread Nicholas Piggin
Commit 48e7b76957 ("powerpc/64s/hash: Convert SLB miss handlers to C") broke the radix-mode segment exception handler. In radix mode, this is exception is not an SLB miss, rather it signals that the EA is outside the range translated by any page table. The commit lost the radix feature alternate c

RE: [EXT] Re: [PATCH V1] ASoC: fsl_esai: replace fall-through with break

2019-04-08 Thread S.j. Wang
Hi Gustavo > > > On 4/8/19 4:28 AM, S.j. Wang wrote: > > case ESAI_HCKT_EXTAL and case ESAI_HCKR_EXTAL should be > independent of > > each other, so replace fall-through with break. > > > If this is correct, then you should use the following "Fixes" tag instead, > which is the one that introduce

Re: [RFC PATCH v2 10/14] kernel/watchdog: Add a function to obtain the watchdog_allowed_mask

2019-04-08 Thread Ricardo Neri
On Tue, Mar 26, 2019 at 10:22:40PM +0100, Thomas Gleixner wrote: > On Wed, 27 Feb 2019, Ricardo Neri wrote: > > > > -struct cpumask watchdog_allowed_mask __read_mostly; > > +static struct cpumask watchdog_allowed_mask __read_mostly; > > That hunk is correct. I'll send a separate patch with this

Re: [RFC PATCH v2 09/14] watchdog/hardlockup: Make arch_touch_nmi_watchdog() to hpet-based implementation

2019-04-08 Thread Ricardo Neri
On Tue, Mar 26, 2019 at 10:20:41PM +0100, Thomas Gleixner wrote: > On Thu, 28 Feb 2019, Ricardo Neri wrote: > > > > > > > > -#if defined(CONFIG_HARDLOCKUP_DETECTOR_PERF) > > > > +#if defined(CONFIG_HARDLOCKUP_DETECTOR_PERF) || \ > > > > +defined(CONFIG_X86_HARDLOCKUP_DETECTOR_HPET) > > > > >

Re: [RFC PATCH v2 08/14] watchdog/hardlockup: Decouple the hardlockup detector from perf

2019-04-08 Thread Ricardo Neri
On Tue, Mar 26, 2019 at 10:18:32PM +0100, Thomas Gleixner wrote: > On Wed, 27 Feb 2019, Ricardo Neri wrote: > > +// SPDX-License-Identifier: GPL-2.0 > > +/* > > + * Detect hard lockups on a system > > + * > > + * Copyright (C) Intel Corporation 2019 > > + * > > + * Note: All of this code comes from

Re: [PATCH 3/8] powerpc/eeh: Convert PNV_PHB_FLAG_EEH to global flag

2019-04-08 Thread Sam Bobroff
On Wed, Mar 20, 2019 at 05:02:44PM +1100, Alexey Kardashevskiy wrote: > > > On 20/03/2019 13:58, Sam Bobroff wrote: > > The PHB flag, PNV_PHB_FLAG_EEH, is set (on PowerNV) individually on > > each PHB once the EEH subsystem is ready. It is the only use of the > > flags member of the phb struct. >

Re: [PATCH V3 0/7] Add FOLL_LONGTERM to GUP fast and use it

2019-04-08 Thread Ira Weiny
On Thu, Mar 28, 2019 at 01:44:15AM -0700, 'Ira Weiny' wrote: > From: Ira Weiny > > Following discussion and review[1] here are the cleanups requested. > > The biggest change for V3 was the disabling of the ability to use > FOLL_LONGTERM > in get_user_pages[unlocked|locked|remote] > > Comments

[PATCH v2 3/3] powerpc: Add support to initialize ima policy rules

2019-04-08 Thread Nayna Jain
PowerNV secure boot relies on the kernel IMA security subsystem to perform the OS kernel image signature verification. Since each secure boot mode has different IMA policy requirements, dynamic definition of the policy rules based on the runtime secure boot mode of the system is required. On system

[PATCH v2 2/3] powerpc/powernv: detect the secure boot mode of the system

2019-04-08 Thread Nayna Jain
PowerNV secure boot defines different IMA policies based on the secure boot state of the system. This patch defines a function to detect the secure boot state of the system. Signed-off-by: Nayna Jain --- arch/powerpc/include/asm/secboot.h | 21 + arch/powerpc/platforms/powernv/Mak

[PATCH v2 1/3] powerpc/powernv: Add support for OPAL_SECVAR_GET

2019-04-08 Thread Nayna Jain
From: Claudio Carvalho The X.509 certificates trusted by the platform and other information required to secure boot the OS kernel are wrapped in secure variables, which are controlled by OPAL. This patch adds support to read OPAL secure variables through OPAL_SECVAR_GET call. It returns the data

[PATCH v2 0/3] powerpc: Enabling secure boot on powernv systems - Part 1

2019-04-08 Thread Nayna Jain
This patch set is part of a series that implements secure boot on PowerNV systems. In order to verify the OS kernel on PowerNV, secure boot requires X.509 certificates trusted by the platform, the secure boot modes, and several other pieces of information. These are stored in secure variables cont

Re: [PATCH v10 02/18] counter: Documentation: Add Generic Counter sysfs documentation

2019-04-08 Thread Pavel Machek
On Tue 2019-04-02 15:30:37, William Breathitt Gray wrote: > This patch adds standard documentation for the userspace sysfs > attributes of the Generic Counter interface. > > Reviewed-by: Jonathan Cameron > Signed-off-by: William Breathitt Gray > --- > Documentation/ABI/testing/sysfs-bus-counter

Re: [PATCH v10 01/18] counter: Introduce the Generic Counter interface

2019-04-08 Thread Pavel Machek
Hi! > +const char *const counter_count_direction_str[2] = { > + [COUNTER_COUNT_DIRECTION_FORWARD] = "forward", > + [COUNTER_COUNT_DIRECTION_BACKWARD] = "backward" > +}; > +EXPORT_SYMBOL_GPL(counter_count_direction_str); > + > +const char *const counter_count_mode_str[4] = { > + [COUNTE

Re: [PATCH RFC/RFT 1/6] clk: core: add support for generic big endian accesses

2019-04-08 Thread Stephen Boyd
Quoting Jonas Gorski (2019-04-08 03:20:34) > Add a generic flag to mark a clock as big endian register based, and add > accessors following these. I like the idea of getting rid of clk_readl() and clk_writel(), but I'd rather see that this flag is per-basic clk type instead of global to all clks.

[PATCH linux-next v9 5/7] powerpc: define syscall_get_error()

2019-04-08 Thread Dmitry V. Levin
syscall_get_error() is required to be implemented on this architecture in addition to already implemented syscall_get_nr(), syscall_get_arguments(), syscall_get_return_value(), and syscall_get_arch() functions in order to extend the generic ptrace API with PTRACE_GET_SYSCALL_INFO request. Cc: Mich

[PATCH linux-next v9 0/7] ptrace: add PTRACE_GET_SYSCALL_INFO request

2019-04-08 Thread Dmitry V. Levin
[I suggest to stop waiting for more acks and merge this into linux-next as is.] PTRACE_GET_SYSCALL_INFO is a generic ptrace API that lets ptracer obtain details of the syscall the tracee is blocked in. There are two reasons for a special syscall-related ptrace request. Firstly, with the current

Re: [PATCH V1] ASoC: fsl_esai: replace fall-through with break

2019-04-08 Thread Gustavo A. R. Silva
On 4/8/19 4:28 AM, S.j. Wang wrote: > case ESAI_HCKT_EXTAL and case ESAI_HCKR_EXTAL should be independent of > each other, so replace fall-through with break. > If this is correct, then you should use the following "Fixes" tag instead, which is the one that introduced the bug: Fixes: 43d24e76b

Re: [PATCH v2] fs/dax: deposit pagetable even when installing zero page

2019-04-08 Thread Dan Williams
On Mon, Apr 8, 2019 at 2:39 AM Aneesh Kumar K.V wrote: > > > Hi Dan, > > Dan Williams writes: > > > On Wed, Mar 13, 2019 at 2:58 AM Jan Kara wrote: > >> > >> On Wed 13-03-19 10:17:17, Aneesh Kumar K.V wrote: > >> > > >> > Hi Dan/Andrew/Jan, > >> > > >> > "Aneesh Kumar K.V" writes: > >> > > >>

[PATCH RFC/RFT 4/6] clk: mux: make endian aware

2019-04-08 Thread Jonas Gorski
Switch clk-mux to the endianness aware accessors to allow big endian mux clocks on a per device level. Signed-off-by: Jonas Gorski --- drivers/clk/clk-mux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c index 2ad2df2e8909.

[PATCH RFC/RFT 6/6] clk: core: remove powerpc special handling

2019-04-08 Thread Jonas Gorski
Now that the powerpc clocks are properly marked as big endian, we can remove the special handling for PowerPC. Signed-off-by: Jonas Gorski --- include/linux/clk-provider.h | 16 1 file changed, 16 deletions(-) diff --git a/include/linux/clk-provider.h b/include/linux/clk-provid

[PATCH RFC/RFT 1/6] clk: core: add support for generic big endian accesses

2019-04-08 Thread Jonas Gorski
Add a generic flag to mark a clock as big endian register based, and add accessors following these. Signed-off-by: Jonas Gorski --- drivers/clk/clk.c| 1 + include/linux/clk-provider.h | 27 +++ 2 files changed, 28 insertions(+) diff --git a/drivers/clk/clk.

[PATCH RFC/RFT 2/6] clk: gate: make endian-aware

2019-04-08 Thread Jonas Gorski
Switch clk-gate to the endianness aware accessors to allow big endian gated clocks on a per device level. Signed-off-by: Jonas Gorski --- drivers/clk/clk-gate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/clk/clk-gate.c b/drivers/clk/clk-gate.c index f05823c

[PATCH RFC/RFT 0/6] clk: make register endianness a run-time property

2019-04-08 Thread Jonas Gorski
Currently the endianness for register accesses of basic clocks if fixed based on the architecture (BE for PowerPC, LE for everyone else). This is inconvenient for architectures that support both. To avoid adding more rules to the #ifdef, this patchset adds a new generic flag to tag the registers a

[PATCH RFC/RFT 3/6] clk: divider: make endian aware

2019-04-08 Thread Jonas Gorski
Switch clk-divider to the endianness aware accessors to allow big endian divider clocks on a per device level. Signed-off-by: Jonas Gorski --- drivers/clk/clk-divider.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider

[PATCH RFC/RFT 5/6] powerpc/512x: mark clocks as big endian

2019-04-08 Thread Jonas Gorski
These clocks' registers are accessed as big endian, so mark them as such. Signed-off-by: Jonas Gorski --- arch/powerpc/platforms/512x/clock-commonclk.c | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/platforms/512x/clock-commonclk.c b/arch/powerpc/

Re: [PATCH v2 1/2] cpuidle : auto-promotion for cpuidle states

2019-04-08 Thread Daniel Axtens
Hi, Sorry, just realised another thing I wanted to ask: > @@ -442,6 +442,26 @@ static int menu_select(struct cpuidle_driver *drv, > struct cpuidle_device *dev, > } > } > > > +#ifdef CPUIDLE_FLAG_AUTO_PROMOTION Why is this based on CPUIDLE_FLAG_ rather than CONFIG_CPU_IDLE_?

Re: [PATCH v2 2/2] cpuidle : Add auto-promotion flag to cpuidle flags

2019-04-08 Thread Daniel Axtens
Abhishek Goel writes: > This patch sets up flags for the state which needs to be auto-promoted. On > POWERNV system, only lite states need to be autopromoted. We identify lite > states by those which do not lose user context. That information has been > used to set the flag for lite states. > > S

Re: [PATCH v2 1/2] cpuidle : auto-promotion for cpuidle states

2019-04-08 Thread Daniel Axtens
Hi Abhishek, > Currently, the cpuidle governors (menu /ladder) determine what idle state > an idling CPU should enter into based on heuristics that depend on the > idle history on that CPU. Given that no predictive heuristic is perfect, > there are cases where the governor predicts a shallow idle

[PATCH v2 3/3] powerpc/mm: Reduce memory usage for mm_context_t for radix

2019-04-08 Thread Aneesh Kumar K.V
Currently, our mm_context_t on book3s64 include all hash specific context details like slice mask and subpage protection details. We can skip allocating these with radix translation. This will help us to save 8K per mm_context with radix translation. With the patch applied we have sizeof(mm_conte

[PATCH v2 2/3] powerpc/mm: Move slb_addr_linit to early_init_mmu

2019-04-08 Thread Aneesh Kumar K.V
Avoid #ifdef in generic code. Also enables us to do this specific to MMU translation mode on book3s64 Signed-off-by: Aneesh Kumar K.V --- arch/powerpc/kernel/setup-common.c | 11 --- arch/powerpc/mm/hash_utils_64.c| 2 ++ arch/powerpc/mm/tlb_nohash.c | 6 ++ 3 files chang

[PATCH v2 1/3] powerpc/mm: Add helpers for accessing hash translation related variables

2019-04-08 Thread Aneesh Kumar K.V
We want to switch to allocating them runtime only when hash translation is enabled. Add helpers so that both book3s and nohash can be adapted to upcoming change easily. Signed-off-by: Aneesh Kumar K.V --- arch/powerpc/include/asm/book3s/64/mmu-hash.h | 4 +- arch/powerpc/include/asm/book3s/64/m

[PATCH v2 0/3] Reduce memory usage for mm_context_t

2019-04-08 Thread Aneesh Kumar K.V
This patch moves hash translation related context variables to another structure and runtime allocate that based on translation mode. Aneesh Kumar K.V (3): powerpc/mm: Add helpers for accessing hash translation related variables powerpc/mm: Move slb_addr_linit to early_init_mmu powerpc/m

Re: powerpc/vdso32: fix CLOCK_MONOTONIC on PPC64

2019-04-08 Thread Michael Ellerman
On Thu, 2019-04-04 at 12:20:05 UTC, Christophe Leroy wrote: > Commit b5b4453e7912 ("powerpc/vdso64: Fix CLOCK_MONOTONIC > inconsistencies across Y2038") changed the type of wtom_clock_sec > to s64 on PPC64. Therefore, VDSO32 needs to read it with a 4 bytes > shift in order to retrieve the lower par

Re: powerpc/rtas: fix early boot failure.

2019-04-08 Thread Michael Ellerman
On Mon, 2019-03-25 at 08:43:33 UTC, Christophe Leroy wrote: > Commit 0df977eafc79 ("powerpc/6xx: Don't use SPRN_SPRG2 for storing > stack pointer while in RTAS") changes the code to use a field in > thread struct to store the stack pointer while in RTAS instead of > using SPRN_SPRG2. It therefore c

[PATCH] selftests/powerpc: Add a test of bad (out-of-range) accesses

2019-04-08 Thread Michael Ellerman
Userspace isn't allowed to access certain address ranges, make sure we actually test that to at least some degree. This would have caught the recent bug where the SLB fault handler was incorrectly called on an out-of-range access when using the Radix MMU. Signed-off-by: Michael Ellerman --- too

Re: [PATCH v8 2/2] powerpc/64s: KVM update for reimplement book3s idle code in C

2019-04-08 Thread kbuild test robot
/commits/Nicholas-Piggin/powerpc-64s-reimplement-book3s-idle-code-in-C/20190408-181455 base: https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next config: powerpc-defconfig (attached as .config) compiler: powerpc64-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0 reproduce: wget https

Re: [PATCH] powerpc/configs: Enable CONFIG_USB_XHCI_HCD by default

2019-04-08 Thread Michael Ellerman
Thomas Huth writes: > On 12/02/2019 00.31, David Gibson wrote: >> On Mon, 11 Feb 2019 12:37:12 +0100 >> Thomas Huth wrote: >> >>> Recent versions of QEMU provide a XHCI device by default these >>> days instead of an old-fashioned OHCI device: >>> >>> https://git.qemu.org/?p=qemu.git;a=commitdif

Re: [PATCH v4 0/6] normalize IOMMU dma mode boot options

2019-04-08 Thread Leizhen (ThunderTown)
On 2019/4/8 14:32, Thomas Gleixner wrote: > On Mon, 8 Apr 2019, Leizhen (ThunderTown) wrote: >>> >>> This will break systems using boot options as now, and I think >>> this is unacceptable. If you want to do so, just introduce iommu.dma_mode >>> on top of those iommu boot options with dma mode b

Re: [PATCH v2] fs/dax: deposit pagetable even when installing zero page

2019-04-08 Thread Aneesh Kumar K.V
Hi Dan, Dan Williams writes: > On Wed, Mar 13, 2019 at 2:58 AM Jan Kara wrote: >> >> On Wed 13-03-19 10:17:17, Aneesh Kumar K.V wrote: >> > >> > Hi Dan/Andrew/Jan, >> > >> > "Aneesh Kumar K.V" writes: >> > >> > > Architectures like ppc64 use the deposited page table to store hardware >> > >

[PATCH V1] ASoC: fsl_esai: replace fall-through with break

2019-04-08 Thread S.j. Wang
case ESAI_HCKT_EXTAL and case ESAI_HCKR_EXTAL should be independent of each other, so replace fall-through with break. Fixes: 16bbeb2b43c3 ("ASoC: fsl_esai: Mark expected switch fall-through") Signed-off-by: Shengjiu Wang --- sound/soc/fsl/fsl_esai.c | 2 +- 1 file changed, 1 insertion(+), 1 de

Re: [PATCH v2 1/2] bus: mc-bus: Add support for mapping shareable portals

2019-04-08 Thread Laurentiu Tudor
Hi Roy, On 05.04.2019 17:41, Roy Pledge wrote: > Starting with v5 of NXP QBMan devices the hardware supports using > regular cacheable/shareable memory as the backing store for the > portals. > > This patch adds support for the new portal mode by switching to > use the DPRC get object region v2 c

Re: [PATCH v8 1/2] powerpc/64s: reimplement book3s idle code in C

2019-04-08 Thread Satheesh Rajendran
Hi, Hit with below kernel crash during Power8 Host boot with this patch series on top of powerpc merge branch commit https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git/commit/?h=merge&id=6a821ffee18a6e6c0027c523fa8c958df98ca361 built with ppc64le_defconfig Host Console log: [

Applied "ASoC: imx-pcm: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-pcm: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linu

Applied "ASoC: eukrea-tlv320: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: eukrea-tlv320: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent t

Applied "ASoC: fsl-dma: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: fsl-dma: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linu

Applied "ASoC: imx-audmux: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-audmux: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to L

Applied "ASoC: imx-es8328: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-es8328: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to L

Applied "ASoC: imx-mc13783: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-mc13783: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: imx-pcm-fiq: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-pcm-fiq: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: imx-spdif: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-spdif: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Li

Applied "ASoC: imx-ssi: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: imx-ssi: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linu

Re: [PATCH v3] powerpc/mm: move warning from resize_hpt_for_hotplug()

2019-04-08 Thread Laurent Vivier
On 20/03/2019 13:47, Michael Ellerman wrote: > Laurent Vivier writes: >> Hi Michael, >> >> as it seems good now, could you pick up this patch for merging? > > I'll start picking up patches for next starting after rc2, so next week. > > If you think it's a bug fix I can put it into fixes now, but

Applied "ASoC: mpc5200_dma: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: mpc5200_dma: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: mpc5200_psc_ac97: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: mpc5200_psc_ac97: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sen

Applied "ASoC: mpc5200_psc_i2s: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: mpc5200_psc_i2s: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent

Applied "ASoC: mpc8610_hpcd: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: mpc8610_hpcd: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: mx27vis-aic32x4: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: mx27vis-aic32x4: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent

Applied "ASoC: p1022_ds: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: p1022_ds: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Lin

Applied "ASoC: p1022_rdk: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: p1022_rdk: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Li

Applied "ASoC: pcm030-audio-fabric: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: pcm030-audio-fabric: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and

Applied "ASoC: phycore-ac97: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: phycore-ac97: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: wm1133-ev1: Switch to SPDX identifier" to the asoc tree

2019-04-08 Thread Mark Brown
The patch ASoC: wm1133-ev1: Switch to SPDX identifier has been applied to the asoc tree at https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to L