2014-07-07 10:18:17

by Gu Zheng

[permalink] [raw]
Subject: [PATCH] bio-integrity: remove the needless fail handle of bip_slab creating

bip_slab is created with SLAB_PANIC, so the fail handle is needless,
remove it.

Signed-off-by: Gu Zheng <[email protected]>
---
block/bio-integrity.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/block/bio-integrity.c b/block/bio-integrity.c
index 9e24106..56754c4 100644
--- a/block/bio-integrity.c
+++ b/block/bio-integrity.c
@@ -652,6 +652,4 @@ void __init bio_integrity_init(void)
sizeof(struct bio_integrity_payload) +
sizeof(struct bio_vec) * BIP_INLINE_VECS,
0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
- if (!bip_slab)
- panic("Failed to create slab\n");
}
--
1.7.7