summaryrefslogtreecommitdiff
path: root/release/src/linux/linux/include/asm-x86_64/ioctl32.h
blob: b7abfe6eae10ed04498733c7ecd3579d8b6b608e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef IOCTL32_H
#define IOCTL32_H 1

struct file;

int sys_ioctl(unsigned int, unsigned int, unsigned long);

/* 
 * Register an 32bit ioctl translation handler for ioctl cmd.
 *
 * handler == NULL: use 64bit ioctl handler.
 * arguments to handler:  fd: file descriptor
 *                        cmd: ioctl command.
 *                        arg: ioctl argument
 *                        struct file *file: file descriptor pointer.
 */ 

extern int register_ioctl32_conversion(unsigned int cmd, int (*handler)(unsigned int, unsigned int, unsigned long, struct file *));

extern int unregister_ioctl32_conversion(unsigned int cmd);


#endif