~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/util/intlist.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __PERF_INTLIST_H
  3 #define __PERF_INTLIST_H
  4 
  5 #include <linux/rbtree.h>
  6 #include <stdbool.h>
  7 
  8 #include "rblist.h"
  9 
 10 struct int_node {
 11         struct rb_node rb_node;
 12         unsigned long i;
 13         void *priv;
 14 };
 15 
 16 struct intlist {
 17         struct rblist rblist;
 18 };
 19 
 20 struct intlist *intlist__new(const char *slist);
 21 void intlist__delete(struct intlist *ilist);
 22 
 23 void intlist__remove(struct intlist *ilist, struct int_node *in);
 24 int intlist__add(struct intlist *ilist, unsigned long i);
 25 
 26 struct int_node *intlist__entry(const struct intlist *ilist, unsigned int idx);
 27 struct int_node *intlist__find(struct intlist *ilist, unsigned long i);
 28 struct int_node *intlist__findnew(struct intlist *ilist, unsigned long i);
 29 
 30 static inline bool intlist__has_entry(struct intlist *ilist, unsigned long i)
 31 {
 32         return intlist__find(ilist, i) != NULL;
 33 }
 34 
 35 static inline bool intlist__empty(const struct intlist *ilist)
 36 {
 37         return rblist__empty(&ilist->rblist);
 38 }
 39 
 40 static inline unsigned int intlist__nr_entries(const struct intlist *ilist)
 41 {
 42         return rblist__nr_entries(&ilist->rblist);
 43 }
 44 
 45 /* For intlist iteration */
 46 static inline struct int_node *intlist__first(struct intlist *ilist)
 47 {
 48         struct rb_node *rn = rb_first_cached(&ilist->rblist.entries);
 49         return rn ? rb_entry(rn, struct int_node, rb_node) : NULL;
 50 }
 51 static inline struct int_node *intlist__next(struct int_node *in)
 52 {
 53         struct rb_node *rn;
 54         if (!in)
 55                 return NULL;
 56         rn = rb_next(&in->rb_node);
 57         return rn ? rb_entry(rn, struct int_node, rb_node) : NULL;
 58 }
 59 
 60 /**
 61  * intlist__for_each_entry      - iterate over a intlist
 62  * @pos:        the &struct int_node to use as a loop cursor.
 63  * @ilist:      the &struct intlist for loop.
 64  */
 65 #define intlist__for_each_entry(pos, ilist)     \
 66         for (pos = intlist__first(ilist); pos; pos = intlist__next(pos))
 67 
 68 /**
 69  * intlist__for_each_entry_safe - iterate over a intlist safe against removal of
 70  *                         int_node
 71  * @pos:        the &struct int_node to use as a loop cursor.
 72  * @n:          another &struct int_node to use as temporary storage.
 73  * @ilist:      the &struct intlist for loop.
 74  */
 75 #define intlist__for_each_entry_safe(pos, n, ilist)     \
 76         for (pos = intlist__first(ilist), n = intlist__next(pos); pos;\
 77              pos = n, n = intlist__next(n))
 78 #endif /* __PERF_INTLIST_H */
 79 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php