diff options
| author | Tom Rini <trini@kernel.crashing.org> | 2003-09-07 21:14:07 -0700 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2003-09-07 21:14:07 -0700 |
| commit | 29472126c4af5d7a320baa15f0510766330633ee (patch) | |
| tree | df2dd57d4d8780972209d69d388aaf97730468c7 /include | |
| parent | f8c1260fc8255bfbfb659784b8cf7e744ec00d26 (diff) | |
PPC32: Add _IO{R,W,WR}_BAD and update _IO{R,W,WR}.
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ppc/ioctl.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/include/asm-ppc/ioctl.h b/include/asm-ppc/ioctl.h index 8785a3a85d26..8d8cb7ec4f01 100644 --- a/include/asm-ppc/ioctl.h +++ b/include/asm-ppc/ioctl.h @@ -37,11 +37,21 @@ ((nr) << _IOC_NRSHIFT) | \ ((size) << _IOC_SIZESHIFT)) +/* provoke compile error for invalid uses of size argument */ +extern 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) + /* used to create numbers */ #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) -#define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) -#define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) -#define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) +#define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) +#define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) +#define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) +#define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) +#define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) +#define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) /* used to decode them.. */ #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK) |
