cregit-Linux how code gets into the kernel

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

// SPDX-License-Identifier: GPL-2.0
/*
 * 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 Cook5292.86%133.33%
Zhengyi Shen35.36%133.33%
Greg Kroah-Hartman11.79%133.33%
Total56100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.