Re: [PATCH v2 06/11] staging/android: turn fence_info into a __u64 pointer

2016-02-03 Thread Maarten Lankhorst
Op 02-02-16 om 21:28 schreef Gustavo Padovan: > Hi Maarten, > > 2016-02-02 Maarten Lankhorst : > >> Op 02-02-16 om 14:23 schreef Gustavo Padovan: >>> From: Gustavo Padovan >>> >>> Making fence_info a pointer enables us to extend the struct in the future >>> without breaking the ABI. >>> >>> v2: us

Re: [PATCH v4] misc: Move panel driver out of staging

2016-02-03 Thread Ksenija Stanojević
On Wed, Feb 3, 2016 at 10:19 AM, Joe Perches wrote: > On Wed, 2016-02-03 at 08:15 +0100, Ksenija Stanojevic wrote: >> Move panel driver from drivers/staging/panel to drivers/misc. > [] >> diff --git a/MAINTAINERS b/MAINTAINERS > [] >> @@ -10393,8 +10393,10 @@ F: drivers/staging/nvec/ >> >> STAG

[PATCH v5] misc: Move panel driver out of staging

2016-02-03 Thread Ksenija Stanojevic
Move panel driver from drivers/staging/panel to drivers/misc. Signed-off-by: Ksenija Stanojevic Acked-by: Willy Tarreau --- Changes in v5: - relocate the entire section to the appropriate place alphabetically in the MAINTAINER file. Changes in v4: - modify driver locatio

Re: [PATCHv2] staging: android: ion: use the manged version of DMA memory allocation

2016-02-03 Thread Robin Murphy
On 03/02/16 06:49, Gujulan Elango, Hari Prasath (H.) wrote: From: Hari Prasath Gujulan Elango Use the managed version of the dma_alloc_coherent() i.e. the dmam_alloc_coherent() & accordingly cleanup the error handling part.Also,remove the references to dma_free_coherent That last aspect looks

Re: [PATCH v4] misc: Move panel driver out of staging

2016-02-03 Thread Joe Perches
On Wed, 2016-02-03 at 08:15 +0100, Ksenija Stanojevic wrote: > Move panel driver from drivers/staging/panel to drivers/misc. [] > diff --git a/MAINTAINERS b/MAINTAINERS [] > @@ -10393,8 +10393,10 @@ F: drivers/staging/nvec/ >   >  STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER Apologies for not noti

Re: [PATCH net-next] hv_netvsc: Increase delay for RNDIS_STATUS_NETWORK_CHANGE

2016-02-03 Thread Vitaly Kuznetsov
Haiyang Zhang writes: > We simulates a link down period for RNDIS_STATUS_NETWORK_CHANGE message to > trigger DHCP renew. User daemons may need multiple seconds to trigger the > link down event. (e.g. ifplugd: 5sec, network-manager: 4sec.) So update > this link down period to 10 sec to properly tr

Re: [PATCH 1/1] staging: coding style cleanups for staging/most/mostcore driver

2016-02-03 Thread Dan Carpenter
On Tue, Feb 02, 2016 at 06:57:46AM +0530, Bijosh Thykkoottathil wrote: > Gentle reminder. Wait for two more weeks before reminding us. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/ma

[PATCH v3 05/11] staging/android: remove len field from struct sync_fence_info

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan After removing driver_data struct sync_fence_info has now a fixed size, thus it doesn't need any field to tell its size, it is already known. Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c | 4 +--- drivers/staging/android/uapi/sync.h | 2 -- 2 fil

[PATCH v3 01/11] staging/android: remove SYNC_WAIT ioctl

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan This ioctl is replicating the work of poll() syscall so let's take the opportunity that this is still on staging tree and remove the duplication and force new users to use the poll() standard interface. Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c

[PATCH v3 06/11] staging/android: turn fence_info into a __u64 pointer

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan Turn sync_fence_info into __u64 type enable us to extend the struct in the future without breaking the ABI. v2: use type __u64 for fence_info v3: fix commit message to reflect the v2 change Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c | 2 +- d

[PATCH v3 09/11] staging/android: rename SYNC_IOC_FENCE_INFO

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan We don't use the 'fence' name to refer to sync_file anymore. So rename it to SYNC_IOC_FILE_INFO. Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c | 2 +- drivers/staging/android/uapi/sync.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) di

[PATCH v3 03/11] staging/android: rename sync_file_info_data to sync_file_info

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan info_data is a bit redundant, let's keep it as only sync_file_info. It is also smaller. Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c | 26 +- drivers/staging/android/uapi/sync.h | 9 - 2 files changed, 17 insertio

[PATCH v3 08/11] staging/android: make info->len return only size of sync_fence_info array

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan The len member of struct sync_file_info was returning the size of the whole buffer (struct sync_file_info + sync_fence_infos at the of it). This commit change it to return only the size of the array of sync_fence_infos. It also moves len to be right before the sync_fences_i

[PATCH v3 07/11] staging/android: add num_fences field to struct sync_file_info

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan Inform userspace how many fences are in the sync_fence_info field. Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c | 2 ++ drivers/staging/android/uapi/sync.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/drivers/staging/android/sync.c b/dr

[PATCH v3 02/11] staging/android: rename sync_pt_info to sync_fence_info

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan As struct sync_pt doesn't exist anymore it is a good idea remove any reference to it in the sync_framework. sync_pts were replaced directly by fences and here we rename it to sync_fence_info to let the fence namespace clean. v2: rename fence_info to sync_fence_info (Maarten

[PATCH v3 00/11] android sync framework: clean up IOCTLs and ABI

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan Hi, This patch series clean up IOCTLs and abi of sync framework and it is a follow up on the clean up series I've sent on Jan 21: http://thread.gmane.org/gmane.comp.video.dri.devel/145509 The main changes here are: * remove of SYNC_WAIT ioctl, poll() should be used inst

[PATCH v3 04/11] staging/android: remove driver_data from struct sync_fence_info

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan It is unclear in what situations driver_data should be used thus better do not upstream it for now. If a need arises in the future a discussion can be started to re-add it. Signed-off-by: Gustavo Padovan --- drivers/staging/android/sw_sync.c | 14 -- drivers

[PATCH v3 10/11] staging/android: add flags member to sync ioctl structs

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan Play safe and add flags member to all structs. So we don't need to break API or create new IOCTL in the future if new features that requires flags arises. v2: check if flags are valid (zero, in this case) Signed-off-by: Gustavo Padovan --- drivers/staging/android/sync.c

[PATCH v3 11/11] staging/android: remove redundant comments on sync_merge_data

2016-02-03 Thread Gustavo Padovan
From: Gustavo Padovan struct sync_merge_data already have documentation on top of the struct definition. No need to duplicate it. Signed-off-by: Gustavo Padovan --- drivers/staging/android/uapi/sync.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/and

Re: [PATCH v3 06/11] staging/android: turn fence_info into a __u64 pointer

2016-02-03 Thread Maarten Lankhorst
Op 03-02-16 om 14:25 schreef Gustavo Padovan: > From: Gustavo Padovan > > Turn sync_fence_info into __u64 type enable us to extend the struct in the > future without breaking the ABI. > > v2: use type __u64 for fence_info > > v3: fix commit message to reflect the v2 change > > Signed-off-by: Gusta

RE: [PATCH net-next] hv_netvsc: Increase delay for RNDIS_STATUS_NETWORK_CHANGE

2016-02-03 Thread Haiyang Zhang
> -Original Message- > From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] > Sent: Wednesday, February 3, 2016 8:06 AM > To: Haiyang Zhang > Cc: da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan > ; o...@aepfle.de; linux-ker...@vger.kernel.org; > driverdev-devel@linuxdriverproje

Re: [PATCH net-next] hv_netvsc: Increase delay for RNDIS_STATUS_NETWORK_CHANGE

2016-02-03 Thread Vitaly Kuznetsov
Haiyang Zhang writes: >> -Original Message- >> From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] >> Sent: Wednesday, February 3, 2016 8:06 AM >> To: Haiyang Zhang >> Cc: da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan >> ; o...@aepfle.de; linux-ker...@vger.kernel.org; >> dri

RE: [PATCH net-next] hv_netvsc: Increase delay for RNDIS_STATUS_NETWORK_CHANGE

2016-02-03 Thread Haiyang Zhang
> -Original Message- > From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] > Sent: Wednesday, February 3, 2016 11:06 AM > To: Haiyang Zhang > Cc: da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan > ; o...@aepfle.de; linux-ker...@vger.kernel.org; > driverdev-devel@linuxdriverproj

Re: [PATCHv2] staging: android: ion: use the manged version of DMA memory allocation

2016-02-03 Thread Laura Abbott
On 02/03/2016 04:03 AM, Robin Murphy wrote: On 03/02/16 06:49, Gujulan Elango, Hari Prasath (H.) wrote: From: Hari Prasath Gujulan Elango Use the managed version of the dma_alloc_coherent() i.e. the dmam_alloc_coherent() & accordingly cleanup the error handling part.Also,remove the references

Re: [PATCH RESEND 1/3] PCI: Add fwnode_handle to pci_sysdata

2016-02-03 Thread Bjorn Helgaas
Hi Jake, On Tue, Feb 02, 2016 at 05:41:41PM +, ja...@microsoft.com wrote: > From: Jake Oshins > > This patch adds an fwnode_handle to struct pci_sysdata, which is > used by the next patch in the series when trying to locate an > IRQ domain associated with a root PCI bus. > > Signed-off-by:

RE: [PATCH RESEND 1/3] PCI: Add fwnode_handle to pci_sysdata

2016-02-03 Thread Jake Oshins
> -Original Message- > From: Bjorn Helgaas [mailto:helg...@kernel.org] > Sent: Wednesday, February 3, 2016 10:25 AM > To: Jake Oshins > Cc: gre...@linuxfoundation.org; KY Srinivasan ; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; Haiyang Zhang > ; marc.zyng...@arm.com; > b

Re: [PATCH RESEND 1/3] PCI: Add fwnode_handle to pci_sysdata

2016-02-03 Thread Bjorn Helgaas
On Wed, Feb 03, 2016 at 06:32:20PM +, Jake Oshins wrote: > > -Original Message- > > From: Bjorn Helgaas [mailto:helg...@kernel.org] > > Sent: Wednesday, February 3, 2016 10:25 AM > > To: Jake Oshins > > Cc: gre...@linuxfoundation.org; KY Srinivasan ; linux- > > ker...@vger.kernel.org;

Re: [PATCH RESEND 1/3] PCI: Add fwnode_handle to pci_sysdata

2016-02-03 Thread Marc Zyngier
On 03/02/16 18:51, Bjorn Helgaas wrote: > On Wed, Feb 03, 2016 at 06:32:20PM +, Jake Oshins wrote: >>> -Original Message- >>> From: Bjorn Helgaas [mailto:helg...@kernel.org] >>> Sent: Wednesday, February 3, 2016 10:25 AM >>> To: Jake Oshins >>> Cc: gre...@linuxfoundation.org; KY Sriniv

Re: [PATCH net-next] hv_netvsc: Add feature flags NETIF_F_IPV6_CSUM and NETIF_F_TSO6 for netvsc

2016-02-03 Thread Tom Herbert
On Wed, Feb 3, 2016 at 1:30 PM, Simon Xiao wrote: > 1. Adding NETIF_F_IPV6_CSUM and NETIF_F_TSO6 feature flags which are > supported by Hyper-V platform. NETIF_F_IPV6_CSUM and NETIF_F_IP_CSUM are being deprecated. Please change to use NETIF_F_HW_CSUM (calling helper functions if need). Thanks, T

[PATCH net-next] hv_netvsc: Add feature flags NETIF_F_IPV6_CSUM and NETIF_F_TSO6 for netvsc

2016-02-03 Thread Simon Xiao
1. Adding NETIF_F_IPV6_CSUM and NETIF_F_TSO6 feature flags which are supported by Hyper-V platform. 2. Cleanup the coding style of flag assignment by using macro. Signed-off-by: Simon Xiao Reviewed-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/netvsc_drv.c | 12 +++

Re: [PATCH v3 06/11] staging/android: turn fence_info into a __u64 pointer

