2 * Copyright (C) 2001 Sistina Software (UK) Limited
4 * This file is released under the GPL.
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/kmod.h>
12 #include <linux/bio.h>
14 #define DM_MSG_PREFIX "target"
16 static LIST_HEAD(_targets
);
17 static DECLARE_RWSEM(_lock
);
19 #define DM_MOD_NAME_SIZE 32
21 static inline struct target_type
*__find_target_type(const char *name
)
23 struct target_type
*tt
;
25 list_for_each_entry(tt
, &_targets
, list
)
26 if (!strcmp(name
, tt
->name
))
32 static struct target_type
*get_target_type(const char *name
)
34 struct target_type
*tt
;
38 tt
= __find_target_type(name
);
39 if (tt
&& !try_module_get(tt
->module
))
46 static void load_module(const char *name
)
48 request_module("dm-%s", name
);
51 struct target_type
*dm_get_target_type(const char *name
)
53 struct target_type
*tt
= get_target_type(name
);
57 tt
= get_target_type(name
);
63 void dm_put_target_type(struct target_type
*tt
)
66 module_put(tt
->module
);
70 int dm_target_iterate(void (*iter_func
)(struct target_type
*tt
,
71 void *param
), void *param
)
73 struct target_type
*tt
;
76 list_for_each_entry(tt
, &_targets
, list
)
83 int dm_register_target(struct target_type
*tt
)
88 if (__find_target_type(tt
->name
))
91 list_add(&tt
->list
, &_targets
);
97 void dm_unregister_target(struct target_type
*tt
)
100 if (!__find_target_type(tt
->name
)) {
101 DMCRIT("Unregistering unrecognised target: %s", tt
->name
);
111 * io-err: always fails an io, useful for bringing
112 * up LVs that have holes in them.
114 static int io_err_ctr(struct dm_target
*tt
, unsigned int argc
, char **args
)
119 static void io_err_dtr(struct dm_target
*tt
)
124 static int io_err_map(struct dm_target
*tt
, struct bio
*bio
,
125 union map_info
*map_context
)
130 static struct target_type error_target
= {
132 .version
= {1, 0, 1},
138 int __init
dm_target_init(void)
140 return dm_register_target(&error_target
);
143 void dm_target_exit(void)
145 dm_unregister_target(&error_target
);
148 EXPORT_SYMBOL(dm_register_target
);
149 EXPORT_SYMBOL(dm_unregister_target
);