Re: [PATCH] sphinx.rst: Add note about code snippets embedded in the text

2019-06-12 Thread Jani Nikula
On Tue, 11 Jun 2019, André Almeida wrote: > There's a paragraph that explains how to create fixed width text block, > but it doesn't explains how to create fixed width text inline, although > this feature is really used through the documentation. Fix that adding a > quick note about it. I don't m

Re: [PATCH v7 22/27] binfmt_elf: Extract .note.gnu.property from an ELF file

2019-06-12 Thread Dave Martin
On Tue, Jun 11, 2019 at 12:31:34PM -0700, Yu-cheng Yu wrote: > On Tue, 2019-06-11 at 12:41 +0100, Dave Martin wrote: > > On Mon, Jun 10, 2019 at 07:24:43PM +0200, Florian Weimer wrote: > > > * Yu-cheng Yu: > > > > > > > To me, looking at PT_GNU_PROPERTY and not trying to support anything is > > >

Re: [PATCH v3 2/3] x86: Use static_cpu_has in uaccess region to avoid instrumentation

2019-06-12 Thread Dmitry Vyukov
On Fri, Jun 7, 2019 at 11:44 AM Marco Elver wrote: > > Gentle ping. I would appreciate quick feedback if this approach is > reasonable. > > Peter: since you suggested that we should not change objtool, did you > have a particular approach in mind that is maybe different from v2 and > v3? Or is t

[PATCH v4 2/2] arm64: Relax Documentation/arm64/tagged-pointers.txt

2019-06-12 Thread Vincenzo Frascino
On arm64 the TCR_EL1.TBI0 bit has been always enabled hence the userspace (EL0) is allowed to set a non-zero value in the top byte but the resulting pointers are not allowed at the user-kernel syscall ABI boundary. With the relaxed ABI proposed in this set, it is now possible to pass tagged pointe

[PATCH v4 0/2] arm64 relaxed ABI

2019-06-12 Thread Vincenzo Frascino
On arm64 the TCR_EL1.TBI0 bit has been always enabled on the arm64 kernel, hence the userspace (EL0) is allowed to set a non-zero value in the top byte but the resulting pointers are not allowed at the user-kernel syscall ABI boundary. This patchset proposes a relaxation of the ABI with which it i

[PATCH v4 1/2] arm64: Define Documentation/arm64/tagged-address-abi.txt

2019-06-12 Thread Vincenzo Frascino
On arm64 the TCR_EL1.TBI0 bit has been always enabled hence the userspace (EL0) is allowed to set a non-zero value in the top byte but the resulting pointers are not allowed at the user-kernel syscall ABI boundary. With the relaxed ABI proposed through this document, it is now possible to pass tag

Re: [PATCH v3 18/33] docs: netlabel: convert docs to ReST and rename to *.rst

2019-06-12 Thread Paul Moore
On Sat, Jun 8, 2019 at 10:27 PM Mauro Carvalho Chehab wrote: > > Convert netlabel documentation to ReST. > > This was trivial: just add proper title markups. > > At its new index.rst, let's add a :orphan: while this is not linked to > the main index.rst file, in order to avoid build warnings. > >

Re: [PATCH v4 1/2] arm64: Define Documentation/arm64/tagged-address-abi.txt

2019-06-12 Thread Catalin Marinas
Hi Vincenzo, Some minor comments below but it looks fine to me overall. Cc'ing Szabolcs as well since I'd like a view from the libc people. On Wed, Jun 12, 2019 at 03:21:10PM +0100, Vincenzo Frascino wrote: > diff --git a/Documentation/arm64/tagged-address-abi.txt > b/Documentation/arm64/tagged-

[PATCH v3] Add a document on rebasing and merging

2019-06-12 Thread Jonathan Corbet
Every merge window seems to involve at least one episode where subsystem maintainers don't manage their trees as Linus would like. Document the expectations so that at least he has something to point people to. Acked-by: David Rientjes Signed-off-by: Jonathan Corbet --- I intend to apply this v

Re: [PATCH v4 2/2] arm64: Relax Documentation/arm64/tagged-pointers.txt

2019-06-12 Thread Catalin Marinas
A couple of minor nits below. On Wed, Jun 12, 2019 at 03:21:11PM +0100, Vincenzo Frascino wrote: > --- a/Documentation/arm64/tagged-pointers.txt > +++ b/Documentation/arm64/tagged-pointers.txt > @@ -18,7 +18,8 @@ Passing tagged addresses to the kernel > -- >

Re: [PATCH v4 1/2] arm64: Define Documentation/arm64/tagged-address-abi.txt

2019-06-12 Thread Szabolcs Nagy
On 12/06/2019 15:21, Vincenzo Frascino wrote: > On arm64 the TCR_EL1.TBI0 bit has been always enabled hence > the userspace (EL0) is allowed to set a non-zero value in the > top byte but the resulting pointers are not allowed at the > user-kernel syscall ABI boundary. > > With the relaxed ABI prop

Re: [PATCH v4 2/2] arm64: Relax Documentation/arm64/tagged-pointers.txt

2019-06-12 Thread Szabolcs Nagy
On 12/06/2019 15:21, Vincenzo Frascino wrote: > On arm64 the TCR_EL1.TBI0 bit has been always enabled hence > the userspace (EL0) is allowed to set a non-zero value in the > top byte but the resulting pointers are not allowed at the > user-kernel syscall ABI boundary. > > With the relaxed ABI prop

[PATCH v4 22/28] docs: riscv: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The conversion here is trivial: - Adjust the document title's markup - Do some whitespace alignment; - mark literal blocks; - Use ReST way to markup indented lists. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings.

