Re: [PATCH v5 08/17] dax: set errors in mapping when writeback fails

2017-06-05 Thread Jeff Layton
On Mon, 2017-06-05 at 19:01 -0600, Ross Zwisler wrote: > On Wed, May 31, 2017 at 08:45:31AM -0400, Jeff Layton wrote: > > Jan's description for this patch is much better than mine, so I'm > > quoting it verbatim here: > > > > -8<- > > DAX currently doesn't set

Re: [PATCH v5 08/17] dax: set errors in mapping when writeback fails

2017-06-05 Thread Ross Zwisler
On Wed, May 31, 2017 at 08:45:31AM -0400, Jeff Layton wrote: > Jan's description for this patch is much better than mine, so I'm > quoting it verbatim here: > > -8<- > DAX currently doesn't set errors in the mapping when cache flushing > fails in

[PATCH v4 10/28] Documentation: kernel-parameters: Document owl earlycon

2017-06-05 Thread Andreas Färber
Add the "owl" earlycon option to kernel-parameters.txt. Signed-off-by: Andreas Färber --- v3 -> v4: * Extended help text and commit message (Jonathan) v1 -> v2 -> v3: unchanged Documentation/admin-guide/kernel-parameters.txt | 6 ++ 1 file changed, 6 insertions(+)

Re: [PATCH] Fixed a little typo

2017-06-05 Thread Jonathan Corbet
On Thu, 18 May 2017 14:32:57 -0400 Ayan Shafqat wrote: > --- > Documentation/process/coding-style.rst | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Documentation/process/coding-style.rst > b/Documentation/process/coding-style.rst >

Re: [PATCH] docs: driver-api: i2c: remove some outdated information

2017-06-05 Thread Jonathan Corbet
On Tue, 23 May 2017 15:46:54 +0200 Wolfram Sang wrote: > a) Linux can be an I2C slave meanwhile > b) all drivers except one use the driver model currently > > Update the documentation. I wasn't sure if you wanted me to apply this one or not...I don't see it in linux-next,

Re: [PATCH] Documentation: DMA API: fix a typo in a function name

2017-06-05 Thread Jonathan Corbet
On Sat, 27 May 2017 20:52:43 +0200 Wolfram Sang wrote: > Correct the typo, the wrongly typed function does not exist. Applied to the docs tree, thanks. jon -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to

Re: [PATCH] doc/ko_KR/memory-barriers: Update control-dependencies example

2017-06-05 Thread Jonathan Corbet
On Thu, 1 Jun 2017 13:21:02 +0900 SeongJae Park wrote: > This commit applies upstream change, commit b26cfc48e3e0 ("doc: Update > control-dependencies section of memory-barriers.txt"), to Korean > translation. I've applied this to the docs tree, thanks. jon -- To

[PATCH 0/3] move visorbus out of staging to drivers/virt/visorbus

2017-06-05 Thread David Kershner
This patchset moves drivers/staging/unisys/include to include/linux/visorbus, and moves drivers/staging/unisys/visorbus to drivers/virt/visorbus. David Kershner (3): include: linux: visorbus: Add visorbus to include/linux directory Documentation: Move visorbus documentation from staging to

[PATCH 3/3] drivers: virt: Add visorbus to the drivers/virt directory

2017-06-05 Thread David Kershner
This patch moves visorbus from drivers/staging/visorbus to drivers/virt. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- MAINTAINERS | 1 + drivers/staging/unisys/Kconfig

[PATCH 1/3] include: linux: visorbus: Add visorbus to include/linux directory

2017-06-05 Thread David Kershner
Update include/linux to include the s-Par drivers set's common header files, which are needed for the s-Par visorbus. Since the include directories are now moved to include/linux/visorbus, this patch makes all the s-Par drivers (visorbus, visorinput, visornic, and visorhba) use the new include

[PATCH 2/3] Documentation: Move visorbus documentation from staging to Documentation/

2017-06-05 Thread David Kershner
This patch simply does a git mv of the drivers/staging/unisys/Documentation directory to Documentation. It also renames overview.txt to visorbus.txt and renames sysfs-platform-visorchipset to the correct name sysfs-bus-visorbus. Signed-off-by: David Kershner

