Re: [PATCH 2/2] scsi_dh_alua: remove synchronous STPG support

2017-06-26 Thread Martin K. Petersen

Christoph,

> Since 9c58b395 ("scsi: scsi_devinfo: remove synchronous ALUA for
> NETAPP devices") this code is unused.

Applied to 4.13/scsi-queue.

-- 
Martin K. Petersen  Oracle Linux Engineering


Re: [PATCH 2/2] scsi_dh_alua: remove synchronous STPG support

2017-06-21 Thread Bart Van Assche
On Mon, 2017-06-19 at 14:27 +0200, Christoph Hellwig wrote:
> Since 9c58b395 ("scsi: scsi_devinfo: remove synchronous ALUA for
> NETAPP devices") this code is unused.

Reviewed-by: Bart Van Assche 

[PATCH 2/2] scsi_dh_alua: remove synchronous STPG support

2017-06-19 Thread Christoph Hellwig
Since 9c58b395 ("scsi: scsi_devinfo: remove synchronous ALUA for
NETAPP devices") this code is unused.

Signed-off-by: Christoph Hellwig 
---
 drivers/scsi/device_handler/scsi_dh_alua.c | 27 +--
 include/scsi/scsi_device.h |  1 -
 2 files changed, 5 insertions(+), 23 deletions(-)

diff --git a/drivers/scsi/device_handler/scsi_dh_alua.c 
b/drivers/scsi/device_handler/scsi_dh_alua.c
index c01b47e5b55a..0962fd544401 100644
--- a/drivers/scsi/device_handler/scsi_dh_alua.c
+++ b/drivers/scsi/device_handler/scsi_dh_alua.c
@@ -57,7 +57,6 @@
 /* device handler flags */
 #define ALUA_OPTIMIZE_STPG 0x01
 #define ALUA_RTPG_EXT_HDR_UNSUPP   0x02
-#define ALUA_SYNC_STPG 0x04
 /* State machine flags */
 #define ALUA_PG_RUN_RTPG   0x10
 #define ALUA_PG_RUN_STPG   0x20
@@ -70,7 +69,6 @@ MODULE_PARM_DESC(optimize_stpg, "Allow use of a non-optimized 
path, rather than
 static LIST_HEAD(port_group_list);
 static DEFINE_SPINLOCK(port_group_lock);
 static struct workqueue_struct *kaluad_wq;
-static struct workqueue_struct *kaluad_sync_wq;
 
 struct alua_port_group {
struct kref kref;
@@ -380,8 +378,6 @@ static int alua_check_vpd(struct scsi_device *sdev, struct 
alua_dh_data *h,
}
 
spin_lock_irqsave(>lock, flags);
-   if (sdev->synchronous_alua)
-   pg->flags |= ALUA_SYNC_STPG;
if (pg_updated)
list_add_rcu(>node, >dh_list);
spin_unlock_irqrestore(>lock, flags);
@@ -785,7 +781,6 @@ static void alua_rtpg_work(struct work_struct *work)
int err = SCSI_DH_OK;
struct alua_queue_data *qdata, *tmp;
unsigned long flags;
-   struct workqueue_struct *alua_wq = kaluad_wq;
 
spin_lock_irqsave(>lock, flags);
sdev = pg->rtpg_sdev;
@@ -796,8 +791,6 @@ static void alua_rtpg_work(struct work_struct *work)
kref_put(>kref, release_port_group);
return;
}
-   if (pg->flags & ALUA_SYNC_STPG)
-   alua_wq = kaluad_sync_wq;
pg->flags |= ALUA_PG_RUNNING;
if (pg->flags & ALUA_PG_RUN_RTPG) {
int state = pg->state;
@@ -810,7 +803,7 @@ static void alua_rtpg_work(struct work_struct *work)
pg->flags &= ~ALUA_PG_RUNNING;
pg->flags |= ALUA_PG_RUN_RTPG;
spin_unlock_irqrestore(>lock, flags);
-   queue_delayed_work(alua_wq, >rtpg_work,
+   queue_delayed_work(kaluad_wq, >rtpg_work,
   pg->interval * HZ);
return;
}
@@ -822,7 +815,7 @@ static void alua_rtpg_work(struct work_struct *work)
pg->flags &= ~ALUA_PG_RUNNING;
pg->flags |= ALUA_PG_RUN_RTPG;
spin_unlock_irqrestore(>lock, flags);
-   queue_delayed_work(alua_wq, >rtpg_work,
+   queue_delayed_work(kaluad_wq, >rtpg_work,
   pg->interval * HZ);
return;
}
@@ -839,7 +832,7 @@ static void alua_rtpg_work(struct work_struct *work)
pg->interval = 0;
pg->flags &= ~ALUA_PG_RUNNING;
spin_unlock_irqrestore(>lock, flags);
-   queue_delayed_work(alua_wq, >rtpg_work,
+   queue_delayed_work(kaluad_wq, >rtpg_work,
   pg->interval * HZ);
return;
}
@@ -874,8 +867,6 @@ static bool alua_rtpg_queue(struct alua_port_group *pg,
 {
int start_queue = 0;
unsigned long flags;
-   struct workqueue_struct *alua_wq = kaluad_wq;
-
if (WARN_ON_ONCE(!pg) || scsi_device_get(sdev))
return false;
 
@@ -900,12 +891,10 @@ static bool alua_rtpg_queue(struct alua_port_group *pg,
}
}
 
-   if (pg->flags & ALUA_SYNC_STPG)
-   alua_wq = kaluad_sync_wq;
spin_unlock_irqrestore(>lock, flags);
 
if (start_queue) {
-   if (queue_delayed_work(alua_wq, >rtpg_work,
+   if (queue_delayed_work(kaluad_wq, >rtpg_work,
msecs_to_jiffies(ALUA_RTPG_DELAY_MSECS)))
sdev = NULL;
else
@@ -1166,16 +1155,11 @@ static int __init alua_init(void)
/* Temporary failure, bypass */
return SCSI_DH_DEV_TEMP_BUSY;
}
-   kaluad_sync_wq = create_workqueue("kaluad_sync");
-   if (!kaluad_sync_wq) {
-   destroy_workqueue(kaluad_wq);
-   return SCSI_DH_DEV_TEMP_BUSY;
-   }
+
r = scsi_register_device_handler(_dh);
if (r != 0) {
printk(KERN_ERR