diff options
author | Tejun Heo <tj@kernel.org> | 2011-02-01 05:42:42 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-02-01 05:42:42 -0500 |
commit | fd89d5f2030ac83324330bfd0bc73abf1beadaa6 (patch) | |
tree | 5368d06cf6cb5990ff9a58525c9c813d8d73adc3 /fs/ext4/super.c | |
parent | 40f38ffb72cd58452dc5afc25ca5215bb90538a4 (diff) |
ext4: convert to alloc_workqueue()
Convert create_workqueue() to alloc_workqueue(). This is an identity
conversion.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: "Theodore Ts'o" <tytso@mit.edu>
Cc: Andreas Dilger <adilger.kernel@dilger.ca>
Cc: linux-ext4@vger.kernel.org
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 48ce561fafac..0fcf6720af09 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -3507,7 +3507,12 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
3507 | percpu_counter_set(&sbi->s_dirtyblocks_counter, 0); | 3507 | percpu_counter_set(&sbi->s_dirtyblocks_counter, 0); |
3508 | 3508 | ||
3509 | no_journal: | 3509 | no_journal: |
3510 | EXT4_SB(sb)->dio_unwritten_wq = create_workqueue("ext4-dio-unwritten"); | 3510 | /* |
3511 | * The maximum number of concurrent works can be high and | ||
3512 | * concurrency isn't really necessary. Limit it to 1. | ||
3513 | */ | ||
3514 | EXT4_SB(sb)->dio_unwritten_wq = | ||
3515 | alloc_workqueue("ext4-dio-unwritten", WQ_MEM_RECLAIM, 1); | ||
3511 | if (!EXT4_SB(sb)->dio_unwritten_wq) { | 3516 | if (!EXT4_SB(sb)->dio_unwritten_wq) { |
3512 | printk(KERN_ERR "EXT4-fs: failed to create DIO workqueue\n"); | 3517 | printk(KERN_ERR "EXT4-fs: failed to create DIO workqueue\n"); |
3513 | goto failed_mount_wq; | 3518 | goto failed_mount_wq; |