[PATCH] k10temp: update documentation

2019-09-19 Thread Lukas Zapletal
It's been a while since the k10temp documentation has been updated. There are new CPU families supported as well as Tdie temp was added. This patch adds all missing families which I was able to find from git history and provides more info about Tctl vs Tdie exported temps. Signed-off-by: Lukas Zap

[PATCH 5/5] lib/math: remove int_pow()

2019-09-19 Thread Rasmus Villemoes
No users left. Signed-off-by: Rasmus Villemoes --- Documentation/core-api/kernel-api.rst | 3 --- include/linux/kernel.h| 1 - lib/math/Makefile | 2 +- lib/math/int_pow.c| 32 --- 4 files changed, 1 insertion(+),

Re: [PATCH 5/5] lib/math: remove int_pow()

2019-09-19 Thread Andy Shevchenko
On Thu, Sep 19, 2019 at 04:06:20PM +0200, Rasmus Villemoes wrote: > No users left. There are in linux-next. NAK. -- With Best Regards, Andy Shevchenko

[PATCH] docs: Use make invocation's -j argument for parallelism

2019-09-19 Thread Kees Cook
While sphinx 1.7 and later supports "-jauto" for parallelism, this effectively ignores the "-j" flag used in the "make" invocation, which may cause confusion for build systems. Instead, extract the available parallelism from "make"'s job server (since it is not exposed in any special variables) and

Re: [PATCH] docs: Use make invocation's -j argument for parallelism

2019-09-19 Thread Mauro Carvalho Chehab
Em Thu, 19 Sep 2019 11:18:52 -0700 Kees Cook escreveu: > While sphinx 1.7 and later supports "-jauto" for parallelism, this > effectively ignores the "-j" flag used in the "make" invocation, which > may cause confusion for build systems. Instead, extract the available > parallelism from "make"'s

Re: [PATCH] docs: Use make invocation's -j argument for parallelism

2019-09-19 Thread Kees Cook
On Thu, Sep 19, 2019 at 04:25:49PM -0300, Mauro Carvalho Chehab wrote: > Em Thu, 19 Sep 2019 11:18:52 -0700 > Kees Cook escreveu: > > [...] > > +# Fetch the make environment options. > > +flags = os.environ.get('MAKEFLAGS', None) > > +if flags == None: > > + print("1") > > + sys.exit(0) > > +

[PATCH v2] docs: Use make invocation's -j argument for parallelism

2019-09-19 Thread Kees Cook
While sphinx 1.7 and later supports "-jauto" for parallelism, this effectively ignores the "-j" flag used in the "make" invocation, which may cause confusion for build systems. Instead, extract the available parallelism from "make"'s job server (since it is not exposed in any special variables) and