Re: Change PAGE_SIZE from minimum 4k to 12k

2017-05-26 Thread Kevin McKinney
On Thu, May 25, 2017 at 5:55 PM, Pavel Machek wrote: > Hi! > >> >> > Would it be possible to have a custom block device driver read/write >> >> > in increments of 12k instead of reading/writing data in 4k increments? >> >> > In other words, I would like to change the default page

Re: Change PAGE_SIZE from minimum 4k to 12k

2017-05-26 Thread Kevin McKinney
On Thu, May 25, 2017 at 5:55 PM, Pavel Machek wrote: > Hi! > >> >> > Would it be possible to have a custom block device driver read/write >> >> > in increments of 12k instead of reading/writing data in 4k increments? >> >> > In other words, I would like to change the default page size on a >> >>

Re: Change PAGE_SIZE from minimum 4k to 12k

2017-05-25 Thread Kevin McKinney
On Thu, May 25, 2017 at 4:08 PM, Alan Cox <gno...@lxorguk.ukuu.org.uk> wrote: > On Thu, 25 May 2017 19:05:26 +0200 > Pavel Machek <pa...@ucw.cz> wrote: > >> On Tue 2017-05-16 11:27:08, Kevin McKinney wrote: >> > Hi Everyone, >> > >> > Would it

Re: Change PAGE_SIZE from minimum 4k to 12k

2017-05-25 Thread Kevin McKinney
On Thu, May 25, 2017 at 4:08 PM, Alan Cox wrote: > On Thu, 25 May 2017 19:05:26 +0200 > Pavel Machek wrote: > >> On Tue 2017-05-16 11:27:08, Kevin McKinney wrote: >> > Hi Everyone, >> > >> > Would it be possible to have a custom block device driver re

Change PAGE_SIZE from minimum 4k to 12k

2017-05-16 Thread Kevin McKinney
Hi Everyone, Would it be possible to have a custom block device driver read/write in increments of 12k instead of reading/writing data in 4k increments? In other words, I would like to change the default page size on a x86_64 platform (4.4.0 kernel) from 4k to 12k as the minimum page size? I

Change PAGE_SIZE from minimum 4k to 12k

2017-05-16 Thread Kevin McKinney
Hi Everyone, Would it be possible to have a custom block device driver read/write in increments of 12k instead of reading/writing data in 4k increments? In other words, I would like to change the default page size on a x86_64 platform (4.4.0 kernel) from 4k to 12k as the minimum page size? I

[PATCH 04/11 V2] Staging: bcm: Replaces UCHAR with u8 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replace "UCHAR" with "u8" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 82 - 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging

[PATCH 00/11 V2] Staging: bcm: Cleanup Adapter.h

2013-10-28 Thread Kevin McKinney
These patches fix several issues in Adapter.h Kevin McKinney (11): Staging: bcm: Fix WARNING: space prohibited before semicolon. Staging: bcm: Remove typedef for _U_IP_ADDRESS and call directly. Staging: bcm: Replace USHORT with unsigned short in Adapter.h Staging: bcm: Replaces UCHAR

[PATCH 02/11 V2] Staging: bcm: Remove typedef for _U_IP_ADDRESS and call directly.

2013-10-28 Thread Kevin McKinney
This patch removes typedef for _U_IP_ADDRESS, and changes the name of the struct to bcm_ip_address. In addition, any calls to struct "U_IP_ADDRESS" are changed to call directly. Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4 insert

[PATCH 09/11 V2] Staging: bcm: Replace UINT with unsigned int in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "UINT" with "unsigned int" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 84 - 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b

[PATCH 10/11 V2] Staging: bcm: Replace PVOID with void * in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "PVOID" with "void *" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Ada

[PATCH 07/11 V2] Staging: bcm: Replace B_UINT8 with u8 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "B_UINT8" with "u8" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 017

[PATCH 08/11 V2] Staging: bcm: Replace UINT32 with u32 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "UINT32" with "u32" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index f76

[PATCH 06/11 V2] Staging: bcm: Replace B_UINT16 with u16 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "B_UINT16" with "u16" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index a5d

[PATCH 11/11 V2] Staging: bcm: Replace LARGE_INTEGER with u64 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "LARGE_INTEGER" with "u64" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 705

[PATCH 05/11 V2] Staging: bcm: Replace ULONG with unsigned long or u32 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "ULONG" with "unsigned long", or "u32" for ipv4 addresses, in Adapter.h. For ipv4 addresses, all formating is change to match u32 definition. Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 42

