diff options
author | Joe Thornber <ejt@redhat.com> | 2016-02-10 13:18:10 +0300 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2016-03-11 01:12:08 +0300 |
commit | 9ed84698fdda63de93c68150c4f63673cc3d7b54 (patch) | |
tree | 3722d66694317bf32b99444fd31a52ec7e5825ed /drivers/md/Kconfig | |
parent | e233d800a9648f2c0802aa23250d9c8af57bab43 (diff) | |
download | linux-9ed84698fdda63de93c68150c4f63673cc3d7b54.tar.xz |
dm cache: make the 'mq' policy an alias for 'smq'
smq seems to be performing better than the old mq policy in all
situations, as well as using a quarter of the memory.
Make 'mq' an alias for 'smq' when choosing a cache policy. The tunables
that were present for the old mq are faked, and have no effect. mq
should be considered deprecated now.
Signed-off-by: Joe Thornber <ejt@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md/Kconfig')
-rw-r--r-- | drivers/md/Kconfig | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index 0a2e7273db9e..2ae40913bbc6 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig @@ -304,16 +304,6 @@ config DM_CACHE algorithms used to select which blocks are promoted, demoted, cleaned etc. It supports writeback and writethrough modes. -config DM_CACHE_MQ - tristate "MQ Cache Policy (EXPERIMENTAL)" - depends on DM_CACHE - default y - ---help--- - A cache policy that uses a multiqueue ordered by recent hit - count to select which blocks should be promoted and demoted. - This is meant to be a general purpose policy. It prioritises - reads over writes. - config DM_CACHE_SMQ tristate "Stochastic MQ Cache Policy (EXPERIMENTAL)" depends on DM_CACHE |