doc movements -> 00-INDEX is out of date

2016-12-02 Thread Brian Norris
Hi Mauro, I was browsing Documentation/ on linux-next and noticed that Documentation/00-INDEX now points to .txt files that are no longer there. e.g., this commit: 9d85025b0418 docs-rst: create an user's manual book rename from Documentation/sysrq.txt rename to Documentation/admin-guide/sysrq.rs

[PATCHv13 2/3] IB/core: added support to use rdma cgroup controller

2016-12-02 Thread Parav Pandit
Added support APIs for IB core to register/unregister every IB/RDMA device with rdma cgroup for tracking rdma resources. IB core registers with rdma cgroup controller. Added support APIs for uverbs layer to make use of rdma controller. Added uverbs layer to perform resource charge/uncharge function

[PATCHv13 1/3] rdmacg: Added rdma cgroup controller

2016-12-02 Thread Parav Pandit
Added rdma cgroup controller that does accounting, limit enforcement on rdma/IB resources. Added rdma cgroup header file which defines its APIs to perform charing/uncharing functionality. It also defined APIs for RDMA/IB stack for device registration. Devices which are registered will participate

[PATCHv13 0/3] rdmacg: IB/core: rdma controller support

2016-12-02 Thread Parav Pandit
Patch is generated and tested against below Doug's linux-rdma git tree. URL: git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git Branch: master Patchset is also compiled and tested against below Tejun's cgroup tree using cgroup v2 mode. URL: git://git.kernel.org/pub/scm/linux/kernel/gi

[PATCHv13 3/3] rdmacg: Added documentation for rdmacg

2016-12-02 Thread Parav Pandit
Added documentation for v1 and v2 version describing high level design and usage examples on using rdma controller. Signed-off-by: Parav Pandit --- Documentation/cgroup-v1/rdma.txt | 109 +++ Documentation/cgroup-v2.txt | 38 ++ 2 files chang

Re: [linux-sunxi] [PATCH v3 -next 2/2] ARM: dts: sunxi: add support for Orange Pi Zero board

2016-12-02 Thread Chen-Yu Tsai
Hi, On Fri, Dec 2, 2016 at 11:05 PM, Icenowy Zheng wrote: > Orange Pi Zero is a board that came with the new Allwinner H2+ SoC and a > SDIO Wi-Fi chip by Allwinner (XR819). > > Add a device tree file for it. > > Signed-off-by: Icenowy Zheng > --- > Changes since v2: > - Merged SDIO Wi-Fi patch i

Re: [PATCH v2 2/3] ARM: dts: sunxi: add support for Orange Pi Zero board

2016-12-02 Thread Chen-Yu Tsai
On Sat, Dec 3, 2016 at 12:10 AM, Andre Przywara wrote: > Hi, > > On 02/12/16 14:32, Icenowy Zheng wrote: >> >> >> 02.12.2016, 22:30, "Hans de Goede" : >>> Hi, >>> >>> On 02-12-16 15:22, Icenowy Zheng wrote: 01.12.2016, 17:36, "Maxime Ripard" : > On Mon, Nov 28, 2016 at 12:29:07AM +,

Re: [PATCH v2 2/3] ARM: dts: sunxi: add support for Orange Pi Zero board

2016-12-02 Thread Andre Przywara
Hi, On 02/12/16 14:32, Icenowy Zheng wrote: > > > 02.12.2016, 22:30, "Hans de Goede" : >> Hi, >> >> On 02-12-16 15:22, Icenowy Zheng wrote: >>> 01.12.2016, 17:36, "Maxime Ripard" : On Mon, Nov 28, 2016 at 12:29:07AM +, André Przywara wrote: > > Something more interesting happene

Re: [PATCH v2 2/3] ARM: dts: sunxi: add support for Orange Pi Zero board

2016-12-02 Thread Hans de Goede
Hi, On 02-12-16 15:22, Icenowy Zheng wrote: 01.12.2016, 17:36, "Maxime Ripard" : On Mon, Nov 28, 2016 at 12:29:07AM +, André Przywara wrote: > Something more interesting happened. > > Xunlong made a add-on board for Orange Pi Zero, which exposes the > two USB Controllers exported at

[PATCH 6/6] net: smmac: allow configuring lower pbl values

2016-12-02 Thread Niklas Cassel
From: Niklas Cassel The driver currently always sets the PBLx8/PBLx4 bit, which means that the pbl values configured via the pbl/txpbl/rxpbl DT properties are always multiplied by 8/4 in the hardware. In order to allow the DT to configure lower pbl values, while at the same time not changing beh

[PATCH 5/6] net: stmmac: add support for independent DMA pbl for tx/rx

2016-12-02 Thread Niklas Cassel
From: Niklas Cassel GMAC and newer supports independent programmable burst lengths for DMA tx/rx. Add new optional devicetree properties representing this. To be backwards compatible, snps,pbl will still be valid, but snps,txpbl/snps,rxpbl will override the value in snps,pbl if set. If the IP i

[PATCH 0/4] Add ABI to the Documentation's admin guide

2016-12-02 Thread Mauro Carvalho Chehab
That's the second attempt to add support for the Kernel ABI at the Documentation's admin guide. The previous approach was based on a generic extension that calls a random script. This patch series gets rid of the generic script execution by hardcoding the extension to run a get_abi.pl script. Su

[PATCH 4/4] doc-rst: add ABI documentation to the admin-guide book

2016-12-02 Thread Mauro Carvalho Chehab
As we don't want a generic Sphinx extension to execute commands, change the one proposed to Markus to call the abi_book.pl script. Use a script to parse the Documentation/ABI directory and output it at the admin-guide. Signed-off-by: Mauro Carvalho Chehab --- Documentation/admin-guide/abi.rst

[PATCH 1/4] doc-rst: customize RTD theme; literal-block

2016-12-02 Thread Mauro Carvalho Chehab
From: Markus Heiser From: Markus Heiser Format the literal-block like other code-block elements, with 12px and a line-high of 1.5. Signed-off-by: Markus Heiser Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx-static/theme_overrides.css | 7 +++ 1 file changed, 7 insertions(

[PATCH 2/4] doc-rst: reST-directive kernel-cmd / include contentent from scripts

2016-12-02 Thread Mauro Carvalho Chehab
From: Markus Heiser From: Markus Heiser The ``kernel-cmd`` directive includes contend from the stdout of a command-line. With the ``kernel-cmd`` directive we can include the output of any (Perl or whatever) script. This is a more general solution for other workarounds like the "kernel_include +

[PATCH 3/4] scripts: add an script to parse the ABI files

2016-12-02 Thread Mauro Carvalho Chehab
Add a script to parse the Documentation/ABI files and produce an output with all entries inside an ABI (sub)directory. Right now, it outputs its contents on ReST format. It shouldn't be hard to make it produce other kind of outputs, since the ABI file parser is implemented in separate than the out

[PATCH 2/2] MAINTAINERS: add it to the admin-guide

2016-12-02 Thread Mauro Carvalho Chehab
The MAINTAINER's file has different things inside it: - Tips for patch submitters; - Descriptions for the MAINTAINER file entries; - the MAINTAINERS database. As its contents is useful for someone reporting a bug or by a newbie submitting a patch, let's add it to the docume

[PATCH 1/2] MAINTAINERS: convert first part to ReST markup

2016-12-02 Thread Mauro Carvalho Chehab
- Fix document section markups; - Use tables; - Use monotonic font for field names; - adjust spaces and blank lines. Signed-off-by: Mauro Carvalho Chehab --- MAINTAINERS | 213 ++-- 1 file changed, 136 insertions(+), 77 deletions(-) diff -

[PATCH 0/2] Add maintainers to the admin guide

2016-12-02 Thread Mauro Carvalho Chehab
That's my third attempt to add the MAINTAINERS contents to the admin-guide. On the past approaches, was planning to keep the documentation about what's at the MAINTAINERS file inside it, but that would require running an external script or use some Sphinx extension. This time, I took a much simpl