| 993 | extern struct kmem_cache *jbd_handle_cache; |
| 994 | |
| 995 | static inline handle_t *jbd_alloc_handle(gfp_t gfp_flags) |
| 996 | { |
| 997 | return (handle_t *)kmem_cache_alloc(jbd_handle_cache, gfp_flags); |
| 998 | } |
| 999 | |
| 1000 | static inline void jbd_free_handle(handle_t *handle) |
| 1001 | { |
nothing calls this directly
no test coverage detected