mirror of
https://github.com/opnsense/src.git
synced 2026-05-25 18:54:02 -04:00
stand/common: Add file_addbuf() libsa: Add support for timestamp logging (tslog) stand/common: Add support for timestamp logging (tslog) i386/loader: Call tslog_init efi/loader: Call tslog_init (+ bugfix) stand/common command_boot: Pass tslog to kernel kern_tslog: Include tslog data from loader loader: Use tslog to instrument some functions Add userland boot profiling to TSLOG (+ bugfix) Sponsored by: https://www.patreon.com/cperciva (cherry picked from commit60a978bec9) (cherry picked from commite193d3ba33) (cherry picked from commitc8dfc327db) (cherry picked from commitc4b65e954f) (cherry picked from commitf49381ccb6) (cherry picked from commit537a44bf28) (cherry picked from commitfe51b5a76d) (cherry picked from commit313724bab9) (cherry picked from commit46dd801acb) (cherry picked from commit52e125c2bd) (cherry picked from commit19e4f2f289)
69 lines
2.7 KiB
C
69 lines
2.7 KiB
C
/*-
|
|
* Copyright (c) 2017 Colin Percival
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _TSLOG_H_
|
|
#define _TSLOG_H_
|
|
|
|
#ifdef TSLOG
|
|
#include <sys/_types.h>
|
|
#include <sys/pcpu.h>
|
|
#endif
|
|
|
|
#define TS_ENTER 0
|
|
#define TS_EXIT 1
|
|
#define TS_THREAD 2
|
|
#define TS_EVENT 3
|
|
|
|
#define TSENTER() TSRAW(curthread, TS_ENTER, __func__, NULL)
|
|
#define TSENTER2(x) TSRAW(curthread, TS_ENTER, __func__, x)
|
|
#define TSEXIT() TSRAW(curthread, TS_EXIT, __func__, NULL)
|
|
#define TSEXIT2(x) TSRAW(curthread, TS_EXIT, __func__, x)
|
|
#define TSTHREAD(td, x) TSRAW(td, TS_THREAD, x, NULL)
|
|
#define TSEVENT(x) TSRAW(curthread, TS_EVENT, x, NULL)
|
|
#define TSEVENT2(x, y) TSRAW(curthread, TS_EVENT, x, y)
|
|
#define TSLINE() TSEVENT2(__FILE__, __XSTRING(__LINE__))
|
|
#define TSWAIT(x) TSEVENT2("WAIT", x);
|
|
#define TSUNWAIT(x) TSEVENT2("UNWAIT", x);
|
|
#define TSHOLD(x) TSEVENT2("HOLD", x);
|
|
#define TSRELEASE(x) TSEVENT2("RELEASE", x);
|
|
#define TSFORK(p, pp) TSRAW_USER(p, pp, NULL, NULL)
|
|
#define TSEXEC(p, name) TSRAW_USER(p, (pid_t)(-1), name, NULL)
|
|
#define TSNAMEI(p, name) TSRAW_USER(p, (pid_t)(-1), NULL, name)
|
|
#define TSPROCEXIT(p) TSRAW_USER(p, (pid_t)(-1), NULL, NULL)
|
|
|
|
#ifdef TSLOG
|
|
#define TSRAW(a, b, c, d) tslog(a, b, c, d)
|
|
void tslog(void *, int, const char *, const char *);
|
|
#define TSRAW_USER(a, b, c, d) tslog_user(a, b, c, d)
|
|
void tslog_user(pid_t, pid_t, const char *, const char *);
|
|
#else
|
|
#define TSRAW(a, b, c, d) /* Timestamp logging disabled */
|
|
#define TSRAW_USER(a, b, c, d) /* Timestamp logging disabled */
|
|
#endif
|
|
|
|
#endif /* _TSLOG_H_ */
|