RE: [PATCH v4 4/4] powerpc/85xx: add sysfs for pw20 state and altivec idle

2013-09-28 Thread Wang Dongsheng-B40534
> -Original Message- > From: Wood Scott-B07421 > Sent: Saturday, September 28, 2013 5:33 AM > To: Wang Dongsheng-B40534 > Cc: Wood Scott-B07421; Bhushan Bharat-R65777; linuxppc- > d...@lists.ozlabs.org > Subject: Re: [PATCH v4 4/4] powerpc/85xx: add sysfs for pw20 state and > altivec idle

RE: [PATCH] powerpc/p1010rdb:update dts to adapt to both old and new p1010rdb

2013-09-28 Thread Zhao Qiang-B45475
On Sat, 2013-09-28 at 5:35 AM, Scott wrote: > -Original Message- > From: Wood Scott-B07421 > Sent: Saturday, September 28, 2013 5:35 AM > To: Zhao Qiang-B45475 > Cc: linuxppc-dev@lists.ozlabs.org; Liu Shengzhou-B36685 > Subject: Re: [PATCH] powerpc/p1010rdb:update dts to adapt to both old

Re: Please revert 928bea964827d7824b548c1f8e06eccbbc4d0d7d

2013-09-28 Thread Yinghai Lu
On Fri, Sep 27, 2013 at 8:05 PM, Benjamin Herrenschmidt wrote: > On Fri, 2013-09-27 at 16:44 -0700, Yinghai Lu wrote: > > In the meantime, can you properly submit the other one with the warning > to Linus ? It will make things more robust overall... https://patchwork.kernel.org/patch/2959121/ ___

Re: [RFC PATCH 09/11] kvm: simplify processor compat check

2013-09-28 Thread Aneesh Kumar K.V
Paolo Bonzini writes: > Il 27/09/2013 15:13, Aneesh Kumar K.V ha scritto: >> Alexander Graf writes: >> >>> On 27.09.2013, at 12:03, Aneesh Kumar K.V wrote: >>> From: "Aneesh Kumar K.V" >>> >>> Missing patch description. >>> Signed-off-by: Aneesh Kumar K.V >>> >>> I fail to see how t

[PATCH v2 2/2] ppc: bpf_jit: support MOD operation

2013-09-28 Thread Vladimir Murzin
commit b6069a9570 (filter: add MOD operation) added generic support for modulus operation in BPF. This patch brings JIT support for PPC64 Signed-off-by: Vladimir Murzin Acked-by: Matt Evans --- Changelog v1->v2 Definition for r_scratch2 was moved to header file. arch/powerpc/net/bpf_jit.h

[PATCH v2 1/2] powerpc: net: filter: fix DIVWU instruction opcode

2013-09-28 Thread Vladimir Murzin
Currently DIVWU stands for *signed* divw opcode: 7d 2a 4b 96 divwu r9,r10,r9 7d 2a 4b d6 divwr9,r10,r9 Use the *unsigned* divw opcode for DIVWU. Suggested-by: Vassili Karpov Reviewed-by: Vassili Karpov Signed-off-by: Vladimir Murzin Acked-by: Matt Evans --- Changelog v1->v2 A