diff options
author | Yi Zhang <yizhan@redhat.com> | 2015-08-12 13:22:43 +0200 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2015-08-12 17:27:29 +0200 |
commit | 34dd051741572859bc1fef525c5ddbc127158b52 (patch) | |
tree | 815aebe2223832c173913226499a82d5d7a41ebc /drivers/md/dm-cache-policy-smq.c | |
parent | dm btree: add ref counting ops for the leaves of top level btrees (diff) | |
download | linux-34dd051741572859bc1fef525c5ddbc127158b52.tar.xz linux-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"); |