Lines Matching refs:command
572 static inline long check_ioctl_command(unsigned int command) in check_ioctl_command() argument
575 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) { in check_ioctl_command()
577 command, in check_ioctl_command()
578 _IOC_TYPE(command), in check_ioctl_command()
583 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) { in check_ioctl_command()
585 _IOC_NR(command), ORANGEFS_DEV_MAXNR); in check_ioctl_command()
591 static long dispatch_ioctl_command(unsigned int command, unsigned long arg) in dispatch_ioctl_command() argument
603 switch (command) { in dispatch_ioctl_command()
700 unsigned int command, unsigned long arg) in orangefs_devreq_ioctl() argument
705 ret = check_ioctl_command(command); in orangefs_devreq_ioctl()
709 return (int)dispatch_ioctl_command(command, arg); in orangefs_devreq_ioctl()