[PATCH] staging: lustre: o2iblnd: Fix crash in kiblnd_handle_early_rxs()

2018-05-09 Thread Doug Oucharek
Under upstream staging commit 5a2ca43fa54f561c252c2, the list handling code in kiblnd_handle_early_rxs() got changed to list_for_each_safe(). That protects against the current thread from deleting the current entry it is looking at. It does not protect against another thread from deleting the next

Re: [PATCH 15/30] staging: wilc1000: use kmemdup instead of kmalloc in add_network_to_shadow()

2018-05-09 Thread Claudiu Beznea
On 09.05.2018 22:17, Ajay Singh wrote: > On Wed, 9 May 2018 16:42:59 +0300 > Claudiu Beznea wrote: > >> On 07.05.2018 11:43, Ajay Singh wrote: >>> Use kmemdup instead of kmalloc & memcpy in add_network_to_shadow(). >>> >>> Signed-off-by: Ajay Singh

Re: [PATCH 14/30] staging: wilc1000: fix line over 80 chars in add_network_to_shadow()

2018-05-09 Thread Claudiu Beznea
On 09.05.2018 21:42, Ajay Singh wrote: > On Wed, 9 May 2018 16:43:14 +0300 > Claudiu Beznea wrote: > >> On 07.05.2018 11:43, Ajay Singh wrote: >>> Fix line over 80 characters issue reported by checkpatch in >>> add_network_to_shadow() by using temporary variable.

Re: [PATCH 03/30] staging: wilc1000: fix line over 80 chars in handle_key()

2018-05-09 Thread Claudiu Beznea
On 09.05.2018 21:36, Ajay Singh wrote: > On Wed, 9 May 2018 16:44:47 +0300 > Claudiu Beznea wrote: > >> On 07.05.2018 11:43, Ajay Singh wrote: >>> Fix checkpatch reported issue of line over 80 char in handle_key(). >>> Introduced new functions by spliting existing

[PATCH 1/2] staging/vc04_services: Register a platform device for the camera driver.

2018-05-09 Thread Eric Anholt
We had the camera driver set up in a module_init function, but that meant that the camera driver would fail to load if it was initialized before VCHI. This enforces that it loads after we've successfully set up. Signed-off-by: Eric Anholt --- I'm going to try to get Dave

[PATCH 2/2] staging/bcm2835-camera: Set ourselves up as a platform driver.

2018-05-09 Thread Eric Anholt
This allows bcm2835-camera to automatically probe after VCHI has loaded, rather than only successfully probing if the arbitrary probe order chooses us after VCHI. Signed-off-by: Eric Anholt --- .../staging/vc04_services/bcm2835-camera/TODO | 11 ---

Proposal

2018-05-09 Thread Zeliha Omer Faruk
-- Hello Greetings to you please i have a business proposal for you contact me for more detailes asap thanks. Best Regards, Miss.Zeliha ömer faruk Esentepe Mahallesi Büyükdere Caddesi Kristal Kule Binasi No:215 Sisli - Istanbul, Turkey ___ devel

Re: [PATCH v2 11/11] docs: fix broken references with multiple hints

2018-05-09 Thread James Morris
On Wed, 9 May 2018, Mauro Carvalho Chehab wrote: > The script: > ./scripts/documentation-file-ref-check --fix-rst > > Gives multiple hints for broken references on some files. > Manually use the one that applies for some files. > > Signed-off-by: Mauro Carvalho Chehab

[PATCH] staging:r8188eu: Remove rx_handler_data unnecessary read

2018-05-09 Thread Ivan Safonov
Rx handler (assigned with netdev_rx_handler_register, called from __netif_receive_skb()) uses value of dev->rx_handler_data. The driver has no rx handler and does not need it, so remove rx_handler_data read. Signed-off-by: Ivan Safonov --- drivers/staging/rtl8188eu/TODO

Re: [PATCH 15/30] staging: wilc1000: use kmemdup instead of kmalloc in add_network_to_shadow()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:42:59 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Use kmemdup instead of kmalloc & memcpy in add_network_to_shadow(). > > > > Signed-off-by: Ajay Singh > > --- > >

[PATCH v1] Drivers: HV: Send one page worth of kmsg dump over Hyper-V during panic

2018-05-09 Thread Sunil Muthuswamy
In the VM mode on Hyper-V, currently, when the kernel panics, an error code and few register values are populated in an MSR and the Hypervisor notified. This information is collected on the host. The amount of information currently collected is found to be limited and not very

