Re: [PATCH v12][ 06/12] ARM: dts: imx5*, imx6*: correct display-timings nodes.

2014-04-08 Thread Lothar Waßmann
Hi, Shawn Guo wrote: > On Mon, Apr 07, 2014 at 02:44:45PM +0200, Denis Carikli wrote: > > The imx-drm driver can't use the de-active and > > pixelclk-active display-timings properties yet. > > > > Instead the data-enable and the pixel data clock > > polarity are hardcoded in the imx-drm driver. >

[PATCH v6 1/4] [v6 fix] mfd/rtsx_usb: fix possible race condition

2014-04-08 Thread rogerable
From: Roger Tseng Fix two possible race condition generated by misuse of del_timer in rtsx_usb_bulk_transfer_sglist() and uninitialized timers before mfd_add_devices in rtsx_usb_probe(). Signed-off-by: Roger Tseng --- drivers/mfd/rtsx_usb.c | 8 1 file changed, 4 insertions(+), 4 dele

[PATCH v6 3/4] mmc: Add realtek USB sdmmc host driver

2014-04-08 Thread rogerable
From: Roger Tseng Realtek USB SD/MMC host driver provides mmc host support based on the Realtek USB card reader MFD driver. Signed-off-by: Roger Tseng --- drivers/mmc/host/Kconfig |7 + drivers/mmc/host/Makefile |1 + drivers/mmc/host/rtsx_usb_sdmmc.c | 1462 ++

[PATCH v6 4/4] memstick: Add realtek USB memstick host driver

2014-04-08 Thread rogerable
From: Roger Tseng Realtek USB memstick host driver provides memstick host support based on the Realtek USB card reader MFD driver. Signed-off-by: Roger Tseng --- drivers/memstick/host/Kconfig | 10 + drivers/memstick/host/Makefile | 1 + drivers/memstick/host/rtsx_usb_ms.c | 839

[PATCH v6 0/4] Add modules for realtek USB card reader

2014-04-08 Thread rogerable
From: Roger Tseng This patchset adds modules to support Realtek USB vendor specific class flash card reader: one base module in MFD subsystem and two host modules in both mmc and memstick subsystems. The architecture is similar to rtsx_pci. This work is done primarily to replace the staging driv

[PATCH v6 2/4] [v6 fix] mfd/rtsx_usb: add comment in rtsx_usb_suspend

2014-04-08 Thread rogerable
From: Roger Tseng Explain why there is no need to have a symmetric LED turn-on in resume handler while calling rtsx_usb_turn_off_led() in suspend handler. Signed-off-by: Roger Tseng --- drivers/mfd/rtsx_usb.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/mfd/rtsx_usb.c b/dr

[PATCH 2/2] Drivers: hv: vmbus: Implement per-CPU mapping of relid to channel

2014-04-08 Thread K. Y. Srinivasan
Currently the mapping of the relID to channel is done under the protection of a single spin lock. Starting with ws2012, each channel is bound to a specific VCPU in the guest. Use this binding to eliminate the spin lock by setting up per-cpu state for mapping relId to the channel. Signed-off-by: K.

[PATCH 1/2] Drivers: hv: Eliminate the channel spinlock in the callback path

2014-04-08 Thread K. Y. Srinivasan
By ensuring that we set the callback handler to NULL in the channel close path on the same CPU that the channel is bound to, we can eliminate this lock acquisition and release in a performance critical path. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/hv/channel.c

[PATCH 0/2] Eliminate spin locks in the vmbus channel callback path

2014-04-08 Thread K. Y. Srinivasan
Currently we map the channel handle to the channel under the protection of a spin lock. Additionally, we dispatch the channel callback function under the protection of the channel inbound lock (another spin lock). In some recent nework performance runs, the time spent acquiring and releasing these

Re: [PATCH] Staging: bcm: Qos: fixed braces' coding style

2014-04-08 Thread Greg KH
On Wed, Apr 09, 2014 at 01:01:05AM +0200, Luis Ortega wrote: > Fixed badly placed and unnecessary braces. > > PS: Performed as task 10 of the Eudyptula Challenge. > > Signed-off-by: Luis Ortega > --- > drivers/staging/bcm/Qos.c | 174 > +- > 1 file c

[PATCH] Staging: bcm: Qos: fixed braces' coding style

2014-04-08 Thread Luis Ortega
Fixed badly placed and unnecessary braces. PS: Performed as task 10 of the Eudyptula Challenge. Signed-off-by: Luis Ortega --- drivers/staging/bcm/Qos.c | 174 +- 1 file changed, 48 insertions(+), 126 deletions(-) diff --git a/drivers/staging/bcm/Qos

