Re: [RFC PATCH] scsi: libsas: fix WARN on device removal

2016-11-10 Thread John Garry
On 09/11/2016 20:35, Dan Williams wrote: On Wed, Nov 9, 2016 at 11:09 AM, Dan Williams wrote: On Wed, Nov 9, 2016 at 9:36 AM, John Garry wrote: On 09/11/2016 12:28, John Garry wrote: On 03/11/2016 14:58, John Garry wrote: The following patch introduces an annoying WARN when a device is re

[PATCH 3/3] PCI: hv: delete the device earlier from hbus->children for hot-remove

2016-11-10 Thread Dexuan Cui
After we send a PCI_EJECTION_COMPLETE message to the host, the host will immediately send us a PCI_BUS_RELATIONS message with relations->device_count == 0, so pci_devices_present_work(), running on another thread, can find the being-ejected device, mark the hpdev->reported_missing to true, and run

[PATCH] ARM: dts: vfxxx: Enable DMA for DSPI2 and DSPI3

2016-11-10 Thread Sanchayan Maity
Enable DMA for DSPI2 and DSPI3 on Vybrid. --- arch/arm/boot/dts/vfxxx.dtsi | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi index 000550f..e9d2847 100644 --- a/arch/arm/boot/dts/vfxxx.dtsi +++ b/arch/arm/boot/dts/vfxxx.dtsi @@ -5

Re: [RFC v2 4/8] iommu: Add a list of iommu_reserved_region in iommu_domain

2016-11-10 Thread Robin Murphy
Hi Eric, On 10/11/16 11:22, Auger Eric wrote: > Hi Robin, > > On 04/11/2016 15:00, Robin Murphy wrote: >> Hi Eric, >> >> Thanks for posting this new series - the bottom-up approach is a lot >> easier to reason about :) >> >> On 04/11/16 11:24, Eric Auger wrote: >>> Introduce a new iommu_reserved_

Re: [RFC v3 2/6] Improve the tracking of active utilisation

2016-11-10 Thread Juri Lelli
On 10/11/16 10:04, Juri Lelli wrote: > On 02/11/16 03:35, Luca Abeni wrote: > > On Tue, 1 Nov 2016 22:46:33 +0100 > > luca abeni wrote: > > [...] > > > > > @@ -1074,6 +1161,14 @@ select_task_rq_dl(struct task_struct *p, int > > > > > cpu, int sd_flag, int flags) > > > > > } > > > > >

[PATCH 0/3] kexec/fadump: remove dependency with CONFIG_KEXEC and reuse crashkernel parameter for fadump

2016-11-10 Thread Hari Bathini
Traditionally, kdump is used to save vmcore in case of a crash. Some architectures like powerpc can save vmcore using architecture specific support instead of kexec/kdump mechanism. Such architecture specific support also needs to reserve memory, to be used by dump capture kernel. crashkernel param

[PATCH 3/3] powerpc/fadump: update documentation about crashkernel parameter reuse

2016-11-10 Thread Hari Bathini
As we are reusing crashkernel parameter instead of fadump_reserve_mem parameter to specify the memory to reserve for fadump's crash kernel, update the documentation accordingly. Signed-off-by: Hari Bathini --- Documentation/powerpc/firmware-assisted-dump.txt | 23 ++ 1 file

[PATCH 2/3] powerpc/fadump: reuse crashkernel parameter for fadump memory reservation

2016-11-10 Thread Hari Bathini
fadump supports specifying memory to reserve for fadump's crash kernel with fadump_reserve_mem kernel parameter. This parameter currently supports passing a fixed memory size, like fadump_reserve_mem= only. This patch aims to add support for other syntaxes like range-based memory size :[,:,:,...] w

[PATCH 1/3] crash: move crashkernel parsing and vmcore related code under CONFIG_CRASH_CORE

2016-11-10 Thread Hari Bathini
Traditionally, kdump is used to save vmcore in case of a crash. Some architectures like powerpc can save vmcore using architecture specific support instead of kexec/kdump mechanism. Such architecture specific support also needs to reserve memory, to be used by dump capture kernel. crashkernel param

RE: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Winkler, Tomas
> -Original Message- > From: Greg Kroah-Hartman [mailto:gre...@linuxfoundation.org] > Sent: Thursday, November 10, 2016 09:23 > To: Winkler, Tomas > Cc: Usyskin, Alexander ; linux- > ker...@vger.kernel.org; Jarkko Sakkinen > Subject: Re: [char-misc-next 2/2] mei: send OS type to the FW

Re: [PATCH v3 3/5] net: asix: Fix AX88772x resume failures

2016-11-10 Thread Jon Hunter
Hi Robert, On 29/08/16 14:32, robert.f...@collabora.com wrote: > From: Robert Foss > > From: Allan Chou > > The change fixes AX88772x resume failure by > - Restore incorrect AX88772A PHY registers when resetting > - Need to stop MAC operation when suspending > - Need to restart MII when restor

Re: [PATCH v3 00/10] Add DT support for ohci-da8xx

2016-11-10 Thread Greg KH
On Tue, Nov 08, 2016 at 05:37:41PM +0100, Axel Haslam wrote: > Hi, > > On Mon, Nov 7, 2016 at 9:39 PM, Axel Haslam wrote: > > The purpose of this patch series is to add DT support for the davinci > > ohci driver. > > > > To make it easier to review. I will split the arch/arm and driver > patches

Re: [PATCH] perf/core: introduce context per CPU event list

2016-11-10 Thread Mark Rutland
On Thu, Nov 10, 2016 at 12:37:05PM +0100, Peter Zijlstra wrote: > On Thu, Nov 10, 2016 at 11:05:17AM +, Mark Rutland wrote: > > On Thu, Nov 10, 2016 at 09:33:55AM +0100, Peter Zijlstra wrote: > > > Yes this is a problem, but no this cannot be done. We can't have per-cpu > > > storage per task.

