diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-12-14 00:06:25 +0900 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-17 05:12:44 -0500 |
commit | 27eaa1c90c608aa907336c2743d5ecf35c469440 (patch) | |
tree | 33c8e07c5935792fc755ce6ddea660fcd84d65f1 /fs/aio.c | |
parent | 274052ef0bac011249925f6616d147b1491fc601 (diff) | |
download | kernel_samsung_aries-27eaa1c90c608aa907336c2743d5ecf35c469440.zip kernel_samsung_aries-27eaa1c90c608aa907336c2743d5ecf35c469440.tar.gz kernel_samsung_aries-27eaa1c90c608aa907336c2743d5ecf35c469440.tar.bz2 |
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>
Diffstat (limited to 'fs/aio.c')
-rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |