REPLY FOR DETAILS!!

2018-09-28 Thread Ms CHIANG Lai Yuen JP
I will want you to partner me in a business... --- This email has been checked for viruses by AVG. https://www.avg.com

Re: [PATCH RT 2/2] watchdog, rt: prevent deferral of watchdogd wakeup

2018-09-28 Thread Thomas Gleixner
On Sat, 29 Sep 2018, kbuild test robot wrote: > [also build test ERROR on v4.19-rc5 next-20180928] > [if your patch is applied to the wrong git tree, please drop us a note to > help improve the system] > It's against the RT tree, so it won't work against next or upstrea

Re: [PATCH] futex: Set USER_DS for the futex_detect_cmpxchg() test

2018-09-28 Thread Thomas Gleixner
On Fri, 28 Sep 2018, Max Filippov wrote: > On Fri, Sep 28, 2018 at 2:08 PM, Andy Lutomirski wrote: > >> On Sep 28, 2018, at 1:26 PM, Thomas Gleixner wrote: > >> > >>> On Fri, 28 Sep 2018, Max Filippov wrote: > >>> > On Fri, Sep 28, 2018 at 11:02 AM, Andy Lutomirski > wrote: > The

Re: [RFC 0/5] perf: Per PMU access controls (paranoid setting)

2018-09-28 Thread Thomas Gleixner
On Fri, 28 Sep 2018, Andi Kleen wrote: > > > This new file descriptor argument doesn't exist today so it would > > > need to create a new system call with more arguments > > > > Is that true? The first argument is a pointer to a struct that > > contains its own size, so it can be expanded without

[PATCH v3] RISC-V: Show IPI stats

2018-09-28 Thread Anup Patel
This patch provides arch_show_interrupts() implementation to show IPI stats via /proc/interrupts. Now the contents of /proc/interrupts" will look like below: CPU0 CPU1 CPU2 CPU3 8: 17 7 6 14 SiFive PLIC 8 virtio0 10: 10

Re: [PATCH v2 3/8] mtd: maps: gpio-addr-flash: Use devm_* functions

2018-09-28 Thread Ricardo Ribalda Delgado
Hi Boris On Thu, 27 Sep 2018, 13:35 Boris Brezillon, wrote: > > On Wed, 5 Sep 2018 16:36:38 +0200 > Ricardo Ribalda Delgado wrote: > > @@ -234,9 +234,11 @@ static int gpio_flash_probe(struct platform_device > > *pdev) > > state->map.copy_to= gf_copy_to; > > state->map.bankwidth

Re: [PATCH v2] gpiolib: Show correct direction from the beginning

