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#ifndef __LIBCFS_TRACEFILE_H__
34#define __LIBCFS_TRACEFILE_H__
35
36#include "../../include/linux/libcfs/libcfs.h"
37
38enum cfs_trace_buf_type {
39 CFS_TCD_TYPE_PROC = 0,
40 CFS_TCD_TYPE_SOFTIRQ,
41 CFS_TCD_TYPE_IRQ,
42 CFS_TCD_TYPE_MAX
43};
44
45
46
47#define TRACEFILE_NAME_SIZE 1024
48extern char cfs_tracefile[TRACEFILE_NAME_SIZE];
49extern long long cfs_tracefile_size;
50
51void libcfs_run_debug_log_upcall(char *file);
52
53int cfs_tracefile_init_arch(void);
54void cfs_tracefile_fini_arch(void);
55
56void cfs_tracefile_read_lock(void);
57void cfs_tracefile_read_unlock(void);
58void cfs_tracefile_write_lock(void);
59void cfs_tracefile_write_unlock(void);
60
61int cfs_tracefile_dump_all_pages(char *filename);
62void cfs_trace_debug_print(void);
63void cfs_trace_flush_pages(void);
64int cfs_trace_start_thread(void);
65void cfs_trace_stop_thread(void);
66int cfs_tracefile_init(int max_pages);
67void cfs_tracefile_exit(void);
68
69int cfs_trace_copyin_string(char *knl_buffer, int knl_buffer_nob,
70 const char __user *usr_buffer, int usr_buffer_nob);
71int cfs_trace_copyout_string(char __user *usr_buffer, int usr_buffer_nob,
72 const char *knl_str, char *append);
73int cfs_trace_allocate_string_buffer(char **str, int nob);
74int cfs_trace_dump_debug_buffer_usrstr(void __user *usr_str, int usr_str_nob);
75int cfs_trace_daemon_command(char *str);
76int cfs_trace_daemon_command_usrstr(void __user *usr_str, int usr_str_nob);
77int cfs_trace_set_debug_mb(int mb);
78int cfs_trace_get_debug_mb(void);
79
80void libcfs_debug_dumplog_internal(void *arg);
81void libcfs_register_panic_notifier(void);
82void libcfs_unregister_panic_notifier(void);
83extern int libcfs_panic_in_progress;
84int cfs_trace_max_debug_mb(void);
85
86#define TCD_MAX_PAGES (5 << (20 - PAGE_SHIFT))
87#define TCD_STOCK_PAGES (TCD_MAX_PAGES)
88#define CFS_TRACEFILE_SIZE (500 << 20)
89
90#ifdef LUSTRE_TRACEFILE_PRIVATE
91
92
93
94
95#define TCD_MAX_PAGES (5 << (20 - PAGE_SHIFT))
96#define TCD_STOCK_PAGES (TCD_MAX_PAGES)
97
98#define CFS_TRACEFILE_SIZE (500 << 20)
99
100
101
102
103
104#define CFS_TRACE_CONSOLE_BUFFER_SIZE 1024
105
106union cfs_trace_data_union {
107 struct cfs_trace_cpu_data {
108
109
110
111
112
113
114
115 spinlock_t tcd_lock;
116 unsigned long tcd_lock_flags;
117
118
119
120
121 struct list_head tcd_pages;
122
123 unsigned long tcd_cur_pages;
124
125
126
127
128
129
130
131
132
133
134
135 struct list_head tcd_daemon_pages;
136
137 unsigned long tcd_cur_daemon_pages;
138
139
140
141
142
143
144
145 unsigned long tcd_max_pages;
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169 struct list_head tcd_stock_pages;
170
171 unsigned long tcd_cur_stock_pages;
172
173 unsigned short tcd_shutting_down;
174 unsigned short tcd_cpu;
175 unsigned short tcd_type;
176
177 unsigned short tcd_pages_factor;
178 } tcd;
179 char __pad[L1_CACHE_ALIGN(sizeof(struct cfs_trace_cpu_data))];
180};
181
182#define TCD_MAX_TYPES 8
183extern union cfs_trace_data_union (*cfs_trace_data[TCD_MAX_TYPES])[NR_CPUS];
184
185#define cfs_tcd_for_each(tcd, i, j) \
186 for (i = 0; cfs_trace_data[i]; i++) \
187 for (j = 0, ((tcd) = &(*cfs_trace_data[i])[j].tcd); \
188 j < num_possible_cpus(); \
189 j++, (tcd) = &(*cfs_trace_data[i])[j].tcd)
190
191#define cfs_tcd_for_each_type_lock(tcd, i, cpu) \
192 for (i = 0; cfs_trace_data[i] && \
193 (tcd = &(*cfs_trace_data[i])[cpu].tcd) && \
194 cfs_trace_lock_tcd(tcd, 1); cfs_trace_unlock_tcd(tcd, 1), i++)
195
196void cfs_set_ptldebug_header(struct ptldebug_header *header,
197 struct libcfs_debug_msg_data *m,
198 unsigned long stack);
199void cfs_print_to_console(struct ptldebug_header *hdr, int mask,
200 const char *buf, int len, const char *file,
201 const char *fn);
202
203int cfs_trace_lock_tcd(struct cfs_trace_cpu_data *tcd, int walking);
204void cfs_trace_unlock_tcd(struct cfs_trace_cpu_data *tcd, int walking);
205
206extern char *cfs_trace_console_buffers[NR_CPUS][CFS_TCD_TYPE_MAX];
207enum cfs_trace_buf_type cfs_trace_buf_idx_get(void);
208
209static inline char *
210cfs_trace_get_console_buffer(void)
211{
212 unsigned int i = get_cpu();
213 unsigned int j = cfs_trace_buf_idx_get();
214
215 return cfs_trace_console_buffers[i][j];
216}
217
218static inline struct cfs_trace_cpu_data *
219cfs_trace_get_tcd(void)
220{
221 struct cfs_trace_cpu_data *tcd =
222 &(*cfs_trace_data[cfs_trace_buf_idx_get()])[get_cpu()].tcd;
223
224 cfs_trace_lock_tcd(tcd, 0);
225
226 return tcd;
227}
228
229static inline void cfs_trace_put_tcd(struct cfs_trace_cpu_data *tcd)
230{
231 cfs_trace_unlock_tcd(tcd, 0);
232
233 put_cpu();
234}
235
236int cfs_trace_refill_stock(struct cfs_trace_cpu_data *tcd, gfp_t gfp,
237 struct list_head *stock);
238
239void cfs_trace_assertion_failed(const char *str,
240 struct libcfs_debug_msg_data *m);
241
242
243#define __LASSERT(cond) \
244do { \
245 if (unlikely(!(cond))) { \
246 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL); \
247 cfs_trace_assertion_failed("ASSERTION("#cond") failed", \
248 &msgdata); \
249 } \
250} while (0)
251
252#define __LASSERT_TAGE_INVARIANT(tage) \
253do { \
254 __LASSERT(tage); \
255 __LASSERT(tage->page); \
256 __LASSERT(tage->used <= PAGE_SIZE); \
257 __LASSERT(page_count(tage->page) > 0); \
258} while (0)
259
260#endif
261
262#endif
263