public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] reduce casting in sysenter.c
@ 2004-08-23 17:47 Dave Hansen
  0 siblings, 0 replies; only message in thread
From: Dave Hansen @ 2004-08-23 17:47 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 448 bytes --]

Ran across this because it's another place where an unsigned long is
passed directly to __pa().  Making the "page" variable a void* seems a
bit more natural than an unsigned long and reduces the net number of
casts by 1.  Without it, we probably need another (void *) cast in the
__pa() call. 

For more explanation as to why this was probably done originally, see
this post:
http://marc.theaimsgroup.com/?l=linux-mm&m=109155379124628&w=2

-- Dave

[-- Attachment #2: sysenter-types.patch --]
[-- Type: text/x-patch, Size: 980 bytes --]



---

 memhotplug-dave/arch/i386/kernel/sysenter.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff -puN arch/i386/kernel/sysenter.c~sysenter-types arch/i386/kernel/sysenter.c
--- memhotplug/arch/i386/kernel/sysenter.c~sysenter-types	2004-08-23 10:38:24.000000000 -0700
+++ memhotplug-dave/arch/i386/kernel/sysenter.c	2004-08-23 10:38:24.000000000 -0700
@@ -43,18 +43,18 @@ extern const char vsyscall_sysenter_star
 
 static int __init sysenter_setup(void)
 {
-	unsigned long page = get_zeroed_page(GFP_ATOMIC);
+	void *page = (void *)get_zeroed_page(GFP_ATOMIC);
 
 	__set_fixmap(FIX_VSYSCALL, __pa(page), PAGE_READONLY_EXEC);
 
 	if (!boot_cpu_has(X86_FEATURE_SEP)) {
-		memcpy((void *) page,
+		memcpy(page,
 		       &vsyscall_int80_start,
 		       &vsyscall_int80_end - &vsyscall_int80_start);
 		return 0;
 	}
 
-	memcpy((void *) page,
+	memcpy(page,
 	       &vsyscall_sysenter_start,
 	       &vsyscall_sysenter_end - &vsyscall_sysenter_start);
 
_

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-08-23 17:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-23 17:47 [PATCH] reduce casting in sysenter.c Dave Hansen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox