Home
last modified time | relevance | path

Searched refs:mfeatures (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/arch/s390/include/asm/
H A Dmachine.h31 static inline void __set_machine_feature(unsigned int nr, unsigned long *mfeatures) in __set_machine_feature() argument
35 __set_bit(nr, mfeatures); in __set_machine_feature()
43 static inline void __clear_machine_feature(unsigned int nr, unsigned long *mfeatures) in __clear_machine_feature() argument
47 __clear_bit(nr, mfeatures); in __clear_machine_feature()
55 static bool __test_machine_feature(unsigned int nr, unsigned long *mfeatures) in __test_machine_feature() argument
59 return test_bit(nr, mfeatures); in __test_machine_feature()
/linux-6.15/arch/s390/boot/
H A Dalternative.c19 for (i = 0; i < ARRAY_SIZE(alt_debug.mfeatures); i++) in alt_debug_all()
20 alt_debug.mfeatures[i] = -1UL; in alt_debug_all()
39 __clear_machine_feature(nr, alt_debug.mfeatures); in alt_debug_modify()
41 __set_machine_feature(nr, alt_debug.mfeatures); in alt_debug_modify()
/linux-6.15/arch/s390/kernel/
H A Dalternative.c28 unsigned long mfeatures[MAX_MFEATURE_BIT / BITS_PER_LONG]; member
72 debug = __test_machine_feature(a->data, d->mfeatures); in __apply_alternatives()