Re: [PATCH] perf/core: introduce context per CPU event list

2016-11-10 Thread Peter Zijlstra
On Thu, Nov 10, 2016 at 12:04:23PM +, Mark Rutland wrote: > On Thu, Nov 10, 2016 at 12:37:05PM +0100, Peter Zijlstra wrote: > > So the problem is finding which events are active when. > > Sure. > > If we only care about PERF_EVENT_STATE_ACTIVE, then I think we can > fairly easily maintain a

Re: [RFC v2 4/8] iommu: Add a list of iommu_reserved_region in iommu_domain

2016-11-10 Thread Auger Eric
Hi Robin, On 10/11/2016 12:54, Robin Murphy wrote: > Hi Eric, > > On 10/11/16 11:22, Auger Eric wrote: >> Hi Robin, >> >> On 04/11/2016 15:00, Robin Murphy wrote: >>> Hi Eric, >>> >>> Thanks for posting this new series - the bottom-up approach is a lot >>> easier to reason about :) >>> >>> On 04/

Re: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Greg Kroah-Hartman
On Thu, Nov 10, 2016 at 12:00:29PM +, Winkler, Tomas wrote: > > > > -Original Message- > > From: Greg Kroah-Hartman [mailto:gre...@linuxfoundation.org] > > Sent: Thursday, November 10, 2016 09:23 > > To: Winkler, Tomas > > Cc: Usyskin, Alexander ; linux- > > ker...@vger.kernel.org; J

RE: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Winkler, Tomas
> -Original Message- > From: Greg Kroah-Hartman [mailto:gre...@linuxfoundation.org] > Sent: Thursday, November 10, 2016 09:25 > To: Winkler, Tomas > Cc: Usyskin, Alexander ; linux- > ker...@vger.kernel.org; Jarkko Sakkinen > Subject: Re: [char-misc-next 2/2] mei: send OS type to the FW

ATTENZIONE;

2016-11-10 Thread
ATTENZIONE; La cassetta postale ha superato il limite di archiviazione, che è 5 GB come definiti dall'amministratore, che è attualmente in esecuzione su 10.9GB, non si può essere in grado di inviare o ricevere nuovi messaggi fino a ri-convalidare la tua mailbox. Per rinnovare la vostra casella

Re: [RFC v3 2/6] Improve the tracking of active utilisation

2016-11-10 Thread luca abeni
On Thu, 10 Nov 2016 11:56:10 + Juri Lelli wrote: > On 10/11/16 10:04, Juri Lelli wrote: > > On 02/11/16 03:35, Luca Abeni wrote: > > > On Tue, 1 Nov 2016 22:46:33 +0100 > > > luca abeni wrote: > > > [...] > > > > > > @@ -1074,6 +1161,14 @@ select_task_rq_dl(struct task_struct > > > > > >

RE: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Winkler, Tomas
> > On Thu, Nov 10, 2016 at 12:00:29PM +, Winkler, Tomas wrote: > > > > > > > -Original Message- > > > From: Greg Kroah-Hartman [mailto:gre...@linuxfoundation.org] > > > Sent: Thursday, November 10, 2016 09:23 > > > To: Winkler, Tomas > > > Cc: Usyskin, Alexander ; linux- > > > ker...

Re: [lustre-devel] [PATCH] staging: lustre: ldlm: pl_recalc time handling is wrong

2016-11-10 Thread Greg Kroah-Hartman
On Wed, Nov 09, 2016 at 05:00:42PM +0100, Arnd Bergmann wrote: > On Wednesday, November 9, 2016 3:50:29 AM CET Dilger, Andreas wrote: > > On Nov 7, 2016, at 19:47, James Simmons wrote: > > > > > > The ldlm_pool field pl_recalc_time is set to the current > > > monotonic clock value but the interva

Re: [RFD] sched/deadline: Support single CPU affinity

2016-11-10 Thread Henrik Austad
On Thu, Nov 10, 2016 at 09:08:07AM +0100, Peter Zijlstra wrote: > > > Add support for single CPU affinity to SCHED_DEADLINE; the supposed reason for > wanting single CPU affinity is better QoS than provided by G-EDF. > > Therefore the aim is to provide harder guarantees, similar to UP, for singl

Re: [PATCH v2 1/2] Staging: fsl-mc: include: mc-bus: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Greg KH
On Tue, Nov 08, 2016 at 04:42:13PM +0100, Shiva Kerdel wrote: > Follow the kernel type preferrences of using 's16' over 'int16_t'. > > Signed-off-by: Shiva Kerdel > --- > drivers/staging/fsl-mc/include/mc-bus.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) What is different from y

Re: [PATCH v2] MIPS: fix duplicate define

2016-11-10 Thread kbuild test robot
Hi Sudip, [auto build test ERROR on linus/master] [also build test ERROR on v4.9-rc4 next-20161110] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Sudip-Mukherjee/MIPS-fix-duplicate-define

Re: [PATCH] f2fs: support multiple devices

2016-11-10 Thread Austin S. Hemmelgarn
On 2016-11-09 21:29, Qu Wenruo wrote: At 11/10/2016 06:57 AM, Andreas Dilger wrote: On Nov 9, 2016, at 1:56 PM, Jaegeuk Kim wrote: This patch implements multiple devices support for f2fs. Given multiple devices by mkfs.f2fs, f2fs shows them entirely as one big volume under one f2fs instance

Re: [PATCH] perf/core: introduce context per CPU event list