Re: [PATCH 05/30] staging: wilc1000: fix line over 80 chars in host_int_parse_assoc_resp_info()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:44:38 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Fix line over 80 characters issue reported by checkpatch.pl in > > host_int_parse_assoc_resp_info(). > > > > Signed-off-by: Ajay Singh >

Re: [PATCH 30/30] staging: wilc1000: rename s8idxarray to avoid datatype in variable name

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:42:20 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Cleanup patch to have variable names as per linux coding style. > > > > Signed-off-by: Ajay Singh > > --- > >

Re: [PATCH 17/30] staging: wilc1000: fix line over 80 chars in wilc_wfi_cfg_tx_vendor_spec()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:42:45 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Fix line over 80 characters issues reported by checkpatch.pl script > > in wilc_wfi_cfg_tx_vendor_spec() by using temporary variable. > > Simplified 'if else'

Re: [PATCH 14/30] staging: wilc1000: fix line over 80 chars in add_network_to_shadow()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:43:14 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Fix line over 80 characters issue reported by checkpatch in > > add_network_to_shadow() by using temporary variable. > > I, personally, don't like this way of

Re: [PATCH 08/30] staging: wilc1000: fix line over 80 chars in host_int_parse_assoc_resp_info()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:43:37 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Fix line over 80 characters issue in > > host_int_parse_assoc_resp_info() by using shorter name for the > > local variable. > > > > Signed-off-by: Ajay Singh

Re: [PATCH 07/30] staging: wilc1000: fix line over 80 characters in host_int_parse_join_bss_param()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:43:59 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Split host_int_parse_join_bss_param() to avoid the line over 80 > > character issue reported by checkpatch.pl script. > > > > Signed-off-by: Ajay Singh

Re: [PATCH 03/30] staging: wilc1000: fix line over 80 chars in handle_key()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:44:47 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Fix checkpatch reported issue of line over 80 char in handle_key(). > > Introduced new functions by spliting existing function to address > > the checkpatch issue. >

Re: [PATCH 06/30] staging: wilc1000: fix line over 80 chars issue in host_int_handle_disconnect()

2018-05-09 Thread Ajay Singh
On Wed, 9 May 2018 16:44:13 +0300 Claudiu Beznea wrote: > On 07.05.2018 11:43, Ajay Singh wrote: > > Fix line over 80 char issue in host_int_handle_disconnect() by using > > temp variable to hold the 'wilc_connect_result' function pointer. > > > > Signed-off-by:

RE: [PATCH V2 5/5] X86: Hyper-V: Consolidate the allocation of the hypercall input page

2018-05-09 Thread Michael Kelley (EOSG)
> -Original Message- > From: k...@linuxonhyperv.com > Sent: Thursday, May 3, 2018 11:08 PM > To: x...@kernel.org; gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > jasow...@redhat.com; >

RE: [PATCH V2 4/5] X86: Hyper-V: Consolidate code for converting cpumask to vpset

2018-05-09 Thread Michael Kelley (EOSG)
> -Original Message- > From: k...@linuxonhyperv.com > Sent: Thursday, May 3, 2018 11:08 PM > To: x...@kernel.org; gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > jasow...@redhat.com; >

RE: [PATCH V2 3/5] X86: Hyper-V: Enhanced IPI enlightenment

2018-05-09 Thread Michael Kelley (EOSG)
> -Original Message- > From: k...@linuxonhyperv.com > Sent: Thursday, May 3, 2018 11:08 PM > To: x...@kernel.org; gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > jasow...@redhat.com; >

RE: [PATCH V2 2/5] X86: Hyper-V: Enable IPI enlightenments

2018-05-09 Thread Michael Kelley (EOSG)
> -Original Message- > From: k...@linuxonhyperv.com > Sent: Thursday, May 3, 2018 11:08 PM > To: x...@kernel.org; gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > jasow...@redhat.com; >

RE: [PATCH V2 1/5] X86: Hyper-V: Enlighten APIC access

2018-05-09 Thread Michael Kelley (EOSG)
> -Original Message- > From: k...@linuxonhyperv.com > Sent: Thursday, May 3, 2018 11:08 PM > To: x...@kernel.org; gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > jasow...@redhat.com; >

Re: simplify procfs code for seq_file instances V2

