percpu_freelist.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Copyright (c) 2016 Facebook
  2. *
  3. * This program is free software; you can redistribute it and/or
  4. * modify it under the terms of version 2 of the GNU General Public
  5. * License as published by the Free Software Foundation.
  6. */
  7. #ifndef __PERCPU_FREELIST_H__
  8. #define __PERCPU_FREELIST_H__
  9. #include <linux/spinlock.h>
  10. #include <linux/percpu.h>
  11. struct pcpu_freelist_head {
  12. struct pcpu_freelist_node *first;
  13. raw_spinlock_t lock;
  14. };
  15. struct pcpu_freelist {
  16. struct pcpu_freelist_head __percpu *freelist;
  17. };
  18. struct pcpu_freelist_node {
  19. struct pcpu_freelist_node *next;
  20. };
  21. /* pcpu_freelist_* do spin_lock_irqsave. */
  22. void pcpu_freelist_push(struct pcpu_freelist *, struct pcpu_freelist_node *);
  23. struct pcpu_freelist_node *pcpu_freelist_pop(struct pcpu_freelist *);
  24. /* __pcpu_freelist_* do spin_lock only. caller must disable irqs. */
  25. void __pcpu_freelist_push(struct pcpu_freelist *, struct pcpu_freelist_node *);
  26. struct pcpu_freelist_node *__pcpu_freelist_pop(struct pcpu_freelist *);
  27. void pcpu_freelist_populate(struct pcpu_freelist *s, void *buf, u32 elem_size,
  28. u32 nr_elems);
  29. int pcpu_freelist_init(struct pcpu_freelist *);
  30. void pcpu_freelist_destroy(struct pcpu_freelist *s);
  31. #endif