From: "Naveen N. Rao"
Date: Tue, 7 Jun 2016 19:02:17 +0530
> Please note that patch [2] is a pre-requisite for this patchset, and is
> not yet upstream.
...
> [1] http://thread.gmane.org/gmane.linux.kernel/2188694
> [2] http://thread.gmane.org/gmane.linux.ports.ppc.embedded/96514
Because of #2
On Thu, 2016-06-02 at 11:01 +0200, Arnd Bergmann wrote:
> On Wednesday, June 1, 2016 8:24:20 PM CEST Scott Wood wrote:
> > On Mon, 2016-05-30 at 15:18 +0200, Arnd Bergmann wrote:
> > > All users of this driver are PowerPC specific and the header file
> > > has no business in the global include/linu
On Thu, 2016-06-02 at 10:52 +0200, Arnd Bergmann wrote:
> On Wednesday, June 1, 2016 8:11:14 PM CEST Scott Wood wrote:
> > > +#define T4240_HOST_VER ((VENDOR_V_23 << SDHCI_VENDOR_VER_SHIFT) |
> > > SDHCI_SPEC_200)
> > > +static const struct soc_device_attribute esdhc_t4240_quirk = {
> > > + /*
On Thu, 2016-06-02 at 10:43 +0200, Arnd Bergmann wrote:
> On Wednesday, June 1, 2016 8:47:22 PM CEST Scott Wood wrote:
> > On Mon, 2016-05-30 at 15:15 +0200, Arnd Bergmann wrote:
> > > diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
> > > new file mode 100644
> > > index ..
On Fri, 2016-06-10 at 12:26 -0700, Linus Torvalds wrote:
> On Fri, Jun 10, 2016 at 8:48 AM, Linus Torvalds
> wrote:
> > On Fri, Jun 10, 2016 at 4:51 AM, Michael Ellerman
> > wrote:
> > >
> > > powerpc fixes for 4.7 #2
> >
> > This is actually #3 - and some of the things you describe came in
>
On Fri, Jun 10, 2016 at 8:48 AM, Linus Torvalds
wrote:
> On Fri, Jun 10, 2016 at 4:51 AM, Michael Ellerman wrote:
>>
>> powerpc fixes for 4.7 #2
>
> This is actually #3 - and some of the things you describe came in
> already through #2.
>
> Do you mind double-checking your descriptions?
I double
On 2016/06/10 08:08PM, Naveen N. Rao wrote:
> On 2016/06/10 10:36AM, Arnaldo Carvalho de Melo wrote:
> > Em Fri, Jun 10, 2016 at 06:32:51PM +0530, Naveen N. Rao escreveu:
> > > Convert ins__find() to a __weak function for generic functionality,
> > > while adding a powerpc-specific variant. We look
On Fri, Jun 10, 2016 at 4:51 AM, Michael Ellerman wrote:
>
> powerpc fixes for 4.7 #2
This is actually #3 - and some of the things you describe came in
already through #2.
Do you mind double-checking your descriptions? Which of these are
actually new? I'd like to get my merge message correct, an
On 2016/06/10 10:36AM, Arnaldo Carvalho de Melo wrote:
> Em Fri, Jun 10, 2016 at 06:32:51PM +0530, Naveen N. Rao escreveu:
> > Convert ins__find() to a __weak function for generic functionality,
> > while adding a powerpc-specific variant. We look at the function name
> > for branch instructions an
On 2016/06/10 10:30AM, Arnaldo Carvalho de Melo wrote:
> Em Fri, Jun 10, 2016 at 06:32:50PM +0530, Naveen N. Rao escreveu:
> > Introduce helper to detect ret instructions and use the same in the tui.
Hi Arnaldo,
Thanks for the review.
>
> Humm, I think this is simpler and equivalent, since so fa
Em Fri, Jun 10, 2016 at 06:32:51PM +0530, Naveen N. Rao escreveu:
> Convert ins__find() to a __weak function for generic functionality,
> while adding a powerpc-specific variant. We look at the function name
> for branch instructions and classify the instructions to one among a
> branch, a function
Em Fri, Jun 10, 2016 at 06:32:50PM +0530, Naveen N. Rao escreveu:
> Introduce helper to detect ret instructions and use the same in the tui.
Humm, I think this is simpler and equivalent, since so far we didn't had
any need for special handling of "retq"/"ret" instructions:
diff --git a/tools/perf
Introduce helper to detect ret instructions and use the same in the tui.
Cc: Arnaldo Carvalho de Melo
Cc: Anton Blanchard
Cc: Michael Ellerman
Cc: Ananth N Mavinakayanahalli
Signed-off-by: Naveen N. Rao
---
tools/perf/ui/browsers/annotate.c | 20 +---
tools/perf/util/annotate
Convert ins__find() to a __weak function for generic functionality,
while adding a powerpc-specific variant. We look at the function name
for branch instructions and classify the instructions to one among a
branch, a function call (branch with LR update) or a function return
(branch to LR).
Cc: Ar
This prevents flooding the logs with 'iommu_alloc failed' messages
while I/O is performed (normally) to very fast devices (e.g. NVMe).
That error is not necessarily a problem; device drivers can retry
later / reschedule the requests for which the allocation failed,
and handle things gracefully for
Hi Linus,
Please pull some more powerpc fixes for 4.7:
The following changes since commit 1a695a905c18548062509178b98bc91e67510864:
Linux 4.7-rc1 (2016-05-29 09:29:24 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
tags/powerp
On Thu, 9 Jun 2016 14:02:01 -0700
Kees Cook wrote:
> Close the hole where ptrace can change a syscall out from under seccomp.
>
> Signed-off-by: Kees Cook
> Cc: Heiko Carstens
> Cc: Martin Schwidefsky
> Cc: linux-s...@vger.kernel.org
> ---
> arch/s390/kernel/ptrace.c | 21 +-
Split out subsystem specific changes for easier reviews. This will be
squashed with main commit.
Signed-off-by: Krzysztof Kozlowski
---
arch/powerpc/include/asm/dma-mapping.h| 7 +++
arch/powerpc/include/asm/iommu.h | 10 +-
arch/powerpc/kernel/dma-iommu.c | 1
Hi,
This is fourth approach for replacing struct dma_attrs with unsigned
long.
The main patch (1/44) doing the change is split into many subpatches
for easier review (2-42). They should be squashed together when
applying.
*Important:* Patchset is tested on my ARM platforms and *only* build
te
19 matches
Mail list logo