ioctl compat_ioctl unlock_ioctl


区别:
ioctl 和 unlock_ioctl
ioctl 不会lock_kernel()
 
compat_ioctl被使用在用户空间为32位模式,而内核运行在64位模式时。这时候,需要将64位转成32位。
 
引用
http://blog.chinaunix.net/u1/38994/showart_2248151.html
对几个ioctl执行顺序的分析
 
关于ioctl,unlocked_ioctl和compat_ioctl执行的顺序

对于ioctl操作,优先执行f_op->unlocked_ioctl,如果没有unlocked_ioctl,那么执行f_op->ioctl

sys_ioctl
==> vfs_ioctl
==> file_ioctl
==> do_ioctl
static long do_ioctl(struct file *filp, unsigned int

你可能感兴趣的:(struct,File)