[Patch v5 09/12] MIPS: xilfpga: Update DT node and specify uart irq

2016-10-17 Thread Zubair Lutfullah Kakakhel
Update the DT node with the UART irq Signed-off-by: Zubair Lutfullah Kakakhel --- V3 -> V4 No change V2 -> V3 No change V1 -> V2 No change --- arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/mips/boot/dts/xilfpga/nexys4ddr.dts

[Patch v5 10/12] MIPS: xilfpga: Add DT node for AXI I2C

2016-10-17 Thread Zubair Lutfullah Kakakhel
The xilfpga platform has an AXI I2C Bus master with a temperature sensor connected to it. Add the device tree node to use them. Signed-off-by: Zubair Lutfullah Kakakhel --- V3 -> V4 changed compatible string from "adt7420" to "adi,adt7420" V2 -> V3 No change V1 -> V2 No change ---

Re: [PATCH 1/2] dwc_eth_qos: do not clear pause flags from phy_device->supported

2016-10-17 Thread David Miller
From: Niklas Cassel Date: Mon, 17 Oct 2016 08:25:48 +0200 > From: Niklas Cassel > > phy_device->supported is originally set by the PHY driver. > The ethernet driver should filter phy_device->supported to only contain > flags supported by the IP. > The IP supports setting rx and tx flow control

[Patch v5 11/12] MIPS: xilfpga: Add DT node for AXI emaclite

2016-10-17 Thread Zubair Lutfullah Kakakhel
The xilfpga platform has a Xilinx AXI emaclite block. Add the DT node to use it. Signed-off-by: Zubair Lutfullah Kakakhel --- V3 -> V4 No change V2 -> V3 No change V1 -> V2 Removed accidental local-mac-address entry --- arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 26

[Patch v5 07/12] MIPS: xilfpga: Use irqchip instead of the legacy way

2016-10-17 Thread Zubair Lutfullah Kakakhel
This prepares the code use the Xilinx Interrupt Controller driver now available in drivers/irqchip Signed-off-by: Zubair Lutfullah Kakakhel --- V4 -> V5 Better commit message V3 -> V4 Corrected commit message. Was irq-xilinx.c. Now irq-axi-intc.c V2 -> V3 No change V1 -> V2 No change ---

[Patch v5 12/12] MIPS: xilfpga: Update defconfig

2016-10-17 Thread Zubair Lutfullah Kakakhel
Update defconfig to enable emaclite, i2c, temp sensor found on the xilfpga platform Signed-off-by: Zubair Lutfullah Kakakhel --- V3 -> V4 No change V2 -> V3 No change V1 -> V2 No change --- arch/mips/configs/xilfpga_defconfig | 37 - 1 file changed, 36

[Patch v5 05/12] irqchip: xilinx: Try to fall back if xlnx,kind-of-intr not provided

2016-10-17 Thread Zubair Lutfullah Kakakhel
The powerpc dts file upstream does not have the xlnx,kind-of-intr property. Instead of erroring out, give a warning instead. And attempt to continue to probe the interrupt controller while assuming kind-of-intr is 0x0 as a fall back. Signed-off-by: Zubair Lutfullah Kakakhel --- V5 new patch ---

[Patch v5 00/12] microblaze/MIPS/PowerPC: Xilinx intc

2016-10-17 Thread Zubair Lutfullah Kakakhel
Hi, The MIPS based Xilfpga platform uses the axi interrupt controller daisy chained to the MIPS microAptiv cpu interrupt controller. This patch series moves the axi interrupt controller driver out of arch/microblaze to drivers/irqchip and then cleans it up a bit. And then remove another

[Patch v5 04/12] irqchip: xilinx: Add support for parent intc

2016-10-17 Thread Zubair Lutfullah Kakakhel
The MIPS based xilfpga platform has the following IRQ structure Peripherals --> xilinx_intcontroller -> mips_cpu_int controller Add support for the driver to chain the irq handler Signed-off-by: Zubair Lutfullah Kakakhel --- V4 -> V5 Rebased to v4.9-rc1 Missing curly braces V3 -> V4 Clean up

[PATCH 00/32] Create an User's manual and improve development-process book

2016-10-17 Thread Mauro Carvalho Chehab
This patch series continues the efforts of converting the Linux Kernel documentation to Sphinx. It contains text to ReST conversion of several files under Documentation, and a few ones under the main dir (README, REPORTING-BUGS). As several of the files that document the user's book and the

Geschäftsvorschlag!!!

2016-10-17 Thread Louis ISAKI
-- Geschäftsvorschlag!!! Ich vermute das diese E-Mail eine Überraschung für Sie sein wird, aber es ist wahr.Ich bin bei einer routinen Überprüfung in meiner Bank (First National Bank von Süd Afrika) wo ich arbeite, auf einem Konto gestoßen, was nicht in anspruch genommen worden ist, wo

