GNU/Linux >> Tutoriales Linux >  >> Linux

¿Qué significa __init en el código del kernel de Linux?

Esto demuestra una característica del kernel 2.2 y posteriores. Observe el cambio en las definiciones del init y cleanup funciones El __init la macro causa el init función para ser descartada y su memoria liberada una vez que el init la función finaliza para los controladores integrados, pero no para los módulos cargables. Si piensas en cuando el init se invoca la función, esto tiene perfecto sentido.

fuente


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)

Estas son solo macros para ubicar algunas partes del código de Linux en áreas especiales en el binario de ejecución final.__init , por ejemplo (o mejor el __attribute__ ((__section__ (".init.text"))) esta macro se expande a) indica al compilador que marque esta función de una manera especial. Al final, el enlazador recopila todas las funciones con esta marca al final (o al principio) del archivo binario.

Cuando se inicia el kernel, este código se ejecuta solo una vez (inicialización). Después de ejecutarse, el núcleo puede liberar esta memoria para reutilizarla y verá el mensaje del núcleo:

Liberando memoria del kernel no utilizada:108k liberados

Para usar esta función, necesita un archivo de secuencia de comandos de enlazador especial, que le dice al enlazador dónde ubicar todas las funciones marcadas.


Linux
  1. Linux:¿qué implica el diseño de la memoria del kernel virtual en Dmesg?

  2. Linux:¿qué significa la opción de montaje Errors=continue?

  3. Linux:¿por qué el kernel no puede ejecutar Init?

  4. ¿Qué hace exactamente make oldconfig en el archivo MAKE del kernel de Linux?

  5. ¿Qué significa decir que el kernel de Linux es preventivo?

Linux:¿partes propietarias o cerradas del kernel?

¿Cuál es la fuente actual del kernel de Linux?

¿Qué significa - en este comando de Linux?

¿Qué pasa si [[ $? -ne 0 ]]; significa en .ksh

¿Qué significa el nombre de la interfaz eth0 en Linux?

¿Qué significa ./ (punto barra oblicua) en Linux?