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
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
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
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
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'
-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
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
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
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