Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Larry Finger
On 05/24/2016 02:25 PM, Matthew McClintock wrote: On May 24, 2016, at 2:16 PM, Larry Finger wrote: On 05/24/2016 02:13 PM, Matthew McClintock wrote: I’m seeing this too, same commit if you want another person to test/reproduce. If you do a pull today, does that

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Larry Finger
On 05/24/2016 02:25 PM, Matthew McClintock wrote: On May 24, 2016, at 2:16 PM, Larry Finger wrote: On 05/24/2016 02:13 PM, Matthew McClintock wrote: I’m seeing this too, same commit if you want another person to test/reproduce. If you do a pull today, does that fix your problem? Hmm, no.

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Andi Kleen
> It looks like it synths 2 samples for each return (one "branches" and > one "return"), which I would expect would mess up the thread_stack pairing > calls and returns. Did you intend to have 2 samples? No it should be only one. I'll check. -Andi -- a...@linux.intel.com -- Speaking for

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Andi Kleen
> It looks like it synths 2 samples for each return (one "branches" and > one "return"), which I would expect would mess up the thread_stack pairing > calls and returns. Did you intend to have 2 samples? No it should be only one. I'll check. -Andi -- a...@linux.intel.com -- Speaking for

Re: [RFC PATCHv2] usb: USB Type-C Connector Class

2016-05-24 Thread Guenter Roeck
On Thu, May 19, 2016 at 03:44:54PM +0300, Heikki Krogerus wrote: > The purpose of this class is to provide unified interface for user > space to get the status and basic information about USB Type-C > Connectors in the system, control data role swapping, and when USB PD > is available, also power

Re: [RFC PATCHv2] usb: USB Type-C Connector Class

2016-05-24 Thread Guenter Roeck
On Thu, May 19, 2016 at 03:44:54PM +0300, Heikki Krogerus wrote: > The purpose of this class is to provide unified interface for user > space to get the status and basic information about USB Type-C > Connectors in the system, control data role swapping, and when USB PD > is available, also power

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
On May 24, 2016, at 2:16 PM, Larry Finger wrote: > > On 05/24/2016 02:13 PM, Matthew McClintock wrote: >> I’m seeing this too, same commit if you want another person to >> test/reproduce. > > If you do a pull today, does that fix your problem? Hmm, no. Which commit

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
On May 24, 2016, at 2:16 PM, Larry Finger wrote: > > On 05/24/2016 02:13 PM, Matthew McClintock wrote: >> I’m seeing this too, same commit if you want another person to >> test/reproduce. > > If you do a pull today, does that fix your problem? Hmm, no. Which commit am I looking for? I’m on

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Adrian Hunter
On 24/05/2016 10:05 p.m., Andi Kleen wrote: What about beautifying the sample flags i.e. instead of displaying the letters interpret them into something more human readable e.g. Looks like a good idea, but can't this be done on top of what he sent? Yes it both makes sense together. OK I

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Adrian Hunter
On 24/05/2016 10:05 p.m., Andi Kleen wrote: What about beautifying the sample flags i.e. instead of displaying the letters interpret them into something more human readable e.g. Looks like a good idea, but can't this be done on top of what he sent? Yes it both makes sense together. OK I

Re: [PATCH v3] sched/cputime: add steal time support to full dynticks CPU time accounting

2016-05-24 Thread Rik van Riel
On Wed, 2016-05-18 at 20:27 +0800, Wanpeng Li wrote: > From: Wanpeng Li > > This patch adds steal guest time support to full dynticks CPU  > time accounting. After 'commit ff9a9b4c4334 ("sched, time: Switch  > VIRT_CPU_ACCOUNTING_GEN to jiffy granularity")', time is jiffy 

Re: [PATCH v3] sched/cputime: add steal time support to full dynticks CPU time accounting

2016-05-24 Thread Rik van Riel
On Wed, 2016-05-18 at 20:27 +0800, Wanpeng Li wrote: > From: Wanpeng Li > > This patch adds steal guest time support to full dynticks CPU  > time accounting. After 'commit ff9a9b4c4334 ("sched, time: Switch  > VIRT_CPU_ACCOUNTING_GEN to jiffy granularity")', time is jiffy  > based sampling even

[PATCH 7/7] iio: adc: ad799x: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad799x.c | 24 +--- 1 file changed, 9

[PATCH 7/7] iio: adc: ad799x: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad799x.c | 24 +--- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git

