aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/ulp/srp
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2006-06-17 20:37:30 -0700
committerRoland Dreier <rolandd@cisco.com>2006-06-17 20:37:30 -0700
commit549c5fc2c8149498118f2494a1b6a4938ca05985 (patch)
tree409aff9ba655db4a58d475a7f74f7917d8eca31e /drivers/infiniband/ulp/srp
parentIB/srp: Use SCAN_WILD_CARD from SCSI headers (diff)
downloadlinux-dev-549c5fc2c8149498118f2494a1b6a4938ca05985.tar.xz
linux-dev-549c5fc2c8149498118f2494a1b6a4938ca05985.zip
IB/srp: Get rid of unneeded use of list_for_each_entry_safe()
list_for_each_entry_safe() is used in one place where the list isn't modified. So just change it to list_for_each_entry(). Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/ulp/srp')
-rw-r--r--drivers/infiniband/ulp/srp/ib_srp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c
index 28d741e7805c..7c0a3d9c9056 100644
--- a/drivers/infiniband/ulp/srp/ib_srp.c
+++ b/drivers/infiniband/ulp/srp/ib_srp.c
@@ -1867,8 +1867,7 @@ static void srp_remove_one(struct ib_device *device)
* commands and don't try to reconnect.
*/
mutex_lock(&host->target_mutex);
- list_for_each_entry_safe(target, tmp_target,
- &host->target_list, list) {
+ list_for_each_entry(target, &host->target_list, list) {
spin_lock_irqsave(target->scsi_host->host_lock, flags);
if (target->state != SRP_TARGET_REMOVED)
target->state = SRP_TARGET_REMOVED;