[PATCH V2 3/3] x86/efi: Use efi_switch_mm() rather than manually twiddling with %cr3

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Use helper function (efi_switch_mm()) to switch to/from efi_mm. We switch to efi_mm before calling 1. efi_set_virtual_address_map() and 2. Invoking any efi_runtime_service() Likewise, we need to switch back to previous mm (mm context stolen by

[PATCH V2 1/3] efi: Use efi_mm in x86 as well as ARM

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Presently, only ARM uses mm_struct to manage efi page tables and efi runtime region mappings. As this is the preferred approach, let's make this data structure common across architectures. Specially, for x86, using this data structure improves

[PATCH V2 3/3] x86/efi: Use efi_switch_mm() rather than manually twiddling with %cr3

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Use helper function (efi_switch_mm()) to switch to/from efi_mm. We switch to efi_mm before calling 1. efi_set_virtual_address_map() and 2. Invoking any efi_runtime_service() Likewise, we need to switch back to previous mm (mm context stolen by efi_mm) after the above calls

[PATCH V2 1/3] efi: Use efi_mm in x86 as well as ARM

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Presently, only ARM uses mm_struct to manage efi page tables and efi runtime region mappings. As this is the preferred approach, let's make this data structure common across architectures. Specially, for x86, using this data structure improves code maintainability and

[PATCH V2 0/3] Use mm_struct and switch_mm() instead of manually

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Presently, in x86, to invoke any efi function like efi_set_virtual_address_map() or any efi_runtime_service() the code path typically involves read_cr3() (save previous pgd), write_cr3() (write efi_pgd) and calling efi function. Likewise after

Re: [PATCH v7] mtd: sharpslpart: Add sharpslpart partition parser

2017-08-28 Thread Andrea Adami
On Tue, Aug 29, 2017 at 12:45 AM, Boris Brezillon wrote: > On Tue, 29 Aug 2017 00:20:32 +0200 > Andrea Adami wrote: > >> The Sharp SL Series (Zaurus) PXA handhelds have 16/64/128M of NAND flash >> and share the same layout of the first

[PATCH V2 0/3] Use mm_struct and switch_mm() instead of manually

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Presently, in x86, to invoke any efi function like efi_set_virtual_address_map() or any efi_runtime_service() the code path typically involves read_cr3() (save previous pgd), write_cr3() (write efi_pgd) and calling efi function. Likewise after returning from efi function the

Re: [PATCH v7] mtd: sharpslpart: Add sharpslpart partition parser

2017-08-28 Thread Andrea Adami
On Tue, Aug 29, 2017 at 12:45 AM, Boris Brezillon wrote: > On Tue, 29 Aug 2017 00:20:32 +0200 > Andrea Adami wrote: > >> The Sharp SL Series (Zaurus) PXA handhelds have 16/64/128M of NAND flash >> and share the same layout of the first 7M partition, managed by Sharp FTL. >> >> GPL 2.4 sources:

[PATCH V2 2/3] x86/efi: Replace efi_pgd with efi_mm.pgd

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Since the previous patch added support for efi_mm, let's handle efi_pgd through efi_mm and remove global variable efi_pgd. Signed-off-by: Sai Praneeth Prakhya Cc: Lee, Chun-Yi Cc: Borislav Petkov

[PATCH V2 2/3] x86/efi: Replace efi_pgd with efi_mm.pgd

2017-08-28 Thread Sai Praneeth Prakhya
From: Sai Praneeth Since the previous patch added support for efi_mm, let's handle efi_pgd through efi_mm and remove global variable efi_pgd. Signed-off-by: Sai Praneeth Prakhya Cc: Lee, Chun-Yi Cc: Borislav Petkov Cc: Tony Luck Cc: Andy Lutomirski Cc: Michael S. Tsirkin Cc: Ricardo Neri

Re: [PATCH 0/4] irda: move it to drivers/staging so we can delete it

2017-08-28 Thread David Miller
From: Greg Kroah-Hartman Date: Sun, 27 Aug 2017 17:03:30 +0200 > The IRDA code has long been obsolete and broken. So, to keep people > from trying to use it, and to prevent people from having to maintain it, > let's move it to drivers/staging/ so that we can delete

Re: [PATCH 0/4] irda: move it to drivers/staging so we can delete it

2017-08-28 Thread David Miller
From: Greg Kroah-Hartman Date: Sun, 27 Aug 2017 17:03:30 +0200 > The IRDA code has long been obsolete and broken. So, to keep people > from trying to use it, and to prevent people from having to maintain it, > let's move it to drivers/staging/ so that we can delete it entirely from > the kernel

Re: [PATCH v4 0/7] Add RSS to DPAA 1.x Ethernet driver

2017-08-28 Thread David Miller
From: Madalin Bucur Date: Sun, 27 Aug 2017 16:13:36 +0300 > This patch set introduces Receive Side Scaling for the DPAA Ethernet > driver. Documentation is updated with details related to the new > feature and limitations that apply. > Added also a small fix. > > v2:

Re: [PATCH v4 0/7] Add RSS to DPAA 1.x Ethernet driver

2017-08-28 Thread David Miller
From: Madalin Bucur Date: Sun, 27 Aug 2017 16:13:36 +0300 > This patch set introduces Receive Side Scaling for the DPAA Ethernet > driver. Documentation is updated with details related to the new > feature and limitations that apply. > Added also a small fix. > > v2: removed a C++ style comment

[PATCH] Staging: ks7010: Fix alignment should match open parenthesis.

2017-08-28 Thread Jonathan Whitaker
This commit fixes alignment styling as reported by checkpatch.pl. Signed-off-by: Jonathan Whitaker --- drivers/staging/ks7010/ks_hostif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/ks7010/ks_hostif.c

[PATCH] Staging: ks7010: Fix alignment should match open parenthesis.

2017-08-28 Thread Jonathan Whitaker
This commit fixes alignment styling as reported by checkpatch.pl. Signed-off-by: Jonathan Whitaker --- drivers/staging/ks7010/ks_hostif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/ks7010/ks_hostif.c b/drivers/staging/ks7010/ks_hostif.c index

RE: [PATCH 1/9] ASoC: max98927: Added TDM support

2017-08-28 Thread Ryan Lee
>Subject: Re: [PATCH 1/9] ASoC: max98927: Added TDM support > >On Fri, Aug 25, 2017 at 05:41:02PM -0700, Ryan Lee wrote: >> Signed-off-by: Ryan Lee > >This says it's adding support for TDM mode but... > >> +case SND_SOC_DAIFMT_DSP_A: >> +

RE: [PATCH 1/9] ASoC: max98927: Added TDM support

2017-08-28 Thread Ryan Lee
>Subject: Re: [PATCH 1/9] ASoC: max98927: Added TDM support > >On Fri, Aug 25, 2017 at 05:41:02PM -0700, Ryan Lee wrote: >> Signed-off-by: Ryan Lee > >This says it's adding support for TDM mode but... > >> +case SND_SOC_DAIFMT_DSP_A: >> +

[PATCH 4/9] ASoC: max98927: Added missing \n to end of dev_err messages

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index c72a244..208d5ba 100644 --- a/sound/soc/codecs/max98927.c +++

[PATCH 2/9] ASoC: max98927: Added controls for Envelope tracking

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 20 sound/soc/codecs/max98927.h | 4 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index

[PATCH 4/9] ASoC: max98927: Added missing \n to end of dev_err messages

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index c72a244..208d5ba 100644 --- a/sound/soc/codecs/max98927.c +++ b/sound/soc/codecs/max98927.c @@ -160,7

[PATCH 2/9] ASoC: max98927: Added controls for Envelope tracking

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 20 sound/soc/codecs/max98927.h | 4 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 951cc05..1dfcb7b 100644 ---

[PATCH] Staging: ks7010: Fix hardcoded function names in strings. Warnings reported by checkpatch.pl.

2017-08-28 Thread Jonathan Whitaker
This commit replaces hardcoded function name strings to the more preferred '"%s...", __func__' style. These warnings were reported by checkpatch.pl. Signed-off-by: Jonathan Whitaker --- drivers/staging/ks7010/ks7010_sdio.c | 4 ++-- 1 file changed, 2 insertions(+), 2

[PATCH] Staging: ks7010: Fix hardcoded function names in strings. Warnings reported by checkpatch.pl.

2017-08-28 Thread Jonathan Whitaker
This commit replaces hardcoded function name strings to the more preferred '"%s...", __func__' style. These warnings were reported by checkpatch.pl. Signed-off-by: Jonathan Whitaker --- drivers/staging/ks7010/ks7010_sdio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 5/9] ASoC: max98927: Removed obsolete variables

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.h | 4 1 file changed, 4 deletions(-) mode change 100644 => 100755 sound/soc/codecs/max98927.h diff --git a/sound/soc/codecs/max98927.h b/sound/soc/codecs/max98927.h old mode 100644 new mode 100755 index

[PATCH 5/9] ASoC: max98927: Removed obsolete variables

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.h | 4 1 file changed, 4 deletions(-) mode change 100644 => 100755 sound/soc/codecs/max98927.h diff --git a/sound/soc/codecs/max98927.h b/sound/soc/codecs/max98927.h old mode 100644 new mode 100755 index 3069a09..30cc40a ---

[PATCH 3/9] ASoC: max98927: Updated volatile register list

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 1dfcb7b..c72a244 100644 --- a/sound/soc/codecs/max98927.c +++

[PATCH 8/9] ASoC: max98927: Modified DAPM widget and map to enable/disable VI sense path

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 28 +--- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 5517251..f944659 100644 ---

[PATCH 9/9] ASoC: max98927: Changed device property read function

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index f944659..4867f78 100644 --- a/sound/soc/codecs/max98927.c +++

[PATCH 3/9] ASoC: max98927: Updated volatile register list

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 1dfcb7b..c72a244 100644 --- a/sound/soc/codecs/max98927.c +++ b/sound/soc/codecs/max98927.c @@ -586,6 +586,13 @@

[PATCH 8/9] ASoC: max98927: Modified DAPM widget and map to enable/disable VI sense path

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 28 +--- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 5517251..f944659 100644 --- a/sound/soc/codecs/max98927.c +++

