/tools/

'>8bc3bcc93a2b ^
196779b9b4ce ^
b17b01533b71 ^
b58d977432c8 ^







1da177e4c3f4
196779b9b4ce ^




b58d977432c8 ^


722a9f9299ca ^
1da177e4c3f4
d7ce36924344 ^
b58d977432c8 ^







b58d977432c8 ^
d7ce36924344 ^
b58d977432c8 ^






d7ce36924344 ^
b58d977432c8 ^








d7ce36924344 ^
b58d977432c8 ^

722a9f9299ca ^
b58d977432c8 ^

1da177e4c3f4
b58d977432c8 ^
1da177e4c3f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
                                   





                                                            
                         
                        
                              







                                            
 




                                                                          


                                            
                                          
 
                            







                                                                          
      
                              






                                                  
                                         








                                           
                                 

     
                                          

                       
 
      
                          
// 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>

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

/**
 * dump_stack - dump the current task information and its stack trace
 *
 * Architectures can override this implementation by implementing its own.