2018-09-28 Thread Ricardo Ribalda Delgado
Hi Timur In fact gpiochip_init_valid_mask is called some lines after in the same function. We could reorder the function. Would that work for you? The driver breaking is upstream? Is it possible to access the hardware? Thanks [Sorry for the two html mails in a row, I did not try to work with m

Re: [RFC 0/5] perf: Per PMU access controls (paranoid setting)

2018-09-28 Thread Thomas Gleixner
On Fri, 28 Sep 2018, Andi Kleen wrote: > So there isn't a single answer, and that is why it is important > that this if configurable. I said clearly that I'm not opposed against making it configurable. But because there is no single answer, it's even more important to have proper documentation. An

Re: [PATCH] RISC-V: Show CPU ID and Hart ID separately in /proc/cpuinfo

2018-09-28 Thread Anup Patel
On Sat, Sep 29, 2018 at 7:16 AM Palmer Dabbelt wrote: > > On Wed, 12 Sep 2018 07:38:22 PDT (-0700), a...@brainfault.org wrote: > > Currently, /proc/cpuinfo show logical CPU ID as Hart ID which > > is in-correct. This patch shows CPU ID and Hart ID separately > > in /proc/cpuinfo using cpuid_to_har

Re: [PATCH] RISC-V: Show IPI stats

2018-09-28 Thread Anup Patel
On Sat, Sep 29, 2018 at 7:15 AM Palmer Dabbelt wrote: > > On Mon, 10 Sep 2018 06:46:59 PDT (-0700), Christoph Hellwig wrote: > > On Fri, Sep 07, 2018 at 06:14:29PM +0530, Anup Patel wrote: > >> This patch provides arch_show_interrupts() implementation to > >> show IPI stats via /proc/interrupts. >

[PATCH 4/4] Staging: rts5208: sd: Fixed multiple coding style issues Fixed multiple braces issues

2018-09-28 Thread Maxime Desroches
--- drivers/staging/rts5208/sd.c | 704 +-- 1 file changed, 268 insertions(+), 436 deletions(-) diff --git a/drivers/staging/rts5208/sd.c b/drivers/staging/rts5208/sd.c index e7efa34195c7..930c61ccb047 100644 --- a/drivers/staging/rts5208/sd.c +++ b/drivers/staging

Re: [PATCH v5 0/9] PCI: mediatek: fixup find_port, enable_msi and add pm, module support

2018-09-28 Thread Ryder Lee
On Fri, 2018-09-28 at 18:04 +0800, honghui.zh...@mediatek.com wrote: > From: Honghui Zhang > > This patchset includes misc patchs: > > The patch 1 fixup the mtk_pcie_find_port logic which will cause system > could not touch the EP's configuration space that connected to PCIe slot 1. > > The pat

Re: [PATCH v5 4/9] PCI: mediatek: Convert to use pci_host_probe()

2018-09-28 Thread Ryder Lee
On Sat, 2018-09-29 at 08:16 +0800, Honghui Zhang wrote: > On Fri, 2018-09-28 at 23:41 +0800, Ryder Lee wrote: > > On Fri, 2018-09-28 at 18:04 +0800, honghui.zh...@mediatek.com wrote: > > > From: Honghui Zhang > > > > > > Part of mtk_pcie_register_host is an open-coded version of > > > pci_host_pr

[PATCH 6/7] dmaengine: sprd: Support DMA 2-stage transfer mode

2018-09-28 Thread Baolin Wang
From: Eric Long The Spreadtrum DMA controller supports channel 2-stage tansfer mode, that means we can request 2 dma channels, one for source channel, and another one for destination channel. Once the source channel's transaction is done, it will trigger the destination channel's transaction auto

[PATCH 4/7] dmaengine: sprd: Set cur_desc as NULL when free or terminate one dma channel

2018-09-28 Thread Baolin Wang
From: Eric Long It will be failed to start one new transfer if the channel started one none interrupt transfer before, since we will only set the schan->cur_desc as NULL depending on the transfer interrupt now. Thus we should set schan->cur_desc as NULL when free or terminate one dma channel to a

[PATCH 0/7] Add some fixes and new feature for SPRD DMA

2018-09-28 Thread Baolin Wang
This patchset removes the direction usage from struct dma_slave_config, and add one new field to save the direction. It also fixes some issues for link-list transfer. Moreover this patchset adds new 2-stage transfer support for our DMA. Baolin Wang (1): dmaengine: sprd: Remove direction usage fr

[PATCH 1/7] dmaengine: sprd: Remove direction usage from struct dma_slave_config

2018-09-28 Thread Baolin Wang
The direction field of struct dma_slave_config was marked deprecated, thus remove the usage. Signed-off-by: Baolin Wang --- drivers/dma/sprd-dma.c |3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/dma/sprd-dma.c b/drivers/dma/sprd-dma.c index 38d4e4f..c226dc93 100644 --- a/drivers

[PATCH 7/7] dmaengine: sprd: Add me as one of the module authors

2018-09-28 Thread Baolin Wang
From: Eric Long Add me as one of the module authors. Signed-off-by: Eric Long Signed-off-by: Baolin Wang --- drivers/dma/sprd-dma.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/sprd-dma.c b/drivers/dma/sprd-dma.c index 50d6569..e2f0167 100644 --- a/drivers/dma/sprd-dma.c

[PATCH 5/7] dmaengine: sprd: Support DMA link-list cyclic callback

2018-09-28 Thread Baolin Wang
From: Eric Long The Spreadtrum DMA link-list mode is always one cyclic transfer, so we should clear the SPRD_DMA_LLIST_END flag for the link-list configuration. Moreover add cyclic callback support for the cyclic transfer. Signed-off-by: Eric Long Signed-off-by: Baolin Wang --- drivers/dma/sp

[PATCH 2/7] dmaengine: sprd: Get transfer residue depending on the transfer direction

2018-09-28 Thread Baolin Wang
From: Eric Long Add one field to save the transfer direction for struct sprd_dma_desc, which is used to get correct transfer residue depending on the transfer direction. [Baolin Wang adds one field to present the transfer direction] Signed-off-by: Eric Long Signed-off-by: Baolin Wang --- driv

[PATCH 3/7] dmaengine: sprd: Fix the last link-list configuration

2018-09-28 Thread Baolin Wang
From: Eric Long We will pass sglen as 0 configure the last link-list configuration when filling the descriptor, which will cause the incorrect link-list configuration. Thus we should check if the sglen is 0 to configure the correct link-list configuration. Signed-off-by: Eric Long Signed-off-by

[PATCH] fs/dax.c: Use vmf_error() helper

2018-09-28 Thread zhong jiang
These codes can be replaced with new inline vmf_error(). Signed-off-by: zhong jiang --- fs/dax.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/dax.c b/fs/dax.c index b68ce48..e732f70 100644 --- a/fs/dax.c +++ b/fs/dax.c @@ -1311,9 +1311,8 @@ static vm_fault_t dax_fa

[BUG] sleep in atomic in 8250 runtime PM code path

2018-09-28 Thread Jisheng Zhang
Hi, Recently I found I could trigger sleep in atomic bug on berlin after commit d76c74387e1c ("serial: 8250_dw: Fix runtime PM handling"). The path looks like: dw8250_probe => serial850_register_8250_port => uart_add_one_port=> register_console => console_unlock => univ8250_console_write => seria

Response to SFConservancy: The copyright holder can rescind.

2018-09-28 Thread freedomfromruin
The software freedom conservancy has tendered its response: http://sfconservancy.org/news/2018/sep/26/GPLv2-irrevocability/ http://copyleft.org/guide/comprehensive-gpl-guidech8.html#x11-540007.4 "" "The GPLv2 have several provisions that, when taken together, can be construed as an irrevocable

[PATCH 3/3] Staging: rts5208: rtsx_scsi: Fixed multiple coding style issues Fized multiple braces issues

2018-09-28 Thread Maxime Desroches
--- drivers/staging/rts5208/rtsx_scsi.c | 108 ++-- 1 file changed, 36 insertions(+), 72 deletions(-) diff --git a/drivers/staging/rts5208/rtsx_scsi.c b/drivers/staging/rts5208/rtsx_scsi.c index c9a6d97938f6..9c594a778425 100644 --- a/drivers/staging/rts5208/rtsx_scsi.c +

Reminder: Licenses and revocability, in a paragraph or less. GPL 2 is revocable at the will of the grantor.

2018-09-28 Thread freedomfromruin
As has been stated in easily accessible terms elsewhere: "Most courts hold that simple, non-exclusive licenses with unspecified durations that are silent on revocability are revocable at will. This means that the licensor may terminate the license at any time, with or without cause." + Versio

[PATCH] MAINTAINERS: fix pattern in ARM/Synaptics berlin SoC section

2018-09-28 Thread Jisheng Zhang
Berlin SoC files has been moved from marvell dir to synaptics dir, but commit bc52497a595d ("MAINTAINERS: update entry for ARM/berlin") didn't update the dir accordingly. This patch fixes it. From another side, new derivative SoCs from Synaptics may not be named as berlin*, so let's update the ent

[PATCH 1/2] Staging: rts5208: rtsx_card: Fixed multiple coding style issues

2018-09-28 Thread Maxime Desroches
Fixed multiple coding style issues Signed-off-by: Maxime Desroches --- drivers/staging/rts5208/rtsx_card.c | 96 +++-- 1 file changed, 37 insertions(+), 59 deletions(-) diff --git a/drivers/staging/rts5208/rtsx_card.c b/drivers/staging/rts5208/rtsx_card.c index d26a8e37

[PATCH 2/2] Staging: rts5208: rtsx_chip: Fixed multiple coding style issues

2018-09-28 Thread Maxime Desroches
Fixed multiple braces issues Signed-off-by: Maxime Desroches --- drivers/staging/rts5208/rtsx_chip.c | 463 1 file changed, 199 insertions(+), 264 deletions(-) diff --git a/drivers/staging/rts5208/rtsx_chip.c b/drivers/staging/rts5208/rtsx_chip.c index 6b1234bff09c.

Re: [PATCH v2 0/5] Fix some bugs on RV32 build fail and issue

2018-09-28 Thread Zong Li
Palmer Dabbelt 於 2018年9月29日 週六 上午7:52寫道: > > On Wed, 26 Sep 2018 01:31:09 PDT (-0700), zong...@gmail.com wrote: > > This patches contain the modificaion as follows: > > 1. Fix up the building fail on RV32. > > 2. Add umoddi3 and udivmoddi4 functions for RV32. > > 3. Fix ioremap problem on RV32. >

Re: [PATCH 3/4] infiniband/mm: convert to the new put_user_page() call

2018-09-28 Thread John Hubbard
On 9/28/18 8:39 AM, Jason Gunthorpe wrote: > On Thu, Sep 27, 2018 at 10:39:47PM -0700, john.hubb...@gmail.com wrote: >> From: John Hubbard [...] >> >> diff --git a/drivers/infiniband/core/umem.c b/drivers/infiniband/core/umem.c >> index a41792dbae1f..9430d697cb9f 100644 >> +++ b/drivers/infiniband

RE: linux-next: manual merge of the rdma tree with Linus' tree

2018-09-28 Thread Parav Pandit
Hi Stephen, > -Original Message- > From: Stephen Rothwell > Sent: Thursday, September 27, 2018 7:01 PM > To: Doug Ledford ; Jason Gunthorpe > > Cc: Linux-Next Mailing List ; Linux Kernel > Mailing List ; Parav Pandit > > Subject: linux-next: manual merge of the rdma tree with Linus' tre

Re: [PATCH] arm: support big-endian for the virt architecture

2018-09-28 Thread Jason A. Donenfeld
Hey Arnd, On Fri, Sep 28, 2018 at 9:19 PM Arnd Bergmann wrote: > You can probably work around it by enabling ARCH_HIGHBANK, > which is a minimal platform with no other requirements, so it > should only add a few milliseconds to the build. Nice hack, thanks for the suggestion. Committed here: htt

Re: [PATCH 2/2] mmc: mediatek: add bus_clk control

2018-09-28 Thread Chaotian Jing
On Sat, 2018-09-29 at 01:28 +0800, Sean Wang wrote: > Hi, > > On Fri, 2018-09-28 at 19:40 +0800, Chaotian Jing wrote: > > when gate MSDC0_HCLK, access register will hang, even the MSDC driver > > will never accessing register after HCLK was gated, but for safety, need > > gate the bus_clk(which us

Re: [PATCH 1/2] mmc: dt-bindings: add "bus-clk" for MT2712

2018-09-28 Thread Chaotian Jing
On Sat, 2018-09-29 at 01:34 +0800, Sean Wang wrote: > On Fri, 2018-09-28 at 19:40 +0800, Chaotian Jing wrote: > > On MT2712 MSDC0/3, HCLK/bus-clk need gate/ungate together, > > or will hang when access MSDC register. > > > > Signed-off-by: Chaotian Jing > > --- > > Documentation/devicetree/bindi

[PATCH v1 2/2] mmc: mediatek: add bus_clk control

2018-09-28 Thread Chaotian Jing
when gate MSDC0_HCLK, access register will hang, even the MSDC driver will never accessing register after HCLK was gated, but for safety, need gate the bus_clk(which used to access register) too. Signed-off-by: Chaotian Jing --- drivers/mmc/host/mtk-sd.c | 6 ++ 1 file changed, 6 insertions(

[PATCH v1 1/2] mmc: dt-bindings: add "bus-clk" for MT2712

2018-09-28 Thread Chaotian Jing
On MT2712 MSDC0/3, HCLK/bus-clk need gate/ungate together, or will hang when access MSDC register. Signed-off-by: Chaotian Jing --- Documentation/devicetree/bindings/mmc/mtk-sd.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/mmc/mtk-sd.txt b/Documentati

Re: [PATCH 0/4] get_user_pages*() and RDMA: first steps

2018-09-28 Thread John Hubbard
On 9/28/18 2:49 PM, Jerome Glisse wrote: > On Fri, Sep 28, 2018 at 12:06:12PM -0700, John Hubbard wrote: >> On 9/28/18 8:29 AM, Jerome Glisse wrote: >>> On Thu, Sep 27, 2018 at 10:39:45PM -0700, john.hubb...@gmail.com wrote: From: John Hubbard [...] >>> So the solution is to wait (possibly fo

Re: Bad MAINTAINERS pattern in section 'ARM/Synaptics Berlin SoC support'

2018-09-28 Thread Jisheng Zhang
On Fri, 28 Sep 2018 14:51:32 -0700 Joe Perches wrote: > Please fix this defect appropriately. > > linux-next MAINTAINERS section: > > 2111ARM/Synaptics Berlin SoC support > 2112M: Jisheng Zhang > 2113M: Sebastian Hesselbarth > 2114L: linu

[PATCH] Staging: rts5208: rtsx_card: Fixed multiple coding style issues

2018-09-28 Thread Maxime Desroches
Fixed multiple coding style issues Signed-off-by: Maxime Desroches --- drivers/staging/rts5208/rtsx_card.c | 96 +++-- 1 file changed, 37 insertions(+), 59 deletions(-) diff --git a/drivers/staging/rts5208/rtsx_card.c b/drivers/staging/rts5208/rtsx_card.c index d26a8e37

Re: [PATCH] RISC-V: Show CPU ID and Hart ID separately in /proc/cpuinfo

2018-09-28 Thread Palmer Dabbelt
On Wed, 12 Sep 2018 07:38:22 PDT (-0700), a...@brainfault.org wrote: Currently, /proc/cpuinfo show logical CPU ID as Hart ID which is in-correct. This patch shows CPU ID and Hart ID separately in /proc/cpuinfo using cpuid_to_hardid_map(). With this patch, contents of /proc/cpuinfo looks as follo

Re: [RFC PATCH 1/5] RISC-V: Make IPI triggering flexible

2018-09-28 Thread Palmer Dabbelt
On Mon, 10 Sep 2018 06:34:18 PDT (-0700), Christoph Hellwig wrote: On Thu, Sep 06, 2018 at 04:15:14PM +0530, Anup Patel wrote: This patch is doing two things: 1. Allow IRQCHIP driver to provide IPI trigger mechanism And the big questions is why do we want that? The last thing we want is for p

Re: [PATCH 1/2] of/fdt: Allow architectures to override CONFIG_CMDLINE logic

2018-09-28 Thread Palmer Dabbelt
On Fri, 07 Sep 2018 13:29:03 PDT (-0700), robh...@kernel.org wrote: On Fri, Sep 7, 2018 at 1:55 PM Paul Burton wrote: The CONFIG_CMDLINE-related logic in early_init_dt_scan_chosen() falls back to copying CONFIG_CMDLINE into boot_command_line/data if the DT has a /chosen node but that node has

Re: [PATCH] RISC-V: Show IPI stats

2018-09-28 Thread Palmer Dabbelt
On Mon, 10 Sep 2018 06:46:59 PDT (-0700), Christoph Hellwig wrote: On Fri, Sep 07, 2018 at 06:14:29PM +0530, Anup Patel wrote: This patch provides arch_show_interrupts() implementation to show IPI stats via /proc/interrupts. Now the contents of /proc/interrupts" will look like below:

[PATCH] MAINTAINERS: removed staging/ft1000 driver

2018-09-28 Thread Deepa Dinamani
Delete the ft1000 MAINTAINERS entry, concluding the earlier removal of the driver in commit 6512edec48b2 ("staging: ft1000: remove obsolete driver"). Reported-by: Joe Perches Signed-off-by: Deepa Dinamani --- MAINTAINERS | 5 - 1 file changed, 5 deletions(-) diff --git a/MAINTAINERS b/MAIN

Re: [git pull] Input updates for v4.19-rc5

2018-09-28 Thread Greg Kroah-Hartman
On Fri, Sep 28, 2018 at 04:57:51PM -0700, Dmitry Torokhov wrote: > Hi Greg, > > Please pull from: > > git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus > > to receive updates for the input subsystem. Just a few driver fixes. Now pulled, thanks. greg k-h

Re: [GIT PULL] spi fixes for v4.19

2018-09-28 Thread Greg Kroah-Hartman
On Fri, Sep 28, 2018 at 03:30:41PM +0100, Mark Brown wrote: > The following changes since commit 5223c9c1cbfc0cd4d0a1b50758e0949af3290fa1: > > spi: spi-fsl-dspi: fix broken DSPI_EOQ_MODE (2018-08-28 20:55:23 +0100) > > are available in the Git repository at: > > https://git.kernel.org/pub/sc

Re: [GIT PULL] regulator fixes for v4.19

2018-09-28 Thread Greg Kroah-Hartman
On Fri, Sep 28, 2018 at 02:42:53PM +0100, Mark Brown wrote: > The following changes since commit 5b394b2ddf0347bef56e50c69a58773c94343ff3: > > Linux 4.19-rc1 (2018-08-26 14:11:59 -0700) > > are available in the Git repository at: > > https://git.kernel.org/pub/scm/linux/kernel/git/broonie/re

Re: Bad MAINTAINERS pattern in section 'STAGING - FLARION FT1000 DRIVERS'

2018-09-28 Thread Joe Perches
On Fri, 2018-09-28 at 17:46 -0700, Greg Kroah-Hartman wrote: > On Fri, Sep 28, 2018 at 03:04:23PM -0700, Joe Perches wrote: > > Please fix this defect appropriately. > > > > linux-next MAINTAINERS section: > > > > 13899 STAGING - FLARION FT1000 DRIVERS > > 13900 M: Marek Belisko

Step-by-Step Tutorial: How to Setup Your Own e-Commerce Online Store using WooCommerce 3.4.5, Wordpress 4.9.8, and CentOS 1805 (LAMP) in Amazon AWS Cloud

2018-09-28 Thread Turritopsis Dohrnii Teo En Ming
Step-by-Step Tutorial: How to Setup Your Own e-Commerce Online Store using WooCommerce 3.4.5, Wordpress 4.9.8, and CentOS 1805 (LAMP) in Amazon AWS Cloud Author: Mr. Turritopsis Dohrnii Teo En Ming Country: Singapore Date: 28th September 2018 Friday Document Version: 1809.01 Abbreviations ==

Re: [PATCH] sched/fair: vruntime should normalize when switching from fair

2018-09-28 Thread Wanpeng Li
On Sat, 29 Sep 2018 at 01:36, Dietmar Eggemann wrote: > > On 09/28/2018 06:10 PM, Steve Muckle wrote: > > On 09/27/2018 05:43 PM, Wanpeng Li wrote: > On your CPU4: > scheduler_ipi() > -> sched_ttwu_pending() > -> ttwu_do_activate()=> p->sched_remote_wakeup should

Re: [GIT PULL] pin control fixes for v4.19 take 4

2018-09-28 Thread Greg KH
On Fri, Sep 28, 2018 at 08:59:32AM +0200, Linus Walleij wrote: > Hi Greg, > > here are some three pin control fixes for v4.19. > All are x86 related. > > Please pull them in! Now pulled, thanks. greg k-h

Re: Licenses and revocability, in a paragraph or less.

2018-09-28 Thread freedomfromruin
It is imperative that the people know their rights so that they are not taken advantage of by moneyed interests. For those who are dispossessed there are remedies at law and in equity. Here we have a situation where moneyed interests have found a social exploit to leverage into ascendancy, whi

Again: Licenses and revocability, in a paragraph or less. GPL 2 is revocable at the will of the grantor.

2018-09-28 Thread freedomfromruin
As has been stated in easily accessible terms elsewhere: "Most courts hold that simple, non-exclusive licenses with unspecified durations that are silent on revocability are revocable at will. This means that the licensor may terminate the license at any time, with or without cause." + Versio

Re: [PATCH -V5 RESEND 03/21] swap: Support PMD swap mapping in swap_duplicate()

2018-09-28 Thread Huang, Ying
Daniel Jordan writes: > On Fri, Sep 28, 2018 at 04:19:03PM +0800, Huang, Ying wrote: >> Daniel Jordan writes: >> > One way is to change >> > copy_one_pte's return to int so we can just pass the error code back to >> > copy_pte_range so it knows whether to try adding the continuation. >> >> Ther

Re: Bad MAINTAINERS pattern in section 'STAGING - FLARION FT1000 DRIVERS'

2018-09-28 Thread Greg Kroah-Hartman
On Fri, Sep 28, 2018 at 03:04:23PM -0700, Joe Perches wrote: > Please fix this defect appropriately. > > linux-next MAINTAINERS section: > > 13899 STAGING - FLARION FT1000 DRIVERS > 13900 M: Marek Belisko > 13901 S: Odd Fixes > --> 13902 F: drivers/stag

Re: [PATCH v3 2/2] spi: Introduce new driver for Qualcomm QuadSPI controller

2018-09-28 Thread Stephen Boyd
Quoting Ryan Case (2018-09-28 11:19:51) > On Wed, Sep 26, 2018 at 11:43 PM Stephen Boyd wrote: > > Quoting Ryan Case (2018-09-26 13:52:04) > > > From: Girish Mahadevan > > > +#include > > > + > > > +#define AHB_MIN_HZ 960UL > > > > Is this used? > > Nope. Do you want all current

Re: [PATCH] regulator: core: Pass max_uV value to regulator_set_voltage_rdev

2018-09-28 Thread Dmitry Osipenko
On 9/29/18 3:27 AM, Tony Lindgren wrote: > * Dmitry Osipenko [180928 23:55]: >> On 9/29/18 2:17 AM, Dmitry Osipenko wrote: >>> On 9/29/18 1:41 AM, Tony Lindgren wrote: I'm still getting these errors after init: >>> >>> Thank you very much again, seems I got what's wrong with your case. The >

Hello

2018-09-28 Thread Margaret Kwan Wing Han
I have a legal business proposal worth $30.5M for you if interested reply me for more details. Regards, Ms Margaret Kwan Wing Han

Re: [PATCH] regulator: core: Pass max_uV value to regulator_set_voltage_rdev

2018-09-28 Thread Tony Lindgren
* Dmitry Osipenko [180928 23:55]: > On 9/29/18 2:17 AM, Dmitry Osipenko wrote: > > On 9/29/18 1:41 AM, Tony Lindgren wrote: > >> I'm still getting these errors after init: > > > > Thank you very much again, seems I got what's wrong with your case. The > > ti-abb-regulator driver sets the "abb->c

Re: [PATCH v7 1/6] seccomp: add a return code to trap to userspace

2018-09-28 Thread Aleksa Sarai
On 2018-09-27, Tycho Andersen wrote: > This patch introduces a means for syscalls matched in seccomp to notify > some other task that a particular filter has been triggered. > > The motivation for this is primarily for use with containers. For example, > if a container does an init_module(), we o

Response to SFConservancy's updated GPL guide.

2018-09-28 Thread vwdfrwd
The software freedom conservancy has tendered its response: http://sfconservancy.org/news/2018/sep/26/GPLv2-irrevocability/ http://copyleft.org/guide/comprehensive-gpl-guidech8.html#x11-540007.4 "" "The GPLv2 have several provisions that, when taken together, can be construed as an irrevocable

Re: [RFC 2/3] RISC-V:Support per-hart timebase-frequency

2018-09-28 Thread Palmer Dabbelt
On Mon, 17 Sep 2018 07:23:08 PDT (-0700), Christoph Hellwig wrote: On Fri, Sep 14, 2018 at 02:54:55PM -0700, Atish Patra wrote: Follow the updated DT specs and read the timebase-frequency from the boot cpu. Keep the old DT reading as well for backward compatibility. This patch is rework of old p

Re: [RESEND PATCH] Revert "pwm: Set class for exported channels in sysfs"

2018-09-28 Thread Gottfried Haider
Hello Thierry & Fabrice, >> Still, it is possible to send uevent (KOBJ_CHANGE) on pwmchipN device, >> to notify of a change, e.g. pwmX channel being exported/unexported. I tested this patch, and I am happy to report that it works with the udev rule that Raspbian (Raspberry Pi's Debian derivative)

Re: [PATCH v3 2/2] spi: Introduce new driver for Qualcomm QuadSPI controller

2018-09-28 Thread Doug Anderson
Hi, On Fri, Sep 28, 2018 at 11:20 AM Ryan Case wrote: > > > + master->max_speed_hz = 3; > > > + master->num_chipselect = QSPI_NUM_CS; > > > + master->bus_num = pdev->id; > > > > Can this come from DT aliases? I've never thought about qspi and > > "regular" spi being in t

Re: [PATCH v5 4/9] PCI: mediatek: Convert to use pci_host_probe()

2018-09-28 Thread Honghui Zhang
On Fri, 2018-09-28 at 23:41 +0800, Ryder Lee wrote: > On Fri, 2018-09-28 at 18:04 +0800, honghui.zh...@mediatek.com wrote: > > From: Honghui Zhang > > > > Part of mtk_pcie_register_host is an open-coded version of > > pci_host_probe(). So instead of duplicating this code, use > > pci_host_probe()

Re: [PATCH v5 00/12] SMP cleanup and new features

2018-09-28 Thread Palmer Dabbelt
On Thu, 13 Sep 2018 11:36:53 PDT (-0700), atish.pa...@wdc.com wrote: This patch series has updated the assorted cleanup series by palmer. The original cleanup patch series can be found here. http://lists.infradead.org/pipermail/linux-riscv/2018-August/001232.html It also implemented decoupling l

Re: [PATCH] MAINTAINERS: Drop dt-bindings/genpd/k2g.h

2018-09-28 Thread Santosh Shilimkar
Cc: Dave Gerlach Cc: Santosh Shilimkar Cc: Tero Kristo Reported-by: Joe Perches Signed-off-by: Nishanth Menon --- A big oops.. Sorry about that. will do better next time. I tried to relook and I think we have'nt missed any other files. Based off next-20180928 tag. Santosh, any chance

Re: [PATCH] Input: Support for Xbox1 PDP Camo series gamepad

2018-09-28 Thread Dmitry Torokhov
On Tue, Aug 28, 2018 at 12:48:11AM -0500, Ramses Ramírez wrote: > The "Xbox One PDP Wired Controller - Camo series" has a different > product-id than the regular PDP controller and the PDP stealth series, > but it uses the same initialization sequence. This patch adds the > product-id of the camo s

Re: [PATCH] mm: Fix int overflow in callers of do_shrink_slab()

2018-09-28 Thread Kirill Tkhai
On 29.09.2018 00:15, Andrew Morton wrote: > On Fri, 28 Sep 2018 14:28:32 +0300 Kirill Tkhai wrote: > >> do_shrink_slab() returns unsigned long value, and >> the placing into int variable cuts high bytes off. >> Then we compare ret and 0xfffe (since SHRINK_EMPTY >> is converted to ret type). >

Re: [PATCH] input: sun4i-lradc: Convert to using %pOFn instead of device_node.name

2018-09-28 Thread Dmitry Torokhov
On Mon, Aug 27, 2018 at 08:52:24PM -0500, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Hans de Goede > Cc: Dmitry Torokhov > Cc: Maxime Ripard > Cc: linux-in...@vger.kernel.org > Si

[git pull] Input updates for v4.19-rc5

2018-09-28 Thread Dmitry Torokhov
Hi Greg, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus to receive updates for the input subsystem. Just a few driver fixes. Changelog: - Aaron Ma (1): Input: elantech - enable middle button of touchpad on ThinkPad P72 Andreas Sc

Re: [PATCH v2 0/5] Fix some bugs on RV32 build fail and issue

2018-09-28 Thread Palmer Dabbelt
On Wed, 26 Sep 2018 01:31:09 PDT (-0700), zong...@gmail.com wrote: This patches contain the modificaion as follows: 1. Fix up the building fail on RV32. 2. Add umoddi3 and udivmoddi4 functions for RV32. 3. Fix ioremap problem on RV32. Changes in v2: - Retain the copyright notices from libgcc in

Re: [PATCH v6 2/2] iio: proximity: vl53l0x: add interrupt support

2018-09-28 Thread Rob Herring
On Fri, Sep 28, 2018 at 4:36 AM Song Qiang wrote: > > On Wed, Sep 26, 2018 at 05:46:18PM -0500, Rob Herring wrote: > > On Sat, Sep 22, 2018 at 04:05:23PM +0100, Jonathan Cameron wrote: > > > On Tue, 18 Sep 2018 16:24:22 +0800 > > > Song Qiang wrote: > > > > > > > The first version of this driver

Re: [PATCH] regulator: core: Pass max_uV value to regulator_set_voltage_rdev

2018-09-28 Thread Dmitry Osipenko
On 9/29/18 2:17 AM, Dmitry Osipenko wrote: > On 9/29/18 1:41 AM, Tony Lindgren wrote: >> * Dmitry Osipenko [180928 22:31]: >>> On 9/28/18 11:22 PM, Tony Lindgren wrote: * Dmitry Osipenko [180928 20:13]: > Tony, could you please give a try to the patch below? > > Do the following:

Re: [PATCH v7] regulator: fixed: Convert to use GPIO descriptor only

2018-09-28 Thread John Stultz
On Thu, Sep 6, 2018 at 6:01 AM Linus Walleij wrote: > > As we augmented the regulator core to accept a GPIO descriptor instead > of a GPIO number, we can augment the fixed GPIO regulator to look up > and pass that descriptor directly from device tree or board GPIO > descriptor look up tables. > >

Re: [PATCH RT 2/2] watchdog, rt: prevent deferral of watchdogd wakeup

2018-09-28 Thread kbuild test robot
Hi Julia, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v4.19-rc5 next-20180928] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux

Re: [PATCH] regulator: core: Pass max_uV value to regulator_set_voltage_rdev

2018-09-28 Thread Dmitry Osipenko
On 9/29/18 1:41 AM, Tony Lindgren wrote: > * Dmitry Osipenko [180928 22:31]: >> On 9/28/18 11:22 PM, Tony Lindgren wrote: >>> * Dmitry Osipenko [180928 20:13]: Tony, could you please give a try to the patch below? Do the following: 1) git cherry-pick 696861761a58d8c93605b

Re: Bad MAINTAINERS pattern in section 'ACPI'

2018-09-28 Thread Bjorn Helgaas
[+cc Tony, Borislav (ACPI APEI reviewers), linux-pci] On Fri, Sep 28, 2018 at 02:50:53PM -0700, Joe Perches wrote: > Please fix this defect appropriately. > > linux-next MAINTAINERS section: > > 308 ACPI > 309 M: "Rafael J. Wysocki" > 310 M: Len Brown >

Re: [PATCH v7 0/6] seccomp trap to userspace

2018-09-28 Thread Jann Horn
On Sat, Sep 29, 2018 at 12:47 AM Michael Kerrisk (man-pages) wrote: > On Sat, 29 Sep 2018 at 00:35, Kees Cook wrote: > > On Fri, Sep 28, 2018 at 3:16 PM, Michael Kerrisk (man-pages) > > wrote: > > > On Sat, 29 Sep 2018 at 00:04, Tycho Andersen wrote: > > >> On Fri, Sep 28, 2018 at 11:57:40PM +0

Re: Bad MAINTAINERS pattern in section 'Texas Instruments' System Control Interface (TISCI) Protocol Driver'

2018-09-28 Thread Nishanth Menon
On 22:04-20180928, Joe Perches wrote: > Please fix this defect appropriately. > > linux-next MAINTAINERS section: > > 14531 Texas Instruments' System Control Interface (TISCI) Protocol > Driver > 14532 M: Nishanth Menon > 14533 M:

Re: [PATCH v7 0/6] seccomp trap to userspace

2018-09-28 Thread Michael Kerrisk (man-pages)
Hi Kees, On Sat, 29 Sep 2018 at 00:35, Kees Cook wrote: > > On Fri, Sep 28, 2018 at 3:16 PM, Michael Kerrisk (man-pages) > wrote: > > Hi Tycho, > > > > On Sat, 29 Sep 2018 at 00:04, Tycho Andersen wrote: > >> > >> On Fri, Sep 28, 2018 at 11:57:40PM +0200, Michael Kerrisk (man-opages) > >> wrote

[PATCH] MAINTAINERS: Drop dt-bindings/genpd/k2g.h

2018-09-28 Thread Nishanth Menon
eported-by: Joe Perches Signed-off-by: Nishanth Menon --- A big oops.. Sorry about that. will do better next time. I tried to relook and I think we have'nt missed any other files. Based off next-20180928 tag. Santosh, any chance you could pick this up -> Thread: https://www.mail-archiv

Re: [PATCH] mm: enforce THP for VM_NOHUGEPAGE dax mappings

2018-09-28 Thread Yang Shi
On 9/28/18 3:36 PM, Dan Williams wrote: On Fri, Sep 28, 2018 at 3:34 PM wrote: commit baabda261424517110ea98c6651f632ebf2561e3 ("mm: always enable thp for dax mappings") says madvise hguepage policy makes less sense for dax, and force enabling thp for dax mappings in all cases, even though T

Re: [PATCH] regulator: core: Pass max_uV value to regulator_set_voltage_rdev

2018-09-28 Thread Tony Lindgren
* Dmitry Osipenko [180928 22:31]: > On 9/28/18 11:22 PM, Tony Lindgren wrote: > > * Dmitry Osipenko [180928 20:13]: > >> Tony, could you please give a try to the patch below? > >> > >> Do the following: > >> > >> 1) git cherry-pick 696861761a58d8c93605b5663824929fb6540f16 > >> 2) git cherry-pick

Re: [PATCH 0/9] AHCI and SATA PHY support for BCM63138

2018-09-28 Thread Florian Fainelli
On 09/25/2018 09:12 AM, Florian Fainelli wrote: > On 09/24/2018 11:19 PM, Kishon Vijay Abraham I wrote: >> >> >> On Friday 21 September 2018 12:49 AM, Florian Fainelli wrote: >>> On 09/20/2018 12:16 PM, Florian Fainelli wrote: Hi Kishon, Tejun, This patch series adds support for the

Re: [PATCH] serial: 8250_dw: Fix runtime PM handling

2018-09-28 Thread Guenter Roeck
On Thu, May 10, 2018 at 03:13:56PM +0100, Phil Edworthy wrote: > When using kgdb, you get an abort when accessing the UART registers. > This is because the driver has already entered runtime PM and so turned > off the bus clock needed to access the registers. > > To fix this, set the capability in

[PATCH] i2c: brcmstb: Allow enabling the driver on DSL SoCs

2018-09-28 Thread Florian Fainelli
ARCH_BCM_63XX which is used by ARM-based DSL SoCs from Broadcom uses the same controller, make it possible to select the STB driver and update the Kconfig and help text a bit. Signed-off-by: Florian Fainelli --- drivers/i2c/busses/Kconfig | 7 --- 1 file changed, 4 insertions(+), 3 deletions

Re: [PATCH RT 2/2] watchdog, rt: prevent deferral of watchdogd wakeup

2018-09-28 Thread kbuild test robot
Hi Julia, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v4.19-rc5 next-20180928] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux

