1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef __CPUPOWER_BITMASK__ 1 #ifndef __CPUPOWER_BITMASK__ 3 #define __CPUPOWER_BITMASK__ 2 #define __CPUPOWER_BITMASK__ 4 3 5 /* Taken over from libbitmask, a project initi 4 /* Taken over from libbitmask, a project initiated from sgi: 6 * Url: http://oss.sgi.com/projects 5 * Url: http://oss.sgi.com/projects/cpusets/ 7 * Unfortunately it's not very widespread, the 6 * Unfortunately it's not very widespread, therefore relevant parts are 8 * pasted here. 7 * pasted here. 9 */ 8 */ 10 9 11 struct bitmask { 10 struct bitmask { 12 unsigned int size; 11 unsigned int size; 13 unsigned long *maskp; 12 unsigned long *maskp; 14 }; 13 }; 15 14 16 struct bitmask *bitmask_alloc(unsigned int n); 15 struct bitmask *bitmask_alloc(unsigned int n); 17 void bitmask_free(struct bitmask *bmp); 16 void bitmask_free(struct bitmask *bmp); 18 17 19 struct bitmask *bitmask_setbit(struct bitmask 18 struct bitmask *bitmask_setbit(struct bitmask *bmp, unsigned int i); 20 struct bitmask *bitmask_setall(struct bitmask 19 struct bitmask *bitmask_setall(struct bitmask *bmp); 21 struct bitmask *bitmask_clearall(struct bitmas 20 struct bitmask *bitmask_clearall(struct bitmask *bmp); 22 21 23 unsigned int bitmask_first(const struct bitmas 22 unsigned int bitmask_first(const struct bitmask *bmp); 24 unsigned int bitmask_next(const struct bitmask 23 unsigned int bitmask_next(const struct bitmask *bmp, unsigned int i); 25 unsigned int bitmask_last(const struct bitmask 24 unsigned int bitmask_last(const struct bitmask *bmp); 26 int bitmask_isallclear(const struct bitmask *b 25 int bitmask_isallclear(const struct bitmask *bmp); 27 int bitmask_isbitset(const struct bitmask *bmp 26 int bitmask_isbitset(const struct bitmask *bmp, unsigned int i); 28 27 29 int bitmask_parselist(const char *buf, struct 28 int bitmask_parselist(const char *buf, struct bitmask *bmp); 30 int bitmask_displaylist(char *buf, int len, co 29 int bitmask_displaylist(char *buf, int len, const struct bitmask *bmp); 31 30 32 31 33 32 34 #endif /*__CPUPOWER_BITMASK__ */ 33 #endif /*__CPUPOWER_BITMASK__ */ 35 34
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.