drm/nouveau: fix kernel-doc comments
[drm/drm-misc.git] / drivers / md / dm-path-selector.c
blob3e4cb81ce512c72038211ceddc4c9df34be33cd9
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2003 Sistina Software.
4 * Copyright (C) 2004 Red Hat, Inc. All rights reserved.
6 * Module Author: Heinz Mauelshagen
8 * This file is released under the GPL.
10 * Path selector registration.
13 #include <linux/device-mapper.h>
14 #include <linux/module.h>
16 #include "dm-path-selector.h"
18 #include <linux/slab.h>
20 struct ps_internal {
21 struct path_selector_type pst;
22 struct list_head list;
25 #define pst_to_psi(__pst) container_of((__pst), struct ps_internal, pst)
27 static LIST_HEAD(_path_selectors);
28 static DECLARE_RWSEM(_ps_lock);
30 static struct ps_internal *__find_path_selector_type(const char *name)
32 struct ps_internal *psi;
34 list_for_each_entry(psi, &_path_selectors, list) {
35 if (!strcmp(name, psi->pst.name))
36 return psi;
39 return NULL;
42 static struct ps_internal *get_path_selector(const char *name)
44 struct ps_internal *psi;
46 down_read(&_ps_lock);
47 psi = __find_path_selector_type(name);
48 if (psi && !try_module_get(psi->pst.module))
49 psi = NULL;
50 up_read(&_ps_lock);
52 return psi;
55 struct path_selector_type *dm_get_path_selector(const char *name)
57 struct ps_internal *psi;
59 if (!name)
60 return NULL;
62 psi = get_path_selector(name);
63 if (!psi) {
64 request_module("dm-%s", name);
65 psi = get_path_selector(name);
68 return psi ? &psi->pst : NULL;
71 void dm_put_path_selector(struct path_selector_type *pst)
73 struct ps_internal *psi;
75 if (!pst)
76 return;
78 down_read(&_ps_lock);
79 psi = __find_path_selector_type(pst->name);
80 if (!psi)
81 goto out;
83 module_put(psi->pst.module);
84 out:
85 up_read(&_ps_lock);
88 static struct ps_internal *_alloc_path_selector(struct path_selector_type *pst)
90 struct ps_internal *psi = kzalloc(sizeof(*psi), GFP_KERNEL);
92 if (psi)
93 psi->pst = *pst;
95 return psi;
98 int dm_register_path_selector(struct path_selector_type *pst)
100 int r = 0;
101 struct ps_internal *psi = _alloc_path_selector(pst);
103 if (!psi)
104 return -ENOMEM;
106 down_write(&_ps_lock);
108 if (__find_path_selector_type(pst->name)) {
109 kfree(psi);
110 r = -EEXIST;
111 } else
112 list_add(&psi->list, &_path_selectors);
114 up_write(&_ps_lock);
116 return r;
118 EXPORT_SYMBOL_GPL(dm_register_path_selector);
120 int dm_unregister_path_selector(struct path_selector_type *pst)
122 struct ps_internal *psi;
124 down_write(&_ps_lock);
126 psi = __find_path_selector_type(pst->name);
127 if (!psi) {
128 up_write(&_ps_lock);
129 return -EINVAL;
132 list_del(&psi->list);
134 up_write(&_ps_lock);
136 kfree(psi);
138 return 0;
140 EXPORT_SYMBOL_GPL(dm_unregister_path_selector);