]>
git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - lib/parman.c
2 * lib/parman.c - Manager for linear priority array areas
3 * Copyright (c) 2017 Mellanox Technologies. All rights reserved.
4 * Copyright (c) 2017 Jiri Pirko <jiri@mellanox.com>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. Neither the names of the copyright holders nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * Alternatively, this software may be distributed under the terms of the
19 * GNU General Public License ("GPL") version 2 as published by the Free
20 * Software Foundation.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/slab.h>
38 #include <linux/export.h>
39 #include <linux/list.h>
40 #include <linux/err.h>
41 #include <linux/parman.h>
44 int (*item_add
)(struct parman
*parman
, struct parman_prio
*prio
,
45 struct parman_item
*item
);
46 void (*item_remove
)(struct parman
*parman
, struct parman_prio
*prio
,
47 struct parman_item
*item
);
51 const struct parman_ops
*ops
;
53 const struct parman_algo
*algo
;
55 unsigned long limit_count
;
56 struct list_head prio_list
;
59 static int parman_enlarge(struct parman
*parman
)
61 unsigned long new_count
= parman
->limit_count
+
62 parman
->ops
->resize_step
;
65 err
= parman
->ops
->resize(parman
->priv
, new_count
);
68 parman
->limit_count
= new_count
;
72 static int parman_shrink(struct parman
*parman
)
74 unsigned long new_count
= parman
->limit_count
-
75 parman
->ops
->resize_step
;
78 if (new_count
< parman
->ops
->base_count
)
80 err
= parman
->ops
->resize(parman
->priv
, new_count
);
83 parman
->limit_count
= new_count
;
87 static bool parman_prio_used(struct parman_prio
*prio
)
90 return !list_empty(&prio
->item_list
);
93 static struct parman_item
*parman_prio_first_item(struct parman_prio
*prio
)
95 return list_first_entry(&prio
->item_list
,
96 typeof(struct parman_item
), list
);
99 static unsigned long parman_prio_first_index(struct parman_prio
*prio
)
101 return parman_prio_first_item(prio
)->index
;
104 static struct parman_item
*parman_prio_last_item(struct parman_prio
*prio
)
106 return list_last_entry(&prio
->item_list
,
107 typeof(struct parman_item
), list
);
110 static unsigned long parman_prio_last_index(struct parman_prio
*prio
)
112 return parman_prio_last_item(prio
)->index
;
115 static unsigned long parman_lsort_new_index_find(struct parman
*parman
,
116 struct parman_prio
*prio
)
118 list_for_each_entry_from_reverse(prio
, &parman
->prio_list
, list
) {
119 if (!parman_prio_used(prio
))
121 return parman_prio_last_index(prio
) + 1;
126 static void __parman_prio_move(struct parman
*parman
, struct parman_prio
*prio
,
127 struct parman_item
*item
, unsigned long to_index
,
130 parman
->ops
->move(parman
->priv
, item
->index
, to_index
, count
);
133 static void parman_prio_shift_down(struct parman
*parman
,
134 struct parman_prio
*prio
)
136 struct parman_item
*item
;
137 unsigned long to_index
;
139 if (!parman_prio_used(prio
))
141 item
= parman_prio_first_item(prio
);
142 to_index
= parman_prio_last_index(prio
) + 1;
143 __parman_prio_move(parman
, prio
, item
, to_index
, 1);
144 list_move_tail(&item
->list
, &prio
->item_list
);
145 item
->index
= to_index
;
148 static void parman_prio_shift_up(struct parman
*parman
,
149 struct parman_prio
*prio
)
151 struct parman_item
*item
;
152 unsigned long to_index
;
154 if (!parman_prio_used(prio
))
156 item
= parman_prio_last_item(prio
);
157 to_index
= parman_prio_first_index(prio
) - 1;
158 __parman_prio_move(parman
, prio
, item
, to_index
, 1);
159 list_move(&item
->list
, &prio
->item_list
);
160 item
->index
= to_index
;
163 static void parman_prio_item_remove(struct parman
*parman
,
164 struct parman_prio
*prio
,
165 struct parman_item
*item
)
167 struct parman_item
*last_item
;
168 unsigned long to_index
;
170 last_item
= parman_prio_last_item(prio
);
171 if (last_item
== item
) {
172 list_del(&item
->list
);
175 to_index
= item
->index
;
176 __parman_prio_move(parman
, prio
, last_item
, to_index
, 1);
177 list_del(&last_item
->list
);
178 list_replace(&item
->list
, &last_item
->list
);
179 last_item
->index
= to_index
;
182 static int parman_lsort_item_add(struct parman
*parman
,
183 struct parman_prio
*prio
,
184 struct parman_item
*item
)
186 struct parman_prio
*prio2
;
187 unsigned long new_index
;
190 if (parman
->count
+ 1 > parman
->limit_count
) {
191 err
= parman_enlarge(parman
);
196 new_index
= parman_lsort_new_index_find(parman
, prio
);
197 list_for_each_entry_reverse(prio2
, &parman
->prio_list
, list
) {
200 parman_prio_shift_down(parman
, prio2
);
202 item
->index
= new_index
;
203 list_add_tail(&item
->list
, &prio
->item_list
);
208 static void parman_lsort_item_remove(struct parman
*parman
,
209 struct parman_prio
*prio
,
210 struct parman_item
*item
)
212 parman_prio_item_remove(parman
, prio
, item
);
213 list_for_each_entry_continue(prio
, &parman
->prio_list
, list
)
214 parman_prio_shift_up(parman
, prio
);
216 if (parman
->limit_count
- parman
->count
>= parman
->ops
->resize_step
)
217 parman_shrink(parman
);
220 static const struct parman_algo parman_lsort
= {
221 .item_add
= parman_lsort_item_add
,
222 .item_remove
= parman_lsort_item_remove
,
225 static const struct parman_algo
*parman_algos
[] = {
230 * parman_create - creates a new parman instance
231 * @ops: caller-specific callbacks
232 * @priv: pointer to a private data passed to the ops
234 * Note: all locking must be provided by the caller.
236 * Each parman instance manages an array area with chunks of entries
237 * with the same priority. Consider following example:
239 * item 1 with prio 10
240 * item 2 with prio 10
241 * item 3 with prio 10
242 * item 4 with prio 20
243 * item 5 with prio 20
244 * item 6 with prio 30
245 * item 7 with prio 30
246 * item 8 with prio 30
248 * In this example, there are 3 priority chunks. The order of the priorities
249 * matters, however the order of items within a single priority chunk does not
250 * matter. So the same array could be ordered as follows:
252 * item 2 with prio 10
253 * item 3 with prio 10
254 * item 1 with prio 10
255 * item 5 with prio 20
256 * item 4 with prio 20
257 * item 7 with prio 30
258 * item 8 with prio 30
259 * item 6 with prio 30
261 * The goal of parman is to maintain the priority ordering. The caller
262 * provides @ops with callbacks parman uses to move the items
263 * and resize the array area.
265 * Returns a pointer to newly created parman instance in case of success,
266 * otherwise it returns NULL.
268 struct parman
*parman_create(const struct parman_ops
*ops
, void *priv
)
270 struct parman
*parman
;
272 parman
= kzalloc(sizeof(*parman
), GFP_KERNEL
);
275 INIT_LIST_HEAD(&parman
->prio_list
);
278 parman
->limit_count
= ops
->base_count
;
279 parman
->algo
= parman_algos
[ops
->algo
];
282 EXPORT_SYMBOL(parman_create
);
285 * parman_destroy - destroys existing parman instance
286 * @parman: parman instance
288 * Note: all locking must be provided by the caller.
290 void parman_destroy(struct parman
*parman
)
292 WARN_ON(!list_empty(&parman
->prio_list
));
295 EXPORT_SYMBOL(parman_destroy
);
298 * parman_prio_init - initializes a parman priority chunk
299 * @parman: parman instance
300 * @prio: parman prio structure to be initialized
301 * @prority: desired priority of the chunk
303 * Note: all locking must be provided by the caller.
305 * Before caller could add an item with certain priority, he has to
306 * initialize a priority chunk for it using this function.
308 void parman_prio_init(struct parman
*parman
, struct parman_prio
*prio
,
309 unsigned long priority
)
311 struct parman_prio
*prio2
;
312 struct list_head
*pos
;
314 INIT_LIST_HEAD(&prio
->item_list
);
315 prio
->priority
= priority
;
317 /* Position inside the list according to priority */
318 list_for_each(pos
, &parman
->prio_list
) {
319 prio2
= list_entry(pos
, typeof(*prio2
), list
);
320 if (prio2
->priority
> prio
->priority
)
323 list_add_tail(&prio
->list
, pos
);
325 EXPORT_SYMBOL(parman_prio_init
);
328 * parman_prio_fini - finalizes use of parman priority chunk
329 * @prio: parman prio structure
331 * Note: all locking must be provided by the caller.
333 void parman_prio_fini(struct parman_prio
*prio
)
335 WARN_ON(parman_prio_used(prio
));
336 list_del(&prio
->list
);
338 EXPORT_SYMBOL(parman_prio_fini
);
341 * parman_item_add - adds a parman item under defined priority
342 * @parman: parman instance
343 * @prio: parman prio instance to add the item to
344 * @item: parman item instance
346 * Note: all locking must be provided by the caller.
348 * Adds item to a array managed by parman instance under the specified priority.
350 * Returns 0 in case of success, negative number to indicate an error.
352 int parman_item_add(struct parman
*parman
, struct parman_prio
*prio
,
353 struct parman_item
*item
)
355 return parman
->algo
->item_add(parman
, prio
, item
);
357 EXPORT_SYMBOL(parman_item_add
);
360 * parman_item_del - deletes parman item
361 * @parman: parman instance
362 * @prio: parman prio instance to delete the item from
363 * @item: parman item instance
365 * Note: all locking must be provided by the caller.
367 void parman_item_remove(struct parman
*parman
, struct parman_prio
*prio
,
368 struct parman_item
*item
)
370 parman
->algo
->item_remove(parman
, prio
, item
);
372 EXPORT_SYMBOL(parman_item_remove
);
374 MODULE_LICENSE("Dual BSD/GPL");
375 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
376 MODULE_DESCRIPTION("Priority-based array manager");