allow proto handlers to attach data items in notify
[project/netifd.git] / utils.h
diff --git a/utils.h b/utils.h
index 99b1c0d..5ea9c6f 100644 (file)
--- a/utils.h
+++ b/utils.h
@@ -5,6 +5,17 @@
 #include <libubox/avl.h>
 #include <libubox/blobmsg.h>
 
+#ifndef __OPTIMIZE__
+#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
+#else
+extern int __build_bug_on_failed;
+#define BUILD_BUG_ON(condition)                                 \
+       do {                                                    \
+               ((void)sizeof(char[1 - 2*!!(condition)]));  \
+               if (condition) __build_bug_on_failed = 1;   \
+       } while(0)
+#endif
+
 static inline bool blobmsg_get_bool_default(struct blob_attr *attr, bool val)
 {
        if (!attr)
@@ -82,6 +93,7 @@ static inline void vlist_simple_update(struct vlist_simple_tree *tree)
 
 static inline void vlist_simple_add(struct vlist_simple_tree *tree, struct vlist_simple_node *node)
 {
+       node->version = tree->version;
        list_add(&node->list, &tree->list);
 }