cregit-Linux how code gets into the kernel

Release 4.17 lib/dump_stack.c

Directory: lib
// SPDX-License-Identifier: GPL-2.0
/*
 * Provide a default dump_stack() function for architectures
 * which don't implement their own.
 */

#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/sched.h>
#include <linux/sched/debug.h>
#include <linux/smp.h>
#include <linux/atomic.h>
#include <linux/kexec.h>
#include <linux/utsname.h>


static char dump_stack_arch_desc_str[128];

/**
 * dump_stack_set_arch_desc - set arch-specific str to show with task dumps
 * @fmt: printf-style format string
 * @...: arguments for the format string
 *
 * The configured string will be printed right after utsname during task
 * dumps.  Usually used to add arch-specific system identifiers.  If an
 * arch wants to make use of such an ID string, it should initialize this
 * as soon as possible during boot.
 */

void __init dump_stack_set_arch_desc(const char *fmt, ...) { va_list args; va_start(args, fmt); vsnprintf(dump_stack_arch_desc_str, sizeof(dump_stack_arch_desc_str), fmt, args); va_end(args); }

Contributors

PersonTokensPropCommitsCommitProp
Dave Young42100.00%1100.00%
Total42100.00%1100.00%

/** * dump_stack_print_info - print generic debug info for dump_stack() * @log_lvl: log level * * Arch-specific dump_stack() implementations can use this function to * print out the same debug information as the generic dump_stack(). */
void dump_stack_print_info(const char *log_lvl) { printk("%sCPU: %d PID: %d Comm: %.20s %s%s %s %.*s\n", log_lvl, raw_smp_processor_id(), current->pid, current->comm, kexec_crash_loaded() ? "Kdump: loaded " : "", print_tainted(), init_utsname()->release, (int)strcspn(init_utsname()->version, " "), init_utsname()->version); if (dump_stack_arch_desc_str[0] != '\0') printk("%sHardware name: %s\n", log_lvl, dump_stack_arch_desc_str); print_worker_info(log_lvl, current); }

Contributors

PersonTokensPropCommitsCommitProp
Dave Young86100.00%1100.00%
Total86100.00%1100.00%

/** * show_regs_print_info - print generic debug info for show_regs() * @log_lvl: log level * * show_regs() implementations can use this function to print out generic * debug information. */
void show_regs_print_info(const char *log_lvl) { dump_stack_print_info(log_lvl); }

Contributors

PersonTokensPropCommitsCommitProp
Dave Young15100.00%1100.00%
Total15100.00%1100.00%


static void __dump_stack(void) { dump_stack_print_info(KERN_DEFAULT); show_stack(NULL, NULL); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton945.00%133.33%
Tejun Heo945.00%133.33%
Alex Thorlton210.00%133.33%
Total20100.00%3100.00%

/** * dump_stack - dump the current task information and its stack trace * * Architectures can override this implementation by implementing its own. */ #ifdef CONFIG_SMP static atomic_t dump_lock = ATOMIC_INIT(-1);
asmlinkage __visible void dump_stack(void) { unsigned long flags; int was_locked; int old; int cpu; /* * Permit this cpu to perform nested stack dumps while serialising * against other CPUs */ retry: local_irq_save(flags); cpu = smp_processor_id(); old = atomic_cmpxchg(&dump_lock, -1, cpu); if (old == -1) { was_locked = 0; } else if (old == cpu) { was_locked = 1; } else { local_irq_restore(flags); cpu_relax(); goto retry; } __dump_stack(); if (!was_locked) atomic_set(&dump_lock, -1); local_irq_restore(flags); }

Contributors

PersonTokensPropCommitsCommitProp
Alex Thorlton9081.82%125.00%
Eric Dumazet1816.36%125.00%
Andi Kleen21.82%250.00%
Total110100.00%4100.00%

#else
asmlinkage __visible void dump_stack(void) { __dump_stack(); }

Contributors

PersonTokensPropCommitsCommitProp
Alex Thorlton1083.33%133.33%
Andi Kleen216.67%266.67%
Total12100.00%3100.00%

#endif EXPORT_SYMBOL(dump_stack);

Overall Contributors

PersonTokensPropCommitsCommitProp
Dave Young15946.22%19.09%
Alex Thorlton12636.63%19.09%
Eric Dumazet185.23%19.09%
Andrew Morton154.36%19.09%
Tejun Heo123.49%19.09%
Arnaldo Carvalho de Melo51.45%19.09%
Andi Kleen41.16%218.18%
Ingo Molnar30.87%19.09%
Greg Kroah-Hartman10.29%19.09%
Paul Gortmaker10.29%19.09%
Total344100.00%11100.00%
Directory: lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.