[PATCH 01/11 V2] Staging: bcm: Fix WARNING: space prohibited before semicolon.

2013-10-28 Thread Kevin McKinney
This patch removes a space before semicolon as specified by checkpatch.pl. Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index d6c9630..11fd7f1

[PATCH 03/11 V2] Staging: bcm: Replace USHORT with unsigned short in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces "USHORT" with "unsigned short" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/s

[PATCH 03/11 V2] Staging: bcm: Replace USHORT with unsigned short in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces USHORT with unsigned short in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 01/11 V2] Staging: bcm: Fix WARNING: space prohibited before semicolon.

2013-10-28 Thread Kevin McKinney
This patch removes a space before semicolon as specified by checkpatch.pl. Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h

[PATCH 06/11 V2] Staging: bcm: Replace B_UINT16 with u16 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces B_UINT16 with u16 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index a5dab86..01788d3

[PATCH 11/11 V2] Staging: bcm: Replace LARGE_INTEGER with u64 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces LARGE_INTEGER with u64 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 7055b83

[PATCH 05/11 V2] Staging: bcm: Replace ULONG with unsigned long or u32 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces ULONG with unsigned long, or u32 for ipv4 addresses, in Adapter.h. For ipv4 addresses, all formating is change to match u32 definition. Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 42

[PATCH 08/11 V2] Staging: bcm: Replace UINT32 with u32 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces UINT32 with u32 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index f7620ab

[PATCH 10/11 V2] Staging: bcm: Replace PVOID with void * in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces PVOID with void * in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h

[PATCH 07/11 V2] Staging: bcm: Replace B_UINT8 with u8 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces B_UINT8 with u8 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 01788d3

[PATCH 09/11 V2] Staging: bcm: Replace UINT with unsigned int in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replaces UINT with unsigned int in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 84 - 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 00/11 V2] Staging: bcm: Cleanup Adapter.h

2013-10-28 Thread Kevin McKinney
These patches fix several issues in Adapter.h Kevin McKinney (11): Staging: bcm: Fix WARNING: space prohibited before semicolon. Staging: bcm: Remove typedef for _U_IP_ADDRESS and call directly. Staging: bcm: Replace USHORT with unsigned short in Adapter.h Staging: bcm: Replaces UCHAR

[PATCH 02/11 V2] Staging: bcm: Remove typedef for _U_IP_ADDRESS and call directly.

2013-10-28 Thread Kevin McKinney
This patch removes typedef for _U_IP_ADDRESS, and changes the name of the struct to bcm_ip_address. In addition, any calls to struct U_IP_ADDRESS are changed to call directly. Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4

[PATCH 04/11 V2] Staging: bcm: Replaces UCHAR with u8 in Adapter.h

2013-10-28 Thread Kevin McKinney
This patch replace UCHAR with u8 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 82 - 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging

Re: [PATCH 04/11] Staging: bcm: Replace UCHAR with unsigned char in Adapter.h

2013-10-27 Thread Kevin McKinney
On Sun, Oct 27, 2013 at 11:25:55AM +0300, Dan Carpenter wrote: > On Sat, Oct 26, 2013 at 02:15:13AM -0400, Kevin McKinney wrote: > > This patch replace "UCHAR" with "unsigned > > char" in Adapter.h > > I feel like these should pretty much all be u8 inste

Re: [PATCH 04/11] Staging: bcm: Replace UCHAR with unsigned char in Adapter.h

2013-10-27 Thread Kevin McKinney
On Sun, Oct 27, 2013 at 11:25:55AM +0300, Dan Carpenter wrote: On Sat, Oct 26, 2013 at 02:15:13AM -0400, Kevin McKinney wrote: This patch replace UCHAR with unsigned char in Adapter.h I feel like these should pretty much all be u8 instead of unsigned char. Yeah, I thought about changing

[PATCH 07/11] Staging: bcm: Replace B_UINT8 with u8 in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces "B_UINT8" with "u8" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index fbd

[PATCH 02/11] Staging: bcm: Remove typedef for _U_IP_ADDRESS and call directly.

2013-10-26 Thread Kevin McKinney
This patch removes typedef for _U_IP_ADDRESS, and changes the name of the struct to bcm_ip_address. In addition, any calls to struct "U_IP_ADDRESS" are changed to call directly. Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4 insert

[PATCH 05/11] Staging: bcm: Replace ULONG with unsigned long in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace "ULONG" with "unsigned long" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 42 - 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b