2016-11-10 Thread Mark Rutland
On Thu, Nov 10, 2016 at 01:12:53PM +0100, Peter Zijlstra wrote: > On Thu, Nov 10, 2016 at 12:04:23PM +, Mark Rutland wrote: > > On Thu, Nov 10, 2016 at 12:37:05PM +0100, Peter Zijlstra wrote: > > > > So the problem is finding which events are active when. > > > If we stick all events in an RB

Re: [RFD] sched/deadline: Support single CPU affinity

2016-11-10 Thread luca abeni
Hi Peter, On Thu, 10 Nov 2016 11:59:18 +0100 Peter Zijlstra wrote: [...] > > > MIXED CRITICALITY SCHEDULING > > > > > > Since we want to provide better guarantees for single CPU affine > > > tasks than the G-EDF scheduler provides for the single CPU tasks, > > > we need to somehow alter the s

Re: [PATCH 4/5] iommu: Move REQ_ACS_FLAGS out to header and rename

2016-11-10 Thread Joerg Roedel
On Wed, Oct 26, 2016 at 12:01:34PM -0600, Alex Williamson wrote: > Allow other parts of the kernel to see which PCI ACS flags the IOMMU > layer considers necessary for isolation. > > Signed-off-by: Alex Williamson > Cc: Joerg Roedel > --- > drivers/iommu/iommu.c | 18 +- > inc

Re: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Greg Kroah-Hartman
On Thu, Nov 10, 2016 at 12:19:06PM +, Winkler, Tomas wrote: > > > > On Thu, Nov 10, 2016 at 12:00:29PM +, Winkler, Tomas wrote: > > > > > > > > > > -Original Message- > > > > From: Greg Kroah-Hartman [mailto:gre...@linuxfoundation.org] > > > > Sent: Thursday, November 10, 2016 09:2

[PATCH v3] spi: spi-fsl-dspi: Add DMA support for Vybrid

2016-11-10 Thread Sanchayan Maity
Add DMA support for Vybrid. Signed-off-by: Sanchayan Maity --- Changes since v2: 1. Rebase on top of Shawn's latest for-next branch 2. Make DMA mode the default for Vybrid. We no longer use the EOQ mode. Since devtype_data has been constantified it's no longer makes sense to change the trans_mode

Re: [PATCH v2 1/2] Staging: fsl-mc: include: mc-bus: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Shiva Kerdel
Sorry for this misunderstanding, Since received a response from Stuart on my previous patch telling me I was probably working on a out-of-date codebase, I started to look where I did go wrong. After some research I found out that I was always one step behind because I was developing on the ac

Re: [PATCH v3 5/6] usb: dwc3: use bus->sysdev for DMA configuration

2016-11-10 Thread Baolin Wang
Hi, On 10 November 2016 at 16:20, Sriram Dash wrote: > From: Arnd Bergmann > > The dma ops for dwc3 devices are not set properly. So, use a > physical device sysdev, which will be inherited from parent, > to set the hardware / firmware parameters like dma. > > Signed-off-by: Arnd Bergmann > Sig

Re: [RFC v3 2/6] Improve the tracking of active utilisation

2016-11-10 Thread Juri Lelli
On 10/11/16 13:15, Luca Abeni wrote: > On Thu, 10 Nov 2016 11:56:10 + > Juri Lelli wrote: > > > On 10/11/16 10:04, Juri Lelli wrote: > > > On 02/11/16 03:35, Luca Abeni wrote: > > > > On Tue, 1 Nov 2016 22:46:33 +0100 > > > > luca abeni wrote: > > > > [...] > > > > > > > @@ -1074,6 +1161

[x86/MCE] 81aa021b8c: WARNING: CPU: 0 PID: 0 at arch/x86/kernel/cpu/mcheck/mce.c:716 machine_check_poll+0x66/0x21c

2016-11-10 Thread kernel test robot
FYI, we noticed the following commit: https://github.com/0day-ci/linux Borislav-Petkov/x86-MCE-Correct-TSC-timestamping-of-error-records/20161110-021431 commit 81aa021b8c6f464b68c6e6df93e64ffe2c2adda6 ("x86/MCE: Remove MCP_TIMESTAMP") in testcase: boot on test machine: qemu-sys

Re: [PATCH V5 3/3] ARM64 LPC: LPC driver implementation on Hip06

2016-11-10 Thread zhichang.yuan
Hi, Arnd, On 2016/11/10 17:12, Arnd Bergmann wrote: > On Thursday, November 10, 2016 2:40:26 PM CET zhichang.yuan wrote: >> On 2016/11/10 5:34, Arnd Bergmann wrote: >>> On Wednesday, November 9, 2016 12:10:43 PM CET Gabriele Paoloni wrote: > On Tuesday, November 8, 2016 11:47:09 AM CET zhichan

Re: [PATCH v2] MIPS: fix duplicate define

