Lines Matching refs:cmd
21 int ext3_ioctl (struct inode * inode, struct file * filp, unsigned int cmd, in ext3_ioctl() argument
28 ext3_debug ("cmd = %u, arg = %lu\n", cmd, arg); in ext3_ioctl()
30 switch (cmd) { in ext3_ioctl()
300 long ext3_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in ext3_compat_ioctl() argument
306 switch (cmd) { in ext3_compat_ioctl()
308 cmd = EXT3_IOC_GETFLAGS; in ext3_compat_ioctl()
311 cmd = EXT3_IOC_SETFLAGS; in ext3_compat_ioctl()
314 cmd = EXT3_IOC_GETVERSION; in ext3_compat_ioctl()
317 cmd = EXT3_IOC_SETVERSION; in ext3_compat_ioctl()
320 cmd = EXT3_IOC_GROUP_EXTEND; in ext3_compat_ioctl()
323 cmd = EXT3_IOC_GETVERSION_OLD; in ext3_compat_ioctl()
326 cmd = EXT3_IOC_SETVERSION_OLD; in ext3_compat_ioctl()
330 cmd = EXT3_IOC_WAIT_FOR_READONLY; in ext3_compat_ioctl()
334 cmd = EXT3_IOC_GETRSVSZ; in ext3_compat_ioctl()
337 cmd = EXT3_IOC_SETRSVSZ; in ext3_compat_ioctl()
345 ret = ext3_ioctl(inode, file, cmd, (unsigned long) compat_ptr(arg)); in ext3_compat_ioctl()