cregit-Linux how code gets into the kernel

Release 4.13 kernel/backtracetest.c

Directory: kernel
/*
 * Simple stack backtrace regression test module
 *
 * (C) Copyright 2008 Intel Corporation
 * Author: Arjan van de Ven <arjan@linux.intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; version 2
 * of the License.
 */

#include <linux/completion.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/stacktrace.h>


static void backtrace_test_normal(void) { pr_info("Testing a backtrace from process context.\n"); pr_info("The following trace is a kernel self test and not a bug!\n"); dump_stack(); }

Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum1885.71%133.33%
Fabian Frederick29.52%133.33%
Arjan van de Ven14.76%133.33%
Total21100.00%3100.00%

static DECLARE_COMPLETION(backtrace_work);
static void backtrace_test_irq_callback(unsigned long data) { dump_stack(); complete(&backtrace_work); }

Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum1157.89%150.00%
Arjan van de Ven842.11%150.00%
Total19100.00%2100.00%

static DECLARE_TASKLET(backtrace_tasklet, &backtrace_test_irq_callback, 0);
static void backtrace_test_irq(void) { pr_info("Testing a backtrace from irq context.\n"); pr_info("The following trace is a kernel self test and not a bug!\n"); init_completion(&backtrace_work); tasklet_schedule(&backtrace_tasklet); wait_for_completion(&backtrace_work); }

Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum2466.67%133.33%
Arjan van de Ven1027.78%133.33%
Fabian Frederick25.56%133.33%
Total36100.00%3100.00%

#ifdef CONFIG_STACKTRACE
static void backtrace_test_saved(void) { struct stack_trace trace; unsigned long entries[8]; pr_info("Testing a saved backtrace.\n"); pr_info("The following trace is a kernel self test and not a bug!\n"); trace.nr_entries = 0; trace.max_entries = ARRAY_SIZE(entries); trace.entries = entries; trace.skip = 0; save_stack_trace(&trace); print_stack_trace(&trace, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum6897.14%150.00%
Fabian Frederick22.86%150.00%
Total70100.00%2100.00%

#else
static void backtrace_test_saved(void) { pr_info("Saved backtrace test skipped.\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum1292.31%150.00%
Fabian Frederick17.69%150.00%
Total13100.00%2100.00%

#endif
static int backtrace_regression_test(void) { pr_info("====[ backtrace testing ]===========\n"); backtrace_test_normal(); backtrace_test_irq(); backtrace_test_saved(); pr_info("====[ end of backtrace testing ]====\n"); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Arjan van de Ven2273.33%125.00%
Vegard Nossum620.00%250.00%
Fabian Frederick26.67%125.00%
Total30100.00%4100.00%


static void exitf(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Arjan van de Ven7100.00%1100.00%
Total7100.00%1100.00%

module_init(backtrace_regression_test); module_exit(exitf); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Arjan van de Ven <arjan@linux.intel.com>");

Overall Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum17366.80%250.00%
Arjan van de Ven7729.73%125.00%
Fabian Frederick93.47%125.00%
Total259100.00%4100.00%
Directory: kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.