Caro usuário

2015-02-05 Thread ADMIN
Caro usuário, Esta é para informá-lo que alguém estava tentando entrar sua conta email de um local diferente {IP:37. 187.138.129 {França: 22/01/2015 02:36 GTM} Se você não estiver por favor siga as instruções abaixo para atualizar e Verifique apenas 12 horas de sua conta para fazer isso fim de

Re: [RFC 00/10] Freescale DPAA B/QMan drivers

2015-02-05 Thread Dan Carpenter
Normally, for staging drivers we just require the TODO and a maintainer and we merge things as-is. There isn't really much review of the code. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverprojec

Re: [PATCH 0/4] Drivers: hv: Further protection for the rescind path

2015-02-05 Thread Vitaly Kuznetsov
KY Srinivasan writes: >> -Original Message- >> From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] >> Sent: Tuesday, February 3, 2015 9:01 AM >> To: KY Srinivasan; de...@linuxdriverproject.org >> Cc: Haiyang Zhang; linux-ker...@vger.kernel.org; Dexuan Cui; Jason Wang >> Subject: [PATCH 0/

Re: [Xen-devel] [Patch v4 01/23] ACPICA: Resources: Provide common part for struct acpi_resource_address structures.

2015-02-05 Thread David Vrabel
On 05/02/15 05:44, Jiang Liu wrote: > > --- a/drivers/xen/xen-acpi-memhotplug.c > +++ b/drivers/xen/xen-acpi-memhotplug.c > @@ -117,8 +117,8 @@ acpi_memory_get_resource(struct acpi_resource *resource, > void *context) > list_for_each_entry(info, &mem_device->res_list, list) { >

Re: [PATCH net-next v2] hyper-v: allow access to vmbus from userspace driver

2015-02-05 Thread Vitaly Kuznetsov
Stephen Hemminger writes: > This is enables the hyper-v driver for DPDK . > The hv_uio driver needs to access the shared vmbus monitor > pages. Why can't we just make vmbus_connection struct public? > > I would also like to put hv_uio in upstream kernel like other > uio drivers, but need to get

Re: [PATCH] staging: gdm724x: gdm_tty: Fix for possible null pointer dereference

2015-02-05 Thread Dan Carpenter
On Wed, Feb 04, 2015 at 06:46:34PM +0100, Rickard Strandqvist wrote: > 2015-02-02 17:36 GMT+01:00 Sudip Mukherjee : > > On Thu, Jan 29, 2015 at 07:46:10PM +0100, Rickard Strandqvist wrote: > >> diff --git a/drivers/staging/gdm724x/gdm_tty.c > >> b/drivers/staging/gdm724x/gdm_tty.c > >> index 00134

Re: [PATCH v2] staging: rtl8192u: r8192U_core: Fix for possible null pointer dereference

2015-02-05 Thread Dan Carpenter
I don't know if this patch was merged before Greg cleaned out his inbox. It's a good patch if you could just clean it up a bit. On Thu, Jan 29, 2015 at 07:59:12PM +0100, Rickard Strandqvist wrote: > Fix a possible null pointer dereference, there is > otherwise a risk of a possible null pointer de

Re: [PATCH v2] staging: rtl8192u: r8192U_core: Fix for possible null pointer dereference

2015-02-05 Thread Sudip Mukherjee
On Thu, Feb 05, 2015 at 03:27:45PM +0300, Dan Carpenter wrote: > I don't know if this patch was merged before Greg cleaned out his inbox. > > It's a good patch if you could just clean it up a bit. > > On Thu, Jan 29, 2015 at 07:59:12PM +0100, Rickard Strandqvist wrote: > > Fix a possible null poi

RE: [PATCH 0/4] Drivers: hv: Further protection for the rescind path

2015-02-05 Thread Dexuan Cui
> -Original Message- > From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] > Sent: Thursday, February 5, 2015 18:10 PM > To: KY Srinivasan > Cc: de...@linuxdriverproject.org; Haiyang Zhang; linux-ker...@vger.kernel.org; > Dexuan Cui; Jason Wang > Subject: Re: [PATCH 0/4] Drivers: hv: Furthe

Re: [PATCH v2] staging: rtl8192u: r8192U_core: Fix for possible null pointer dereference

2015-02-05 Thread Dan Carpenter
On Thu, Feb 05, 2015 at 06:13:22PM +0530, Sudip Mukherjee wrote: > if (driver_info) { > stats->RxIs40MHzPacket = driver_info->BW; > if (stats->RxDrvInfoSize != 0) > TranslateRxSignalStuff819xUsb(skb, stats, driver_info); > } If driver_info is non-NULL then stats->RxDrvInf

[PATCH] staging: lustre: lustre: libcfs: define symbols as static

2015-02-05 Thread Chen Weixiang
-- Best regards, Chen Weixiang (Alex) >From 8de8c7f65f4529e3febb384402344d062f64230b Mon Sep 17 00:00:00 2001 From: Chen Weixiang Date: Thu, 5 Feb 2015 20:07:02 +0800 Subject: [PATCH] staging: lustre: lustre: libcfs: define symbols as static This patch fixes the following warning using sparse

[PATCH] staging: lustre: lustre: libcfs: define symbols as static

2015-02-05 Thread Chen Weixiang
This patch fixes the following warning using sparse - warning: symbol 'libcfs_debug_mb' was not declared. Should it be static? - warning: symbol 'portal_enter_debugger' was not declared. Should it be static? Signed-off-by: Chen Weixiang --- drivers/staging/lustre/lustre/libcfs/debug.c | 4 ++

[PATCH] staging: unisys: Fix typo in comment

2015-02-05 Thread Bastien Nocera
Signed-off-by: Bastien Nocera --- drivers/staging/unisys/virthba/virthba.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/unisys/virthba/virthba.c b/drivers/staging/unisys/virthba/virthba.c index d7a629b..03672d8 100644 --- a/drivers/staging/unisys/virthba/vi

[PATCH v2] staging: rtl8188eu: core: switch with redundant cases

2015-02-05 Thread Nicholas Mc Guire
A few redundant switch cases as well as a redundant if/else within one of the cases was consolidated to a single call. case WIFI_REASSOCREQ,WIFI_PROBEREQ,WIFI_BEACON,WIFI_ACTION all have the same effect - notably also both the if and else in the WIFI_PROBEREQ case. These redundant cases could a

Re: [RFC 00/10] Freescale DPAA B/QMan drivers

2015-02-05 Thread Emil Medve
Hello Dan, Thanks for the reply On 02/05/2015 02:41 AM, Dan Carpenter wrote: > Normally, for staging drivers we just require the TODO and a maintainer > and we merge things as-is. There isn't really much review of the code. I think I'll go for drivers/soc as we have quite a handful of other dr

[PATCH] hyperv: fix sparse warnings

2015-02-05 Thread Lad Prabhakar
From: "Lad, Prabhakar" this patch fixes following sparse warnings: netvsc.c:688:5: warning: symbol 'netvsc_copy_to_send_buf' was not declared. Should it be static? rndis_filter.c:627:5: warning: symbol 'rndis_filter_set_offload_params' was not declared. Should it be static? rndis_filter.c:702:

RE: [Patch v4 01/23] ACPICA: Resources: Provide common part for struct acpi_resource_address structures.

2015-02-05 Thread KY Srinivasan
> -Original Message- > From: Jiang Liu [mailto:jiang@linux.intel.com] > Sent: Wednesday, February 4, 2015 9:44 PM > To: Rafael J. Wysocki; Thomas Gleixner; Bjorn Helgaas; Yinghai Lu; Borislav > Petkov; Lv Zheng; Tony Luck; Fenghua Yu; Ingo Molnar; H. Peter Anvin; > x...@kernel.org; Le

RE: [PATCH 0/4] Drivers: hv: Further protection for the rescind path

2015-02-05 Thread KY Srinivasan
> -Original Message- > From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] > Sent: Thursday, February 5, 2015 2:10 AM > To: KY Srinivasan > Cc: de...@linuxdriverproject.org; Haiyang Zhang; linux- > ker...@vger.kernel.org; Dexuan Cui; Jason Wang > Subject: Re: [PATCH 0/4] Drivers: hv: Furt

