Re: [PATCH v5 untested] kvm: better MWAIT emulation for guests

2017-03-20 Thread Michael S. Tsirkin
On Fri, Mar 17, 2017 at 09:23:56AM -0400, Gabriel L. Somlo wrote: > OK, now on to Radim's test, on the MacPro1,1: > > [kvm-unit-tests]$ time TIMEOUT=20 ./x86-run x86/mwait.flat -append '240 1 1' > timeout -k 1s --foreground 20 qemu-kvm -nodefaults -enable-kvm -device > pc-testdev -device

Re: [PATCH v4 14/23] PCI: dwc: dra7xx: Workaround for errata id i870

2017-03-20 Thread Rob Herring
On Mon, Mar 13, 2017 at 07:52:50PM +0530, Kishon Vijay Abraham I wrote: > According to errata i870, access to the PCIe slave port > that are not 32-bit aligned will result in incorrect mapping > to TLP Address and Byte enable fields. > > Accessing non 32-bit aligned data causes incorrect data in

Re: [PATCH v4 15/23] dt-bindings: PCI: dra7xx: Add dt bindings to enable unaligned access

2017-03-20 Thread Rob Herring
On Mon, Mar 13, 2017 at 07:52:51PM +0530, Kishon Vijay Abraham I wrote: > Update device tree binding documentation of TI's dra7xx PCI > controller to include property for enabling unaligned mem access. > > Signed-off-by: Kishon Vijay Abraham I > --- >

Re: [PATCH] gcc-plugins: update architecture list in documentation

2017-03-20 Thread Kees Cook
On Mon, Mar 20, 2017 at 1:39 AM, Michael Ellerman wrote: > Andrew Donnellan writes: > >> Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC >> plugins on powerpc, but neglected to update the architecture list in the >>

Re: [PATCH linux v4 1/2] Documentation: dt-bindings: Document bindings for ASPEED AST2400/AST2500 PWM and Fan tach controller device driver

2017-03-20 Thread Rob Herring
On Fri, Mar 10, 2017 at 05:53:50PM -0800, Jaghathiswari Rankappagounder Natarajan wrote: > This binding provides interface for adding values related to ASPEED > AST2400/2500 PWM and Fan tach controller support. > The PWM controller can support upto 8 PWM output ports. > The Fan tach controller

[PATCH v2] Use sphinx.version_info directly instead of parsing

2017-03-20 Thread Remy Leone
From: Rémy Léone Using the development version of sphinx caused the parsing of the version to fail. Signed-off-by: Rémy Léone --- Documentation/conf.py | 4 ++-- Documentation/sphinx/cdomain.py | 2 +- 2 files changed, 3 insertions(+), 3

Re: [PATCH 216/216] Use sphinx.version_info directly instead of parsing

2017-03-20 Thread Markus Heiser
Am 20.03.2017 um 16:11 schrieb Jani Nikula : >> # Get Sphinx version >> -major, minor, patch = map(int, sphinx.__version__.split(".")) >> +major, minor, patch, _, _ = sphinx.version_info Thanks! ... alternative, use only first three items of the tuple. More stable,

Re: [PATCH 216/216] Use sphinx.version_info directly instead of parsing

2017-03-20 Thread Jani Nikula
(What's with the subject [PATCH 216/216], I luckily only saw one patch.) On Mon, 20 Mar 2017, Remy Leone wrote: > From: Rémy Léone > > Using the development version of sphinx caused the parsing of the > version to fail. > > Signed-off-by: Rémy Léone

Re: [PATCH v3 3/6] documentation: media: Add documentation for new RGB and YUV bus formats

2017-03-20 Thread Hans Verkuil
On 03/17/2017 05:11 PM, Neil Armstrong wrote: > On 03/16/2017 06:01 PM, Archit Taneja wrote: >> >> >> On 3/7/2017 10:12 PM, Neil Armstrong wrote: >>> Add documentation for added Bus Formats to describe RGB and YUS formats used >> >> s/YUS/YUV > > Thanks again > >> >>> as input to the

[PATCH 216/216] Use sphinx.version_info directly instead of parsing

2017-03-20 Thread Remy Leone
From: Rémy Léone Using the development version of sphinx caused the parsing of the version to fail. Signed-off-by: Rémy Léone --- Documentation/conf.py | 2 +- Documentation/sphinx/cdomain.py | 2 +- 2 files changed, 2 insertions(+), 2

Re: [PATCH v3 3/6] documentation: media: Add documentation for new RGB and YUV bus formats

2017-03-20 Thread Hans Verkuil
On 03/07/2017 05:42 PM, Neil Armstrong wrote: > Add documentation for added Bus Formats to describe RGB and YUS formats used > as input to the Synopsys DesignWare HDMI TX Controller. > > Signed-off-by: Neil Armstrong > --- >

Re: [PATCH] stm class: Document the stm_ftrace

2017-03-20 Thread Alexander Shishkin
Chunyan Zhang writes: > Hi Alex, > > On 20 March 2017 at 16:49, Alexander Shishkin > wrote: >> Hi Chunyan, >> >> A couple of clarifications: iirc this applies to the function tracer >> of ftrace, right? Does it make sense to mention

Re: [PATCH] stm class: Document the stm_ftrace

2017-03-20 Thread Chunyan Zhang
Hi Alex, On 20 March 2017 at 16:49, Alexander Shishkin wrote: > Hi Chunyan, > > A couple of clarifications: iirc this applies to the function tracer > of ftrace, right? Does it make sense to mention that? Also, are you Right, only applies to the function

Re: [PATCH] stm class: Document the stm_ftrace

2017-03-20 Thread Alexander Shishkin
Hi Chunyan, A couple of clarifications: iirc this applies to the function tracer of ftrace, right? Does it make sense to mention that? Also, are you planning to support other ftrace payloads like trace_printk()s? Thanks, -- Alex On 20 March 2017 at 08:47, Chunyan Zhang

Re: [PATCH] gcc-plugins: update architecture list in documentation

2017-03-20 Thread Michael Ellerman
Andrew Donnellan writes: > Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC > plugins on powerpc, but neglected to update the architecture list in the > docs. Rectify this. > > Fixes: 65c059bcaa73 ("powerpc: Enable support for GCC

[PATCH] stm class: Document the stm_ftrace

2017-03-20 Thread Chunyan Zhang
This patch adds a description of the stm_ftrace device source, an interface for collecting Function trace information via STM devices. Signed-off-by: Chunyan Zhang --- Documentation/trace/stm.txt | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff