filbranden / rpms / systemd

Forked from rpms/systemd 4 years ago
Clone
2b68233
From 270eaf14c4905a9635bd1d009cb1565cd4f3626f Mon Sep 17 00:00:00 2001
2b68233
From: Lennart Poettering <lennart@poettering.net>
2b68233
Date: Mon, 22 Feb 2016 18:40:28 +0100
2b68233
Subject: [PATCH] hashmap: use void* and uint8_t* for generic pointers
2b68233
2b68233
As suggested by CODING_STYLE we should use "void*" as type for generic memory,
2b68233
and uint8_t* for generic bytes. Hence use that instead of "char*", which should
2b68233
really be used only for strings these days.
2b68233
2b68233
(cherry picked from commit 1a39bc8c650802630696c38e510a4a2a4c6bda92)
2b68233
---
2b68233
 src/basic/hashmap.c | 14 +++++++-------
2b68233
 1 file changed, 7 insertions(+), 7 deletions(-)
2b68233
2b68233
diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c
2b68233
index 6f1a049d47..85b8d812b3 100644
2b68233
--- a/src/basic/hashmap.c
2b68233
+++ b/src/basic/hashmap.c
2b68233
@@ -176,7 +176,7 @@ enum HashmapType {
2b68233
 };
2b68233
 
2b68233
 struct _packed_ indirect_storage {
2b68233
-        char    *storage;                  /* where buckets and DIBs are stored */
2b68233
+        void *storage;                     /* where buckets and DIBs are stored */
2b68233
         uint8_t  hash_key[HASH_KEY_SIZE];  /* hash key; changes during resize */
2b68233
 
2b68233
         unsigned n_entries;                /* number of stored entries */
2b68233
@@ -193,7 +193,7 @@ struct direct_storage {
2b68233
         /* This gives us 39 bytes on 64bit, or 35 bytes on 32bit.
2b68233
          * That's room for 4 set_entries + 4 DIB bytes + 3 unused bytes on 64bit,
2b68233
          *              or 7 set_entries + 7 DIB bytes + 0 unused bytes on 32bit. */
2b68233
-        char storage[sizeof(struct indirect_storage)];
2b68233
+        uint8_t storage[sizeof(struct indirect_storage)];
2b68233
 };
2b68233
 
2b68233
 #define DIRECT_BUCKETS(entry_t) \
2b68233
@@ -302,7 +302,7 @@ static void n_entries_dec(HashmapBase *h) {
2b68233
                 h->n_direct_entries--;
2b68233
 }
2b68233
 
2b68233
-static char *storage_ptr(HashmapBase *h) {
2b68233
+static void *storage_ptr(HashmapBase *h) {
2b68233
         return h->has_indirect ? h->indirect.storage
2b68233
                                : h->direct.storage;
2b68233
 }
2b68233
@@ -347,7 +347,7 @@ static void get_hash_key(uint8_t hash_key[HASH_KEY_SIZE], bool reuse_is_ok) {
2b68233
 
2b68233
 static struct hashmap_base_entry *bucket_at(HashmapBase *h, unsigned idx) {
2b68233
         return (struct hashmap_base_entry*)
2b68233
-                (storage_ptr(h) + idx * hashmap_type_info[h->type].entry_size);
2b68233
+                ((uint8_t*) storage_ptr(h) + idx * hashmap_type_info[h->type].entry_size);
2b68233
 }
2b68233
 
2b68233
 static struct plain_hashmap_entry *plain_bucket_at(Hashmap *h, unsigned idx) {
2b68233
@@ -381,7 +381,7 @@ static struct hashmap_base_entry *bucket_at_virtual(HashmapBase *h, struct swap_
2b68233
 
2b68233
 static dib_raw_t *dib_raw_ptr(HashmapBase *h) {
2b68233
         return (dib_raw_t*)
2b68233
-                (storage_ptr(h) + hashmap_type_info[h->type].entry_size * n_buckets(h));
2b68233
+                ((uint8_t*) storage_ptr(h) + hashmap_type_info[h->type].entry_size * n_buckets(h));
2b68233
 }
2b68233
 
2b68233
 static unsigned bucket_distance(HashmapBase *h, unsigned idx, unsigned from) {
2b68233
@@ -1028,7 +1028,7 @@ static int hashmap_base_put_boldly(HashmapBase *h, unsigned idx,
2b68233
  */
2b68233
 static int resize_buckets(HashmapBase *h, unsigned entries_add) {
2b68233
         struct swap_entries swap;
2b68233
-        char *new_storage;
2b68233
+        void *new_storage;
2b68233
         dib_raw_t *old_dibs, *new_dibs;
2b68233
         const struct hashmap_type_info *hi;
2b68233
         unsigned idx, optimal_idx;
2b68233
@@ -1095,7 +1095,7 @@ static int resize_buckets(HashmapBase *h, unsigned entries_add) {
2b68233
         h->indirect.n_buckets = (1U << new_shift) /
2b68233
                                 (hi->entry_size + sizeof(dib_raw_t));
2b68233
 
2b68233
-        old_dibs = (dib_raw_t*)(new_storage + hi->entry_size * old_n_buckets);
2b68233
+        old_dibs = (dib_raw_t*)((uint8_t*) new_storage + hi->entry_size * old_n_buckets);
2b68233
         new_dibs = dib_raw_ptr(h);
2b68233
 
2b68233
         /*