Re: [RFC 00/10] Freescale DPAA B/QMan drivers

2015-02-05 Thread Emil Medve
Hello Bob, On 02/05/2015 09:48 AM, Bob Cochran wrote: > On 02/04/2015 09:48 AM, Emil Medve wrote: >> >> Hello, >> >> >> This is the first attempt to publish the Freescale DPAA B/QMan >> drivers. They are >> not to be applied yet. At this stage, this is more or less the >> drivers from the >> Fre

Re: [RFC 00/10] Freescale DPAA B/QMan drivers

2015-02-05 Thread Bob Cochran
On 02/04/2015 09:48 AM, Emil Medve wrote: Hello, This is the first attempt to publish the Freescale DPAA B/QMan drivers. They are not to be applied yet. At this stage, this is more or less the drivers from the Freescale PowerPC SDK roughly squashed and split in a sequence of component patches

use of opaque subject lines

2015-02-05 Thread Al Viro
On Mon, Feb 02, 2015 at 08:13:10PM +0100, Andreas Ruprecht wrote: > On a serious note: I do understand what you're getting at, I don't take > that personally (and I will send a v2 addressing the things above), but > honestly, this kind of answer might just be a real turn-off for other > people try

Re: [PATCH net-next v2] hyper-v: allow access to vmbus from userspace driver

