Re: [PATCH] [linux-next] workqueue: Fix a typo in workqueue.txt

2016-07-06 Thread Jonathan Corbet
On Tue, 5 Jul 2016 18:45:49 -0400 Tejun Heo wrote: > On Tue, Jul 05, 2016 at 08:55:30PM +0900, Masanari Iida wrote: > > This patch fix a spelling typo in workqueue.txt > > > > Signed-off-by: Masanari Iida > > Acked-by: Tejun Heo > > Jonathan, can you please route this one? Applied to the

[linux-next] Errors while "make htmldocs" in linux-next.

2016-07-06 Thread Masanari Iida
On linux-next ( next-2160706), following errors happen these days while running "make htmldocs" HTMLDocumentation/DocBook/device-drivers.html /home/iida/Repo/linux-next/Documentation/DocBook/device-drivers.aux.xml:28799: element refentry: validity error : ID API-reservation-object-reserve-s

[PATCH v3] Add kernel parameter to blacklist modules

2016-07-06 Thread Prarit Bhargava
Rusty? Didn't see anything from you on this ... resending. P. 8< Blacklisting a module in linux has long been a problem. The current procedure is to use rd.blacklist=module_name, however, that doesn't cover the case after the initramfs and before a boot prompt (where one is supposed t

Re: [PATCH] mmc: core: Extend sysfs with OCR register

2016-07-06 Thread Ulf Hansson
On 4 July 2016 at 13:56, Bojan Prtvar wrote: > Make operation conditions register (OCR) easily accessible from user space. > > Signed-off-by: Bojan Prtvar Thanks, applied for next! Amended the changelog with the explanation why this change is wanted. Kind regards Uffe > --- > Documentation/mm

[PATCH 0/3] dma, nvme, powerpc: introduce and implement DMA_ATTR_NO_WARN

2016-07-06 Thread Mauricio Faria de Oliveira
This patchset introduces dma_attr DMA_ATTR_NO_WARN (just like __GFP_NOWARN), which tells the DMA-mapping subsystem to supress allocation failure reports. On some architectures allocation failures are reported with error messages to the system logs. Although this can help to identify and debug pro

[PATCH 3/3] powerpc: implement DMA_ATTR_NO_WARN

2016-07-06 Thread Mauricio Faria de Oliveira
Add support for the DMA_ATTR_NO_WARN attribute on powerpc iommu code. Signed-off-by: Mauricio Faria de Oliveira --- arch/powerpc/kernel/iommu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/kernel/iommu.c b/arch/powerpc/kernel/iommu.c index a8e3490..69bb17f

[PATCH 2/3] nvme: implement DMA_ATTR_NO_WARN

2016-07-06 Thread Mauricio Faria de Oliveira
Use the DMA_ATTR_NO_WARN attribute on dma_map_sg() calls of nvme driver. Signed-off-by: Mauricio Faria de Oliveira --- drivers/nvme/host/pci.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index d1a8259..c3c3348 1

[PATCH 1/3] dma: introduce DMA_ATTR_NO_WARN

2016-07-06 Thread Mauricio Faria de Oliveira
Introduce the DMA_ATTR_NO_WARN attribute, and document it. Signed-off-by: Mauricio Faria de Oliveira --- Documentation/DMA-attributes.txt | 17 + include/linux/dma-attrs.h| 1 + 2 files changed, 18 insertions(+) diff --git a/Documentation/DMA-attributes.txt b/Documentat

Re: [PATCH] doc: flat-table directive

2016-07-06 Thread Mauro Carvalho Chehab
Em Fri, 1 Jul 2016 16:07:47 +0200 Markus Heiser escreveu: > Am 01.07.2016 um 15:09 schrieb Jani Nikula : > > > On Fri, 01 Jul 2016, Markus Heiser wrote: > >> In Sphinx, the code-block directive is a literal block, no refs or markup > >> will be interpreted. This is different to what you know

Re: [PATCH 2/3] nvme: implement DMA_ATTR_NO_WARN

2016-07-06 Thread Gabriel Krisman Bertazi
Mauricio Faria de Oliveira writes: > Use the DMA_ATTR_NO_WARN attribute on dma_map_sg() calls of nvme driver. > > Signed-off-by: Mauricio Faria de Oliveira checkpatch.pl complains about line wrapping. Other than that, this looks good to me. Reviewed-by: Gabriel Krisman Bertazi > --- > driv