2016-11-10 Thread Sudip Mukherjee
On Thu, Nov 10, 2016 at 08:23:58PM +0800, kbuild test robot wrote: > Hi Sudip, > > [auto build test ERROR on linus/master] > [also build test ERROR on v4.9-rc4 next-20161110] > [if your patch is applied to the wrong git tree, please drop us a note to > help improve th

Re: [RFD] sched/deadline: Support single CPU affinity

2016-11-10 Thread luca abeni
Hi Henrik, On Thu, 10 Nov 2016 13:21:00 +0100 Henrik Austad wrote: > On Thu, Nov 10, 2016 at 09:08:07AM +0100, Peter Zijlstra wrote: [...] > > We define the time to fail as: > > > > ttf(t) := t_d - t_b; where > > > > t_d is t's absolute deadline > > t_b is t's remaining budget > > >

Re: [PATCH v2] ppdev: fix double-free of pp->pdev->name

2016-11-10 Thread Sudip Mukherjee
On Sun, Oct 30, 2016 at 11:19:24PM +0100, Jann Horn wrote: > free_pardevice() is called by parport_unregister_device() and already frees > pp->pdev->name, don't try to do it again. > > This bug causes kernel crashes. > > I found and verified this with KASAN and some added pr_emerg()s: > > [ 60

Re: [RFC v3 2/6] Improve the tracking of active utilisation

2016-11-10 Thread luca abeni
On Thu, 10 Nov 2016 12:34:15 + Juri Lelli wrote: [...] > > Ok; I'll think about some possible solution for this race... If I do > > not find any simple way to solve it, I'll add a "contending" flag, > > which allows to know if the inactive timer handler already executed > > or not. > > > >

Re: [x86/MCE] 81aa021b8c: WARNING: CPU: 0 PID: 0 at arch/x86/kernel/cpu/mcheck/mce.c:716 machine_check_poll+0x66/0x21c

2016-11-10 Thread Borislav Petkov
On Thu, Nov 10, 2016 at 08:36:02PM +0800, kernel test robot wrote: > FYI, we noticed the following commit: > > https://github.com/0day-ci/linux > Borislav-Petkov/x86-MCE-Correct-TSC-timestamping-of-error-records/20161110-021431 > commit 81aa021b8c6f464b68c6e6df93e64ffe2c2adda6 (&

Re: [RFC v2 4/8] iommu: Add a list of iommu_reserved_region in iommu_domain

2016-11-10 Thread Robin Murphy
On 10/11/16 12:14, Auger Eric wrote: > Hi Robin, > > On 10/11/2016 12:54, Robin Murphy wrote: >> Hi Eric, >> >> On 10/11/16 11:22, Auger Eric wrote: >>> Hi Robin, >>> >>> On 04/11/2016 15:00, Robin Murphy wrote: Hi Eric, Thanks for posting this new series - the bottom-up approach is

Re: [PATCH] staging: mfa384x_usb: Corrected code indentation in hfa384x_usb.c to resolve checkpatch.pl warn

2016-11-10 Thread Greg Kroah-Hartman
On Tue, Nov 08, 2016 at 06:51:08AM +, Angus Gardner wrote: > Corrected indentation in drivers/staging/wlan-ng/hfa384x_usb.c to resolve > checkpatch.pl warninigs This is almost the same thing you said in the Subject:, care to make it different? And fix up your line to wrap properly at 72 colu

Re: [PATCH] Staging: used dma_map_single in place of pci_map_single

2016-11-10 Thread Greg KH
On Tue, Nov 08, 2016 at 02:52:08AM +0530, Nadim Almas wrote: > pci_map_single is unneeded and can be replaced with dma_map_single > to avoid inconcitent api usage. > The Coccinelle semantic patch used to make this change is as follows: > @@ expression E1,E2,E3; @@ > - pci_map_single(E1, > + dma_map

Re: PM regression with LED changes in next-20161109

2016-11-10 Thread Jacek Anaszewski
Hi, On 11/10/2016 09:49 AM, Hans de Goede wrote: Hi, On 09-11-16 21:45, Jacek Anaszewski wrote: Hi Tony, On 11/09/2016 08:23 PM, Tony Lindgren wrote: Hi, Looks like commit 883d32ce3385 ("leds: core: Add support for poll()ing the sysfs brightness attr for changes.") breaks runtime PM for me.

Re: [RFD] sched/deadline: Support single CPU affinity

2016-11-10 Thread Peter Zijlstra
On Thu, Nov 10, 2016 at 01:21:00PM +0100, Henrik Austad wrote: > On Thu, Nov 10, 2016 at 09:08:07AM +0100, Peter Zijlstra wrote: > > We define the time to fail as: > > > > ttf(t) := t_d - t_b; where > > > > t_d is t's absolute deadline > > t_b is t's remaining budget > > > > This is t

Re: [RFD] sched/deadline: Support single CPU affinity

2016-11-10 Thread Henrik Austad
On Thu, Nov 10, 2016 at 01:38:40PM +0100, luca abeni wrote: > Hi Henrik, Hi Luca, > On Thu, 10 Nov 2016 13:21:00 +0100 > Henrik Austad wrote: > > On Thu, Nov 10, 2016 at 09:08:07AM +0100, Peter Zijlstra wrote: > [...] > > > We define the time to fail as: > > > > > > ttf(t) := t_d - t_b; where

Re: [PATCH] perf/core: introduce context per CPU event list

2016-11-10 Thread Peter Zijlstra
On Thu, Nov 10, 2016 at 12:26:18PM +, Mark Rutland wrote: > On Thu, Nov 10, 2016 at 01:12:53PM +0100, Peter Zijlstra wrote: > > Ah, so the tree would in fact only contain 'INACTIVE' events :-) > > Ah. :) > > That explains some of the magic, but... > > > That is, when no events are on the ha

RE: [PATCH v2 3/3] clocksource: Add clockevent support to NPS400 driver

2016-11-10 Thread Noam Camus
>From: Daniel Lezcano [mailto:daniel.lezc...@linaro.org] >Sent: Thursday, November 10, 2016 12:34 PM >>> give a correct result without a dmesg log ? >> [root@192.168.8.2 /]$ [root@192.168.8.2 /]$ taskset 65536 time sleep 2 >> & taskset 131072 time sleep 3 >Thanks for providing the numbers. >So

RE: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Winkler, Tomas
> > On Thu, Nov 10, 2016 at 12:19:06PM +, Winkler, Tomas wrote: > > > > > > On Thu, Nov 10, 2016 at 12:00:29PM +, Winkler, Tomas wrote: > > > > > > > > > > > > > -Original Message- > > > > > From: Greg Kroah-Hartman [mailto:gre...@linuxfoundation.org] > > > > > Sent: Thursday, Nove

