return rc;
}
-static int
-libcfs_ioctl(struct inode *inode, struct file *file,
- unsigned int cmd, unsigned long arg)
+
+#ifdef HAVE_UNLOCKED_IOCTL
+static long libcfs_ioctl(struct file *file,
+ unsigned int cmd, unsigned long arg)
+#else
+static int libcfs_ioctl(struct inode *inode, struct file *file,
+ unsigned int cmd, unsigned long arg)
+#endif
{
struct cfs_psdev_file pfile;
int rc = 0;
}
static struct file_operations libcfs_fops = {
- ioctl: libcfs_ioctl,
- open: libcfs_psdev_open,
- release: libcfs_psdev_release
+#ifdef HAVE_UNLOCKED_IOCTL
+ unlocked_ioctl: libcfs_ioctl,
+#else
+ ioctl: libcfs_ioctl,
+#endif
+ open : libcfs_psdev_open,
+ release : libcfs_psdev_release
};
cfs_psdev_t libcfs_dev = {