[PATCH 10/11] Staging: bcm: Replace PVOID with void * in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces "PVOID" with "void *" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Ada

[PATCH 09/11] Staging: bcm: Replace UINT with unsigned int in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces "UINT" with "unsigned int" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 84 - 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b

[PATCH 06/11] Staging: bcm: Replace B_UINT16 with u16 in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace "B_UINT16" with "u16" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 4c9

[PATCH 04/11] Staging: bcm: Replace UCHAR with unsigned char in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace "UCHAR" with "unsigned char" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 82 - 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b

[PATCH 11/11] Staging: bcm: Replace BOOLEAN with bool in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces "BOOLEAN" with "bool" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 122 - 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/s

[PATCH 03/11] Staging: bcm: Replace USHORT with unsigned short in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace "USHORT" with "unsigned short" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/s

[PATCH 01/11] Staging: bcm: Fix WARNING: space prohibited before semicolon.

2013-10-26 Thread Kevin McKinney
This patch removes a space before semicolon as specified by checkpatch.pl. Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 1d8bf08..c2c0e6c

[PATCH 08/11] Staging: bcm: Replace UINT32 with u32 in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces "UINT32" with "u32" in Adapter.h Signed-off-by: Kevin McKinney --- drivers/staging/bcm/Adapter.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 27b

[PATCH 03/11] Staging: bcm: Replace USHORT with unsigned short in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace USHORT with unsigned short in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 01/11] Staging: bcm: Fix WARNING: space prohibited before semicolon.

2013-10-26 Thread Kevin McKinney
This patch removes a space before semicolon as specified by checkpatch.pl. Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h

[PATCH 08/11] Staging: bcm: Replace UINT32 with u32 in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces UINT32 with u32 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 27b5011

[PATCH 04/11] Staging: bcm: Replace UCHAR with unsigned char in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace UCHAR with unsigned char in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 82 - 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 11/11] Staging: bcm: Replace BOOLEAN with bool in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces BOOLEAN with bool in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 122 - 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 05/11] Staging: bcm: Replace ULONG with unsigned long in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace ULONG with unsigned long in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 42 - 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 10/11] Staging: bcm: Replace PVOID with void * in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces PVOID with void * in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h

[PATCH 09/11] Staging: bcm: Replace UINT with unsigned int in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces UINT with unsigned int in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h | 84 - 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers

[PATCH 06/11] Staging: bcm: Replace B_UINT16 with u16 in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replace B_UINT16 with u16 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index 4c9662b..fbd06a1

[PATCH 07/11] Staging: bcm: Replace B_UINT8 with u8 in Adapter.h

2013-10-26 Thread Kevin McKinney
This patch replaces B_UINT8 with u8 in Adapter.h Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h index fbd06a1

[PATCH 02/11] Staging: bcm: Remove typedef for _U_IP_ADDRESS and call directly.

