util: remove LIST_REPLACE macro
authorTimothy Arceri <tarceri@itsqueeze.com>
Sun, 27 Oct 2019 23:05:45 +0000 (10:05 +1100)
committerTimothy Arceri <tarceri@itsqueeze.com>
Mon, 28 Oct 2019 11:24:38 +0000 (11:24 +0000)
Just use the inlined function directly. The macro was replaced with
the function in ebe304fa540f.

Reviewed-by: Eric Engestrom <eric@engestrom.ch>
src/gallium/auxiliary/util/u_debug_memory.c
src/util/list.h

index 7f0ac026c8c48aba5414db0f1ec7794eecbe6485..70f51144fa965eae529bf05f890fd9a0965e7fec 100644 (file)
@@ -275,7 +275,7 @@ debug_realloc(const char *file, unsigned line, const char *function,
    new_ftr->magic = DEBUG_MEMORY_MAGIC;
 
    mtx_lock(&list_mutex);
-   LIST_REPLACE(&old_hdr->head, &new_hdr->head);
+   list_replace(&old_hdr->head, &new_hdr->head);
    mtx_unlock(&list_mutex);
 
    /* copy data */
index cb66ae37be614e0f5b590978c756fa192aaec72b..ada844b9eba5e4e43a3bb4974b18aa3864ff33fb 100644 (file)
@@ -158,7 +158,6 @@ static inline void list_validate(const struct list_head *list)
       assert(node->next->prev == node && node->prev->next == node);
 }
 
-#define LIST_REPLACE(__from, __to) list_replace(__from, __to)
 #define LIST_DEL(__item) list_del(__item)
 #define LIST_DELINIT(__item) list_delinit(__item)