02_sil24_separate-out-error-path.patch

        Move error handling from sil24_host_intr into separate
        function - sil24_error_intr.

        Jeff, I don't think this patch actually improves readability
        and/or performance.  Is this what you wanted?

Signed-off-by: Tejun Heo <[EMAIL PROTECTED]>

 sata_sil24.c |   59 +++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 33 insertions(+), 26 deletions(-)

Index: work/drivers/scsi/sata_sil24.c
===================================================================
--- work.orig/drivers/scsi/sata_sil24.c 2005-07-30 19:13:39.000000000 +0900
+++ work/drivers/scsi/sata_sil24.c      2005-07-30 19:13:40.000000000 +0900
@@ -482,6 +482,37 @@ static void sil24_eng_timeout(struct ata
        sil24_reset_controller(ap);
 }
 
+static void sil24_error_intr(struct ata_port *ap, u32 slot_stat)
+{
+       struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
+       struct sil24_port_priv *pp = ap->private_data;
+       void *port = pp->port;
+       u32 irq_stat, cmd_err, sstatus, serror;
+
+       irq_stat = readl(port + PORT_IRQ_STAT);
+       cmd_err = readl(port + PORT_CMD_ERR);
+       sstatus = readl(port + PORT_SSTATUS);
+       serror = readl(port + PORT_SERROR);
+
+       /* Clear IRQ/errors */
+       writel(irq_stat, port + PORT_IRQ_STAT);
+       if (cmd_err)
+               writel(cmd_err, port + PORT_CMD_ERR);
+       if (serror)
+               writel(serror, port + PORT_SERROR);
+
+       printk(KERN_ERR DRV_NAME " ata%u: error interrupt on port%d\n"
+              "  stat=0x%x irq=0x%x cmd_err=%d sstatus=0x%x serror=0x%x\n",
+              ap->id, ap->port_no, slot_stat, irq_stat, cmd_err, sstatus, 
serror);
+
+       /* FIXME: We can do better and emulate the err register too. */
+       pp->stat = ATA_DRDY | ATA_ERR;
+       if (qc)
+               ata_qc_complete(qc, ATA_ERR);
+
+       sil24_reset_controller(ap);
+}
+
 static inline void sil24_host_intr(struct ata_port *ap)
 {
        struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
@@ -494,32 +525,8 @@ static inline void sil24_host_intr(struc
                pp->stat = ATA_DRDY;
                if (qc)
                        ata_qc_complete(qc, 0);
-       } else {
-               u32 irq_stat, cmd_err, sstatus, serror;
-
-               irq_stat = readl(port + PORT_IRQ_STAT);
-               cmd_err = readl(port + PORT_CMD_ERR);
-               sstatus = readl(port + PORT_SSTATUS);
-               serror = readl(port + PORT_SERROR);
-
-               /* Clear IRQ/errors */
-               writel(irq_stat, port + PORT_IRQ_STAT);
-               if (cmd_err)
-                       writel(cmd_err, port + PORT_CMD_ERR);
-               if (serror)
-                       writel(serror, port + PORT_SERROR);
-
-               printk(KERN_ERR DRV_NAME " ata%u: error interrupt on port%d\n"
-                      "  stat=0x%x irq=0x%x cmd_err=%d sstatus=0x%x 
serror=0x%x\n",
-                      ap->id, ap->port_no, slot_stat, irq_stat, cmd_err, 
sstatus, serror);
-
-               /* FIXME: We can do better and emulate the err register too. */
-               pp->stat = ATA_DRDY | ATA_ERR;
-               if (qc)
-                       ata_qc_complete(qc, ATA_ERR);
-
-               sil24_reset_controller(ap);
-       }
+       } else
+               sil24_error_intr(ap, slot_stat);
 }
 
 static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs 
*regs)

-
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to