public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]: Make ioctl.h compatible with userland
@ 2008-07-28  6:48 Michael Abbott
  2008-07-30  8:10 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Abbott @ 2008-07-28  6:48 UTC (permalink / raw)
  To: linux-kernel

The attached patch seems to already exist in a number of branches -- it 
keeps popping up on Google for me, and is certainly already in Debian -- 
but is strangely absent from mainstream.

The problem appears to be that the patched file ends up as part of the 
target toolchain, but unfortunately the gcc constant folding doesn't 
appear to eliminate the __invalid_size_argument_for_IOC value early 
enough.  Certainly compiling C++ programs which use _IO... macros as 
constants fails without this patch.

No doubt this has been pushed upstream before: this problem seems to date 
from the very early days of 2.6 ... but here it is again.  It makes sense 
to do it.


commit 0df6f37b4e4534f219b5e40cb49ffd9311eb6195
Author: Michael Abbott <michael.abbott@diamond.ac.uk>
Date:   Mon Jul 28 07:32:05 2008 +0100

    Add long established but strangely absent patch to allow ioctl.h to
    work smoothly with userspace program optimisations.

diff --git a/include/asm-generic/ioctl.h b/include/asm-generic/ioctl.h
index 8641813..15828b2 100644
--- a/include/asm-generic/ioctl.h
+++ b/include/asm-generic/ioctl.h
@@ -68,12 +68,16 @@
 	 ((nr)   << _IOC_NRSHIFT) | \
 	 ((size) << _IOC_SIZESHIFT))
 
+#ifdef __KERNEL__
 /* provoke compile error for invalid uses of size argument */
 extern unsigned int __invalid_size_argument_for_IOC;
 #define _IOC_TYPECHECK(t) \
 	((sizeof(t) == sizeof(t[1]) && \
 	  sizeof(t) < (1 << _IOC_SIZEBITS)) ? \
 	  sizeof(t) : __invalid_size_argument_for_IOC)
+#else
+#define _IOC_TYPECHECK(t) (sizeof(t))
+#endif
 
 /* used to create numbers */
 #define _IO(type,nr)		_IOC(_IOC_NONE,(type),(nr),0)

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

end of thread, other threads:[~2008-08-12 15:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-28  6:48 [PATCH]: Make ioctl.h compatible with userland Michael Abbott
2008-07-30  8:10 ` Andrew Morton
2008-08-12 15:12   ` Arnd Bergmann

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