| 1454 | extern struct kmem_cache *jbd2_handle_cache; |
| 1455 | |
| 1456 | static inline handle_t *jbd2_alloc_handle(gfp_t gfp_flags) |
| 1457 | { |
| 1458 | return kmem_cache_alloc(jbd2_handle_cache, gfp_flags); |
| 1459 | } |
| 1460 | |
| 1461 | static inline void jbd2_free_handle(handle_t *handle) |
| 1462 | { |
nothing calls this directly
no test coverage detected