diff options
Diffstat (limited to 'fs/jbd/journal.c')
-rw-r--r-- | fs/jbd/journal.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c index b99c3b3654c4..15ea16ad8662 100644 --- a/fs/jbd/journal.c +++ b/fs/jbd/journal.c | |||
@@ -1636,9 +1636,10 @@ static int journal_init_journal_head_cache(void) | |||
1636 | 1636 | ||
1637 | static void journal_destroy_journal_head_cache(void) | 1637 | static void journal_destroy_journal_head_cache(void) |
1638 | { | 1638 | { |
1639 | J_ASSERT(journal_head_cache != NULL); | 1639 | if (journal_head_cache) { |
1640 | kmem_cache_destroy(journal_head_cache); | 1640 | kmem_cache_destroy(journal_head_cache); |
1641 | journal_head_cache = NULL; | 1641 | journal_head_cache = NULL; |
1642 | } | ||
1642 | } | 1643 | } |
1643 | 1644 | ||
1644 | /* | 1645 | /* |