Lines Matching defs:command
2028 static int ctl_ioctl(struct file *file, uint command, struct dm_ioctl __user *user)
2043 if (_IOC_TYPE(command) != DM_IOCTL)
2046 cmd = _IOC_NR(command);
2057 * Nothing more to do for the version command.
2064 DMERR("dm_ctl_ioctl: unknown command 0x%x", command);
2102 static long dm_ctl_ioctl(struct file *file, uint command, ulong u)
2104 return (long)ctl_ioctl(file, command, (struct dm_ioctl __user *)u);
2108 static long dm_compat_ctl_ioctl(struct file *file, uint command, ulong u)
2110 return (long)dm_ctl_ioctl(file, command, (ulong) compat_ptr(u));