2016-02-03 Thread Gustavo Padovan
Hi Maarten, 2016-02-03 Maarten Lankhorst : > Op 03-02-16 om 14:25 schreef Gustavo Padovan: > > From: Gustavo Padovan > > > > Turn sync_fence_info into __u64 type enable us to extend the struct in the > > future without breaking the ABI. > > > > v2: use type __u64 for fence_info > > > > v3: fix c

Re: [PATCH RESEND 3/3] PCI: hv: New paravirtual PCI front-end for Hyper-V VMs

2016-02-03 Thread Bjorn Helgaas
Hi Jake, On Tue, Feb 02, 2016 at 05:41:43PM +, ja...@microsoft.com wrote: > From: Jake Oshins > > This patch introduces a new driver which exposes a root PCI bus whenever a > PCI Express device is passed through to a guest VM under Hyper-V. The > device can be single- or multi-function. The

Re: [PATCH v2 00/13] staging:lustre: split kernel comm between user and kernel

2016-02-03 Thread Greg Kroah-Hartman
On Wed, Dec 23, 2015 at 04:24:39PM -0500, James Simmons wrote: > The kernel communication code used for HSM and changelog is > entangled. Move the user space bits into the liblustreapi. This will > also help for a possible relicensing. The kernel portion is also moved > from libcfs to obdclass. >

RE: [PATCH RESEND 3/3] PCI: hv: New paravirtual PCI front-end for Hyper-V VMs

2016-02-03 Thread Jake Oshins
> -Original Message- > From: Bjorn Helgaas [mailto:helg...@kernel.org] > Sent: Wednesday, February 3, 2016 1:29 PM > To: Jake Oshins > Cc: gre...@linuxfoundation.org; KY Srinivasan ; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; Haiyang Zhang > ; marc.zyng...@arm.com; > bh

Re: [PATCH] staging: lustre: Fix 'unexpected unlock' warning generated by sparse

2016-02-03 Thread Greg Kroah-Hartman
On Sun, Jan 03, 2016 at 08:27:04AM +0530, Niranjan Dighe wrote: > Added annotation '__must_hold' to function ksocknal_send_keepalive_locked > which unlocks the lock ksocknal_data.ksnd_global_lock. As this lock is > not acquired in the current function, sparse warns about context imbalance > > Sign

Re: [PATCH] staging: lustre: add static declarations

2016-02-03 Thread Greg KH
On Tue, Jan 05, 2016 at 02:02:37PM +0800, CHANG FU CHIAO wrote: > Signed-off-by: CHANG FU CHIAO We can't accept patches with no changelog body at all, sorry. Please be descriptive of why you are doing this. thanks, greg k-h ___ devel mailing list de.

Re: [PATCH 5/7] staging:lustre: simplify libcfs_psdev_[open|release]

2016-02-03 Thread Greg Kroah-Hartman
On Tue, Jan 05, 2016 at 02:35:17PM -0500, James Simmons wrote: > From: Parinay Kondekar > > With struct libcfs_device_userstate gone we can move > the remaining code of libcfs_psdev_ops.p_[open|close] > into the libcfs_psdev_[open|release] functions directly. > > Signed-off-by: Parinay Kondekar

Re: [PATCH 1/7] staging:lustre: remove obsolete comment in libcfs_ioctl.h

2016-02-03 Thread Greg Kroah-Hartman
On Tue, Jan 05, 2016 at 02:35:13PM -0500, James Simmons wrote: > From: Parinay Kondekar > > The libcfs_ioctl.h header has a comment about a snapshot ioctl > which has been removed for years. Lets remove the comment to > avoid confusion. Broken out of patch 17492. > > Signed-off-by: Parinay Konde

RE: [PATCH RESEND 1/3] PCI: Add fwnode_handle to pci_sysdata

2016-02-03 Thread Jake Oshins
> -Original Message- > From: Marc Zyngier [mailto:marc.zyng...@arm.com] > Sent: Wednesday, February 3, 2016 10:57 AM > To: Bjorn Helgaas ; Jake Oshins > > Cc: gre...@linuxfoundation.org; KY Srinivasan ; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; Haiyang Zhang > ; bhelg.

Administrador do sistema

2016-02-03 Thread ADMIN
Sua caixa de correio excedeu o limite de armazenamento, que é de 20 GB como conjunto pelo administrador, você está atualmente em execução no 20,9 GB, você pode não ser capaz de Enviar ou receber novas mensagens até que você re-validar sua caixa de correio. Para Revalide sua caixa de correio

