]> git.karo-electronics.de Git - linux-beck.git/commitdiff
Staging: batman-adv: initialize static hash iterators
authorSimon Wunderlich <siwu@hrz.tu-chemnitz.de>
Sat, 2 Jan 2010 10:30:39 +0000 (11:30 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 4 Mar 2010 00:42:35 +0000 (16:42 -0800)
instead of dynamically registering hash iterators, calling functions are
changed to register the iterator objects statically. The two advantages are:

 * no memory leaks when aborting from hash_iterate()
 * no calls to kmalloc/kfree, therefore a little faster/safer

Tested with 9 QEMU instances, no obvious regression found.

Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/batman-adv/hard-interface.c
drivers/staging/batman-adv/hash.c
drivers/staging/batman-adv/hash.h
drivers/staging/batman-adv/originator.c
drivers/staging/batman-adv/proc.c
drivers/staging/batman-adv/routing.c
drivers/staging/batman-adv/translation-table.c
drivers/staging/batman-adv/vis.c

index 28d02f68a3f8c0d432102f1cc7143088a3b47d37..7c885926b1670137da07bdc7f5f67c0281f20227 100644 (file)
@@ -318,7 +318,7 @@ int hardif_add_interface(char *dev, int if_num)
        struct batman_if *batman_if;
        struct batman_packet *batman_packet;
        struct orig_node *orig_node;
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
 
        batman_if = kmalloc(sizeof(struct batman_if), GFP_KERNEL);
 
@@ -377,8 +377,8 @@ int hardif_add_interface(char *dev, int if_num)
         * if_num */
        spin_lock(&orig_hash_lock);
 
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
-               orig_node = hashit->bucket->data;
+       while (hash_iterate(orig_hash, &hashit)) {
+               orig_node = hashit.bucket->data;
                if (resize_orig(orig_node, if_num) == -1) {
                        spin_unlock(&orig_hash_lock);
                        goto out;
index 61cb4a20ebca73ecdfd32dd99bc7632a28f487d7..5a2018de3ff275901135f2b7876267015188dd5f 100644 (file)
@@ -64,24 +64,18 @@ void hash_destroy(struct hashtable_t *hash)
        kfree(hash);
 }
 
-/* iterate though the hash. first element is selected with iter_in NULL.  use
- * the returned iterator to access the elements until hash_it_t returns NULL. */
+/* iterate though the hash. First element is selected if an iterator
+ * initialized with HASHIT() is supplied as iter. Use the returned
+ * (or supplied) iterator to access the elements until hash_iterate returns
+ * NULL. */
+
 struct hash_it_t *hash_iterate(struct hashtable_t *hash,
-                              struct hash_it_t *iter_in)
+                              struct hash_it_t *iter)
 {
-       struct hash_it_t *iter;
-
        if (!hash)
                return NULL;
-
-       if (iter_in == NULL) {
-               iter = kmalloc(sizeof(struct hash_it_t), GFP_ATOMIC);
-               iter->index = -1;
-               iter->bucket = NULL;
-               iter->prev_bucket = NULL;
-       } else {
-               iter = iter_in;
-       }
+       if (!iter)
+               return NULL;
 
        /* sanity checks first (if our bucket got deleted in the last
         * iteration): */
@@ -139,7 +133,6 @@ struct hash_it_t *hash_iterate(struct hashtable_t *hash,
        }
 
        /* nothing to iterate over anymore */
-       kfree(iter);
        return NULL;
 }
 
index bb60f082be6a7f9c9b7f5987ee7298842e49fada..a70d6d6e1c7a6eed40abb70e012ad9882f7b3b8e 100644 (file)
 
 #ifndef _BATMAN_HASH_H
 #define _BATMAN_HASH_H
+#define HASHIT(name) struct hash_it_t name = { \
+               .index = -1, .bucket = NULL, \
+               .prev_bucket = NULL, \
+               .first_bucket = NULL }
+
 
 typedef int (*hashdata_compare_cb)(void *, void *);
 typedef int (*hashdata_choose_cb)(void *, int);
index 9962af7ae6403d0e91689b588aed54bf57e5b37c..b1049826b51a6137ba4eda21d075ecdd3ba1d565 100644 (file)
@@ -221,16 +221,16 @@ static bool purge_orig_node(struct orig_node *orig_node)
 
 void purge_orig(struct work_struct *work)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct orig_node *orig_node;
 
        spin_lock(&orig_hash_lock);
 
        /* for all origins... */
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
-               orig_node = hashit->bucket->data;
+       while (hash_iterate(orig_hash, &hashit)) {
+               orig_node = hashit.bucket->data;
                if (purge_orig_node(orig_node)) {
-                       hash_remove_bucket(orig_hash, hashit);
+                       hash_remove_bucket(orig_hash, &hashit);
                        free_orig_node(orig_node);
                }
        }
