fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / drivers / block / paride / pt.c
index 7db4fc7..c902b25 100644 (file)
@@ -141,40 +141,21 @@ static int (*drives[4])[6] = {&drive0, &drive1, &drive2, &drive3};
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/fs.h>
-#include <linux/devfs_fs_kernel.h>
 #include <linux/delay.h>
 #include <linux/slab.h>
 #include <linux/mtio.h>
+#include <linux/device.h>
+#include <linux/sched.h>       /* current, TASK_*, schedule_timeout() */
 
 #include <asm/uaccess.h>
 
-#ifndef MODULE
-
-#include "setup.h"
-
-static STT pt_stt[5] = {
-       {"drive0", 6, drive0},
-       {"drive1", 6, drive1},
-       {"drive2", 6, drive2},
-       {"drive3", 6, drive3},
-       {"disable", 1, &disable}
-};
-
-void
-pt_setup(char *str, int *ints)
-{
-       generic_setup(pt_stt, 5, str);
-}
-
-#endif
-
-MODULE_PARM(verbose, "i");
-MODULE_PARM(major, "i");
-MODULE_PARM(name, "s");
-MODULE_PARM(drive0, "1-6i");
-MODULE_PARM(drive1, "1-6i");
-MODULE_PARM(drive2, "1-6i");
-MODULE_PARM(drive3, "1-6i");
+module_param(verbose, bool, 0);
+module_param(major, int, 0);
+module_param(name, charp, 0);
+module_param_array(drive0, int, NULL, 0);
+module_param_array(drive1, int, NULL, 0);
+module_param_array(drive2, int, NULL, 0);
+module_param_array(drive3, int, NULL, 0);
 
 #include "paride.h"
 
@@ -211,9 +192,9 @@ static int pt_open(struct inode *inode, struct file *file);
 static int pt_ioctl(struct inode *inode, struct file *file,
                    unsigned int cmd, unsigned long arg);
 static int pt_release(struct inode *inode, struct file *file);
-static ssize_t pt_read(struct file *filp, char *buf,
+static ssize_t pt_read(struct file *filp, char __user *buf,
                       size_t count, loff_t * ppos);
-static ssize_t pt_write(struct file *filp, const char *buf,
+static ssize_t pt_write(struct file *filp, const char __user *buf,
                        size_t count, loff_t * ppos);
 static int pt_detect(void);
 
@@ -245,7 +226,7 @@ struct pt_unit {
 
 static int pt_identify(struct pt_unit *tape);
 
-struct pt_unit pt[PT_UNITS];
+static struct pt_unit pt[PT_UNITS];
 
 static char pt_scratch[512];   /* scratch block buffer */
 
@@ -260,6 +241,9 @@ static struct file_operations pt_fops = {
        .release = pt_release,
 };
 
+/* sysfs class support */
+static struct class *pt_class;
+
 static inline int status_reg(struct pi_adapter *pi)
 {
        return pi_read_regr(pi, 1, 6);
@@ -399,8 +383,7 @@ static int pt_atapi(struct pt_unit *tape, char *cmd, int dlen, char *buf, char *
 
 static void pt_sleep(int cs)
 {
-       current->state = TASK_INTERRUPTIBLE;
-       schedule_timeout(cs);
+       schedule_timeout_interruptible(cs);
 }
 
 static int pt_poll_dsc(struct pt_unit *tape, int pause, int tmo, char *msg)
@@ -706,12 +689,12 @@ static int pt_ioctl(struct inode *inode, struct file *file,
         unsigned int cmd, unsigned long arg)
 {
        struct pt_unit *tape = file->private_data;
+       struct mtop __user *p = (void __user *)arg;
        struct mtop mtop;
 
        switch (cmd) {
        case MTIOCTOP:
-               if (copy_from_user((char *) &mtop, (char *) arg,
-                                  sizeof (struct mtop)))
+               if (copy_from_user(&mtop, p, sizeof(struct mtop)))
                        return -EFAULT;
 
                switch (mtop.mt_op) {
@@ -760,7 +743,7 @@ pt_release(struct inode *inode, struct file *file)
 
 }
 
-static ssize_t pt_read(struct file *filp, char *buf, size_t count, loff_t * ppos)
+static ssize_t pt_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
 {
        struct pt_unit *tape = filp->private_data;
        struct pi_adapter *pi = tape->pi;
@@ -857,7 +840,7 @@ static ssize_t pt_read(struct file *filp, char *buf, size_t count, loff_t * ppos
 
 }
 
-static ssize_t pt_write(struct file *filp, const char *buf, size_t count, loff_t * ppos)
+static ssize_t pt_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
 {
        struct pt_unit *tape = filp->private_data;
        struct pi_adapter *pi = tape->pi;
@@ -960,32 +943,46 @@ static ssize_t pt_write(struct file *filp, const char *buf, size_t count, loff_t
 static int __init pt_init(void)
 {
        int unit;
+       int err;
 
-       if (disable)
-               return -1;
+       if (disable) {
+               err = -EINVAL;
+               goto out;
+       }
 
-       if (pt_detect())
-               return -1;
+       if (pt_detect()) {
+               err = -ENODEV;
+               goto out;
+       }
 
-       if (register_chrdev(major, name, &pt_fops)) {
+       err = register_chrdev(major, name, &pt_fops);
+       if (err < 0) {
                printk("pt_init: unable to get major number %d\n", major);
                for (unit = 0; unit < PT_UNITS; unit++)
                        if (pt[unit].present)
                                pi_release(pt[unit].pi);
-               return -1;
+               goto out;
+       }
+       major = err;
+       pt_class = class_create(THIS_MODULE, "pt");
+       if (IS_ERR(pt_class)) {
+               err = PTR_ERR(pt_class);
+               goto out_chrdev;
        }
 
-       devfs_mk_dir("pt");
        for (unit = 0; unit < PT_UNITS; unit++)
                if (pt[unit].present) {
-                       devfs_mk_cdev(MKDEV(major, unit),
-                                     S_IFCHR | S_IRUSR | S_IWUSR,
-                                     "pt/%d", unit);
-                       devfs_mk_cdev(MKDEV(major, unit + 128),
-                                     S_IFCHR | S_IRUSR | S_IWUSR,
-                                     "pt/%dn", unit);
+                       class_device_create(pt_class, NULL, MKDEV(major, unit),
+                                       NULL, "pt%d", unit);
+                       class_device_create(pt_class, NULL, MKDEV(major, unit + 128),
+                                       NULL, "pt%dn", unit);
                }
-       return 0;
+       goto out;
+
+out_chrdev:
+       unregister_chrdev(major, "pt");
+out:
+       return err;
 }
 
 static void __exit pt_exit(void)
@@ -993,10 +990,10 @@ static void __exit pt_exit(void)
        int unit;
        for (unit = 0; unit < PT_UNITS; unit++)
                if (pt[unit].present) {
-                       devfs_remove("pt/%d", unit);
-                       devfs_remove("pt/%dn", unit);
+                       class_device_destroy(pt_class, MKDEV(major, unit));
+                       class_device_destroy(pt_class, MKDEV(major, unit + 128));
                }
-       devfs_remove("pt");
+       class_destroy(pt_class);
        unregister_chrdev(major, name);
        for (unit = 0; unit < PT_UNITS; unit++)
                if (pt[unit].present)