2015-02-05 Thread Stephen Hemminger
On Thu, 05 Feb 2015 12:01:03 +0100 Vitaly Kuznetsov wrote: > Stephen Hemminger writes: > > > This is enables the hyper-v driver for DPDK . > > The hv_uio driver needs to access the shared vmbus monitor > > pages. > > Why can't we just make vmbus_connection struct public? > > > > > I would als

Re: use of opaque subject lines

2015-02-05 Thread Lad, Prabhakar
On Thu, Feb 5, 2015 at 4:30 PM, Al Viro wrote: > On Mon, Feb 02, 2015 at 08:13:10PM +0100, Andreas Ruprecht wrote: > >> On a serious note: I do understand what you're getting at, I don't take >> that personally (and I will send a v2 addressing the things above), but >> honestly, this kind of answe

RE: [PATCH] hyperv: fix sparse warnings

2015-02-05 Thread Haiyang Zhang
> -Original Message- > From: Lad Prabhakar [mailto:prabhakar.cse...@gmail.com] > Sent: Thursday, February 5, 2015 10:07 AM > To: KY Srinivasan; Haiyang Zhang; de...@linuxdriverproject.org > Cc: net...@vger.kernel.org; linux-ker...@vger.kernel.org; Lad, Prabhakar > Subject: [PATCH] hyperv:

Re: use of opaque subject lines

2015-02-05 Thread Joe Perches
On Thu, 2015-02-05 at 16:30 +, Al Viro wrote: > On Mon, Feb 02, 2015 at 08:13:10PM +0100, Andreas Ruprecht wrote: > > > On a serious note: I do understand what you're getting at, I don't take > > that personally (and I will send a v2 addressing the things above), but > > honestly, this kind of

Re: use of opaque subject lines

2015-02-05 Thread Dan Carpenter
Acked-by: Dan Carpenter regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: use of opaque subject lines

2015-02-05 Thread Dan Carpenter
On Thu, Feb 05, 2015 at 09:32:55AM -0800, Joe Perches wrote: > On Thu, 2015-02-05 at 09:31 -0800, Joe Perches wrote: > > On Thu, 2015-02-05 at 20:25 +0300, Dan Carpenter wrote: > > > Acked-by: Dan Carpenter > > > > Maybe I should add sparse too... ;) > > drat, of course I meant smatch... > No n

Re: [PATCH v2] staging: rtl8192u: r8192U_core: Fix for possible null pointer dereference

2015-02-05 Thread Rickard Strandqvist
2015-02-05 13:51 GMT+01:00 Dan Carpenter : > On Thu, Feb 05, 2015 at 06:13:22PM +0530, Sudip Mukherjee wrote: >> if (driver_info) { >> stats->RxIs40MHzPacket = driver_info->BW; >> if (stats->RxDrvInfoSize != 0) >> TranslateRxSignalStuff819xUsb(skb, stats, driver_info); >>

Re: use of opaque subject lines

2015-02-05 Thread Joe Perches
On Thu, 2015-02-05 at 09:31 -0800, Joe Perches wrote: > On Thu, 2015-02-05 at 20:25 +0300, Dan Carpenter wrote: > > Acked-by: Dan Carpenter > > Maybe I should add sparse too... ;) drat, of course I meant smatch... ___ devel mailing list de...@linuxdr

Re: use of opaque subject lines