[PATCH 6/7] iio: adc: ad7923: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7923.c | 11 +-- 1 file changed, 5 insertions(+),

[PATCH 6/7] iio: adc: ad7923: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7923.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git

[PATCH 5/7] iio: adc: ad7887: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7887.c | 11 +-- 1 file changed, 5 insertions(+),

[PATCH 5/7] iio: adc: ad7887: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7887.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git

[PATCH 4/7] iio: adc: ad7476: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7476.c | 11 +-- 1 file changed, 5 insertions(+),

[PATCH 4/7] iio: adc: ad7476: use iio helper function to guarantee direct mode

2016-05-24 Thread Alison Schofield
Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7476.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git

[PATCH 2/7] iio: adc: ad7791: claim direct mode when writing frequency

2016-05-24 Thread Alison Schofield
Driver was checking for direct mode and trying to lock it, but left a gap where mode could change before the desired operation. Use iio_device_claim_direct_mode() to guarantee device stays in direct mode. Signed-off-by: Alison Schofield Cc: Daniel Baluta

[PATCH 3/7] iio: adc: ad7793: claim direct mode when writing frequency

2016-05-24 Thread Alison Schofield
Driver was checking for direct mode and trying to lock it, but left a gap where mode could change before the desired operation. Use iio_device_claim_direct_mode() to guarantee device stays in direct mode. Signed-off-by: Alison Schofield Cc: Daniel Baluta

[PATCH 2/7] iio: adc: ad7791: claim direct mode when writing frequency

2016-05-24 Thread Alison Schofield
Driver was checking for direct mode and trying to lock it, but left a gap where mode could change before the desired operation. Use iio_device_claim_direct_mode() to guarantee device stays in direct mode. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7791.c | 15

[PATCH 3/7] iio: adc: ad7793: claim direct mode when writing frequency

2016-05-24 Thread Alison Schofield
Driver was checking for direct mode and trying to lock it, but left a gap where mode could change before the desired operation. Use iio_device_claim_direct_mode() to guarantee device stays in direct mode. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7793.c | 13

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Larry Finger
On 05/24/2016 02:13 PM, Matthew McClintock wrote: I’m seeing this too, same commit if you want another person to test/reproduce. If you do a pull today, does that fix your problem? Larry

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Larry Finger
On 05/24/2016 02:13 PM, Matthew McClintock wrote: I’m seeing this too, same commit if you want another person to test/reproduce. If you do a pull today, does that fix your problem? Larry

[PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor read

2016-05-24 Thread Alison Schofield
Driver was checking for direct mode but not locking it down. Use iio_device_claim_direct_mode() to guarantee device stays in direct mode. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7266.c | 7 +++ 1 file changed, 3

[PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor read

2016-05-24 Thread Alison Schofield
Driver was checking for direct mode but not locking it down. Use iio_device_claim_direct_mode() to guarantee device stays in direct mode. Signed-off-by: Alison Schofield Cc: Daniel Baluta --- drivers/iio/adc/ad7266.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git

[PATCH 0/7] iio: adc: clean up claims on direct mode in ad7* drivers

2016-05-24 Thread Alison Schofield
This set looks at the ad7* drivers and migrates them to use the iio helper functions iio_device_claim|release_direct_mode(). The first three (7266,7791,7793) were not already holding a lock on direct mode, so this will be a change in behavior for those drivers. The last four

[PATCH 0/7] iio: adc: clean up claims on direct mode in ad7* drivers

2016-05-24 Thread Alison Schofield
This set looks at the ad7* drivers and migrates them to use the iio helper functions iio_device_claim|release_direct_mode(). The first three (7266,7791,7793) were not already holding a lock on direct mode, so this will be a change in behavior for those drivers. The last four

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
I’m seeing this too, same commit if you want another person to test/reproduce. -M > On May 24, 2016, at 11:10 AM, Larry Finger wrote: > > On 05/23/2016 07:18 PM, Al Viro wrote: >> On Mon, May 23, 2016 at 04:30:43PM -0500, Larry Finger wrote: >>> The mainline kernels

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
I’m seeing this too, same commit if you want another person to test/reproduce. -M > On May 24, 2016, at 11:10 AM, Larry Finger wrote: > > On 05/23/2016 07:18 PM, Al Viro wrote: >> On Mon, May 23, 2016 at 04:30:43PM -0500, Larry Finger wrote: >>> The mainline kernels past 4.6.0 fail hang when

Re: [PATCH] arm64: defconfig: Enable cros-ec and battery driver

2016-05-24 Thread Rhyland Klein
On 5/24/2016 10:09 AM, Jon Hunter wrote: > Hi Rhyland, > > On 03/05/16 16:45, Rhyland Klein wrote: >> Enable the ChromeOS Embedded Controller, its I2C tunnel driver, and >> the BA27XXX battery driver. These are all used on the Tegra210 Smaug >> platform. >> >> Signed-off-by: Rhyland Klein

Re: [PATCH] arm64: defconfig: Enable cros-ec and battery driver

2016-05-24 Thread Rhyland Klein
On 5/24/2016 10:09 AM, Jon Hunter wrote: > Hi Rhyland, > > On 03/05/16 16:45, Rhyland Klein wrote: >> Enable the ChromeOS Embedded Controller, its I2C tunnel driver, and >> the BA27XXX battery driver. These are all used on the Tegra210 Smaug >> platform. >> >> Signed-off-by: Rhyland Klein > > I

Re: [PATCH v5] platform:x86: Add PMC Driver for Intel Core SoC

2016-05-24 Thread Andy Shevchenko
On Tue, May 24, 2016 at 9:54 PM, Andy Shevchenko wrote: > On Tue, May 24, 2016 at 5:25 PM, Rajneesh Bhardwaj > wrote: >> +static int pmc_core_dev_state_show(struct seq_file *s, void *unused) >> +{ >> + struct pmc_dev *pmcdev =

Re: [PATCH v5] platform:x86: Add PMC Driver for Intel Core SoC

2016-05-24 Thread Andy Shevchenko
On Tue, May 24, 2016 at 9:54 PM, Andy Shevchenko wrote: > On Tue, May 24, 2016 at 5:25 PM, Rajneesh Bhardwaj > wrote: >> +static int pmc_core_dev_state_show(struct seq_file *s, void *unused) >> +{ >> + struct pmc_dev *pmcdev = s->private; >> + u32 counter_val; >> + >> +

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Andi Kleen
> > What about beautifying the sample flags i.e. instead of displaying the > > letters interpret them into something more human readable e.g. > > Looks like a good idea, but can't this be done on top of what he sent? Yes it both makes sense together. -Andi

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Andi Kleen
> > What about beautifying the sample flags i.e. instead of displaying the > > letters interpret them into something more human readable e.g. > > Looks like a good idea, but can't this be done on top of what he sent? Yes it both makes sense together. -Andi

Re: bpf: use-after-free in array_map_alloc

2016-05-24 Thread Tejun Heo
Hello, Alexei, can you please verify this patch? Map extension got rolled into balance work so that there's no sync issues between the two async operations. Thanks. Index: work/mm/percpu.c === --- work.orig/mm/percpu.c +++

Re: bpf: use-after-free in array_map_alloc

2016-05-24 Thread Tejun Heo
Hello, Alexei, can you please verify this patch? Map extension got rolled into balance work so that there's no sync issues between the two async operations. Thanks. Index: work/mm/percpu.c === --- work.orig/mm/percpu.c +++

Re: [PATCH] devicetree - document using aliases to set spi bus number.

2016-05-24 Thread Christer Weinigel
On 05/24/2016 08:32 PM, Mark Brown wrote: > On Tue, May 24, 2016 at 08:03:48PM +0200, Christer Weinigel wrote: >> On 05/24/2016 07:20 PM, Mark Brown wrote: > >>> I'm not sure this is something we want to support at all, I >>> can't immediately see anything that does this deliberately in >>> the

Re: [PATCH] devicetree - document using aliases to set spi bus number.

2016-05-24 Thread Christer Weinigel
On 05/24/2016 08:32 PM, Mark Brown wrote: > On Tue, May 24, 2016 at 08:03:48PM +0200, Christer Weinigel wrote: >> On 05/24/2016 07:20 PM, Mark Brown wrote: > >>> I'm not sure this is something we want to support at all, I >>> can't immediately see anything that does this deliberately in >>> the

Re: [PATCH V7 00/11] Support for generic ACPI based PCI host controller

2016-05-24 Thread Bjorn Helgaas
On Tue, May 24, 2016 at 06:24:23PM +0100, Lorenzo Pieralisi wrote: > Hi Bjorn, > > On Mon, May 23, 2016 at 06:39:18PM -0500, Bjorn Helgaas wrote: > > [...] > > > On Mon, May 23, 2016 at 03:16:01PM +, Gabriele Paoloni wrote: > > I don't think of ECAM support itself as a "driver". It's just

Re: [PATCH V7 00/11] Support for generic ACPI based PCI host controller

2016-05-24 Thread Bjorn Helgaas
On Tue, May 24, 2016 at 06:24:23PM +0100, Lorenzo Pieralisi wrote: > Hi Bjorn, > > On Mon, May 23, 2016 at 06:39:18PM -0500, Bjorn Helgaas wrote: > > [...] > > > On Mon, May 23, 2016 at 03:16:01PM +, Gabriele Paoloni wrote: > > I don't think of ECAM support itself as a "driver". It's just

Re: [PATCH] x86/traps: Don't for in_interrupt() to return true in IST handlers

2016-05-24 Thread Andy Lutomirski
On Tue, May 24, 2016 at 10:09 AM, Peter Zijlstra wrote: > On Tue, May 24, 2016 at 08:43:57AM -0700, Andy Lutomirski wrote: >> > So this has implications for code like >> > kernel/events/internal.h:get_recursion_context() and >> > kernel/trace/trace.c:get_trace_buf(). >> > >>

Re: [PATCH] x86/traps: Don't for in_interrupt() to return true in IST handlers

2016-05-24 Thread Andy Lutomirski
On Tue, May 24, 2016 at 10:09 AM, Peter Zijlstra wrote: > On Tue, May 24, 2016 at 08:43:57AM -0700, Andy Lutomirski wrote: >> > So this has implications for code like >> > kernel/events/internal.h:get_recursion_context() and >> > kernel/trace/trace.c:get_trace_buf(). >> > >> > Which use a

Re: [PATCH v5] platform:x86: Add PMC Driver for Intel Core SoC

2016-05-24 Thread Andy Shevchenko
On Tue, May 24, 2016 at 5:25 PM, Rajneesh Bhardwaj wrote: Thanks for an update! By the way, please keep me in the Cc list with my andriy.shevche...@linux.intel.com address. Additionally to what I said in the previous mail for v4. > This patch adds the Power

Re: [PATCH v5] platform:x86: Add PMC Driver for Intel Core SoC

2016-05-24 Thread Andy Shevchenko
On Tue, May 24, 2016 at 5:25 PM, Rajneesh Bhardwaj wrote: Thanks for an update! By the way, please keep me in the Cc list with my andriy.shevche...@linux.intel.com address. Additionally to what I said in the previous mail for v4. > This patch adds the Power Management Controller driver as a

Re: [PATCH v4 3/7] perf tools: Enable overwrite settings

2016-05-24 Thread Arnaldo Carvalho de Melo
Em Tue, May 24, 2016 at 03:40:30PM -0300, Arnaldo Carvalho de Melo escreveu: > Em Tue, May 24, 2016 at 02:29:00AM +, Wang Nan escreveu: > > This patch allows following config terms and option: > > > > Globally setting events to overwrite; > > > > # perf record --overwrite ... > > > > Set

Re: [PATCH v4 3/7] perf tools: Enable overwrite settings

2016-05-24 Thread Arnaldo Carvalho de Melo
Em Tue, May 24, 2016 at 03:40:30PM -0300, Arnaldo Carvalho de Melo escreveu: > Em Tue, May 24, 2016 at 02:29:00AM +, Wang Nan escreveu: > > This patch allows following config terms and option: > > > > Globally setting events to overwrite; > > > > # perf record --overwrite ... > > > > Set

[PATCH v3 1/2] mm, kasan: improve double-free detection

2016-05-24 Thread Kuthonuzo Luruo
Currently, KASAN may fail to detect concurrent deallocations of the same object due to a race in kasan_slab_free(). This patch makes double-free detection more reliable by serializing access to KASAN object metadata. New functions kasan_meta_lock() and kasan_meta_unlock() are provided to

[PATCH v3 1/2] mm, kasan: improve double-free detection

2016-05-24 Thread Kuthonuzo Luruo
Currently, KASAN may fail to detect concurrent deallocations of the same object due to a race in kasan_slab_free(). This patch makes double-free detection more reliable by serializing access to KASAN object metadata. New functions kasan_meta_lock() and kasan_meta_unlock() are provided to

Re: [PATCH v4 3/7] perf tools: Enable overwrite settings

2016-05-24 Thread Arnaldo Carvalho de Melo
Em Tue, May 24, 2016 at 02:29:00AM +, Wang Nan escreveu: > This patch allows following config terms and option: > > Globally setting events to overwrite; > > # perf record --overwrite ... > > Set specific events to be overwrite or no-overwrite. > > # perf record --event cycles/overwrite/

[PATCH v3 2/2] kasan: add double-free tests

2016-05-24 Thread Kuthonuzo Luruo
This patch adds new tests for KASAN double-free error detection when the same slab object is concurrently deallocated. Signed-off-by: Kuthonuzo Luruo --- Changes in v3: - concurrent double-free test simplified to use on_each_cpu_mask() instead of custom threads. -

Re: [PATCH v4 3/7] perf tools: Enable overwrite settings

2016-05-24 Thread Arnaldo Carvalho de Melo
Em Tue, May 24, 2016 at 02:29:00AM +, Wang Nan escreveu: > This patch allows following config terms and option: > > Globally setting events to overwrite; > > # perf record --overwrite ... > > Set specific events to be overwrite or no-overwrite. > > # perf record --event cycles/overwrite/

[PATCH v3 2/2] kasan: add double-free tests

2016-05-24 Thread Kuthonuzo Luruo
This patch adds new tests for KASAN double-free error detection when the same slab object is concurrently deallocated. Signed-off-by: Kuthonuzo Luruo --- Changes in v3: - concurrent double-free test simplified to use on_each_cpu_mask() instead of custom threads. - reduced #threads and removed

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Larry Finger
On 05/24/2016 11:28 AM, Al Viro wrote: On Tue, May 24, 2016 at 11:10:09AM -0500, Larry Finger wrote: For now, the following one-line hack allows my system to boot: diff --git a/fs/read_write.c b/fs/read_write.c index 933b53a..d5d64d9 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Larry Finger
On 05/24/2016 11:28 AM, Al Viro wrote: On Tue, May 24, 2016 at 11:10:09AM -0500, Larry Finger wrote: For now, the following one-line hack allows my system to boot: diff --git a/fs/read_write.c b/fs/read_write.c index 933b53a..d5d64d9 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@

Re: can't boot with reiserfs on linux-4.6.0+

2016-05-24 Thread Al Viro
On Tue, May 24, 2016 at 04:59:02PM +0100, Al Viro wrote: > Umm... Any chance of getting the function names to go with the addresses? > I'll try to reproduce it here, but the things would be easier with that > information... See if this fixes your reproducer. diff --git a/fs/xattr.c

Re: can't boot with reiserfs on linux-4.6.0+

2016-05-24 Thread Al Viro
On Tue, May 24, 2016 at 04:59:02PM +0100, Al Viro wrote: > Umm... Any chance of getting the function names to go with the addresses? > I'll try to reproduce it here, but the things would be easier with that > information... See if this fixes your reproducer. diff --git a/fs/xattr.c

[PATCH v3 0/2] KASAN double-free detection

2016-05-24 Thread Kuthonuzo Luruo
on linux-next 'next-20160524'. Thanks, Kuthonuzo Kuthonuzo Luruo (2): mm, kasan: improve double-free detection kasan: add double-free tests include/linux/kasan.h |7 +++- lib/test_kasan.c | 47 ++ mm/kasan/kasan.c | 88

[PATCH v3 0/2] KASAN double-free detection

2016-05-24 Thread Kuthonuzo Luruo
on linux-next 'next-20160524'. Thanks, Kuthonuzo Kuthonuzo Luruo (2): mm, kasan: improve double-free detection kasan: add double-free tests include/linux/kasan.h |7 +++- lib/test_kasan.c | 47 ++ mm/kasan/kasan.c | 88

Re: [PATCH] devicetree - document using aliases to set spi bus number.

2016-05-24 Thread Mark Brown
On Tue, May 24, 2016 at 08:03:48PM +0200, Christer Weinigel wrote: > On 05/24/2016 07:20 PM, Mark Brown wrote: > > I'm not sure this is something we want to support at all, I can't > > immediately see anything that does this deliberately in the SPI > > code and obviously the "bus number" is

Re: [PATCH] devicetree - document using aliases to set spi bus number.

2016-05-24 Thread Mark Brown
On Tue, May 24, 2016 at 08:03:48PM +0200, Christer Weinigel wrote: > On 05/24/2016 07:20 PM, Mark Brown wrote: > > I'm not sure this is something we want to support at all, I can't > > immediately see anything that does this deliberately in the SPI > > code and obviously the "bus number" is

Re: [PATCH 4.2.y-ckt 52/53] soreuseport: fix ordering for mixed v4/v6 sockets

2016-05-24 Thread Craig Gallek
On Tue, May 24, 2016 at 1:55 PM, Kamal Mostafa wrote: > 4.2.8-ckt11 -stable review patch. If anyone has any objections, please let > me know. I don't believe the bug that this patch fixes was present in the 4.2 kernel. That issue first appeared in 4.5 and was resolved

Re: [PATCH 4.2.y-ckt 52/53] soreuseport: fix ordering for mixed v4/v6 sockets

2016-05-24 Thread Craig Gallek
On Tue, May 24, 2016 at 1:55 PM, Kamal Mostafa wrote: > 4.2.8-ckt11 -stable review patch. If anyone has any objections, please let > me know. I don't believe the bug that this patch fixes was present in the 4.2 kernel. That issue first appeared in 4.5 and was resolved during the 4.6 release

Re: [PATCH v4] platform:x86: Add PMC Driver for Intel Core SOC

2016-05-24 Thread Andy Shevchenko
On Tue, May 17, 2016 at 1:59 AM, Darren Hart wrote: > On Mon, May 16, 2016 at 03:45:50PM +0530, Rajneesh Bhardwaj wrote: >> On Thu, May 12, 2016 at 06:02:45PM +0300, Andy Shevchenko wrote: >> > On Thu, May 12, 2016 at 4:50 PM, Rajneesh Bhardwaj >> >

Re: [PATCH v4] platform:x86: Add PMC Driver for Intel Core SOC

2016-05-24 Thread Andy Shevchenko
On Tue, May 17, 2016 at 1:59 AM, Darren Hart wrote: > On Mon, May 16, 2016 at 03:45:50PM +0530, Rajneesh Bhardwaj wrote: >> On Thu, May 12, 2016 at 06:02:45PM +0300, Andy Shevchenko wrote: >> > On Thu, May 12, 2016 at 4:50 PM, Rajneesh Bhardwaj >> > wrote: >> > > +INTEL PMC CORE DRIVER >> > >

Re: [PATCH v2 05/10] drm/rockchip: analogix_dp: add rk3399 eDP support

2016-05-24 Thread Heiko Stuebner
Am Dienstag, 24. Mai 2016, 11:12:20 schrieb Doug Anderson: > Hi, > > On Tue, May 24, 2016 at 3:17 AM, Heiko Stuebner wrote: > >> --- a/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt > >> +++ b/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt >

Re: [PATCH v2 05/10] drm/rockchip: analogix_dp: add rk3399 eDP support

2016-05-24 Thread Heiko Stuebner
Am Dienstag, 24. Mai 2016, 11:12:20 schrieb Doug Anderson: > Hi, > > On Tue, May 24, 2016 at 3:17 AM, Heiko Stuebner wrote: > >> --- a/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt > >> +++ b/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt > >> > >> @@ -5,6

Re: [PATCH] devicetree - document using aliases to set spi bus number.

2016-05-24 Thread Christer Weinigel
On 05/24/2016 07:20 PM, Mark Brown wrote: >> Not having used devicetree that much it was surprisingly hard to >> figure out how to assign a stable bus number to a spi bus. Add >> a simple example that shows how to do that. > > I'm not sure this is something we want to support at all, I can't

[PATCH 4.2.y-ckt 07/53] drm/i915/bdw: Add missing delay during L3 SQC credit programming

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Imre Deak commit d6a862fe8c48229ba342648bcd535b2404724603 upstream. BSpec requires us to wait ~100 clocks before

Re: [PATCH] devicetree - document using aliases to set spi bus number.

2016-05-24 Thread Christer Weinigel
On 05/24/2016 07:20 PM, Mark Brown wrote: >> Not having used devicetree that much it was surprisingly hard to >> figure out how to assign a stable bus number to a spi bus. Add >> a simple example that shows how to do that. > > I'm not sure this is something we want to support at all, I can't

[PATCH 4.2.y-ckt 07/53] drm/i915/bdw: Add missing delay during L3 SQC credit programming

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Imre Deak commit d6a862fe8c48229ba342648bcd535b2404724603 upstream. BSpec requires us to wait ~100 clocks before re-enabling clock

[PATCH 4.2.y-ckt 02/53] Revert "usb: hub: do not clear BOS field during reset device"

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Greg Kroah-Hartman commit e5bdfd50d6f76077bf8441d130c606229e100d40 upstream. This reverts commit

[PATCH 4.2.y-ckt 02/53] Revert "usb: hub: do not clear BOS field during reset device"

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Greg Kroah-Hartman commit e5bdfd50d6f76077bf8441d130c606229e100d40 upstream. This reverts commit

Re: [PATCH] MIPS: Add missing FROZEN hotplug notifier transitions

2016-05-24 Thread David Daney
On 05/24/2016 06:08 AM, Anna-Maria Gleixner wrote: The corresponding FROZEN hotplug notifier transitions used on suspend/resume are ignored. Therefore the switch case action argument is masked with the frozen hotplug notifier transition mask. Cc: Ralf Baechle Cc:

Re: [PATCH] MIPS: Add missing FROZEN hotplug notifier transitions

2016-05-24 Thread David Daney
On 05/24/2016 06:08 AM, Anna-Maria Gleixner wrote: The corresponding FROZEN hotplug notifier transitions used on suspend/resume are ignored. Therefore the switch case action argument is masked with the frozen hotplug notifier transition mask. Cc: Ralf Baechle Cc: linux-m...@linux-mips.org

[PATCH 4.2.y-ckt 08/53] crypto: hash - Fix page length clamping in hash walk

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Herbert Xu commit 13f4bb78cf6a312bbdec367ba3da044b09bf0e29 upstream. The crypto hash walk code is broken

[PATCH 4.2.y-ckt 11/53] get_rock_ridge_filename(): handle malformed NM entries

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Al Viro commit 99d825822eade8d827a1817357cbf3f889a552d6 upstream. Payloads of NM entries are not supposed to

[PATCH 4.2.y-ckt 08/53] crypto: hash - Fix page length clamping in hash walk

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Herbert Xu commit 13f4bb78cf6a312bbdec367ba3da044b09bf0e29 upstream. The crypto hash walk code is broken when supplied with an offset

[PATCH 4.2.y-ckt 11/53] get_rock_ridge_filename(): handle malformed NM entries

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Al Viro commit 99d825822eade8d827a1817357cbf3f889a552d6 upstream. Payloads of NM entries are not supposed to contain NUL. When we run

[PATCH 4.2.y-ckt 10/53] drm/radeon: fix PLL sharing on DCE6.1 (v2)

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Lucas Stach commit e3c00d87845ab375f90fa6e10a5e72a3a5778cd3 upstream. On DCE6.1 PPLL2 is exclusively available to

[PATCH 4.2.y-ckt 10/53] drm/radeon: fix PLL sharing on DCE6.1 (v2)

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Lucas Stach commit e3c00d87845ab375f90fa6e10a5e72a3a5778cd3 upstream. On DCE6.1 PPLL2 is exclusively available to UNIPHYA, so it should

Re: [PATCH v2 05/10] drm/rockchip: analogix_dp: add rk3399 eDP support

2016-05-24 Thread Doug Anderson
Hi, On Tue, May 24, 2016 at 3:17 AM, Heiko Stuebner wrote: >> --- a/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt >> +++ b/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt >> @@ -5,6 +5,7 @@ Required properties for dp-controller: >>

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Arnaldo Carvalho de Melo
Em Tue, May 24, 2016 at 07:26:19PM +0300, Adrian Hunter escreveu: > On 24/05/2016 5:57 p.m., Arnaldo Carvalho de Melo wrote: > > Em Mon, May 23, 2016 at 05:52:23PM -0700, Andi Kleen escreveu: > > > From: Andi Kleen > > > > > > With perf script --itrace=cr we can synthesize

Re: [PATCH v2 05/10] drm/rockchip: analogix_dp: add rk3399 eDP support

2016-05-24 Thread Doug Anderson
Hi, On Tue, May 24, 2016 at 3:17 AM, Heiko Stuebner wrote: >> --- a/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt >> +++ b/Documentation/devicetree/bindings/display/bridge/analogix_dp.txt >> @@ -5,6 +5,7 @@ Required properties for dp-controller: >> platform

Re: [PATCH 1/3] perf pt: Mark PT return events as "return"

2016-05-24 Thread Arnaldo Carvalho de Melo
Em Tue, May 24, 2016 at 07:26:19PM +0300, Adrian Hunter escreveu: > On 24/05/2016 5:57 p.m., Arnaldo Carvalho de Melo wrote: > > Em Mon, May 23, 2016 at 05:52:23PM -0700, Andi Kleen escreveu: > > > From: Andi Kleen > > > > > > With perf script --itrace=cr we can synthesize calls and returns out

[PATCH 4.2.y-ckt 04/53] regmap: spmi: Fix regmap_spmi_ext_read in multi-byte case

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Jack Pham commit dec8e8f6e6504aa3496c0f7cc10c756bb0e10f44 upstream. Specifically for the case of reads that use

[PATCH 4.2.y-ckt 09/53] drm/radeon: fix DP link training issue with second 4K monitor

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Arindam Nath commit 1a738347df2ee4977459a8776fe2c62196bdcb1b upstream. There is an issue observed when we hotplug

[PATCH 4.2.y-ckt 12/53] ALSA: hda - Fix white noise on Asus UX501VW headset

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Kaho Ng commit 2da2dc9ead232f25601404335cca13c0f722d41b upstream. For reducing the noise from the headset output

[PATCH 4.2.y-ckt 04/53] regmap: spmi: Fix regmap_spmi_ext_read in multi-byte case

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Jack Pham commit dec8e8f6e6504aa3496c0f7cc10c756bb0e10f44 upstream. Specifically for the case of reads that use the Extended Register

[PATCH 4.2.y-ckt 09/53] drm/radeon: fix DP link training issue with second 4K monitor

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Arindam Nath commit 1a738347df2ee4977459a8776fe2c62196bdcb1b upstream. There is an issue observed when we hotplug a second DP 4K

[PATCH 4.2.y-ckt 12/53] ALSA: hda - Fix white noise on Asus UX501VW headset

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Kaho Ng commit 2da2dc9ead232f25601404335cca13c0f722d41b upstream. For reducing the noise from the headset output on ASUS UX501VW, call

[PATCH 4.2.y-ckt 03/53] regulator: s2mps11: Fix invalid selector mask and voltages for buck9

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Krzysztof Kozlowski commit 3b672623079bb3e5685b8549e514f2dfaa564406 upstream. The buck9 regulator of S2MPS11

[PATCH 4.2.y-ckt 03/53] regulator: s2mps11: Fix invalid selector mask and voltages for buck9

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Krzysztof Kozlowski commit 3b672623079bb3e5685b8549e514f2dfaa564406 upstream. The buck9 regulator of S2MPS11 PMIC had incorrect

[PATCH 3/3] arm64: dts: Add Broadcom Northstar2 device tree entries for PDC driver.

2016-05-24 Thread Rob Rice
From: Rob Rice Add Broadcom Northstar2 SoC device tree entries for PDC driver. Signed-off-by: Rob Rice Reviewed-by: Ray Jui Reviewed-by: Scott Branden --- arch/arm64/boot/dts/broadcom/ns2.dtsi | 36

[PATCH 4.2.y-ckt 13/53] Input: max8997-haptic - fix NULL pointer dereference

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Marek Szyprowski commit 6ae645d5fa385f3787bf1723639cd907fe5865e7 upstream. NULL pointer derefence happens

[PATCH 4.2.y-ckt 05/53] ALSA: usb-audio: Quirk for yet another Phoenix Audio devices (v2)

2016-05-24 Thread Kamal Mostafa
4.2.8-ckt11 -stable review patch. If anyone has any objections, please let me know. ---8< From: Takashi Iwai commit 2d2c038af423e820d89db2b5d7774b67ba49 upstream. Phoenix Audio MT202pcs (1de7:0114) and MT202exe

[PATCH 3/3] arm64: dts: Add Broadcom Northstar2 device tree entries for PDC driver.

2016-05-24 Thread Rob Rice
From: Rob Rice Add Broadcom Northstar2 SoC device tree entries for PDC driver. Signed-off-by: Rob Rice Reviewed-by: Ray Jui Reviewed-by: Scott Branden --- arch/arm64/boot/dts/broadcom/ns2.dtsi | 36 +++ 1 file changed, 36 insertions(+) diff --git

<    1   2   3   4   5   6   7   8   9   10   >