[PATCH 9/9] ASoC: max98927: Changed device property read function

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index f944659..4867f78 100644 --- a/sound/soc/codecs/max98927.c +++ b/sound/soc/codecs/max98927.c @@

[PATCH 1/9] ASoC: max98927: Added support for DSP_A and DSP_B format

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 141 sound/soc/codecs/max98927.h | 6 +- 2 files changed, 120 insertions(+), 27 deletions(-) diff --git a/sound/soc/codecs/max98927.c

[PATCH 6/9] ASoC: max98927: Modified chip default register values

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 208d5ba..3ab8220 100644 --- a/sound/soc/codecs/max98927.c +++

[PATCH 1/9] ASoC: max98927: Added support for DSP_A and DSP_B format

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 141 sound/soc/codecs/max98927.h | 6 +- 2 files changed, 120 insertions(+), 27 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index b0380b5..951cc05

[PATCH 6/9] ASoC: max98927: Modified chip default register values

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 208d5ba..3ab8220 100644 --- a/sound/soc/codecs/max98927.c +++ b/sound/soc/codecs/max98927.c @@

[PATCH 7/9] ASoC: max98927: Added PM suspend and resume function

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 27 ++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 3ab8220..5517251 100644 ---

[PATCH 7/9] ASoC: max98927: Added PM suspend and resume function

2017-08-28 Thread Ryan Lee
Signed-off-by: Ryan Lee --- sound/soc/codecs/max98927.c | 27 ++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/sound/soc/codecs/max98927.c b/sound/soc/codecs/max98927.c index 3ab8220..5517251 100644 --- a/sound/soc/codecs/max98927.c +++

RE: [PATCH v3 net-next 1/1] hv_sock: implements Hyper-V transport for Virtual Sockets (AF_VSOCK)

2017-08-28 Thread Dexuan Cui
> From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, August 28, 2017 15:39 > From: Dexuan Cui > Date: Sat, 26 Aug 2017 04:52:43 + > > > > > Hyper-V Sockets (hv_sock) supplies a byte-stream based communication > > mechanism between the host and the guest. It

RE: [PATCH v3 net-next 1/1] hv_sock: implements Hyper-V transport for Virtual Sockets (AF_VSOCK)

2017-08-28 Thread Dexuan Cui
> From: David Miller [mailto:da...@davemloft.net] > Sent: Monday, August 28, 2017 15:39 > From: Dexuan Cui > Date: Sat, 26 Aug 2017 04:52:43 + > > > > > Hyper-V Sockets (hv_sock) supplies a byte-stream based communication > > mechanism between the host and the guest. It uses VMBus ringbuffer

Re: [PATCH 1/2] mtd: spi-nor: add an option to force 3byte adressing mode

2017-08-28 Thread Marek Vasut
On 08/28/2017 11:14 PM, Marcin Wojtas wrote: > Hitherto code set 4B addressing mode for all SPI flashes whose > size exceeds 16MB. However, changing the default 3B access > in some cases may be harmful - it may happen that the Boot ROM > is not capable of handling non-default state of the SPI NOR

Re: [PATCH 1/2] mtd: spi-nor: add an option to force 3byte adressing mode

2017-08-28 Thread Marek Vasut
On 08/28/2017 11:14 PM, Marcin Wojtas wrote: > Hitherto code set 4B addressing mode for all SPI flashes whose > size exceeds 16MB. However, changing the default 3B access > in some cases may be harmful - it may happen that the Boot ROM > is not capable of handling non-default state of the SPI NOR

Re: [PATCH] be2net: Fix some u16 fields appropriately

2017-08-28 Thread David Miller
From: Haishuang Yan Date: Sun, 27 Aug 2017 15:24:45 +0800 > In be_tx_compl_process, frag_index declared as u32, so it's better to > declare last_index as u32 also. > > CC: Ajit Khaparde > Fixes: b0fd2eb28bd4 ("be2net: Declare some

Re: [PATCH] be2net: Fix some u16 fields appropriately

