Whamcloud - gitweb
b=18498
[fs/lustre-release.git] / libcfs / libcfs / winnt / winnt-tracefile.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38 #define LUSTRE_TRACEFILE_PRIVATE
39
40 #include <libcfs/libcfs.h>
41 #include "tracefile.h"
42
43 /* percents to share the total debug memory for each type */
44 static unsigned int pages_factor[TCD_TYPE_MAX] = {
45         90,  /* 90% pages for TCD_TYPE_PASSIVE */
46         10   /* 10% pages for TCD_TYPE_DISPATCH */
47 };
48
49 char *trace_console_buffers[NR_CPUS][TCD_TYPE_MAX];
50
51 struct rw_semaphore tracefile_sem;
52
53 int tracefile_init_arch()
54 {
55         int    i;
56         int    j;
57         struct trace_cpu_data *tcd;
58
59         init_rwsem(&tracefile_sem);
60
61         /* initialize trace_data */
62         memset(trace_data, 0, sizeof(trace_data));
63         for (i = 0; i < TCD_TYPE_MAX; i++) {
64                 trace_data[i]=cfs_alloc(sizeof(union trace_data_union)*NR_CPUS,
65                                                           GFP_KERNEL);
66                 if (trace_data[i] == NULL)
67                         goto out;
68         }
69
70         /* arch related info initialized */
71         tcd_for_each(tcd, i, j) {
72                 tcd->tcd_pages_factor = (USHORT) pages_factor[i];
73                 tcd->tcd_type = (USHORT) i;
74                 tcd->tcd_cpu = (USHORT)j;
75         }
76
77         for (i = 0; i < num_possible_cpus(); i++)
78                 for (j = 0; j < TCD_TYPE_MAX; j++) {
79                         trace_console_buffers[i][j] =
80                                 cfs_alloc(TRACE_CONSOLE_BUFFER_SIZE,
81                                           GFP_KERNEL);
82
83                         if (trace_console_buffers[i][j] == NULL)
84                                 goto out;
85                 }
86
87         return 0;
88
89 out:
90         tracefile_fini_arch();
91         printk(KERN_ERR "lnet: No enough memory\n");
92         return -ENOMEM;
93
94 }
95
96 void tracefile_fini_arch()
97 {
98         int    i;
99         int    j;
100
101         for (i = 0; i < num_possible_cpus(); i++) {
102                 for (j = 0; j < TCD_TYPE_MAX; j++) {
103                         if (trace_console_buffers[i][j] != NULL) {
104                                 cfs_free(trace_console_buffers[i][j]);
105                                 trace_console_buffers[i][j] = NULL;
106                         }
107                 }
108         }
109
110         for (i = 0; trace_data[i] != NULL; i++) {
111                 cfs_free(trace_data[i]);
112                 trace_data[i] = NULL;
113         }
114
115         fini_rwsem(&tracefile_sem);
116 }
117
118 void tracefile_read_lock()
119 {
120         down_read(&tracefile_sem);
121 }
122
123 void tracefile_read_unlock()
124 {
125         up_read(&tracefile_sem);
126 }
127
128 void tracefile_write_lock()
129 {
130         down_write(&tracefile_sem);
131 }
132
133 void tracefile_write_unlock()
134 {
135         up_write(&tracefile_sem);
136 }
137
138 trace_buf_type_t
139 trace_buf_idx_get()
140 {
141         if (KeGetCurrentIrql() >= DISPATCH_LEVEL)
142                 return TCD_TYPE_DISPATCH;
143         else
144                 return TCD_TYPE_PASSIVE;
145 }
146
147 int trace_lock_tcd(struct trace_cpu_data *tcd)
148 {
149         __LASSERT(tcd->tcd_type < TCD_TYPE_MAX);
150         return 1;
151 }
152
153 void trace_unlock_tcd(struct trace_cpu_data *tcd)
154 {
155         __LASSERT(tcd->tcd_type < TCD_TYPE_MAX);
156 }
157
158 int tcd_owns_tage(struct trace_cpu_data *tcd, struct trace_page *tage)
159 {
160         /*
161          * XXX nikita: do NOT call portals_debug_msg() (CDEBUG/ENTRY/EXIT)
162          * from here: this will lead to infinite recursion.
163          */
164         return tcd->tcd_cpu == tage->cpu;
165 }
166
167 void
168 set_ptldebug_header(struct ptldebug_header *header, int subsys, int mask,
169                     const int line, unsigned long stack)
170 {
171         struct timeval tv;
172
173         do_gettimeofday(&tv);
174
175         header->ph_subsys = subsys;
176         header->ph_mask = mask;
177         header->ph_cpu_id = smp_processor_id();
178         header->ph_sec = (__u32)tv.tv_sec;
179         header->ph_usec = tv.tv_usec;
180         header->ph_stack = stack;
181         header->ph_pid = (__u32)(ULONG_PTR)current->pid;
182         header->ph_line_num = line;
183         header->ph_extern_pid = 0;
184         return;
185 }
186
187 void print_to_console(struct ptldebug_header *hdr, int mask, const char *buf,
188                              int len, const char *file, const char *fn)
189 {
190         char *prefix = "Lustre", *ptype = NULL;
191
192         if ((mask & D_EMERG) != 0) {
193                 prefix = "LustreError";
194                 ptype = KERN_EMERG;
195         } else if ((mask & D_ERROR) != 0) {
196                 prefix = "LustreError";
197                 ptype = KERN_ERR;
198         } else if ((mask & D_WARNING) != 0) {
199                 prefix = "Lustre";
200                 ptype = KERN_WARNING;
201         } else if ((mask & (D_CONSOLE | libcfs_printk)) != 0) {
202                 prefix = "Lustre";
203                 ptype = KERN_INFO;
204         }
205
206         if ((mask & D_CONSOLE) != 0) {
207                 printk("%s%s: %.*s", ptype, prefix, len, buf);
208         } else {
209                 printk("%s%s: %d:%d:(%s:%d:%s()) %.*s", ptype, prefix, hdr->ph_pid,
210                        hdr->ph_extern_pid, file, hdr->ph_line_num, fn, len, buf);
211         }
212         return;
213 }
214
215 int trace_max_debug_mb(void)
216 {
217         int  total_mb = (num_physpages >> (20 - CFS_PAGE_SHIFT));
218         
219         return MAX(512, (total_mb * 80)/100);
220 }