4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2012, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 #define DEBUG_SUBSYSTEM S_LNET
38 #define LUSTRE_TRACEFILE_PRIVATE
40 #include <libcfs/libcfs.h>
41 #include "tracefile.h"
43 /* percents to share the total debug memory for each type */
44 static unsigned int pages_factor[CFS_TCD_TYPE_MAX] = {
45 80, /* 80% pages for CFS_TCD_TYPE_PROC */
46 10, /* 10% pages for CFS_TCD_TYPE_SOFTIRQ */
47 10 /* 10% pages for CFS_TCD_TYPE_IRQ */
50 char *cfs_trace_console_buffers[NR_CPUS][CFS_TCD_TYPE_MAX];
52 static DECLARE_RWSEM(cfs_tracefile_sem);
54 int cfs_tracefile_init_arch()
58 struct cfs_trace_cpu_data *tcd;
60 /* initialize trace_data */
61 memset(cfs_trace_data, 0, sizeof(cfs_trace_data));
62 for (i = 0; i < CFS_TCD_TYPE_MAX; i++) {
64 kmalloc(sizeof(union cfs_trace_data_union) *
65 num_possible_cpus(), GFP_KERNEL);
66 if (cfs_trace_data[i] == NULL)
71 /* arch related info initialized */
72 cfs_tcd_for_each(tcd, i, j) {
73 spin_lock_init(&tcd->tcd_lock);
74 tcd->tcd_pages_factor = pages_factor[i];
79 for (i = 0; i < num_possible_cpus(); i++)
80 for (j = 0; j < 3; j++) {
81 cfs_trace_console_buffers[i][j] =
82 kmalloc(CFS_TRACE_CONSOLE_BUFFER_SIZE,
85 if (cfs_trace_console_buffers[i][j] == NULL)
92 cfs_tracefile_fini_arch();
93 printk(KERN_ERR "lnet: Not enough memory\n");
97 void cfs_tracefile_fini_arch()
102 for (i = 0; i < num_possible_cpus(); i++)
103 for (j = 0; j < 3; j++)
104 if (cfs_trace_console_buffers[i][j] != NULL) {
105 kfree(cfs_trace_console_buffers[i][j]);
106 cfs_trace_console_buffers[i][j] = NULL;
109 for (i = 0; cfs_trace_data[i] != NULL; i++) {
110 kfree(cfs_trace_data[i]);
111 cfs_trace_data[i] = NULL;
115 void cfs_tracefile_read_lock()
117 down_read(&cfs_tracefile_sem);
120 void cfs_tracefile_read_unlock()
122 up_read(&cfs_tracefile_sem);
125 void cfs_tracefile_write_lock()
127 down_write(&cfs_tracefile_sem);
130 void cfs_tracefile_write_unlock()
132 up_write(&cfs_tracefile_sem);
135 cfs_trace_buf_type_t cfs_trace_buf_idx_get()
138 return CFS_TCD_TYPE_IRQ;
139 else if (in_softirq())
140 return CFS_TCD_TYPE_SOFTIRQ;
142 return CFS_TCD_TYPE_PROC;
146 * The walking argument indicates the locking comes from all tcd types
147 * iterator and we must lock it and dissable local irqs to avoid deadlocks
148 * with other interrupt locks that might be happening. See LU-1311
151 int cfs_trace_lock_tcd(struct cfs_trace_cpu_data *tcd, int walking)
152 __acquires(&tcd->tcd_lock)
154 __LASSERT(tcd->tcd_type < CFS_TCD_TYPE_MAX);
155 if (tcd->tcd_type == CFS_TCD_TYPE_IRQ)
156 spin_lock_irqsave(&tcd->tcd_lock, tcd->tcd_lock_flags);
157 else if (tcd->tcd_type == CFS_TCD_TYPE_SOFTIRQ)
158 spin_lock_bh(&tcd->tcd_lock);
159 else if (unlikely(walking))
160 spin_lock_irq(&tcd->tcd_lock);
162 spin_lock(&tcd->tcd_lock);
166 void cfs_trace_unlock_tcd(struct cfs_trace_cpu_data *tcd, int walking)
167 __releases(&tcd->tcd_lock)
169 __LASSERT(tcd->tcd_type < CFS_TCD_TYPE_MAX);
170 if (tcd->tcd_type == CFS_TCD_TYPE_IRQ)
171 spin_unlock_irqrestore(&tcd->tcd_lock, tcd->tcd_lock_flags);
172 else if (tcd->tcd_type == CFS_TCD_TYPE_SOFTIRQ)
173 spin_unlock_bh(&tcd->tcd_lock);
174 else if (unlikely(walking))
175 spin_unlock_irq(&tcd->tcd_lock);
177 spin_unlock(&tcd->tcd_lock);
180 int cfs_tcd_owns_tage(struct cfs_trace_cpu_data *tcd,
181 struct cfs_trace_page *tage)
184 * XXX nikita: do NOT call portals_debug_msg() (CDEBUG/ENTRY/EXIT)
185 * from here: this will lead to infinite recursion.
187 return tcd->tcd_cpu == tage->cpu;
191 cfs_set_ptldebug_header(struct ptldebug_header *header,
192 struct libcfs_debug_msg_data *msgdata,
197 do_gettimeofday(&tv);
199 header->ph_subsys = msgdata->msg_subsys;
200 header->ph_mask = msgdata->msg_mask;
201 header->ph_cpu_id = smp_processor_id();
202 header->ph_type = cfs_trace_buf_idx_get();
203 header->ph_sec = (__u32)tv.tv_sec;
204 header->ph_usec = tv.tv_usec;
205 header->ph_stack = stack;
206 header->ph_pid = current->pid;
207 header->ph_line_num = msgdata->msg_line;
208 header->ph_extern_pid = 0;
213 dbghdr_to_err_string(struct ptldebug_header *hdr)
215 switch (hdr->ph_subsys) {
221 return "LustreError";
226 dbghdr_to_info_string(struct ptldebug_header *hdr)
228 switch (hdr->ph_subsys) {
238 void cfs_print_to_console(struct ptldebug_header *hdr, int mask,
239 const char *buf, int len, const char *file,
242 char *prefix = "Lustre", *ptype = NULL;
244 if ((mask & D_EMERG) != 0) {
245 prefix = dbghdr_to_err_string(hdr);
247 } else if ((mask & D_ERROR) != 0) {
248 prefix = dbghdr_to_err_string(hdr);
250 } else if ((mask & D_WARNING) != 0) {
251 prefix = dbghdr_to_info_string(hdr);
252 ptype = KERN_WARNING;
253 } else if ((mask & (D_CONSOLE | libcfs_printk)) != 0) {
254 prefix = dbghdr_to_info_string(hdr);
258 if ((mask & D_CONSOLE) != 0) {
259 printk("%s%s: %.*s", ptype, prefix, len, buf);
261 printk("%s%s: %d:%d:(%s:%d:%s()) %.*s", ptype, prefix,
262 hdr->ph_pid, hdr->ph_extern_pid, file, hdr->ph_line_num,
268 int cfs_trace_max_debug_mb(void)
270 int total_mb = (totalram_pages >> (20 - PAGE_SHIFT));
272 return MAX(512, (total_mb * 80)/100);