Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 230603
b: refs/heads/master
c: a6e8dc4
h: refs/heads/master
i:
  230601: c6bb913
  230599: 49b7620
v: v3
  • Loading branch information
Tejun Heo authored and Jens Axboe committed Jan 3, 2011
1 parent 7158697 commit c2cd27a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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: 89b90be2d877a904b1704e4029db65655bfc6282
refs/heads/master: a6e8dc46ff0b7defbfa4f29a71aee263377ec573
7 changes: 6 additions & 1 deletion trunk/fs/bio-integrity.c
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,12 @@ void __init bio_integrity_init(void)
{
unsigned int i;

kintegrityd_wq = create_workqueue("kintegrityd");
/*
* kintegrityd won't block much but may burn a lot of CPU cycles.
* Make it highpri CPU intensive wq with max concurrency of 1.
*/
kintegrityd_wq = alloc_workqueue("kintegrityd", WQ_MEM_RECLAIM |
WQ_HIGHPRI | WQ_CPU_INTENSIVE, 1);
if (!kintegrityd_wq)
panic("Failed to create kintegrityd\n");

Expand Down

0 comments on commit c2cd27a

Please sign in to comment.