2017-08-28 Thread David Miller
From: Haishuang Yan Date: Sun, 27 Aug 2017 15:24:45 +0800 > In be_tx_compl_process, frag_index declared as u32, so it's better to > declare last_index as u32 also. > > CC: Ajit Khaparde > Fixes: b0fd2eb28bd4 ("be2net: Declare some u16 fields as u32 to improve > performance") > Signed-off-by:

Re: [PATCH] i40iw: make some structures const

2017-08-28 Thread Doug Ledford
On Mon, 2017-08-28 at 21:51 +0530, Bhumika Goyal wrote: > Make some structures const as they are only used during a copy > operation. > > Signed-off-by: Bhumika Goyal Thanks, applied. -- Doug Ledford GPG KeyID: B826A3330E572FDD Key fingerprint

Re: [PATCH] i40iw: make some structures const

2017-08-28 Thread Doug Ledford
On Mon, 2017-08-28 at 21:51 +0530, Bhumika Goyal wrote: > Make some structures const as they are only used during a copy > operation. > > Signed-off-by: Bhumika Goyal Thanks, applied. -- Doug Ledford GPG KeyID: B826A3330E572FDD Key fingerprint = AE6B 1BDA 122B 23B4 265B 1274 B826

Re: [PATCH] IB/rxe: constify vm_operations_struct

2017-08-28 Thread Doug Ledford
On Mon, 2017-08-28 at 10:00 +0530, Arvind Yadav wrote: > vm_operations_struct are not supposed to change at runtime. > vm_area_struct structure working with const vm_operations_struct. > So mark the non-const vm_operations_struct structs as const. > > Signed-off-by: Arvind Yadav

Re: [PATCH] IB/rxe: constify vm_operations_struct

2017-08-28 Thread Doug Ledford
On Mon, 2017-08-28 at 10:00 +0530, Arvind Yadav wrote: > vm_operations_struct are not supposed to change at runtime. > vm_area_struct structure working with const vm_operations_struct. > So mark the non-const vm_operations_struct structs as const. > > Signed-off-by: Arvind Yadav Sorry, this bug

Re: [PATCH] IB/hfi1: constify vm_operations_struct

2017-08-28 Thread Doug Ledford
On Mon, 2017-08-28 at 09:59 +0530, Arvind Yadav wrote: > vm_operations_struct are not supposed to change at runtime. > vm_area_struct structure working with const vm_operations_struct. > So mark the non-const vm_operations_struct structs as const. > > Signed-off-by: Arvind Yadav

Re: [PATCH] IB/hfi1: constify vm_operations_struct

2017-08-28 Thread Doug Ledford
On Mon, 2017-08-28 at 09:59 +0530, Arvind Yadav wrote: > vm_operations_struct are not supposed to change at runtime. > vm_area_struct structure working with const vm_operations_struct. > So mark the non-const vm_operations_struct structs as const. > > Signed-off-by: Arvind Yadav Thanks,

Re: [PATCH] RDMA/bnxt_re: remove unnecessary call to memset

2017-08-28 Thread Doug Ledford
On Fri, 2017-08-25 at 21:41 +0530, Himanshu Jha wrote: > call to memset to assign 0 value immediately after allocating > memory with kzalloc is unnecesaary as kzalloc allocates the memory > filled with 0 value. > > Signed-off-by: Himanshu Jha Thanks, applied. --

Re: [PATCH] RDMA/bnxt_re: remove unnecessary call to memset

2017-08-28 Thread Doug Ledford
On Fri, 2017-08-25 at 21:41 +0530, Himanshu Jha wrote: > call to memset to assign 0 value immediately after allocating > memory with kzalloc is unnecesaary as kzalloc allocates the memory > filled with 0 value. > > Signed-off-by: Himanshu Jha Thanks, applied. -- Doug Ledford GPG KeyID:

Re: [PATCH v2 11/20] rpmsg: glink: Fix idr_lock from mutex to spinlock

