Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41359
b: refs/heads/master
c: 04699a1
h: refs/heads/master
i:
  41357: 0723a4f
  41355: 98084e2
  41351: 24be335
  41343: 998168c
v: v3
  • Loading branch information
Roland Dreier committed Nov 29, 2006
1 parent 26e1485 commit a0e8c27
Show file tree
Hide file tree
Showing 2 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: c78bb8442b14ee6704bdb323111ffa874d4bfdaa
refs/heads/master: 04699a1f8634a4e89c71b22050b599c72126fa96
6 changes: 2 additions & 4 deletions trunk/drivers/infiniband/core/addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,7 @@ static void process_req(void *data)
else if (req->status == -ENODATA)
continue;
}
list_del(&req->list);
list_add_tail(&req->list, &done_list);
list_move_tail(&req->list, &done_list);
}

if (!list_empty(&req_list)) {
Expand Down Expand Up @@ -346,8 +345,7 @@ void rdma_addr_cancel(struct rdma_dev_addr *addr)
if (req->addr == addr) {
req->status = -ECANCELED;
req->timeout = jiffies;
list_del(&req->list);
list_add(&req->list, &req_list);
list_move(&req->list, &req_list);
set_timeout(req->timeout);
break;
}
Expand Down

0 comments on commit a0e8c27

Please sign in to comment.