Commit b04f69c9 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] [un]register_ioctl32_conversion() stubs

The megaraid driver is calling these, but they don't exist if !CONFIG_COMPAT. 
Add the necessary stubs, and clean a few things up.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 94ebcd44
...@@ -291,8 +291,8 @@ static int __init init_sys32_ioctl(void) ...@@ -291,8 +291,8 @@ static int __init init_sys32_ioctl(void)
__initcall(init_sys32_ioctl); __initcall(init_sys32_ioctl);
int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, int register_ioctl32_conversion(unsigned int cmd,
unsigned int, unsigned long, struct file *)) ioctl_trans_handler_t handler)
{ {
struct ioctl_trans *t; struct ioctl_trans *t;
struct ioctl_trans *new_t; struct ioctl_trans *new_t;
......
...@@ -3,6 +3,15 @@ ...@@ -3,6 +3,15 @@
struct file; struct file;
typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int,
unsigned long, struct file *);
struct ioctl_trans {
unsigned long cmd;
ioctl_trans_handler_t handler;
struct ioctl_trans *next;
};
/* /*
* Register an 32bit ioctl translation handler for ioctl cmd. * Register an 32bit ioctl translation handler for ioctl cmd.
* *
...@@ -13,16 +22,16 @@ struct file; ...@@ -13,16 +22,16 @@ struct file;
* struct file *file: file descriptor pointer. * struct file *file: file descriptor pointer.
*/ */
extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *)); #ifdef CONFIG_COMPAT
extern int register_ioctl32_conversion(unsigned int cmd,
ioctl_trans_handler_t handler);
extern int unregister_ioctl32_conversion(unsigned int cmd); extern int unregister_ioctl32_conversion(unsigned int cmd);
typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int, unsigned long, struct file *); #else
struct ioctl_trans { #define register_ioctl32_conversion(cmd, handler) ({ 0; })
unsigned long cmd; #define unregister_ioctl32_conversion(cmd) ({ 0; })
ioctl_trans_handler_t handler;
struct ioctl_trans *next; #endif
};
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment