Blame view

lib/dump_stack.c 1.18 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
  /*
   * 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...
7
  #include <linux/export.h>
196779b9b   Tejun Heo   dump_stack: conso...
8
  #include <linux/sched.h>
b58d97743   Alex Thorlton   dump_stack: seria...
9
10
11
12
13
14
15
16
  #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
17

196779b9b   Tejun Heo   dump_stack: conso...
18
19
20
21
22
  /**
   * 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...
23
24
  #ifdef CONFIG_SMP
  static atomic_t dump_lock = ATOMIC_INIT(-1);
722a9f929   Andi Kleen   asmlinkage: Add e...
25
  asmlinkage __visible void dump_stack(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
  {
d7ce36924   Eric Dumazet   dump_stack: avoid...
27
  	unsigned long flags;
b58d97743   Alex Thorlton   dump_stack: seria...
28
29
30
31
32
33
34
35
  	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...
36
  retry:
d7ce36924   Eric Dumazet   dump_stack: avoid...
37
  	local_irq_save(flags);
b58d97743   Alex Thorlton   dump_stack: seria...
38
39
40
41
42
43
44
  	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...
45
  		local_irq_restore(flags);
b58d97743   Alex Thorlton   dump_stack: seria...
46
47
48
49
50
51
52
53
  		cpu_relax();
  		goto retry;
  	}
  
  	__dump_stack();
  
  	if (!was_locked)
  		atomic_set(&dump_lock, -1);
d7ce36924   Eric Dumazet   dump_stack: avoid...
54
  	local_irq_restore(flags);
b58d97743   Alex Thorlton   dump_stack: seria...
55
56
  }
  #else
722a9f929   Andi Kleen   asmlinkage: Add e...
57
  asmlinkage __visible void dump_stack(void)
b58d97743   Alex Thorlton   dump_stack: seria...
58
59
  {
  	__dump_stack();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
  }
b58d97743   Alex Thorlton   dump_stack: seria...
61
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
  EXPORT_SYMBOL(dump_stack);