diff options
author | Yi Zhang <yizhan@redhat.com> | 2015-08-12 19:22:43 +0800 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2015-08-12 11:27:29 -0400 |
commit | 34dd051741572859bc1fef525c5ddbc127158b52 (patch) | |
tree | 815aebe2223832c173913226499a82d5d7a41ebc /drivers/md/dm-cache-policy-smq.c | |
parent | b0dc3c8bc157c60b1d470163882be8c13e1950af (diff) | |
download | linux-stable-34dd051741572859bc1fef525c5ddbc127158b52.tar.gz linux-stable-34dd051741572859bc1fef525c5ddbc127158b52.tar.bz2 linux-stable-34dd051741572859bc1fef525c5ddbc127158b52.zip |
dm cache policy smq: move 'dm-cache-default' module alias to SMQ
When creating dm-cache with the default policy, it will call
request_module("dm-cache-default") to register the default policy.
But the "dm-cache-default" alias was left referring to the MQ policy.
Fix this by moving the module alias to SMQ.
Fixes: bccab6a0 (dm cache: switch the "default" cache replacement policy from mq to smq)
Signed-off-by: Yi Zhang <yizhan@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md/dm-cache-policy-smq.c')
-rw-r--r-- | drivers/md/dm-cache-policy-smq.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/dm-cache-policy-smq.c b/drivers/md/dm-cache-policy-smq.c index 48a4a826ae07..200366c62231 100644 --- a/drivers/md/dm-cache-policy-smq.c +++ b/drivers/md/dm-cache-policy-smq.c @@ -1789,3 +1789,5 @@ module_exit(smq_exit); MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("smq cache policy"); + +MODULE_ALIAS("dm-cache-default"); |