soft lockup when passing vvar address to write(2)

2016-03-03 Thread Rasmus Villemoes
Looking up the vvar mapping and dumping its contents sometimes results in a soft lockup. On 4.5-rc6+ (master from earlier today) it seems to be a little harder to trigger than on the 4.2something Ubuntu kernel I first saw it on, but in both cases it's easy to reproduce (10s of iterations at most)

Re: [PATCH v4 5/8] kbuild: add fine grained build dependencies for exported symbols

2016-03-03 Thread Michal Marek
Dne 29.2.2016 v 04:48 Nicolas Pitre napsal(a): > +# Filter out exported kernel symbol names advertised as warning pragmas > +# by the preprocessor and write them to $(1). We must consider continuation > +# lines as well: they start with a blank, or the preceeding line ends with > +# a ':'.

Re: [PATCH 2/2] block: create ioctl to discard-or-zeroout a range of blocks

2016-03-03 Thread Dave Chinner
On Thu, Mar 03, 2016 at 01:54:54PM -0500, Martin K. Petersen wrote: > > "Christoph" == Christoph Hellwig writes: > > Christoph> - FALLOC_FL_PUNCH_HOLE assures zeroes are returned, but > Christoph> space is deallocated as much as possible - > Christoph>

Re: [PATCH 2/2] objtool: Support CROSS_COMPILE

2016-03-03 Thread Stephen Rothwell
Hi Ingo, On Thu, 3 Mar 2016 16:10:21 +0100 Ingo Molnar wrote: > > I'll add Josh's fixes to -tip ASAP as well, so hopefully soon you can drop > all > linux-next specific patches related to this and it will all work Just Fine > (tm). Thanks for that. I have now dropped these

Re: [PATCH] mm/hugetlb: use EOPNOTSUPP in hugetlb sysctl handlers

2016-03-03 Thread Naoya Horiguchi
On Thu, Mar 03, 2016 at 11:02:51AM +0100, Jan Stancek wrote: > Replace ENOTSUPP with EOPNOTSUPP. If hugepages are not supported, > this value is propagated to userspace. EOPNOTSUPP is part of uapi > and is widely supported by libc libraries. > > Cc: Andrew Morton > Cc:

RE: [PATCH 4/4] MSR: msr Batch processing feature

2016-03-03 Thread Mcfadden, Marty Jay
> From: One Thousand Gnomes [mailto:gno...@lxorguk.ukuu.org.uk] > Sent: Thursday, March 03, 2016 9:21 AM > > That strikes me as a very bad idea btw. If your opener was privileged and > leaks > the handle via exec or anything else to another process that process inherits > the > powers which

Re: [RFC PATCH 0/9] iio: Fix ABBA deadlock in inv-mpu6050

2016-03-03 Thread Peter Rosin
From: Peter Rosin Hi Daniel, Daniel Baluta wrote: >On Mon, Feb 22, 2016 at 1:17 AM, Wolfram Sang wrote: >> On Thu, Feb 18, 2016 at 05:53:05PM +0200, Daniel Baluta wrote: >>> Sending this as an RFC because I don't know if style fixes are appropriate >>> for this driver and also

Re: [PATCH 4.4 000/342] 4.4.4-stable review

2016-03-03 Thread Greg Kroah-Hartman
On Thu, Mar 03, 2016 at 12:10:38PM -0800, Kevin Hilman wrote: > kernelci.org bot writes: > > > stable-queue boot: 412 boots: 2 failed, 400 passed with 10 offline > > (v4.4.3-342-g9612a7fdd94b) > > > > Full Boot Summary: > >

Re: [PATCH 2/2] block: create ioctl to discard-or-zeroout a range of blocks

2016-03-03 Thread Dave Chinner
On Thu, Mar 03, 2016 at 05:39:52PM -0500, Theodore Ts'o wrote: > On Thu, Mar 03, 2016 at 01:54:54PM -0500, Martin K. Petersen wrote: > > > "Christoph" == Christoph Hellwig writes: > > > > Christoph> - FALLOC_FL_PUNCH_HOLE assures zeroes are returned, but > > Christoph>

Re: [PATCH V14 8/9] vfio, platform: add support for ACPI while detecting the reset driver

