Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c52ab42 authored by Andreas Gruenbacher's avatar Andreas Gruenbacher Committed by Linus Torvalds
Browse files

[PATCH] mbcache: Remove unused mb_cache_shrink parameter



The cache parameter to mb_cache_shrink isn't used.  We may as well remove
it.

Signed-off-by: default avatarAndreas Gruenbacher <agruen@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3dcce8e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -823,7 +823,7 @@ ext2_xattr_delete_inode(struct inode *inode)
void
ext2_xattr_put_super(struct super_block *sb)
{
	mb_cache_shrink(ext2_xattr_cache, sb->s_bdev);
	mb_cache_shrink(sb->s_bdev);
}


+1 −1
Original line number Diff line number Diff line
@@ -1106,7 +1106,7 @@ ext3_xattr_delete_inode(handle_t *handle, struct inode *inode)
void
ext3_xattr_put_super(struct super_block *sb)
{
	mb_cache_shrink(ext3_xattr_cache, sb->s_bdev);
	mb_cache_shrink(sb->s_bdev);
}

/*
+1 −2
Original line number Diff line number Diff line
@@ -316,11 +316,10 @@ mb_cache_create(const char *name, struct mb_cache_op *cache_op,
 * currently in use cannot be freed, and thus remain in the cache. All others
 * are freed.
 *
 * @cache: which cache to shrink
 * @bdev: which device's cache entries to shrink
 */
void
mb_cache_shrink(struct mb_cache *cache, struct block_device *bdev)
mb_cache_shrink(struct block_device *bdev)
{
	LIST_HEAD(free_list);
	struct list_head *l, *ltmp;
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ struct mb_cache_op {

struct mb_cache * mb_cache_create(const char *, struct mb_cache_op *, size_t,
				  int, int);
void mb_cache_shrink(struct mb_cache *, struct block_device *);
void mb_cache_shrink(struct block_device *);
void mb_cache_destroy(struct mb_cache *);

/* Functions on cache entries */