2018-05-09 Thread Alexey Dobriyan
On Sun, May 06, 2018 at 06:45:31PM +0100, Al Viro wrote: > On Sun, May 06, 2018 at 08:19:49PM +0300, Alexey Dobriyan wrote: > > @@ -62,9 +62,9 @@ struct proc_dir_entry { > > umode_t mode; > > u8 namelen; > > #ifdef CONFIG_64BIT > > -#define SIZEOF_PDE_INLINE_NAME (192-139) > >

Re: [PATCH 01/28] staging: most: allocate only all requested memory

2018-05-09 Thread Greg KH
On Wed, May 09, 2018 at 05:18:47PM +0200, Christian Gromm wrote: > On 09.05.2018 16:54, Dan Carpenter wrote: > > On Wed, May 09, 2018 at 04:09:21PM +0200, Christian Gromm wrote: > > > On 09.05.2018 15:19, Dan Carpenter wrote: > > > > On Tue, May 08, 2018 at 11:44:49AM +0200, Christian Gromm wrote:

Re: [PATCH 01/28] staging: most: allocate only all requested memory

2018-05-09 Thread Christian Gromm
On 09.05.2018 16:54, Dan Carpenter wrote: On Wed, May 09, 2018 at 04:09:21PM +0200, Christian Gromm wrote: On 09.05.2018 15:19, Dan Carpenter wrote: On Tue, May 08, 2018 at 11:44:49AM +0200, Christian Gromm wrote: This prohibits the allocation of the memory for the MBOs if only the part of

Re: [PATCH v2] hv_netvsc: Fix net device attach on older Windows hosts

2018-05-09 Thread Stephen Hemminger
On Wed, 9 May 2018 10:17:34 +0200 Mohammed Gamal wrote: > On older windows hosts the net_device instance is returned to > the caller of rndis_filter_device_add() without having the presence > bit set first. This would cause any subsequent calls to network device > operations

Re: [PATCH 01/28] staging: most: allocate only all requested memory

2018-05-09 Thread Dan Carpenter
On Wed, May 09, 2018 at 04:09:21PM +0200, Christian Gromm wrote: > On 09.05.2018 15:19, Dan Carpenter wrote: > > On Tue, May 08, 2018 at 11:44:49AM +0200, Christian Gromm wrote: > > > This prohibits the allocation of the memory for the MBOs if only the > > > part of the MBOs, requested by the

Re: [PATCH 09/28] staging: most: i2c: avoid polling in case of misconfig

2018-05-09 Thread Christian Gromm
On 09.05.2018 15:46, Dan Carpenter wrote: On Tue, May 08, 2018 at 11:44:57AM +0200, Christian Gromm wrote: This patch prevents the driver from falling back to polling mode in case of IRQ misconfiguration. Signed-off-by: Christian Gromm ---

Re: [PATCH 01/28] staging: most: allocate only all requested memory

2018-05-09 Thread Christian Gromm
On 09.05.2018 15:19, Dan Carpenter wrote: On Tue, May 08, 2018 at 11:44:49AM +0200, Christian Gromm wrote: This prohibits the allocation of the memory for the MBOs if only the part of the MBOs, requested by the application, may be allocated. The function arm_mbo_chain, if cannot allocate all

Re: [PATCH 09/28] staging: most: i2c: avoid polling in case of misconfig

2018-05-09 Thread Dan Carpenter
On Tue, May 08, 2018 at 11:44:57AM +0200, Christian Gromm wrote: > This patch prevents the driver from falling back to polling mode > in case of IRQ misconfiguration. > > Signed-off-by: Christian Gromm > --- > drivers/staging/most/i2c/i2c.c | 18 ++

Re: [PATCH 03/30] staging: wilc1000: fix line over 80 chars in handle_key()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Fix checkpatch reported issue of line over 80 char in handle_key(). > Introduced new functions by spliting existing function to address the > checkpatch issue. > > Signed-off-by: Ajay Singh > --- >

Re: [PATCH 05/30] staging: wilc1000: fix line over 80 chars in host_int_parse_assoc_resp_info()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Fix line over 80 characters issue reported by checkpatch.pl in > host_int_parse_assoc_resp_info(). > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/host_interface.c | 37 > ++- > 1

Re: [PATCH 06/30] staging: wilc1000: fix line over 80 chars issue in host_int_handle_disconnect()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Fix line over 80 char issue in host_int_handle_disconnect() by using > temp variable to hold the 'wilc_connect_result' function pointer. > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/host_interface.c | 8

Re: [PATCH 13/30] staging: wilc1000: rename clear_duringIP() to avoid camelCase issue

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Rename clear_duringIP() function to avoid camelCase issue reported by > checkpatch.pl script. > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 4 ++-- > 1 file changed, 2

Re: [PATCH 07/30] staging: wilc1000: fix line over 80 characters in host_int_parse_join_bss_param()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Split host_int_parse_join_bss_param() to avoid the line over 80 > character issue reported by checkpatch.pl script. > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/host_interface.c | 247 >

Re: [PATCH 08/30] staging: wilc1000: fix line over 80 chars in host_int_parse_assoc_resp_info()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Fix line over 80 characters issue in host_int_parse_assoc_resp_info() by > using shorter name for the local variable. > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/host_interface.c | 9 + > 1 file

Re: [PATCH 15/30] staging: wilc1000: use kmemdup instead of kmalloc in add_network_to_shadow()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Use kmemdup instead of kmalloc & memcpy in add_network_to_shadow(). > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff

Re: [PATCH 17/30] staging: wilc1000: fix line over 80 chars in wilc_wfi_cfg_tx_vendor_spec()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Fix line over 80 characters issues reported by checkpatch.pl script in > wilc_wfi_cfg_tx_vendor_spec() by using temporary variable. Simplified > 'if else' condition with 'if'. > > Signed-off-by: Ajay Singh > --- >

Re: [PATCH 14/30] staging: wilc1000: fix line over 80 chars in add_network_to_shadow()

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Fix line over 80 characters issue reported by checkpatch in > add_network_to_shadow() by using temporary variable. I, personally, don't like this way of fixing line over 80. From my point of view this introduces a new future patch. Maybe, in future,

Re: [PATCH 28/30] staging: wilc1000: added comments for mutex and spinlock_t

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Added comments for mutex and spinlock_t to avoid checkpatch.pl script. > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/host_interface.h | 2 +- > drivers/staging/wilc1000/wilc_wfi_netdevice.h | 5 +++-- > 2

Re: [PATCH 30/30] staging: wilc1000: rename s8idxarray to avoid datatype in variable name

2018-05-09 Thread Claudiu Beznea
On 07.05.2018 11:43, Ajay Singh wrote: > Cleanup patch to have variable names as per linux coding style. > > Signed-off-by: Ajay Singh > --- > drivers/staging/wilc1000/host_interface.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git

[PATCH v2 11/11] docs: fix broken references with multiple hints

2018-05-09 Thread Mauro Carvalho Chehab
The script: ./scripts/documentation-file-ref-check --fix-rst Gives multiple hints for broken references on some files. Manually use the one that applies for some files. Signed-off-by: Mauro Carvalho Chehab --- Documentation/ABI/obsolete/sysfs-gpio

Re: [PATCH 01/28] staging: most: allocate only all requested memory

2018-05-09 Thread Dan Carpenter
On Tue, May 08, 2018 at 11:44:49AM +0200, Christian Gromm wrote: > This prohibits the allocation of the memory for the MBOs if only the > part of the MBOs, requested by the application, may be allocated. The > function arm_mbo_chain, if cannot allocate all requested MBO, frees all > prior

[PATCH V2 3/3] staging: mt7621-eth: Fix quoted string split across lines

2018-05-09 Thread Kamal Heib
Quoted strings should not be split to help text grep in the source. Signed-off-by: Kamal Heib --- drivers/staging/mt7621-eth/mtk_eth_soc.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/mt7621-eth/mtk_eth_soc.c

[PATCH V2 2/3] staging: mt7621-eth: Fix line over 80 characters

2018-05-09 Thread Kamal Heib
This change fixes all the lines that get over 80 characters. Signed-off-by: Kamal Heib --- drivers/staging/mt7621-eth/ethtool.c| 3 ++- drivers/staging/mt7621-eth/gsw_mt7621.c | 3 ++- drivers/staging/mt7621-eth/mdio.c | 3 ++-

[PATCH V2 0/3] staging: Cleanup some checkpatch issue

2018-05-09 Thread Kamal Heib
This patch set fixes multiple issues reported by checkpatch within the mt7621-eth driver. Changes from v1: - [2] move the mdiobus_get_phy() to new line to make the code more clean. - [3] make sure that string is on a line by itself. Kamal Heib (3): staging: mt7621-eth: Prefer unsigned int to

[PATCH V2 1/3] staging: mt7621-eth: Prefer unsigned int to bare use of unsigned

2018-05-09 Thread Kamal Heib
This commit replaces all the unsigned definitions in favour of 'unsigned int' which is preferred. Signed-off-by: Kamal Heib --- drivers/staging/mt7621-eth/gsw_mt7620.h | 4 ++-- drivers/staging/mt7621-eth/gsw_mt7621.c | 4 ++-- drivers/staging/mt7621-eth/mtk_eth_soc.c |

Re: [PATCH v3 10/14] ARM: dts: imx7: Add video mux, csi and mipi_csi and connections

2018-05-09 Thread Rui Miguel Silva
Hi Philipp, Thanks. On Wed 09 May 2018 at 08:53, Philipp Zabel wrote: On Mon, 2018-05-07 at 17:21 +0100, Rui Miguel Silva wrote: This patch adds the device tree nodes for csi, video multiplexer and mipi-csi besides the graph connecting the necessary endpoints to make the media capture

Re: [PATCH v3 13/14] media: imx7.rst: add documentation for i.MX7 media driver

2018-05-09 Thread Rui Miguel Silva
Hi Randy, On Tue 08 May 2018 at 17:24, Randy Dunlap wrote: Hi, I have a few editing suggestions below... Thank you very much for this. I will incorporate this in the next version. --- Cheers, Rui On 05/07/2018 09:21 AM, Rui Miguel Silva wrote: Add rst document to describe the

Re: [PATCH v3 07/14] media: dt-bindings: add bindings for i.MX7 media driver

2018-05-09 Thread Rui Miguel Silva
Hi Philipp, Thanks for the review. On Tue 08 May 2018 at 14:30, Philipp Zabel wrote: On Mon, 2018-05-07 at 17:21 +0100, Rui Miguel Silva wrote: Add bindings documentation for i.MX7 media drivers. Signed-off-by: Rui Miguel Silva ---

Re: [PATCH v3 12/14] ARM: dts: imx7s-warp: add ov2680 sensor node

2018-05-09 Thread Rui Miguel Silva
Hi Fabio, On Tue 08 May 2018 at 13:28, Fabio Estevam wrote: Hi Rui, On Mon, May 7, 2018 at 1:21 PM, Rui Miguel Silva wrote: + reg_peri_3p15v: regulator-peri-3p15v { + compatible = "regulator-fixed"; + regulator-name =

[staging:staging-next 575/620] drivers/staging/lustre/lustre/llite/vvp_dev.c:487 vvp_pgcache_find() warn: always true condition '(vmpage->index <= 4294967295) => (0-u32max <= u32max)'

2018-05-09 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git staging-next head: 26a5e9b834a647b9d4dfbeef8b42f201cb3293ae commit: 85b6542bbade42935386661cb45d90c4e13766b7 [575/620] staging: lustre: llite: remove redundant lookup in dump_pgcache smatch warnings:

Re: [PATCH v3 09/14] ARM: dts: imx7s: add multiplexer controls

2018-05-09 Thread Philipp Zabel
On Mon, 2018-05-07 at 17:21 +0100, Rui Miguel Silva wrote: > The IOMUXC General Purpose Register has bitfield to control video bus > multiplexer to control the CSI input between the MIPI-CSI2 and parallel > interface. Add that register and mask. > > Signed-off-by: Rui Miguel Silva

Re: [PATCH v3 10/14] ARM: dts: imx7: Add video mux, csi and mipi_csi and connections

2018-05-09 Thread Philipp Zabel
On Mon, 2018-05-07 at 17:21 +0100, Rui Miguel Silva wrote: > This patch adds the device tree nodes for csi, video multiplexer and mipi-csi > besides the graph connecting the necessary endpoints to make the media capture > entities to work in imx7 Warp board. > > Also add the pin control related

[PATCH v2] hv_netvsc: Fix net device attach on older Windows hosts

2018-05-09 Thread Mohammed Gamal
On older windows hosts the net_device instance is returned to the caller of rndis_filter_device_add() without having the presence bit set first. This would cause any subsequent calls to network device operations (e.g. MTU change, channel change) to fail after the device is detached once, returning

Re: possible deadlock in vfs_fallocate

2018-05-09 Thread Eric Biggers
[+ashmem maintainers] On Sun, Apr 29, 2018 at 10:00:03AM -0700, syzbot wrote: > Hello, > > syzbot hit the following crash on upstream commit > cdface5209349930ae1b51338763c8e029971b97 (Sun Apr 29 03:07:21 2018 +) > Merge tag 'for_linus_stable' of >