[PATCH net 1/3] Drivers: net: hyperv: Allocate memory for all possible per-pecket information

2014-04-08 Thread K. Y. Srinivasan
An outgoing packet can potentially need per-packet information for all the offloads and VLAN tagging. Fix this issue. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/netvsc_drv.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/driver

[PATCH net 0/3] Fix issues with Heper-V network offload code

2014-04-08 Thread K. Y. Srinivasan
WS2008 R2 does not support udp checksum offload. Furthermore, ws2012 and ws2012 r2 have issues offloading udp checksum from Linux guests. This patch-set addresses these issues as well as other bug fixes. Please apply. K. Y. Srinivasan (3): Drivers: net: hyperv: Allocate memory for all possible p

[PATCH net 2/3] Drivers: net: hyperv: Negotiate suitable ndis version for offload support

2014-04-08 Thread K. Y. Srinivasan
Ws2008R2 supports ndis_version 6.1 and 6.1 is the minimal version required for various offloads. Negotiate ndis_version 6.1 when on ws2008r2. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/netvsc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) d

[PATCH net 0/3] Fix issues with Heper-V network offload code

2014-04-08 Thread K. Y. Srinivasan
WS2008 R2 does not support udp checksum offload. Furthermore, ws2012 and ws2012 r2 have issues offloading udp checksum from Linux guests. This patch-set addresses these issues as well as other bug fixes. Please apply. K. Y. Srinivasan (3): Drivers: net: hyperv: Allocate memory for all possible p

[PATCH net 3/3] Drivers: net: hyperv: Address UDP checksum issues

2014-04-08 Thread K. Y. Srinivasan
ws2008r2 does not support UDP checksum offload. Thus, we cannnot turn on UDP offload in the host. Also, on ws2012 and ws2012 r2, there appear to be an issue with UDP checksum offload. Fix this issue by computing the UDP checksum in the Hyper-V driver. Signed-off-by: K. Y. Srinivasan Reviewed-by:

Re: staging-next: r8723au: Kconfig related nitpicks

2014-04-08 Thread Jes Sorensen
Paul Bolle writes: > Larry, > > 0) I stumbled on two minor Kconfig related issues in the r8723au driver > in staging-next. > > 1) drivers/staging/rtl8723au/include/drv_types.h > Why is CONFIG_BR_EXT used? I couldn't find a Kconfig symbol BR_EXT nor a > preprocessor define for CONFIG_BR_EXT. > > 2)

[GIT PULL] More Staging driver patches for 3.15-rc1

2014-04-08 Thread Greg KH
The following changes since commit 8e0c0832348c7fda1c85d67697cfe4adf077344c: Merge tag 'fbdev-main-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux (2014-04-04 21:28:36 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/st

[PATCH 3/3] Staging:android:uapi:binder.h __packed

2014-04-08 Thread Paul McQuade
WARNING: __packed is preferred over __attribute__((packed)) Signed-off-by: Paul McQuade --- drivers/staging/android/uapi/binder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/android/uapi/binder.h b/drivers/staging/android/uapi/binder.h index 904adb7..dba4

[PATCH] Descriptive Names for comedi addi-data driver

2014-04-08 Thread Georg Gast
Hello, i tried to submit this patch by bugzilla, but i was asked to submit this patch to this mailing list. https://bugzilla.kernel.org/show_bug.cgi?id=73481 Some comedi addi-data driver modules only have very generic description like MODULE_DESCRIPTION("Comedi low-level driver"); The attached p

[PATCH 2/2] Staging:keucr:scsiglue.c-no semicolon terminated

2014-04-08 Thread Paul McQuade
WARNING: do {} while (0) macros should not be semicolon terminated Signed-off-by: Paul McQuade --- drivers/staging/keucr/scsiglue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/keucr/scsiglue.c b/drivers/staging/keucr/scsiglue.c index ac3d34d..fce19a4 10064

[PATCH] Staging:Line6:usbdefs.h parenthesis for Marcos

2014-04-08 Thread Paul McQuade
ERROR: Macros with complex values should be enclosed in parenthesis Signed-off-by: Paul McQuade --- drivers/staging/line6/usbdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/line6/usbdefs.h b/drivers/staging/line6/usbdefs.h index 2d1cc47..48958b5 100644

RE: [PATCH net-next,v4] hyperv: Add support for virtual Receive Side Scaling (vRSS)

