[PATCH 5/6] staging: wlan-ng: Open parenthesis alignemnt fix

2016-01-08 Thread Pranjal Bhor
Alignments on new lines have been matched with the open parenthesis. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c

Re: [PATCH 1/6] drivers/staging/wlan-ng/p80211conv.c: Fixed block comment coding style

2016-01-08 Thread Dan Carpenter
You're almost there... Just resend with the correct patch prefix. [PATCH 1/6] Staging: wlan-ng: Fixed block comment coding style in p80211conv.c regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org

Re: [PATCH 1/1] scsi: scsi_transport_fc: Fix a bug in the error handling function

2016-01-08 Thread James Bottomley
On Fri, 2016-01-08 at 18:58 +, KY Srinivasan wrote: > > > -Original Message- > > From: James Bottomley [mailto:james.bottom...@hansenpartnership.com > > ] > > Sent: Thursday, January 7, 2016 3:49 PM > > To: KY Srinivasan ; gre...@linuxfoundation.org; > > linux- > >

RE: [PATCH 1/1] scsi: scsi_transport_fc: Fix a bug in the error handling function

2016-01-08 Thread KY Srinivasan
> -Original Message- > From: James Bottomley [mailto:james.bottom...@hansenpartnership.com] > Sent: Thursday, January 7, 2016 3:49 PM > To: KY Srinivasan ; gre...@linuxfoundation.org; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; oher...@suse.com; >

Re: [patch] storvsc: fix typo in MODULE_PARM_DESC

2016-01-08 Thread Martin K. Petersen
> "Dan" == Dan Carpenter writes: Dan> The module_param is "storvsc_vcpus_per_sub_channel" so we need to Dan> use that for MODULE_PARM_DESC() as well. Applied to 4.5/scsi-queue. -- Martin K. Petersen Oracle Linux Engineering

[PATCH 1/6] drivers/staging/wlan-ng/p80211conv.c: Fixed block comment coding style

2016-01-08 Thread Pranjal Bhor
Block comments now end with '*/' on a newline and all lines of block comments now begin with '*' Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 37 ++-- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git

[PATCH 3/6] drivers/staging/wlan-ng/p80211conv.c: Unnecessary blank lines removed

2016-01-08 Thread Pranjal Bhor
Blank lines after opening curly braces and before closing curly braces have been removed. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c

[PATCH 2/6] drivers/staging/wlan-ng/p80211conv.c: Logical continuation fix

2016-01-08 Thread Pranjal Bhor
Logical continuation added to the 'if', 'else if' and 'else' blocks. Logical operators now follow after conditions on the same line. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 47 ++-- 1 file changed, 24

[PATCH 6/6] drivers/staging/wlan-ng/p80211conv.c: NULL compare fixes

2016-01-08 Thread Pranjal Bhor
Elegance added to NULL comparisons. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c b/drivers/staging/wlan-ng/p80211conv.c index

[PATCH 5/6] drivers/staging/wlan-ng/p80211conv.c: Open parenthesis alignemnt fix

2016-01-08 Thread Pranjal Bhor
Alignments on new lines have been matched with the open parenthesis. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c

[PATCH 4/6] drivers/staging/wlan-ng/p80211conv.c: Spaces after casting operators removed

2016-01-08 Thread Pranjal Bhor
Spaces after the casting operators have been removed. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c

RE: [PATCH net-next] hv_netvsc: don't make assumptions on struct flow_keys layout

2016-01-08 Thread KY Srinivasan
> -Original Message- > From: John Fastabend [mailto:john.fastab...@gmail.com] > Sent: Thursday, January 7, 2016 10:17 PM > To: KY Srinivasan ; Vitaly Kuznetsov > ; Simon Xiao ; Eric Dumazet > > Cc:

Re: [PATCH 1/6] drivers/staging/wlan-ng/p80211conv.c: Fixed block comment coding style