2013-10-26 Thread Kevin McKinney
This patch removes typedef for _U_IP_ADDRESS, and changes the name of the struct to bcm_ip_address. In addition, any calls to struct U_IP_ADDRESS are changed to call directly. Signed-off-by: Kevin McKinney klmckinn...@gmail.com --- drivers/staging/bcm/Adapter.h |8 1 file changed, 4

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-12 Thread Kevin McKinney
On Mon, Nov 12, 2012 at 11:30 AM, Kevin McKinney wrote: > On Mon, Nov 12, 2012 at 11:02 AM, Muhammad Minhazul Haque > wrote: >> Hello Everyone, >> >> Is there any problem with the patch? Or should I resubmit them again? >> >> If there is any problem regarding

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-12 Thread Kevin McKinney
On Mon, Nov 12, 2012 at 11:02 AM, Muhammad Minhazul Haque wrote: > Hello Everyone, > > Is there any problem with the patch? Or should I resubmit them again? > > If there is any problem regarding the patch, let me know. > > Thanks. Hi Muhammad, Thanks for sending this patch. I have successfully

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-12 Thread Kevin McKinney
On Mon, Nov 12, 2012 at 11:02 AM, Muhammad Minhazul Haque mdminhazulha...@gmail.com wrote: Hello Everyone, Is there any problem with the patch? Or should I resubmit them again? If there is any problem regarding the patch, let me know. Thanks. Hi Muhammad, Thanks for sending this patch. I

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-12 Thread Kevin McKinney
On Mon, Nov 12, 2012 at 11:30 AM, Kevin McKinney klmckinn...@gmail.com wrote: On Mon, Nov 12, 2012 at 11:02 AM, Muhammad Minhazul Haque mdminhazulha...@gmail.com wrote: Hello Everyone, Is there any problem with the patch? Or should I resubmit them again? If there is any problem regarding

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-09 Thread Kevin McKinney
On Thu, Nov 8, 2012 at 11:30 PM, Kevin McKinney wrote: > On Thu, Nov 8, 2012 at 10:27 AM, Muhammad Minhazul Haque > wrote: >> Mr. Kevin and everyone, Also, no need to call me "Mr." ; I am not that important :) >> There was a serious mistake in the previous me

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-09 Thread Kevin McKinney
On Thu, Nov 8, 2012 at 11:30 PM, Kevin McKinney klmckinn...@gmail.com wrote: On Thu, Nov 8, 2012 at 10:27 AM, Muhammad Minhazul Haque mdminhazulha...@gmail.com wrote: Mr. Kevin and everyone, Also, no need to call me Mr. ; I am not that important :) There was a serious mistake in the previous

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-08 Thread Kevin McKinney
On Thu, Nov 8, 2012 at 10:27 AM, Muhammad Minhazul Haque wrote: > Mr. Kevin and everyone, > > There was a serious mistake in the previous message. I forgot to > attach the patch. Please ignore it. I am posting it again. > > I was never reported for that product id 0x0132. Yet you can continue >

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-08 Thread Kevin McKinney
On Thu, Nov 8, 2012 at 10:27 AM, Muhammad Minhazul Haque mdminhazulha...@gmail.com wrote: Mr. Kevin and everyone, There was a serious mistake in the previous message. I forgot to attach the patch. Please ignore it. I am posting it again. I was never reported for that product id 0x0132. Yet

Re: [PATCH] Staging: bcm: fix possible memory leak in bcm_char_ioctl()

2012-09-03 Thread Kevin McKinney
/Bcmchar.c > +++ b/drivers/staging/bcm/Bcmchar.c Acked-by: Kevin McKinney -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] Staging: bcm: fix possible memory leak in bcm_char_ioctl()

2012-09-03 Thread Kevin McKinney
/Bcmchar.c +++ b/drivers/staging/bcm/Bcmchar.c Acked-by: Kevin McKinney klmckinn...@gmail.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read

Re: [PATCH] staging: bcm: use pr_info and pr_err rather than printk

2012-09-02 Thread Kevin McKinney
ns(+), 4 deletions(-) > > diff --git a/drivers/staging/bcm/InterfaceInit.c > b/drivers/staging/bcm/InterfaceInit.c > index 57452ef..dfee0ce 100644 > --- a/drivers/staging/bcm/InterfaceInit.c > +++ b/drivers/staging/bcm/InterfaceInit.c > @@ -671,18 +671,18 @@ static __init int b

Re: [PATCH v2] staging: bcm: fix error handling in bcm_init()

2012-09-02 Thread Kevin McKinney
nterfaceInit.c > +++ b/drivers/staging/bcm/InterfaceInit.c > @@ -669,6 +669,8 @@ struct class *bcm_class; > Acked-by: Kevin McKinney -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at h

Re: [PATCH] staging: bcm: fix error handling in bcm_init()

2012-09-02 Thread Kevin McKinney
On Sun, Sep 02, 2012 at 01:37:36AM +0400, Alexey Khoroshilov wrote: > bcm_init() does not have proper error handling of usb_register(). > The patch implements one. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Alexey Khoroshilov > --- >

Re: [PATCH] staging: bcm: fix error handling in bcm_init()

2012-09-02 Thread Kevin McKinney
On Sun, Sep 02, 2012 at 01:37:36AM +0400, Alexey Khoroshilov wrote: bcm_init() does not have proper error handling of usb_register(). The patch implements one. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov khoroshi...@ispras.ru ---

Re: [PATCH v2] staging: bcm: fix error handling in bcm_init()

2012-09-02 Thread Kevin McKinney
/InterfaceInit.c @@ -669,6 +669,8 @@ struct class *bcm_class; Acked-by: Kevin McKinney klmckinn...@gmail.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] staging: bcm: use pr_info and pr_err rather than printk

