Merge commit 'dc97a43d4a70c8773a619f11b95b07a787f6f5b7' into merges
[unleashed.git] / kernel / fs / zfs / sys / multilist.h
bloba2031da77daa97d540c42f4435388066640c4194
1 /*
2 * CDDL HEADER START
4 * This file and its contents are supplied under the terms of the
5 * Common Development and Distribution License ("CDDL"), version 1.0.
6 * You may only use this file in accordance with the terms of version
7 * 1.0 of the CDDL.
9 * A full copy of the text of the CDDL should have accompanied this
10 * source. A copy of the CDDL is also available via the Internet at
11 * http://www.illumos.org/license/CDDL.
13 * CDDL HEADER END
16 * Copyright (c) 2013, 2017 by Delphix. All rights reserved.
19 #ifndef _SYS_MULTILIST_H
20 #define _SYS_MULTILIST_H
22 #include <sys/zfs_context.h>
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
28 typedef list_node_t multilist_node_t;
29 typedef struct multilist multilist_t;
30 typedef struct multilist_sublist multilist_sublist_t;
31 typedef unsigned int multilist_sublist_index_func_t(multilist_t *, void *);
33 struct multilist_sublist {
35 * The mutex used internally to implement thread safe insertions
36 * and removals to this individual sublist. It can also be locked
37 * by a consumer using multilist_sublist_{lock,unlock}, which is
38 * useful if a consumer needs to traverse the list in a thread
39 * safe manner.
41 kmutex_t mls_lock;
43 * The actual list object containing all objects in this sublist.
45 list_t mls_list;
47 * Pad to cache line (64 bytes), in an effort to try and prevent
48 * cache line contention.
50 uint8_t mls_pad[24];
53 struct multilist {
55 * This is used to get to the multilist_node_t structure given
56 * the void *object contained on the list.
58 size_t ml_offset;
60 * The number of sublists used internally by this multilist.
62 uint64_t ml_num_sublists;
64 * The array of pointers to the actual sublists.
66 multilist_sublist_t *ml_sublists;
68 * Pointer to function which determines the sublist to use
69 * when inserting and removing objects from this multilist.
70 * Please see the comment above multilist_create for details.
72 multilist_sublist_index_func_t *ml_index_func;
75 void multilist_destroy(multilist_t *);
76 multilist_t *multilist_create(size_t, size_t, multilist_sublist_index_func_t *);
78 void multilist_insert(multilist_t *, void *);
79 void multilist_remove(multilist_t *, void *);
80 int multilist_is_empty(multilist_t *);
82 unsigned int multilist_get_num_sublists(multilist_t *);
83 unsigned int multilist_get_random_index(multilist_t *);
85 multilist_sublist_t *multilist_sublist_lock(multilist_t *, unsigned int);
86 multilist_sublist_t *multilist_sublist_lock_obj(multilist_t *, void *);
87 void multilist_sublist_unlock(multilist_sublist_t *);
89 void multilist_sublist_insert_head(multilist_sublist_t *, void *);
90 void multilist_sublist_insert_tail(multilist_sublist_t *, void *);
91 void multilist_sublist_move_forward(multilist_sublist_t *mls, void *obj);
92 void multilist_sublist_remove(multilist_sublist_t *, void *);
94 void *multilist_sublist_head(multilist_sublist_t *);
95 void *multilist_sublist_tail(multilist_sublist_t *);
96 void *multilist_sublist_next(multilist_sublist_t *, void *);
97 void *multilist_sublist_prev(multilist_sublist_t *, void *);
99 void multilist_link_init(multilist_node_t *);
100 int multilist_link_active(multilist_node_t *);
102 #ifdef __cplusplus
104 #endif
106 #endif /* _SYS_MULTILIST_H */