Skip to content

Commit

Permalink
[PATCH] fatfs sectioning fix
Browse files Browse the repository at this point in the history
Fixup for the recent slab leak fix

Cc: Pekka Enberg <[email protected]>
Cc: OGAWA Hirofumi <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jul 1, 2005
1 parent eaf05be commit ef6689e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fs/fat/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int __init fat_cache_init(void)
return 0;
}

void __exit fat_cache_destroy(void)
void fat_cache_destroy(void)
{
if (kmem_cache_destroy(fat_cache_cachep))
printk(KERN_INFO "fat_cache: not all structures were freed\n");
Expand Down
2 changes: 1 addition & 1 deletion fs/fat/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
EXPORT_SYMBOL(fat_fill_super);

int __init fat_cache_init(void);
void __exit fat_cache_destroy(void);
void fat_cache_destroy(void);

static int __init init_fat_fs(void)
{
Expand Down

0 comments on commit ef6689e

Please sign in to comment.