RE: [PATCH 1/1] scsi: storvsc: Support manual scan of FC hosts on Hyper-V

2016-03-29 Thread KY Srinivasan
> -Original Message- > From: James Bottomley [mailto:james.bottom...@hansenpartnership.com] > Sent: Friday, March 18, 2016 3:41 PM > To: KY Srinivasan ; Martin K. Petersen > > Cc: Christoph Hellwig ; gre...@linuxfoundation.org; > linux-ker...@vger.kernel.org; de...@linuxdriverproject.org

Re: [PATCH] Skein:move macros into appropriate header files

2016-03-29 Thread Greg Kroah-Hartman
On Wed, Mar 30, 2016 at 08:51:42AM +0800, Ming Li wrote: > hi, i move macros into header files. > > > regards, > > > Signed-off-by: Ming Li That's a very strange changelog comment, can you please expand on what you are doing this for? You need to explain _why_ you are doing something, not

[PATCH] Skein:move macros into appropriate header files

2016-03-29 Thread Ming Li
hi, i move macros into header files. regards, Signed-off-by: Ming Li --- drivers/staging/skein/skein_block.c | 322 drivers/staging/skein/skein_block.h | 322 +++- 2 files changed, 321 insertions(+), 323 deletions(-) diff -

Re: [PATCH] Staging: vt6655: defined some arrays as const arrays since they are not changed anywhere in code

2016-03-29 Thread Greg KH
On Sun, Mar 27, 2016 at 03:09:35PM +0300, Claudiu Beznea wrote: > This patch defines byVT3253B0_AGC4_RFMD2959[], byVT3253B0_AIROHA2230[], > byVT3253B0_UW2451[] and byVT3253B0_AGC[] arrays as const arrays > since they are not change anywhere in code. After this change > some lines broke the 80 chara

Re: [PATCH v2] staging: rtl8192e: add more information to Kconfig

2016-03-29 Thread Greg KH
On Sat, Mar 26, 2016 at 01:53:22AM -0700, deutschluz wrote: > The warnings were originating in the Kconfig file and were > essentially, asking for more information to display. A quick google > search returned the patch that separated the rtl driver from 2011 > into several separate drivers in order

Re: [PATCH] Staging: rmda: removes a void pointer

2016-03-29 Thread Greg KH
On Fri, Mar 25, 2016 at 10:56:04PM +0100, Ben Marsh wrote: > Removes a void pointer in user_sdma.c > > Signed-off-by: Ben Marsh > --- > drivers/staging/rdma/hfi1/user_sdma.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Does not apply to the tree :( ___

Re: [PATCH] dma-buf: Update docs for SYNC ioctl

2016-03-29 Thread Tiago Vignatti
On 03/29/2016 06:47 AM, David Herrmann wrote: Hi On Mon, Mar 28, 2016 at 9:42 PM, Tiago Vignatti wrote: Do we have an agreement here after all? David? I need to know whether this fixup is okay to go cause I'll need to submit to Chrome OS then. Sure it is fine. The code is already there, we c

[PATCH] staging: sm750fb: initialize max_d to maximum D value of 6

2016-03-29 Thread Colin King
From: Colin Ian King max_d is not initialized and should be set to the largest D value of 6. Signed-off-by: Colin Ian King --- drivers/staging/sm750fb/ddk750_chip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm75

RE: [PATCH] staging/lustre/libcfs: Copy correct amount in libcfs_ioctl_getdata

2016-03-29 Thread Simmons, James A.
>Commit b8ff756bc351 ("staging: lustre: libcfs: merge code from >libcfs_ioctl into libcfs_ioctl_getdata") introduced a problem >copying just a single pointer worth of data from userspace >instead of whole libcfs_ioctl_hdr structure. >Adjust the copying amount. > >Signed-off-by: Oleg Drokin Acked-

Re: [PATCH] Staging: rtl8723au: Remove unused functions

2016-03-29 Thread Jes Sorensen
Bhumika Goyal writes: > The functions rtw_get_oper_bw23a and rtw_get_oper_ch23aoffset are never > used anywhere in the kernel. So, remove their definition and prototype. > Grepped to find occurences. > > Signed-off-by: Bhumika Goyal > --- > drivers/staging/rtl8723au/core/rtw_wlan_util.c | 10 -

Re: [PATCH] Staging: rtl8723au: Remove function rtw_enqueue_{recvbuf23a/recvbuf23a_to_head}

2016-03-29 Thread Jes Sorensen
Bhumika Goyal writes: > The functions rtw_enqueue_recvbuf23a and rtw_enqueue_recvbuf23a_to_head > are never used anywhere in the kernel. So, remove their definition and > prototype. > Grepped to find occurences. > > Signed-off-by: Bhumika Goyal > --- > drivers/staging/rtl8723au/core/rtw_recv.c

[PATCH v2] Drivers: hv: kvp: fix IP Failover

2016-03-29 Thread Vitaly Kuznetsov
Hyper-V VMs can be replicated to another hosts and there is a feature to set different IP for replicas, it is called 'Failover TCP/IP'. When such guest starts Hyper-V host sends it KVP_OP_SET_IP_INFO message as soon as we finish negotiation procedure. The problem is that it can happen (and it actua

Re: [PATCH 1/6] Drivers: hv: kvp: fix IP Failover

2016-03-29 Thread Vitaly Kuznetsov
"K. Y. Srinivasan" writes: > From: Vitaly Kuznetsov > > Hyper-V VMs can be replicated to another hosts and there is a feature to > set different IP for replicas, it is called 'Failover TCP/IP'. When > such guest starts Hyper-V host sends it KVP_OP_SET_IP_INFO message as soon > as we finish negot

[PATCH] staging: comedi: comedi_fops.c: fix lines over 80 characters

2016-03-29 Thread Ian Abbott
Fix checkpatch.pl warnings about lines over 80 characters in "comedi_fops.c". Signed-off-by: Ian Abbott --- drivers/staging/comedi/comedi_fops.c | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/co

Re: [PATCH] dma-buf: Update docs for SYNC ioctl

2016-03-29 Thread David Herrmann
Hi On Mon, Mar 28, 2016 at 9:42 PM, Tiago Vignatti wrote: > Do we have an agreement here after all? David? I need to know whether this > fixup is okay to go cause I'll need to submit to Chrome OS then. Sure it is fine. The code is already there, we cannot change it. Thanks David ___

Re: [PATCH] Staging: comedi: Fix 'unsigned' warning style

2016-03-29 Thread Ian Abbott
On 27/03/16 18:52, Aniket Sharma wrote: This patch fixes the checkpatch.pl warning: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' + unsigned runflags; WARNING: Prefer 'unsigned int' to bare use of 'unsigned' +struct comedi_device *comedi_dev_get_from_minor(unsigned minor); Sig