2014-04-08 Thread Haiyang Zhang
> -Original Message- > From: Sharat Masetty [mailto:shara...@gmail.com] > Sent: Monday, April 7, 2014 6:13 PM > To: David Miller > Cc: Haiyang Zhang; Linux Netdev List; KY Srinivasan; o...@aepfle.de; > jasow...@redhat.com; linux-ker...@vger.kernel.org; driverdev- > de...@linuxdriverprojec

Re: [visorchipset] invalid opcode: 0000 [#1] PREEMPT SMP

2014-04-08 Thread Romer, Benjamin M
On Tue, 2014-04-08 at 10:53 +0800, Fengguang Wu wrote: > Hi Benjamin, > > > Fengguang, > > > > I ran your script against freshly-checked-out source from staging-next, and > > was not able to reproduce the error with it. My boot log is attached. I > > noticed that your log did not have "Hypervis

[PATCH] Staging:Octeon-usb:octeon-hcd.c return value

2014-04-08 Thread Paul McQuade
return value instead of function. Signed-off-by: Paul McQuade --- drivers/staging/octeon-usb/octeon-hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/octeon-usb/octeon-hcd.c b/drivers/staging/octeon-usb/octeon-hcd.c index 8b8ce72..2d15001 100644 --- a/dri

Re: [PATCH v5] Staging: vt6655: iwctl.c: fix a sparse warning

2014-04-08 Thread Dan Carpenter
On Tue, Apr 08, 2014 at 09:35:02PM +0800, Jimmy Li wrote: > fix a sparse warning and do some clean up. > iwctl.c:1846:35: expected restricted gfp_t [usertype] flags > > Signed-off-by: Jimmy Li > --- Looks good. regards, dan carpenter ___ devel mailin

Re: [PATCH v5 3/3] memstick: Add realtek USB memstick host driver

2014-04-08 Thread Dan Carpenter
On Tue, Apr 08, 2014 at 09:10:13PM +0800, Roger wrote: > On 04/08/2014 07:37 PM, Lee Jones wrote: > >>> > >>Lee, > >> > >>When I prepare my next submission, I found a previous version of > >>this patch set(and only the 1/3 'mfd' part) seems to be merged in > >>the following commit: > >> > >>commit

Re: [PATCH v5 3/3] memstick: Add realtek USB memstick host driver

2014-04-08 Thread Roger
On 04/08/2014 07:37 PM, Lee Jones wrote: Lee, When I prepare my next submission, I found a previous version of this patch set(and only the 1/3 'mfd' part) seems to be merged in the following commit: commit e5744abb2fa3629aa5a94e21ca1eae32ff2fe00b Merge: c29aa15 2d28ca7 Author: Linus Torvalds

Re: [PATCH v4] Staging: vt6655: iwctl.c: fix a sparse warning

2014-04-08 Thread Joe Perches
On Tue, 2014-04-08 at 20:36 +0800, Jimmy Li wrote: > fix a sparse warning and do some clean up. > > Signed-off-by: Jimmy Li The --- line should go here > v1 fix a sparse warning. > (iwctl.c:1846:35: expected restricted gfp_t [usertype] flags) > v2 clear up two unnecessary variable, buf an

Re: [PATCH v12][ 03/12] imx-drm: Correct BGR666 and the board's dts that use them.

2014-04-08 Thread Russell King - ARM Linux
On Mon, Apr 07, 2014 at 02:44:42PM +0200, Denis Carikli wrote: > arch/arm/boot/dts/imx51-apf51dev.dts|2 +- > arch/arm/boot/dts/imx53-m53evk.dts |2 +- > drivers/staging/imx-drm/imx-ldb.c |4 ++-- > drivers/staging/imx-drm/ipu-v3/ipu-dc.c |4 ++-- > 4 files changed,

Re: [PATCH v12][ 12/12] ARM: imx_v6_v7_defconfig: Add more drm drivers.

2014-04-08 Thread Shawn Guo
On Mon, Apr 07, 2014 at 02:44:51PM +0200, Denis Carikli wrote: > The DRM_PANEL_SIMPLE is needed by the eukrea > mbimxsd51's displays. > > Signed-off-by: Denis Carikli Applied, thanks. ___ devel mailing list de...@linuxdriverproject.org http://driverde

Re: [PATCH v12][ 06/12] ARM: dts: imx5*, imx6*: correct display-timings nodes.

2014-04-08 Thread Shawn Guo
On Mon, Apr 07, 2014 at 02:44:45PM +0200, Denis Carikli wrote: > The imx-drm driver can't use the de-active and > pixelclk-active display-timings properties yet. > > Instead the data-enable and the pixel data clock > polarity are hardcoded in the imx-drm driver. > > So theses properties are now s

Re: [PATCH v5 3/3] memstick: Add realtek USB memstick host driver

2014-04-08 Thread Lee Jones
> From: Roger Tseng > > Realtek USB memstick host driver provides memstick host support based on > the > Realtek USB card reader MFD driver. > > Signed-off-by: Roger Tseng > --- > drivers/memstick/host/Kconfig | 10 + > drivers/memstick/host/

Re: [PATCH v3] Staging: vt6655: iwctl.c: fix a sparse warning

2014-04-08 Thread Dan Carpenter
On Tue, Apr 08, 2014 at 07:09:27PM +0800, Jimmy Li wrote: > thanks for correcting my patch format. > > Signed-off-by: Jimmy Li > --- > v1 fix a sparse warning. > (iwctl.c:1846:35: expected restricted gfp_t [usertype] flags) > v2 clear up two unnecessary variable, buf and blen. > v3 fix patc

Re: [PATCH] staging: goldfish: Call free_irq in error path

2014-04-08 Thread One Thousand Gnomes
On Tue, 8 Apr 2014 09:15:22 +0300 Tuomas Tynkkynen wrote: > If misc_register failed in goldfish_audio_probe, the already requested > IRQ wouldn't get freed. Add a call to free_irq() like there is in > goldfish_audio_remove(). > > Signed-off-by: Tuomas Tynkkynen Acked-by: Alan Cox ___

[PATCH v3] Staging: vt6655: iwctl.c: fix a sparse warning

2014-04-08 Thread Jimmy Li
thanks for correcting my patch format. Signed-off-by: Jimmy Li --- v1 fix a sparse warning. (iwctl.c:1846:35: expected restricted gfp_t [usertype] flags) v2 clear up two unnecessary variable, buf and blen. v3 fix patch format. drivers/staging/vt6655/iwctl.c |9 ++--- 1 file chang

Re: [PATCH v12][ 07/12] drm: drm_display_mode: add signal polarity flags

2014-04-08 Thread Andrzej Hajda
On 04/08/2014 10:08 AM, Denis Carikli wrote: > On 04/08/2014 08:36 AM, Andrzej Hajda wrote: >> >> Hi Denis, > Hi, > >>> +#define DRM_MODE_FLAG_POL_PIXDATA_NEGEDGE BIT(1) >>> +#define DRM_MODE_FLAG_POL_PIXDATA_POSEDGE BIT(2) >>> +#define DRM_MODE_FLAG_POL_PIXDATA_PRESERVE BIT(3) >> >> What is the

Re: [PATCH v3] Staging: rtl8192e: Fix declaration of symbols

2014-04-08 Thread Dan Carpenter
On Sun, Apr 06, 2014 at 09:26:55PM -0500, Joel Pelaez Jorge wrote: > --- a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c > +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c > @@ -19,6 +19,7 @@ > > #include > #include "rtl_core.h" > +#include "rtl_wx.h" > > #define RATE_COUNT 12 > static u32 rtl8

Re: [PATCH v12][ 07/12] drm: drm_display_mode: add signal polarity flags

2014-04-08 Thread Denis Carikli
On 04/08/2014 08:36 AM, Andrzej Hajda wrote: Hi Denis, Hi, +#define DRM_MODE_FLAG_POL_PIXDATA_NEGEDGE BIT(1) +#define DRM_MODE_FLAG_POL_PIXDATA_POSEDGE BIT(2) +#define DRM_MODE_FLAG_POL_PIXDATA_PRESERVE BIT(3) What is the purpose of DRM_MODE_FLAG_POL_PIXDATA_PRESERVE? If 'pres

Re: [PATCH v5 3/3] memstick: Add realtek USB memstick host driver

2014-04-08 Thread Roger
On 04/02/2014 11:16 PM, Lee Jones wrote: On Tue, 01 Apr 2014, Andrew Morton wrote: On Tue, 1 Apr 2014 11:20:32 +0800 Roger wrote: On 03/25/2014 06:44 PM, rogera...@realtek.com wrote: From: Roger Tseng Realtek USB memstick host driver provides memstick host support based on the Realtek US

Re: [PATCH] staging: goldfish: switch from spinlock to mutex

2014-04-08 Thread Dan Carpenter
On Sat, Apr 05, 2014 at 05:38:05PM +0300, Kristina Martšenko wrote: > On 04/04/14 16:30, Dan Carpenter wrote: > > On Fri, Apr 04, 2014 at 02:46:14PM +0300, Kristina Martšenko wrote: > > > >> Yes, I didn't find any interrupt handlers either, which is partially why > >> I thought it was (probably) s