カーネル汚染値とはどういう意味ですか?
実行すると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 a non-GPL license has been loaded, this includes modules …