ค่าความมัวของเคอร์เนลหมายถึงอะไร
การcat /proc/sys/kernel/taintedพิมพ์จะพิมพ์ค่าเคอร์เนลปัจจุบัน (ในฐาน 10) ความเข้าใจของฉันคือว่าค่านี้เป็นบิตฟิลด์ซึ่งแต่ละบิตบ่งชี้ว่าไม่มีหรือมีชนิดของคราบเฉพาะ คุณสามารถแยกบิตโดยใช้ python3 -c 'from pprint import pprint; pprint(list(zip(range(50), reversed(bin(int(open("/proc/sys/kernel/tainted").read()))[2:]))))' ฉันได้ค้นหาเอกสารแล้ว แต่สิ่งที่ฉันได้เห็นเพียงระบุความหมายของบิต 0 ถึง 10 ตัวอย่างเช่นhttp://www.kernel.org/doc/Documentation/sysctl/kernel.txtพูดว่า: tainted: Non-zero if the kernel has been tainted. Numeric values, which can be ORed together. The letters are seen in "Tainted" line of Oops reports. 1 (P): A module with …