bitmask.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __CPUPOWER_BITMASK__
  3. #define __CPUPOWER_BITMASK__
  4. /* Taken over from libbitmask, a project initiated from sgi:
  5. * Url: http://oss.sgi.com/projects/cpusets/
  6. * Unfortunately it's not very widespread, therefore relevant parts are
  7. * pasted here.
  8. */
  9. struct bitmask {
  10. unsigned int size;
  11. unsigned long *maskp;
  12. };
  13. struct bitmask *bitmask_alloc(unsigned int n);
  14. void bitmask_free(struct bitmask *bmp);
  15. struct bitmask *bitmask_setbit(struct bitmask *bmp, unsigned int i);
  16. struct bitmask *bitmask_setall(struct bitmask *bmp);
  17. struct bitmask *bitmask_clearall(struct bitmask *bmp);
  18. unsigned int bitmask_first(const struct bitmask *bmp);
  19. unsigned int bitmask_next(const struct bitmask *bmp, unsigned int i);
  20. unsigned int bitmask_last(const struct bitmask *bmp);
  21. int bitmask_isallclear(const struct bitmask *bmp);
  22. int bitmask_isbitset(const struct bitmask *bmp, unsigned int i);
  23. int bitmask_parselist(const char *buf, struct bitmask *bmp);
  24. int bitmask_displaylist(char *buf, int len, const struct bitmask *bmp);
  25. #endif /*__CPUPOWER_BITMASK__ */