Re: [PATCH v5 2/2] extable: verify address is read-only

2017-04-07 Thread Eddie Kovsky
to > help improve the system] > > url: > https://github.com/0day-ci/linux/commits/Eddie-Kovsky/module-verify-address-is-read-only/20170407-004322 > config: i386-randconfig-x010-201714 (attached as .config) > compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901 > reproduce: >

Re: [PATCH v5 2/2] extable: verify address is read-only

2017-04-07 Thread Eddie Kovsky
to > help improve the system] > > url: > https://github.com/0day-ci/linux/commits/Eddie-Kovsky/module-verify-address-is-read-only/20170407-004322 > config: i386-randconfig-x010-201714 (attached as .config) > compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901 > reproduce: >

[PATCH v5 1/2] module: verify address is read-only

2017-04-05 Thread Eddie Kovsky
, and reject structures not marked ro_after_init in vmbus_register() Suggested-by: Kees Cook <keesc...@chromium.org> Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Changes in v4: - Rename function __module_ro_address() to __module_rodata_address() - Move module_rodata_address(

[PATCH v5 2/2] extable: verify address is read-only

2017-04-05 Thread Eddie Kovsky
ro_after_init in vmbus_register() Suggested-by: Kees Cook <keesc...@chromium.org> Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Changes in v5: - Replace __start_data_ro_after_init with __start_ro_after_init - Replace __end_data_ro_after_init with __end_ro_after_init Changes in v

[PATCH v5 2/2] extable: verify address is read-only

2017-04-05 Thread Eddie Kovsky
ro_after_init in vmbus_register() Suggested-by: Kees Cook Signed-off-by: Eddie Kovsky --- Changes in v5: - Replace __start_data_ro_after_init with __start_ro_after_init - Replace __end_data_ro_after_init with __end_ro_after_init Changes in v4: - Rename function core_kernel_ro_data

[PATCH v5 1/2] module: verify address is read-only

2017-04-05 Thread Eddie Kovsky
, and reject structures not marked ro_after_init in vmbus_register() Suggested-by: Kees Cook Signed-off-by: Eddie Kovsky --- Changes in v4: - Rename function __module_ro_address() to __module_rodata_address() - Move module_rodata_address() stub below is_module_address() - Minor comment fixes

[PATCH v5 0/2] provide check for ro_after_init memory sections

2017-04-05 Thread Eddie Kovsky
se features to check the arguments to vmbus_register() because the maintainers have not been receptive to using it. My goal right now is to get the API right. Eddie Kovsky (2): module: verify address is read-only extable: verify address is read-only include/linux/kernel.h | 2 ++ include

[PATCH v5 0/2] provide check for ro_after_init memory sections

2017-04-05 Thread Eddie Kovsky
se features to check the arguments to vmbus_register() because the maintainers have not been receptive to using it. My goal right now is to get the API right. Eddie Kovsky (2): module: verify address is read-only extable: verify address is read-only include/linux/kernel.h | 2 ++ include

Re: [PATCH v4 2/2] extable: verify address is read-only

2017-03-30 Thread Eddie Kovsky
On 03/30/17, Kees Cook wrote: > On Wed, Mar 29, 2017 at 8:27 PM, Jessica Yu <j...@redhat.com> wrote: > > +++ Eddie Kovsky [28/03/17 21:28 -0600]: > > > >> On 03/27/17, Kees Cook wrote: > >>> > >>> On Mon, Mar 27, 2017 at 1:43 AM, kbui

Re: [PATCH v4 2/2] extable: verify address is read-only

2017-03-30 Thread Eddie Kovsky
On 03/30/17, Kees Cook wrote: > On Wed, Mar 29, 2017 at 8:27 PM, Jessica Yu wrote: > > +++ Eddie Kovsky [28/03/17 21:28 -0600]: > > > >> On 03/27/17, Kees Cook wrote: > >>> > >>> On Mon, Mar 27, 2017 at 1:43 AM, kbuild test robot wrote: > >

Re: [PATCH v4 2/2] extable: verify address is read-only

2017-03-28 Thread Eddie Kovsky
v4.9-rc6 v4.11-rc4] > > [if your patch is applied to the wrong git tree, please drop us a note to > > help improve the system] > > > > url: > > https://github.com/0day-ci/linux/commits/Eddie-Kovsky/module-verify-address-is-read-only/20170327-142922 > > co

