Re: [PATCH 32/41] staging: lustre: llite: restart short read/write for normal IO

2016-10-14 Thread Greg Kroah-Hartman
On Thu, Oct 13, 2016 at 11:45:28PM +0100, James Simmons wrote: > > > On Wed, Oct 12, 2016 at 12:22:35AM +0100, James Simmons wrote: > > > > > > > On Sun, Oct 02, 2016 at 10:28:28PM -0400, James Simmons wrote: > > > > > From: Bobi Jam > > > > > > > > > > If normal IO got short read/write, we'd r

[PATCH v2] staging:vt6656:baseband.h: fix function definition argument without identifier name issue

2016-10-14 Thread Mikhail Golubev
Function definitions arguments should also have an identifier name as reported by checkpatch.pl. Signed-off-by: Mikhail Golubev --- Changes in v2: - Make the changelog comment wrapped at 72 columns. drivers/staging/vt6656/baseband.h | 20 ++-- 1 file changed, 10 insertions(+),

Re: [lustre-devel] [patch] Staging: lustre: indent an if statement

2016-10-14 Thread Martin Hecht
On 10/14/2016 12:38 AM, James Simmons wrote: >> This if statement wasn't intended. just to be sure: in conjunction with the subject of the mail this should read "indented" instead of "intended", right? - otherwise this would result in a slightly different patch... > Acked-by: James Simmons > >

Re: [lustre-devel] [patch] Staging: lustre: indent an if statement

2016-10-14 Thread Dan Carpenter
On Fri, Oct 14, 2016 at 12:36:25PM +0200, Martin Hecht wrote: > On 10/14/2016 12:38 AM, James Simmons wrote: > >> This if statement wasn't intended. > just to be sure: in conjunction with the subject of the mail this should > read "indented" instead of "intended", right? Yes, yes. I should just a

[PATCH 1/2] vmbus: add support for dynamic device id's

2016-10-14 Thread Stephen Hemminger
From: Stephen Hemminger This patch adds sysfs interface to dynamically bind new UUID values to existing VMBus device. This is useful for a generic UIO driver to act similar to uio_pci_generic. Signed-off-by: Stephen Hemminger --- drivers/hv/vmbus_drv.c | 169 +++

[PATCH 2/2] staging: hv_uio userspace i/o driver for Hyper-V VMbus

2016-10-14 Thread Stephen Hemminger
From: Stephen Hemminger This is a staging driver to enable userspace networking on VMBus. Hyper-V does not support guest IOMMU, so this is an alternative to allow for applications using DPDK. This is based on earlier GPL driver developed for DPDK by Brocade. Signed-off-by: Stephen Hemminger --

Re: [PATCH 2/2] staging: hv_uio userspace i/o driver for Hyper-V VMbus

2016-10-14 Thread Greg KH
On Fri, Oct 14, 2016 at 09:43:52AM -0700, Stephen Hemminger wrote: > From: Stephen Hemminger > > This is a staging driver to enable userspace networking on VMBus. > Hyper-V does not support guest IOMMU, so this is an alternative > to allow for applications using DPDK. > > This is based on earlie

Re: [PATCH 2/2] staging: hv_uio userspace i/o driver for Hyper-V VMbus

2016-10-14 Thread Greg KH
On Fri, Oct 14, 2016 at 07:06:47PM +0200, Greg KH wrote: > On Fri, Oct 14, 2016 at 09:43:52AM -0700, Stephen Hemminger wrote: > > From: Stephen Hemminger > > > > This is a staging driver to enable userspace networking on VMBus. > > Hyper-V does not support guest IOMMU, so this is an alternative >

Re: [PATCH 2/2] staging: hv_uio userspace i/o driver for Hyper-V VMbus

2016-10-14 Thread Stephen Hemminger
On Fri, 14 Oct 2016 19:06:47 +0200 Greg KH wrote: > On Fri, Oct 14, 2016 at 09:43:52AM -0700, Stephen Hemminger wrote: > > From: Stephen Hemminger > > > > This is a staging driver to enable userspace networking on VMBus. > > Hyper-V does not support guest IOMMU, so this is an alternative > > to

[PATCH] staging: dgnc: replace DGNC_VERIFY_BOARD macro

2016-10-14 Thread Fernando Apesteguia
The patch replaces the macro with a function (dgnc_get_board) and substitutes the macro statement with a call to that function and a comparison on the returned value. This removes a checkpatch warning. Signed-off-by: Fernando Apesteguia --- drivers/staging/dgnc/dgnc_sysfs.c | 74 +++

[PATCH 10/25] [media] radio-bcm2048: don't ignore errors

2016-10-14 Thread Mauro Carvalho Chehab
Remove this warning: drivers/staging/media/bcm2048/radio-bcm2048.c: In function 'bcm2048_set_rds_no_lock': drivers/staging/media/bcm2048/radio-bcm2048.c:467:6: warning: variable 'err' set but not used [-Wunused-but-set-variable] int err; ^~~ By returning the error code. Signed-off-by:

[patch] greybus: fix a leak on error in gb_module_create()

2016-10-14 Thread Dan Carpenter
We should release ->interfaces[0] as well. Fixes: b15d97d77017 ("greybus: core: add module abstraction") Signed-off-by: Dan Carpenter diff --git a/drivers/staging/greybus/module.c b/drivers/staging/greybus/module.c index 69f67dd..660b467 100644 --- a/drivers/staging/greybus/module.c +++ b/driver