bitmap support apis */
| 114 | |
| 115 | /* bitmap support apis */ |
| 116 | static inline void |
| 117 | ccp_set_bit(unsigned long *bitmap, int n) |
| 118 | { |
| 119 | __atomic_fetch_or(&bitmap[WORD_OFFSET(n)], (1UL << BIT_OFFSET(n)), |
| 120 | __ATOMIC_SEQ_CST); |
| 121 | } |
| 122 | |
| 123 | static inline void |
| 124 | ccp_clear_bit(unsigned long *bitmap, int n) |
no outgoing calls
no test coverage detected