/proc/modules에 (F)로 표시된 모듈

/proc/modules에 (F)로 표시된 모듈

내 3.10 시스템에서는 /proc/modules에 나열된 일부 모듈이 (F)로 표시되어 있습니다. 나는 이 문제의 원인을 알고 싶다(F). 모듈이 강제로 로드되지 않고 커널로 빌드되었다고 확신합니다. 어떤 커널 코드가 /proc/modules를 생성하는지 지적할 수 있습니까?

usb_storage 56610 0 - Live 0xffffffffa005d000 (F)

모듈을 언로드했다가 다시 로드하면 (F)가 사라집니다.

답변1

출력의 열은 /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 값은 언로드된 모듈을 나타냅니다.
  • 네 번째 열은 모듈이 실행할 다른 모듈에 의존하는지 여부를 나타내고 해당 다른 모듈을 나열합니다.
  • 다섯 번째 열에는 모듈의 로드 상태가 나열됩니다. Live, Loading 또는 Unloading만 가능한 값입니다.
  • 여섯 번째 열에는 로드된 모듈의 현재 커널 메모리 오프셋이 나열됩니다. 이 정보는 디버깅 목적으로 사용되거나 oprofile과 같은 프로파일링 도구와 함께 사용될 수 있습니다.

나는 레이블이 지정된 열(즉, 일곱 번째 열)이 (F)이 파일의 여기에서 나온 것이라고 생각합니다.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.

인용하다

관련 정보