2016-01-08 Thread Dan Carpenter
On Sat, Jan 09, 2016 at 12:20:48AM +0530, Pranjal wrote: > > > On Friday 08 January 2016 11:42 PM, Dan Carpenter wrote: > >You're almost there... Just resend with the correct patch prefix. > > > >[PATCH 1/6] Staging: wlan-ng: Fixed block comment coding style in > >p80211conv.c > > > >regards,

[PATCH 4/6] staging: wlan-ng: Spaces after casting operators removed

2016-01-08 Thread Pranjal Bhor
Spaces after the casting operators have been removed. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c

[PATCH 2/6] staging: wlan-ng: Logical continuation fix

2016-01-08 Thread Pranjal Bhor
Logical continuation added to the 'if', 'else if' and 'else' blocks. Logical operators now follow after conditions on the same line. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 47 ++-- 1 file changed, 24

[PATCH 6/6] staging: wlan-ng: NULL compare fixes

2016-01-08 Thread Pranjal Bhor
Elegance added to NULL comparisons. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c b/drivers/staging/wlan-ng/p80211conv.c index

[PATCH 3/6] staging: wlan-ng: Unnecessary blank lines removed

2016-01-08 Thread Pranjal Bhor
Blank lines after opening curly braces and before closing curly braces have been removed. Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211conv.c

[PATCH 1/6] staging: wlan-ng: Fixed block comment coding style

2016-01-08 Thread Pranjal Bhor
Block comments now end with '*/' on a newline and all lines of block comments now begin with '*' Signed-off-by: Pranjal Bhor --- drivers/staging/wlan-ng/p80211conv.c | 37 ++-- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git

RE: [PATCH 1/1] scsi: scsi_transport_fc: Fix a bug in the error handling function

2016-01-08 Thread KY Srinivasan
> -Original Message- > From: James Bottomley [mailto:james.bottom...@hansenpartnership.com] > Sent: Friday, January 8, 2016 12:27 PM > To: KY Srinivasan ; gre...@linuxfoundation.org; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; oher...@suse.com; >

Re: [PATCH 1/1] scsi: scsi_transport_fc: Fix a bug in the error handling function

2016-01-08 Thread James Bottomley
On Fri, 2016-01-08 at 20:12 +, KY Srinivasan wrote: > > > -Original Message- > > From: James Bottomley [mailto:james.bottom...@hansenpartnership.com > > ] > > Sent: Friday, January 8, 2016 11:21 AM > > To: KY Srinivasan ; gre...@linuxfoundation.org; > > linux- > >

RE: [PATCH net-next] hv_netvsc: don't make assumptions on struct flow_keys layout

2016-01-08 Thread Haiyang Zhang
> -Original Message- > From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] > Sent: Thursday, January 7, 2016 8:28 AM > To: Simon Xiao ; Eric Dumazet > > Cc: Tom Herbert ; net...@vger.kernel.org; KY > Srinivasan

RE: [PATCH 1/1] scsi: scsi_transport_fc: Fix a bug in the error handling function

2016-01-08 Thread KY Srinivasan
> -Original Message- > From: James Bottomley [mailto:james.bottom...@hansenpartnership.com] > Sent: Friday, January 8, 2016 11:21 AM > To: KY Srinivasan ; gre...@linuxfoundation.org; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; oher...@suse.com; >

Attn: Lucky Winner!

2016-01-08 Thread LOTERIA DE CATALUNYA
LOTERIA DE CATALUNYA INTERNATIONAL PROMOTION PROGRAMME/ PRIZE AWARD DEPARTMENT HEAD OFFICE/ CALLE ARABIO NÂș: 67, PUERTA DE SOL, 08046 BARCELONA, SPAIN. DATE: 08/01/2016 Attn: Lucky Winner, We wish to congratulate you over your Email success in our Coca-cola computer Balloting. Your email

Re: [PATCH net-next] hv_netvsc: don't make assumptions on struct flow_keys layout

