Linux 커널 코드에서 __init은 무엇을 의미합니까?
Linux 커널 소스 코드에서 다음 함수를 찾았습니다.
static int __init clk_disable_unused(void)
{
// some code
}
여기서 나는 무엇을 하는지 이해할 수 없다.__init
수단.
include/linux/init.h
/* These macros are used to mark some functions or
* initialized data (doesn't apply to uninitialized data)
* as `initialization' functions. The kernel can take this
* as hint that the function is used only during the initialization
* phase and free up used memory resources after
*
* Usage:
* For functions:
*
* You should add __init immediately before the function name, like:
*
* static void __init initme(int x, int y)
* {
* extern int z; z = x * y;
* }
*
* If the function has a prototype somewhere, you can also add
* __init between closing brace of the prototype and semicolon:
*
* extern int initialize_foobar_device(int, int, int) __init;
*
* For initialized data:
* You should insert __initdata between the variable name and equal
* sign followed by value, e.g.:
*
* static int init_variable __initdata = 0;
* static const char linux_logo[] __initconst = { 0x32, 0x36, ... };
*
* Don't forget to initialize data not at file scope, i.e. within a function,
* as gcc otherwise puts the data into the bss section and not into the init
* section.
*
* Also note, that this data cannot be "const".
*/
/* These are for everybody (although not all archs will actually
discard it in modules) */
#define __init __section(.init.text) __cold notrace
#define __initdata __section(.init.data)
#define __initconst __section(.init.rodata)
#define __exitdata __section(.exit.data)
#define __exit_call __used __section(.exitcall.exit)
이는 최종 실행 바이너리에서 Linux 코드의 일부를 특정 영역에 배치하기 위한 매크로에 불과합니다. __init
예를 들어 (또는 더 나은)__attribute__ ((__section__ (".init.text")))
이 매크로는 특별한 방법으로 이 함수를 표시하도록 컴파일러에 지시합니다.링커는 바이너리 파일의 마지막(또는 시작)에 이 마크가 붙은 모든 함수를 수집합니다.
커널이 시작될 때 이 코드는 한 번만 실행됩니다(초기화).실행 후 커널은 메모리를 해방하여 재사용할 수 있으며 커널 메시지가 나타납니다.
미사용 커널 메모리 해방: 108k 해방
이 기능을 사용하려면 링커에 마킹된 모든 기능의 위치를 알려주는 특별한 링커스크립트 파일이 필요해요
Linux 커널 모듈을 컴파일하여 커널에 삽입할 때 가장 먼저 실행되는 함수는 __init입니다.이 함수는 기본적으로 디바이스 드라이버 등록 등의 주요 작업을 수행하기 전에 초기화를 수행하는데 사용됩니다. 반대 효과 __exit을 가진 다른 함수가 있습니다. 커널 모듈을 삭제하면 호출됩니다. 이 함수는 등록된 디바이스나 이와 유사한 기능을 제거하기 위해 다시 사용됩니다.
이것은 커널 2.2 이후의 기능을 나타냅니다.의 정의 변경에 주의해 주십시오.init
그리고.cleanup
기능들.그__init
매크로로 인해init
기능을 폐기하고 그 메모리를 해방합니다.init
내장 드라이버의 기능은 종료되지만 로드 가능한 모듈은 아닙니다.언제가 될지 생각해보면init
함수가 호출됩니다.이것은 완전히 말이 됩니다.
__init은 ./syslog/linux/init.h에서 정의된 매크로로, 확장자는 다음과 같습니다.__attribute__ ((__section__(".init.text")))
.
컴파일러가 이 함수를 특별한 방법으로 표시하도록 지시합니다.링커는 바이너리 파일의 마지막(또는 시작)에 이 마크가 붙은 모든 함수를 수집합니다.커널이 시작될 때 이 코드는 한 번만 실행됩니다(초기화).실행 후 커널은 메모리를 해방하여 재사용할 수 있으며 커널이 표시됩니다.
linux/init.h의 코멘트(및 동시에 문서)를 읽습니다.
또한 gcc에는 Linux 커널 코드용으로 특별히 만들어진 확장자가 있으며 이 매크로가 그 중 하나를 사용하는 것 같습니다.
언급URL : https://stackoverflow.com/questions/8832114/what-does-init-mean-in-the-linux-kernel-code
'programing' 카테고리의 다른 글
Quasar QTable에 반영되지 않은 vuex 데이터 변경 사항 (0) | 2022.08.16 |
---|---|
C에서의 최적의 타이밍 방법? (0) | 2022.08.16 |
사용자 지정 지시문에서 v-if 지시문 시뮬레이션 (0) | 2022.08.16 |
행/하위 구조를 사용한 루프 (0) | 2022.08.16 |
printf 및 long double (0) | 2022.08.16 |