Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58c501aa authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
Browse files

proc: faster /proc/cmdline

parent 1539d584
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -6,7 +6,8 @@

static int cmdline_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%s\n", saved_command_line);
	seq_puts(m, saved_command_line);
	seq_putc(m, '\n');
	return 0;
}