Re: [RFC PATCH 0/3] Documentation: switch to pdflatex and fix pdf build

2016-08-13 Thread Markus Heiser
Am 13.08.2016 um 00:40 schrieb Jonathan Corbet : > On Wed, 10 Aug 2016 18:54:06 +0300 > Jani Nikula wrote: > >> With these you should be able to get started with pdf generation. It's a >> quick transition to pdflatex, the patches are not very pretty, but the >> pdf output is. Patch 3/3 works as

Re: clocksource_watchdog causing scheduling of timers every second (was [v13] support "task_isolation" mode)

2016-08-13 Thread Frederic Weisbecker
On Fri, Aug 12, 2016 at 09:19:19AM -0700, Paul E. McKenney wrote: > On Fri, Aug 12, 2016 at 04:26:13PM +0200, Frederic Weisbecker wrote: > > On Fri, Aug 12, 2016 at 09:23:13AM -0500, Christoph Lameter wrote: > > > On Thu, 11 Aug 2016, Paul E. McKenney wrote: > > > > > > > Heh! The only really goo

Re: [PATCH] ilp32: fix {GET,SET}SIGMASK request for ptrace

2016-08-13 Thread Yury Norov
On Mon, Jun 27, 2016 at 12:49:05PM +0800, zhouchengming wrote: > The function compat_ptrace_request(used by ilp32) don't handle > {GET,SET}SIGMASK request, so it will be handled by ptrace_request. > But it's wrong because the compat_sigset_t of ilp32 differs from > the sigset_t of aarch64. The patc

Re: [PATCH 05/19] arm64: rename COMPAT to AARCH32_EL0 in Kconfig

2016-08-13 Thread Yury Norov
On Fri, Aug 12, 2016 at 03:36:12PM +0100, Catalin Marinas wrote: > On Thu, Aug 11, 2016 at 10:29:03PM +0200, Arnd Bergmann wrote: > > On Thursday, August 11, 2016 5:30:03 PM CEST Catalin Marinas wrote: > > > > > > and you can have ARM binaries with > > > > > > PER_LINUX (using the arm64 uname) just

Re: [PATCH 18/19] arm64:ilp32: add vdso-ilp32 and use for signal return

2016-08-13 Thread Yury Norov
On Mon, Jun 20, 2016 at 04:54:17PM +0200, Andreas Schwab wrote: > Yury Norov writes: > > > diff --git a/arch/arm64/kernel/vdso.c b/arch/arm64/kernel/vdso.c > > index 2a0de6f..e48ea34 100644 > > --- a/arch/arm64/kernel/vdso.c > > +++ b/arch/arm64/kernel/vdso.c > > @@ -40,6 +40,12 @@ extern char vd

Re: [PATCH] Revert "Revert "doc/sphinx: Enable keep_warnings""

2016-08-13 Thread Markus Heiser
Am 12.08.2016 um 22:02 schrieb Jonathan Corbet : > On Thu, 11 Aug 2016 12:02:31 +0200 > Markus Heiser wrote: > >> It's about the default highlight language in the conf.py. I suggested >> to set it to the value 'guess', since this might solve most of our >> problems discussed in this context. >>

Re: [PACTH v2 1/3] mm, proc: Implement /proc//totmaps

2016-08-13 Thread Jann Horn
On Fri, Aug 12, 2016 at 06:04:20PM -0400, robert.f...@collabora.com wrote: > diff --git a/fs/proc/internal.h b/fs/proc/internal.h > index aa27810..c55e1fe 100644 > --- a/fs/proc/internal.h > +++ b/fs/proc/internal.h > @@ -281,6 +281,7 @@ struct proc_maps_private { > struct mm_struct *mm; > #

Re: [PATCH 1/3] doc-rst: generic way to build only sphinx sub-folders

2016-08-13 Thread Markus Heiser
Am 12.08.2016 um 23:20 schrieb Jonathan Corbet : > On Mon, 8 Aug 2016 15:14:58 +0200 > Markus Heiser wrote: > >> Remove the 'DOC_NITPIC_TARGETS' from main $(srctree)/Makefile and add a >> more generic way to build only a reST sub-folder. >> > > So I went to apply these, but this one, at leas

[PATCH 6/7] doc-rst: parseheaders directive (inital)

2016-08-13 Thread Markus Heiser
From: Markus Heiser The parse-header directive includes contend from Linux kernel header files. The python-side of this feature is only an adapter of the ``parse-headers.pl`` Perl script. Overview of directive's argument and options. .. parse-header:: :exceptions: :debug:

[PATCH 2/7] doc-rst: add stand-alone conf.py to media folder

2016-08-13 Thread Markus Heiser
From: Markus Heiser With the media/conf.py, and media/index.rst the media folder can be build and distributed stand-alone. Signed-off-by: Markus Heiser --- Documentation/index.rst | 7 +-- Documentation/media/conf.py | 3 +++ Documentation/media/index.rst | 12 3 fil

[PATCH 0/7] doc-rst: sphinx sub-folders & parseheaders directive

2016-08-13 Thread Markus Heiser
From: Markus Heiser Hi Jon, Mauro, and Jani, this series is a consolidation on Jon's docs-next branch. It merges the "sphinx sub-folders" patch [1] and the "parseheaders directive" patch [2] on top of Jon's docs-next. In sense of consolidation, it also includes: * doc-rst: add media/conf_nitp

[PATCH 5/7] doc-rst: add docutils config file

2016-08-13 Thread Markus Heiser
From: Markus Heiser To stop the sphinx-build on severe errors and exit with an exit code (to stop make) the halt_level must be set. The halt_level can't be set from sphinx, it is a docutils configuration [1]. For this a docutils.conf was added. [1] http://docutils.sourceforge.net/docs/user/confi

[PATCH 3/7] doc-rst: add media/conf_nitpick.py

2016-08-13 Thread Markus Heiser
From: Markus Heiser The media/conf_nitpick.py is a *build-theme* wich uses the nit-picking mode of sphinx. To compile only the html of 'media' with the nit-picking build use:: make SPHINXDIRS=media SPHINX_CONF=conf_nitpick.py htmldocs With this, the Documentation/conf.py is read first and upd

[PATCH 4/7] doc-rst: add stand-alone conf.py to gpu folder

2016-08-13 Thread Markus Heiser
From: Markus Heiser With the gpu/conf.py, the gpu folder can be build and distributed stand-alone. To compile only the html of 'gpu' folder use:: make SPHINXDIRS="gpu" htmldocs Signed-off-by: Markus Heiser --- Documentation/gpu/conf.py | 3 +++ 1 file changed, 3 insertions(+) create mode 1

[PATCH 1/7] doc-rst: generic way to build only sphinx sub-folders

2016-08-13 Thread Markus Heiser
From: Markus Heiser Add a generic way to build only a reST sub-folder with or without a individual *build-theme*. * control *sub-folders* by environment SPHINXDIRS * control *build-theme* by environment SPHINX_CONF Folders with a conf.py file, matching $(srctree)/Documentation/*/conf.py can be

Re: [PATCH] Documentation: sunxi: Update Allwinner SoC documentation

2016-08-13 Thread Chen-Yu Tsai
Hi, On Tue, Aug 2, 2016 at 8:01 PM, Icenowy Zheng wrote: > Now, the A83T and A64 SoC user manuals are available. > Update the documentation to add the links. > > Signed-off-by: Icenowy Zheng > --- > Documentation/arm/sunxi/README | 9 + > 1 file changed, 9 insertions(+) > > diff --git a