Re: Proposal: HAVE_SEPARATE_IRQ_STACK?

2016-11-10 Thread Thomas Gleixner
On Thu, 10 Nov 2016, Jason A. Donenfeld wrote: > On Thu, Nov 10, 2016 at 10:03 AM, Thomas Gleixner wrote: > > Does the slowdown come from the kmalloc overhead or mostly from the less > > efficient code? > > > > If it's mainly kmalloc, then you can preallocate the buffer once for the > > kthread yo

Re: PM regression with LED changes in next-20161109

2016-11-10 Thread Hans de Goede
Hi, On 10-11-16 13:56, Jacek Anaszewski wrote: Hi, On 11/10/2016 09:49 AM, Hans de Goede wrote: Hi, On 09-11-16 21:45, Jacek Anaszewski wrote: Hi Tony, On 11/09/2016 08:23 PM, Tony Lindgren wrote: Hi, Looks like commit 883d32ce3385 ("leds: core: Add support for poll()ing the sysfs brightn

Re: [RFC PATCH 1/2] hwmon: adt7411: update to new hwmon registration API

2016-11-10 Thread Michael Walle
Am 2016-10-14 11:43, schrieb Michael Walle: This is also a preparation for to support more properties like min, max and alarm. ping? :) -michael

Re: [PATCH 1/3] perf: add PERF_RECORD_NAMESPACES to include namespaces related info

2016-11-10 Thread kbuild test robot
-containers/20161110-195727 config: ia64-allnoconfig (attached as .config) compiler: ia64-linux-gcc (GCC) 6.2.0 reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # save the attached

Re: sched/autogroup: race if !sysctl_sched_autogroup_enabled ?

2016-11-10 Thread Oleg Nesterov
On 11/09, Peter Zijlstra wrote: > > On Wed, Nov 09, 2016 at 05:59:33PM +0100, Oleg Nesterov wrote: > > > We need to ensure that autogroup/tg returned by autogroup_task_group() > > can't go away if we race with autogroup_move_group(), and unless the > > caller holds ->siglock we rely on fact that au

[PATCH -v1.1] x86/MCE: Correct TSC timestamping of error records

2016-11-10 Thread Borislav Petkov
Thomas, here's the fixed version: --- From: Borislav Petkov We did have logic in the MCE code which would TSC-timestamp an error record only when it is exact - i.e., when it wasn't detected by polling. This isn't the case anymore. So let's fix that: We have a valid TSC timestamp in the error r

Re: [Linux-ima-devel] [PATCH v6 02/10] ima: on soft reboot, restore the measurement list

2016-11-10 Thread Mimi Zohar
On Tue, 2016-11-08 at 15:47 -0500, Mimi Zohar wrote: > On Tue, 2016-11-08 at 21:46 +0200, Dmitry Kasatkin wrote: > > On Fri, Oct 21, 2016 at 5:44 AM, Thiago Jung Bauermann > > > +/* Restore the serialized binary measurement list without extending > > > PCRs. */ > > > +int ima_restore_measurement_

Re: [RFC PATCH v3 02/20] x86: Set the write-protect cache mode for full PAT support

2016-11-10 Thread Borislav Petkov
+ Toshi. On Wed, Nov 09, 2016 at 06:34:48PM -0600, Tom Lendacky wrote: > For processors that support PAT, set the write-protect cache mode > (_PAGE_CACHE_MODE_WP) entry to the actual write-protect value (x05). > > Acked-by: Borislav Petkov > Signed-off-by: Tom Lendacky > --- > arch/x86/mm/pat.

Re: [char-misc-next 2/2] mei: send OS type to the FW

2016-11-10 Thread Greg Kroah-Hartman
On Thu, Nov 10, 2016 at 01:00:54PM +, Winkler, Tomas wrote: > > > > On Thu, Nov 10, 2016 at 12:19:06PM +, Winkler, Tomas wrote: > > > > > > > > On Thu, Nov 10, 2016 at 12:00:29PM +, Winkler, Tomas wrote: > > > > > > > > > > > > > > > > -Original Message- > > > > > > From: Greg

Re: [PATCH v2 1/2] Staging: fsl-mc: include: mc-bus: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Greg KH
On Thu, Nov 10, 2016 at 01:33:10PM +0100, Shiva Kerdel wrote: > Sorry for this misunderstanding, > > Since received a response from Stuart on my previous patch telling me I was > probably working on a out-of-date codebase, > I started to look where I did go wrong. > > After some research I found

Re: [PATCH v2] ppdev: fix double-free of pp->pdev->name

2016-11-10 Thread Arnd Bergmann
On Sunday, October 30, 2016 11:19:24 PM CET Jann Horn wrote: > diff --git a/drivers/char/ppdev.c b/drivers/char/ppdev.c > index d23368874710..6af1ce04b3da 100644 > --- a/drivers/char/ppdev.c > +++ b/drivers/char/ppdev.c > @@ -748,10 +748,7 @@ static int pp_release(struct inode *inode, struct file

Re: [PATCH 1/3] perf: add PERF_RECORD_NAMESPACES to include namespaces related info

2016-11-10 Thread Peter Zijlstra
On Thu, Nov 10, 2016 at 05:08:06PM +0530, Hari Bathini wrote: > diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h > index c66a485..575aed6 100644 > --- a/include/uapi/linux/perf_event.h > +++ b/include/uapi/linux/perf_event.h > @@ -344,7 +344,8 @@ struct perf_event_att

[no subject]

2016-11-10 Thread системы администратор
внимания; Ваши сообщения превысил лимит памяти, который составляет 5 Гб, определенных администратором, который в настоящее время работает на 10.9GB, Вы не сможете отправить или получить новую почту, пока вы повторно не проверить ваш почтовый ящик почты. Чтобы восстановить работоспособность В

[PATCH] adv7604: reports wrong colorspace when source is sending RGB

2016-11-10 Thread Hans Verkuil
If the HDMI source is transmitting RGB (as opposed to YUV), then the colorspace was set to SMPTE170M or REC709 if the source used CE timings. But that has nothing to do with the colorspace. If the source sends RGB, then the colorspace is sRGB, otherwise it is one of 170M or REC709, depending on

[PATCH] mmc: sdhci: remove unneeded (void *) casts in sdhci_(pltfm_)priv()

2016-11-10 Thread Masahiro Yamada
The type of host->private is (unsigned long *). No cast is needed to return an opaque pointer. Signed-off-by: Masahiro Yamada --- drivers/mmc/host/sdhci-pltfm.h | 2 +- drivers/mmc/host/sdhci.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/host/sdhci-

Re: [PATCH v2 3/4] printk/btrfs: Handle more message headers

2016-11-10 Thread David Sterba
On Wed, Nov 09, 2016 at 01:41:30PM +0100, Petr Mladek wrote: > The commit 4bcc595ccd80decb4245096e ("printk: reinstate KERN_CONT for > printing continuation lines") allows to define more message headers > for a single message. The motivation is that continuous lines might > get mixed. Therefore it

[PATCH 2/2] mmc: tmio: allow tmio_mmc_host_alloc() to return proper error code

2016-11-10 Thread Masahiro Yamada
Now, mmc_alloc_host() returns an error pointer when it fails. So, tmio_mmc_host_alloc() can also return an error pointer to propagate the proper error code. Signed-off-by: Masahiro Yamada --- drivers/mmc/host/sh_mobile_sdhi.c | 4 ++-- drivers/mmc/host/tmio_mmc.c | 4 +++- drivers/mmc/hos

Re: [PATCH 1/2] mfd: arizona: Use irq_find_mapping when appropriate

2016-11-10 Thread Lee Jones
On Fri, 28 Oct 2016, Charles Keepax wrote: > No need to use irq_create_mapping (although there is no issue with > doing so) when we are only looking up an existing mapping. Just to > streamline things a little and make the code a little more clear > change some calls from irq_create_mapping to irq

Re: [PATCH 0/2] mmc: allow mmc_alloc_host() and tmio_mmc_host_alloc()

2016-11-10 Thread Greg Kroah-Hartman
On Thu, Nov 10, 2016 at 10:24:21PM +0900, Masahiro Yamada wrote: > > sdhci_alloc_host() returns an error pointer when it fails. > but mmc_alloc_host() cannot. > > This series allow to propagate a proper error code > when host-allocation fails. Why? What can we really do about the error except g

Re: [PATCH] arm64: dts: Add ARM PMU node for exynos7

2016-11-10 Thread Robin Murphy
Hi Alim, On 10/11/16 03:30, Alim Akhtar wrote: > This patch adds ARM Performance Monitor Unit dt node for exynos7. > PMU provides various statistics on the operation of the CPU and > memory system at runtime, which are very useful when debugging or > profiling code. This enables the same. > > Sig

ATENCIÓN;

2016-11-10 Thread Administrador
ATENCIÓN; Su buzón ha superado el límite de almacenamiento, que es de 5 GB definidos por el administrador, quien actualmente está ejecutando en 10.9GB, no puede ser capaz de enviar o recibir correo nuevo hasta que vuelva a validar su buzón de correo electrónico. Para revalidar su buzón de corre

[PATCH 0/2] mmc: allow mmc_alloc_host() and tmio_mmc_host_alloc()

2016-11-10 Thread Masahiro Yamada
sdhci_alloc_host() returns an error pointer when it fails. but mmc_alloc_host() cannot. This series allow to propagate a proper error code when host-allocation fails. Masahiro Yamada (2): mmc: allow mmc_alloc_host() to return proper error code mmc: tmio: allow tmio_mmc_host_alloc() to retu

Re: [Intel-wired-lan] [PATCH] igb: use igb_adapter->io_addr instead of e1000_hw->hw_addr

2016-11-10 Thread Hisashi T Fujinaka
On Thu, 10 Nov 2016, Corinna Vinschen wrote: On Nov 8 11:33, Alexander Duyck wrote: ... The question I would have is what is reading the device when it is in this state. The watchdog and any other functions that would read the device should be disabled. One possibility could be a race betwe

Re: [PATCH 1/3] crash: move crashkernel parsing and vmcore related code under CONFIG_CRASH_CORE

2016-11-10 Thread kbuild test robot
Hi Hari, [auto build test WARNING on linus/master] [also build test WARNING on v4.9-rc4] [cannot apply to powerpc/next next-20161110] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Hari-Bathini

[PATCH 1/2] Staging: fsl-mc: include: mc: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Shiva Kerdel
Follow the kernel type preferrences of using 's32' over 'int16_t'. Signed-off-by: Shiva Kerdel Acked-by: Stuart Yoder --- drivers/staging/fsl-mc/include/mc-bus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/fsl-mc/include/mc-bus.h b/drivers/staging/fs

[PATCH 2/2] Staging: fsl-mc: include: mc: Kernel type 's32' preferred over 'int32_t'

2016-11-10 Thread Shiva Kerdel
Follow the kernel type preferrences of using 's32' over 'int32_t'. Signed-off-by: Shiva Kerdel Acked-by: Stuart Yoder --- drivers/staging/fsl-mc/include/mc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/fsl-mc/include/mc.h b/drivers/staging/fsl-mc/include

[PATCH 1/2] mmc: allow mmc_alloc_host() to return proper error code

2016-11-10 Thread Masahiro Yamada
Currently, mmc_alloc_host() returns NULL on error, so its callers cannot return anything but -ENOMEM when it fails, assuming the most failure cases are due to memory shortage, but it is not true. Allow mmc_alloc_host() to return an error pointer, then propagate the proper error code to its callers

Re: PM regression with LED changes in next-20161109

2016-11-10 Thread Jacek Anaszewski
Hi, On 11/10/2016 02:04 PM, Hans de Goede wrote: Hi, On 10-11-16 13:56, Jacek Anaszewski wrote: Hi, On 11/10/2016 09:49 AM, Hans de Goede wrote: Hi, On 09-11-16 21:45, Jacek Anaszewski wrote: Hi Tony, On 11/09/2016 08:23 PM, Tony Lindgren wrote: Hi, Looks like commit 883d32ce3385 ("leds

Re: [PATCHv2] PCI: QDF2432 32 bit config space accessors

2016-11-10 Thread Lorenzo Pieralisi
On Thu, Nov 10, 2016 at 06:25:16PM +0800, Ard Biesheuvel wrote: > On 10 November 2016 at 06:49, Bjorn Helgaas wrote: > > On Wed, Nov 09, 2016 at 08:29:23PM +, Ard Biesheuvel wrote: > >> Hi Bjorn, > >> > >> On 9 November 2016 at 20:06, Bjorn Helgaas wrote: > >> > On Wed, Nov 09, 2016 at 02:25:

Re: [PATCH v2] ppdev: fix double-free of pp->pdev->name

2016-11-10 Thread Sudip Mukherjee
On Thu, Nov 10, 2016 at 02:18:12PM +0100, Arnd Bergmann wrote: > On Sunday, October 30, 2016 11:19:24 PM CET Jann Horn wrote: > > diff --git a/drivers/char/ppdev.c b/drivers/char/ppdev.c > > index d23368874710..6af1ce04b3da 100644 > > --- a/drivers/char/ppdev.c > > +++ b/drivers/char/ppdev.c > > @@

Re: [PATCH] x86/cpuid: Deal with broken firmware once more

2016-11-10 Thread Boris Ostrovsky
On 11/10/2016 06:13 AM, Thomas Gleixner wrote: > On Thu, 10 Nov 2016, M. Vefa Bicakci wrote: > >> I have found that your patch unfortunately does not improve the situation >> for me. Here is an excerpt obtained from the dmesg of a kernel compiled >> with this patch *as well as* Sebastian's patch: >

Re: [PATCH] iommu/dma-iommu: properly respect configured address space size

2016-11-10 Thread Robin Murphy
On 08/11/16 14:53, Marek Szyprowski wrote: > Hi Robin, > > > On 2016-11-08 15:44, Robin Murphy wrote: >> On 08/11/16 13:41, Marek Szyprowski wrote: >>> On 2016-11-08 12:37, Robin Murphy wrote: On 07/11/16 13:06, Marek Szyprowski wrote: > When one called iommu_dma_init_domain() with size

[PATCH v2 2/2] Staging: fsl-mc: include: mc: Kernel type 's32' preferred over 'int32_t'

2016-11-10 Thread Shiva Kerdel
Follow the kernel type preferrences of using 's32' over 'int32_t'. Signed-off-by: Shiva Kerdel Acked-by: Stuart Yoder --- drivers/staging/fsl-mc/include/mc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/fsl-mc/include/mc.h b/drivers/staging/fsl-mc/include

[PATCH v2 1/2] Staging: fsl-mc: include: mc: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Shiva Kerdel
Follow the kernel type preferrences of using 's16' over 'int16_t'. Signed-off-by: Shiva Kerdel Acked-by: Stuart Yoder --- drivers/staging/fsl-mc/include/mc-bus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/fsl-mc/include/mc-bus.h b/drivers/staging/fs

Re: [PATCH] perf/core: introduce context per CPU event list

2016-11-10 Thread Mark Rutland
On Thu, Nov 10, 2016 at 01:58:04PM +0100, Peter Zijlstra wrote: > On Thu, Nov 10, 2016 at 12:26:18PM +, Mark Rutland wrote: > > On Thu, Nov 10, 2016 at 01:12:53PM +0100, Peter Zijlstra wrote: > > > > Ah, so the tree would in fact only contain 'INACTIVE' events :-) > > > > Ah. :) > > > > That

