cregit-Linux how code gets into the kernel

Release 4.18 fs/proc/cmdline.c

Directory: fs/proc
// SPDX-License-Identifier: GPL-2.0
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>


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

Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan32100.00%2100.00%
Total32100.00%2100.00%


static int __init proc_cmdline_init(void) { proc_create_single("cmdline", 0, NULL, cmdline_proc_show); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan2191.30%150.00%
Christoph Hellwig28.70%150.00%
Total23100.00%2100.00%

fs_initcall(proc_cmdline_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Alexey Dobriyan6994.52%240.00%
Christoph Hellwig22.74%120.00%
Paul Gortmaker11.37%120.00%
Greg Kroah-Hartman11.37%120.00%
Total73100.00%5100.00%
Directory: fs/proc
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.