root/fs/ext2/ioctl.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. ext2_ioctl

   1 /*
   2  * linux/fs/ext2/ioctl.c
   3  *
   4  * Copyright (C) 1993  Remy Card (card@masi.ibp.fr)
   5  */
   6 
   7 #include <linux/sched.h>
   8 #include <linux/errno.h>
   9 #include <linux/ext2_fs.h>
  10 
  11 int ext2_ioctl (struct inode * inode, struct file * filp, unsigned int cmd,
     /* [previous][next][first][last][top][bottom][index][help] */
  12                 unsigned long arg)
  13 {
  14 #ifdef EXT2FS_DEBUG
  15         printk ("ext2_ioctl: cmd = %d, arg = %d\n", cmd, arg);
  16 #endif
  17         return -EINVAL;
  18 }

/* [previous][next][first][last][top][bottom][index][help] */