Lines Matching refs:cmd
21 long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in ext4_ioctl() argument
27 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg); in ext4_ioctl()
29 switch (cmd) { in ext4_ioctl()
272 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in ext4_compat_ioctl() argument
275 switch (cmd) { in ext4_compat_ioctl()
277 cmd = EXT4_IOC_GETFLAGS; in ext4_compat_ioctl()
280 cmd = EXT4_IOC_SETFLAGS; in ext4_compat_ioctl()
283 cmd = EXT4_IOC_GETVERSION; in ext4_compat_ioctl()
286 cmd = EXT4_IOC_SETVERSION; in ext4_compat_ioctl()
289 cmd = EXT4_IOC_GROUP_EXTEND; in ext4_compat_ioctl()
292 cmd = EXT4_IOC_GETVERSION_OLD; in ext4_compat_ioctl()
295 cmd = EXT4_IOC_SETVERSION_OLD; in ext4_compat_ioctl()
299 cmd = EXT4_IOC_WAIT_FOR_READONLY; in ext4_compat_ioctl()
303 cmd = EXT4_IOC_GETRSVSZ; in ext4_compat_ioctl()
306 cmd = EXT4_IOC_SETRSVSZ; in ext4_compat_ioctl()
313 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg)); in ext4_compat_ioctl()