switch from typeof to the more portable __typeof__

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2018-04-07 15:21:25 +02:00
parent 92009b7f98
commit ace64897d4
3 changed files with 16 additions and 16 deletions

14
avl.h
View file

@ -238,7 +238,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* NULL if no element was found * NULL if no element was found
*/ */
#define avl_find_element(tree, key, element, node_element) \ #define avl_find_element(tree, key, element, node_element) \
((typeof(*(element)) *)__avl_find_element(tree, key, offsetof(typeof(*(element)), node_element), AVL_FIND_EQUAL)) ((__typeof__(*(element)) *)__avl_find_element(tree, key, offsetof(typeof(*(element)), node_element), AVL_FIND_EQUAL))
/** /**
* @param tree pointer to avl-tree * @param tree pointer to avl-tree
@ -251,7 +251,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* NULL if no element was found * NULL if no element was found
*/ */
#define avl_find_le_element(tree, key, element, node_element) \ #define avl_find_le_element(tree, key, element, node_element) \
((typeof(*(element)) *)__avl_find_element(tree, key, offsetof(typeof(*(element)), node_element), AVL_FIND_LESSEQUAL)) ((__typeof__(*(element)) *)__avl_find_element(tree, key, offsetof(typeof(*(element)), node_element), AVL_FIND_LESSEQUAL))
/** /**
* @param tree pointer to avl-tree * @param tree pointer to avl-tree
@ -264,7 +264,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* NULL if no element was found * NULL if no element was found
*/ */
#define avl_find_ge_element(tree, key, element, node_element) \ #define avl_find_ge_element(tree, key, element, node_element) \
((typeof(*(element)) *)__avl_find_element(tree, key, offsetof(typeof(*(element)), node_element), AVL_FIND_GREATEREQUAL)) ((__typeof__(*(element)) *)__avl_find_element(tree, key, offsetof(typeof(*(element)), node_element), AVL_FIND_GREATEREQUAL))
/** /**
* This function must not be called for an empty tree * This function must not be called for an empty tree
@ -278,7 +278,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* (automatically converted to type 'element') * (automatically converted to type 'element')
*/ */
#define avl_first_element(tree, element, node_member) \ #define avl_first_element(tree, element, node_member) \
container_of((tree)->list_head.next, typeof(*(element)), node_member.list) container_of((tree)->list_head.next, __typeof__(*(element)), node_member.list)
/** /**
* @param tree pointer to tree * @param tree pointer to tree
@ -290,7 +290,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* (automatically converted to type 'element') * (automatically converted to type 'element')
*/ */
#define avl_last_element(tree, element, node_member) \ #define avl_last_element(tree, element, node_member) \
container_of((tree)->list_head.prev, typeof(*(element)), node_member.list) container_of((tree)->list_head.prev, __typeof__(*(element)), node_member.list)
/** /**
* This function must not be called for the last element of * This function must not be called for the last element of
@ -303,7 +303,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* (automatically converted to type 'element') * (automatically converted to type 'element')
*/ */
#define avl_next_element(element, node_member) \ #define avl_next_element(element, node_member) \
container_of((&(element)->node_member.list)->next, typeof(*(element)), node_member.list) container_of((&(element)->node_member.list)->next, __typeof__(*(element)), node_member.list)
/** /**
* This function must not be called for the first element of * This function must not be called for the first element of
@ -316,7 +316,7 @@ __avl_find_element(const struct avl_tree *tree, const void *key, size_t offset,
* (automatically converted to type 'element') * (automatically converted to type 'element')
*/ */
#define avl_prev_element(element, node_member) \ #define avl_prev_element(element, node_member) \
container_of((&(element)->node_member.list)->prev, typeof(*(element)), node_member.list) container_of((&(element)->node_member.list)->prev, __typeof__(*(element)), node_member.list)
/** /**
* Loop over a block of elements of a tree, used similar to a for() command. * Loop over a block of elements of a tree, used similar to a for() command.

16
list.h
View file

@ -37,7 +37,7 @@
#ifndef container_of #ifndef container_of
#define container_of(ptr, type, member) \ #define container_of(ptr, type, member) \
({ \ ({ \
const typeof(((type *) NULL)->member) *__mptr = (ptr); \ const __typeof__(((type *) NULL)->member) *__mptr = (ptr); \
(type *) ((char *) __mptr - offsetof(type, member)); \ (type *) ((char *) __mptr - offsetof(type, member)); \
}) })
#endif #endif
@ -120,17 +120,17 @@ list_del_init(struct list_head *entry)
for (p = (head)->next, n = p->next; p != (head); p = n, n = p->next) for (p = (head)->next, n = p->next; p != (head); p = n, n = p->next)
#define list_for_each_entry(p, h, field) \ #define list_for_each_entry(p, h, field) \
for (p = list_first_entry(h, typeof(*p), field); &p->field != (h); \ for (p = list_first_entry(h, __typeof__(*p), field); &p->field != (h); \
p = list_entry(p->field.next, typeof(*p), field)) p = list_entry(p->field.next, __typeof__(*p), field))
#define list_for_each_entry_safe(p, n, h, field) \ #define list_for_each_entry_safe(p, n, h, field) \
for (p = list_first_entry(h, typeof(*p), field), \ for (p = list_first_entry(h, __typeof__(*p), field), \
n = list_entry(p->field.next, typeof(*p), field); &p->field != (h);\ n = list_entry(p->field.next, __typeof__(*p), field); &p->field != (h);\
p = n, n = list_entry(n->field.next, typeof(*n), field)) p = n, n = list_entry(n->field.next, __typeof__(*n), field))
#define list_for_each_entry_reverse(p, h, field) \ #define list_for_each_entry_reverse(p, h, field) \
for (p = list_last_entry(h, typeof(*p), field); &p->field != (h); \ for (p = list_last_entry(h, __typeof__(*p), field); &p->field != (h); \
p = list_entry(p->field.prev, typeof(*p), field)) p = list_entry(p->field.prev, __typeof__(*p), field))
#define list_for_each_prev(p, h) for (p = (h)->prev; p != (h); p = p->prev) #define list_for_each_prev(p, h) for (p = (h)->prev; p != (h); p = p->prev)
#define list_for_each_prev_safe(p, n, h) for (p = (h)->prev, n = p->prev; p != (h); p = n, n = p->prev) #define list_for_each_prev_safe(p, n, h) for (p = (h)->prev, n = p->prev; p != (h); p = n, n = p->prev)

View file

@ -125,7 +125,7 @@ int clock_gettime(int type, struct timespec *tv);
(sizeof(int) == sizeof(*(1 ? ((void*)((long)(x) * 0l)) : (int*)1))) (sizeof(int) == sizeof(*(1 ? ((void*)((long)(x) * 0l)) : (int*)1)))
#define __eval_once(func, x) \ #define __eval_once(func, x) \
({ typeof(x) __x = x; func(__x); }) ({ __typeof__(x) __x = x; func(__x); })
#define __eval_safe(func, x) \ #define __eval_safe(func, x) \
__builtin_choose_expr(__is_constant(x), \ __builtin_choose_expr(__is_constant(x), \