Re: [PATCH v4 2/2] extable: verify address is read-only

2017-03-28 Thread Eddie Kovsky
c4] > > [if your patch is applied to the wrong git tree, please drop us a note to > > help improve the system] > > > > url: > > https://github.com/0day-ci/linux/commits/Eddie-Kovsky/module-verify-address-is-read-only/20170327-142922 > > config: blackfin-BF561-EZK

[PATCH v4 0/2] provide check for ro_after_init memory sections

2017-03-26 Thread Eddie Kovsky
section. I have dropped the third patch that uses these features to check the arguments to vmbus_register() because the maintainers have not been receptive to using it. My goal right now is to get the API right. I have test compiled this series on next-20170324 for x86. Eddie Kovsky (2): module

[PATCH v4 0/2] provide check for ro_after_init memory sections

2017-03-26 Thread Eddie Kovsky
section. I have dropped the third patch that uses these features to check the arguments to vmbus_register() because the maintainers have not been receptive to using it. My goal right now is to get the API right. I have test compiled this series on next-20170324 for x86. Eddie Kovsky (2): module

[PATCH v4 1/2] module: verify address is read-only

2017-03-26 Thread Eddie Kovsky
, and reject structures not marked ro_after_init in vmbus_register() Suggested-by: Kees Cook <keesc...@chromium.org> Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Changes in v4: - Rename function __module_ro_address() to __module_rodata_address() - Move module_rodata_address(

[PATCH v4 2/2] extable: verify address is read-only

2017-03-26 Thread Eddie Kovsky
ro_after_init in vmbus_register() Suggested-by: Kees Cook <keesc...@chromium.org> Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Changes in v4: - Rename function core_kernel_ro_data() to core_kernel_rodata(). Changes in v3: - Fix missing declaration of is_module_rodata_address()

[PATCH v4 1/2] module: verify address is read-only

2017-03-26 Thread Eddie Kovsky
, and reject structures not marked ro_after_init in vmbus_register() Suggested-by: Kees Cook Signed-off-by: Eddie Kovsky --- Changes in v4: - Rename function __module_ro_address() to __module_rodata_address() - Move module_rodata_address() stub below is_module_address() - Minor comment fixes

[PATCH v4 2/2] extable: verify address is read-only

2017-03-26 Thread Eddie Kovsky
ro_after_init in vmbus_register() Suggested-by: Kees Cook Signed-off-by: Eddie Kovsky --- Changes in v4: - Rename function core_kernel_ro_data() to core_kernel_rodata(). Changes in v3: - Fix missing declaration of is_module_rodata_address() --- include/linux/kernel.h | 2 ++ kernel/extable.c

Re: [PATCH v3 1/2] module: verify address is read-only

2017-03-24 Thread Eddie Kovsky
On 03/24/17, Jessica Yu wrote: > +++ Eddie Kovsky [22/03/17 20:55 -0600]: > > Implement a mechanism to check if a module's address is in > > the rodata or ro_after_init sections. It mimics the exsiting functions > > that test if an address is inside a module's text sectio

Re: [PATCH v3 1/2] module: verify address is read-only

2017-03-24 Thread Eddie Kovsky
On 03/24/17, Jessica Yu wrote: > +++ Eddie Kovsky [22/03/17 20:55 -0600]: > > Implement a mechanism to check if a module's address is in > > the rodata or ro_after_init sections. It mimics the exsiting functions > > that test if an address is inside a module's text sectio

[PATCH v3 1/2] module: verify address is read-only

2017-03-22 Thread Eddie Kovsky
. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Changes in v3: - Change function name is_module_ro_address() to is_module_rodata_address(). - Improve comments on is_module_rodata_address(). - Add a !CONFIG_MODULES stub for is_module_rodata_address. - Correct and simplify the

[PATCH v3 2/2] extable: verify address is read-only

2017-03-22 Thread Eddie Kovsky
-off-by: Eddie Kovsky <e...@edkovsky.org> --- Changes in v3: - Fix missing declaration of is_module_rodata_address() include/linux/kernel.h | 2 ++ kernel/extable.c | 29 + 2 files changed, 31 insertions(+) diff --git a/include/linux/kernel.h b/include

[PATCH v3 1/2] module: verify address is read-only

2017-03-22 Thread Eddie Kovsky
. Signed-off-by: Eddie Kovsky --- Changes in v3: - Change function name is_module_ro_address() to is_module_rodata_address(). - Improve comments on is_module_rodata_address(). - Add a !CONFIG_MODULES stub for is_module_rodata_address. - Correct and simplify the check for the read-only memory

[PATCH v3 2/2] extable: verify address is read-only

2017-03-22 Thread Eddie Kovsky
-off-by: Eddie Kovsky --- Changes in v3: - Fix missing declaration of is_module_rodata_address() include/linux/kernel.h | 2 ++ kernel/extable.c | 29 + 2 files changed, 31 insertions(+) diff --git a/include/linux/kernel.h b/include/linux/kernel.h index

[PATCH v3 0/2] provide check for ro_after_init memory sections

2017-03-22 Thread Eddie Kovsky
section. I have dropped the third patch that uses these features to check the arguments to vmbus_register() because the maintainers have not been receptive to using it. My goal right now is to get the API right. I have test compiled this series on next-20170321 for x86. Eddie Kovsky (2): module

[PATCH v3 0/2] provide check for ro_after_init memory sections

2017-03-22 Thread Eddie Kovsky
section. I have dropped the third patch that uses these features to check the arguments to vmbus_register() because the maintainers have not been receptive to using it. My goal right now is to get the API right. I have test compiled this series on next-20170321 for x86. Eddie Kovsky (2): module

Re: [PATCH v2 3/3] Make vmbus register arguments read-only (fwd)

2017-02-18 Thread Eddie Kovsky
tree, please drop us a note to > help improve the system] > > url: > https://github.com/0day-ci/linux/commits/Eddie-Kovsky/provide-check-for-ro_after_init-memory-sections/20170218-141040 > :: branch date: 2 hours ago > :: commit date: 2 hours ago > > >> dr