2015-02-05 Thread Greg Kroah-Hartman
On Thu, Feb 05, 2015 at 04:57:09PM +, Lad, Prabhakar wrote: > On Thu, Feb 5, 2015 at 4:30 PM, Al Viro wrote: > > On Mon, Feb 02, 2015 at 08:13:10PM +0100, Andreas Ruprecht wrote: > > > >> On a serious note: I do understand what you're getting at, I don't take > >> that personally (and I will s

Re: use of opaque subject lines

2015-02-05 Thread Greg Kroah-Hartman
On Thu, Feb 05, 2015 at 09:08:59AM -0800, Joe Perches wrote: > On Thu, 2015-02-05 at 16:30 +, Al Viro wrote: > > On Mon, Feb 02, 2015 at 08:13:10PM +0100, Andreas Ruprecht wrote: > > > > > On a serious note: I do understand what you're getting at, I don't take > > > that personally (and I will

Re: use of opaque subject lines

2015-02-05 Thread Joe Perches
On Thu, 2015-02-05 at 20:35 +0300, Dan Carpenter wrote: > On Thu, Feb 05, 2015 at 09:32:55AM -0800, Joe Perches wrote: > > On Thu, 2015-02-05 at 09:31 -0800, Joe Perches wrote: > > > On Thu, 2015-02-05 at 20:25 +0300, Dan Carpenter wrote: > > > > Acked-by: Dan Carpenter > > > Maybe I should add sp

Re: use of opaque subject lines

2015-02-05 Thread Lad, Prabhakar
On Thu, Feb 5, 2015 at 5:57 PM, Greg Kroah-Hartman wrote: > On Thu, Feb 05, 2015 at 04:57:09PM +, Lad, Prabhakar wrote: >> On Thu, Feb 5, 2015 at 4:30 PM, Al Viro wrote: >> > On Mon, Feb 02, 2015 at 08:13:10PM +0100, Andreas Ruprecht wrote: >> > >> >> On a serious note: I do understand what y

Re: use of opaque subject lines

2015-02-05 Thread Dan Carpenter
On Thu, Feb 05, 2015 at 10:01:39AM -0800, Joe Perches wrote: > On Thu, 2015-02-05 at 20:35 +0300, Dan Carpenter wrote: > > On Thu, Feb 05, 2015 at 09:32:55AM -0800, Joe Perches wrote: > > > On Thu, 2015-02-05 at 09:31 -0800, Joe Perches wrote: > > > > On Thu, 2015-02-05 at 20:25 +0300, Dan Carpente

Re: use of opaque subject lines

2015-02-05 Thread Joe Perches
On Thu, 2015-02-05 at 20:25 +0300, Dan Carpenter wrote: > Acked-by: Dan Carpenter Maybe I should add sparse too... ;) ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: use of opaque subject lines

2015-02-05 Thread Paul Bolle
On Thu, 2015-02-05 at 09:57 -0800, Greg Kroah-Hartman wrote: > And _NEVER_ have automated scripts create patches and send them out. I > only know of ONE person/bot that gets away with this, and you are not > that person, sorry. It it not a script on the receiving end of your > output, so don't us

Re: use of opaque subject lines

2015-02-05 Thread Greg Kroah-Hartman
On Thu, Feb 05, 2015 at 08:32:13PM +0100, Paul Bolle wrote: > On Thu, 2015-02-05 at 09:57 -0800, Greg Kroah-Hartman wrote: > > And _NEVER_ have automated scripts create patches and send them out. I > > only know of ONE person/bot that gets away with this, and you are not > > that person, sorry. I

Re: use of opaque subject lines

2015-02-05 Thread Joe Perches
On Thu, 2015-02-05 at 12:06 -0800, Greg Kroah-Hartman wrote: > On Thu, Feb 05, 2015 at 08:32:13PM +0100, Paul Bolle wrote: > > On Thu, 2015-02-05 at 09:57 -0800, Greg Kroah-Hartman wrote: > > > And _NEVER_ have automated scripts create patches and send them out. I > > > only know of ONE person/bot

[PATCH] staging: lustre: fix coding style errors in drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c

2015-02-05 Thread Tal Shorer
Signed-off-by: Tal Shorer --- drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c b/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c index c539e37..acc2e10

Re: [PATCH] staging: lustre: fix coding style errors in drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c

2015-02-05 Thread Drokin, Oleg
On Feb 5, 2015, at 5:07 PM, Tal Shorer wrote: > Signed-off-by: Tal Shorer > --- > drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c > b/drivers/staging/lu

RE: [PATCH 0/4] Drivers: hv: Further protection for the rescind path

2015-02-05 Thread KY Srinivasan
> -Original Message- > From: Dexuan Cui > Sent: Thursday, February 5, 2015 4:45 AM > To: Vitaly Kuznetsov; KY Srinivasan > Cc: de...@linuxdriverproject.org; Haiyang Zhang; linux- > ker...@vger.kernel.org; Jason Wang > Subject: RE: [PATCH 0/4] Drivers: hv: Further protection for the rescin

Re: [PATCH] hyperv: fix sparse warnings

2015-02-05 Thread David Miller
From: Lad Prabhakar Date: Thu, 5 Feb 2015 15:06:33 + > From: "Lad, Prabhakar" > > this patch fixes following sparse warnings: > > netvsc.c:688:5: warning: symbol 'netvsc_copy_to_send_buf' was not declared. > Should it be static? > rndis_filter.c:627:5: warning: symbol 'rndis_filter_set_o