Re: Kernel docs: muddying the waters a bit

2016-03-09 Thread Jani Nikula
On Wed, 09 Mar 2016, Dan Allen wrote: > On Tue, Mar 8, 2016 at 6:58 AM, Jani Nikula wrote: > >> I need to look into this again. Is there a specific option or directive >> to produce split output for includes? When I tried this, the result was >> just one big output file. (And indeed we'd need bot

Re: [PATCH 1/3] thermal: of-thermal: Add devm version of thermal_zone_of_sensor_register

2016-03-09 Thread Laxman Dewangan
Hi Edurado, Thanks for review. On Wednesday 09 March 2016 02:59 AM, Eduardo Valentin wrote: Hello Laxman, Minor as follows. Can you please run ./scripts/checkpatch.pl --strict on this and remove the warnings, errors, checks? Taken from existing function and so borrowed the error. Will fix

Re: [PATCH 3/3] thermal: max77620: Add thermal driver for reporting junction temp

2016-03-09 Thread Laxman Dewangan
On Wednesday 09 March 2016 02:54 AM, Eduardo Valentin wrote: On Fri, Mar 04, 2016 at 07:10:10PM +0530, Laxman Dewangan wrote: Maxim Semiconductor Max77620 supports alarm interrupts when its die temperature crosses 120C and 140C. These threshold temperatures are not configurable. Add therma

[PATCH V2 1/6] thermal: doc: Add details of thermal_zone_of_sensor_{register,unregister}

2016-03-09 Thread Laxman Dewangan
Add details of the interface thermal_zone_of_sensor_register() and thermal_zone_of_sensor_unregister() in the thermal/sysfs-api.txt. The details describes the functionality and parameter which are passed to these interfaces. Signed-off-by: Laxman Dewangan --- Changes from V1: - This is new in s

[PATCH V2 5/6] thermal: max77620: Add thermal driver for reporting junction temp

2016-03-09 Thread Laxman Dewangan
Maxim Semiconductor Max77620 supports alarm interrupts when its die temperature crosses 120C and 140C. These threshold temperatures are not configurable. Add thermal driver to register PMIC die temperature as thermal zone sensor and capture the die temperature warning interrupts to notifying the c

[PATCH V2 4/6] thermal: doc: Add details of devm_thermal_zone_of_sensor_{register,unregister}

2016-03-09 Thread Laxman Dewangan
Add details of the interface devm_thermal_zone_of_sensor_register() and devm_thermal_zone_of_sensor_unregister() in the . Signed-off-by: Laxman Dewangan --- Changes from V1: - New in series. Documentation/thermal/sysfs-api.txt | 23 +++ 1 file changed, 23 insertions(+) dif

[PATCH V2 6/6] thermal: Add DT binding doc for thermal of PMIC max77620

2016-03-09 Thread Laxman Dewangan
Maxim Semiconductor MAX77620 supports alarm interrupts when its die temperature crosses 120C and 140C. These threshold temperatures are not configurable. Add DT binding document to details out the DT property related to MAX77620 thermal functionality. Signed-off-by: Laxman Dewangan --- Changes

[PATCH V2 3/6] thermal: Add devm_thermal_zone_of_sensor_register() in managed devices list

2016-03-09 Thread Laxman Dewangan
The interface thermal_zone_of_sensor_register() and thermal_zone_of_sensor_unregister() gained their devm_ wrappers. Add these APIs in the list of managed devices. Signed-off-by: Laxman Dewangan --- Changes from V1: - No change. Documentation/driver-model/devres.txt | 4 1 file changed, 4

[PATCH V2 0/6] thermal: add devm_ version of thermal_zone register and driver for max77620

2016-03-09 Thread Laxman Dewangan
The series add the devm_ version of thermal_zone_of_sensor_register/ unregister, interface details, and use this in new thermal driver for max77620. The header file for max77620 is part of MFD patch https://lkml.org/lkml/2016/2/11/186 Changes from V1: - Run checkpatch with --strict and fi

[PATCH V2 2/6] thermal: of-thermal: Add devm version of thermal_zone_of_sensor_register

2016-03-09 Thread Laxman Dewangan
Add resource managed version of thermal_zone_of_sensor_register() and thermal_zone_of_sensor_unregister(). This helps in reducing the code size in error path, remove of driver remove callbacks and making proper sequence for deallocations. Signed-off-by: Laxman Dewangan --- Changes from V1: - Ru

Re: [PATCH 00/50] pinctrl: Add and use devm_ apis for pinctrl_{register, unregister}

2016-03-09 Thread Laxman Dewangan
Hi Linus, On Sunday 28 February 2016 08:14 PM, Laxman Dewangan wrote: On Thursday 25 February 2016 07:43 PM, Linus Walleij wrote: On Wed, Feb 24, 2016 at 2:15 PM, Laxman Dewangan wrote: Add resource manageemnt APIs fro pinctrl_register() and pinctrl_unregister() and use these new APIs on

[PATCH v6 10/11] tpm: Add documentation for the tpm_vtpm device driver

2016-03-09 Thread Stefan Berger
Add documentation for the tpm_vtpm device driver that implements support for providing TPM functionality to Linux containers. Parts of this documentation were recycled from the Xen vTPM device driver documentation. Signed-off-by: Stefan Berger CC: linux-ker...@vger.kernel.org CC: linux-doc@vger.

[PATCH v6 08/11] tpm: Driver for supporting multiple emulated TPMs

2016-03-09 Thread Stefan Berger
This patch implements a driver for supporting multiple emulated TPMs in a system. The driver implements a device /dev/vtpmx that is used to created a client device pair /dev/tpmX (e.g., /dev/tpm10) and a server side that is accessed using a file descriptor returned by an ioctl. The device /dev/tpm

[PATCH v6 09/11] tpm: Initialize TPM and get durations and timeouts

2016-03-09 Thread Stefan Berger
Add the retrieval of TPM 1.2 durations and timeouts. Since this requires the startup of the TPM, do this for TPM 1.2 and TPM 2. Signed-off-by: Stefan Berger CC: linux-ker...@vger.kernel.org CC: linux-doc@vger.kernel.org CC: linux-...@vger.kernel.org --- drivers/char/tpm/tpm_vtpm.c | 94 +

Re: [PATCH v6 08/11] tpm: Driver for supporting multiple emulated TPMs

2016-03-09 Thread Andy Lutomirski
On Wed, Mar 9, 2016 at 9:39 AM, Stefan Berger wrote: > This patch implements a driver for supporting multiple emulated TPMs in a > system. > > The driver implements a device /dev/vtpmx that is used to created > a client device pair /dev/tpmX (e.g., /dev/tpm10) and a server side that > is accessed

Re: [PATCH V2 0/6] thermal: add devm_ version of thermal_zone register and driver for max77620

2016-03-09 Thread Eduardo Valentin
Laxman, On Wed, Mar 09, 2016 at 06:40:04PM +0530, Laxman Dewangan wrote: > The series add the devm_ version of thermal_zone_of_sensor_register/ > unregister, interface details, and use this in new thermal driver > for max77620. > > The header file for max77620 is part of MFD patch > https:

Re: [PATCH V2 5/6] thermal: max77620: Add thermal driver for reporting junction temp

2016-03-09 Thread Eduardo Valentin
On Wed, Mar 09, 2016 at 06:40:09PM +0530, Laxman Dewangan wrote: > Maxim Semiconductor Max77620 supports alarm interrupts when > its die temperature crosses 120C and 140C. These threshold > temperatures are not configurable. > > Add thermal driver to register PMIC die temperature as thermal > zone

Re: [PATCH V2 6/6] thermal: Add DT binding doc for thermal of PMIC max77620

2016-03-09 Thread Eduardo Valentin
On Wed, Mar 09, 2016 at 06:40:10PM +0530, Laxman Dewangan wrote: > Maxim Semiconductor MAX77620 supports alarm interrupts when > its die temperature crosses 120C and 140C. These threshold > temperatures are not configurable. > > Add DT binding document to details out the DT property related > to M

Re: [PATCH V2 3/6] thermal: Add devm_thermal_zone_of_sensor_register() in managed devices list

2016-03-09 Thread Eduardo Valentin
On Wed, Mar 09, 2016 at 06:40:07PM +0530, Laxman Dewangan wrote: > The interface thermal_zone_of_sensor_register() and > thermal_zone_of_sensor_unregister() gained their devm_ > wrappers. Add these APIs in the list of managed devices. > > Signed-off-by: Laxman Dewangan Acked-by: Eduardo Valentin

Re: [PATCH V2 0/6] thermal: add devm_ version of thermal_zone register and driver for max77620

2016-03-09 Thread Eduardo Valentin
On Wed, Mar 09, 2016 at 06:40:04PM +0530, Laxman Dewangan wrote: > The series add the devm_ version of thermal_zone_of_sensor_register/ > unregister, interface details, and use this in new thermal driver > for max77620. > > The header file for max77620 is part of MFD patch > https://lkml.org

Re: [PATCH v9 04/13] task_isolation: add initial support

2016-03-09 Thread Chris Metcalf
Frederic, Thanks for the detailed feedback on the task isolation stuff. This reply kind of turned into an essay, so I've added a little "TL;DR" sentence before each section. TL;DR: Let's make an explicit decision about whether task isolation should be "persistent" or "one-shot". Both have

Re: Kernel docs: muddying the waters a bit

2016-03-09 Thread Mauro Carvalho Chehab
Em Tue, 8 Mar 2016 12:39:21 -0300 Mauro Carvalho Chehab escreveu: > Pandoc failed to fully convert it, but at least it left all the texts, > with prevented rewriting it from scratch. This is the manual fix > I applied to it: > > https://git.linuxtv.org/mchehab/asciidoc-poc.git/commit/func-

Re: [PATCH 2/2] isdn: i4l: move active-isdn drivers to staging

2016-03-09 Thread Tilman Schmidt
Am 07.03.2016 um 09:48 schrieb Paul Bolle: > On za, 2016-03-05 at 14:08 +0100, Tilman Schmidt wrote: >> As a consequence, owners of HiSAX type adapters are in fact stuck with >> the old hisax driver if they want to continue using i4l userspace >> tools. > > Do you know whether or not mISDN tools o

Re: [PATCH] modsign: Fix documentation on module signing enforcement parameter.

2016-03-09 Thread Jonathan Corbet
On Mon, 7 Mar 2016 01:45:17 - "James Johnston" wrote: > Modify the documentation to match the actual parameter as implemented in > kernel/module.c:273. So I was going to apply this to the docs tree, but it's been white-space mangled. Care to fix your mail client and resend? Thanks, jon --

Re: [PATCH] Documentation: Howto: Fixed subtitles style

2016-03-09 Thread Jonathan Corbet
On Mon, 7 Mar 2016 02:36:18 +0100 Philippe Loctaux wrote: > Fixed subtitles style, aligned them with their header. 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 majord...@vger.kernel.org More majordomo

Re: [PATCH] doc: fix grammar

2016-03-09 Thread Jonathan Corbet
On Thu, 25 Feb 2016 11:19:56 + Javi Merino wrote: > Some minor typos: > > - make is unbindable -> make it unbindable > - a underlying -> an underlying > - different version -> different versions Applied to the docs tree, thanks. jon -- To unsubscribe from this list: send the line "un

Re: [PATCH] Documentation: kselftest: Remove duplicate word

2016-03-09 Thread Jonathan Corbet
On Wed, 24 Feb 2016 00:08:11 +0800 Zhiyi Sun wrote: > Remove duplicate word "for" in kselftest.txt. 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 majord...@vger.kernel.org More majordomo info at http://

Re: [PATCH] Doc: nfs: Fix typos in Documentation/filesystems/nfs

2016-03-09 Thread Jonathan Corbet
On Thu, 18 Feb 2016 12:26:13 +0900 Masanari Iida wrote: > This patch fix spelling typos found in Documentation/filesystems/nfs I've applied this to the docs tree. I fixed the two "reacquire" instances that Randy pointed out; it would have been nice to get an updated patch so I didn't have to do

[PATCH 0/5] Add Korean translation of memory-barriers.txt

2016-03-09 Thread SeongJae Park
next tree: 0f6dd067b9c3c712b1177fa2fc0deb21805c771c ("Add linux-next specific files for 20160309") SeongJae Park (5): doc/memory-barriers: fix missed renaming: s/lock/acquire doc/memory-barriers: add missed subsection in TOC doc/memory-barriers: fix typo doc/memory-barriers: In

[PATCH 1/5] doc/memory-barriers: fix missed renaming: s/lock/acquire

2016-03-09 Thread SeongJae Park
Terms `lock` and `unlock` have changed to `acquire` / `release` by commit 2e4f5382d12a441b5cccfdde00308df15c2ce300 ("locking/doc: Rename LOCK/UNLOCK to ACQUIRE/RELEASE"). However, the commit missed to change the table of content. This commit changes the missed parts. Signed-off-by: SeongJae Park

[PATCH 3/5] doc/memory-barriers: fix typo

2016-03-09 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/memory-barriers.txt | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index 0560a49..89f96af 100644 --- a/Documentation/memory-barriers.txt +++ b/Documen

[PATCH 4/5] doc/memory-barriers: Insert white spaces consistently

2016-03-09 Thread SeongJae Park
The document uses two newlines between sections, one newline between item and its detailed description, and two spaces between sentences. However, there is few point that missed the rule. This commit fix them to use the rule consistently. Signed-off-by: SeongJae Park --- Documentation/memory-ba

[PATCH 2/5] doc/memory-barriers: add missed subsection in TOC

2016-03-09 Thread SeongJae Park
Virtual Machine Guests subsection has added with commit 6a65d26385bf487926a0616650927303058551e3 ("asm-generic: implement virt_xxx memory barriers") in memory-barriers.txt but it forgot to add the subsection in 'table of contents'. This commit adds the subsection in the 'table of contents'. Signe

Re: [PATCH 0/5] Add Korean translation of memory-barriers.txt

2016-03-09 Thread Paul E. McKenney
tch adds the > Korean translation of the document. > > The patches are based on recent next tree: > 0f6dd067b9c3c712b1177fa2fc0deb21805c771c ("Add linux-next specific files for > 20160309") I have queued this series for review, thank you! Of course, I cannot do anything

Re: [RFC PATCH v4 1/7] PCI: Add a new option for resource_alignment to reassign alignment

2016-03-09 Thread Alexey Kardashevskiy
On 03/07/2016 06:48 PM, Yongji Xie wrote: When using resource_alignment kernel parameter, the current implement reassigns the alignment by changing resources' size which can potentially break some drivers. How can this possibly break any driver?... It rounds up, not down, what do I miss here?

Re: [PATCH v6 08/11] tpm: Driver for supporting multiple emulated TPMs

2016-03-09 Thread Stefan Berger
On 03/09/2016 01:01 PM, Andy Lutomirski wrote: On Wed, Mar 9, 2016 at 9:39 AM, Stefan Berger wrote: This patch implements a driver for supporting multiple emulated TPMs in a system. The driver implements a device /dev/vtpmx that is used to created a client device pair /dev/tpmX (e.g., /dev/tpm

Re: [PATCH v6 08/11] tpm: Driver for supporting multiple emulated TPMs

2016-03-09 Thread Andy Lutomirski
On Wed, Mar 9, 2016 at 6:34 PM, Stefan Berger wrote: > On 03/09/2016 01:01 PM, Andy Lutomirski wrote: >> >> On Wed, Mar 9, 2016 at 9:39 AM, Stefan Berger >> wrote: >>> >>> This patch implements a driver for supporting multiple emulated TPMs in a >>> system. >>> >>> The driver implements a device

RE: [PATCH] modsign: Fix documentation on module signing enforcement parameter.

2016-03-09 Thread James Johnston
> > Modify the documentation to match the actual parameter as implemented > > in kernel/module.c:273. > > So I was going to apply this to the docs tree, but it's been white-space > mangled. Care to fix your mail client and resend? > > Thanks, > > jon Sorry about that. I assume you are talking

RE: [PATCH] modsign: Fix documentation on module signing enforcement parameter.

2016-03-09 Thread James Johnston
> > > Modify the documentation to match the actual parameter as implemented > > > in kernel/module.c:273. > > > > So I was going to apply this to the docs tree, but it's been white-space > > mangled. Care to fix your mail client and resend? > > > > Thanks, > > > > jon > > Sorry about that. I ass

Re: [RFC PATCH v4 1/7] PCI: Add a new option for resource_alignment to reassign alignment

2016-03-09 Thread Yongji Xie
On 2016/3/10 10:19, Alexey Kardashevskiy wrote: On 03/07/2016 06:48 PM, Yongji Xie wrote: When using resource_alignment kernel parameter, the current implement reassigns the alignment by changing resources' size which can potentially break some drivers. How can this possibly break any driver?.

Re: [PATCH V2 0/6] thermal: add devm_ version of thermal_zone register and driver for max77620

2016-03-09 Thread Laxman Dewangan
On Thursday 10 March 2016 01:02 AM, Eduardo Valentin wrote: * PGP Signed by an unknown key On Wed, Mar 09, 2016 at 06:40:04PM +0530, Laxman Dewangan wrote: The series add the devm_ version of thermal_zone_of_sensor_register/ unregister, interface details, and use this in new thermal driver for

Re: [PATCH V2 5/6] thermal: max77620: Add thermal driver for reporting junction temp

2016-03-09 Thread Laxman Dewangan
On Thursday 10 March 2016 12:57 AM, Eduardo Valentin wrote: * PGP Signed by an unknown key On Wed, Mar 09, 2016 at 06:40:09PM +0530, Laxman Dewangan wrote: Maxim Semiconductor Max77620 supports alarm interrupts when its die temperature crosses 120C and 140C. These threshold temperatures are no