This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / message / i2o / i2o_config.c
index 34451e8..4c24010 100644 (file)
@@ -50,7 +50,8 @@
 
 extern int i2o_parm_issue(struct i2o_device *, int, void *, int, void *, int);
 
-static spinlock_t i2o_config_lock;
+static spinlock_t i2o_config_lock = SPIN_LOCK_UNLOCKED;
+struct wait_queue *i2o_wait_queue;
 
 #define MODINC(x,y) ((x) = ((x) + 1) % (y))
 
@@ -73,12 +74,102 @@ struct i2o_cfg_info {
 static struct i2o_cfg_info *open_files = NULL;
 static ulong i2o_cfg_info_id = 0;
 
+#if 0
+/*
+ *     This is the callback for any message we have posted. The message itself
+ *     will be returned to the message pool when we return from the IRQ
+ *
+ *     This runs in irq context so be short and sweet.
+ */
+static void i2o_cfg_reply(struct i2o_handler *h, struct i2o_controller *c,
+                         struct i2o_message *m)
+{
+       u32 *msg = (u32 *) m;
+
+       if (msg[0] & MSG_FAIL) {
+               u32 *preserved_msg = (u32 *) (c->msg_virt + msg[7]);
+
+               printk(KERN_ERR "i2o_config: IOP failed to process the msg.\n");
+
+               /* Release the preserved msg frame by resubmitting it as a NOP */
+
+               preserved_msg[0] = THREE_WORD_MSG_SIZE | SGL_OFFSET_0;
+               preserved_msg[1] = I2O_CMD_UTIL_NOP << 24 | HOST_TID << 12 | 0;
+               preserved_msg[2] = 0;
+               i2o_post_message(c, msg[7]);
+       }
+
+       if (msg[4] >> 24)       // ReqStatus != SUCCESS
+               i2o_report_status(KERN_INFO, "i2o_config", msg);
+
+       if (m->function == I2O_CMD_UTIL_EVT_REGISTER) {
+               struct i2o_cfg_info *inf;
+
+               for (inf = open_files; inf; inf = inf->next)
+                       if (inf->q_id == i2o_cntxt_list_get(c, msg[3]))
+                               break;
+
+               //
+               // If this is the case, it means that we're getting
+               // events for a file descriptor that's been close()'d
+               // w/o the user unregistering for events first.
+               // The code currently assumes that the user will
+               // take care of unregistering for events before closing
+               // a file.
+               //
+               // TODO:
+               // Should we track event registartion and deregister
+               // for events when a file is close()'d so this doesn't
+               // happen? That would get rid of the search through
+               // the linked list since file->private_data could point
+               // directly to the i2o_config_info data structure...but
+               // it would mean having all sorts of tables to track
+               // what each file is registered for...I think the
+               // current method is simpler. - DS
+               //
+               if (!inf)
+                       return;
+
+               inf->event_q[inf->q_in].id.iop = c->unit;
+               inf->event_q[inf->q_in].id.tid = m->target_tid;
+               inf->event_q[inf->q_in].id.evt_mask = msg[4];
+
+               //
+               // Data size = msg size - reply header
+               //
+               inf->event_q[inf->q_in].data_size = (m->size - 5) * 4;
+               if (inf->event_q[inf->q_in].data_size)
+                       memcpy(inf->event_q[inf->q_in].evt_data,
+                              (unsigned char *)(msg + 5),
+                              inf->event_q[inf->q_in].data_size);
+
+               spin_lock(&i2o_config_lock);
+               MODINC(inf->q_in, I2O_EVT_Q_LEN);
+               if (inf->q_len == I2O_EVT_Q_LEN) {
+                       MODINC(inf->q_out, I2O_EVT_Q_LEN);
+                       inf->q_lost++;
+               } else {
+                       // Keep I2OEVTGET on another CPU from touching this
+                       inf->q_len++;
+               }
+               spin_unlock(&i2o_config_lock);
+
+//              printk(KERN_INFO "File %p w/id %d has %d events\n",
+//                      inf->fp, inf->q_id, inf->q_len);
+
+               kill_fasync(&inf->fasync, SIGIO, POLL_IN);
+       }
+
+       return;
+}
+#endif
+
 /*
  *     Each of these describes an i2o message handler. They are
  *     multiplexed by the i2o_core code
  */
 
-static struct i2o_driver i2o_config_driver = {
+struct i2o_driver i2o_config_driver = {
        .name = "Config-OSM"
 };
 
@@ -87,17 +178,18 @@ static int i2o_cfg_getiops(unsigned long arg)
        struct i2o_controller *c;
        u8 __user *user_iop_table = (void __user *)arg;
        u8 tmp[MAX_I2O_CONTROLLERS];
-       int ret = 0;
 
        memset(tmp, 0, MAX_I2O_CONTROLLERS);
 
+       if (!access_ok(VERIFY_WRITE, user_iop_table, MAX_I2O_CONTROLLERS))
+               return -EFAULT;
+
        list_for_each_entry(c, &i2o_controllers, list)
            tmp[c->unit] = 1;
 
-       if (copy_to_user(user_iop_table, tmp, MAX_I2O_CONTROLLERS))
-               ret = -EFAULT;
+       __copy_to_user(user_iop_table, tmp, MAX_I2O_CONTROLLERS);
 
-       return ret;
+       return 0;
 };
 
 static int i2o_cfg_gethrt(unsigned long arg)
@@ -246,7 +338,7 @@ static int i2o_cfg_swdl(unsigned long arg)
        struct i2o_sw_xfer __user *pxfer = (struct i2o_sw_xfer __user *)arg;
        unsigned char maxfrag = 0, curfrag = 1;
        struct i2o_dma buffer;
-       struct i2o_message __iomem *msg;
+       struct i2o_message *msg;
        u32 m;
        unsigned int status = 0, swlen = 0, fragsize = 8192;
        struct i2o_controller *c;
@@ -296,7 +388,7 @@ static int i2o_cfg_swdl(unsigned long arg)
        writel(0xD0000000 | fragsize, &msg->body[3]);
        writel(buffer.phys, &msg->body[4]);
 
-//      printk(KERN_INFO "i2o_config: swdl frag %d/%d (size %d)\n", curfrag, maxfrag, fragsize);
+//      printk("i2o_config: swdl frag %d/%d (size %d)\n", curfrag, maxfrag, fragsize);
        status = i2o_msg_post_wait_mem(c, m, 60, &buffer);
 
        if (status != -ETIMEDOUT)
@@ -320,29 +412,28 @@ static int i2o_cfg_swul(unsigned long arg)
        struct i2o_sw_xfer __user *pxfer = (struct i2o_sw_xfer __user *)arg;
        unsigned char maxfrag = 0, curfrag = 1;
        struct i2o_dma buffer;
-       struct i2o_message __iomem *msg;
+       struct i2o_message *msg;
        u32 m;
        unsigned int status = 0, swlen = 0, fragsize = 8192;
        struct i2o_controller *c;
-       int ret = 0;
 
        if (copy_from_user(&kxfer, pxfer, sizeof(struct i2o_sw_xfer)))
-               goto return_fault;
+               return -EFAULT;
 
        if (get_user(swlen, kxfer.swlen) < 0)
-               goto return_fault;
+               return -EFAULT;
 
        if (get_user(maxfrag, kxfer.maxfrag) < 0)
-               goto return_fault;
+               return -EFAULT;
 
        if (get_user(curfrag, kxfer.curfrag) < 0)
-               goto return_fault;
+               return -EFAULT;
 
        if (curfrag == maxfrag)
                fragsize = swlen - (maxfrag - 1) * 8192;
 
-       if (!kxfer.buf)
-               goto return_fault;
+       if (!kxfer.buf || !access_ok(VERIFY_WRITE, kxfer.buf, fragsize))
+               return -EFAULT;
 
        c = i2o_find_iop(kxfer.iop);
        if (!c)
@@ -370,7 +461,7 @@ static int i2o_cfg_swul(unsigned long arg)
        writel(0xD0000000 | fragsize, &msg->body[3]);
        writel(buffer.phys, &msg->body[4]);
 
-//      printk(KERN_INFO "i2o_config: swul frag %d/%d (size %d)\n", curfrag, maxfrag, fragsize);
+//      printk("i2o_config: swul frag %d/%d (size %d)\n", curfrag, maxfrag, fragsize);
        status = i2o_msg_post_wait_mem(c, m, 60, &buffer);
 
        if (status != I2O_POST_WAIT_OK) {
@@ -383,16 +474,10 @@ static int i2o_cfg_swul(unsigned long arg)
                return status;
        }
 
-       if (copy_to_user(kxfer.buf, buffer.virt, fragsize))
-               ret = -EFAULT;
-
+       __copy_to_user(kxfer.buf, buffer.virt, fragsize);
        i2o_dma_free(&c->pdev->dev, &buffer);
 
-return_ret:
-       return ret;
-return_fault:
-       ret = -EFAULT;
-       goto return_ret;
+       return 0;
 };
 
 static int i2o_cfg_swdel(unsigned long arg)