2012-09-02 Thread Kevin McKinney
deletions(-) diff --git a/drivers/staging/bcm/InterfaceInit.c b/drivers/staging/bcm/InterfaceInit.c index 57452ef..dfee0ce 100644 --- a/drivers/staging/bcm/InterfaceInit.c +++ b/drivers/staging/bcm/InterfaceInit.c @@ -671,18 +671,18 @@ static __init int bcm_init(void) Acked-by: Kevin McKinney

Re: [PATCH] staging: bcm: use SEEK_SET instead of 0 in vfs_llseek

2012-07-24 Thread Kevin McKinney
path, unsigned int > } > oldfs = get_fs(); > set_fs(get_ds()); > - vfs_llseek(flp, 0, 0); > + vfs_llseek(flp, 0, SEEK_SET); Acked-by: Kevin McKinney -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of

Re: [PATCH] staging: bcm: use SEEK_SET instead of 0 in vfs_llseek

2012-07-24 Thread Kevin McKinney
} oldfs = get_fs(); set_fs(get_ds()); - vfs_llseek(flp, 0, 0); + vfs_llseek(flp, 0, SEEK_SET); Acked-by: Kevin McKinney klmckinn...@gmail.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-10 Thread Kevin McKinney
On Tue, Jul 10, 2012 at 9:31 AM, Dan Carpenter wrote: > On Tue, Jul 10, 2012 at 09:24:23AM -0400, Kevin McKinney wrote: >> On Tue, Jul 10, 2012 at 8:51 AM, Dan Carpenter >> wrote: >> > On Tue, Jul 10, 2012 at 08:38:41AM -0400, Kevin McKinney wrote: >> >> On M

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-10 Thread Kevin McKinney
On Tue, Jul 10, 2012 at 8:51 AM, Dan Carpenter wrote: > On Tue, Jul 10, 2012 at 08:38:41AM -0400, Kevin McKinney wrote: >> On Mon, Jul 09, 2012 at 11:48:09PM -0300, Marcos Souza wrote: >> > 2012/7/9 Kevin McKinney : >> > > On Mon, Jul 09, 2012 at 10:32:37PM -030

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-10 Thread Kevin McKinney
On Mon, Jul 09, 2012 at 11:48:09PM -0300, Marcos Souza wrote: > 2012/7/9 Kevin McKinney : > > On Mon, Jul 09, 2012 at 10:32:37PM -0300, Marcos Paulo de Souza wrote: > >> Hi Kernel guys! > >> > >> This new patchset tries to clean a little the bcm driver, remov

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-10 Thread Kevin McKinney
On Mon, Jul 09, 2012 at 11:48:09PM -0300, Marcos Souza wrote: 2012/7/9 Kevin McKinney klmckinn...@gmail.com: On Mon, Jul 09, 2012 at 10:32:37PM -0300, Marcos Paulo de Souza wrote: Hi Kernel guys! This new patchset tries to clean a little the bcm driver, removing some unused macros

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-10 Thread Kevin McKinney
On Tue, Jul 10, 2012 at 8:51 AM, Dan Carpenter dan.carpen...@oracle.com wrote: On Tue, Jul 10, 2012 at 08:38:41AM -0400, Kevin McKinney wrote: On Mon, Jul 09, 2012 at 11:48:09PM -0300, Marcos Souza wrote: 2012/7/9 Kevin McKinney klmckinn...@gmail.com: On Mon, Jul 09, 2012 at 10:32:37PM

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-10 Thread Kevin McKinney
On Tue, Jul 10, 2012 at 9:31 AM, Dan Carpenter dan.carpen...@oracle.com wrote: On Tue, Jul 10, 2012 at 09:24:23AM -0400, Kevin McKinney wrote: On Tue, Jul 10, 2012 at 8:51 AM, Dan Carpenter dan.carpen...@oracle.com wrote: On Tue, Jul 10, 2012 at 08:38:41AM -0400, Kevin McKinney wrote

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-09 Thread Kevin McKinney
On Mon, Jul 09, 2012 at 10:32:37PM -0300, Marcos Paulo de Souza wrote: > Hi Kernel guys! > > This new patchset tries to clean a little the bcm driver, removing > some unused macros and some dead code. > > These macros and dead code were reported by the forgotten-macros tool >

Re: [PATCH 0/3] staging: bcm: Cleanup bcm driver

2012-07-09 Thread Kevin McKinney
On Mon, Jul 09, 2012 at 10:32:37PM -0300, Marcos Paulo de Souza wrote: Hi Kernel guys! This new patchset tries to clean a little the bcm driver, removing some unused macros and some dead code. These macros and dead code were reported by the forgotten-macros tool