123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911 |
- #include <linux/module.h>
- #include <linux/slab.h>
- #include <net/irda/irda.h>
- #include <net/irda/irqueue.h>
- #define GET_HASHBIN(x) ( x & HASHBIN_MASK )
- static __u32 hash( const char* name)
- {
- __u32 h = 0;
- __u32 g;
- while(*name) {
- h = (h<<4) + *name++;
- if ((g = (h & 0xf0000000)))
- h ^=g>>24;
- h &=~g;
- }
- return h;
- }
- static void enqueue_first(irda_queue_t **queue, irda_queue_t* element)
- {
-
- if ( *queue == NULL ) {
-
- element->q_next = element->q_prev = *queue = element;
- } else {
-
- element->q_next = (*queue);
- (*queue)->q_prev->q_next = element;
- element->q_prev = (*queue)->q_prev;
- (*queue)->q_prev = element;
- (*queue) = element;
- }
- }
- static irda_queue_t *dequeue_first(irda_queue_t **queue)
- {
- irda_queue_t *ret;
- pr_debug("dequeue_first()\n");
-
- ret = *queue;
- if ( *queue == NULL ) {
-
- } else if ( (*queue)->q_next == *queue ) {
-
- *queue = NULL;
- } else {
-
- (*queue)->q_prev->q_next = (*queue)->q_next;
- (*queue)->q_next->q_prev = (*queue)->q_prev;
- *queue = (*queue)->q_next;
- }
-
- return ret;
- }
- static irda_queue_t *dequeue_general(irda_queue_t **queue, irda_queue_t* element)
- {
- irda_queue_t *ret;
- pr_debug("dequeue_general()\n");
-
- ret = *queue;
- if ( *queue == NULL ) {
-
- } else if ( (*queue)->q_next == *queue ) {
-
- *queue = NULL;
- } else {
-
- element->q_prev->q_next = element->q_next;
- element->q_next->q_prev = element->q_prev;
- if ( (*queue) == element)
- (*queue) = element->q_next;
- }
-
- return ret;
- }
- hashbin_t *hashbin_new(int type)
- {
- hashbin_t* hashbin;
-
- hashbin = kzalloc(sizeof(*hashbin), GFP_ATOMIC);
- if (!hashbin)
- return NULL;
-
- hashbin->hb_type = type;
- hashbin->magic = HB_MAGIC;
-
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_lock_init(&hashbin->hb_spinlock);
- }
- return hashbin;
- }
- EXPORT_SYMBOL(hashbin_new);
- int hashbin_delete( hashbin_t* hashbin, FREE_FUNC free_func)
- {
- irda_queue_t* queue;
- unsigned long flags = 0;
- int i;
- IRDA_ASSERT(hashbin != NULL, return -1;);
- IRDA_ASSERT(hashbin->magic == HB_MAGIC, return -1;);
-
- if (hashbin->hb_type & HB_LOCK)
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
-
- for (i = 0; i < HASHBIN_SIZE; i ++ ) {
- while (1) {
- queue = dequeue_first((irda_queue_t**) &hashbin->hb_queue[i]);
- if (!queue)
- break;
- if (free_func) {
- if (hashbin->hb_type & HB_LOCK)
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- free_func(queue);
- if (hashbin->hb_type & HB_LOCK)
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
- }
- }
- }
-
- hashbin->hb_current = NULL;
- hashbin->magic = ~HB_MAGIC;
-
- if (hashbin->hb_type & HB_LOCK)
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
-
- kfree(hashbin);
- return 0;
- }
- EXPORT_SYMBOL(hashbin_delete);
- void hashbin_insert(hashbin_t* hashbin, irda_queue_t* entry, long hashv,
- const char* name)
- {
- unsigned long flags = 0;
- int bin;
- IRDA_ASSERT( hashbin != NULL, return;);
- IRDA_ASSERT( hashbin->magic == HB_MAGIC, return;);
-
- if ( name )
- hashv = hash( name );
- bin = GET_HASHBIN( hashv );
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
- }
-
- entry->q_hash = hashv;
- if ( name )
- strlcpy( entry->q_name, name, sizeof(entry->q_name));
-
- enqueue_first( (irda_queue_t**) &hashbin->hb_queue[ bin ],
- entry);
- hashbin->hb_size++;
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- }
- }
- EXPORT_SYMBOL(hashbin_insert);
- void *hashbin_remove_first( hashbin_t *hashbin)
- {
- unsigned long flags = 0;
- irda_queue_t *entry = NULL;
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
- }
- entry = hashbin_get_first( hashbin);
- if ( entry != NULL) {
- int bin;
- long hashv;
-
- hashv = entry->q_hash;
- bin = GET_HASHBIN( hashv );
-
- dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ],
- entry);
- hashbin->hb_size--;
- entry->q_next = NULL;
- entry->q_prev = NULL;
-
- if ( entry == hashbin->hb_current)
- hashbin->hb_current = NULL;
- }
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- }
- return entry;
- }
- void* hashbin_remove( hashbin_t* hashbin, long hashv, const char* name)
- {
- int bin, found = FALSE;
- unsigned long flags = 0;
- irda_queue_t* entry;
- IRDA_ASSERT( hashbin != NULL, return NULL;);
- IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
-
- if ( name )
- hashv = hash( name );
- bin = GET_HASHBIN( hashv );
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
- }
-
- entry = hashbin->hb_queue[ bin ];
- if ( entry ) {
- do {
-
- if ( entry->q_hash == hashv ) {
-
- if ( name ) {
- if ( strcmp( entry->q_name, name) == 0)
- {
- found = TRUE;
- break;
- }
- } else {
- found = TRUE;
- break;
- }
- }
- entry = entry->q_next;
- } while ( entry != hashbin->hb_queue[ bin ] );
- }
-
- if ( found ) {
- dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ],
- entry);
- hashbin->hb_size--;
-
- if ( entry == hashbin->hb_current)
- hashbin->hb_current = NULL;
- }
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- }
-
- if ( found )
- return entry;
- else
- return NULL;
- }
- EXPORT_SYMBOL(hashbin_remove);
- void* hashbin_remove_this( hashbin_t* hashbin, irda_queue_t* entry)
- {
- unsigned long flags = 0;
- int bin;
- long hashv;
- IRDA_ASSERT( hashbin != NULL, return NULL;);
- IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
- IRDA_ASSERT( entry != NULL, return NULL;);
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
- }
-
- if((entry->q_next == NULL) || (entry->q_prev == NULL)) {
- entry = NULL;
- goto out;
- }
-
- hashv = entry->q_hash;
- bin = GET_HASHBIN( hashv );
-
- dequeue_general( (irda_queue_t**) &hashbin->hb_queue[ bin ],
- entry);
- hashbin->hb_size--;
- entry->q_next = NULL;
- entry->q_prev = NULL;
-
- if ( entry == hashbin->hb_current)
- hashbin->hb_current = NULL;
- out:
-
- if ( hashbin->hb_type & HB_LOCK ) {
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- }
- return entry;
- }
- EXPORT_SYMBOL(hashbin_remove_this);
- void* hashbin_find( hashbin_t* hashbin, long hashv, const char* name )
- {
- int bin;
- irda_queue_t* entry;
- pr_debug("hashbin_find()\n");
- IRDA_ASSERT( hashbin != NULL, return NULL;);
- IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
-
- if ( name )
- hashv = hash( name );
- bin = GET_HASHBIN( hashv );
-
- entry = hashbin->hb_queue[ bin];
- if ( entry ) {
- do {
-
- if ( entry->q_hash == hashv ) {
-
- if ( name ) {
- if ( strcmp( entry->q_name, name ) == 0 ) {
- return entry;
- }
- } else {
- return entry;
- }
- }
- entry = entry->q_next;
- } while ( entry != hashbin->hb_queue[ bin ] );
- }
- return NULL;
- }
- EXPORT_SYMBOL(hashbin_find);
- void* hashbin_lock_find( hashbin_t* hashbin, long hashv, const char* name )
- {
- unsigned long flags = 0;
- irda_queue_t* entry;
-
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
-
- entry = hashbin_find(hashbin, hashv, name);
-
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- return entry;
- }
- EXPORT_SYMBOL(hashbin_lock_find);
- void* hashbin_find_next( hashbin_t* hashbin, long hashv, const char* name,
- void ** pnext)
- {
- unsigned long flags = 0;
- irda_queue_t* entry;
-
- spin_lock_irqsave(&hashbin->hb_spinlock, flags);
-
- entry = hashbin_find(hashbin, hashv, name);
-
- if(entry) {
- hashbin->hb_current = entry;
- *pnext = hashbin_get_next( hashbin );
- } else
- *pnext = NULL;
-
- spin_unlock_irqrestore(&hashbin->hb_spinlock, flags);
- return entry;
- }
- irda_queue_t *hashbin_get_first( hashbin_t* hashbin)
- {
- irda_queue_t *entry;
- int i;
- IRDA_ASSERT( hashbin != NULL, return NULL;);
- IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
- if ( hashbin == NULL)
- return NULL;
- for ( i = 0; i < HASHBIN_SIZE; i ++ ) {
- entry = hashbin->hb_queue[ i];
- if ( entry) {
- hashbin->hb_current = entry;
- return entry;
- }
- }
-
- return NULL;
- }
- EXPORT_SYMBOL(hashbin_get_first);
- irda_queue_t *hashbin_get_next( hashbin_t *hashbin)
- {
- irda_queue_t* entry;
- int bin;
- int i;
- IRDA_ASSERT( hashbin != NULL, return NULL;);
- IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
- if ( hashbin->hb_current == NULL) {
- IRDA_ASSERT( hashbin->hb_current != NULL, return NULL;);
- return NULL;
- }
- entry = hashbin->hb_current->q_next;
- bin = GET_HASHBIN( entry->q_hash);
-
- if ( entry != hashbin->hb_queue[ bin ]) {
- hashbin->hb_current = entry;
- return entry;
- }
-
- if ( bin >= HASHBIN_SIZE)
- return NULL;
-
- bin++;
- for ( i = bin; i < HASHBIN_SIZE; i++ ) {
- entry = hashbin->hb_queue[ i];
- if ( entry) {
- hashbin->hb_current = entry;
- return entry;
- }
- }
- return NULL;
- }
- EXPORT_SYMBOL(hashbin_get_next);
|