Blame view

lib/dump_stack.c 1.25 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
  /*
   * Provide a default dump_stack() function for architectures
   * which don't implement their own.
   */
  
  #include <linux/kernel.h>
8bc3bcc93   Paul Gortmaker   lib: reduce the u...
8
  #include <linux/export.h>
196779b9b   Tejun Heo   dump_stack: conso...
9
  #include <linux/sched.h>
b17b01533   Ingo Molnar   sched/headers: Pr...
10
  #include <linux/sched/debug.h>
b58d97743   Alex Thorlton   dump_stack: seria...
11
12
13
14
15
16
17
18
  #include <linux/smp.h>
  #include <linux/atomic.h>
  
  static void __dump_stack(void)
  {
  	dump_stack_print_info(KERN_DEFAULT);
  	show_stack(NULL, NULL);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19

196779b9b   Tejun Heo   dump_stack: conso...
20
21
22
23
24
  /**
   * dump_stack - dump the current task information and its stack trace
   *
   * Architectures can override this implementation by implementing its own.
   */
b58d97743   Alex Thorlton   dump_stack: seria...
25
26
  #ifdef CONFIG_SMP
  static atomic_t dump_lock = ATOMIC_INIT(-1);
722a9f929   Andi Kleen   asmlinkage: Add e...
27
  asmlinkage __visible void dump_stack(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
  {
d7ce36924   Eric Dumazet   dump_stack: avoid...
29
  	unsigned long flags;
b58d97743   Alex Thorlton   dump_stack: seria...
30
31
32
33
34
35
36
37
  	int was_locked;
  	int old;
  	int cpu;
  
  	/*
  	 * Permit this cpu to perform nested stack dumps while serialising
  	 * against other CPUs
  	 */
b58d97743   Alex Thorlton   dump_stack: seria...
38
  retry:
d7ce36924   Eric Dumazet   dump_stack: avoid...
39
  	local_irq_save(flags);
b58d97743   Alex Thorlton   dump_stack: seria...
40
41
42
43
44
45
46
  	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 {
d7ce36924   Eric Dumazet   dump_stack: avoid...
47
  		local_irq_restore(flags);
b58d97743   Alex Thorlton   dump_stack: seria...
48
49
50
51
52
53
54
55
  		cpu_relax();
  		goto retry;
  	}
  
  	__dump_stack();
  
  	if (!was_locked)
  		atomic_set(&dump_lock, -1);
d7ce36924   Eric Dumazet   dump_stack: avoid...
56
  	local_irq_restore(flags);
b58d97743   Alex Thorlton   dump_stack: seria...
57
58
  }
  #else
722a9f929   Andi Kleen   asmlinkage: Add e...
59
  asmlinkage __visible void dump_stack(void)
b58d97743   Alex Thorlton   dump_stack: seria...
60
61
  {
  	__dump_stack();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
  }
b58d97743   Alex Thorlton   dump_stack: seria...
63
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
  EXPORT_SYMBOL(dump_stack);