[PATCH v6 4/7] Documentation/dev-tools: Add kselftest

2017-06-05 Thread Mickaël Salaün
Move kselftest.txt to dev-tools/kselftest.rst . Signed-off-by: Mickaël Salaün Acked-by: Kees Cook Cc: Jonathan Corbet Cc: Shuah Khan --- Documentation/00-INDEX | 2 --

[PATCH v6 2/7] selftests: Cosmetic renames in kselftest_harness.h

2017-06-05 Thread Mickaël Salaün
Keep the content consistent with the new name. Signed-off-by: Mickaël Salaün Acked-by: Kees Cook Cc: Andy Lutomirski Cc: Shuah Khan Cc: Will Drewry ---

[PATCH v6 1/7] selftests: Make test_harness.h more generally available

2017-06-05 Thread Mickaël Salaün
The seccomp/test_harness.h file contains useful helpers to build tests. Moving it to the selftest directory should benefit to other test components. Keep seccomp maintainers for this file. Signed-off-by: Mickaël Salaün Acked-by: Kees Cook Acked-by: Will

[PATCH v6 3/7] selftests/seccomp: Force rebuild according to dependencies

2017-06-05 Thread Mickaël Salaün
Rebuild the seccomp tests when kselftest_harness.h is updated. Signed-off-by: Mickaël Salaün Acked-by: Kees Cook Cc: Andy Lutomirski Cc: Shuah Khan Cc: Will Drewry ---

[PATCH v6 6/7] selftests: Remove the TEST_API() wrapper from kselftest_harness.h

2017-06-05 Thread Mickaël Salaün
Remove the TEST_API() wrapper to expose the underlying macro arguments to the documentation tools. Use "git diff --patience" to get a more readable patch. Signed-off-by: Mickaël Salaün Cc: Andy Lutomirski Cc: Jonathan Corbet Cc: Kees Cook

[PATCH v6 7/7] Documentation/dev-tools: Add kselftest_harness documentation

2017-06-05 Thread Mickaël Salaün
Add ReST metadata to kselftest_harness.h to be able to include the comments in the Sphinx documentation. Signed-off-by: Mickaël Salaün Cc: Andy Lutomirski Cc: Jonathan Corbet Cc: Kees Cook Cc: Shuah Khan

[PATCH v6 5/7] Documentation/dev-tools: Use reStructuredText markups for kselftest

2017-06-05 Thread Mickaël Salaün
Include and convert kselftest to the Sphinx format. Signed-off-by: Mickaël Salaün Acked-by: Kees Cook Cc: Jonathan Corbet Cc: Shuah Khan --- Changes since v2: * lighten the modifications (suggested by Kees Cook) ---

[PATCH v6 0/7] Add kselftest_harness.h

2017-06-05 Thread Mickaël Salaün
Hi, This patch series make the seccomp/test_harness.h more generally available [1] and update the kselftest documentation in the Sphinx format. It also improve the Makefile of seccomp tests to take into account any kselftest_harness.h update. [1]

Re: [PATCH v5 7/7] Documentation/dev-tools: Add kselftest_harness documentation

2017-06-05 Thread Shuah Khan
On 06/03/2017 05:17 AM, Mickaël Salaün wrote: > > On 02/06/2017 22:02, Shuah Khan wrote: >> Hi Mickaël, >> >> On 05/26/2017 12:44 PM, Mickaël Salaün wrote: >>> Add ReST metadata to kselftest_harness.h to be able to include the >>> comments in the Sphinx documentation. >>> >> >> These don't belong

Re: [PATCH v5 3/7] selftests/seccomp: Force rebuild according to dependencies

2017-06-05 Thread Shuah Khan
Hi Mickaël, On 06/03/2017 05:13 AM, Mickaël Salaün wrote: > Hi Shuah, > > On 02/06/2017 21:31, Shuah Khan wrote: >> Hi Mickaël, >> >> On 05/26/2017 12:43 PM, Mickaël Salaün wrote: >>> Rebuild the seccomp tests when kselftest_harness.h is updated. >>> >>> Signed-off-by: Mickaël Salaün

Re: [PATCH v1] net: phy: Delete unused function phy_ethtool_gset

2017-06-05 Thread Florian Fainelli
On 06/05/2017 12:18 AM, Yuval Shaia wrote: > It's unused, so remove it. > > Signed-off-by: Yuval Shaia Reviewed-by: Florian Fainelli -- Florian -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to

Re: [PATCH v13 8/9] arm64: dts: hi6220: register debug module

2017-06-05 Thread Wei Xu
Hi Mathieu, On 2017/6/5 15:17, Mathieu Poirier wrote: > On 5 June 2017 at 02:33, Wei Xu wrote: >> Hi Leo, >> >> On 2017/5/25 16:57, Leo Yan wrote: >>> Bind debug module driver for Hi6220. >>> >>> Reviewed-by: Mathieu Poirier >>> Signed-off-by:

Re: [PATCH] net: Update TCP congestion control documentation

2017-06-05 Thread David Miller
From: Anmol Sarma Date: Sat, 3 Jun 2017 17:40:54 +0530 > Update tcp.txt to fix mandatory congestion control ops and default > CCA selection. Also, fix comment in tcp.h for undo_cwnd. > > Signed-off-by: Anmol Sarma Applied, thank you. -- To unsubscribe

Re: [PATCH 03/20] asm-generic: Drop getrlimit and setrlimit syscalls from default list

2017-06-05 Thread James Hogan
Hi Yury, On Sun, Jun 04, 2017 at 02:59:52PM +0300, Yury Norov wrote: > The newer prlimit64 syscall provides all the functionality provided by > the getrlimit and setrlimit syscalls and adds the pid of target process, > so future architectures won't need to include getrlimit and setrlimit. > >

Re: [PATCH v13 8/9] arm64: dts: hi6220: register debug module

2017-06-05 Thread Mathieu Poirier
On 5 June 2017 at 02:33, Wei Xu wrote: > Hi Leo, > > On 2017/5/25 16:57, Leo Yan wrote: >> Bind debug module driver for Hi6220. >> >> Reviewed-by: Mathieu Poirier >> Signed-off-by: Leo Yan > > Thanks! > Fine to me. >

Re: [PATCH v4 0/3] USB Audio Gadget refactoring

2017-06-05 Thread Felipe Balbi
Hi, Ruslan Bilovol writes: >> Ruslan Bilovol writes: >>> I came to this patch series when wanted to do two things: >>> - use UAC1 as virtual ALSA sound card on gadget side, >>>just like UAC2 is used so it's possible to do rate >>>

Re: [PATCH v13 8/9] arm64: dts: hi6220: register debug module

2017-06-05 Thread Wei Xu
Hi Leo, On 2017/5/25 16:57, Leo Yan wrote: > Bind debug module driver for Hi6220. > > Reviewed-by: Mathieu Poirier > Signed-off-by: Leo Yan Thanks! Fine to me. Acked-by: Wei Xu Hi Mathieu, Can you help to pick up this

Re: [RFC PATCH] mm, oom: cgroup-aware OOM-killer

2017-06-05 Thread Michal Hocko
On Fri 02-06-17 16:18:52, Roman Gushchin wrote: > On Fri, Jun 02, 2017 at 10:43:33AM +0200, Michal Hocko wrote: > > On Wed 31-05-17 14:01:45, Johannes Weiner wrote: > > > On Wed, May 31, 2017 at 06:25:04PM +0200, Michal Hocko wrote: > > > > > > + /* > > > > > > * If current has a pending

[PATCH v1] net: phy: Delete unused function phy_ethtool_gset

2017-06-05 Thread Yuval Shaia
It's unused, so remove it. Signed-off-by: Yuval Shaia --- v0 -> v1: * Add commit message * Update Documentation/networking/phy.txt * Modify commit header message --- Documentation/networking/phy.txt | 1 - drivers/net/phy/phy.c| 24