Commit 32ff840b authored by Alasdair G. Kergon's avatar Alasdair G. Kergon Committed by Linus Torvalds

[PATCH] device-mapper: tag multipath exports GPL

Tag multipath exports GPL.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 797c85d8
......@@ -211,6 +211,6 @@ unsigned dm_scsi_err_handler(struct hw_handler *hwh, struct bio *bio)
return MP_FAIL_PATH;
}
EXPORT_SYMBOL(dm_register_hw_handler);
EXPORT_SYMBOL(dm_unregister_hw_handler);
EXPORT_SYMBOL(dm_scsi_err_handler);
EXPORT_SYMBOL_GPL(dm_register_hw_handler);
EXPORT_SYMBOL_GPL(dm_unregister_hw_handler);
EXPORT_SYMBOL_GPL(dm_scsi_err_handler);
......@@ -1292,7 +1292,7 @@ static void __exit dm_multipath_exit(void)
kmem_cache_destroy(_mpio_cache);
}
EXPORT_SYMBOL(dm_pg_init_complete);
EXPORT_SYMBOL_GPL(dm_pg_init_complete);
module_init(dm_multipath_init);
module_exit(dm_multipath_exit);
......
......@@ -152,5 +152,5 @@ int dm_unregister_path_selector(struct path_selector_type *pst)
return 0;
}
EXPORT_SYMBOL(dm_register_path_selector);
EXPORT_SYMBOL(dm_unregister_path_selector);
EXPORT_SYMBOL_GPL(dm_register_path_selector);
EXPORT_SYMBOL_GPL(dm_unregister_path_selector);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment