2025-01-04 11:04:27 +11:00
|
|
|
// SPDX-License-Identifier: CDDL-1.0
|
2010-08-26 11:50:56 -07:00
|
|
|
/*
|
|
|
|
|
* CDDL HEADER START
|
|
|
|
|
*
|
|
|
|
|
* The contents of this file are subject to the terms of the
|
2014-06-13 10:54:48 -07:00
|
|
|
* Common Development and Distribution License (the "License").
|
|
|
|
|
* You may not use this file except in compliance with the License.
|
2010-08-26 11:50:56 -07:00
|
|
|
*
|
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
2022-07-11 23:16:13 +02:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2010-08-26 11:50:56 -07:00
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
|
* and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
|
*
|
|
|
|
|
* CDDL HEADER END
|
|
|
|
|
*/
|
2019-07-08 12:20:53 -06:00
|
|
|
|
2019-09-11 14:25:53 -07:00
|
|
|
#ifndef _OS_LINUX_ZFS_TRACE_H
|
|
|
|
|
#define _OS_LINUX_ZFS_TRACE_H
|
2010-08-26 11:50:56 -07:00
|
|
|
|
2015-01-12 19:52:19 -08:00
|
|
|
#include <sys/multilist.h>
|
2014-06-13 10:54:48 -07:00
|
|
|
#include <sys/arc_impl.h>
|
|
|
|
|
#include <sys/vdev_impl.h>
|
|
|
|
|
#include <sys/zio.h>
|
|
|
|
|
#include <sys/dbuf.h>
|
|
|
|
|
#include <sys/dmu_objset.h>
|
|
|
|
|
#include <sys/dsl_dataset.h>
|
|
|
|
|
#include <sys/dmu_tx.h>
|
|
|
|
|
#include <sys/dnode.h>
|
|
|
|
|
#include <sys/zfs_znode.h>
|
|
|
|
|
#include <sys/zil_impl.h>
|
|
|
|
|
#include <sys/zrlock.h>
|
2010-08-26 11:50:56 -07:00
|
|
|
|
2014-06-13 10:54:48 -07:00
|
|
|
#include <sys/trace.h>
|
2014-12-12 18:07:39 -08:00
|
|
|
#include <sys/trace_acl.h>
|
|
|
|
|
#include <sys/trace_arc.h>
|
2019-10-30 11:02:41 -07:00
|
|
|
#include <sys/trace_dbgmsg.h>
|
2014-12-12 18:07:39 -08:00
|
|
|
#include <sys/trace_dbuf.h>
|
|
|
|
|
#include <sys/trace_dmu.h>
|
|
|
|
|
#include <sys/trace_dnode.h>
|
2015-01-12 19:52:19 -08:00
|
|
|
#include <sys/trace_multilist.h>
|
2019-07-08 12:20:53 -06:00
|
|
|
#include <sys/trace_rrwlock.h>
|
2014-12-12 18:07:39 -08:00
|
|
|
#include <sys/trace_txg.h>
|
2016-09-22 09:30:13 -07:00
|
|
|
#include <sys/trace_vdev.h>
|
2014-12-12 18:07:39 -08:00
|
|
|
#include <sys/trace_zil.h>
|
2016-05-23 10:41:29 -07:00
|
|
|
#include <sys/trace_zio.h>
|
2014-12-12 18:07:39 -08:00
|
|
|
#include <sys/trace_zrlock.h>
|
2019-09-11 14:25:53 -07:00
|
|
|
|
|
|
|
|
#endif
|