Branch data Line data Source code
1 : : /**************************************************************************
2 : : *
3 : : * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND. USA.
4 : : * All Rights Reserved.
5 : : *
6 : : * Permission is hereby granted, free of charge, to any person obtaining a
7 : : * copy of this software and associated documentation files (the
8 : : * "Software"), to deal in the Software without restriction, including
9 : : * without limitation the rights to use, copy, modify, merge, publish,
10 : : * distribute, sub license, and/or sell copies of the Software, and to
11 : : * permit persons to whom the Software is furnished to do so, subject to
12 : : * the following conditions:
13 : : *
14 : : * The above copyright notice and this permission notice (including the
15 : : * next paragraph) shall be included in all copies or substantial portions
16 : : * of the Software.
17 : : *
18 : : * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 : : * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 : : * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 : : * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 : : * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 : : * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 : : * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 : : *
26 : : *
27 : : **************************************************************************/
28 : : /*
29 : : * Simple open hash tab implementation.
30 : : *
31 : : * Authors:
32 : : * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
33 : : */
34 : :
35 : : #include <linux/export.h>
36 : : #include <linux/hash.h>
37 : : #include <linux/mm.h>
38 : : #include <linux/rculist.h>
39 : : #include <linux/slab.h>
40 : : #include <linux/vmalloc.h>
41 : :
42 : : #include <drm/drm_hashtab.h>
43 : : #include <drm/drm_print.h>
44 : :
45 : 0 : int drm_ht_create(struct drm_open_hash *ht, unsigned int order)
46 : : {
47 : 0 : unsigned int size = 1 << order;
48 : :
49 : 0 : ht->order = order;
50 : 0 : ht->table = NULL;
51 [ # # ]: 0 : if (size <= PAGE_SIZE / sizeof(*ht->table))
52 : 0 : ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL);
53 : : else
54 : 0 : ht->table = vzalloc(array_size(size, sizeof(*ht->table)));
55 [ # # ]: 0 : if (!ht->table) {
56 : 0 : DRM_ERROR("Out of memory for hash table\n");
57 : 0 : return -ENOMEM;
58 : : }
59 : : return 0;
60 : : }
61 : : EXPORT_SYMBOL(drm_ht_create);
62 : :
63 : 0 : void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key)
64 : : {
65 : 0 : struct drm_hash_item *entry;
66 : 0 : struct hlist_head *h_list;
67 : 0 : unsigned int hashed_key;
68 : 0 : int count = 0;
69 : :
70 : 0 : hashed_key = hash_long(key, ht->order);
71 : 0 : DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key);
72 : 0 : h_list = &ht->table[hashed_key];
73 [ # # # # : 0 : hlist_for_each_entry(entry, h_list, head)
# # ]
74 : 0 : DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key);
75 : 0 : }
76 : :
77 : 0 : static struct hlist_node *drm_ht_find_key(struct drm_open_hash *ht,
78 : : unsigned long key)
79 : : {
80 : 0 : struct drm_hash_item *entry;
81 : 0 : struct hlist_head *h_list;
82 : 0 : unsigned int hashed_key;
83 : :
84 : 0 : hashed_key = hash_long(key, ht->order);
85 : 0 : h_list = &ht->table[hashed_key];
86 [ # # # # : 0 : hlist_for_each_entry(entry, h_list, head) {
# # ]
87 [ # # ]: 0 : if (entry->key == key)
88 : 0 : return &entry->head;
89 [ # # ]: 0 : if (entry->key > key)
90 : : break;
91 : : }
92 : : return NULL;
93 : : }
94 : :
95 : 0 : static struct hlist_node *drm_ht_find_key_rcu(struct drm_open_hash *ht,
96 : : unsigned long key)
97 : : {
98 : 0 : struct drm_hash_item *entry;
99 : 0 : struct hlist_head *h_list;
100 : 0 : unsigned int hashed_key;
101 : :
102 : 0 : hashed_key = hash_long(key, ht->order);
103 : 0 : h_list = &ht->table[hashed_key];
104 [ # # # # ]: 0 : hlist_for_each_entry_rcu(entry, h_list, head) {
105 [ # # ]: 0 : if (entry->key == key)
106 : 0 : return &entry->head;
107 [ # # ]: 0 : if (entry->key > key)
108 : : break;
109 : : }
110 : : return NULL;
111 : : }
112 : :
113 : 0 : int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item)
114 : : {
115 : 0 : struct drm_hash_item *entry;
116 : 0 : struct hlist_head *h_list;
117 : 0 : struct hlist_node *parent;
118 : 0 : unsigned int hashed_key;
119 : 0 : unsigned long key = item->key;
120 : :
121 [ # # ]: 0 : hashed_key = hash_long(key, ht->order);
122 : 0 : h_list = &ht->table[hashed_key];
123 : 0 : parent = NULL;
124 [ # # # # ]: 0 : hlist_for_each_entry(entry, h_list, head) {
125 [ # # ]: 0 : if (entry->key == key)
126 : : return -EINVAL;
127 [ # # ]: 0 : if (entry->key > key)
128 : : break;
129 [ # # ]: 0 : parent = &entry->head;
130 : : }
131 [ # # ]: 0 : if (parent) {
132 : 0 : hlist_add_behind_rcu(&item->head, parent);
133 : : } else {
134 : 0 : hlist_add_head_rcu(&item->head, h_list);
135 : : }
136 : : return 0;
137 : : }
138 : : EXPORT_SYMBOL(drm_ht_insert_item);
139 : :
140 : : /*
141 : : * Just insert an item and return any "bits" bit key that hasn't been
142 : : * used before.
143 : : */
144 : 0 : int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item,
145 : : unsigned long seed, int bits, int shift,
146 : : unsigned long add)
147 : : {
148 : 0 : int ret;
149 : 0 : unsigned long mask = (1UL << bits) - 1;
150 : 0 : unsigned long first, unshifted_key;
151 : :
152 : 0 : unshifted_key = hash_long(seed, bits);
153 : 0 : first = unshifted_key;
154 : 0 : do {
155 : 0 : item->key = (unshifted_key << shift) + add;
156 : 0 : ret = drm_ht_insert_item(ht, item);
157 [ # # ]: 0 : if (ret)
158 : 0 : unshifted_key = (unshifted_key + 1) & mask;
159 [ # # ]: 0 : } while(ret && (unshifted_key != first));
160 : :
161 [ # # ]: 0 : if (ret) {
162 : 0 : DRM_ERROR("Available key bit space exhausted\n");
163 : 0 : return -EINVAL;
164 : : }
165 : : return 0;
166 : : }
167 : : EXPORT_SYMBOL(drm_ht_just_insert_please);
168 : :
169 : 0 : int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key,
170 : : struct drm_hash_item **item)
171 : : {
172 : 0 : struct hlist_node *list;
173 : :
174 : 0 : list = drm_ht_find_key_rcu(ht, key);
175 [ # # ]: 0 : if (!list)
176 : : return -EINVAL;
177 : :
178 : 0 : *item = hlist_entry(list, struct drm_hash_item, head);
179 : 0 : return 0;
180 : : }
181 : : EXPORT_SYMBOL(drm_ht_find_item);
182 : :
183 : 0 : int drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key)
184 : : {
185 : 0 : struct hlist_node *list;
186 : :
187 [ # # ]: 0 : list = drm_ht_find_key(ht, key);
188 [ # # ]: 0 : if (list) {
189 [ # # ]: 0 : hlist_del_init_rcu(list);
190 : 0 : return 0;
191 : : }
192 : : return -EINVAL;
193 : : }
194 : :
195 : 0 : int drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item)
196 : : {
197 [ # # ]: 0 : hlist_del_init_rcu(&item->head);
198 : 0 : return 0;
199 : : }
200 : : EXPORT_SYMBOL(drm_ht_remove_item);
201 : :
202 : 0 : void drm_ht_remove(struct drm_open_hash *ht)
203 : : {
204 [ # # ]: 0 : if (ht->table) {
205 : 0 : kvfree(ht->table);
206 : 0 : ht->table = NULL;
207 : : }
208 : 0 : }
209 : : EXPORT_SYMBOL(drm_ht_remove);
|