diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-12-22 20:46:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-12-22 20:46:49 +0000 |
commit | 10d27e38778f1865905c7b79e47469497985e55c (patch) | |
tree | 04257bff97c81f43cf7469d3fc9e1ff60d89db2d /target/linux/oxnas/patches-3.18/999-libata-hacks.patch | |
parent | f28dad7c6ecc790bd86d0bcd73488445b7a61e87 (diff) | |
download | upstream-10d27e38778f1865905c7b79e47469497985e55c.tar.gz upstream-10d27e38778f1865905c7b79e47469497985e55c.tar.bz2 upstream-10d27e38778f1865905c7b79e47469497985e55c.zip |
oxnas: sata_oxnas: refactoring phase 1
locking for 2nd port and hwraid was added from vendor's GPL code which
doesn't comply with current kernel coding style.
- moved all global variables into host_priv
- renamed locks
- sanetized acquire() and release() parameter list
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43766 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/oxnas/patches-3.18/999-libata-hacks.patch')
-rw-r--r-- | target/linux/oxnas/patches-3.18/999-libata-hacks.patch | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/target/linux/oxnas/patches-3.18/999-libata-hacks.patch b/target/linux/oxnas/patches-3.18/999-libata-hacks.patch index 39d9e51cf0..a1c80d89eb 100644 --- a/target/linux/oxnas/patches-3.18/999-libata-hacks.patch +++ b/target/linux/oxnas/patches-3.18/999-libata-hacks.patch @@ -6,9 +6,9 @@ Index: linux-3.18-rc7/drivers/ata/libata-core.c return AC_ERR_SYSTEM; } -+ if (ap->ops->acquire_hw && !ap->ops->acquire_hw(ap->port_no, 0, 0)) { ++ if (ap->ops->acquire_hw && !ap->ops->acquire_hw(ap, 0, 0)) { + spin_unlock_irqrestore(ap->lock, flags); -+ if (!ap->ops->acquire_hw(ap->port_no, 1, (2*HZ))) { ++ if (!ap->ops->acquire_hw(ap, 1, (2*HZ))) { + return AC_ERR_TIMEOUT; + } + spin_lock_irqsave(ap->lock, flags); @@ -49,11 +49,12 @@ Index: linux-3.18-rc7/include/linux/libata.h /* * Configuration and exception handling -@@ -974,6 +976,8 @@ struct ata_port_operations { +@@ -974,6 +976,9 @@ struct ata_port_operations { void (*phy_reset)(struct ata_port *ap); void (*eng_timeout)(struct ata_port *ap); -+ int (*acquire_hw)(int port_no, int may_sleep, int timeout_jiffies); ++ int (*acquire_hw)(struct ata_port *ap, int may_sleep, ++ int timeout_jiffies); + /* * ->inherits must be the last field and all the preceding |