diff options
Diffstat (limited to 'fs/xfs/linux-2.6/kmem.h')
-rw-r--r-- | fs/xfs/linux-2.6/kmem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/kmem.h b/fs/xfs/linux-2.6/kmem.h index 939bd84bc7ee..0e8293c5a32f 100644 --- a/fs/xfs/linux-2.6/kmem.h +++ b/fs/xfs/linux-2.6/kmem.h | |||
@@ -91,8 +91,8 @@ kmem_zone_free(kmem_zone_t *zone, void *ptr) | |||
91 | static inline void | 91 | static inline void |
92 | kmem_zone_destroy(kmem_zone_t *zone) | 92 | kmem_zone_destroy(kmem_zone_t *zone) |
93 | { | 93 | { |
94 | if (zone && kmem_cache_destroy(zone)) | 94 | if (zone) |
95 | BUG(); | 95 | kmem_cache_destroy(zone); |
96 | } | 96 | } |
97 | 97 | ||
98 | extern void *kmem_zone_alloc(kmem_zone_t *, unsigned int __nocast); | 98 | extern void *kmem_zone_alloc(kmem_zone_t *, unsigned int __nocast); |