find customers

2015-05-15 Thread David
How are you doing? We can bring you more business. We can find new customers for you from our email marketing. Just reply back and I can go over options for you. Thanks, David Email: vee...@aliyun.com ___ devel mailing list

[PATCH net-next, 1/1] hv_netvsc: change member name of struct netvsc_stats

2015-05-15 Thread Simon Xiao
Currently the struct netvsc_stats has a member s_sync of type u64_stats_sync. This definition will break kernel build as the macro netdev_alloc_pcpu_stats requires this member name to be syncp. (see netdev_alloc_pcpu_stats definition in ./include/linux/netdevice.h) This patch changes

[PATCH] Staging: dgap: dgap: Fixed spelling errors

2015-05-15 Thread Colin Cronin
Fixed comment spelling errors Signed-off-by Colin Cronin colinpatrickcro...@gmail.com --- drivers/staging/dgap/dgap.c | 2 +- drivers/staging/dgap/dgap.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index

Re: [PATCH] staging: rtl8192u: ieee80211: Silence sparse warning

2015-05-15 Thread Johannes Berg
On Thu, 2015-05-14 at 19:03 -0300, Gaston Gonzalez wrote: If Dan is a newbie to this, I would be a pre-under-newbie or something below that. That being said, understood your explication, I'll look for another way to deal with this warning. I don't even see your original patch, so I have no

[PATCH] staging: rtl8712: fix stack dump

2015-05-15 Thread Sudip Mukherjee
del_timer_sync() is not to be called in the interrupt context unless the timer is irqsafe. but most of the functions where commits 6501c8e7d86cca5f and 382d020f4459cd77 touched were called in interrupt context. And as a result the WARN_ON was getting triggered. Changed to del_timer() in places

[PATCH] staging: rts5208: use temporary variable for readability

2015-05-15 Thread Gujulan Elango, Hari Prasath (H.)
Use a temporary value to hold the SD lock status thereby making the code readable.This also fixes a coding style violation with the braces around the if block. Signed-off-by: Hari Prasath Gujulan Elango hguju...@visteon.com --- drivers/staging/rts5208/sd.c | 7 --- 1 file changed, 4

Re: [PATCH] staging: rts5208: remove always true comparison

2015-05-15 Thread Sudip Mukherjee
On Thu, May 14, 2015 at 06:18:59PM +0300, Dan Carpenter wrote: On Thu, May 14, 2015 at 07:55:59PM +0530, Sudip Mukherjee wrote: the if comparison is always true as anything bitwise and-ing with 0x1E can never be equal to 0x03. Fixes bugzilla:

[PATCH] staging: rts5208: remove variable and check directly

2015-05-15 Thread Gujulan Elango, Hari Prasath (H.)
This trivial patch removes temporary variable to check return value of a function and checks return value directly. Signed-off-by: Hari Prasath Gujulan Elango hguju...@visteon.com --- drivers/staging/rts5208/ms.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git

Re: [PATCH] staging: rts5208: use temporary variable for readability

2015-05-15 Thread Dan Carpenter
On Fri, May 15, 2015 at 12:09:42PM +, Gujulan Elango, Hari Prasath (H.) wrote: Use a temporary value to hold the SD lock status thereby making the code readable.This also fixes a coding style violation with the braces around the if block. This isn't more readable than the original code.

[PATCH 1/1] Drivers: hv: vmbus:Update preferred vmbus protocol version to windows 10.

2015-05-15 Thread K. Y. Srinivasan
From: keith.ma...@microsoft.com keith.ma...@microsoft.com Add support for Windows 10. Signed-off-by: Keith Mange keith.ma...@microsoft.com Signed-off-by: K. Y. Srinivasan k...@microsoft.com --- drivers/hv/connection.c |8 +--- include/linux/hyperv.h |4 +++- 2 files changed, 8

[PATCH 1/1] Fixed coding style issues

2015-05-15 Thread Pedro Marzo Perez
From: pmarzo marzo.pe...@gmail.com This patch just fixes some errors reported by checkpatch.pl script Signed-off-by: Pedro Marzo Perez marzo.pe...@gmail.com --- drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_wep.c | 16 +--- 1 file changed, 5 insertions(+), 11 deletions(-) diff

Re: [PATCH 1/1] Fixed coding style issues

2015-05-15 Thread Greg KH
On Sat, May 16, 2015 at 02:11:06AM +0200, Pedro Marzo Perez wrote: From: pmarzo marzo.pe...@gmail.com This line doesn't match your from: line in your email client, or the line below in the signed-off-by part. Also, please make your subject a bit more descriptive. This patch just fixes some

Halifax Loan Offer

2015-05-15 Thread Halifax Financial Loan Pty
Attn. Pls kindly open the attached Halifax bank loan offer and send your response to us. Halifax Bank Loan.pdf Description: Adobe PDF document ___ devel mailing list de...@linuxdriverproject.org

[PATCH] staging: comedi: fix coding style issues

2015-05-15 Thread Geliang Tang
1) Fixed an error found by checkpatch.pl. ERROR: space required after that ',' (ctx:VxV) ./drivers/ni_mio_common.c:3764 2) Changed register 0x%x to register=0x%x to keep the consistency of this file. 3) The kernel version is next-20150515, 4.1.0-rc3. Signed-off-by: Geliang Tang geliangt

Re: [PATCH 1/4] ozwpan: Use proper check to prevent heap overflow

2015-05-15 Thread Jason A. Donenfeld
On May 15, 2015 4:10 PM, David Laight david.lai...@aculab.com wrote: Why not just check the length. eg: unsigned int data_len = elt-length; if (data_len sizeof(struct oz_get_desc_rsp) + 1) break; Sure.

[PATCH] Staging: dgap: dgap: Fixed spelling errors

2015-05-15 Thread Colin Cronin
Fixed comment spelling errors Signed-off-by: Colin Cronin colinpatrickcro...@gmail.com --- drivers/staging/dgap/dgap.c | 2 +- drivers/staging/dgap/dgap.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index

Re: [PATCH] staging: rtl8192u: ieee80211: Silence sparse warning

2015-05-15 Thread Gaston Gonzalez
On 15/05/15 04:26, Johannes Berg wrote: On Thu, 2015-05-14 at 19:03 -0300, Gaston Gonzalez wrote: If Dan is a newbie to this, I would be a pre-under-newbie or something below that. That being said, understood your explication, I'll look for another way to deal with this warning. I don't even