Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 358887
b: refs/heads/master
c: e1b2f13
h: refs/heads/master
i:
  358885: f01a5ac
  358883: 02bc493
  358879: ab96524
v: v3
  • Loading branch information
Bart Van Assche authored and Roland Dreier committed Feb 25, 2013
1 parent b1701d4 commit 87355b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcc9b67a5b65ec2e1ec5371226a729ec1b380860
refs/heads/master: e1b2f13aba9ff714d23ecd4a950e744ee7ad72e1
5 changes: 2 additions & 3 deletions trunk/drivers/infiniband/hw/qib/qib_qp.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,8 @@ static void remove_qp(struct qib_ibdev *dev, struct qib_qp *qp)
qpp = &q->next)
if (q == qp) {
atomic_dec(&qp->refcount);
rcu_assign_pointer(*qpp,
rcu_dereference_protected(qp->next,
lockdep_is_held(&dev->qpt_lock)));
*qpp = qp->next;
rcu_assign_pointer(qp->next, NULL);
break;
}
}
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/infiniband/ulp/srp/ib_srp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1972,7 +1972,6 @@ static int srp_add_target(struct srp_host *host, struct srp_target_port *target)
spin_unlock(&host->target_lock);

target->state = SRP_TARGET_LIVE;
target->connected = false;

scsi_scan_target(&target->scsi_host->shost_gendev,
0, target->scsi_id, SCAN_WILD_CARD, 0);
Expand Down

0 comments on commit 87355b4

Please sign in to comment.