출력의 열은 /proc/modules
다음과 같습니다.
usb_storage 56610 0 - Live 0xffffffffa005d000 (F)
(1) (2) (3) (4) (5) (6) (7)
참고 : 나는 7 번째 열로 보이는 것에 대해 언급하지 않았지만 6 번째 열에 대한 설명 (아래 참조)에 표시되는 정보를 다루지 않으므로 레이블을 붙입니다.
발췌-http: //www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-proc-topfiles.html
- 첫 번째 열에는 모듈 이름이 포함되어 있습니다.
- 두 번째 열은 모듈의 메모리 크기 (바이트)를 나타냅니다.
- 세 번째 열은 현재로드 된 모듈의 인스턴스 수를 나타냅니다. 값이 0이면 언로드 된 모듈을 나타냅니다.
- 네 번째 열은 모듈이 작동하기 위해 존재하는 다른 모듈에 의존하는지 여부를 나타내며 다른 모듈을 나열합니다.
- 다섯 번째 열에는 모듈의로드 상태가 표시됩니다. 라이브,로드 또는 언로드가 유일하게 가능한 값입니다.
- 여섯 번째 열에는로드 된 모듈의 현재 커널 메모리 오프셋이 나열됩니다. 이 정보는 디버깅 목적 또는 oprofile과 같은 프로파일 링 도구에 유용 할 수 있습니다.
나는 (F)
(즉, 7 번째 열) 로 표시된 열이 여기에서 온다고 생각합니다- panic.c
.
/**
* print_tainted - return a string to represent the kernel taint state.
*
* 'P' - Proprietary module has been loaded.
* 'F' - Module has been forcibly loaded.
* 'S' - SMP with CPUs not designed for SMP.
* 'R' - User forced a module unload.
* 'M' - System experienced a machine check exception.
* 'B' - System has hit bad_page.
* 'U' - Userspace-defined naughtiness.
* 'D' - Kernel has oopsed before
* 'A' - ACPI table overridden.
* 'W' - Taint on warning.
* 'C' - modules from drivers/staging are loaded.
* 'I' - Working around severe firmware bug.
* 'O' - Out-of-tree module has been loaded.
* 'E' - Unsigned module has been loaded.
*
* The string is overwritten by the next call to print_tainted().
*/
이 코드는 kernel.txt
참조 설명서에도 있는 비트 마스크를 나타냅니다 .
tainted:
Non-zero if the kernel has been tainted. Numeric values, which
can be ORed together:
1 - A module with a non-GPL license has been loaded, this
includes modules with no license.
Set by modutils >= 2.4.9 and module-init-tools.
2 - A module was force loaded by insmod -f.
Set by modutils >= 2.4.9 and module-init-tools.
4 - Unsafe SMP processors: SMP with CPUs not designed for SMP.
8 - A module was forcibly unloaded from the system by rmmod -f.
16 - A hardware machine check error occurred on the system.
32 - A bad page was discovered on the system.
64 - The user has asked that the system be marked "tainted". This
could be because they are running software that directly modifies
the hardware, or for other reasons.
128 - The system has died.
256 - The ACPI DSDT has been overridden with one supplied by the user
instead of using the one provided by the hardware.
512 - A kernel warning has occurred.
1024 - A module from drivers/staging was loaded.
2048 - The system is working around a severe firmware bug.
4096 - An out-of-tree module has been loaded.
8192 - An unsigned module has been loaded in a kernel supporting module
signature.
참고 문헌