Re: [PATCH v5 6/8] Documentation: bindings: add compatible specific to legacy SCPI protocol

2016-11-10 Thread Rob Herring
On Thu, Nov 10, 2016 at 4:26 AM, Sudeep Holla wrote: > > > On 10/11/16 01:22, Rob Herring wrote: >> >> On Wed, Nov 02, 2016 at 10:52:09PM -0600, Sudeep Holla wrote: >>> >>> This patch adds specific compatible to support legacy SCPI protocol. >>> >>> Cc: Rob Herring >>> Signed-off-by: Sudeep Holla

Re: [PATCH] Revert "console: don't prefer first registered if DT specifies stdout-path"

2016-11-10 Thread Greg Kroah-Hartman
On Tue, Nov 08, 2016 at 08:00:32AM +0100, Greg Kroah-Hartman wrote: > On Tue, Nov 08, 2016 at 11:46:35AM +1100, Michael Ellerman wrote: > > Hans de Goede writes: > > > > > This reverts commit 05fd007e4629 ("console: don't prefer first registered > > > if DT specifies stdout-path"). > > > > > > Th

[PATCH] staging: lustre: lov: Fix signed wrap around when decrementing index 'i'

2016-11-10 Thread Colin King
From: Colin Ian King Change predecrement compare to post decrement compare to avoid an unsigned integer wrap-around comparisomn when decrementing in the while loop. Issue found with static analysis with CoverityScan, CID 1375917 Signed-off-by: Colin Ian King --- drivers/staging/lustre/lustre/

