summaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-crypt.c
diff options
context:
space:
mode:
authorYangtao Li <frank.li@vivo.com>2023-04-10 00:43:37 +0800
committerMike Snitzer <snitzer@kernel.org>2023-04-11 12:09:08 -0400
commit3664ff82dae1ef9f14f7763d3dd30565e7ef9e14 (patch)
treeb18b6bec1dd93c543024e7943349fb3e239767d7 /drivers/md/dm-crypt.c
parent306fbc2e041c227be7c934efe8a49ddb87bd31f1 (diff)
downloadlinux-stable-3664ff82dae1ef9f14f7763d3dd30565e7ef9e14.tar.gz
linux-stable-3664ff82dae1ef9f14f7763d3dd30565e7ef9e14.tar.bz2
linux-stable-3664ff82dae1ef9f14f7763d3dd30565e7ef9e14.zip
dm: add helper macro for simple DM target module init and exit
Eliminate duplicate boilerplate code for simple modules that contain a single DM target driver without any additional setup code. Add a new module_dm() macro, which replaces the module_init() and module_exit() with template functions that call dm_register_target() and dm_unregister_target() respectively. Signed-off-by: Yangtao Li <frank.li@vivo.com> Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md/dm-crypt.c')
-rw-r--r--drivers/md/dm-crypt.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c
index 52615a258e13..8b47b913ee83 100644
--- a/drivers/md/dm-crypt.c
+++ b/drivers/md/dm-crypt.c
@@ -3659,19 +3659,7 @@ static struct target_type crypt_target = {
.iterate_devices = crypt_iterate_devices,
.io_hints = crypt_io_hints,
};
-
-static int __init dm_crypt_init(void)
-{
- return dm_register_target(&crypt_target);
-}
-
-static void __exit dm_crypt_exit(void)
-{
- dm_unregister_target(&crypt_target);
-}
-
-module_init(dm_crypt_init);
-module_exit(dm_crypt_exit);
+module_dm(crypt);
MODULE_AUTHOR("Jana Saout <jana@saout.de>");
MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");