summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/lru_cache.h
diff options
context:
space:
mode:
authorFilipe Manana <fdmanana@suse.com>2023-03-21 11:37:04 +0000
committerDavid Sterba <dsterba@suse.com>2023-04-17 18:01:18 +0200
commit318eee0328b76394356f0194e2db29eddcb86a06 (patch)
tree1cc3741ece55a9fe90c8ee770c651b9fcac79745 /fs/btrfs/lru_cache.h
parent43fa4219bcf012385150de299364b5044de6500d (diff)
downloadlinux-stable-318eee0328b76394356f0194e2db29eddcb86a06.tar.gz
linux-stable-318eee0328b76394356f0194e2db29eddcb86a06.tar.bz2
linux-stable-318eee0328b76394356f0194e2db29eddcb86a06.zip
btrfs: remove btrfs_lru_cache_is_full() inline function
It's not used anywhere at the moment, but it was used in earlier version of a patch that removed its use in the second version. So just remove btrfs_lru_cache_is_full(). Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Signed-off-by: Filipe Manana <fdmanana@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/lru_cache.h')
-rw-r--r--fs/btrfs/lru_cache.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/btrfs/lru_cache.h b/fs/btrfs/lru_cache.h
index de3e18bce24a..00328c856be6 100644
--- a/fs/btrfs/lru_cache.h
+++ b/fs/btrfs/lru_cache.h
@@ -55,11 +55,6 @@ static inline unsigned int btrfs_lru_cache_size(const struct btrfs_lru_cache *ca
return cache->size;
}
-static inline bool btrfs_lru_cache_is_full(const struct btrfs_lru_cache *cache)
-{
- return cache->size >= cache->max_size;
-}
-
static inline struct btrfs_lru_cache_entry *btrfs_lru_cache_lru_entry(
struct btrfs_lru_cache *cache)
{