Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72922
b: refs/heads/master
c: 3f776e8
h: refs/heads/master
v: v3
  • Loading branch information
Anton Blanchard authored and Roland Dreier committed Oct 30, 2007
1 parent b7aa7d5 commit 4088cc6
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 164ef7a25285bbc42d8177f454b31631ca4d3ec7
refs/heads/master: 3f776e8a25a9d281125490562e1cc5bd7c14cf7c
8 changes: 4 additions & 4 deletions trunk/drivers/infiniband/core/fmr_pool.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,10 @@ struct ib_fmr_pool *ib_create_fmr_pool(struct ib_pd *pd,
atomic_set(&pool->flush_ser, 0);
init_waitqueue_head(&pool->force_wait);

pool->thread = kthread_create(ib_fmr_cleanup_thread,
pool,
"ib_fmr(%s)",
device->name);
pool->thread = kthread_run(ib_fmr_cleanup_thread,
pool,
"ib_fmr(%s)",
device->name);
if (IS_ERR(pool->thread)) {
printk(KERN_WARNING PFX "couldn't start cleanup thread\n");
ret = PTR_ERR(pool->thread);
Expand Down

0 comments on commit 4088cc6

Please sign in to comment.