Re: [PATCH 05/13] staging:rtl8192u: Remove AdvCoding and GreenField - Style

2018-09-28 Thread John Whitmore
On Fri, Sep 28, 2018 at 02:35:50PM +0200, Greg KH wrote: > On Wed, Sep 26, 2018 at 08:16:56PM +0100, John Whitmore wrote: > > The member variables AdvCoding and GreenField are unused in code so > > have been removed from the structure and associated initialisation > > function. > > > > This is a c

[PATCH] pstore/ram: Fix failure-path memory leak in ramoops_init

2018-09-28 Thread Kees Cook
As reported by nixiaoming, with some minor clarifications: 1) memory leak in ramoops_register_dummy(): dummy_data = kzalloc(sizeof(*dummy_data), GFP_KERNEL); but no kfree() if platform_device_register_data() fails. 2) memory leak in ramoops_init(): Missing platform_device_unregister(dumm

[PATCH v5 03/21] tpm: factor out tpm 1.x duration calculation to tpm1-cmd.c

2018-09-28 Thread Tomas Winkler
Factor out TPM 1.x commands calculation into tpm1-cmd.c file. and change the prefix from tpm_ to tpm1_. No functional change is done here. Signed-off-by: Tomas Winkler Tested-by: Jarkko Sakkinen --- V2-V3: Rebase V4: 1. Remove the licence statement it's already covered by SPDX. 2. Add kdoc t

[PATCH v5 04/21] tpm: add tpm_calc_ordinal_duration() wrapper

2018-09-28 Thread Tomas Winkler
Add convenient wrapper for ordinal duration computation to remove boiler plate if else statement over TPM2. if (chip->flags & TPM_CHIP_FLAG_TPM2) tpm2_calc_ordinal_duration(chip, ordinal); else tpm1_calc_ordinal_duration(chip, ordinal); Signed-off-by: Tomas Winkler Reviewed-by: J

Re: [PATCH] mm: enforce THP for VM_NOHUGEPAGE dax mappings

2018-09-28 Thread Dan Williams
On Fri, Sep 28, 2018 at 3:34 PM wrote: > > commit baabda261424517110ea98c6651f632ebf2561e3 ("mm: always enable thp > for dax mappings") says madvise hguepage policy makes less sense for > dax, and force enabling thp for dax mappings in all cases, even though > THP is set to "never". > > However, t

[PATCH v5 08/21] tpm: factor out tpm1_get_random into tpm1-cmd.c

2018-09-28 Thread Tomas Winkler
Factor out get random implementation from tpm-interface.c into tpm1_get_random function in tpm1-cmd.c. No functional changes. Signed-off-by: Tomas Winkler Reviewed-by: Jarkko Sakkine --- V2-V3: Rebase V4-V5: Resend drivers/char/tpm/tpm-interface.c | 58 +---

[PATCH v5 05/21] tpm: factor out tpm_get_timeouts()

2018-09-28 Thread Tomas Winkler
Factor out tpm_get_timeouts() into tpm2_get_timeouts() and tpm1_get_timeouts() Signed-off-by: Tomas Winkler Reviewed-by: Jarkko Sakkinen Tested-by: Jarkko Sakkinen --- V2-V3: Rebase V4: Fix the commit message. V5: Resend. drivers/char/tpm/tpm-interface.c | 127 ++--

[PATCH v5 09/21] tpm: move tpm 1.x selftest code from tpm-interface.c tpm1-cmd.c

2018-09-28 Thread Tomas Winkler
Move the tpm1 selftest code functions to tpm1-cmd.c and adjust callers to use the new function names. 1. tpm_pcr_read_dev() to tpm1_pcr_read_dev(). 2. tpm_continue_selftest() to tpm1_continue_selftest(). 3. tpm_do_selftest() to tpm1_do_selftest() Signed-off-by: Tomas Winkler Tested-by: Jarkko

[PATCH v5 11/21] tpm: factor out tpm_startup function

2018-09-28 Thread Tomas Winkler
TPM manual startup is used only from within TPM 1.x or TPM 2.x code, hence remove tpm_startup() function from tpm-interface.c and add two static functions implementations tpm1_startup() and tpm2_startup() into to tpm1-cmd.c and tpm2-cmd.c respectively. Signed-off-by: Tomas Winkler Tested-by: Jark

[PATCH v5 20/21] tpm1: reimplement tpm1_continue_selftest() using tpm_buf

2018-09-28 Thread Tomas Winkler
Reimplement tpm1_continue_selftest() using tpm_buf structure. This is the last command using the old tpm_cmd_t structure and now the structure can be removed. Cc: Nayna Jain Signed-off-by: Tomas Winkler Reviewed-by: Jarkko Sakkinen Tested-by: Jarkko Sakkinen --- V3: New in the series. V4: Res

[PATCH v5 17/21] tpm1: implement tpm1_pcr_read_dev() using tpm_buf structure

2018-09-28 Thread Tomas Winkler
Implement tpm1_pcr_read_dev() using tpm_buf and remove now unneeded structures from tpm.h Signed-off-by: Tomas Winkler Reviewed-by: Jarkko Sakkinen Tested-by: Jarkko Sakkinen --- V3: New in the series. V4-V5: Resend. drivers/char/tpm/tpm.h | 18 ++ drivers/char/tpm/tpm1-c

  1   2   3   4   5   6   >