Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 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: |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 32 | * Thomas Hellström <thomas-at-tungstengraphics-dot-com> |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 33 | */ |
| 34 | |
| 35 | #include "drmP.h" |
| 36 | #include "drm_hashtab.h" |
| 37 | #include <linux/hash.h> |
| 38 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 39 | int drm_ht_create(struct drm_open_hash *ht, unsigned int order) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 40 | { |
| 41 | unsigned int i; |
| 42 | |
| 43 | ht->size = 1 << order; |
| 44 | ht->order = order; |
| 45 | ht->fill = 0; |
Dave Airlie | c1185cc | 2007-02-18 18:23:11 +1100 | [diff] [blame] | 46 | ht->table = NULL; |
Dave Airlie | cd839d0 | 2007-02-18 17:14:09 +1100 | [diff] [blame] | 47 | ht->use_vmalloc = ((ht->size * sizeof(*ht->table)) > PAGE_SIZE); |
| 48 | if (!ht->use_vmalloc) { |
| 49 | ht->table = drm_calloc(ht->size, sizeof(*ht->table), |
| 50 | DRM_MEM_HASHTAB); |
| 51 | } |
| 52 | if (!ht->table) { |
| 53 | ht->use_vmalloc = 1; |
| 54 | ht->table = vmalloc(ht->size*sizeof(*ht->table)); |
| 55 | } |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 56 | if (!ht->table) { |
| 57 | DRM_ERROR("Out of memory for hash table\n"); |
| 58 | return -ENOMEM; |
| 59 | } |
| 60 | for (i=0; i< ht->size; ++i) { |
| 61 | INIT_HLIST_HEAD(&ht->table[i]); |
| 62 | } |
| 63 | return 0; |
| 64 | } |
| 65 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 66 | void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 67 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 68 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 69 | struct hlist_head *h_list; |
| 70 | struct hlist_node *list; |
| 71 | unsigned int hashed_key; |
| 72 | int count = 0; |
| 73 | |
| 74 | hashed_key = hash_long(key, ht->order); |
| 75 | DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key); |
| 76 | h_list = &ht->table[hashed_key]; |
| 77 | hlist_for_each(list, h_list) { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 78 | entry = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 79 | DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key); |
| 80 | } |
| 81 | } |
| 82 | |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 83 | static struct hlist_node *drm_ht_find_key(struct drm_open_hash *ht, |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 84 | unsigned long key) |
| 85 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 86 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 87 | struct hlist_head *h_list; |
| 88 | struct hlist_node *list; |
| 89 | unsigned int hashed_key; |
| 90 | |
| 91 | hashed_key = hash_long(key, ht->order); |
| 92 | h_list = &ht->table[hashed_key]; |
| 93 | hlist_for_each(list, h_list) { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 94 | entry = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 95 | if (entry->key == key) |
| 96 | return list; |
| 97 | if (entry->key > key) |
| 98 | break; |
| 99 | } |
| 100 | return NULL; |
| 101 | } |
| 102 | |
| 103 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 104 | int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 105 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 106 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 107 | struct hlist_head *h_list; |
| 108 | struct hlist_node *list, *parent; |
| 109 | unsigned int hashed_key; |
| 110 | unsigned long key = item->key; |
| 111 | |
| 112 | hashed_key = hash_long(key, ht->order); |
| 113 | h_list = &ht->table[hashed_key]; |
| 114 | parent = NULL; |
| 115 | hlist_for_each(list, h_list) { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 116 | entry = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 117 | if (entry->key == key) |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 118 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 119 | if (entry->key > key) |
| 120 | break; |
| 121 | parent = list; |
| 122 | } |
| 123 | if (parent) { |
| 124 | hlist_add_after(parent, &item->head); |
| 125 | } else { |
| 126 | hlist_add_head(&item->head, h_list); |
| 127 | } |
| 128 | return 0; |
| 129 | } |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 130 | EXPORT_SYMBOL(drm_ht_insert_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 131 | |
| 132 | /* |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 133 | * Just insert an item and return any "bits" bit key that hasn't been |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 134 | * used before. |
| 135 | */ |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 136 | int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item, |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 137 | unsigned long seed, int bits, int shift, |
| 138 | unsigned long add) |
| 139 | { |
| 140 | int ret; |
| 141 | unsigned long mask = (1 << bits) - 1; |
| 142 | unsigned long first, unshifted_key; |
| 143 | |
| 144 | unshifted_key = hash_long(seed, bits); |
| 145 | first = unshifted_key; |
| 146 | do { |
| 147 | item->key = (unshifted_key << shift) + add; |
| 148 | ret = drm_ht_insert_item(ht, item); |
| 149 | if (ret) |
| 150 | unshifted_key = (unshifted_key + 1) & mask; |
| 151 | } while(ret && (unshifted_key != first)); |
| 152 | |
| 153 | if (ret) { |
| 154 | DRM_ERROR("Available key bit space exhausted\n"); |
| 155 | return -EINVAL; |
| 156 | } |
| 157 | return 0; |
| 158 | } |
| 159 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 160 | int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, |
| 161 | struct drm_hash_item **item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 162 | { |
| 163 | struct hlist_node *list; |
| 164 | |
| 165 | list = drm_ht_find_key(ht, key); |
| 166 | if (!list) |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 167 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 168 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 169 | *item = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 170 | return 0; |
| 171 | } |
| 172 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 173 | int drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 174 | { |
| 175 | struct hlist_node *list; |
| 176 | |
| 177 | list = drm_ht_find_key(ht, key); |
| 178 | if (list) { |
| 179 | hlist_del_init(list); |
| 180 | ht->fill--; |
| 181 | return 0; |
| 182 | } |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 183 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 184 | } |
| 185 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 186 | int drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 187 | { |
| 188 | hlist_del_init(&item->head); |
| 189 | ht->fill--; |
| 190 | return 0; |
| 191 | } |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 192 | EXPORT_SYMBOL(drm_ht_remove_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 193 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 194 | void drm_ht_remove(struct drm_open_hash *ht) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 195 | { |
| 196 | if (ht->table) { |
Dave Airlie | cd839d0 | 2007-02-18 17:14:09 +1100 | [diff] [blame] | 197 | if (ht->use_vmalloc) |
| 198 | vfree(ht->table); |
| 199 | else |
| 200 | drm_free(ht->table, ht->size * sizeof(*ht->table), |
| 201 | DRM_MEM_HASHTAB); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 202 | ht->table = NULL; |
| 203 | } |
| 204 | } |