in_kdtrace.c (064bee341e6c590dedc1d33eb6025e1f446f33a6) in_kdtrace.c (54366c0bd7d0ea904fb9ab32460c66d57684a7cb)
1/*-
2 * Copyright (c) 2013 Mark Johnston <markj@FreeBSD.org>
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

24 * SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD$");
31
1/*-
2 * Copyright (c) 2013 Mark Johnston <markj@FreeBSD.org>
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

24 * SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD$");
31
32#include "opt_kdtrace.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/sdt.h>
37
38SDT_PROVIDER_DEFINE(ip);
39SDT_PROVIDER_DEFINE(tcp);
40SDT_PROVIDER_DEFINE(udp);
41

--- 86 unchanged lines hidden ---
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/sdt.h>
35
36SDT_PROVIDER_DEFINE(ip);
37SDT_PROVIDER_DEFINE(tcp);
38SDT_PROVIDER_DEFINE(udp);
39

--- 86 unchanged lines hidden ---