drm: port over use_vmalloc code from git hashtab
[linux-2.6/sactl.git] / drivers / char / drm / drm_hashtab.c
blobdf0c48539ca451f58dcc28fb2a8ea2e6a1ab6fb5
1 /**************************************************************************
3 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND. USA.
4 * All Rights Reserved.
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:
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.
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.
27 **************************************************************************/
29 * Simple open hash tab implementation.
31 * Authors:
32 * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
35 #include "drmP.h"
36 #include "drm_hashtab.h"
37 #include <linux/hash.h>
39 int drm_ht_create(drm_open_hash_t *ht, unsigned int order)
41 unsigned int i;
43 ht->size = 1 << order;
44 ht->order = order;
45 ht->fill = 0;
46 ht->use_vmalloc = ((ht->size * sizeof(*ht->table)) > PAGE_SIZE);
47 if (!ht->use_vmalloc) {
48 ht->table = drm_calloc(ht->size, sizeof(*ht->table),
49 DRM_MEM_HASHTAB);
51 if (!ht->table) {
52 ht->use_vmalloc = 1;
53 ht->table = vmalloc(ht->size*sizeof(*ht->table));
55 if (!ht->table) {
56 DRM_ERROR("Out of memory for hash table\n");
57 return -ENOMEM;
59 for (i=0; i< ht->size; ++i) {
60 INIT_HLIST_HEAD(&ht->table[i]);
62 return 0;
65 void drm_ht_verbose_list(drm_open_hash_t *ht, unsigned long key)
67 drm_hash_item_t *entry;
68 struct hlist_head *h_list;
69 struct hlist_node *list;
70 unsigned int hashed_key;
71 int count = 0;
73 hashed_key = hash_long(key, ht->order);
74 DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key);
75 h_list = &ht->table[hashed_key];
76 hlist_for_each(list, h_list) {
77 entry = hlist_entry(list, drm_hash_item_t, head);
78 DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key);
82 static struct hlist_node *drm_ht_find_key(drm_open_hash_t *ht,
83 unsigned long key)
85 drm_hash_item_t *entry;
86 struct hlist_head *h_list;
87 struct hlist_node *list;
88 unsigned int hashed_key;
90 hashed_key = hash_long(key, ht->order);
91 h_list = &ht->table[hashed_key];
92 hlist_for_each(list, h_list) {
93 entry = hlist_entry(list, drm_hash_item_t, head);
94 if (entry->key == key)
95 return list;
96 if (entry->key > key)
97 break;
99 return NULL;
103 int drm_ht_insert_item(drm_open_hash_t *ht, drm_hash_item_t *item)
105 drm_hash_item_t *entry;
106 struct hlist_head *h_list;
107 struct hlist_node *list, *parent;
108 unsigned int hashed_key;
109 unsigned long key = item->key;
111 hashed_key = hash_long(key, ht->order);
112 h_list = &ht->table[hashed_key];
113 parent = NULL;
114 hlist_for_each(list, h_list) {
115 entry = hlist_entry(list, drm_hash_item_t, head);
116 if (entry->key == key)
117 return -EINVAL;
118 if (entry->key > key)
119 break;
120 parent = list;
122 if (parent) {
123 hlist_add_after(parent, &item->head);
124 } else {
125 hlist_add_head(&item->head, h_list);
127 return 0;
131 * Just insert an item and return any "bits" bit key that hasn't been
132 * used before.
134 int drm_ht_just_insert_please(drm_open_hash_t *ht, drm_hash_item_t *item,
135 unsigned long seed, int bits, int shift,
136 unsigned long add)
138 int ret;
139 unsigned long mask = (1 << bits) - 1;
140 unsigned long first, unshifted_key;
142 unshifted_key = hash_long(seed, bits);
143 first = unshifted_key;
144 do {
145 item->key = (unshifted_key << shift) + add;
146 ret = drm_ht_insert_item(ht, item);
147 if (ret)
148 unshifted_key = (unshifted_key + 1) & mask;
149 } while(ret && (unshifted_key != first));
151 if (ret) {
152 DRM_ERROR("Available key bit space exhausted\n");
153 return -EINVAL;
155 return 0;
158 int drm_ht_find_item(drm_open_hash_t *ht, unsigned long key,
159 drm_hash_item_t **item)
161 struct hlist_node *list;
163 list = drm_ht_find_key(ht, key);
164 if (!list)
165 return -EINVAL;
167 *item = hlist_entry(list, drm_hash_item_t, head);
168 return 0;
171 int drm_ht_remove_key(drm_open_hash_t *ht, unsigned long key)
173 struct hlist_node *list;
175 list = drm_ht_find_key(ht, key);
176 if (list) {
177 hlist_del_init(list);
178 ht->fill--;
179 return 0;
181 return -EINVAL;
184 int drm_ht_remove_item(drm_open_hash_t *ht, drm_hash_item_t *item)
186 hlist_del_init(&item->head);
187 ht->fill--;
188 return 0;
191 void drm_ht_remove(drm_open_hash_t *ht)
193 if (ht->table) {
194 if (ht->use_vmalloc)
195 vfree(ht->table);
196 else
197 drm_free(ht->table, ht->size * sizeof(*ht->table),
198 DRM_MEM_HASHTAB);
199 ht->table = NULL;