File: trace.c

package info (click to toggle)
linux 4.9.228-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 814,720 kB
  • sloc: ansic: 14,532,095; asm: 289,032; makefile: 35,316; perl: 27,556; sh: 17,027; python: 13,390; cpp: 6,103; yacc: 4,354; lex: 2,440; awk: 1,212; pascal: 231; lisp: 218; sed: 21
file content (26 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (6)
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
#include <linux/kernel.h>
#include <linux/string.h>

#include "rtsx.h"

#ifdef _MSG_TRACE

void _rtsx_trace(struct rtsx_chip *chip, const char *file, const char *func,
		 int line)
{
	struct trace_msg_t *msg = &chip->trace_msg[chip->msg_idx];

	file = kbasename(file);
	dev_dbg(rtsx_dev(chip), "[%s][%s]:[%d]\n", file, func, line);

	strncpy(msg->file, file, MSG_FILE_LEN - 1);
	strncpy(msg->func, func, MSG_FUNC_LEN - 1);
	msg->line = (u16)line;
	get_current_time(msg->timeval_buf, TIME_VAL_LEN);
	msg->valid = 1;

	chip->msg_idx++;
	if (chip->msg_idx >= TRACE_ITEM_CNT)
		chip->msg_idx = 0;
}
#endif