]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
SCSI: fcoe: Fix preempt count leak in fcoe_filter_frames()
authorThomas Gleixner <tglx@linutronix.de>
Fri, 11 Nov 2011 19:52:01 +0000 (20:52 +0100)
committerMaxim Uvarov <maxim.uvarov@oracle.com>
Tue, 10 Jan 2012 21:00:28 +0000 (13:00 -0800)
commit 7e1e7ead88dff75b11b86ee0d5232c4591be1326 upstream.

The error exit path leaks preempt count. Add the missing put_cpu().

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Yi Zou <yi.zou@intel.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/scsi/fcoe/fcoe.c

index 9d63d0826289c4a848ae505e53c275abd69aa495..96b4c722daac32a3f198ed00364d8eff1085c0fb 100644 (file)
@@ -1560,6 +1560,7 @@ static inline int fcoe_filter_frames(struct fc_lport *lport,
        stats->InvalidCRCCount++;
        if (stats->InvalidCRCCount < 5)
                printk(KERN_WARNING "fcoe: dropping frame with CRC error\n");
+       put_cpu();
        return -EINVAL;
 }