Re: [PATCH v2 3/3] Make vmbus register arguments read-only (fwd)

2017-02-18 Thread Eddie Kovsky
.org > In-Reply-To: <20170218055844.1457-4-...@edkovsky.org> > > Hi Eddie, > > [auto build test WARNING on linus/master] > [also build test WARNING on v4.10-rc8 next-20170217] > [if your patch is applied to the wrong git tree, please drop us a note to > help improve the syste

[PATCH v2 3/3] Make vmbus register arguments read-only

2017-02-17 Thread Eddie Kovsky
Use the new RO check functions introduced in this series to make the vmbus register functions verify that the address of their arguments are read-only. Addresses that fail the verification are rejected. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- drivers/hv/vmbus_drv.c | 10 +++

[PATCH v2 3/3] Make vmbus register arguments read-only

2017-02-17 Thread Eddie Kovsky
Use the new RO check functions introduced in this series to make the vmbus register functions verify that the address of their arguments are read-only. Addresses that fail the verification are rejected. Signed-off-by: Eddie Kovsky --- drivers/hv/vmbus_drv.c | 10 ++ 1 file changed, 10

[PATCH v2 0/3] provide check for ro_after_init memory sections

2017-02-17 Thread Eddie Kovsky
to check for ro_after_init memory areas, and reject structures not marked ro_after_init in vmbus_register() http://www.openwall.com/lists/kernel-hardening/2017/02/04/1 I have successfully compiled this series on next-20170215 for x86. Eddie Kovsky (3): module: verify address is read-only

[PATCH v2 0/3] provide check for ro_after_init memory sections

2017-02-17 Thread Eddie Kovsky
to check for ro_after_init memory areas, and reject structures not marked ro_after_init in vmbus_register() http://www.openwall.com/lists/kernel-hardening/2017/02/04/1 I have successfully compiled this series on next-20170215 for x86. Eddie Kovsky (3): module: verify address is read-only

[PATCH v2 1/3] module: verify address is read-only

2017-02-17 Thread Eddie Kovsky
Implement a mechanism to check if a module's address is in the rodata or ro_after_init sections. It mimics the exsiting functions that test if an address is inside a module's text section. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- include/linux/module.h | 7 +++ kernel/mo

[PATCH v2 2/3] extable: verify address is read-only

2017-02-17 Thread Eddie Kovsky
Provide a mechanism to check if the address of a variable is const or ro_after_init. It mimics the existing functions that test if an address is inside the kernel's text section. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- include/linux/kernel.h | 2 ++ kernel/extable.c

[PATCH v2 1/3] module: verify address is read-only

2017-02-17 Thread Eddie Kovsky
Implement a mechanism to check if a module's address is in the rodata or ro_after_init sections. It mimics the exsiting functions that test if an address is inside a module's text section. Signed-off-by: Eddie Kovsky --- include/linux/module.h | 7 +++ kernel/module.c| 44

[PATCH v2 2/3] extable: verify address is read-only

2017-02-17 Thread Eddie Kovsky
Provide a mechanism to check if the address of a variable is const or ro_after_init. It mimics the existing functions that test if an address is inside the kernel's text section. Signed-off-by: Eddie Kovsky --- include/linux/kernel.h | 2 ++ kernel/extable.c | 29

[PATCH 3/3] Documentation: Add minimal Mutt config for using Gmail

2015-11-05 Thread Eddie Kovsky
This patch provides a minimal configuration to set up Mutt for submitting plain text patches using Gmail. Signed-off-by: Eddie Kovsky --- Documentation/email-clients.txt | 32 1 file changed, 32 insertions(+) diff --git a/Documentation/email-clients.txt b

[PATCH 1/3] Documentation: Clarify use of Gmail for emailing patches

2015-11-05 Thread Eddie Kovsky
Clarify that Gmail can be used to send patches, provided you use Gmail as a server and avoid the Web UI. Signed-off-by: Eddie Kovsky --- Documentation/email-clients.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/email-clients.txt b/Documentation/email

[PATCH 2/3] Documentation: Add note on sending files directly with Mutt

2015-11-05 Thread Eddie Kovsky
Like 'git send-email', Mutt can also be used to send patches generated with 'git format-patch'. This works regardless of the editor the contributor has set up to use with Mutt. Signed-off-by: Eddie Kovsky --- Documentation/email-clients.txt | 4 1 file changed, 4 insertions(+) diff --git

[PATCH 0/3] Documentation: Email client improvements

2015-11-05 Thread Eddie Kovsky
editor. * Add a minimal Mutt configuration to use Gmail's IMAP servers to send text email. I tested this configuration using a mockup local user and my own Gmail account. Thanks Eddie Eddie Kovsky (3): Clarify use of Gmail for emailing patches Add note on sending files directly with Mutt

[PATCH 0/3] Documentation: Email client improvements

2015-11-05 Thread Eddie Kovsky
editor. * Add a minimal Mutt configuration to use Gmail's IMAP servers to send text email. I tested this configuration using a mockup local user and my own Gmail account. Thanks Eddie Eddie Kovsky (3): Clarify use of Gmail for emailing patches Add note on sending files directly with Mutt

[PATCH 1/3] Documentation: Clarify use of Gmail for emailing patches

2015-11-05 Thread Eddie Kovsky
Clarify that Gmail can be used to send patches, provided you use Gmail as a server and avoid the Web UI. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Documentation/email-clients.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/email-clients

[PATCH 3/3] Documentation: Add minimal Mutt config for using Gmail

2015-11-05 Thread Eddie Kovsky
This patch provides a minimal configuration to set up Mutt for submitting plain text patches using Gmail. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Documentation/email-clients.txt | 32 1 file changed, 32 insertions(+) diff --git a/Documentation

[PATCH 2/3] Documentation: Add note on sending files directly with Mutt

2015-11-05 Thread Eddie Kovsky
Like 'git send-email', Mutt can also be used to send patches generated with 'git format-patch'. This works regardless of the editor the contributor has set up to use with Mutt. Signed-off-by: Eddie Kovsky <e...@edkovsky.org> --- Documentation/email-clients.txt | 4 1 file chan

[PATCH] checkpatch: Fix left brace warning

2015-08-05 Thread Eddie Kovsky
Using checkpatch.pl with Perl 5.22.0 generates the following warning: Unescaped left brace in regex is deprecated, passed through in regex; This patch fixes the warnings by escaping occurrences of the left brace inside the regular expression. Signed-off-by: Eddie Kovsky --- scripts

[PATCH] checkpatch: Fix left brace warning

2015-08-05 Thread Eddie Kovsky
Using checkpatch.pl with Perl 5.22.0 generates the following warning: Unescaped left brace in regex is deprecated, passed through in regex; This patch fixes the warnings by escaping occurrences of the left brace inside the regular expression. Signed-off-by: Eddie Kovsky e...@edkovsky.org

[PATCH] Fixes: 9697dffb098d ("drm: Turn off Legacy Context Functions")

2015-06-17 Thread Eddie Kovsky
return int. This fixes the build warnings: warning: ‘return’ with a value, in function returning void return -EINVAL Signed-off-by: Eddie Kovsky --- drivers/gpu/drm/drm_context.c | 12 +--- drivers/gpu/drm/drm_legacy.h | 6 +++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git

[PATCH] Fixes: 9697dffb098d (drm: Turn off Legacy Context Functions)

2015-06-17 Thread Eddie Kovsky
. This fixes the build warnings: warning: ‘return’ with a value, in function returning void return -EINVAL Signed-off-by: Eddie Kovsky e...@edkovsky.org --- drivers/gpu/drm/drm_context.c | 12 +--- drivers/gpu/drm/drm_legacy.h | 6 +++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff

[PATCH] Fix reversed logic in drivers/md/md.c

2015-05-25 Thread Eddie Kovsky
istent|| Signed-off-by: Eddie Kovsky --- drivers/md/md.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/md.c b/drivers/md/md.c index eb27b2a74492..b0f98b5b8985 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -6391,7 +6391,7 @@ static int update_array_info(

[PATCH] Fix reversed logic in drivers/md/md.c

2015-05-25 Thread Eddie Kovsky
|| Signed-off-by: Eddie Kovsky e...@edkovsky.org --- drivers/md/md.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/md.c b/drivers/md/md.c index eb27b2a74492..b0f98b5b8985 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -6391,7 +6391,7 @@ static int

Re: [PATCH] Staging: rtl8192u Make function static

2015-03-31 Thread Eddie Kovsky
On Wed, Apr 01, 2015 at 09:09:26AM +0530, Sudip Mukherjee wrote: > On Tue, Mar 31, 2015 at 05:51:19PM -0600, Eddie Kovsky wrote: > > Changing function definition to static fixes the > > following warning generated by sparse: > > > > drivers/staging/rtl8192u/ieee80211

[PATCH] Staging: rtl8192u Make function static

2015-03-31 Thread Eddie Kovsky
Changing function definition to static fixes the following warning generated by sparse: drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c:1924:6: warning: symbol 'ieee80211_check_auth_response' was not declared. Should it be static? Signed-off-by: Eddie Kovsky --- drivers/staging

Re: [PATCH V2] Staging: rtl8192 Clean up function definition

2015-03-31 Thread Eddie Kovsky
On Tue, Mar 31, 2015 at 10:14:54AM +0300, Dan Carpenter wrote: > On Mon, Mar 30, 2015 at 05:05:36PM -0600, Eddie Kovsky wrote: > > Change function definition to static, move the function further up in > > the file, and delete the function prototype. > > > > This

Re: [PATCH] Staging: rtl8192u Make function static

2015-03-31 Thread Eddie Kovsky
On Wed, Apr 01, 2015 at 09:09:26AM +0530, Sudip Mukherjee wrote: On Tue, Mar 31, 2015 at 05:51:19PM -0600, Eddie Kovsky wrote: Changing function definition to static fixes the following warning generated by sparse: drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c:1924:6: warning

Re: [PATCH V2] Staging: rtl8192 Clean up function definition

2015-03-31 Thread Eddie Kovsky
On Tue, Mar 31, 2015 at 10:14:54AM +0300, Dan Carpenter wrote: On Mon, Mar 30, 2015 at 05:05:36PM -0600, Eddie Kovsky wrote: Change function definition to static, move the function further up in the file, and delete the function prototype. This fixes the following warning generated

[PATCH] Staging: rtl8192u Make function static

2015-03-31 Thread Eddie Kovsky
Changing function definition to static fixes the following warning generated by sparse: drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c:1924:6: warning: symbol 'ieee80211_check_auth_response' was not declared. Should it be static? Signed-off-by: Eddie Kovsky e...@edkovsky.org

[PATCH V2] Staging: rtl8192 Clean up function definition

2015-03-30 Thread Eddie Kovsky
it be static? Signed-off-by: Eddie Kovsky --- drivers/staging/rtl8192u/r8192U_core.c | 87 +- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index 8834c23d67fc..f16a0a45611f

[PATCH V2] Staging: rtl8192 Clean up function definition

2015-03-30 Thread Eddie Kovsky
it be static? Signed-off-by: Eddie Kovsky e...@edkovsky.org --- drivers/staging/rtl8192u/r8192U_core.c | 87 +- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index 8834c23d67fc

Re: [PATCH] Staging: rtl8192 Clean up function definition

2015-03-26 Thread Eddie Kovsky
On Thu, Mar 26, 2015 at 11:37:45AM +0300, Dan Carpenter wrote: > Huh. Weird. Please, could you just move it forward instead so we don't > have to have the prototype declaration? > > regars, > dan carpenter > Dan You're right. That's a better solution. But I already got a message from Greg

Re: [PATCH] Staging: rtl8192 Clean up function definition

2015-03-26 Thread Eddie Kovsky
On Thu, Mar 26, 2015 at 11:37:45AM +0300, Dan Carpenter wrote: Huh. Weird. Please, could you just move it forward instead so we don't have to have the prototype declaration? regars, dan carpenter Dan You're right. That's a better solution. But I already got a message from Greg that he

[PATCH] Staging: rtl8192 Clean up function definition

2015-03-25 Thread Eddie Kovsky
Change function definition to match its prototype declaration. This fixes the following warning generated by sparse: drivers/staging/rtl8192u/r8192U_core.c:1970:6: warning: symbol 'rtl8192_update_ratr_table' was not declared. Should it be static? Signed-off-by: Eddie Kovsky --- drivers/staging

[PATCH] Staging: rtl8192 Clean up function definition

2015-03-25 Thread Eddie Kovsky
Change function definition to match its prototype declaration. This fixes the following warning generated by sparse: drivers/staging/rtl8192u/r8192U_core.c:1970:6: warning: symbol 'rtl8192_update_ratr_table' was not declared. Should it be static? Signed-off-by: Eddie Kovsky e...@edkovsky.org

[PATCH] staging: vt6655: fix sparse warning: argument type

2014-12-20 Thread Eddie Kovsky
] *dwIoBase Compile tested on next-20141219. Signed-off-by: Eddie Kovsky --- drivers/staging/vt6655/baseband.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c index 86c72ba0a0cd..f8c5fc371c4c 100644

[PATCH] staging: vt6655: fix sparse warning: argument type

2014-12-20 Thread Eddie Kovsky
] asn:2*dwIoBase Compile tested on next-20141219. Signed-off-by: Eddie Kovsky e...@edkovsky.org --- drivers/staging/vt6655/baseband.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c index 86c72ba0a0cd

