diff options
Diffstat (limited to 'fs/xfs/xfs_mru_cache.c')
-rw-r--r-- | fs/xfs/xfs_mru_cache.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_mru_cache.c b/fs/xfs/xfs_mru_cache.c index a0b2c0a2589a..26d14a1e0e14 100644 --- a/fs/xfs/xfs_mru_cache.c +++ b/fs/xfs/xfs_mru_cache.c | |||
@@ -382,9 +382,9 @@ xfs_mru_cache_create( | |||
382 | 382 | ||
383 | exit: | 383 | exit: |
384 | if (err && mru && mru->lists) | 384 | if (err && mru && mru->lists) |
385 | kmem_free(mru->lists, mru->grp_count * sizeof(*mru->lists)); | 385 | kmem_free(mru->lists); |
386 | if (err && mru) | 386 | if (err && mru) |
387 | kmem_free(mru, sizeof(*mru)); | 387 | kmem_free(mru); |
388 | 388 | ||
389 | return err; | 389 | return err; |
390 | } | 390 | } |
@@ -424,8 +424,8 @@ xfs_mru_cache_destroy( | |||
424 | 424 | ||
425 | xfs_mru_cache_flush(mru); | 425 | xfs_mru_cache_flush(mru); |
426 | 426 | ||
427 | kmem_free(mru->lists, mru->grp_count * sizeof(*mru->lists)); | 427 | kmem_free(mru->lists); |
428 | kmem_free(mru, sizeof(*mru)); | 428 | kmem_free(mru); |
429 | } | 429 | } |
430 | 430 | ||
431 | /* | 431 | /* |