[PATCH] i2c: i2c-topology: fix minor whitespace nit

2016-11-10 Thread Peter Rosin
Signed-off-by: Peter Rosin --- Documentation/i2c/i2c-topology | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/i2c/i2c-topology b/Documentation/i2c/i2c-topology index e0aefeece551..1a014fede0b7 100644 --- a/Documentation/i2c/i2c-topology +++ b/Documentation/i2

Re: [PATCH] tile-srom: allow the driver to be built as a module

2016-11-10 Thread Greg Kroah-Hartman
On Mon, Nov 07, 2016 at 03:56:37PM -0500, Chris Metcalf wrote: > The code was already configured that way, but the Kconfig > file didn't support requesting it. > > A buglet caused a null pointer deref when unloading the > module, but this commit also corrects that issue. > > Signed-off-by: Chris

Re: [PATCH v2 1/2] Staging: fsl-mc: include: mc: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Greg KH
On Thu, Nov 10, 2016 at 03:09:07PM +0100, Shiva Kerdel wrote: > Follow the kernel type preferrences of using 's16' over 'int16_t'. > > Signed-off-by: Shiva Kerdel > Acked-by: Stuart Yoder > --- > drivers/staging/fsl-mc/include/mc-bus.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)

Re: 4.8.2 not booting in 32-bit VM without I/O-APIC

2016-11-10 Thread Michael Thayer
Hello, On 03.11.2016 21:02, Michal Necasek wrote: Sorry for the delay. I can confirm that the problem is fixed in 4.9.0-rc3 and prefill_possible_map no longer crashes (as it did in 4.9.0-rc2). Thank you! Just a side question, is the previous fix in commit ff8560512b (x86/boot/smp: Don't try to

[PATCH v2] drivers: cpuidle: assign enter_freeze to same as enter callback function

2016-11-10 Thread Sudeep Holla
enter_freeze() callback is expected atleast to do the same as enter() but it has to guarantee that interrupts aren't enabled at any point in its execution, as the tick is frozen. CPUs execute ->enter_freeze with the local tick or entire timekeeping suspended, so it must not re-enable interrupts at

Re: [PATCH v9 7/8] thunderbolt: Networking doc

2016-11-10 Thread Jonathan Corbet
On Wed, 9 Nov 2016 17:00:02 +0100 Greg KH wrote: > > Documentation/00-INDEX | 2 + > > Documentation/thunderbolt/networking.txt | 132 > > +++ > > Note, new files should be in .rst format, and live in the new > subdirectory for them (somewhere i

Re: [PATCH net-next resend 10/13] debugfs: constify argument to debugfs_real_fops()

2016-11-10 Thread Greg Kroah-Hartman
On Thu, Nov 03, 2016 at 05:12:06PM +, Jakub Kicinski wrote: > seq_file users can only access const version of file pointer, > because the ->file member of struct seq_operations is marked > as such. Make parameter to debugfs_real_fops() const. > > CC: Greg Kroah-Hartman > CC: Nicolai Stange

Re: [PATCH 0/5] drm/sun4i: Handle TV overscan

2016-11-10 Thread Maxime Ripard
On Mon, Nov 07, 2016 at 03:46:52PM +, Russell King - ARM Linux wrote: > On Mon, Nov 07, 2016 at 04:09:09PM +0100, Maxime Ripard wrote: > > Hi Russell, > > > > On Thu, Nov 03, 2016 at 09:54:45AM +, Russell King - ARM Linux wrote: > > > > Yes. And that is an XBMC only solution, that doesn't

RE: [PATCH] perf/core: introduce context per CPU event list

2016-11-10 Thread Liang, Kan
> > I don't think those need be tracked at all, they're immaterial for > > actual scheduling. Once we ioctl() them back to life we can insert > > them into the tree. > > Sure, that sounds fine for scheduling (including big.LITTLE). > > I might still be misunderstanding something, but I don't th

RE: [patch v5] i2c: mux: mellanox: add driver

2016-11-10 Thread Vadim Pasternak
> -Original Message- > From: Peter Rosin [mailto:p...@axentia.se] > Sent: Thursday, November 10, 2016 1:13 PM > To: Vadim Pasternak ; w...@the-dreams.de > Cc: linux-...@vger.kernel.org; linux-kernel@vger.kernel.org; j...@resnulli.us; > Michael Shych > Subject: Re: [patch v5] i2c: mux: me

Re: [PATCH v2 1/2] Staging: fsl-mc: include: mc: Kernel type 's16' preferred over 'int16_t'

2016-11-10 Thread Shiva Kerdel
I corrected the log message because I wrote 's32' instead of 's16' in this patch (confused with the other one that I sent too). Thank you for your guidance, Shiva Kerdel On 11/10/16 15:20, Greg KH wrote: On Thu, Nov 10, 2016 at 03:09:07PM +0100, Shiva Kerdel wrote: Follow the kernel type pre

Re: [PATCHv3 2/4] misc: Add Altera Arria10 System Resource Control

2016-11-10 Thread Greg KH
On Wed, Nov 02, 2016 at 09:32:56AM -0500, ttha...@opensource.altera.com wrote: > From: Thor Thayer > > This patch adds the Altera Arria10 control & monitoring > functions to the Arria10 System Resource chip. > > Signed-off-by: Thor Thayer > --- > v2 Change compatible string and filename from -

Re: [RFD] sched/deadline: Support single CPU affinity

2016-11-10 Thread luca abeni
On Thu, 10 Nov 2016 12:03:47 +0100 Tommaso Cucinotta wrote: > On 10/11/2016 10:06, luca abeni wrote: > > is equivalent to the "least laxity first" (LLF) algorithm. > > Giving precedence to tasks with 0 laxity is a technique that is > > often used to improve the schedulability on multi-processor >

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