2017-08-28 Thread Sricharan R
Hi Chris, On 8/29/2017 3:21 AM, Chris Lew wrote: > Hi Sricharan, > > Minor bug in this patch. > > On 8/24/2017 12:21 AM, Sricharan R wrote: > [..] >> @@ -829,11 +839,14 @@ static int qcom_glink_rx_open(struct qcom_glink >> *glink, unsigned int rcid, >>   struct device_node *node; >>  

Re: [PATCH v2 11/20] rpmsg: glink: Fix idr_lock from mutex to spinlock

2017-08-28 Thread Sricharan R
Hi Chris, On 8/29/2017 3:21 AM, Chris Lew wrote: > Hi Sricharan, > > Minor bug in this patch. > > On 8/24/2017 12:21 AM, Sricharan R wrote: > [..] >> @@ -829,11 +839,14 @@ static int qcom_glink_rx_open(struct qcom_glink >> *glink, unsigned int rcid, >>   struct device_node *node; >>  

Re: [Question]: try to fix contention between expire_timers and try_to_del_timer_sync

2017-08-28 Thread Vikram Mulukutla
Hi Will, On 2017-08-25 12:48, Vikram Mulukutla wrote: Hi Will, On 2017-08-15 11:40, Will Deacon wrote: Hi Vikram, On Thu, Aug 03, 2017 at 04:25:12PM -0700, Vikram Mulukutla wrote: On 2017-07-31 06:13, Will Deacon wrote: >On Fri, Jul 28, 2017 at 12:09:38PM -0700, Vikram Mulukutla wrote: >>On

Re: [Question]: try to fix contention between expire_timers and try_to_del_timer_sync

2017-08-28 Thread Vikram Mulukutla
Hi Will, On 2017-08-25 12:48, Vikram Mulukutla wrote: Hi Will, On 2017-08-15 11:40, Will Deacon wrote: Hi Vikram, On Thu, Aug 03, 2017 at 04:25:12PM -0700, Vikram Mulukutla wrote: On 2017-07-31 06:13, Will Deacon wrote: >On Fri, Jul 28, 2017 at 12:09:38PM -0700, Vikram Mulukutla wrote: >>On

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

2017-08-28 Thread Stephen Rothwell
Hi Vinod, Commit 966e5e01f420 ("dmaengine: altera: Use macros instead of structs to describe the registers") is missing a Signed-off-by from its committer. -- Cheers, Stephen Rothwell

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

2017-08-28 Thread Stephen Rothwell
Hi Vinod, Commit 966e5e01f420 ("dmaengine: altera: Use macros instead of structs to describe the registers") is missing a Signed-off-by from its committer. -- Cheers, Stephen Rothwell

[PATCH 1/2] docs: kernel-doc comments are ASCII

2017-08-28 Thread Randy Dunlap
From: Randy Dunlap kernel-doc parsing uses as ASCII codec, so let people know that kernel-doc comments should be in ASCII characters only. WARNING: kernel-doc '../scripts/kernel-doc -rst -enable-lineno ../drivers/media/dvb-core/demux.h' processing failed with: 'ascii'

[PATCH 1/2] docs: kernel-doc comments are ASCII

2017-08-28 Thread Randy Dunlap
From: Randy Dunlap kernel-doc parsing uses as ASCII codec, so let people know that kernel-doc comments should be in ASCII characters only. WARNING: kernel-doc '../scripts/kernel-doc -rst -enable-lineno ../drivers/media/dvb-core/demux.h' processing failed with: 'ascii' codec can't decode byte

[PATCH 2/2] media: dvb-core: fix demux.h non-ASCII characters

2017-08-28 Thread Randy Dunlap
From: Randy Dunlap Fix non-ASCII charactes in kernel-doc comment to prevent the kernel-doc build warning below. WARNING: kernel-doc '../scripts/kernel-doc -rst -enable-lineno ../drivers/media/dvb-core/demux.h' processing failed with: 'ascii' codec can't decode byte 0xe2

[PATCH 2/2] media: dvb-core: fix demux.h non-ASCII characters

2017-08-28 Thread Randy Dunlap
From: Randy Dunlap Fix non-ASCII charactes in kernel-doc comment to prevent the kernel-doc build warning below. WARNING: kernel-doc '../scripts/kernel-doc -rst -enable-lineno ../drivers/media/dvb-core/demux.h' processing failed with: 'ascii' codec can't decode byte 0xe2 in position 6368:

Re: [PATCH] net: ethernet: broadcom: Remove null check before kfree

2017-08-28 Thread David Miller
From: Himanshu Jha Date: Sun, 27 Aug 2017 01:47:47 +0530 > Kfree on NULL pointer is a no-op and therefore checking is redundant. > > Signed-off-by: Himanshu Jha Applied.

Re: [PATCH] net: ethernet: broadcom: Remove null check before kfree

2017-08-28 Thread David Miller
From: Himanshu Jha Date: Sun, 27 Aug 2017 01:47:47 +0530 > Kfree on NULL pointer is a no-op and therefore checking is redundant. > > Signed-off-by: Himanshu Jha Applied.

Re: [PATCH] sparc: leon: grpci1: constify of_device_id

2017-08-28 Thread David Miller
From: Arvind Yadav Date: Sat, 26 Aug 2017 16:58:48 +0530 > of_device_id are not supposed to change at runtime. All functions > working with of_device_id provided by work with const > of_device_ids. So mark the const and __initconst. > > Signed-off-by: Arvind Yadav

Re: [PATCH] sparc: leon: grpci1: constify of_device_id

2017-08-28 Thread David Miller
From: Arvind Yadav Date: Sat, 26 Aug 2017 16:58:48 +0530 > of_device_id are not supposed to change at runtime. All functions > working with of_device_id provided by work with const > of_device_ids. So mark the const and __initconst. > > Signed-off-by: Arvind Yadav Applied.

Re: [PATCH] sparc: leon: grpci2: constify of_device_id

2017-08-28 Thread David Miller
From: Arvind Yadav Date: Sat, 26 Aug 2017 16:58:34 +0530 > of_device_id are not supposed to change at runtime. All functions > working with of_device_id provided by work with const > of_device_ids. So mark the const and __initconst. > > Signed-off-by: Arvind Yadav

Re: [PATCH] sparc: leon: grpci2: constify of_device_id

2017-08-28 Thread David Miller
From: Arvind Yadav Date: Sat, 26 Aug 2017 16:58:34 +0530 > of_device_id are not supposed to change at runtime. All functions > working with of_device_id provided by work with const > of_device_ids. So mark the const and __initconst. > > Signed-off-by: Arvind Yadav Applied.

Re: [PATCH v7] mtd: sharpslpart: Add sharpslpart partition parser

2017-08-28 Thread Boris Brezillon
On Tue, 29 Aug 2017 00:20:32 +0200 Andrea Adami wrote: > The Sharp SL Series (Zaurus) PXA handhelds have 16/64/128M of NAND flash > and share the same layout of the first 7M partition, managed by Sharp FTL. > > GPL 2.4 sources:

Re: [PATCH v7] mtd: sharpslpart: Add sharpslpart partition parser

2017-08-28 Thread Boris Brezillon
On Tue, 29 Aug 2017 00:20:32 +0200 Andrea Adami wrote: > The Sharp SL Series (Zaurus) PXA handhelds have 16/64/128M of NAND flash > and share the same layout of the first 7M partition, managed by Sharp FTL. > > GPL 2.4 sources: http://support.ezaurus.com/developer/source/source_dl.asp > > The

Re: [PATCH v4 3/4] dt-bindings: PCI: rockchip: Add support for pcie wake irq

2017-08-28 Thread Brian Norris
On Mon, Aug 28, 2017 at 04:32:55PM -0500, Rob Herring wrote: > On Fri, Aug 25, 2017 at 1:20 PM, Brian Norris > wrote: > > On Fri, Aug 25, 2017 at 01:14:39PM -0500, Rob Herring wrote: > >> Use the wakeup source binding: > >>

Re: [PATCH v4 3/4] dt-bindings: PCI: rockchip: Add support for pcie wake irq

2017-08-28 Thread Brian Norris
On Mon, Aug 28, 2017 at 04:32:55PM -0500, Rob Herring wrote: > On Fri, Aug 25, 2017 at 1:20 PM, Brian Norris > wrote: > > On Fri, Aug 25, 2017 at 01:14:39PM -0500, Rob Herring wrote: > >> Use the wakeup source binding: > >> Documentation/devicetree/bindings/power/wakeup-source.txt > > > > And I

Re: [PATCH 3/4] i825xx: switch to switch to dma_alloc_attrs

2017-08-28 Thread David Miller
From: Christoph Hellwig Date: Sat, 26 Aug 2017 09:21:24 +0200 > This way we can always pass DMA_ATTR_NON_CONSISTENT, the SNI mips version > will simply ignore the flag. > > Signed-off-by: Christoph Hellwig Acked-by: David S. Miller

Re: [PATCH 3/4] i825xx: switch to switch to dma_alloc_attrs

2017-08-28 Thread David Miller
From: Christoph Hellwig Date: Sat, 26 Aug 2017 09:21:24 +0200 > This way we can always pass DMA_ATTR_NON_CONSISTENT, the SNI mips version > will simply ignore the flag. > > Signed-off-by: Christoph Hellwig Acked-by: David S. Miller

Re: [PATCH 1/4] sgiseeq: switch to dma_alloc_attrs

2017-08-28 Thread David Miller
From: Christoph Hellwig Date: Sat, 26 Aug 2017 09:21:22 +0200 > Use dma_alloc_attrs directly instead of the dma_alloc_noncoherent wrapper. > > Signed-off-by: Christoph Hellwig Acked-by: David S. Miller

Re: [PATCH 1/4] sgiseeq: switch to dma_alloc_attrs

2017-08-28 Thread David Miller
From: Christoph Hellwig Date: Sat, 26 Aug 2017 09:21:22 +0200 > Use dma_alloc_attrs directly instead of the dma_alloc_noncoherent wrapper. > > Signed-off-by: Christoph Hellwig Acked-by: David S. Miller

Re: [PATCH 2/4] au1000_eth: switch to dma_alloc_attrs

2017-08-28 Thread David Miller
From: Christoph Hellwig Date: Sat, 26 Aug 2017 09:21:23 +0200 > Use dma_alloc_attrs directly instead of the dma_alloc_noncoherent wrapper. > > Signed-off-by: Christoph Hellwig Acked-by: David S. Miller

Re: [PATCH 2/4] au1000_eth: switch to dma_alloc_attrs

2017-08-28 Thread David Miller
From: Christoph Hellwig Date: Sat, 26 Aug 2017 09:21:23 +0200 > Use dma_alloc_attrs directly instead of the dma_alloc_noncoherent wrapper. > > Signed-off-by: Christoph Hellwig Acked-by: David S. Miller

Re: [PATCH v3 net-next 1/1] hv_sock: implements Hyper-V transport for Virtual Sockets (AF_VSOCK)

2017-08-28 Thread David Miller
From: Dexuan Cui Date: Sat, 26 Aug 2017 04:52:43 + > > Hyper-V Sockets (hv_sock) supplies a byte-stream based communication > mechanism between the host and the guest. It uses VMBus ringbuffer as the > transportation layer. > > With hv_sock, applications between the

Re: [PATCH v3 net-next 1/1] hv_sock: implements Hyper-V transport for Virtual Sockets (AF_VSOCK)

2017-08-28 Thread David Miller
From: Dexuan Cui Date: Sat, 26 Aug 2017 04:52:43 + > > Hyper-V Sockets (hv_sock) supplies a byte-stream based communication > mechanism between the host and the guest. It uses VMBus ringbuffer as the > transportation layer. > > With hv_sock, applications between the host (Windows 10,

Re: [PATCH v2 14/20] mm: Provide speculative fault infrastructure

2017-08-28 Thread Andi Kleen
> That makes me extremely nervous... there could be all sort of > assumptions esp. in arch code about the fact that we never populate the > tree without the mm sem. > > We'd have to audit archs closely. Things like the page walk cache > flushing on power etc... Yes the whole thing is quite

Re: [PATCH v2 14/20] mm: Provide speculative fault infrastructure

2017-08-28 Thread Andi Kleen
> That makes me extremely nervous... there could be all sort of > assumptions esp. in arch code about the fact that we never populate the > tree without the mm sem. > > We'd have to audit archs closely. Things like the page walk cache > flushing on power etc... Yes the whole thing is quite

Re: [PATCH] mm, memory_hotplug: do not back off draining pcp free pages from kworker context

2017-08-28 Thread Andrew Morton
On Mon, 28 Aug 2017 11:33:41 +0200 Michal Hocko wrote: > drain_all_pages backs off when called from a kworker context since > 0ccce3b924212 ("mm, page_alloc: drain per-cpu pages from workqueue > context") because the original IPI based pcp draining has been replaced > by a WQ

Re: [PATCH] mm, memory_hotplug: do not back off draining pcp free pages from kworker context

2017-08-28 Thread Andrew Morton
On Mon, 28 Aug 2017 11:33:41 +0200 Michal Hocko wrote: > drain_all_pages backs off when called from a kworker context since > 0ccce3b924212 ("mm, page_alloc: drain per-cpu pages from workqueue > context") because the original IPI based pcp draining has been replaced > by a WQ based one and the

Re: [PATCH v3 1/3] mfd: Add support for Cherry Trail Dollar Cove TI PMIC

2017-08-28 Thread Rafael J. Wysocki
On Fri, Aug 25, 2017 at 3:44 PM, Takashi Iwai wrote: > This patch adds the MFD driver for Dollar Cove (TI version) PMIC with > ACPI INT33F5 that is found on some Intel Cherry Trail devices. > The driver is based on the original work by Intel, found at: >

Re: [PATCH v3 1/3] mfd: Add support for Cherry Trail Dollar Cove TI PMIC

2017-08-28 Thread Rafael J. Wysocki
On Fri, Aug 25, 2017 at 3:44 PM, Takashi Iwai wrote: > This patch adds the MFD driver for Dollar Cove (TI version) PMIC with > ACPI INT33F5 that is found on some Intel Cherry Trail devices. > The driver is based on the original work by Intel, found at: >

Re: linux-next: Signed-off-by missing for commit in the arc-current tree

2017-08-28 Thread Vineet Gupta
Hi Stephen, On 08/28/2017 03:23 PM, Stephen Rothwell wrote: Hi Vineet, Commit 279921e080b9 ("ARCv2: SLC: provide a line based flush routine for debugging") is missing a Signed-off-by from its author and committer. /me slaps myself. Fixed/pushed now. Thx, -Vineet

Re: linux-next: Signed-off-by missing for commit in the arc-current tree

2017-08-28 Thread Vineet Gupta
Hi Stephen, On 08/28/2017 03:23 PM, Stephen Rothwell wrote: Hi Vineet, Commit 279921e080b9 ("ARCv2: SLC: provide a line based flush routine for debugging") is missing a Signed-off-by from its author and committer. /me slaps myself. Fixed/pushed now. Thx, -Vineet

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

2017-08-28 Thread Stephen Rothwell
Hi Vineet, Commit 279921e080b9 ("ARCv2: SLC: provide a line based flush routine for debugging") is missing a Signed-off-by from its author and committer. -- Cheers, Stephen Rothwell

Re: [PATCH 4/4] net: stmmac: sun8i: Remove the compatibles

2017-08-28 Thread David Miller
From: Maxime Ripard Date: Fri, 25 Aug 2017 21:12:17 +0200 > Since the bindings have been controversial, and we follow the DT stable ABI > rule, we shouldn't let a driver with a DT binding that might change slip > through in a stable release. > > Remove the

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

2017-08-28 Thread Stephen Rothwell
Hi Vineet, Commit 279921e080b9 ("ARCv2: SLC: provide a line based flush routine for debugging") is missing a Signed-off-by from its author and committer. -- Cheers, Stephen Rothwell

Re: [PATCH 4/4] net: stmmac: sun8i: Remove the compatibles

2017-08-28 Thread David Miller
From: Maxime Ripard Date: Fri, 25 Aug 2017 21:12:17 +0200 > Since the bindings have been controversial, and we follow the DT stable ABI > rule, we shouldn't let a driver with a DT binding that might change slip > through in a stable release. > > Remove the compatibles to make sure the driver

[PATCH v7] mtd: sharpslpart: Add sharpslpart partition parser

2017-08-28 Thread Andrea Adami
The Sharp SL Series (Zaurus) PXA handhelds have 16/64/128M of NAND flash and share the same layout of the first 7M partition, managed by Sharp FTL. GPL 2.4 sources: http://support.ezaurus.com/developer/source/source_dl.asp The purpose of this self-contained patch is to add a common parser and

[PATCH v7] mtd: sharpslpart: Add sharpslpart partition parser

2017-08-28 Thread Andrea Adami
The Sharp SL Series (Zaurus) PXA handhelds have 16/64/128M of NAND flash and share the same layout of the first 7M partition, managed by Sharp FTL. GPL 2.4 sources: http://support.ezaurus.com/developer/source/source_dl.asp The purpose of this self-contained patch is to add a common parser and

crypto fix for unwinder warnings

2017-08-28 Thread Josh Poimboeuf
Hi Peter, Can you test to see if this patch fixes the unwinder warning you mentioned on IRC? diff --git a/arch/x86/crypto/blowfish-x86_64-asm_64.S b/arch/x86/crypto/blowfish-x86_64-asm_64.S index 246c67006ed0..344e4b332904 100644 --- a/arch/x86/crypto/blowfish-x86_64-asm_64.S +++

crypto fix for unwinder warnings

2017-08-28 Thread Josh Poimboeuf
Hi Peter, Can you test to see if this patch fixes the unwinder warning you mentioned on IRC? diff --git a/arch/x86/crypto/blowfish-x86_64-asm_64.S b/arch/x86/crypto/blowfish-x86_64-asm_64.S index 246c67006ed0..344e4b332904 100644 --- a/arch/x86/crypto/blowfish-x86_64-asm_64.S +++

Re: linux-next: build failure after merge of the l2-mtd tree

2017-08-28 Thread Brian Norris
On Mon, Aug 28, 2017 at 12:19:05PM +1000, Stephen Rothwell wrote: > Hi Brian, Hi Stephen, > After merging the l2-mtd tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/mtd/nand/nandsim.c: In function 'ns_init_module': > drivers/mtd/nand/nandsim.c:2353:2: error:

Re: linux-next: build failure after merge of the l2-mtd tree

2017-08-28 Thread Brian Norris
On Mon, Aug 28, 2017 at 12:19:05PM +1000, Stephen Rothwell wrote: > Hi Brian, Hi Stephen, > After merging the l2-mtd tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/mtd/nand/nandsim.c: In function 'ns_init_module': > drivers/mtd/nand/nandsim.c:2353:2: error:

[PATCH] ARCv2: SMP: Mask only private-per-core IRQ lines on boot at core intc

2017-08-28 Thread Vineet Gupta
From: Alexey Brodkin Recent commit a8ec3ee861b6 "arc: Mask individual IRQ lines during core INTC init" breaks interrupt handling on ARCv2 SMP systems. That commit masked all interrupts at onset, as some controllers on some boards (customer as well as internal), would

[PATCH] ARCv2: SMP: Mask only private-per-core IRQ lines on boot at core intc

2017-08-28 Thread Vineet Gupta
From: Alexey Brodkin Recent commit a8ec3ee861b6 "arc: Mask individual IRQ lines during core INTC init" breaks interrupt handling on ARCv2 SMP systems. That commit masked all interrupts at onset, as some controllers on some boards (customer as well as internal), would assert interrutps early

<    1   2   3   4   5   6   7   8   9   10   >