cregit-Linux how code gets into the kernel

Release 4.11 arch/x86/boot/compressed/error.c

/*
 * Callers outside of misc.c need access to the error reporting routines,
 * but the *_putstr() functions need to stay in misc.c because of how
 * memcpy() and memmove() are defined for the compressed boot environment.
 */
#include "misc.h"
#include "error.h"


void warn(char *m) { error_putstr("\n\n"); error_putstr(m); error_putstr("\n\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Kees Cook24100.00%1100.00%
Total24100.00%1100.00%


void error(char *m) { warn(m); error_putstr(" -- System halted"); while (1) asm("hlt"); }

Contributors

PersonTokensPropCommitsCommitProp
Kees Cook24100.00%1100.00%
Total24100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Kees Cook5294.55%150.00%
Zhengyi Shen35.45%150.00%
Total55100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.