Deleted Added
full compact
kern_ktr.c (283283) kern_ktr.c (292943)
1/*-
2 * Copyright (c) 2000 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 */
26
27/*
28 * This module holds the global variables used by KTR and the ktr_tracepoint()
29 * function that does the actual tracing.
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2000 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 */
26
27/*
28 * This module holds the global variables used by KTR and the ktr_tracepoint()
29 * function that does the actual tracing.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/kern/kern_ktr.c 283283 2015-05-22 11:09:41Z jhb $");
33__FBSDID("$FreeBSD: head/sys/kern/kern_ktr.c 292943 2015-12-30 13:49:20Z marius $");
34
35#include "opt_ddb.h"
36#include "opt_ktr.h"
37#include "opt_alq.h"
38
39#include <sys/param.h>
40#include <sys/queue.h>
41#include <sys/alq.h>

--- 8 unchanged lines hidden (view full) ---

50#include <sys/mutex.h>
51#include <sys/proc.h>
52#include <sys/smp.h>
53#include <sys/sysctl.h>
54#include <sys/systm.h>
55#include <sys/time.h>
56
57#include <machine/cpu.h>
34
35#include "opt_ddb.h"
36#include "opt_ktr.h"
37#include "opt_alq.h"
38
39#include <sys/param.h>
40#include <sys/queue.h>
41#include <sys/alq.h>

--- 8 unchanged lines hidden (view full) ---

50#include <sys/mutex.h>
51#include <sys/proc.h>
52#include <sys/smp.h>
53#include <sys/sysctl.h>
54#include <sys/systm.h>
55#include <sys/time.h>
56
57#include <machine/cpu.h>
58#ifdef __sparc64__
59#include <machine/ktr.h>
60#endif
61
62#ifdef DDB
63#include <ddb/ddb.h>
64#include <ddb/db_output.h>
65#endif
66
67#ifndef KTR_BOOT_ENTRIES
68#define KTR_BOOT_ENTRIES 1024

--- 409 unchanged lines hidden ---
58
59#ifdef DDB
60#include <ddb/ddb.h>
61#include <ddb/db_output.h>
62#endif
63
64#ifndef KTR_BOOT_ENTRIES
65#define KTR_BOOT_ENTRIES 1024

--- 409 unchanged lines hidden ---