[PATCH v4 16/28] docs: netlabel: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert netlabel documentation to ReST. This was trivial: just add proper title markups. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab Acked-by: Paul Moore --- .../{cipso_i

[PATCH v4 21/28] docs: ptp.txt: convert to ReST and move to driver-api

2019-06-12 Thread Mauro Carvalho Chehab
The conversion is trivial: just adjust title markups. In order to avoid conflicts, let's add an :orphan: tag to it, to be removed when this file gets added to the driver-api book. Signed-off-by: Mauro Carvalho Chehab Acked-by: Richard Cochran --- .../{ptp/ptp.txt => driver-api/ptp.rst} |

[PATCH v4 01/28] docs: aoe: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
There are only two files within Documentation/aoe dir that are documentation. The remaining ones are examples and shell scripts. Convert the two AoE files to ReST format, and add the others as literal, as they're part of the documentation. At its new index.rst, let's add a :orphan: while this is

[PATCH v4 10/28] docs: fpga: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The dfl.txt file is almost there. It needs just a few adjustments to be properly parsed. The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups. At its ne

[PATCH v4 27/28] docs: scheduler: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
In order to prepare to add them to the Kernel API book, convert the files to ReST format. The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups. At its n

[PATCH v4 25/28] docs: watchdog: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert those documents and prepare them to be part of the kernel API book, as most of the stuff there are related to the Kernel interfaces. Still, in the future, it would make sense to split the docs, as some of the stuff is clearly focused on sysadmin tasks. The conversion is actually: - add

[PATCH v4 19/28] docs: powerpc: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert docs to ReST and add them to the arch-specific book. The conversion here was trivial, as almost every file there was already using an elegant format close to ReST standard. The changes were mostly to mark literal blocks and add a few missing section title identifiers. One note with regar

[PATCH v4 24/28] docs: timers: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The conversion here is really trivial: just a bunch of title markups and very few puntual changes is enough to make it to be parsed by Sphinx and generate a nice html. The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add so

[PATCH v4 17/28] docs: pcmcia: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert the pcmcia docs to ReST format. Most of the changes here are trivial. The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups. At its new index.rst

[PATCH v4 26/28] docs: xilinx: convert eemi.txt to eemi.rst

2019-06-12 Thread Mauro Carvalho Chehab
This is a very trivial conversion: adjust the title markup and add a few literal block markups to produce a better visual when parsed and avoid warnings. As newer documents related to xilinx could be added in the future, create a new index file for it. At its new index.rst, let's add a :orphan: w

[PATCH v4 11/28] docs: ide: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in

[PATCH v4 28/28] docs: EDID/HOWTO.txt: convert it and rename to howto.rst

2019-06-12 Thread Mauro Carvalho Chehab
Sphinx need to know when a paragraph ends. So, do some adjustments at the file for it to be properly parsed. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. that's said, I believe that this file should be moved to t

[PATCH v4 08/28] docs: fault-injection: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in

[PATCH v4 00/28] Convert files to ReST - part 1

2019-06-12 Thread Mauro Carvalho Chehab
This is mostly a rebase of the /33 series v3 I sent, on the top of the latest linux-next (next-20190612). Changes from v3: - dropped cpufreq conversion - documents are too outdated; - infiniband patch is not here anymore - as it should be merged via RDMA; - s390 patches were already merged

[PATCH v4 02/28] docs: arm64: convert docs to ReST and rename to .rst

2019-06-12 Thread Mauro Carvalho Chehab
The documentation is in a format that is very close to ReST format. The conversion is actually: - add blank lines in order to identify paragraphs; - fixing tables markups; - adding some lists markups; - marking literal blocks; - adjust some title markups. At its new index.rst, let's add

[PATCH v4 06/28] docs: cgroup-v1/blkio-controller.rst: add a note about CFQ scheduler

2019-06-12 Thread Mauro Carvalho Chehab
The CFQ scheduler was removed on this changeset: commit f382fb0bcef4c37dc049e9f6963e3baf204d815c Author: Jens Axboe Date: Fri Oct 12 10:14:46 2018 -0600 block: remove legacy IO schedulers Retain the deadline documentation, as that carries over to mq-deadline as well. Te

[PATCH v4 23/28] docs: target: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert the TCM docs to ReST format and add them to the bookset. This has a mix of userspace-faced and Kernelspace faced docs. Still, it sounds a better candidate to be added at the kernel API set of docs. The conversion is actually: - add blank lines and identation in order to identify paragra

[PATCH v4 04/28] docs: cdrom: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The stuff there is almost already at ReST format. A conversion for them is trivial: just add a missing titles and fix some scape codes for them to match ReST syntax. While here, rename the cdrom-standard.txt, with was converted from LaTeX to ReST on the previous patch, and add it to the index file

[PATCH v4 15/28] docs: mic: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert Intel Many Integrated Core architecture docs to ReST. The conversion is trivial: just add title and literal block markups, and adjust some identation. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-

[PATCH v4 03/28] docs: cdrom-standard.tex: convert from LaTeX to ReST

2019-06-12 Thread Mauro Carvalho Chehab
This is the only LaTeX documentation file inside the documentation. Instead of having a Latex document directly there, convert it to ReST format, as this is the format we're using for docs. For now, let's keep the extension as .txt in order to avoid warnings when building the documentation with S

[PATCH v4 20/28] docs: pps.txt: convert to ReST and rename to pps.rst

2019-06-12 Thread Mauro Carvalho Chehab
This file is already in a good shape: just its title and adding some literal block markups is needed for it to be part of the document. While it has a small chapter with sysfs stuff, most of the document is focused on driver development. As it describes a kernel API, move it to the driver-api dir

Re: [PATCH v4 24/28] docs: timers: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mark Brown
On Wed, Jun 12, 2019 at 02:53:00PM -0300, Mauro Carvalho Chehab wrote: > The conversion here is really trivial: just a bunch of title > markups and very few puntual changes is enough to make it to > be parsed by Sphinx and generate a nice html. Acked-by: Mark Brown signature.asc Description: PG

[PATCH v1 16/31] docs: rbtree.txt: fix Sphinx build warnings

2019-06-12 Thread Mauro Carvalho Chehab
Ths file is already at ReST format. Yet, some recent changes made it to produce a few warnings when building it with Sphinx. Those are trivially fixed by marking some literal blocks. Fix them before adding it to the docs building system. Signed-off-by: Mauro Carvalho Chehab --- Documentation/r

[PATCH v1 22/31] docs: leds: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the leds documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro

[PATCH v1 18/31] docs: accounting: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the accounting documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by:

[PATCH v1 14/31] docs: nvmem: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
In order to be able to add it into a doc book, we need first convert it to ReST. The conversion is actually: - add blank lines and identation in order to identify paragraphs; - mark literal blocks; - adjust title markups. While this is not part of any book, mark it as :orphan:, in order to

[PATCH v1 11/31] docs: memory-devices: convert ti-emif.txt to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Prepare this file to be moved to a kernel book by converting it to ReST format and renaming it to ti-emif.rst. While this is not part of any book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab --- .../{ti-emif.txt => ti-emif.rst} | 27 +

[PATCH v1 08/31] docs: early-userspace: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The two files there describes a Kernel API feature, used to support early userspace stuff. Prepare for moving them to the kernel API book by converting to ReST format. The conversion itself was quite trivial: just add/mark a few titles as such, add a literal block markup, add a table markup and a

[PATCH v1 28/31] docs: mtd: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the mtd documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. It should be noticed that Sphinx doesn't handle very well URLs with dots in the middle. Thankfully, internally, the '.' char is translated to %2E, so we

[PATCH v1 26/31] docs: nfc: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the nfc documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro C

[PATCH v1 13/31] docs: bus-devices: ti-gpmc.rst: convert it to ReST

2019-06-12 Thread Mauro Carvalho Chehab
In order to be able to add this file to a book, it needs first to be converted to ReST and renamed. While this is not part of any book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab --- .../bus-devices/{ti-gpmc.txt => ti-gpmc.rst} | 159 +++

[PATCH v1 21/31] docs: ia64: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the ia64 documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. There are two upper case file names. Rename them to lower case, as we're working to avoid upper case file names at Documentation. At its new index.rst,

[PATCH v1 04/31] docs: m68k: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert the m68k kernel-options.txt file to ReST. The conversion is trivial, as the document is already on a format close enough to ReST. Just some small adjustments were needed in order to make it both good for being parsed while keeping it on a good txt shape. At its new index.rst, let's add a

[PATCH v1 29/31] docs: nvdimm: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the mtd documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro C

[PATCH v1 09/31] docs: driver-model: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert the various documents at the driver-model, preparing them to be part of the driver-api book. The conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups

[PATCH v1 25/31] docs: namespaces: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the namespaces documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. There are two upper case file names. Rename them to lower case, as we're working to avoid upper case file names at Documentation. At its new inde

[PATCH v1 30/31] docs: xtensa: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the xtensa documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Maur

[PATCH v1 23/31] docs: laptops: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the laptops documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mau

[PATCH v1 20/31] docs: hid: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the HID documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. While here, fix the sysfs example from hid-sensor.txt, that has a lot of "?" instead of the proper UTF-8 characters that are produced by the tree command

[PATCH v1 02/31] docs: lcd-panel-cgram.txt: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
This small text file describes the usage of parallel port LCD displays from userspace PoV. So, a good candidate for the admin guide. While this is not part of the admin-guide book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab --- .../{lcd-panel-cgr

[PATCH v1 05/31] docs: cma/debugfs.txt: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
The debugfs interface for CMA should be there together with other mm-related documents. Convert this small file to ReST and move it to its rightful place. The conversion is actually quite simple: just add a title for the document. In order to make it to look better for the audience, also mark the

[PATCH v1 17/31] docs: DMA-API-HOWTO.txt: fix an unmarked code block

2019-06-12 Thread Mauro Carvalho Chehab
When building with Sphinx, it would produce this warning: docs/Documentation/DMA-API-HOWTO.rst:222: WARNING: Definition list ends without a blank line; unexpected unindent. Signed-off-by: Mauro Carvalho Chehab --- Documentation/DMA-API-HOWTO.txt | 2 +- 1 file changed, 1 insertion(+), 1 de

[PATCH v1 06/31] docs: console.txt: convert docs to ReST and rename to *.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert this small file to ReST in preparation for adding it to the driver-api book. While this is not part of the driver-api book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab --- .../console/{console.txt => console.rst} | 63 ++--

[PATCH v1 01/31] docs: connector: convert to ReST and rename to connector.rst

2019-06-12 Thread Mauro Carvalho Chehab
As it has some function definitions, move them to connector.h. The remaining conversion is actually: - add blank lines and identation in order to identify paragraphs; - fix tables markups; - add some lists markups; - mark literal blocks; - adjust title markups. At its new index.rst, let

[PATCH v1 24/31] docs: iio: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the iio documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro C

[PATCH v1 03/31] docs: lp855x-driver.txt: convert to ReST and move to kernel-api

2019-06-12 Thread Mauro Carvalho Chehab
This small file seems to be an attempt to start documenting backlight drivers. It contains descriptions of the controls for the driver with could sound as an somewhat user-faced description, but it's main focus is to describe, instead, the data that should be passed via platform data and some driv

[PATCH v1 19/31] docs: fmc: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the FMC documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At least some of this files seemed to be using some markup language similar to ReST, but with a different markup for cross-references. Adjust those to us

[PATCH v1 00/31] Convert files to ReST - part 2

2019-06-12 Thread Mauro Carvalho Chehab
This is the second part of a series I wrote sometime ago where I manually convert lots of files to be properly parsed by Sphinx as ReST files. As it touches on lot of stuff, this series is based on today's linux-next, at tag next-20190612. The first version of this series had 57 patches.

[PATCH v1 15/31] docs: phy: convert samsung-usb2.txt to ReST format

2019-06-12 Thread Mauro Carvalho Chehab
In order to merge it into a Sphinx book, we need first to convert to ReST. While this is not part of any book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab --- .../{samsung-usb2.txt => samsung-usb2.rst}| 62 ++- MAINTAINERS

[PATCH v1 31/31] docs: mmc: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the mmc documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro C

[PATCH v1 07/31] docs: pti_intel_mid.txt: convert it to pti_intel_mid.rst

2019-06-12 Thread Mauro Carvalho Chehab
Convert this small file to ReST format and rename it. Most of the conversion were related to adjusting whitespaces in order for each section to be properly parsed. While this is not part of any book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab ---

[PATCH v1 12/31] docs: xen-tpmfront.txt: convert it to .rst

2019-06-12 Thread Mauro Carvalho Chehab
In order to be able to add this file to the security book, we need first to convert it to reST. While this is not part of any book, mark it as :orphan:, in order to avoid build warnings. Signed-off-by: Mauro Carvalho Chehab --- .../{xen-tpmfront.txt => xen-tpmfront.rst}| 103 ++-

[PATCH v1 27/31] docs: md: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
Rename the md documentation files to ReST, add an index for them and adjust in order to produce a nice html output via the Sphinx build system. At its new index.rst, let's add a :orphan: while this is not linked to the main index.rst file, in order to avoid build warnings. Signed-off-by: Mauro Ca

Re: [PATCH v1 29/31] docs: nvdimm: convert to ReST

2019-06-12 Thread Dan Williams
Hi Mauro, On Wed, Jun 12, 2019 at 11:38 AM Mauro Carvalho Chehab wrote: > > Rename the mtd documentation files to ReST, add an s/mtd/nvdimm/ > index for them and adjust in order to produce a nice html > output via the Sphinx build system. > > At its new index.rst, let's add a :orphan: while thi

Re: [PATCH v7 22/27] binfmt_elf: Extract .note.gnu.property from an ELF file

2019-06-12 Thread Yu-cheng Yu
On Wed, 2019-06-12 at 10:32 +0100, Dave Martin wrote: > On Tue, Jun 11, 2019 at 12:31:34PM -0700, Yu-cheng Yu wrote: > > On Tue, 2019-06-11 at 12:41 +0100, Dave Martin wrote: > > > On Mon, Jun 10, 2019 at 07:24:43PM +0200, Florian Weimer wrote: > > > > * Yu-cheng Yu: > > > > > > > > > To me, looki

Re: [PATCH v1 23/31] docs: laptops: convert to ReST

2019-06-12 Thread Andy Shevchenko
On Wed, Jun 12, 2019 at 9:38 PM Mauro Carvalho Chehab wrote: > > Rename the laptops documentation files to ReST, add an > index for them and adjust in order to produce a nice html > output via the Sphinx build system. > > At its new index.rst, let's add a :orphan: while this is not linked to > the

Re: [PATCH v1 29/31] docs: nvdimm: convert to ReST

2019-06-12 Thread Mauro Carvalho Chehab
but I was not able to apply this one in isolation to give it > a try. Am I missing some pre-reqs compared to v5.2-rc4? I wrote the patch before v5.2-rc1, but, as this series touches a lot of stuff, it was rebased against today's linux-next (next-20190612). I didn't notice an conflict on t