@@ -400,7 +485,7 @@ static int i2o_cfg_swdel(unsigned long arg)
        struct i2o_controller *c;
        struct i2o_sw_xfer kxfer;
        struct i2o_sw_xfer __user *pxfer = (struct i2o_sw_xfer __user *)arg;
-       struct i2o_message __iomem *msg;
+       struct i2o_message *msg;
        u32 m;
        unsigned int swlen;
        int token;
@@ -445,7 +530,7 @@ static int i2o_cfg_validate(unsigned long arg)
 {
        int token;
        int iop = (int)arg;
-       struct i2o_message __iomem *msg;
+       struct i2o_message *msg;
        u32 m;
        struct i2o_controller *c;
 
@@ -476,7 +561,7 @@ static int i2o_cfg_validate(unsigned long arg)
 
 static int i2o_cfg_evt_reg(unsigned long arg, struct file *fp)
 {
-       struct i2o_message __iomem *msg;
+       struct i2o_message *msg;
        u32 m;
        struct i2o_evt_id __user *pdesc = (struct i2o_evt_id __user *)arg;
        struct i2o_evt_id kdesc;
@@ -777,7 +862,7 @@ static int i2o_cfg_passthru(unsigned long arg)
        u32 i = 0;
        void *p = NULL;
        i2o_status_block *sb;
-       struct i2o_message __iomem *msg;
+       struct i2o_message *msg;
        u32 m;
        unsigned int iop;
 
@@ -1128,8 +1213,6 @@ static int __init i2o_config_init(void)
        printk(KERN_INFO "I2O configuration manager v 0.04.\n");
        printk(KERN_INFO "  (C) Copyright 1999 Red Hat Software\n");
 
-       spin_lock_init(&i2o_config_lock);
-
        if (misc_register(&i2o_miscdev) < 0) {
                printk(KERN_ERR "i2o_config: can't register device.\n");
                return -EBUSY;