linux-next: Signed-off-by missing for commit in the powerpc tree

2019-02-23 Thread Stephen Rothwell
Hi all, Commit f68e7927212f ("Revert "powerpc/book3s32: Reorder _PAGE_XXX flags to simplify TLB handling"") is missing a Signed-off-by from its author and committer. Reverts are commits as well :-) -- Cheers, Stephen Rothwell pgp62262pXv29.pgp Description: OpenPGP digital signature

Re: [PATCH V3 00/10] X86/KVM/Hyper-V: Add HV ept tlb range list flush support in KVM

2019-02-23 Thread Tianyu Lan
On Sat, Feb 23, 2019 at 2:26 AM Paolo Bonzini wrote: > > On 22/02/19 16:06, lantianyu1...@gmail.com wrote: > > From: Lan Tianyu > > > > This patchset is to introduce hv ept tlb range list flush function > > support in the KVM MMU component. Flushing ept tlbs of several address > > range can be do

Re: [GIT PULL] Please pull powerpc/linux.git powerpc-5.0-6 tag

2019-02-23 Thread pr-tracker-bot
The pull request you sent on Sat, 23 Feb 2019 23:46:23 +1100: > https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git > tags/powerpc-5.0-6 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/e60b5f79bd7529e76b13cf1e85823abbd0e33634 Thank you! -- Deet-doot-do

Re: [PATCH v16 05/21] powerpc: prep stack walkers for THREAD_INFO_IN_TASK

2019-02-23 Thread Michael Ellerman
Michael Ellerman writes: > diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c > index ce393df243aa..4ffbb677c9f5 100644 > --- a/arch/powerpc/kernel/process.c > +++ b/arch/powerpc/kernel/process.c > @@ -2067,6 +2081,9 @@ void show_stack(struct task_struct *tsk, unsigned long

[PATCH] powerpc/64: Simplify __secondary_start paca->kstack handling

2019-02-23 Thread Michael Ellerman
In __secondary_start() we load the thread_info of the idle task of the secondary CPU from current_set[cpu], and then convert it into a stack pointer before storing that back to paca->kstack. As pointed out in commit f761622e5943 ("powerpc: Initialise paca->kstack before early_setup_secondary") it'

[GIT PULL] Please pull powerpc/linux.git powerpc-5.0-6 tag

2019-02-23 Thread Michael Ellerman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Linus, Please pull another powerpc fix for 5.0: The following changes since commit a58007621be33e9f7c7bed5d5ff8ecb914e1044a: powerpc/64s: Fix possible corruption on big endian due to pgd/pud_present() (2019-02-17 15:24:45 +1100) are available

Re: [PATCH] ASoC: fsl_ssi: remove unsupported formats in i2s master mode

2019-02-23 Thread Sven Van Asbroeck
On Thu, Feb 21, 2019 at 10:35 AM Sven Van Asbroeck wrote: > > Fix by constraining the frame bits in i2s master mode > to 32 * channels. This will filter out those formats > that the ssi cannot support. > Russell King (ARM Linux) informs me that this is not correct, and that the problem should be

[PATCH 00/12] add missing of_node_put after of_device_is_available

2019-02-23 Thread Julia Lawall
Failure of of_device_is_available implies that the device node should be put, if it is not used otherwise. --- arch/arm/mach-omap2/display.c|4 +++- arch/powerpc/platforms/83xx/usb.c|4 +++- drivers/bus/arm-cci.c

[PATCH 03/12] PowerPC-83xx: add missing of_node_put after of_device_is_available

2019-02-23 Thread Julia Lawall
Add an of_node_put when a tested device node is not available. The semantic patch that fixes this problem is as follows (http://coccinelle.lip6.fr): // @@ identifier f; local idexpression e; expression x; @@ e = f(...); ... when != of_node_put(e) when != x = e when != e = x when any