1/*
2 * CDDL HEADER START
3 *
4 * This file and its contents are supplied under the terms of the
5 * Common Development and Distribution License ("CDDL"), version 1.0.
6 * You may only use this file in accordance with the terms of version
7 * 1.0 of the CDDL.
8 *
9 * A full copy of the text of the CDDL should have accompanied this
10 * source.  A copy of the CDDL is also available via the Internet at
11 * http://www.illumos.org/license/CDDL.
12 *
13 * CDDL HEADER END
14 */
15
16/*
17 * Copyright (c) 2013 by Delphix. All rights reserved.
18 */
19
20provider zfs {
21	probe probe0(char *probename);
22	probe probe1(char *probename, unsigned long arg1);
23	probe probe2(char *probename, unsigned long arg1, unsigned long arg2);
24	probe probe3(char *probename, unsigned long arg1, unsigned long arg2,
25	    unsigned long arg3);
26	probe probe4(char *probename, unsigned long arg1, unsigned long arg2,
27	    unsigned long arg3, unsigned long arg4);
28
29	probe set__error(int err);
30};
31
32#pragma D attributes Evolving/Evolving/ISA provider zfs provider
33#pragma D attributes Private/Private/Unknown provider zfs module
34#pragma D attributes Private/Private/Unknown provider zfs function
35#pragma D attributes Evolving/Evolving/ISA provider zfs name
36#pragma D attributes Evolving/Evolving/ISA provider zfs args
37