Create a separate module for clustering support
[linux-block.git] / drivers / md / md-cluster.c
CommitLineData
8e854e9c
GR
1/*
2 * Copyright (C) 2015, SUSE
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
8 *
9 */
10
11
12#include <linux/module.h>
13
14static int __init cluster_init(void)
15{
16 pr_warn("md-cluster: EXPERIMENTAL. Use with caution\n");
17 pr_info("Registering Cluster MD functions\n");
18 return 0;
19}
20
21static void cluster_exit(void)
22{
23}
24
25module_init(cluster_init);
26module_exit(cluster_exit);
27MODULE_LICENSE("GPL");
28MODULE_DESCRIPTION("Clustering support for MD");