dect
/
linux-2.6
Archived
13
0
Fork 0

aio: check return value of create_workqueue()

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Namhyung Kim 2010-12-14 00:06:25 +09:00 committed by Al Viro
parent 274052ef0b
commit 27eaa1c90c
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ static int __init aio_setup(void)
aio_wq = create_workqueue("aio");
abe_pool = mempool_create_kmalloc_pool(1, sizeof(struct aio_batch_entry));
BUG_ON(!abe_pool);
BUG_ON(!aio_wq || !abe_pool);
pr_debug("aio_setup: sizeof(struct page) = %d\n", (int)sizeof(struct page));