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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 39 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 40 | int drm_ht_create(struct drm_open_hash *ht, unsigned int order) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 41 | { |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame^] | 42 | unsigned int size = 1 << order; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 43 | |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 44 | ht->order = order; |
Dave Airlie | c1185cc | 2007-02-18 18:23:11 +1100 | [diff] [blame] | 45 | ht->table = NULL; |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame^] | 46 | if (size <= PAGE_SIZE / sizeof(*ht->table)) |
| 47 | ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL); |
| 48 | else |
| 49 | ht->table = vzalloc(size*sizeof(*ht->table)); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 50 | if (!ht->table) { |
| 51 | DRM_ERROR("Out of memory for hash table\n"); |
| 52 | return -ENOMEM; |
| 53 | } |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 54 | return 0; |
| 55 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 56 | EXPORT_SYMBOL(drm_ht_create); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 57 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 58 | 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] | 59 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 60 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 61 | struct hlist_head *h_list; |
| 62 | struct hlist_node *list; |
| 63 | unsigned int hashed_key; |
| 64 | int count = 0; |
| 65 | |
| 66 | hashed_key = hash_long(key, ht->order); |
| 67 | DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key); |
| 68 | h_list = &ht->table[hashed_key]; |
| 69 | hlist_for_each(list, h_list) { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 70 | entry = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 71 | DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key); |
| 72 | } |
| 73 | } |
| 74 | |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 75 | 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] | 76 | unsigned long key) |
| 77 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 78 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 79 | struct hlist_head *h_list; |
| 80 | struct hlist_node *list; |
| 81 | unsigned int hashed_key; |
| 82 | |
| 83 | hashed_key = hash_long(key, ht->order); |
| 84 | h_list = &ht->table[hashed_key]; |
| 85 | hlist_for_each(list, h_list) { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 86 | entry = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 87 | if (entry->key == key) |
| 88 | return list; |
| 89 | if (entry->key > key) |
| 90 | break; |
| 91 | } |
| 92 | return NULL; |
| 93 | } |
| 94 | |
| 95 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 96 | 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] | 97 | { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 98 | struct drm_hash_item *entry; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 99 | struct hlist_head *h_list; |
| 100 | struct hlist_node *list, *parent; |
| 101 | unsigned int hashed_key; |
| 102 | unsigned long key = item->key; |
| 103 | |
| 104 | hashed_key = hash_long(key, ht->order); |
| 105 | h_list = &ht->table[hashed_key]; |
| 106 | parent = NULL; |
| 107 | hlist_for_each(list, h_list) { |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 108 | entry = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 109 | if (entry->key == key) |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 110 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 111 | if (entry->key > key) |
| 112 | break; |
| 113 | parent = list; |
| 114 | } |
| 115 | if (parent) { |
| 116 | hlist_add_after(parent, &item->head); |
| 117 | } else { |
| 118 | hlist_add_head(&item->head, h_list); |
| 119 | } |
| 120 | return 0; |
| 121 | } |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 122 | EXPORT_SYMBOL(drm_ht_insert_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 123 | |
| 124 | /* |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 125 | * 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] | 126 | * used before. |
| 127 | */ |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 128 | 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] | 129 | unsigned long seed, int bits, int shift, |
| 130 | unsigned long add) |
| 131 | { |
| 132 | int ret; |
| 133 | unsigned long mask = (1 << bits) - 1; |
| 134 | unsigned long first, unshifted_key; |
| 135 | |
| 136 | unshifted_key = hash_long(seed, bits); |
| 137 | first = unshifted_key; |
| 138 | do { |
| 139 | item->key = (unshifted_key << shift) + add; |
| 140 | ret = drm_ht_insert_item(ht, item); |
| 141 | if (ret) |
| 142 | unshifted_key = (unshifted_key + 1) & mask; |
| 143 | } while(ret && (unshifted_key != first)); |
| 144 | |
| 145 | if (ret) { |
| 146 | DRM_ERROR("Available key bit space exhausted\n"); |
| 147 | return -EINVAL; |
| 148 | } |
| 149 | return 0; |
| 150 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 151 | EXPORT_SYMBOL(drm_ht_just_insert_please); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 152 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 153 | int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, |
| 154 | struct drm_hash_item **item) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 155 | { |
| 156 | struct hlist_node *list; |
| 157 | |
| 158 | list = drm_ht_find_key(ht, key); |
| 159 | if (!list) |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 160 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 161 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 162 | *item = hlist_entry(list, struct drm_hash_item, head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 163 | return 0; |
| 164 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 165 | EXPORT_SYMBOL(drm_ht_find_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 166 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 167 | 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] | 168 | { |
| 169 | struct hlist_node *list; |
| 170 | |
| 171 | list = drm_ht_find_key(ht, key); |
| 172 | if (list) { |
| 173 | hlist_del_init(list); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 174 | return 0; |
| 175 | } |
Thomas Hellstrom | 47cc140 | 2006-09-22 04:04:18 +1000 | [diff] [blame] | 176 | return -EINVAL; |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 177 | } |
| 178 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 179 | 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] | 180 | { |
| 181 | hlist_del_init(&item->head); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 182 | return 0; |
| 183 | } |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 184 | EXPORT_SYMBOL(drm_ht_remove_item); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 185 | |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 186 | void drm_ht_remove(struct drm_open_hash *ht) |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 187 | { |
| 188 | if (ht->table) { |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame^] | 189 | if ((PAGE_SIZE / sizeof(*ht->table)) >> ht->order) |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 190 | kfree(ht->table); |
Chris Wilson | 7811bdd | 2011-01-26 18:33:25 +0000 | [diff] [blame^] | 191 | else |
| 192 | vfree(ht->table); |
Thomas Hellstrom | 3a1bd92 | 2006-08-07 21:30:28 +1000 | [diff] [blame] | 193 | ht->table = NULL; |
| 194 | } |
| 195 | } |
Jerome Glisse | f2cb5d8 | 2009-04-08 17:16:24 +0200 | [diff] [blame] | 196 | EXPORT_SYMBOL(drm_ht_remove); |