2016-01-08 Thread Tom Herbert
On Thu, Jan 7, 2016 at 4:52 AM, Eric Dumazet wrote: > On Thu, 2016-01-07 at 10:33 +0100, Vitaly Kuznetsov wrote: >> Recent changes to 'struct flow_keys' (e.g commit d34af823ff40 ("net: Add >> VLAN ID to flow_keys")) introduced a performance regression in netvsc >> driver.

RE: [PATCH v9 4/7] PCI: Add fwnode_handle to pci_sysdata

2016-01-08 Thread Jake Oshins
> -Original Message- > From: ja...@microsoft.com [mailto:ja...@microsoft.com] > Sent: Wednesday, December 9, 2015 2:55 PM > To: gre...@linuxfoundation.org; KY Srinivasan ; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de; >

Re: [PATCH] staging/ion: Add support to get ion handle from dma buf

2016-01-08 Thread Sudip Mukherjee
On Thu, Jan 07, 2016 at 11:57:34AM +0300, Dan Carpenter wrote: > Hm... Perhaps I should be CC'ing LKML more often. What's the rule on > this, should I just send bugfixes to LKML and whitespace changes to only > subsystem list? All my patches (whitespace, bugfix, build fail) always has CC to

Re: [PATCH 1/6] staging: wlan-ng: Fixed block comment coding style

2016-01-08 Thread Pranjal
On Saturday 09 January 2016 09:58 AM, Sudip Mukherjee wrote: On Sat, Jan 09, 2016 at 12:29:21AM +0530, Pranjal Bhor wrote: Block comments now end with '*/' on a newline and all lines of block comments now begin with '*' Signed-off-by: Pranjal Bhor --- something is

[PATCH 0/2] scsi: storvsc: Miscellaneous fixes

2016-01-08 Thread K. Y. Srinivasan
Some miscellaneous fixes. K. Y. Srinivasan (2): scsi: storvsc: Install the storvsc specific timeout handler for FC devices scsi: storvsc: Use the specified target ID in device lookup drivers/scsi/storvsc_drv.c | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) --

[PATCH 1/2] scsi: storvsc: Install the storvsc specific timeout handler for FC devices

2016-01-08 Thread K. Y. Srinivasan
The default timeout routine used for FC transport is not suitable for FC devices managed by storvsc since FC devices managed by storvsc driver do not have an rport associated with them. Use the time out handler used for SCSI devices for FC devices as well. Signed-off-by: K. Y. Srinivasan

[PATCH 2/2] scsi: storvsc: Use the specified target ID in device lookup

2016-01-08 Thread K. Y. Srinivasan
The current code assumes that there is only one target in device lookup. Fix this bug. This will alow us to correctly handle hot reomoval of LUNs. Signed-off-by: K. Y. Srinivasan --- drivers/scsi/storvsc_drv.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-)

[patch] staging: rdma: shift wrapping bug in c2_get_dma_mr()

2016-01-08 Thread Dan Carpenter
We should be using all 64 bits of page_list[i] instead of just the lower 32. Signed-off-by: Dan Carpenter diff --git a/drivers/staging/rdma/amso1100/c2_provider.c b/drivers/staging/rdma/amso1100/c2_provider.c index de8d10e..ac6a6ff 100644 ---

Re: [patch] staging: rdma: shift wrapping bug in c2_get_dma_mr()

2016-01-08 Thread Christoph Hellwig
Looks fine. Doug: what's the status of the staged out drivers? I thought we were going to delete them for 4.5? ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [patch] storvsc: fix typo in MODULE_PARM_DESC

2016-01-08 Thread Matthew R. Ochs
Reviewed-by: Matthew R. Ochs ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

[PATCH] Staging: android: Fix brace coding style warning in sync_debug.c

2016-01-08 Thread Bopamo Osaisai
This is a patch to the sync_debug.c file that rectifies a brace warning that was found with the checkpatch.pl tool Signed-off-by: Bopamo Osaisai --- drivers/staging/android/sync_debug.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git