2016-03-03 Thread Eric Auger
Hi Sinan, On 03/02/2016 07:34 PM, Sinan Kaya wrote: > On 2/26/2016 12:15 PM, Eric Auger wrote: >>> -module_init(reset ## _module_init);\ +#define module_vfio_reset_handler(compat, acpihid, reset) \ +MODULE_ALIAS("vfio-reset:" compat);

Re: [PATCH v2 4/4] ACPI: Change NFIT driver to insert new resource

2016-03-03 Thread Toshi Kani
On Thu, 2016-03-03 at 14:49 -0800, Dan Williams wrote: > On Wed, Mar 2, 2016 at 2:50 PM, Toshi Kani wrote:  : > > diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c > > index fb53db1..d97b53f 100644 > > --- a/drivers/acpi/nfit.c > > +++ b/drivers/acpi/nfit.c > > @@ -1571,6

Re: Kernel docs: muddying the waters a bit

2016-03-03 Thread Keith Packard
Mauro Carvalho Chehab writes: > On my tests, Sphinix seemed too limited to format tables. Asciidoc > produced an output that worked better. Yes, asciidoc has much more flexibility in table formatting, including the ability to control text layout within cells and full

[PATCH 0/4] mm: Make the logging a bit more consistent

2016-03-03 Thread Joe Perches
Joe Perches (4): mm: Convert pr_warning to pr_warn mm: Coalesce split strings mm: Convert printk(KERN_ to pr_ mm: percpu: Use pr_fmt to prefix output mm/backing-dev.c| 4 +-- mm/bootmem.c| 7 ++--- mm/dmapool.c| 18 +--- mm/huge_memory.c| 3 +-

[PATCH 1/4] mm: Convert pr_warning to pr_warn

2016-03-03 Thread Joe Perches
There are a mixture of pr_warning and pr_warn uses in mm. Use pr_warn consistently. Miscellanea: o Coalesce formats o Realign arguments Signed-off-by: Joe Perches --- mm/hugetlb.c | 9 - mm/kmemleak.c | 14 +++--- mm/percpu.c | 15 +++ 3 files

[PATCH 3/4] mm: Convert printk(KERN_ to pr_

2016-03-03 Thread Joe Perches
Most of the mm subsystem uses pr_ so make it consistent. Miscellanea: o Realign arguments o Add missing newline to format o kmemleak-test.c has a "kmemleak: " prefix added to the "Kmemleak testing" logging message via pr_fmt Signed-off-by: Joe Perches --- mm/backing-dev.c

[PATCH 2/4] mm: Coalesce split strings

2016-03-03 Thread Joe Perches
Kernel style prefers a single string over split strings when the string is 'user-visible'. Miscellanea: o Add a missing newline o Realign arguments Signed-off-by: Joe Perches --- mm/dmapool.c| 10 -- mm/huge_memory.c| 3 +-- mm/kasan/report.c | 6

[PATCH 4/4] mm: percpu: Use pr_fmt to prefix output

2016-03-03 Thread Joe Perches
Use the normal mechanism to make the logging output consistently "percpu: " instead of a mix of "PERCPU: " and "percpu: " Signed-off-by: Joe Perches --- mm/percpu-km.c | 4 ++-- mm/percpu.c| 20 +++- 2 files changed, 13 insertions(+), 11 deletions(-) diff

Re: Linux 3.10.99

2016-03-03 Thread Greg KH
diff --git a/Makefile b/Makefile index dadd1edc6f84..f1e6491fd7d8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 10 -SUBLEVEL = 98 +SUBLEVEL = 99 EXTRAVERSION = NAME = TOSSUG Baby Fish diff --git a/arch/arc/kernel/unwind.c b/arch/arc/kernel/unwind.c index

Re: Linux 3.14.63

2016-03-03 Thread Greg KH
diff --git a/Makefile b/Makefile index b738f644c71e..0843ef4cc0a4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 14 -SUBLEVEL = 62 +SUBLEVEL = 63 EXTRAVERSION = NAME = Remembering Coco diff --git a/arch/arc/kernel/unwind.c b/arch/arc/kernel/unwind.c index

Linux 3.10.99

2016-03-03 Thread Greg KH
I'm announcing the release of the 3.10.99 kernel. All users of the 3.10 kernel series must upgrade. The updated 3.10.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.10.y and can be browsed at the normal kernel.org git web

Linux 3.14.63

2016-03-03 Thread Greg KH
I'm announcing the release of the 3.14.63 kernel. All users of the 3.14 kernel series must upgrade. The updated 3.14.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.14.y and can be browsed at the normal kernel.org git web

Linux 4.4.4

2016-03-03 Thread Greg KH
I'm announcing the release of the 4.4.4 kernel. All users of the 4.4 kernel series must upgrade. The updated 4.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.4.y and can be browsed at the normal kernel.org git web browser:

[RFC][PATCH] selftests/seccomp: add MIPS self-test support

2016-03-03 Thread Kees Cook
This adds self-test support on MIPS. (On at least Bionic, the siginfo headers require pid_t and clock_t to be defined first, so this meant moving the sys/types.h include to before siginfo.h.) Signed-off-by: Kees Cook --- I don't have hardware at the moment to test this.

[PATCH net 1/6] net: hns: bug fix about the overflow of mss

2016-03-03 Thread Daode Huang
When set MTU to the minimum value 68, there are increasing number of error packets occur, which is caused by the overflowed value of mss. This patch fix the bug. This patch is just for huawei internal review, if there is no comment for three days, I will send out to the mainline. thanks

[PATCH net 6/6] net: hns: bug fix of getting hilink status

2016-03-03 Thread Daode Huang
from Lisheng There is some difference in hilink status defination between v1 and v2 chips. for v1 chip, all ports connected to the same hilink share the same hilink status register bit. but for v2, all ports have separately hilink status register bit. And the register addr

Re: [PATCH 5/7] usb: misc: add driver for Intel drcfg controlled port mux

2016-03-03 Thread Greg Kroah-Hartman
On Fri, Mar 04, 2016 at 09:38:58AM +0800, Lu Baolu wrote: > > > On 03/04/2016 12:14 AM, Greg Kroah-Hartman wrote: > > On Thu, Mar 03, 2016 at 02:37:42PM +0800, Lu Baolu wrote: > >> Several Intel PCHs and SOCs have an internal mux that is used to > >> share one USB port between device controller

[PATCH 1/8] time: Add cycles to nanoseconds translation

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" The timekeeping code does not currently provide a way to translate externally provided clocksource cycles to system time. The cycle count is always provided by the result clocksource read() method internal to the timekeeping code. The

[PATCH 2/8] time: Add timekeeping snapshot code capturing system time and counter

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" In the current timekeeping code there isn't any interface to atomically capture the current relationship between the system counter and system time. ktime_get_snapshot() returns this triple (counter, monotonic raw, realtime) in the

[PATCH 3/8] time: Remove duplicated code in ktime_get_raw_and_real()

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" The code in ktime_get_snapshot() is a superset of the code in ktime_get_raw_and_real() code. Further, ktime_get_raw_and_real() is called only by the PPS code, pps_get_ts(). Consolidate the pps_get_ts() code into a single function calling

[PATCH 4/8] time: Add driver cross timestamp interface for higher precision time synchronization

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" ACKNOWLEDGMENT: cross timestamp code was developed by Thomas Gleixner . It has changed considerably and any mistakes are mine. The precision with which events on multiple networked systems can be synchronized using,

Re: [RFC PATCH] x86: Make sure verify_cpu has a good stack

2016-03-03 Thread Yinghai Lu
On Thu, Mar 3, 2016 at 4:28 AM, Borislav Petkov wrote: > From: Borislav Petkov > Date: Sun, 28 Feb 2016 21:35:44 +0100 > Subject: [PATCH -v2] x86/asm: Make sure verify_cpu() has a good stack > 04633df0c43d ("x86/cpu: Call verify_cpu() after having entered long mode

[PATCH] video: AMBA CLCD: Remove duplicated include in amba-clcd.c

2016-03-03 Thread Wang Hongcheng
The header file asm/sizes.h is unnecessary. And it can also be compiled under X86 arch after the removal. Signed-off-by: Wang Hongcheng --- drivers/video/fbdev/amba-clcd.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/video/fbdev/amba-clcd.c

Re: [PATCH 08/17] clk: Add PLX Technology OXNAS Standard Clocks

2016-03-03 Thread Stephen Boyd
On 03/03, Neil Armstrong wrote: > diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig > index eca8e01..b75ef5c 100644 > --- a/drivers/clk/Kconfig > +++ b/drivers/clk/Kconfig > @@ -192,6 +192,12 @@ config COMMON_CLK_PXA > ---help--- > Sypport for the Marvell PXA SoC. > > +config

Re: soft lockup when passing vvar address to write(2)

2016-03-03 Thread Andy Lutomirski
On Thu, Mar 3, 2016 at 2:58 PM, Rasmus Villemoes wrote: > Looking up the vvar mapping and dumping its contents sometimes results > in a soft lockup. On 4.5-rc6+ (master from earlier today) it seems to be > a little harder to trigger than on the 4.2something Ubuntu kernel

Re: [PATCH v14 2/6] Documentation, dt, numa: dt bindings for NUMA.

2016-03-03 Thread Rob Herring
On Thu, Mar 3, 2016 at 5:55 PM, David Daney wrote: > From: Ganapatrao Kulkarni > > Add DT bindings for numa mapping of memory, CPUs and IOs. > > Reviewed-by: Robert Richter > Signed-off-by: Ganapatrao Kulkarni

Re: [PATCH 7/7] mfd: intel_vuport: Add Intel virtual USB port MFD Driver

2016-03-03 Thread kbuild test robot
Hi Lu, [auto build test WARNING on usb/usb-testing] [also build test WARNING on v4.5-rc6 next-20160303] [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] url: https://github.com/0day-ci/linux/commits/Lu-Baolu/usb-add-support-for-Intel-dual

[PATCH] phy: Fix build error of missing devm_ioremap_resource on UM

2016-03-03 Thread Krzysztof Kozlowski
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed with: drivers/built-in.o: In function `omap_control_phy_probe': phy-omap-control.c:(.text+0x16db): undefined reference to `devm_ioremap_resource' drivers/built-in.o: In function

[PATCH] iio: adc: Fix build error of missing devm_ioremap_resource on UM

2016-03-03 Thread Krzysztof Kozlowski
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed with: drivers/built-in.o: In function `at91_adc_probe': at91-sama5d2_adc.c:(.text+0x48f548): undefined reference to `devm_ioremap_resource' Signed-off-by: Krzysztof Kozlowski

[PATCH] fpga: Fix build error of missing devm_ioremap_resource on UM

2016-03-03 Thread Krzysztof Kozlowski
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed with: drivers/built-in.o: In function `zynq_fpga_probe': zynq-fpga.c:(.text+0x4c4bf7): undefined reference to `devm_ioremap_resource' Signed-off-by: Krzysztof Kozlowski ---

[PATCH 6/8] x86/tsc: Always Running Timer (ART) correlated clocksource

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" On modern Intel systems TSC is derived from the new Always Running Timer (ART). ART can be captured simultaneous to the capture of audio and network device clocks, allowing a correlation between timebases to be constructed. Upon capture,

Re: [PATCH 5/7] usb: misc: add driver for Intel drcfg controlled port mux

2016-03-03 Thread Lu Baolu
On 03/04/2016 09:44 AM, Greg Kroah-Hartman wrote: > On Fri, Mar 04, 2016 at 09:38:58AM +0800, Lu Baolu wrote: >> >> On 03/04/2016 12:14 AM, Greg Kroah-Hartman wrote: >>> On Thu, Mar 03, 2016 at 02:37:42PM +0800, Lu Baolu wrote: Several Intel PCHs and SOCs have an internal mux that is used

[PATCH 7/8] ptp: Add PTP_SYS_OFFSET_PRECISE for driver crosstimestamping

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" Currently, network /system cross-timestamping is performed in the PTP_SYS_OFFSET ioctl. The PTP clock driver reads gettimeofday() and the gettime64() callback provided by the driver. The cross-timestamp is best effort where the latency

[PATCH 8/8] e1000e: Adds hardware supported cross timestamp on e1000e nic

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" Modern Intel systems supports cross timestamping of the network device clock and Always Running Timer (ART) in hardware. This allows the device time and system time to be precisely correlated. The timestamp pair is returned through

[PATCHv2 0/8][GIT PULLv2] time: Cross-timestamp infrastructure for 4.6

2016-03-03 Thread John Stultz
Hey Thomas, So again, here is Christopher's cross-timestamp infrastructure patchset which I wanted to send along for 4.6. (Including the minor tweaks you suggested). These apply against tip/timers/core. Let me know if you have any objections. thanks -john Cc: Prarit Bhargava

[PATCH 5/8] time: Add history to cross timestamp interface supporting slower devices

2016-03-03 Thread John Stultz
From: "Christopher S. Hall" Another representative use case of time sync and the correlated clocksource (in addition to PTP noted above) is PTP synchronized audio. In a streaming application, as an example, samples will be sent and/or received by multiple devices

Re: [PATCH v3 7/8] powerpc/ftrace: Add support for -mprofile-kernel ftrace ABI

2016-03-03 Thread Balbir Singh
On 03/03/16 15:26, Michael Ellerman wrote: > From: Torsten Duwe > > The gcc switch -mprofile-kernel defines a new ABI for calling _mcount() > very early in the function with minimal overhead. > > Although mprofile-kernel has been available since GCC 3.4, there were > bugs which

RE: [RFC qemu 2/4] virtio-balloon: Add a new feature to balloon device

2016-03-03 Thread Li, Liang Z
> Subject: Re: [RFC qemu 2/4] virtio-balloon: Add a new feature to balloon > device > > On Thu, Mar 03, 2016 at 06:44:26PM +0800, Liang Li wrote: > > Extend the virtio balloon device to support a new feature, this new > > feature can help to get guest's free pages information, which can be > >

Re: [PATCH 2/2] block: create ioctl to discard-or-zeroout a range of blocks

2016-03-03 Thread Thomas Schoebel-Theuer
On 03/03/2016 11:56 PM, Dave Chinner wrote: > That "new kind of write command" would enable delayed allocation > algorithms to continue to work at the filesystem level on block > devices that freespace management completely is offloaded to... > Cheers, Dave. This would advocate a uniform

[PATCH] ARM: mmci:Remove duplicate #include header file in mmci.c

2016-03-03 Thread Wang Hongcheng
The header file asm/sizes.h is unnecessary. And it can also be compiled under X86 arch after the removal. Signed-off-by: Wang Hongcheng --- drivers/mmc/host/mmci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c index

RE: [Qemu-devel] [RFC qemu 4/4] migration: filter out guest's free pages in ram bulk stage

2016-03-03 Thread Li, Liang Z
> On Thu, Mar 03, 2016 at 06:44:28PM +0800, Liang Li wrote: > > Get the free pages information through virtio and filter out the free > > pages in the ram bulk stage. This can significantly reduce the total > > live migration time as well as network traffic. > > > > Signed-off-by: Liang Li

Re: [PATCH] sparc64: Add support for Application Data Integrity (ADI)

2016-03-03 Thread Khalid Aziz
On 03/03/2016 03:26 PM, Julian Calaby wrote: Hi Khalid, On Fri, Mar 4, 2016 at 4:42 AM, Khalid Aziz wrote: On 03/02/2016 06:33 PM, Julian Calaby wrote: Hi Khalid, A couple of other comments: On Thu, Mar 3, 2016 at 5:54 AM, Khalid Aziz

Re: [PATCH 2/8] perf tools: Introduce perf_hpp__setup_hists_formats()

2016-03-03 Thread Namhyung Kim
Hi Jiri, On Thu, Mar 03, 2016 at 02:40:22PM +0100, Jiri Olsa wrote: > On Thu, Mar 03, 2016 at 01:12:02AM +0900, Namhyung Kim wrote: > > SNIP > > > +struct perf_hpp_fmt *perf_hpp_fmt__copy(struct perf_hpp_fmt *fmt); > > + > > int hist_entry__filter(struct hist_entry *he, int type, const void

Re: [RFC] Re: [PATCHSET 0/8] perf tools: Support multiple keys in a single hierarchy level (v1)

2016-03-03 Thread Namhyung Kim
Hi Arnaldo, On Thu, Mar 03, 2016 at 10:08:15AM -0300, Arnaldo Carvalho de Melo wrote: > Em Thu, Mar 03, 2016 at 08:16:36AM +0900, Namhyung Kim escreveu: > > On Wed, Mar 02, 2016 at 01:25:07PM -0300, Arnaldo Carvalho de Melo wrote: > > > Em Thu, Mar 03, 2016 at 01:12:00AM +0900, Namhyung Kim

Re: [PATCH 3/3] radix-tree: support locking of individual exception entries.

2016-03-03 Thread NeilBrown
On Fri, Mar 04 2016, Jan Kara wrote: > Hi Neil, > > On Sun 28-02-16 16:09:29, NeilBrown wrote: >> The least significant bit of an exception entry is used as a lock flag. >> A caller can: >> - create a locked entry by simply adding an entry with this flag set >> - lock an existing entry with

[PATCH v14 5/6] arm64, numa: Add NUMA support for arm64 platforms.

2016-03-03 Thread David Daney
From: Ganapatrao Kulkarni Attempt to get the memory and CPU NUMA node via of_numa. If that fails, default the dummy NUMA node and map all memory and CPUs to node 0. Tested-by: Shannon Zhao Reviewed-by: Robert Richter

[PATCH v14 2/6] Documentation, dt, numa: dt bindings for NUMA.

2016-03-03 Thread David Daney
From: Ganapatrao Kulkarni Add DT bindings for numa mapping of memory, CPUs and IOs. Reviewed-by: Robert Richter Signed-off-by: Ganapatrao Kulkarni Signed-off-by: David Daney ---

[PATCH v14 3/6] of, numa: Add NUMA of binding implementation.

2016-03-03 Thread David Daney
From: David Daney Add device tree parsing for NUMA topology using device "numa-node-id" property in distance-map and cpu nodes. This is a complete rewrite of a previous patch by: Ganapatrao Kulkarni Signed-off-by: David Daney

[PATCH v14 0/6] arm64, numa: Add numa support for arm64 platforms

2016-03-03 Thread David Daney
From: David Daney v14: - Revised patch to unflatten the device tree earlier. - Cleanups and added EXPORT_SYMBOL to of_numa.c as suggested by Rob Harring v13: - Added patch to unflatten the device tree earlier. - Rewrote

Re: [PATCH 4/8] Documentation: devicetree: Document Tronsmart vendor prefix

2016-03-03 Thread Rob Herring
On Tue, Mar 01, 2016 at 12:44:21AM +0100, Andreas Färber wrote: > Choose the obvious prefix, "tronsmart". > > Cc: Matthias Brugger > Signed-off-by: Andreas Färber > --- > Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + > 1 file changed, 1

[GIT PULL] KEYS: Miscellaneous bits for security/next

2016-03-03 Thread David Howells
next-20160303 for you to fetch changes up to 4e8ae72a75aae285ec5b93518b9680da198afd0d: X.509: Make algo identifiers text instead of enum (2016-03-03 21:49:27 +) Keyrings changes for

Re: [PATCH v13 3/6] of, numa: Add NUMA of binding implementation.

2016-03-03 Thread Rob Herring
On Thu, Mar 3, 2016 at 11:33 AM, David Daney wrote: > On 03/02/2016 07:34 PM, Rob Herring wrote: >> >> On Wed, Mar 2, 2016 at 4:55 PM, David Daney wrote: >>> >>> From: David Daney >>> >>> Add device tree parsing for NUMA

Re: [PATCH 2/2] block: create ioctl to discard-or-zeroout a range of blocks

2016-03-03 Thread Theodore Ts'o
On Fri, Mar 04, 2016 at 10:10:50AM +1100, Dave Chinner wrote: > You can tempt all you want, but it does not change the basic fact > that it is dangerous and compromises system security. As such, it > does not belong in upstream kernels. Especially in this day and age > where ensuring the

Re: [PATCH] tmpfs: shmem_fallocate must return ERESTARTSYS

2016-03-03 Thread Mike Kravetz
On 03/03/2016 04:30 PM, Maxim Patlasov wrote: > shmem_fallocate() is restartable, so it can return ERESTARTSYS if > signal_pending(). Although fallocate(2) manpage permits EINTR, > the more places use ERESTARTSYS the better. > > Signed-off-by: Maxim Patlasov > --- >

Re: [RFC PATCH 1/4] mmc: core: add cap-enhanced-strobe support

2016-03-03 Thread Shawn Lin
Hi Jaehoon, On 2016/3/3 20:08, Jaehoon Chung wrote: Hi Shawn, On 03/03/2016 11:36 AM, Shawn Lin wrote: This patch introduce cap-enhanced-strobe for platforms which want to enable enhanced strobe function from DT if the mmc host controller claims to support enhanced strobe. I don't know why

Re: [PATCH v3 5/5] ARM: dts: DRA7: Add dt nodes for PWMSS

2016-03-03 Thread Franklin S Cooper Jr.
Hi Rob, On 03/02/2016 12:26 PM, Rob Herring wrote: > On Thu, Feb 25, 2016 at 04:36:36PM -0600, Franklin S Cooper Jr wrote: >> From: Vignesh R >> >> Add PWMSS device tree nodes for DRA7 SoC family and add documentation >> for dt bindings. >> >> Signed-off-by: Vignesh R

Re: [PATCH 5/7] usb: misc: add driver for Intel drcfg controlled port mux

2016-03-03 Thread Lu Baolu
On 03/04/2016 12:14 AM, Greg Kroah-Hartman wrote: > On Thu, Mar 03, 2016 at 02:37:42PM +0800, Lu Baolu wrote: >> Several Intel PCHs and SOCs have an internal mux that is used to >> share one USB port between device controller and host controller. >> The mux is handled through the Dual Role

[PATCH] KVM: Remove redundant smp_mb() in the kvm_mmu_commit_zap_page()

2016-03-03 Thread Lan Tianyu
The following kvm_flush_remote_tlbs() will call smp_mb() inside and so remove smp_mb() here. Signed-off-by: Lan Tianyu --- arch/x86/kvm/mmu.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index a54ecd9..6315416 100644 ---

Re: [PATCH V2] dma: tegra: don't open code of_device_get_match_data()

2016-03-03 Thread Laxman Dewangan
On Thursday 03 March 2016 09:30 PM, Vinod Koul wrote: On Wed, Mar 02, 2016 at 07:59:26PM +0530, Laxman Dewangan wrote: Use of_device_get_match_data() for getting matched data instead of implementing this locally. Signed-off-by: Laxman Dewangan Acked-by: Thierry Reding

[drm:radeon_dp_link_train] *ERROR* clock recovery failed -bisected

2016-03-03 Thread Ken Moffat
On Thu, Mar 03, 2016 at 02:38:11AM +, Ken Moffat wrote: > One of my machines is an A10 Kaveri desktop, with a good old VGA > connection to the monitor. I've only just started trying to boot > any 4.5 kernel on it, but with 4.5.0-rc6 and now linus's tree from a > few hours ago

Re: [RFC][PATCH 0/7] System Calls for Memory Protection Keys

2016-03-03 Thread Dave Hansen
On 03/03/2016 12:05 AM, Michael Kerrisk (man-pages) wrote: >> > I have manpages written for some of these syscalls, and I will >> > submit a full set of manpages once we've reached some consensus >> > on what the interfaces should be. > Please don't do things in this order. Providing man pages up

Re: ext2/3 using ext4 module mkdir IO error on pmem DAX mount

2016-03-03 Thread Theodore Ts'o
On Thu, Mar 03, 2016 at 10:49:51PM +0530, lokesh jaliminche wrote: > Hi, >I have tested it locally I am also getting same error but not > consistently. I have put some debug logs for debugging, as per the logs > it seems that block_group is not getting initialized properly. I am > not sure

[PATCH] leds: Add Chrome OS keyboard backlight LEDs driver

2016-03-03 Thread Dmitry Torokhov
From: Simon Que This is a driver for ACPI-based keyboard backlight LEDs found on Chromebooks. The driver locates \\_SB.KBLT ACPI device and exports backlight as "chromeos::kbd_backlight" LED class device in sysfs. Signed-off-by: Simon Que Signed-off-by:

Re: [PATCH v10 09/12] arch/x86: enable task isolation functionality

2016-03-03 Thread Andy Lutomirski
On Thu, Mar 3, 2016 at 11:52 AM, Chris Metcalf wrote: > On 03/02/2016 07:36 PM, Andy Lutomirski wrote: >> >> On Mar 2, 2016 12:10 PM, "Chris Metcalf" wrote: >>> >>> In prepare_exit_to_usermode(), call task_isolation_ready() >>> when we are checking the

Re: [PATCH 2/3] perf/x86/pebs: add workaround for broken OVFL status on HSW

2016-03-03 Thread Stephane Eranian
On Thu, Mar 3, 2016 at 1:43 PM, Andi Kleen wrote: > > > + /* > > + * There are cases where, even though, the PEBS ovfl bit is > > set in > > + * GLOBAL_OVF_STATUS, the PEBS events may also have their > > overflow bits > > +

[PATCH v14 6/6] arm64, mm, numa: Add NUMA balancing support for arm64.

2016-03-03 Thread David Daney
From: Ganapatrao Kulkarni Enable NUMA balancing for arm64 platforms. Add pte, pmd protnone helpers for use by automatic NUMA balancing. Reviewed-by: Robert Richter Signed-off-by: Ganapatrao Kulkarni

[PATCH v14 4/6] arm64: Move unflatten_device_tree() call earlier.

2016-03-03 Thread David Daney
From: David Daney In order to extract NUMA information from the device tree, we need to have the tree in its unflattened form. Split paging_init() into two pieces. The first piece maps memory so that unflatten_device_tree(), can allocate memory. The second piece

Re: [PATCH 3/4] leds: Add driver for the ISSI IS31FL32xx family of LED controllers

2016-03-03 Thread David Rivshin (Allworx)
On Thu, 03 Mar 2016 15:51:32 +0100 Jacek Anaszewski wrote: > Hi David, > > Thanks for the update. Two remarks in the code. > > On 03/03/2016 04:01 AM, David Rivshin (Allworx) wrote: > > From: David Rivshin > > > > The IS31FL32xx family of LED

[PATCH v2] media: platform: Add missing MFD_SYSCON dependency on HAS_IOMEM

2016-03-03 Thread Krzysztof Kozlowski
The MFD_SYSCON depends on HAS_IOMEM so when selecting it avoid unmet direct dependencies. Signed-off-by: Krzysztof Kozlowski --- Changes since v1: 1. Fix comments from Arnd: VIDEO_OMAP3 does not require it, however VIDEO_S5P_FIMC still needs it. ---

[PATCH v2] nvmem: Fix build error of missing devm_ioremap_resource on UM

2016-03-03 Thread Krzysztof Kozlowski
The devres.o gets linked if HAS_IOMEM is present so on ARCH=um allyesconfig (COMPILE_TEST) failed on many files with: drivers/built-in.o: In function `mtk_thermal_probe': mtk_thermal.c:(.text+0x394618): undefined reference to `devm_ioremap_resource' The users of devm_ioremap_resource() which are

Re: [GIT PULL] KEYS: Miscellaneous bits for security/next

2016-03-03 Thread James Morris
On Fri, 4 Mar 2016, David Howells wrote: > Hi James, > > Could you pull this into security/next, please? > Done. -- James Morris

Re: [PATCH 5/7] usb: misc: add driver for Intel drcfg controlled port mux

2016-03-03 Thread Lu Baolu
On 03/04/2016 12:12 AM, Greg Kroah-Hartman wrote: > On Thu, Mar 03, 2016 at 02:37:42PM +0800, Lu Baolu wrote: >> Several Intel PCHs and SOCs have an internal mux that is used to >> share one USB port between device controller and host controller. >> The mux is handled through the Dual Role

[PATCH] media: fix null pointer dereference in v4l_vb2q_enable_media_source()

2016-03-03 Thread Shuah Khan
Fix the null pointer dereference in v4l_vb2q_enable_media_source(). DVB only drivers don't have valid struct v4l2_fh pointer. [ 548.443272] BUG: unable to handle kernel NULL pointer dereference at 0010 [ 548.452036] IP: [] v4l_vb2q_enable_media_source+0x9/0x50 [videodev] [

RE: [RFC qemu 2/4] virtio-balloon: Add a new feature to balloon device

2016-03-03 Thread Li, Liang Z
> On Thu, 3 Mar 2016 18:44:26 +0800 > Liang Li wrote: > > > Extend the virtio balloon device to support a new feature, this new > > feature can help to get guest's free pages information, which can be > > used for live migration optimzation. > > Do you have a spec for

Re: [PATCH v4 5/8] kbuild: add fine grained build dependencies for exported symbols

2016-03-03 Thread Nicolas Pitre
On Thu, 3 Mar 2016, Michal Marek wrote: > Dne 29.2.2016 v 04:48 Nicolas Pitre napsal(a): > > +# Filter out exported kernel symbol names advertised as warning pragmas > > +# by the preprocessor and write them to $(1). We must consider continuation > > +# lines as well: they start with a blank, or

Re: [PATCH v14 3/6] of, numa: Add NUMA of binding implementation.

2016-03-03 Thread Rob Herring
On Thu, Mar 3, 2016 at 5:55 PM, David Daney wrote: > From: David Daney > > Add device tree parsing for NUMA topology using device > "numa-node-id" property in distance-map and cpu nodes. > > This is a complete rewrite of a previous patch by: >

Re: [PATCH] of: add 'const' for of_property_*_string*() parameter '*np'

2016-03-03 Thread Rob Herring
On Thu, Mar 3, 2016 at 4:16 PM, David Rivshin (Allworx) wrote: > On Thu, 3 Mar 2016 07:52:51 -0600 > Rob Herring wrote: > >> On Wed, Mar 2, 2016 at 3:35 PM, David Rivshin (Allworx) >> wrote: >> > From: David Rivshin

Re: [PATCH] Bluetooth: btusb: Add a new AR3012 ID 13d3:3472

2016-03-03 Thread Marcel Holtmann
Hi Dmitry, > T: Bus=01 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#= 4 Spd=12 MxCh= 0 > D: Ver= 1.10 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs= 1 > P: Vendor=13d3 ProdID=3472 Rev=00.01 > C: #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA > I: If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb > I: If#= 1

Re: [PATCH 1/4 v2] drm: Add support of ARC PGU display controller

2016-03-03 Thread kbuild test robot
Hi Alexey, [auto build test ERROR on drm/drm-next] [also build test ERROR on v4.5-rc6 next-20160303] [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] url: https://github.com/0day-ci/linux/commits/Alexey-Brodkin/drm-Add-support-of-ARC-PGU

Re: [PATCH 6/6] cpufreq: schedutil: New governor based on scheduler utilization data

2016-03-03 Thread Rafael J. Wysocki
On Thu, Mar 3, 2016 at 5:47 PM, Peter Zijlstra wrote: > On Thu, Mar 03, 2016 at 05:37:35PM +0100, Peter Zijlstra wrote: >> On Thu, Mar 03, 2016 at 05:24:32PM +0100, Rafael J. Wysocki wrote: >> > >> f = a * x + b > >> > If not, then I think it's reasonable to map the middle

Re: [PATCH 3/7] usb: misc: add common code for Intel dual role port mux

2016-03-03 Thread Lu Baolu
On 03/04/2016 12:15 AM, Greg Kroah-Hartman wrote: > On Thu, Mar 03, 2016 at 02:37:40PM +0800, Lu Baolu wrote: >> +#if IS_ENABLED(CONFIG_USB_MUX) >> +extern int usb_mux_register(struct usb_mux_dev *mux); >> +extern int usb_mux_unregister(struct device *dev); >> +extern struct usb_mux_dev

Re: [PATCH 5/6] cpufreq: Support for fast frequency switching

2016-03-03 Thread Rafael J. Wysocki
On Thu, Mar 3, 2016 at 7:00 AM, Viresh Kumar wrote: > On 02-03-16, 03:12, Rafael J. Wysocki wrote: >> Index: linux-pm/drivers/cpufreq/cpufreq.c >> === >> --- linux-pm.orig/drivers/cpufreq/cpufreq.c >> +++

Re: [PATCH] ASoC: pcm3168a: remove unused variable

2016-03-03 Thread Mark Brown
On Thu, Mar 03, 2016 at 07:07:49PM +0530, Sudip Mukherjee wrote: > Its upto you now. If you dont want to accept then I will add an extra > From: in the commit. But since that will not be a part of my scripts so > there will be chances of error. If you are worried about missing signoff, git

[PATCH] tmpfs: shmem_fallocate must return ERESTARTSYS

2016-03-03 Thread Maxim Patlasov
shmem_fallocate() is restartable, so it can return ERESTARTSYS if signal_pending(). Although fallocate(2) manpage permits EINTR, the more places use ERESTARTSYS the better. Signed-off-by: Maxim Patlasov --- mm/shmem.c |8 +--- 1 file changed, 5 insertions(+), 3

[PATCH net 2/6] net: hns: fixes the hw interrupt bug in using napi

2016-03-03 Thread Daode Huang
In V1 chip, common_poll should check and clean fbd pkts, because it can not pend irq to clean them if there is no new pkt comes in. But V2 chip hw fixes this bug, and will pend irq itself to do this. So, for V2 chip, we set ring_data->fini_process to NULL. Signed-off-by: Daode Huang

[PATCH net 0/6]net: hns: hns driver updates

2016-03-03 Thread Daode Huang
Hi David, This patch series are hisilicon network driver bug fix. Best Regards Daode. Daode Huang (5): net: hns: bug fix about the overflow of mss net: hns: fixes the hw interrupt bug in using napi net: hns: fixed portid bug in sending manage pkt net: hns: adds uc match for debug port

[PATCH net 3/6] net: hns: fixed portid bug in sending manage pkt

2016-03-03 Thread Daode Huang
In V2 chip, when sending mamagement packets, the driver should config the port id to BD descs. Signed-off-by: Daode Huang Signed-off-by: Lisheng --- drivers/net/ethernet/hisilicon/hns/hnae.h | 3 +++

[PATCH net 4/6] net: hns: adds uc match for debug port

2016-03-03 Thread Daode Huang
This patch adds uc match for debug port by: 1)Enables uc match of debug port when initializing gmac 2)Enables uc match of mac address register2 Signed-off-by: Daode Huang Signed-off-by: lipeng ---

[PATCH net 5/6] net: hns: fixed service-ges setting MAC-addr bug

2016-03-03 Thread Daode Huang
From: Lisheng Service gmacs can not set mac add, this patch will fix the bug. Signed-off-by: Daode Huang Signed-off-by: Lisheng --- drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c | 19 +-- 1 file

Re: [PATCH net 0/6]net: hns: hns driver updates

2016-03-03 Thread Daode Huang
sorry. please ignore this mail, i will send out it again. On 2016/3/4 9:09, Daode Huang wrote: Hi David, This patch series are hisilicon network driver bug fix. Best Regards Daode. Daode Huang (5): net: hns: bug fix about the overflow of mss net: hns: fixes the hw interrupt bug in using

Re: [drm:radeon_dp_link_train] *ERROR* clock recovery failed -bisected

2016-03-03 Thread Ken Moffat
On Fri, Mar 04, 2016 at 12:44:01AM +, Deucher, Alexander wrote: > > The attached radeon patch should fix it. I accidently dropped the special > handling for NUTMEG DP to VGA bridge chips. > > > This mobo does not have a DP connector. > > > > The VGA port uses a DP to VGA bridge chip. >

  1   2   3   4   5   6   7   8   9   10   >