[PATCH 05/32] docs-rst: add documents to development-process

2016-10-17 Thread Mauro Carvalho Chehab
Add several documents to the development-process ReST book. As we don't want renames, use symlinks instead, keeping those documents on their original place. Acked-by: Greg Kroah-Hartman Signed-off-by: Mauro Carvalho Chehab --- Documentation/development-process/Changes.rst | 1 +

[PATCH 19/32] Documentation/magic-number.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- add a title for the document; - convert the table; - use quote block for the changelog; - use monotonic fonts for file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/development-process/index.rst| 1 +

[PATCH 01/32] Documentation/applying-patches.txt: fix a bad external link

2016-10-17 Thread Mauro Carvalho Chehab
We can't use :ref: for external links. Signed-off-by: Mauro Carvalho Chehab --- Documentation/applying-patches.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/applying-patches.txt b/Documentation/applying-patches.txt index 02ce4924468e..3395da13d415 100644

[PATCH 31/32] Documentation/volatile-considered-harmful.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document section markups; - use quote blocks where needed; - adjust spaces and blank lines; - add it to the development-processs book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/development-process/index.rst | 1 + .../volatile-considered-harmful.rst

[PATCH 32/32] Documentation/parport.txt: fix table to show on LaTeX

2016-10-17 Thread Mauro Carvalho Chehab
Sphinx doesn't like nested tables on the LaTex output. So, change the table there to be displayed properly at the PDF output. Signed-off-by: Mauro Carvalho Chehab --- Documentation/parport.txt | 33 ++--- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git

[PATCH 17/32] Documentation/initrd.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- use a quote blocks where needed; - fix the chapter/section/subsection markups; - use ``foo`` for monotonic; - use .. note:: for /sbin/init file permissions; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/initrd.txt

[PATCH 09/32] Documentation/basic_profiling.rst: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
Convert it to ReST markup and add it to the user book: - Add a title to the document; - touch spaces/new lines to fix Sphinx format; - use ``foo`` for commands; - use quote blocks where needed; - add it to the user book; Signed-off-by: Mauro Carvalho Chehab ---

[PATCH 12/32] Documentation/braille-console: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix identation for the document title; - use monotonic fonts for paths; - use quote blocks where needed; - adjust spaces to properly format paragraphs; - use :menuselection: and :kbd: for the menu item and keys; - point too the right item at the menu; - add it to the user book. Signed-off-by:

Re: [PATCH v4 08/18] x86/intel_rdt: Pick up L3/L2 RDT parameters from CPUID

2016-10-17 Thread Thomas Gleixner
On Mon, 17 Oct 2016, Fenghua Yu wrote: > On Mon, Oct 17, 2016 at 03:45:32PM +0200, Thomas Gleixner wrote: > > On Fri, 14 Oct 2016, Fenghua Yu wrote: > > > +/** > > > + * struct rdt_resource - attributes of an RDT resource > > > + * @enabled: Is this feature enabled on this

Re: [PATCH v4 08/18] x86/intel_rdt: Pick up L3/L2 RDT parameters from CPUID

2016-10-17 Thread Thomas Gleixner
On Mon, 17 Oct 2016, Luck, Tony wrote: > > > I wonder whether this is the proper abstraction level. We might as well do > > > the following: > > > > > > rdtresources[] = { > > > { > > > .name = "L3", > > > }, > > > { > > > .name = "L3Data", > > > }, > > > { > > >

Re: [PATCH] checkpatch: don't try to get maintained status when --no-tree is given

2016-10-17 Thread Joe Perches
On Mon, 2016-10-17 at 17:55 +0200, Jerome Forissier wrote: > Fixes the following warning: > Use of uninitialized value $root in concatenation (.) or string at > /path/to/checkpatch.pl line 764. Thanks Jerome. > Signed-off-by: Jerome Forissier Acked-by: Joe Perches > --- >

[PATCH 07/32] Documentation/adding-syscalls.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
Convert adding-syscalls.txt to ReST markup and add it to the development-process book: - add extra lines to make Sphinx to correctly parse paragraphs; - use quote blocks for examples; - use monotonic font for dirs, function calls, etc; - mark manpage pages using the right markup; - add

[PATCH 30/32] Documentation/VGA-softcursor.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document title; - use quote blocks where needed; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/VGA-softcursor.txt | 73

Re: Build regressions/improvements in v4.9-rc1

2016-10-17 Thread Vineet Gupta
+CC Arnd, Michal Hi Geert, Arnd Need some guidance here. On 10/17/2016 12:34 AM, Geert Uytterhoeven wrote: >> 48 error regressions: >> > + /home/kisskb/slave/src/arch/arc/include/asm/atomic.h: Error: bad >> > instruction `llockd r2,[r0]': => 476 >> > +

[PATCH 10/32] Documentation/binfmt_misc.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix identation for the document title; - use monotonic fonts for commands, paths, etc; - use quote blocks where needed; - adjust spaces to properly format paragraphs; - add it to the user book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/binfmt_misc.txt | 134

[PATCH 22/32] Documentation/mono.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document title; - use quote blocks where needed; - use .. note:: for notes; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/mono.txt | 44

Re: [PATCH v4 2/7] ARM: dts: bcm283x: Define standard pinctrl groups in the gpio node.

2016-10-17 Thread Eric Anholt
Gerd Hoffmann writes: > From: Eric Anholt > > The BCM2835-ARM-Peripherals.pdf documentation specifies what the > function selects do for the pins, and there are a bunch of obvious > groupings to be made. With these created, we'll be able to replace > bcm2835-rpi.dtsi's main "set all of these

[PATCH 28/32] Documentation/sysrq.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document title; - use a table for the valid commands; - use quote blocks where needed; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sysrq.txt | 266

[PATCH 14/32] Documentation/CodeOfConflict: add it to the development-process book

2016-10-17 Thread Mauro Carvalho Chehab
This file is already in ReST format. So, just add an extra blank line to improve its output and add it to the development-process book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/development-process/CodeOfConflict.rst | 1 + Documentation/development-process/index.rst | 1 +

[PATCH 16/32] Documentation/dynamic-debug-howto.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- use a quote blocks where needed; - fix the chapter/section/subsection markups; - use ``foo`` for monotonic; - use .. note:: for the line-range note; - cleanup whitespaces; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/dynamic-debug-howto.txt | 297

[PATCH 20/32] Documentation/md.txt: Convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- add a title for the document; - convert some parameters to tables; - use quote blocks where needed; - use monotonic fonts for parameters; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/md.txt | 528

[PATCH 29/32] Documentation/unicode.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
Probably, unicode is something that we might remove from the docs, as all modern systems support it. Yet, this chapter is fun, as it mentions support for the Klington fictional charset ;) On the other hand, I bet all other OS user manuals explicit mention unicode support. So, convert it to ReST

[PATCH 06/32] docs-rst: create an user's manual book

2016-10-17 Thread Mauro Carvalho Chehab
Place README, REPORTING-BUGS, SecurityBugs and kernel-parameters on an user's manual book. As we'll be numbering the user's manual, remove the manual numbering from SecurityBugs. Signed-off-by: Mauro Carvalho Chehab --- Documentation/SecurityBugs | 12 ++--

Re: [ANNOUNCE] bridge-utils 1.6 release

2016-10-17 Thread Alexander Alemayhu
On Mon, Oct 17, 2016 at 09:03:30AM -0700, Stephen Hemminger wrote: > > Source: > > http://www.kernel.org/pub/linux/utils/net/bridge-utils/bridge-utils.1.6.tar.gz > This link seems to be broken. -- Mit freundlichen Grüßen Alexander Alemayhu

[PATCH 13/32] Documentation/BUG-HUNTING: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Add a document title and remove its own index; - use monotonic fonts for paths; - use quote blocks where needed; - adjust/use spaces to properly format paragraphs; - add it to the user book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/BUG-HUNTING | 162

[PATCH] tty: serial: 8250: 8250_core: NXP SC16C2552 workaround

2016-10-17 Thread David Singleton
From: Steve Shih NXP SC16C2552 requires that we always write a reset to the RX FIFO and TX FIFO whenever we enable the FIFOs Cc: xe-ker...@external.cisco.com Signed-off-by: Steve Shih Signed-off-by: David Singleton --- drivers/tty/serial/8250/8250_port.c | 3 ++- 1 file changed, 2

[PATCH 26/32] Documentation/ramoops.txt: convert it to ReST format

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document title; - use quote blocks where needed; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/ramoops.txt | 86

[PATCH 03/32] README: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
Adjust the readme file for it to use the ReST markup: - add chapter/section markups; - use ``foo`` for commands; - use :: for verbatim and script blocks; - replace unsupported markup _foo_ by **foo**; - add cross-references to other ReST files; - use lower case on the section titles, to match

[PATCH 08/32] Documentation/bad_memory.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- promote the section level of the document name; - add/remove spaces/new lines where needed to format the output; - use quote blocks. - add it to the user book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/bad_memory.txt | 26 --

[PATCH 27/32] Documentation/sysfs-rules.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document title; - use quote blocks where needed; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sysfs-rules.txt | 218

[PATCH 25/32] Documentation/parport.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Add a document title; - use quote blocks where needed; - convert parameters to a nested table; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - replace _foo_ by **foo**; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab ---

Re: [PATCH v3 net-next 2/2] net: deprecate eth_change_mtu, remove usage

2016-10-17 Thread Jakub Kicinski
On Mon, 17 Oct 2016 12:49:54 -0400 (EDT), David Miller wrote: > From: Jakub Kicinski > Date: Mon, 17 Oct 2016 17:20:06 +0100 > > > Please correct me if I'm wrong but it seems like we are now limiting > > _all_ ethernet drivers to ETH_DATA_LEN in net-next. > > No, because the driver can

[PATCH 18/32] Documentation/init.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- use a quote blocks where needed; - use ``foo`` for monotonic; - adjust whitespaces and blank lines; - fix the second list (that starts with 0, instead of A) - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/init.txt | 29 -

[PATCH 21/32] Documentation/module-signing.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix identatio for the document title; - remove its index; - create a table for hash algorithm to be used; - use quote blocks where needed; - use monotonic fonts for parameters; - adjust whitespaces and blank lines; - Fix case on section titles; - add it to the user's book. Signed-off-by: Mauro

[PATCH] e1000e: x86: e1000 driver trying to free already-free irq.

2016-10-17 Thread David Singleton
From: khalidm During systemd reboot sequence network driver interface is shutdown by e1000_close. The PCI driver interface is shut by e1000_shutdown. The e1000_shutdown checks for netif_running status, if still up it brings down driver. But it disables msi outside of this if statement,

[PATCH] pcie: aer: aerdrv: PCIe AER workaround and handling for ASR1K platforms.

2016-10-17 Thread David Singleton
From: Steve Shih ASR1K FPGAs and ASICs are configured to raise SERR/PERR through PCIe AER. When an error is raised, it is detected at the root complex, but it is not detected by the AER driver. If the root complex bridge control register is configured to forward secondary bus errors to the

Re: [PATCH] crypto: ccm - avoid scatterlist for MAC encryption

2016-10-17 Thread Andy Lutomirski
On Mon, Oct 17, 2016 at 12:37 AM, Ard Biesheuvel wrote: > On 17 October 2016 at 08:28, Johannes Berg wrote: >> On Sat, 2016-10-15 at 18:16 +0100, Ard Biesheuvel wrote: >>> The CCM code goes out of its way to perform the CTR encryption of the >>> MAC using the subordinate CTR driver. To this end,

[PATCH 23/32] Documentation/java.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix document title; - use quote blocks where needed; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - add it to the user's book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/java.txt | 244

Re: [PATCH 0/7] net: Fix module autoload for several platform drivers

2016-10-17 Thread David Miller
From: Javier Martinez Canillas Date: Mon, 17 Oct 2016 11:05:39 -0300 > I noticed that module autoload won't be working in a bunch of platform > drivers in the net subsystem and this patch series contains the fixes. Looks good, series applied, thanks.

Re: [PATCH 08/10] perf, tools: Expand PMU events by prefix match

2016-10-17 Thread Andi Kleen
> so there's a special treatment for uncore events, > what if user says 'uncore_box/..' then? It should work. There's nothing special for uncore later, this is just for convenience so that I have less to type. > > + if (!strncmp($1, name, strlen($1))) { > > +

[PATCH 15/32] Documentation/devices.rst: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- use a quote block for the big device major/minor list; - use tables for the other device tables; - fix the chapter/section/subsection markups; - use ``foo`` for monotonic; - use .. attention:: for the attention note to developers; - use cross-references where needed; - cleanup whitespaces; - add

Re: [PATCH] fjes: fix format string for trace output

2016-10-17 Thread David Miller
From: Arnd Bergmann Date: Mon, 17 Oct 2016 16:30:57 +0200 > phys_addr_t may be wider than a pointer and has to be printed > using the special %pap format string, as pointed out by > this new warning. > > arch/x86/include/../../../drivers/net/fjes/fjes_trace.h: In function >

[PATCH 11/32] Documentation/serial-console.txt: convert it to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Fix identation for the document title; - use monotonic fonts for paths; - use quote blocks where needed; - adjust spaces to properly format paragraphs; - use :menuselection: for the menu item; - add it to the user book. Signed-off-by: Mauro Carvalho Chehab --- Documentation/serial-console.txt

[PATCH 02/32] REPORTING-BUGS: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- add a title to the document; - use :: before verbatim blocks; - add blank lines where required; - use protocol for URL references; - use a verbatim block for the bugs template; - add cross references to SecurityBugs. Signed-off-by: Mauro Carvalho Chehab --- REPORTING-BUGS | 66

Re: [PATCH 0/8] infiniband: Remove semaphores

2016-10-17 Thread Bart Van Assche
On 10/17/2016 09:30 AM, Binoy Jayan wrote: These are a set of patches which removes semaphores from infiniband. These are part of a bigger effort to eliminate all semaphores from the linux kernel. Hello Binoy, Why do you think it would be a good idea to eliminate all semaphores from the

[PATCH 24/32] Documentation/oops-tracing.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
- Add a document title; - use .. note:: markup; - use quote blocks where needed; - use monotonic fonts for config options and file names; - adjust whitespaces and blank lines; - replace _foo_ by **foo**; - while here, remove whitespaces at the end of paragraph; - add it to the user's book.

Re: [PATCH] Add missing space at end of pr_fmt().

2016-10-17 Thread Joe Perches
On Mon, 2016-10-17 at 08:10 -0700, frowand.l...@gmail.com wrote: > From: Frank Rowand > > Make pr_fmt() in fdt.c consistent with all other files in drivers/of/ Hi Frank. Patches should use the subsystem as a subject prefix to make the subsystem more obvious when using "git log". This email

[PATCH] sd: assign appropriate log level

2016-10-17 Thread David Singleton
From: Shikhar Dogra Reduce chatter on console for usb hotplug. KERN_ERR is too high severity for these messages, moving them to KERN_WARNING USB devices never have a Caching Mode page, it doesn't make sense to make it an error when you have tons of USB devices where the print is useless, and

Re: [PATCH v3 net-next 2/2] net: deprecate eth_change_mtu, remove usage

2016-10-17 Thread Jakub Kicinski
On Mon, 17 Oct 2016 18:00:27 +0100, Jakub Kicinski wrote: > On Mon, 17 Oct 2016 12:49:54 -0400 (EDT), David Miller wrote: > > From: Jakub Kicinski > > Date: Mon, 17 Oct 2016 17:20:06 +0100 > > > > > Please correct me if I'm wrong but it seems like we are now limiting > > > _all_ ethernet

[PATCH resend 4.9] hw_random: Don't use a stack buffer in add_early_randomness()

2016-10-17 Thread Andy Lutomirski
hw_random carefully avoids using a stack buffer except in add_early_randomness(). This causes a crash in virtio_rng if CONFIG_VMAP_STACK=y. Reported-by: Matt Mullins Tested-by: Matt Mullins Fixes: d3cc7996473a ("hwrng: fetch randomness only after device init") Signed-off-by: Andy Lutomirski

Re: [PATCH 2/3] ARM: bus: da8xx-syscfg: new driver

2016-10-17 Thread Kevin Hilman
Bartosz Golaszewski writes: > Create the driver for the da8xx System Configuration and implement > support for writing to the three Master Priority registers. > > Signed-off-by: Bartosz Golaszewski [...] > +#define DA8XX_IO_PHYS0x01c0ul > +#define

Re: [PATCH v4 08/18] x86/intel_rdt: Pick up L3/L2 RDT parameters from CPUID

2016-10-17 Thread Thomas Gleixner
On Mon, 17 Oct 2016, Fenghua Yu wrote: > On Mon, Oct 17, 2016 at 03:45:32PM +0200, Thomas Gleixner wrote: > > I wonder whether this is the proper abstraction level. We might as well do > > the following: > > > > rdtresources[] = { > > { > > .name = "L3", > > }, > > { > >

[PATCH 04/32] Documentation/kernel-parameters.txt: convert to ReST markup

2016-10-17 Thread Mauro Carvalho Chehab
Adjust the file for it to be parsed by Sphinx: - adjust the document title to be parsed; - use :: for quote blocks; - fix the horizontal bar markup; - lower case the TODO title. Signed-off-by: Mauro Carvalho Chehab --- Documentation/kernel-parameters.txt | 33 +++--

[PATCH] mtd: chips: cfi_cmdset_0001: Disable erase and write suspend for Intel flash.

2016-10-17 Thread David Singleton
From: Steve Shih Some revisions of the P30, P33, and J3 Flash memory devices can hang when an ERASE SUSPEND command is issued following an ERASE RESUME without waiting for the minimum delay time to elapse. The result is that when the ERASE appears to be complete (no bits are toggling), the

4.9-rc1 won't boot unknown symbol __fentry__

2016-10-17 Thread Vince Weaver
Hello My haswell machine won't boot with 4.9-rc1, apparently due to missing symbols in the modules. Possibly being related to ftrace being on? It booted just fine with linus-git from 13 October so this is a recent break. Just wanted to see if this was a known issue before I try to bisect

Re: [PATCH v2 02/31] cinergyT2-core: don't do DMA on stack

2016-10-17 Thread Mauro Carvalho Chehab
Em Sat, 15 Oct 2016 22:54:49 +0200 Johannes Stezenbach escreveu: > On Tue, Oct 11, 2016 at 07:09:17AM -0300, Mauro Carvalho Chehab wrote: > > --- a/drivers/media/usb/dvb-usb/cinergyT2-core.c > > +++ b/drivers/media/usb/dvb-usb/cinergyT2-core.c > > @@ -41,6 +41,8 @@

Re: [PATCH resend 4.9] hw_random: Don't use a stack buffer in add_early_randomness()

2016-10-17 Thread Stephan Mueller
Am Montag, 17. Oktober 2016, 10:06:27 CEST schrieb Andy Lutomirski: Hi Andy, > diff --git a/drivers/char/hw_random/core.c b/drivers/char/hw_random/core.c > index 9203f2d130c0..340f96e44642 100644 > --- a/drivers/char/hw_random/core.c > +++ b/drivers/char/hw_random/core.c > @@ -84,14 +84,14 @@

Re: MD-RAID: Use seq_putc() in three status functions?

2016-10-17 Thread Hannes Reinecke
On 10/17/2016 06:08 PM, SF Markus Elfring wrote: * Would you really like to know under which circumstances data processing will be faster for a single character instead of using a string pointer and corresponding two characters? It's not a problem of the interface, it's a problem of the

Re: [PATCH] sd: assign appropriate log level

2016-10-17 Thread James Bottomley
On Mon, 2016-10-17 at 09:51 -0700, David Singleton wrote: > From: Shikhar Dogra > > Reduce chatter on console for usb hotplug. > KERN_ERR is too high severity for these messages, moving them > to KERN_WARNING It's an error because we have several USB to IDE bridges that have write back cache

Re: [PATCH v3 net-next 2/2] net: deprecate eth_change_mtu, remove usage

2016-10-17 Thread David Miller
From: Jakub Kicinski Date: Mon, 17 Oct 2016 18:00:27 +0100 > On Mon, 17 Oct 2016 12:49:54 -0400 (EDT), David Miller wrote: >> From: Jakub Kicinski >> Date: Mon, 17 Oct 2016 17:20:06 +0100 >> >> > Please correct me if I'm wrong but it seems like we are now limiting >> > _all_ ethernet drivers

[PATCH] staging: lustre: remove unused identifier OBD_INIT_CHECK

2016-10-17 Thread Aya Mahfouz
OBD_INIT_CHECK was previously used by a conditional group. This is no longer the case so it can be removed. Signed-off-by: Aya Mahfouz --- drivers/staging/lustre/lustre/obdclass/class_obd.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/obdclass/class_obd.c

Re: [patch] drivers/zram: Don't disable preemption in zcomp_stream_get/put()

2016-10-17 Thread Mike Galbraith
On Mon, 2016-10-17 at 18:29 +0200, Sebastian Andrzej Siewior wrote: > On 2016-10-17 18:19:00 [+0200], Mike Galbraith wrote: > > I used a local lock first, but lockdep was unhappy with it. Ok, > > back > > to the drawing board. Seems to work, but... > > locallock can be taken recursively so

Re: ARC-setup: Use seq_putc() in show_cpuinfo()

2016-10-17 Thread SF Markus Elfring
>> A single character (line break) should be put into a sequence. >> Thus use the corresponding function "seq_putc". > > Perhaps reword the changelog to say that seqc_putc is more efficient than > seqc_printf to output a single char. > I mean _printf is not wrong but not as efficient ? I came

[PATCH v2] DAX: enable iostat for read/write

2016-10-17 Thread Toshi Kani
DAX IO path does not support iostat, but its metadata IO path does. Therefore, iostat shows metadata IO statistics only, which has been confusing to users. Add iostat support to the DAX read/write path. Note, iostat still does not support the DAX mmap path as it allows user applications to

Re: [PATCH v2] hwmon: (adm1275) Enable adm1278 VOUT sampling

2016-10-17 Thread Guenter Roeck
On Mon, Oct 17, 2016 at 06:38:53PM +1030, Joel Stanley wrote: > From: Yi Li > > The adm1278 can optionally monitor the VOUT pin. This functioanltiy is > not enabled at reset, so PMON_CONFIG needs to be modified in order to > enable it. > > Signed-off-by: Yi Li > Signed-off-by: Joel Stanley

Re: [PATCH] sd: assign appropriate log level

2016-10-17 Thread Joe Perches
On Mon, 2016-10-17 at 09:51 -0700, David Singleton wrote: > From: Shikhar Dogra > > Reduce chatter on console for usb hotplug. > KERN_ERR is too high severity for these messages, moving them > to KERN_WARNING Perhaps KERN_NOTICE is more appropriate. That's the level for most of these

Re: ARC-setup: Use seq_putc() in show_cpuinfo()

2016-10-17 Thread Vineet Gupta
On 10/17/2016 10:19 AM, SF Markus Elfring wrote: >>> A single character (line break) should be put into a sequence. >>> Thus use the corresponding function "seq_putc". >> Perhaps reword the changelog to say that seqc_putc is more efficient than >> seqc_printf to output a single char. >> I mean

Re: [PATCH] crypto: ccm - avoid scatterlist for MAC encryption

2016-10-17 Thread Ard Biesheuvel
On 17 October 2016 at 18:08, Andy Lutomirski wrote: > On Mon, Oct 17, 2016 at 12:37 AM, Ard Biesheuvel > wrote: >> On 17 October 2016 at 08:28, Johannes Berg wrote: >>> On Sat, 2016-10-15 at 18:16 +0100, Ard Biesheuvel wrote: The CCM code goes out of its way to perform the CTR encryption

Re: [REVIEW][PATCH] mm: Add a user_ns owner to mm_struct and fix ptrace_may_access

2016-10-17 Thread Jann Horn
On Mon, Oct 17, 2016 at 11:39:49AM -0500, Eric W. Biederman wrote: > > During exec dumpable is cleared if the file that is being executed is > not readable by the user executing the file. A bug in > ptrace_may_access allows reading the file if the executable happens to > enter into a subordinate

Re: [PATCH v3 net-next 2/2] net: deprecate eth_change_mtu, remove usage

2016-10-17 Thread Jakub Kicinski
On Mon, 17 Oct 2016 13:15:13 -0400 (EDT), David Miller wrote: > From: Jakub Kicinski > Date: Mon, 17 Oct 2016 18:00:27 +0100 > > > On Mon, 17 Oct 2016 12:49:54 -0400 (EDT), David Miller wrote: > >> From: Jakub Kicinski > >> Date: Mon, 17 Oct 2016 17:20:06 +0100 > >> > >> > Please correct

Hello Dear

2016-10-17 Thread Rachael Dweck
Hello Dear I have been looking for an opportunity to contact you,i hope you are fine, sorry for the inconveniences but i really need to discuss an important matter with you like a good friend. My name is Rachael Dweck (female). thanks

Re: [PATCH v3 net-next 2/2] net: deprecate eth_change_mtu, remove usage

2016-10-17 Thread David Miller
From: Jakub Kicinski Date: Mon, 17 Oct 2016 18:20:49 +0100 > Hm. I must be missing something really obvious. I just booted > net-next an hour ago and couldn't set MTU to anything larger than 1500 > on either nfp or igb. As far as I can read the code it will set the > max_mtu to 1500 in

Re: [PATCH] Input: psmouse - cleanup Focaltech code

2016-10-17 Thread Mathias Gottschlag
The changes look good to me. However, what wording do other drivers use? I've seen "TouchPad" with a capital P before. If this patch breaks scripts searching for that string anyways, that's an opportunity to unify the capitalization there. It probably doesn't matter, though... I don't see a

Re: [PATCH 08/10] perf, tools: Expand PMU events by prefix match

2016-10-17 Thread Jiri Olsa
On Mon, Oct 17, 2016 at 09:56:42AM -0700, Andi Kleen wrote: > > so there's a special treatment for uncore events, > > what if user says 'uncore_box/..' then? > > It should work. There's nothing special for uncore later, this > is just for convenience so that I have less to type. really..

Re: please, where has xconfig KConf option documentation gone with linux 4.8's Qt5 / Qt4 xconfig ?

2016-10-17 Thread Randy Dunlap
Boris or Thiago, Any comments, suggestions, or patches about this? thanks. On 10/15/16 04:09, Jason Vas Dias wrote: > Aha, thanks! I never would have known this without being told - > there is no visible indication that the symbol info pane exists > at all until one tries to drag the lower

Re: [PATCH 07/10] perf, tools: Collapse identically named events in perf stat

2016-10-17 Thread Jiri Olsa
On Mon, Oct 17, 2016 at 09:30:17AM -0700, Andi Kleen wrote: > > this leads to my next question: why this merging should be default? > > It's the right default for uncore, and it doesn't do anything for > non uncore because these usually don't have duplicated event aliases > over different PMUs.

Re: [PATCH v2] DAX: enable iostat for read/write

2016-10-17 Thread Ross Zwisler
On Mon, Oct 17, 2016 at 11:18:58AM -0600, Toshi Kani wrote: > DAX IO path does not support iostat, but its metadata IO path does. > Therefore, iostat shows metadata IO statistics only, which has been > confusing to users. > > Add iostat support to the DAX read/write path. > > Note, iostat still

Re: [PATCH resend 4.9] hw_random: Don't use a stack buffer in add_early_randomness()

2016-10-17 Thread Andy Lutomirski
On Mon, Oct 17, 2016 at 10:17 AM, Stephan Mueller wrote: > Am Montag, 17. Oktober 2016, 10:06:27 CEST schrieb Andy Lutomirski: > > Hi Andy, > >> diff --git a/drivers/char/hw_random/core.c b/drivers/char/hw_random/core.c >> index 9203f2d130c0..340f96e44642 100644 >> ---

Re: [PATCH v2 1/2] watchdog: Introduce arch_watchdog_nmi_enable and arch_watchdog_nmi_disable

2016-10-17 Thread Don Zickus
On Thu, Oct 13, 2016 at 01:38:01PM -0700, Babu Moger wrote: > Currently we do not have a way to enable/disable arch specific > watchdog handlers if it was implemented by any of the architectures. > > This patch introduces new functions arch_watchdog_nmi_enable and > arch_watchdog_nmi_disable

Re: [PATCH] sd: assign appropriate log level

2016-10-17 Thread Daniel Walker
On 10/17/2016 10:19 AM, James Bottomley wrote: On Mon, 2016-10-17 at 09:51 -0700, David Singleton wrote: From: Shikhar Dogra Reduce chatter on console for usb hotplug. KERN_ERR is too high severity for these messages, moving them to KERN_WARNING It's an error because we have several USB to

[PATCH] xfs: remove redundant assignment of ifp

2016-10-17 Thread Colin King
From: Colin Ian King Remove redundant ifp = ifp statement, it does nothing. Found with static analysis by CoverityScan. Signed-off-by: Colin Ian King --- fs/xfs/libxfs/xfs_bmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/xfs/libxfs/xfs_bmap.c

Re: [PATCH] xfs: remove redundant assignment of ifp

2016-10-17 Thread Darrick J. Wong
On Mon, Oct 17, 2016 at 06:32:40PM +0100, Colin King wrote: > From: Colin Ian King > > Remove redundant ifp = ifp statement, it does nothing. Found with > static analysis by CoverityScan. > > Signed-off-by: Colin Ian King Reviewed-by: Darrick J. Wong > --- > fs/xfs/libxfs/xfs_bmap.c | 2 +-

Re: [REVIEW][PATCH] mm: Add a user_ns owner to mm_struct and fix ptrace_may_access

2016-10-17 Thread Eric W. Biederman
Jann Horn writes: > On Mon, Oct 17, 2016 at 11:39:49AM -0500, Eric W. Biederman wrote: >> >> During exec dumpable is cleared if the file that is being executed is >> not readable by the user executing the file. A bug in >> ptrace_may_access allows reading the file if the executable happens to

Re: [PATCH v2] console: Don't prefer first registered if DT specifies stdout-path

2016-10-17 Thread Andreas Schwab
On Okt 17 2016, Paul Burton wrote: > Could you share the device tree from your system? This is the contents of chosen/linux,stdout-path on the systems I have: chosen/linux,stdout-path "/pci@f000/ATY,SnowyParent@10/ATY,Snowy_A@0" chosen/linux,stdout-path

Re: ARC-setup: Use seq_putc() in show_cpuinfo()

2016-10-17 Thread SF Markus Elfring
>>> Perhaps reword the changelog to say that seqc_putc is more efficient than >>> seqc_printf to output a single char. >>> I mean _printf is not wrong but not as efficient ? >> I came along source files for a few other software modules with similar >> change possibilities. >> Unfortunately, the

Re: [PATCH v2] mm: vmalloc: Replace purge_lock spinlock with atomic refcount

2016-10-17 Thread Joel Fernandes
Hi Nick, On Sun, Oct 16, 2016 at 9:00 PM, Nicholas Piggin wrote: > On Sat, 15 Oct 2016 03:42:42 -0700 > Joel Fernandes wrote: > >> The purge_lock spinlock causes high latencies with non RT kernel. This has >> been >> reported multiple times on lkml [1] [2] and affects applications like audio.

Re: [PATCH] Input: psmouse - cleanup Focaltech code

2016-10-17 Thread Dmitry Tunin
Other drivers, like Synaptics use the same as I suggested. They even shorten in psmouse-base.c psmouse_protocol.name to SynPS/2. You used FocaltechPS/2. I think it is OK. I do not think it is a big problem of changing the naming. It happens a lot. I still have the hardware and I am still

Re: [PATCH] thread_info: include for THREAD_INFO_IN_TASK (WAS: [PATCH 2/3] sched/preempt: include asm/current.h)

2016-10-17 Thread Mark Rutland
On Mon, Oct 17, 2016 at 03:48:13PM +0100, Mark Rutland wrote: > On Fri, Oct 14, 2016 at 11:42:25AM +0100, Mark Rutland wrote: > > When CONFIG_THREAD_INFO_IN_TASK is selected, the current_thread_info() > > macro relies on current having been defined prior to its use. However, > > not all users of

Re: [PATCH 09/10] perf, tools: Support DividedBy header in JSON event list

2016-10-17 Thread Jiri Olsa
On Mon, Oct 17, 2016 at 09:27:54AM -0700, Andi Kleen wrote: > On Mon, Oct 17, 2016 at 01:44:43PM +0200, Jiri Olsa wrote: > > On Thu, Oct 13, 2016 at 02:15:31PM -0700, Andi Kleen wrote: > > > From: Andi Kleen > > > > > > Add support for parsing the DividedBy header in the JSON event lists and > >

<    14   15   16   17   18   19   20   21   22   23   >