[PATCH] kconfig: Fix compiler warning

2014-11-19 Thread Eddie Kovsky
nction. Also uses the preferred pointer syntax for passing the size of a struct. Tested on next-20141119. Signed-off-by: Eddie Kovsky --- scripts/kconfig/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index a26cc5

[PATCH] kconfig: Fix compiler warning

2014-11-19 Thread Eddie Kovsky
uses the preferred pointer syntax for passing the size of a struct. Tested on next-20141119. Signed-off-by: Eddie Kovsky e...@edkovsky.org --- scripts/kconfig/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index

[PATCH] staging: clean up checkpatch warnings in lustre

2014-09-08 Thread Eddie Kovsky
Silence checkpatch warning: WARNING: type 'long long unsigned' should be specified in [[un]signed] [short|int|long|long long] order Signed-off-by: Eddie Kovsky --- drivers/staging/lustre/lustre/fid/lproc_fid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers

[PATCH] staging: clean up checkpatch warnings in lustre

2014-09-08 Thread Eddie Kovsky
Silence checkpatch warning: WARNING: type 'long long unsigned' should be specified in [[un]signed] [short|int|long|long long] order Signed-off-by: Eddie Kovsky e...@edkovsky.org --- drivers/staging/lustre/lustre/fid/lproc_fid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff