The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] include/asm-i386/byteorder.h: ANSI mode fixes
@ 2003-12-17  7:18 Daniel Richard G.
  2003-12-17  7:35 ` bert hubert
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Richard G. @ 2003-12-17  7:18 UTC (permalink / raw)
  To: linux-kernel; +Cc: marcelo, torvalds

This header file uses `inline' where it should use `__inline__', `asm'
where it should use `__asm__'. GCC with -ansi barfs if it sees these
keywords without the double underscores. Headaches for the KDE folks:

	http://bugs.kde.org/show_bug.cgi?id=67269
	http://bugs.kde.org/show_bug.cgi?id=70100

(Note that the header already uses __inline__ and __asm__ for the most
part---this patch addresses the three remaining exceptions.)

Patch applies equally against latest 2.4.23(bk12) and 2.6.0-test11(bk12)
revs; the header file is identical in both.

Please Cc: me on any replies.


--------BEGIN PATCH--------
--- include/asm-i386/byteorder.h.orig	2003-12-17 01:19:49.000000000 -0500
+++ include/asm-i386/byteorder.h	2003-12-17 01:20:37.000000000 -0500
@@ -35,7 +35,7 @@
 }
 
 
-static inline __u64 ___arch__swab64(__u64 val) 
+static __inline__ __u64 ___arch__swab64(__u64 val) 
 { 
 	union { 
 		struct { __u32 a,b; } s;
@@ -43,13 +43,13 @@
 	} v;
 	v.u = val;
 #ifdef CONFIG_X86_BSWAP
-	asm("bswapl %0 ; bswapl %1 ; xchgl %0,%1" 
-	    : "=r" (v.s.a), "=r" (v.s.b) 
-	    : "0" (v.s.a), "1" (v.s.b)); 
+	__asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" 
+	        : "=r" (v.s.a), "=r" (v.s.b) 
+	        : "0" (v.s.a), "1" (v.s.b)); 
 #else
-   v.s.a = ___arch__swab32(v.s.a); 
+	v.s.a = ___arch__swab32(v.s.a); 
 	v.s.b = ___arch__swab32(v.s.b); 
-	asm("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
+	__asm__("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
 #endif
 	return v.u;	
 } 
--------END PATCH--------


--Danny


-- 
NAME   = Daniel Richard G.       ##  Remember, skunks       _\|/_  meef?
EMAIL1 = skunk@iskunk.org        ##  don't smell bad---    (/o|o\) /
EMAIL2 = skunk@alum.mit.edu      ##  it's the people who   < (^),>
WWW    = http://www.******.org/  ##  annoy them that do!    /   \

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] include/asm-i386/byteorder.h: ANSI mode fixes
  2003-12-17  7:18 [PATCH] include/asm-i386/byteorder.h: ANSI mode fixes Daniel Richard G.
@ 2003-12-17  7:35 ` bert hubert
  0 siblings, 0 replies; 2+ messages in thread
From: bert hubert @ 2003-12-17  7:35 UTC (permalink / raw)
  To: Daniel Richard G.; +Cc: linux-kernel, marcelo, torvalds

On Wed, Dec 17, 2003 at 02:18:29AM -0500, Daniel Richard G. wrote:
> This header file uses `inline' where it should use `__inline__', `asm'
> where it should use `__asm__'. GCC with -ansi barfs if it sees these
> keywords without the double underscores. Headaches for the KDE folks:

The kernel is not written in 'ansi C' but in gcc, mostly - not sure if you
should expect kernel headers to function with -ansi.

-- 
http://www.PowerDNS.com      Open source, database driven DNS Software 
http://lartc.org           Linux Advanced Routing & Traffic Control HOWTO

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-12-17  7:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-12-17  7:18 [PATCH] include/asm-i386/byteorder.h: ANSI mode fixes Daniel Richard G.
2003-12-17  7:35 ` bert hubert

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