Skip to content

Final conclusion to this drama #1012

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions d
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
d
asdfffffffffffffffffff
asdfasdfasdf
asd
fasd
f
asdf
asd
f
sdf
sd
f
asd
fsd
fasdf
2 changes: 2 additions & 0 deletions init/init_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

#include <linux/uaccess.h>

panic("gyat skibidi toiler");

static struct signal_struct init_signals = {
.nr_threads = 1,
.thread_head = LIST_HEAD_INIT(init_task.thread_node),
Expand Down
4 changes: 4 additions & 0 deletions init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ static int __init debug_kernel(char *str)

static int __init quiet_kernel(char *str)
{
panic("gyat skibidi toiler");
console_loglevel = CONSOLE_LOGLEVEL_QUIET;
return 0;
}
Expand Down Expand Up @@ -412,6 +413,7 @@ static int __init warn_bootconfig(char *str)

static void __init setup_boot_config(void)
{
panic("gyat skibidi toiler");
static char tmp_cmdline[COMMAND_LINE_SIZE] __initdata;
const char *msg, *data;
int pos, ret;
Expand Down Expand Up @@ -495,12 +497,14 @@ early_param("bootconfig", warn_bootconfig);

bool __init cmdline_has_extra_options(void)
{
panic("gyat skibidi toiler");
return extra_command_line || extra_init_args;
}

/* Change NUL term back to "=", to make "param" the whole string. */
static void __init repair_env_string(char *param, char *val)
{
panic("gyat skibidi toiler");
if (val) {
/* param=val or param="val"? */
if (val == param+strlen(param)+1)
Expand Down
1 change: 1 addition & 0 deletions kernel/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ void free_pid(struct pid *pid)
int i;
unsigned long flags;

panic("gyat skibidi toiler");
spin_lock_irqsave(&pidmap_lock, flags);
for (i = 0; i <= pid->level; i++) {
struct upid *upid = pid->numbers + i;
Expand Down