Re: [PATCH] staging:lustre:obdclass:linux:convert &foo[0] to foo

2016-02-03 Thread Greg KH
On Thu, Jan 21, 2016 at 01:31:09AM +0530, Bhumika Goyal wrote: > Replace &foo[0] with foo,to follow Linux coding style. That's a coding style change? Why? They aren't always the same thing... thanks, greg k-h ___ devel mailing list de...@linuxdriverp

Re: [PATCH 5/6] staging: lustre: Use ahash

2016-02-03 Thread Greg KH
On Mon, Feb 01, 2016 at 09:36:53PM +0800, Herbert Xu wrote: > This patch replaces uses of the long obsolete hash interface with > ahash. > > Signed-off-by: Herbert Xu > --- > > drivers/staging/lustre/lustre/libcfs/linux/linux-crypto.c | 92 > +++--- > 1 file changed, 52 insertions(+)

Re: [PATCH v3] staging: wilc1000: fix double mutex_unlock on failure path in wilc_wlan_cleanup()

2016-02-03 Thread Greg Kroah-Hartman
On Tue, Dec 22, 2015 at 08:39:26PM +0300, Alexey Khoroshilov wrote: > If hif_read_reg() or hif_write_reg() fail in wilc_wlan_cleanup(), > it calls release_bus() and continues execution. But it leads to double > release_bus() call that means double unlock of g_linux_wlan->hif_cs mutex. > > Found by

Re: [PATCH v2 1/2] staging: wilc1000: fix always return 0 error

2016-02-03 Thread Greg KH
On Thu, Dec 31, 2015 at 12:19:25AM +0530, Souptick Joarder wrote: > HI Glen, > > On Thu, Dec 24, 2015 at 11:32 AM, Glen Lee wrote: > > This patch fixes a bug that return always 0 so it fails every time. > > > > Fixes: c1af9db78950 ("staging: wilc1000: call linux_sdio_init instead of > > io_init"

Re: [PATCH 2/2] staging: wilc1000: wilc_parse_network_info refactoring

2016-02-03 Thread Greg Kroah-Hartman
On Sun, Dec 27, 2015 at 11:59:57PM +0700, Ivan Safonov wrote: > 1) Return value of this function does not used; > 2) wilc_parse_network_info has no reasons to return an error; > 3) kfree does not free memory if argument is NULL. > > Signed-off-by: Ivan Safonov > --- > drivers/staging/wilc1000/co

Re: [PATCH] staging: wilc1000: Move Macro definition

2016-02-03 Thread gre...@linuxfoundation.org
On Mon, Jan 18, 2016 at 01:42:35PM +, Gujulan Elango, Hari Prasath (H.) wrote: > From: Hari Prasath Gujulan Elango > > This patch move's a macro defined in the middle of a structure > definition to make it more readable. > > Signed-off-by: Hari Prasath Gujulan Elango > --- > drivers/stagi

Re: [PATCH 1/2] staging: wilc1000: move wilc_send_config_pkt to wilc_wlan.c

2016-02-03 Thread Greg KH
On Fri, Jan 22, 2016 at 04:36:09PM +0900, Glen Lee wrote: > This patch moves the function wilc_send_config_pkt to wilc_wlan.c which > handles transport since the purpose of the function is sending/getting of > config information. coreconfiguator.[ch] will be rename with frame.[ch] later. > The prin

Re: [PATCH V2 15/26] staging: wilc1000: wilc_set_wfi_drv_handler: add mac index

2016-02-03 Thread Greg KH
On Mon, Jan 25, 2016 at 04:35:19PM +0900, Glen Lee wrote: > Firmware supports sta/ap concurrency so mac index will be passed to wilc. > Remove wilc_set_wfi_drv_handler in scan and connect functions, and call > the function in ndo_open which is wilc_mac_open. > WID_SET_DRV_HANDLER value has been cha

Re: [PATCH 04/13] staging: wilc1000: rename hWILCWFIDrv of wilc_priv structure