index ed4c73484d7d26b3a2b36693347623155ffbb227..9f7136b3be3eee7d2ffef020b7dc00b6baf641de 100644 (file)
@@ -186,7 +186,7 @@ static int proc_orig_interval_open(struct inode *inode, struct file *file)
 
 static int proc_originators_read(struct seq_file *seq, void *offset)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct orig_node *orig_node;
        struct neigh_node *neigh_node;
        int batman_count = 0;
@@ -215,9 +215,9 @@ static int proc_originators_read(struct seq_file *seq, void *offset)
        rcu_read_unlock();
        spin_lock(&orig_hash_lock);
 
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
+       while (hash_iterate(orig_hash, &hashit)) {
 
-               orig_node = hashit->bucket->data;
+               orig_node = hashit.bucket->data;
 
                if (!orig_node->router)
                        continue;
@@ -413,7 +413,7 @@ static void proc_vis_read_entry(struct seq_file *seq,
 
 static int proc_vis_read(struct seq_file *seq, void *offset)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct vis_info *info;
        struct vis_info_entry *entries;
        struct vis_if_list *if_entries = NULL;
@@ -440,8 +440,8 @@ static int proc_vis_read(struct seq_file *seq, void *offset)
                seq_printf(seq, "digraph {\n");
 
        spin_lock(&vis_hash_lock);
-       while (NULL != (hashit = hash_iterate(vis_hash, hashit))) {
-               info = hashit->bucket->data;
+       while (hash_iterate(vis_hash, &hashit)) {
+               info = hashit.bucket->data;
                entries = (struct vis_info_entry *)
                        ((char *)info + sizeof(struct vis_info));
 
index e8d712788dadacce533f1665c93e55731ce43bcf..68dea76b0cab9183181f2c5b7dc426cef71116c7 100644 (file)
@@ -40,14 +40,14 @@ static atomic_t data_ready_cond;
 atomic_t exit_cond;
 void slide_own_bcast_window(struct batman_if *batman_if)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct orig_node *orig_node;
        TYPE_OF_WORD *word;
 
        spin_lock(&orig_hash_lock);
 
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
-               orig_node = hashit->bucket->data;
+       while (hash_iterate(orig_hash, &hashit)) {
+               orig_node = hashit.bucket->data;
                word = &(orig_node->bcast_own[batman_if->if_num * NUM_WORDS]);
 
                bit_get_packet(word, 1, 0);
index c7122da98f1ec8e0a0dc339737f419409e8241ec..088715ba8dbddea91298dbbc98289bbf271ecc4f 100644 (file)
@@ -134,18 +134,18 @@ void hna_local_add(uint8_t *addr)
 int hna_local_fill_buffer(unsigned char *buff, int buff_len)
 {
        struct hna_local_entry *hna_local_entry;
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        int i = 0;
        unsigned long flags;
 
        spin_lock_irqsave(&hna_local_hash_lock, flags);
 
-       while (NULL != (hashit = hash_iterate(hna_local_hash, hashit))) {
+       while (hash_iterate(hna_local_hash, &hashit)) {
 
                if (buff_len < (i + 1) * ETH_ALEN)
                        break;
 
-               hna_local_entry = hashit->bucket->data;
+               hna_local_entry = hashit.bucket->data;
                memcpy(buff + (i * ETH_ALEN), hna_local_entry->addr, ETH_ALEN);
 
                i++;
@@ -163,18 +163,18 @@ int hna_local_fill_buffer(unsigned char *buff, int buff_len)
 int hna_local_fill_buffer_text(unsigned char *buff, int buff_len)
 {
        struct hna_local_entry *hna_local_entry;
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        int bytes_written = 0;
        unsigned long flags;
 
        spin_lock_irqsave(&hna_local_hash_lock, flags);
 
-       while (NULL != (hashit = hash_iterate(hna_local_hash, hashit))) {
+       while (hash_iterate(hna_local_hash, &hashit)) {
 
                if (buff_len < bytes_written + ETH_STR_LEN + 4)
                        break;
 
-               hna_local_entry = hashit->bucket->data;
+               hna_local_entry = hashit.bucket->data;
 
                bytes_written += snprintf(buff + bytes_written, ETH_STR_LEN + 4,
                                          " * %02x:%02x:%02x:%02x:%02x:%02x\n",
@@ -214,14 +214,14 @@ static void hna_local_del(struct hna_local_entry *hna_local_entry,
 void hna_local_purge(struct work_struct *work)
 {
        struct hna_local_entry *hna_local_entry;
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        unsigned long flags;
        unsigned long timeout;
 
        spin_lock_irqsave(&hna_local_hash_lock, flags);
 
-       while (NULL != (hashit = hash_iterate(hna_local_hash, hashit))) {
-               hna_local_entry = hashit->bucket->data;
+       while (hash_iterate(hna_local_hash, &hashit)) {
+               hna_local_entry = hashit.bucket->data;
 
                timeout = hna_local_entry->last_seen +
                        ((LOCAL_HNA_TIMEOUT / 1000) * HZ);
@@ -345,17 +345,17 @@ void hna_global_add_orig(struct orig_node *orig_node,
 int hna_global_fill_buffer_text(unsigned char *buff, int buff_len)
 {
        struct hna_global_entry *hna_global_entry;
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        int bytes_written = 0;
        unsigned long flags;
 
        spin_lock_irqsave(&hna_global_hash_lock, flags);
 
-       while (NULL != (hashit = hash_iterate(hna_global_hash, hashit))) {
+       while (hash_iterate(hna_global_hash, &hashit)) {
                if (buff_len < bytes_written + (2 * ETH_STR_LEN) + 10)
                        break;
 
-               hna_global_entry = hashit->bucket->data;
+               hna_global_entry = hashit.bucket->data;
 
                bytes_written += snprintf(buff + bytes_written,
                                          (2 * ETH_STR_LEN) + 10,
index cdb8aab146d7a615d646b304c8eb146d7faca21a..086da871cd59e3df79df2a06ac3dcf0d4f6b9efa 100644 (file)
@@ -266,12 +266,12 @@ end:
  * Must be called with the originator hash locked */
 static int find_best_vis_server(struct vis_info *info)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct orig_node *orig_node;
        int best_tq = -1;
 
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
-               orig_node = hashit->bucket->data;
+       while (hash_iterate(orig_hash, &hashit)) {
+               orig_node = hashit.bucket->data;
                if ((orig_node != NULL) &&
                    (orig_node->router != NULL) &&
                    (orig_node->flags & VIS_SERVER) &&
@@ -297,7 +297,8 @@ static bool vis_packet_full(struct vis_info *info)
  * returns 0 on success, -1 if no packet could be generated */
 static int generate_vis_packet(void)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit_local);
+       HASHIT(hashit_global);
        struct orig_node *orig_node;
        struct vis_info *info = (struct vis_info *)my_vis_info;
        struct vis_info_entry *entry, *entry_array;
@@ -320,13 +321,12 @@ static int generate_vis_packet(void)
                        return -1;
                }
        }
-       hashit = NULL;
 
        entry_array = (struct vis_info_entry *)
                ((char *)info + sizeof(struct vis_info));
 
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
-               orig_node = hashit->bucket->data;
+       while (hash_iterate(orig_hash, &hashit_global)) {
+               orig_node = hashit_global.bucket->data;
                if (orig_node->router != NULL
                        && compare_orig(orig_node->router->addr, orig_node->orig)
                        && orig_node->batman_if
@@ -349,10 +349,9 @@ static int generate_vis_packet(void)
 
        spin_unlock(&orig_hash_lock);
 
-       hashit = NULL;
        spin_lock_irqsave(&hna_local_hash_lock, flags);
-       while (NULL != (hashit = hash_iterate(hna_local_hash, hashit))) {
-               hna_local_entry = hashit->bucket->data;
+       while (hash_iterate(hna_local_hash, &hashit_local)) {
+               hna_local_entry = hashit_local.bucket->data;
                entry = &entry_array[info->packet.entries];
                memset(entry->src, 0, ETH_ALEN);
                memcpy(entry->dest, hna_local_entry->addr, ETH_ALEN);
@@ -370,16 +369,16 @@ static int generate_vis_packet(void)
 
 static void purge_vis_packets(void)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct vis_info *info;
 
-       while (NULL != (hashit = hash_iterate(vis_hash, hashit))) {
-               info = hashit->bucket->data;
+       while (hash_iterate(vis_hash, &hashit)) {
+               info = hashit.bucket->data;
                if (info == my_vis_info)        /* never purge own data. */
                        continue;
                if (time_after(jiffies,
                               info->first_seen + (VIS_TIMEOUT/1000)*HZ)) {
-                       hash_remove_bucket(vis_hash, hashit);
+                       hash_remove_bucket(vis_hash, &hashit);
                        free_info(info);
                }
        }
@@ -387,14 +386,14 @@ static void purge_vis_packets(void)
 
 static void broadcast_vis_packet(struct vis_info *info, int packet_length)
 {
-       struct hash_it_t *hashit = NULL;
+       HASHIT(hashit);
        struct orig_node *orig_node;
 
        spin_lock(&orig_hash_lock);
 
        /* send to all routers in range. */
-       while (NULL != (hashit = hash_iterate(orig_hash, hashit))) {
-               orig_node = hashit->bucket->data;
+       while (hash_iterate(orig_hash, &hashit)) {
+               orig_node = hashit.bucket->data;
 
                /* if it's a vis server and reachable, send it. */
                if (orig_node &&