Re: [PATCH v2 2/2] phy: Kconfig: Update config for Exynos USB DRD

2014-07-09 Thread Jingoo Han
On Wednesday, July 09, 2014 8:49 PM, Sachin Kamat wrote: > > USB DWC3 driver on Exynos platform does not work without its > corresponding phy driver. Hence make the PHY driver depend on > Exynos DWC3 driver and default it to yes to make things easier > for the end user. > > Signed-off-by: Sachin

[PATCH] Allow increasing the buffer-head per-CPU LRU size

2014-07-09 Thread Sebastien Buisson
Allow increasing the buffer-head per-CPU LRU size to allow efficient filesystem operations that access many blocks for each transaction. For example, creating a file in a large ext4 directory with quota enabled will accesses multiple buffer heads and will overflow the LRU at the default 8-block LR

Re: [PATCH v2 1/2] phy: Kconfig: Re-organize Exynos USB 2.0 PHY configs

2014-07-09 Thread Jingoo Han
On Wednesday, July 09, 2014 8:49 PM, Sachin Kamat wrote: > > Since the USB 2.0 PHYs are required with EHCI/OHCI USB drivers and > USB gadget controller supported by the DWC2 gadget driver, make it > depend on them and default to ARCH_EXYNOS as they are meant for > Exynos platforms. Also, make the

Re: [RFC PATCH 3/4] tty: serial: 8250 core: add runtime pm

2014-07-09 Thread Tony Lindgren
* Sebastian Andrzej Siewior [140709 09:35]: > On 07/09/2014 05:12 PM, Tony Lindgren wrote: > > And also please note that for runtime PM the wake-up events need > > to be always enabled, so the device_may_wakeup() checks should > > be only implemented for suspend and resume. I think I got that > >

Re: [PATCH] ASoC: omap-dmic: use managed interfaces

2014-07-09 Thread Peter Ujfalusi
On 07/10/2014 12:21 AM, Himangi Saraogi wrote: > This patch moves data allocated using clk_put and > snd_soc_register_component to the corresponding managed interfaces and > does away with the functions to free memory in the probe and remove > functions. The probe function is no longer required and

Re: [PATCH 3/6] tty: serial: 8250 core: add runtime pm

2014-07-09 Thread Tony Lindgren
* Sebastian Andrzej Siewior [140709 10:52]: > While comparing the OMAP-serial and the 8250 part of this I noticed that > the the latter does not use runtime-pm. Here are the pieces. It is > basically a get before first register access and a last_busy + put after > last access. > If I understand th

linux-next: manual merge of the akpm tree with the staging tree

2014-07-09 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm tree got a conflict in drivers/staging/emxx_udc/emxx_udc.c between commit 6de2a1a7b9e2 ("staging: emxx_udc: Fix build error") from the staging tree and commit "drivers/staging/emxx_udc/emxx_udc.c: replace strict_strto() with kstrto()" from the akpm t

[PATCH 2/5] phy: omap-usb2: fix devm_ioremap_resource error detection code

2014-07-09 Thread Kishon Vijay Abraham I
From: Himangi Saraogi devm_ioremap_resource returns an ERR_PTR value, not NULL, on failure. A simplified version of the semantic match that finds this problem is as follows: // @@ expression e,e1; statement S; @@ *e = devm_ioremap_resource(...); if (!e1) S // Signed-off-by: Himangi Saraogi

[GIT PULL v2 0/5] phy: fixes for 3.16 -rc cycle

2014-07-09 Thread Kishon Vijay Abraham I
Hi Greg, Please find the updated pull requeust for 3.16 -rc cycle for PHY subsystem. It now contains only minor fixes in phy-core and few other PHY drivers. Let me know if I have to change something. Cheers Kishon The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:

[PATCH 1/5] phy: sun4i: depend on RESET_CONTROLLER

2014-07-09 Thread Kishon Vijay Abraham I
From: Maxime Ripard The driver depend on the reset framework in a mandatory way. Make sure reset_control_get is defined by adding this dependency in Kconfig Signed-off-by: Maxime Ripard Reported-by: Arnd Bergmann Signed-off-by: Kishon Vijay Abraham I --- drivers/phy/Kconfig |1 + 1 file

Re: [PATCH 3/9] perf, tools: Add support for reading JSON event files v3

2014-07-09 Thread Jiri Olsa
On Thu, Jul 10, 2014 at 02:05:54AM +0200, Andi Kleen wrote: > On Thu, Jul 10, 2014 at 12:19:58AM +0200, Jiri Olsa wrote: > > Im confused, your branch shows v4 in patch Subject, > > while this patch has v3... ? > > Patchkits and patches both have their own numeric > version spaces. yes, but this

[PATCH 4/5] phy: core: Fix error path in phy_create()

2014-07-09 Thread Kishon Vijay Abraham I
From: Roger Quadros Prevent resources from being freed twice in case device_add() call fails within phy_create(). Also use ida_simple_remove() instead of ida_remove() as we had used ida_simple_get() to allocate the ida. Cc: 3.13+ # 3.13+ Signed-off-by: Roger Quadros Signed-off-by: Kishon Vijay

[PATCH 3/5] drivers: phy: phy-samsung-usb2.c: Add missing MODULE_DEVICE_TABLE

2014-07-09 Thread Kishon Vijay Abraham I
From: Sjoerd Simons Allow phy-exynos-usb2 to be autoloaded based on devicetree information. Tested on Odroid X2 with its USB subsystem build as modules. Signed-off-by: Sjoerd Simons Signed-off-by: Kishon Vijay Abraham I --- drivers/phy/phy-samsung-usb2.c |1 + 1 file changed, 1 insertion(

[PATCH 5/5] phy: omap-usb2: Balance pm_runtime_enable() on probe failure and remove

2014-07-09 Thread Kishon Vijay Abraham I
From: Roger Quadros If probe fails then we need to call pm_runtime_disable() to balance out the previous pm_runtime_enable() call. Else it will cause unbalanced pm_runtime_enable() call in the succeding probe call. This anomaly was observed when the call to devm_phy_create() failed with -EPROBE_

Re: scsi-mq V2

2014-07-09 Thread Christoph Hellwig
On Thu, Jul 10, 2014 at 12:53:36AM +, Elliott, Robert (Server Storage) wrote: > the problem still occurs - fio results in low or 0 IOPS, with perf top > reporting unusual amounts of time spent in do_io_submit and io_submit. The diff between the two version doesn't show too much other possibl

Re: [PATCH V4 2/2] arm: dts: dra7: add crossbar device binding

2014-07-09 Thread Tony Lindgren
* Lokesh Vutla [140709 23:00]: > Hi Tony, > On Wednesday 09 July 2014 09:14 PM, Tony Lindgren wrote: > > * Tony Lindgren [140626 03:28]: > >> * Sricharan R [140626 01:36]: > >>> Hi Tony, > >>> > >>> On Thursday 26 June 2014 01:14 PM, Tony Lindgren wrote: > * Sricharan R [140626 00:29]: > >

Re: [PATCH 09/14] scsi: fix the {host,target,device}_blocked counter mess

2014-07-09 Thread Christoph Hellwig
On Wed, Jul 09, 2014 at 01:12:17PM +0200, Hannes Reinecke wrote: > Hmm. I guess there is a race window between > atomic_read() and atomic_set(). > Doesn't this cause issues when someone calls atomic_set() just before the > call to atomic_read? There is a race window just _after_ the atomic_read,

[PATCH V2 2/8] Drivers: scsi: storvsc: Set cmd_per_lun to reflect value supported by the Host

2014-07-09 Thread K. Y. Srinivasan
Set cmd_per_lun to reflect value supported by the Host. In this version of the patch I have addressed comments from Christoph Hellwig Signed-off-by: K. Y. Srinivasan Cc: --- drivers/scsi/storvsc_drv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/storvs

Re: [PATCH 08/14] scsi: convert device_busy to atomic_t

2014-07-09 Thread Christoph Hellwig
On Wed, Jul 09, 2014 at 09:49:56AM -0700, James Bottomley wrote: > As far as I can tell from the block MQ, we get one CPU thread per LUN. No, that's entirely incorrect. IFF a device supports multiple hardware queues we only submit I/O from CPUs (there might be more than one) this queue is bound t

Re: [PATCH V4 2/2] arm: dts: dra7: add crossbar device binding

2014-07-09 Thread Lokesh Vutla
Hi Tony, On Wednesday 09 July 2014 09:14 PM, Tony Lindgren wrote: > * Tony Lindgren [140626 03:28]: >> * Sricharan R [140626 01:36]: >>> Hi Tony, >>> >>> On Thursday 26 June 2014 01:14 PM, Tony Lindgren wrote: * Sricharan R [140626 00:29]: > From: R Sricharan > > There is a IRQ

Re: [PATCH] Btrfs: use BUG_ON

2014-07-09 Thread Julia Lawall
On Thu, 10 Jul 2014, Satoru Takeuchi wrote: > Hi Himangi, > > (2014/07/09 7:21), Himangi Saraogi wrote: > > Use BUG_ON(x) rather than if(x) BUG(); > > > > The semantic patch that fixes this problem is as follows: > > > > // > > @@ identifier x; @@ > > -if (x) BUG(); > > +BUG_ON(x); > > // >

[PATCH 1/2] staging: rtl8723au: core: rtw_ap.c - removed NULL pointer check before kfree()

2014-07-09 Thread Anil Belur
From: Anil Belur - as kfree() internally check for NULL, additional check it not required. Signed-off-by: Anil Belur --- drivers/staging/rtl8723au/core/rtw_ap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rt

[PATCH 2/2] staging: rtl8723au: core: rtw_cmd.c - removed NULL pointer check before kfree()

2014-07-09 Thread Anil Belur
From: Anil Belur - as kfree() internally checks for NULL, additional check it not required. Signed-off-by: Anil Belur --- drivers/staging/rtl8723au/core/rtw_cmd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_cmd.c b/drivers/staging/r

Re: [PATCH 3/8] phy: phy-samsung-usb2: Change phy power on/power off sequence

2014-07-09 Thread Kishon Vijay Abraham I
On Thursday 10 July 2014 03:06 AM, Greg KH wrote: > On Tue, Jul 08, 2014 at 11:42:42AM +0530, Kishon Vijay Abraham I wrote: >> Hi Greg, >> >> On Tuesday 08 July 2014 07:14 AM, Greg KH wrote: >>> On Mon, Jul 07, 2014 at 12:18:20PM +0530, Kishon Vijay Abraham I wrote: From: Kamil Debski

[PATCH V2 2/8] Drivers: scsi: storvsc: Set cmd_per_lun to reflect value supported by the Host

2014-07-09 Thread K. Y. Srinivasan
Set cmd_per_lun to reflect value supported by the Host. In this version of the patch I have addressed comments from Christoph Hellwig Signed-off-by: K. Y. Srinivasan Cc: --- drivers/scsi/storvsc_drv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/storvs

[PATCH V2 3/8] Drivers: scsi: storvsc: Filter commands based on the storage protocol version

2014-07-09 Thread K. Y. Srinivasan
Going forward it is possible that some of the commands that are not currently implemented will be implemented on future Windows hosts. Even if they are not implemented, we are told the host will corrrectly handle unsupported commands (by returning appropriate return code and sense information). Mak

[PATCH] arm: LLVMLinux: use static inline in ARM ftrace.h

2014-07-09 Thread behanw
From: Behan Webster With compilers which follow the C99 standard (like modern versions of gcc and clang), "extern inline" does the wrong thing (emits code for an externally linkable version of the inline function). In this case using static inline and removing the NULL version of return_address i

[PATCH V2 6/8] Drivers: scsi: storvsc: Implement an abort handler

2014-07-09 Thread K. Y. Srinivasan
Implement a simple abort handler. The host does not support "Abort"; just ensure that all inflight I/Os have been accounted for. In this version of the patch I have addressed comments from Christoph Hellwig Signed-off-by: K. Y. Srinivasan --- drivers/scsi/storvsc_drv.c | 22 +

[PATCH V2 5/8] Drivers: scsi: storvsc: Fix a bug in the handling of SRB status flags

2014-07-09 Thread K. Y. Srinivasan
SRB status can have additional information. Mask these out before processing SRB status. In this version of the patch I have addressed comments from Christoph Hellwig Signed-off-by: K. Y. Srinivasan Cc: --- drivers/scsi/storvsc_drv.c |5 - 1 files changed, 4 insertions(+), 1 deletion

[PATCH V2 4/8] Drivers: scsi: storvsc: Fix a bug in handling VMBUS protocol version

2014-07-09 Thread K. Y. Srinivasan
Based on the negotiated VMBUS protocol version, we adjust the size of the storage protocol messages. The two sizes we currently handle are pre-win8 and post-win8. In WS2012 R2, we are negotiating higher VMBUS protocol version than the win8 version. Make adjustments to correctly handle this. In th

[PATCH V2 8/8] drivers: scsi: storvsc: Correctly handle TEST_UNIT_READY failure

2014-07-09 Thread K. Y. Srinivasan
On some Windows hosts on FC SANs, TEST_UNIT_READY can return SRB_STATUS_ERROR. Correctly handle this. In this version of the patch I have addressed comments from Christoph Hellwig Signed-off-by: K. Y. Srinivasan Cc: --- drivers/scsi/storvsc_drv.c |7 +++ 1 files changed, 7 insertions(

[PATCH V2 7/8] drivers: scsi: storvsc: Set srb_flags in all cases

2014-07-09 Thread K. Y. Srinivasan
Correctly set SRB flags for all valid I/O directions. Some IHV drivers on the Windows host require this. Signed-off-by: K. Y. Srinivasan Cc: --- drivers/scsi/storvsc_drv.c | 12 +--- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/scsi/storvsc_drv.c b/drivers/sc

[PATCH V2 1/8] Drivers: scsi: storvsc: Change the limits to reflect the values on the host

2014-07-09 Thread K. Y. Srinivasan
Hyper-V hosts can support multiple targets and multiple channels and larger number of LUNs per target. Update the code to reflect this. With this patch we can correctly enumerate all the paths in a multi-path storage environment. In this version of the patch I have addressed comments from Christ

[PATCH V2 0/8] Drivers: scsi: storvsc: Bug fixes and improvements

2014-07-09 Thread K. Y. Srinivasan
In this patch set I have fixed a few bugs and implemented some enhancements. In this version of the patch I have addressed comments from Christoph Hellwig K. Y. Srinivasan (8): Drivers: scsi: storvsc: Change the limits to reflect the values on the host Drivers: scsi: storvsc: Set cmd_per

Re: [GIT PULL] ARM: SPEAr1310 PCIe updates

2014-07-09 Thread Viresh Kumar
On 10 July 2014 10:47, Olof Johansson wrote: >> I didn't sign-off because I haven't even looked closed at many of the >> patches around PCI and Acked whatever I could understand. > > Thanks, good to know that the series hasn't been fully reviewed. That > makes me even more hesitant to apply it at

[PATCH 1/2] usb: usb3503: add PM functions

2014-07-09 Thread Joonyoung Shim
The usb3503 needs to switch to standby mode while suspending and should switch to hub mode when resumed. Also we can control clock on PM function. Signed-off-by: Joonyoung Shim --- drivers/usb/misc/usb3503.c | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-

[PATCH 2/2] USB: add reset resume quirk for usb3503

2014-07-09 Thread Joonyoung Shim
The usb device will autoresume from choose_wakeup() if it is autosuspended with the wrong wakeup setting, but below errors occur because usb3503 misc driver will switch to standby mode when suspended. As add USB_QUIRK_RESET_RESUME, it can stop setting wrong wakeup from autosuspend_check(). [7

Wed, Jul 9, 2014

2014-07-09 Thread STACEY G LIPPEL
Greetings, I am a Financial Consultant with the Capital One United State I am in control of privately owned funds placed for long term investments. Our interest is to fund projects in form of Loan. Viable projects ranging from any amount would be funded at a guaranteed 3% Fixed Interest Rate p

RE: [PATCH 1/1] Fix permission checking by NFS client for open-create with mode 000

2014-07-09 Thread Frank Filz
> On Thu, Jul 10, 2014 at 12:26 AM, Frank Filz > wrote: > >> On Wed, Jul 9, 2014 at 7:06 PM, Trond Myklebust > >> wrote: > >> > On Wed, Jul 9, 2014 at 6:42 PM, Frank Filz > >> > > >> wrote: > >> >>> On Wed, Jul 9, 2014 at 5:54 PM, Frank S. Filz > >> >>> > >> >>> wrote: > >> >>> > From: "Frank S

Re: [GIT PULL] ARM: SPEAr1310 PCIe updates

2014-07-09 Thread Olof Johansson
On Wed, Jul 9, 2014 at 5:18 PM, Viresh Kumar wrote: > On 9 July 2014 23:39, Olof Johansson wrote: >> * Why are you sending a pull request for a repo that is not yours? > > Because Mohit/Pratyush were facing some issues in pushing patches > to the SPEAr public git repo. And so I tried to help them

Re: [PATCH 1/3] usb: usb3503: fix build warning

2014-07-09 Thread Joonyoung Shim
On 07/10/2014 02:05 PM, Greg Kroah-Hartman wrote: > On Thu, Jul 10, 2014 at 10:22:46AM +0530, Sachin Kamat wrote: >> Hi Joonyoung, >> >> On Thu, Jul 10, 2014 at 9:53 AM, Joonyoung Shim >> wrote: >>> This fixes below build warning. >>> >>> drivers/usb/misc/usb3503.c: In function ‘usb3503_probe’: >

Re: [PATCH 1/3] usb: usb3503: fix build warning

2014-07-09 Thread Greg Kroah-Hartman
On Thu, Jul 10, 2014 at 10:22:46AM +0530, Sachin Kamat wrote: > Hi Joonyoung, > > On Thu, Jul 10, 2014 at 9:53 AM, Joonyoung Shim > wrote: > > This fixes below build warning. > > > > drivers/usb/misc/usb3503.c: In function ‘usb3503_probe’: > > drivers/usb/misc/usb3503.c:195:11: warning: ‘err’ ma

Re: [PATCH 1/3] usb: usb3503: fix build warning

2014-07-09 Thread Sachin Kamat
Hi Joonyoung, On Thu, Jul 10, 2014 at 9:53 AM, Joonyoung Shim wrote: > This fixes below build warning. > > drivers/usb/misc/usb3503.c: In function ‘usb3503_probe’: > drivers/usb/misc/usb3503.c:195:11: warning: ‘err’ may be used uninitialized > in this function [-Wmaybe-uninitialized] > dev_e

Re: Procfs race condition bug

2014-07-09 Thread Eric W. Biederman
Alexey Dobriyan writes: > [broken email] > > On Wed, Jul 9, 2014 at 3:17 PM, Alexey Dobriyan wrote: >>> I originally posted this two years ago (*) but received no response. >>> I just had a look and the problem still exists on the 3.14 kernel >>> I am currently running. >>> >>> I *think* I've un

[f2fs-dev][PATCH 1/2 v2] f2fs: check name_len of dir entry to prevent from deadloop

2014-07-09 Thread Chao Yu
We assume that modification of some special application could result in zeroed name_len, or it is consciously made by somebody. We will deadloop in find_in_block when name_len of dir entry is zero. This patch is added for preventing deadloop in above scenario. change log from v1: o use f2fs_bug_

Re: [PATCH v2] mm/vmalloc.c: clean up map_vm_area third argument

2014-07-09 Thread Greg Kroah-Hartman
On Thu, Jul 10, 2014 at 12:26:07PM +0800, WANG Chao wrote: > Currently map_vm_area() takes (struct page *** pages) as third argument, > and after mapping, it moves (*pages) to point to (*pages + nr_mappped_pages). > > It looks like this kind of increment is useless to its caller these > days. The

Re: [RESEND PATCH v4 2/2] arm64: Add seccomp support

2014-07-09 Thread AKASHI Takahiro
Will, > (1) Updating syscallno based on w8, but this ties us to the current ABI > and could get messy if this register changes in the future. So, is this the conclusion that I should follow? -Takahiro AKASHI On 07/09/2014 01:12 PM, Will Deacon wrote: Hi Akashi, On Fri, Jul 04, 2014 at

Re: [PATCH 1/1] Fix permission checking by NFS client for open-create with mode 000

2014-07-09 Thread Trond Myklebust
On Thu, Jul 10, 2014 at 12:26 AM, Frank Filz wrote: >> On Wed, Jul 9, 2014 at 7:06 PM, Trond Myklebust >> wrote: >> > On Wed, Jul 9, 2014 at 6:42 PM, Frank Filz >> wrote: >> >>> On Wed, Jul 9, 2014 at 5:54 PM, Frank S. Filz >> >>> >> >>> wrote: >> >>> > From: "Frank S. Filz" >> >>> > >> >>> >

[PATCH v2] mm/vmalloc.c: clean up map_vm_area third argument

2014-07-09 Thread WANG Chao
Currently map_vm_area() takes (struct page *** pages) as third argument, and after mapping, it moves (*pages) to point to (*pages + nr_mappped_pages). It looks like this kind of increment is useless to its caller these days. The callers don't care about the increments and actually they're trying t

RE: [PATCH 1/1] Fix permission checking by NFS client for open-create with mode 000

2014-07-09 Thread Frank Filz
> On Wed, Jul 9, 2014 at 7:06 PM, Trond Myklebust > wrote: > > On Wed, Jul 9, 2014 at 6:42 PM, Frank Filz > wrote: > >>> On Wed, Jul 9, 2014 at 5:54 PM, Frank S. Filz > >>> > >>> wrote: > >>> > From: "Frank S. Filz" > >>> > > >>> > The NFS v4 client sends a COMPOUND with an OPEN and an ACCESS.

[PATCH 2/3] usb: usb3503: add PM functions

2014-07-09 Thread Joonyoung Shim
The usb3503 needs to switch to standby mode while suspending and should switch to hub mode when resumed. Also we can control clock on PM function. Signed-off-by: Joonyoung Shim --- drivers/usb/misc/usb3503.c | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-

[PATCH 1/3] usb: usb3503: fix build warning

2014-07-09 Thread Joonyoung Shim
This fixes below build warning. drivers/usb/misc/usb3503.c: In function ‘usb3503_probe’: drivers/usb/misc/usb3503.c:195:11: warning: ‘err’ may be used uninitialized in this function [-Wmaybe-uninitialized] dev_err(dev, "unable to request refclk (%d)\n", err); ^ Signed-off-by: Joony

[PATCH 0/3] usb: fix and support PM for usb3503

2014-07-09 Thread Joonyoung Shim
Hello, This patchset is simple just to fix and support PM for usb3503. They was tested on odroid U3 board. Thanks. Joonyoung Shim (3): usb: usb3503: fix build warning usb: usb3503: add PM functions USB: add reset resume quirk for usb3503 drivers/usb/core/quirks.c | 3 +++ d

[PATCH 3/3] USB: add reset resume quirk for usb3503

2014-07-09 Thread Joonyoung Shim
The usb device will autoresume from choose_wakeup() if it is autosuspended with the wrong wakeup setting, but below errors occur because usb3503 misc driver will switch to standby mode when suspended. As add USB_QUIRK_RESET_RESUME, it can stop setting wrong wakeup from autosuspend_check(). [7

RE: [f2fs-dev][PATCH 1/2] f2fs: check name_len of dir entry to prevent from deadloop

2014-07-09 Thread Chao Yu
Hi Jaegeuk, > -Original Message- > From: Jaegeuk Kim [mailto:jaeg...@kernel.org] > Sent: Wednesday, July 09, 2014 9:48 PM > To: Chao Yu > Cc: 'Changman Lee'; linux-f2fs-de...@lists.sourceforge.net; > linux-fsde...@vger.kernel.org; > linux-kernel@vger.kernel.org > Subject: Re: [f2fs-dev][P

Re: [PATCH] thermal: samsung: Add TMU support for Exynos3250 SoC

2014-07-09 Thread Amit Kachhap
On Wed, Jul 9, 2014 at 8:30 AM, Chanwoo Choi wrote: > On 07/01/2014 09:33 AM, Chanwoo Choi wrote: >> This patch add registers, bit fields and compatible strings for Exynos3250 >> TMU >> (Thermal Management Unit). Exynos3250 uses the Cortex-A7 dual cores and has >> a target speed of 1.0 GHz. >> >>

[PATCH v2] mmc: dw_mmc: add support for RK3288

2014-07-09 Thread Addy Ke
This patch focuses on clock setting for RK3288 mmc controller. In RK3288 mmc controller, CLKDIV register can only be set 0 or 1, and if DDR 8bit mode, CLKDIV register must be set 1. Signed-off-by: Addy Ke --- changes since v1: - dw_mci_rk3288_setup_clock: do not call clk_get_rate(), just use the

[PATCH V2] staging: dgap: removes redundant null check and change paramter for dgap_maxcps_room()

2014-07-09 Thread Daeseok Youn
Null checks for tty, un and ch are already done by caller, so replace parameter "tty" with "ch" and "un". Signed-off-by: Daeseok Youn --- V2: revert return type from int to void. leave it originally. drivers/staging/dgap/dgap.c | 21 - 1 files changed, 4 insertions(+), 17

Re: [PATCH 3/3] regulator: s2mps11: Optimize the regulator description macro

2014-07-09 Thread amit daniel kachhap
Adding MFD maintainers On Tue, Jul 8, 2014 at 5:58 PM, Amit Daniel Kachhap wrote: > This patch makes the regulator description macro take minimum and > steps voltage as parameter. In this way many repeated macros can be > removed. Now these macros are repeated only if the the LDO/BUCK ctrl > regi

Re: [PATCH 2/3] regulator: s2mpa01: Optimize the regulator description macro

2014-07-09 Thread amit daniel kachhap
Adding MFD maintainers. On Tue, Jul 8, 2014 at 5:57 PM, Amit Daniel Kachhap wrote: > This patch makes the regulator description macro take minimum and > steps voltage as parameter. In this way many repeated macros can be > removed. Now these macros are repeated only if the the LDO/BUCK ctrl > reg

Re: [PATCH 1/3] regulator: s2mpxxx: Move regulator min/step voltages in common place

2014-07-09 Thread amit daniel kachhap
On Wed, Jul 9, 2014 at 2:55 PM, Mark Brown wrote: > On Tue, Jul 08, 2014 at 05:57:58PM +0530, Amit Daniel Kachhap wrote: > >> include/linux/mfd/samsung/core.h| 21 >> include/linux/mfd/samsung/s2mpa01.h | 12 - >> include/linux/mfd/samsung/s2mps11.h | 9 --- >> i

[ANNOUNCE] 3.4.97-rt120

2014-07-09 Thread Steven Rostedt
Dear RT Folks, I'm pleased to announce the 3.4.97-rt120 stable release. This release is just an update to the new stable 3.4.97 version and no RT specific changes have been made. You can get this release via the git tree at: git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.

[ANNOUNCE] 3.10.47-rt49

2014-07-09 Thread Steven Rostedt
Dear RT Folks, I'm pleased to announce the 3.10.47-rt49 stable release. This release is just an update to the new stable 3.10.47 version and no RT specific changes have been made. You can get this release via the git tree at: git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt

[ANNOUNCE] 3.12.24-rt37

2014-07-09 Thread Steven Rostedt
Dear RT Folks, I'm pleased to announce the 3.12.24-rt37 stable release. This release is just an update to the new stable 3.12.24 version and no RT specific changes have been made. You can get this release via the git tree at: git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt

Re: linux-next: build failure after merge of the staging tree

2014-07-09 Thread Greg KH
On Thu, Jul 10, 2014 at 10:27:00AM +1000, Stephen Rothwell wrote: > Hi Greg, > > On Fri, 20 Jun 2014 09:53:53 -0700 Greg KH wrote: > > > > On Fri, Jun 20, 2014 at 02:18:07PM +1000, Stephen Rothwell wrote: > > > Hi Greg, > > > > > > After merging the staging tree, today's linux-next build (powerp

[PATCH net-next v2] r8152: support jumbo frame for RTL8153

2014-07-09 Thread Hayes Wang
The maximum jumbo frame size for RTL8153 is 9K bytes. Change the max rx packet size to 9K. Change the use of the shared fifo from 6K (default) to 12K for tx. Signed-off-by: Hayes Wang --- drivers/net/usb/r8152.c | 36 1 file changed, 32 insertions(+), 4 delet

[PATCH] usbnet: smsc95xx: add reset_resume function with reset operation

2014-07-09 Thread Joonyoung Shim
The smsc95xx needs to resume with reset operation. Otherwise it causes system hang by network error like below after resume. This case appears on odroid u3 board. [9.727600] smsc95xx 1-2:1.0 eth0: kevent 2 may have been dropped [9.727648] smsc95xx 1-2:1.0 eth0: kevent 2 may have been dropp

Re: [PATCH 2/2] sched: Rewrite per entity runnable load average tracking

2014-07-09 Thread Yuyang Du
On Wed, Jul 09, 2014 at 10:08:42AM -0700, bseg...@google.com wrote: > > That I believe is not a problem. It is a matter of when cfs_rq->load.weight > > changes and when we look at it to contribute to the cfs_rq's load_avg. > > Fortunately, we will not miss any change of cfs_rq->load.weight, always

[PATCH] cpufreq: Don't destroy/realloc policy/sysfs on hotplug/suspend

2014-07-09 Thread Saravana Kannan
Preliminary patch. Not tested. Just sending out to give an idea of what I'm looking to do. Expect a lot more simplification when it's done. Benefits: * A lot more simpler code. * Less stability issues. * Suspend/resume time would improve. * Hotplug time would improve. * Sysfs file permissions woul

[PATCH] ARM: mm: fix the boundary checking on bitmaps

2014-07-09 Thread Haojian Zhuang
The issue of boundary checking on bitmaps is introduced by this commit in below. commit 4d852ef8c2544ce21ae41414099a7504c61164a0 Author: Andreas Herrmann Date: Tue Feb 25 13:09:53 2014 +0100 arm: dma-mapping: Add support to extend DMA IOMMU mappings Multiple bitmaps were introduced as ext

Re: [PATCH] video: backlight: jornada720_lcd.c: Cleaning up variable that is never used

2014-07-09 Thread Jingoo Han
On Thursday, July 10, 2014 7:08 AM, Rickard Strandqvist wrote: > 2014-07-09 18:30 GMT+02:00 Lee Jones : > > On Mon, 07 Jul 2014, Rickard Strandqvist wrote: > > > >> Variable ar assigned a value that is never used. > >> I have also removed all the code that thereby serves no purpose, > >> and made s

Re: [PATCH] GPIO button wth wakeup attribute is supposed to wake the system up

2014-07-09 Thread Li, Aubrey
On 2014/7/9 20:45, Rafael J. Wysocki wrote: > On Tuesday, July 08, 2014 05:54:35 PM Dmitry Torokhov wrote: >> On Wed, Jul 09, 2014 at 02:59:33AM +0200, Rafael J. Wysocki wrote: >>> On Tuesday, July 08, 2014 05:15:06 PM Dmitry Torokhov wrote: On Wed, Jul 09, 2014 at 01:06:07AM +0200, Rafael J.

Re: [PATCH v2 0/2] ARM: at91: remove phy fixup for sama5d3xek boards

2014-07-09 Thread Bo Shen
Hi Boris, On 07/10/2014 12:34 AM, Boris BREZILLON wrote: Hello Bo, I know you're quite busy, but if you have some time could you test this series on both CPU Modules (Embest and Ronetix): I only own the Embest one. Best Regards, Boris On Thu, 26 Jun 2014 12:13:33 +0200 Boris BREZILLON wrote

Re: [PATCH 1/5] staging: rtl8188eu: Remove WEXT_PRIV private ioctl handlers

2014-07-09 Thread Greg KH
On Thu, Jul 10, 2014 at 06:56:39AM +0530, navin patidar wrote: > On Thu, Jul 10, 2014 at 6:29 AM, Greg KH wrote: > > On Thu, Jul 10, 2014 at 06:24:21AM +0530, navin patidar wrote: > >> On Thu, Jul 10, 2014 at 12:34 AM, Greg KH > >> wrote: > >> > On Tue, Jul 01, 2014 at 10:35:09PM +0530, navin pa

Re: [RFC 0/7] hrtimer: drop active hrtimer checks after adding it

2014-07-09 Thread Frederic Weisbecker
On Wed, Jul 09, 2014 at 11:30:41PM +0200, Thomas Gleixner wrote: > On Wed, 9 Jul 2014, Viresh Kumar wrote: > > So your patch series drops active hrtimer checks after adding it, > according to your subject line. > > Quite useeul to drop something after adding it, right? > > > hrtimer_start*() fam

Re: [PATCH NET-NEXT V2] netxen: fix ethtool rx_dropped information in ethtool get_ethtool_stats()

2014-07-09 Thread ethan zhao
On 2014/7/9 19:45, vaughan wrote: On 07/09/2014 07:32 PM, Manish Chopra wrote: -Original Message- From: netdev-ow...@vger.kernel.org [mailto:netdev-ow...@vger.kernel.org] On Behalf Of ethan zhao Sent: Wednesday, July 09, 2014 8:11 AM To: David Miller Cc: ba...@ti.com; netdev; linux-kern

Re: [PATCH 1/5] staging: rtl8188eu: Remove WEXT_PRIV private ioctl handlers

2014-07-09 Thread navin patidar
On Thu, Jul 10, 2014 at 6:29 AM, Greg KH wrote: > On Thu, Jul 10, 2014 at 06:24:21AM +0530, navin patidar wrote: >> On Thu, Jul 10, 2014 at 12:34 AM, Greg KH wrote: >> > On Tue, Jul 01, 2014 at 10:35:09PM +0530, navin patidar wrote: >> >> Remove WEXT_PRIV (non-standard) ioctl handlers. >> >> >> >

Re: [PATCH] scripts: modpost: Remove numeric suffix pattern matching

2014-07-09 Thread Rusty Russell
Sam Ravnborg writes: > On Wed, Jul 09, 2014 at 11:41:48AM +0200, Rasmus Villemoes wrote: >> For several years, the pattern "foo$" has effectively been treated as >> equivalent to "foo" due to a bug in the (misnamed) helper >> number_prefix(). This hasn't been observed to cause any problems, so >>

[PATCH 1/4] xhci: Introduce xhci_init_driver()

2014-07-09 Thread Andrew Bresticker
Since the struct hc_driver is mostly the same across the xhci-pci, xhci-plat, and the upcoming xhci-tegra driver, introduce the function xhci_init_driver() which will populate the hc_driver with the default xHCI operations. The caller must supply a setup function which will be used as the hc_drive

[PATCH 3/4] xhci: Export symbols used by host-controller drivers

2014-07-09 Thread Andrew Bresticker
In preparation for allowing the xHCI host controller drivers to be built as separate modules, export symbols from the xHCI core that may be used by the host controller drivers. Signed-off-by: Andrew Bresticker --- drivers/usb/host/xhci-dbg.c | 1 + drivers/usb/host/xhci.c | 3 +++ 2 files ch

Re: + shmem-fix-faulting-into-a-hole-while-its-punched-take-2.patch added to -mm tree

2014-07-09 Thread Hugh Dickins
On Wed, 9 Jul 2014, Hugh Dickins wrote: > On Wed, 9 Jul 2014, Vlastimil Babka wrote: > > On 07/09/2014 06:03 PM, Sasha Levin wrote: > > > > > > We can see that it's not blocked since it's in the middle of a spinlock > > > unlock > > > call, and we can guess it's been in that function for a while b

[PATCH 4/4] xhci: Allow xHCI drivers to be built as separate modules

2014-07-09 Thread Andrew Bresticker
Instead of building all of the xHCI code into a single module, separate it out into the core (xhci-hcd), PCI (xhci-pci, now selected by the new config option CONFIG_USB_XHCI_PCI), and platform (xhci-plat) drivers. Also update the PCI/platform drivers with module descriptions/licenses and have them

[PATCH 2/4] xhci: Check for XHCI_COMP_MODE_QUIRK when disabling D3cold

2014-07-09 Thread Andrew Bresticker
Instead of calling xhci_compliance_mode_recovery_timer_quirk_check() again in the PCI suspend path, just check for XHCI_COMP_MODE_QUIRK which will have been set based on xhci_compliance_mode_recovery_timer_quirk_check() in xhci_init(). Signed-off-by: Andrew Bresticker --- drivers/usb/host/xhci-p

[PATCH 0/4] Allow xHCI drivers to be built as separate modules

2014-07-09 Thread Andrew Bresticker
It was suggested in the review of the Tegra xHCI driver [1] that we allow xHCI drivers to be built as individual modules (like EHCI) instead of building them all into the single xhci-hcd module as they are today. Patches 1-3 prepare for making the xHCI PCI and platform drivers able to be built as

Re: [PATCH 1/5] staging: rtl8188eu: Remove WEXT_PRIV private ioctl handlers

2014-07-09 Thread Greg KH
On Thu, Jul 10, 2014 at 06:24:21AM +0530, navin patidar wrote: > On Thu, Jul 10, 2014 at 12:34 AM, Greg KH wrote: > > On Tue, Jul 01, 2014 at 10:35:09PM +0530, navin patidar wrote: > >> Remove WEXT_PRIV (non-standard) ioctl handlers. > >> > >> Signed-off-by: navin patidar > >> --- > >> drivers/s

RE: scsi-mq V2

2014-07-09 Thread Elliott, Robert (Server Storage)
> -Original Message- > From: Jens Axboe [mailto:ax...@kernel.dk] > Sent: Wednesday, 09 July, 2014 2:38 PM > To: dgilb...@interlog.com; Christoph Hellwig; James Bottomley; Bart Van > Assche; Elliott, Robert (Server Storage); linux-s...@vger.kernel.org; linux- > ker...@vger.kernel.org > Sub

Re: [PATCH] x86: Configure NX support earlier in setup_arch

2014-07-09 Thread Stuart Hayes
On 7/8/2014 5:38 PM, H. Peter Anvin wrote: > On 07/08/2014 03:34 PM, Stuart Hayes wrote: >> >> I haven't received any responses... is there a problem with the patch? Also >> CCing a couple people. >> > > I was on vacation last week and am still catching up. > > It would also help if you descri

Re: [PATCH 1/5] staging: rtl8188eu: Remove WEXT_PRIV private ioctl handlers

2014-07-09 Thread navin patidar
On Thu, Jul 10, 2014 at 12:34 AM, Greg KH wrote: > On Tue, Jul 01, 2014 at 10:35:09PM +0530, navin patidar wrote: >> Remove WEXT_PRIV (non-standard) ioctl handlers. >> >> Signed-off-by: navin patidar >> --- >> drivers/staging/rtl8188eu/os_dep/ioctl_linux.c | 6335 >> +++- >>

Re: mm: shm: hang in shmem_fallocate

2014-07-09 Thread Hugh Dickins
On Wed, 9 Jul 2014, Hugh Dickins wrote: > On Wed, 9 Jul 2014, Johannes Weiner wrote: > > On Thu, Jun 26, 2014 at 10:36:20PM -0700, Hugh Dickins wrote: > > > Hannes, a question for you please, I just could not make up my mind. > > > In mm/truncate.c truncate_inode_pages_range(), what should be done

Re: [PATCH char-misc-next v2 3/8] dma: MIC X100 DMA Driver

2014-07-09 Thread Greg Kroah-Hartman
On Thu, May 29, 2014 at 02:24:00PM -0700, Sudeep Dutt wrote: > From: Siva Yerramreddy > > This patch implements DMA Engine API for DMA controller on MIC X100 > Coprocessors. DMA h/w is shared between host and card s/w. > Channels 0 to 3 are used by host and 4 to 7 are used by card. > Since the DM

Re: [PATCH char-misc-next v2 2/8] misc: mic: add a bus driver for virtual MIC devices

2014-07-09 Thread Greg Kroah-Hartman
On Thu, May 29, 2014 at 02:23:59PM -0700, Sudeep Dutt wrote: > +/** > + * mbus_device - representation of a device using mbus > + * @priv: private pointer for the driver's use. > + * @mmio_va: virtual address of mmio space > + * @hw_ops: the hardware ops supported by this device. > + * @id: the dev

Re: [PATCH v2 REBASED 00/10] Generic earlyconsole for ARC UART Driver

2014-07-09 Thread Greg Kroah-Hartman
On Fri, Jul 04, 2014 at 12:35:57PM +0530, Vineet Gupta wrote: > Hi Greg, > > On Wednesday 25 June 2014 02:35 AM, Rob Herring wrote: > > On Tue, Jun 24, 2014 at 3:25 AM, Vineet Gupta > > wrote: > >> Hi, > >> > >> This is slightly modified repost of series posted last week > >> http://www.spinics.n

Re: [PATCH 1/1] drivers/base/dma-buf.c: replace dma_buf_uninit_debugfs by debugfs_remove_recursive

2014-07-09 Thread Greg Kroah-Hartman
On Fri, Jun 27, 2014 at 10:32:10PM +0200, Fabian Frederick wrote: > null test before debugfs_remove_recursive is not needed so one line function > dma_buf_uninit_debugfs can be removed. > > This patch calls debugfs_remove_recursive under CONFIG_DEBUG_FS > > Cc: Sumit Semwal > Cc: Greg Kroah-Hart

Re: linux-next: build failure after merge of the staging tree

2014-07-09 Thread Stephen Rothwell
Hi Greg, On Fri, 20 Jun 2014 09:53:53 -0700 Greg KH wrote: > > On Fri, Jun 20, 2014 at 02:18:07PM +1000, Stephen Rothwell wrote: > > Hi Greg, > > > > After merging the staging tree, today's linux-next build (powerpc > > allyesconfig) failed like this: > > > > drivers/staging/board/board.c: In f

Re: [PATCH V8 2/2] serial/uart/8250: Add tunable RX interrupt trigger I/F of FIFO buffers

2014-07-09 Thread Greg Kroah-Hartman
On Fri, May 30, 2014 at 03:16:22PM +0900, Yoshihiro YUNOMAE wrote: > Add tunable RX interrupt trigger I/F of FIFO buffers. > > Serial devices are used as not only message communication devices but control > or sending communication devices. For the latter uses, normally small data > will be exchan

Re: [PATCH v6] pinctrl: to avoid duplicated calling enable_pinmux_setting for a pin

2014-07-09 Thread Bjorn Andersson
On Sun, Jun 8, 2014 at 6:37 PM, wrote: > From: Fan Wu [...] > diff --git a/drivers/pinctrl/pinctrl-msm.c b/drivers/pinctrl/pinctrl-msm.c > index df6dda4c..bdfaba4 100644 > --- a/drivers/pinctrl/pinctrl-msm.c > +++ b/drivers/pinctrl/pinctrl-msm.c > @@ -165,36 +165,11 @@ static int msm_pinmux_enab

Re: [GIT PULL] ARM: SPEAr1310 PCIe updates

2014-07-09 Thread Viresh Kumar
On 9 July 2014 23:39, Olof Johansson wrote: > * Why are you sending a pull request for a repo that is not yours? Because Mohit/Pratyush were facing some issues in pushing patches to the SPEAr public git repo. And so I tried to help them out publicly and nobody objected then: https://lkml.org/lkm

Re: [PATCH] Btrfs: use BUG_ON

2014-07-09 Thread Satoru Takeuchi
Hi Himangi, (2014/07/09 7:21), Himangi Saraogi wrote: Use BUG_ON(x) rather than if(x) BUG(); The semantic patch that fixes this problem is as follows: // @@ identifier x; @@ -if (x) BUG(); +BUG_ON(x); // Strictly speaking, BUG_ON() is "if (unlikely(x)) BUG". Anyway, I consider that put thi

mmotm 2014-07-09-17-08 uploaded

2014-07-09 Thread akpm
The mm-of-the-moment snapshot 2014-07-09-17-08 has been uploaded to http://www.ozlabs.org/~akpm/mmotm/ mmotm-readme.txt says README for mm-of-the-moment: http://www.ozlabs.org/~akpm/mmotm/ This is a snapshot of my -mm patch queue. Uploaded at random hopefully more than once a week. You wi

Re: [PATCH 5/9] perf, tools: Add perf download to download event files v4

2014-07-09 Thread Andi Kleen
> I guess the other alternative is curl.. could u check for this one as well? I looked at this earlier, but it made a complete mess of the download script to handle both. So right now I stayed with wget only. -Andi -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the

  1   2   3   4   5   6   7   8   9   10   >