2016-02-03 Thread Greg KH
On Wed, Jan 27, 2016 at 11:50:28AM +0900, Glen Lee wrote: > From: Leo Kim > > This patch renames hWILCWFIDrv pointer variable of wilc_priv structure > to hif_drv to avoid camelcase. > > Signed-off-by: Leo Kim > Signed-off-by: Glen Lee > --- > drivers/staging/wilc1000/linux_wlan.c

Re: [PATCH 05/12] staging: wilc1000: wilc_parse_network_info(): renames function variables

2016-02-03 Thread Greg KH
On Thu, Jan 28, 2016 at 04:13:39PM +0900, Leo Kim wrote: > This patch renames to avoid camelcase, changes follow are: > - pu8MsgBuffer to msg_buffer > - ppstrNetworkInfo to ret_network_info > > Signed-off-by: Leo Kim > --- > drivers/staging/wilc1000/coreconfigurator.c | 16 >

Re: [PATCH 1/6] staging: wilc1000: fix warnings for line over 80 characters

2016-02-03 Thread Greg KH
On Fri, Jan 29, 2016 at 03:51:33PM +0900, Leo Kim wrote: > From: Chris Park > > This patch fixes warnings reported by checkpatch.pl > for line over 80 characters > > Signed-off-by: Chris Park > Signed-off-by: Leo Kim This series didn't apply either, please fix up and resend. thanks, greg k-

Re: [PATCH 1/7] staging: wilc1000: wilc_wfi_cfgoperations.c: replaces PRINT_ER with netdev_err

2016-02-03 Thread Greg KH
On Mon, Feb 01, 2016 at 11:11:19AM +0900, Leo Kim wrote: > This patches replaces PRINT_ER with netdev_err. > Removes unnecessary debug logs as well. > > Signed-off-by: Leo Kim > --- > drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 86 > --- > 1 file changed, 31 insertio

Re: [PATCH 01/26] staging: wilc1000: removes function 'wilc_dealloc_network_info()'

2016-02-03 Thread Greg KH
On Tue, Feb 02, 2016 at 09:02:11PM +0900, Leo Kim wrote: > This patch removes function 'wilc_dealloc_network_info()'. > Does not need this function which only free memory. > Therefore, this function is removed and changed directly with kfree. > > Signed-off-by: Leo Kim This series didn't apply e

Re: [PATCH 5/6] staging: lustre: Use ahash

2016-02-03 Thread Herbert Xu
On Wed, Feb 03, 2016 at 02:48:57PM -0800, Greg KH wrote: > > This change breaks the build for me so I can't take this through my > tree. I'm hoping you have a patch earlier in the series that adds these > functions, if so, feel free to take this through your tree: Sorry I should've CCed you on th

Re: [PATCHv2] staging: android: ion: use the manged version of DMA memory allocation

2016-02-03 Thread Gujulan Elango, Hari Prasath (H.)
On Wed, Feb 03, 2016 at 10:11:04AM -0800, Laura Abbott wrote: > On 02/03/2016 04:03 AM, Robin Murphy wrote: > >On 03/02/16 06:49, Gujulan Elango, Hari Prasath (H.) wrote: > >>From: Hari Prasath Gujulan Elango > >> > >>Use the managed version of the dma_alloc_coherent() i.e. the > >>dmam_alloc_cohe

Re: [PATCH] staging: wilc1000: Move Macro definition

2016-02-03 Thread Gujulan Elango, Hari Prasath (H.)
On Wed, Feb 03, 2016 at 03:19:50PM -0800, gre...@linuxfoundation.org wrote: > On Mon, Jan 18, 2016 at 01:42:35PM +, Gujulan Elango, Hari Prasath (H.) > wrote: > > From: Hari Prasath Gujulan Elango > > > > This patch move's a macro defined in the middle of a structure > > definition to make i

[staging:staging-testing 227/256] drivers/staging/wilc1000/wilc_wfi_cfgoperations.c:2833:13: error: 'struct wiphy' has no member named 'wowlan'

2016-02-03 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git staging-testing head: e5349952de5b1138e6275529e4ec08c0ed33777f commit: 73584a40d7484f199a98893e97dcea8b2cbe4986 [227/256] staging: wilc1000: add ops resuem/suspend/wakeup in cfg80211 config: m68k-allmodconfig (attached a