History log of /netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/dt_module.c
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1.19 01-Apr-2024 riastradh

elftoolchain: Be consistent about which ELF header files we use.

1. For tools that use elftoolchain: always use elftoolchain's
elfdefinitions.h. Don't even think about looking at the host's
sys/exec_elf.h, which makes no sense and should never happen.

(ELF tools that don't use elftoolchain, like m68k-elf2coff,
continue to use nbincludes/sys/exec_elf.h. But no more nbincludes
hacks in elftoolchain.)

2. For kernel components (solaris, zfs, dtrace): always use
sys/exec_elf.h, even in Solaris components via sys/elf.h.
elfdefinitions.h is not wired up in the kernel build at all.

3. For most userland components that involve libelf: use
elfdefinitions.h via libelf header files (libelf.h, gelf.h).

libdtrace in particular requires _all_ R_* reloc type definitions,
but sys/exec_elf.h brings in only the _current machine's_ R_*
reloc type definitions. (While here: Use uintptr_t instead of
Elf_Addr for pointer-to-integer cast, since Elf_Addr is MD and
provided only by sys/exec_elf.h, not by elfdefinitions.h.)

And most userland components using libelf don't rely on any
properties of the current machine from sys/exec_elf.h, so they can
use libelf's elfdefinition.h.

Exceptions:

- dtrace drti.c relies on link.h -> link_elf.h -> sys/exec_elf.h,
but it also relies on sys/dtrace.h -> sys/elf.h ->
elfdefinitions.h like other userland components using sys/elf.h.

- kdump-ioctl.c uses sys/exec_elf.h directly and sys/dtrace.h ->
sys/elf.h -> elfdefinitions like other userland components using
sys/elf.h.

- t_ptrace_wait.c (via t_ptrace_core_wait.h) uses libelf to parse
core files, but relies on sys/exec_elf.h for struct
netbsd_elfcore_procinfo.

None of these exceptions needs all R_* reloc type definitions, so
as a workaround, we can just suppress libelf's elfdefinitions.h by
defining _SYS_ELFDEFINITIONS_H_ and use sys/exec_elf.h in these
exceptions.

And undo the whole BUILTIN_ELF_HEADERS mistake. This was:

- half bogus workarounds for missing build_install dependencies in
tools/Makefile, which are no longer missing now, and
- half futile attempt to use src/sys/sys/exec_elf.h via nbincludes in
tools involving libelf instead of libelf's elfdefinitions.h, which
collides.

Longer-term, we may wish to unify sys/exec_elf.h and libelf's
elfdefinitions.h, so we don't have to play these games.

But at least now the games are limited to three .c files (one of
which is generated by Makefile.ioctl-c), rather than haphazardly
applied tree-wide by monstrous kludges in widely used .h files with
broken hackarounds to get the tools build lurching to completion.


Revision tags: netbsd-10-0-RELEASE netbsd-10-0-RC6 netbsd-10-0-RC5 netbsd-10-0-RC4 netbsd-10-0-RC3 netbsd-10-0-RC2 netbsd-10-0-RC1 netbsd-10-base cjep_sun2x-base1 cjep_sun2x-base cjep_staticlib_x-base1 cjep_staticlib_x-base phil-wifi-20200421 phil-wifi-20200411 is-mlppp-base phil-wifi-20200406
# 1.18 12-Feb-2020 riastradh

Use /dev/ksyms, not /netbsd, for the running kernel's symbols.


Revision tags: netbsd-9-0-RC2 netbsd-9-0-RC1 phil-wifi-20191119 netbsd-9-base phil-wifi-20190609 pgoyette-compat-20190127 pgoyette-compat-20190118 pgoyette-compat-1226 pgoyette-compat-1126 pgoyette-compat-1020 pgoyette-compat-0930 pgoyette-compat-0906 pgoyette-compat-0728 phil-wifi-base pgoyette-compat-0625
# 1.17 02-Jun-2018 christos

branches: 1.17.2; 1.17.4;
Use a constant to prevent dynamic array allocation which messes up SSP.


# 1.16 28-May-2018 chs

merge a new version of the CDDL dtrace and ZFS code.
this changes the upstream vendor from OpenSolaris to FreeBSD,
and this version is based on FreeBSD svn r315983.

in addition to the 10 years of improvements from upstream,
this version also has these NetBSD-specific enhancements:
- dtrace FBT probes can now be placed in kernel modules.
- ZFS now supports mmap().


Revision tags: netbsd-8-2-RELEASE netbsd-8-1-RELEASE netbsd-8-1-RC1 netbsd-8-0-RELEASE netbsd-8-0-RC2 pgoyette-compat-0521 pgoyette-compat-0502 pgoyette-compat-0422 netbsd-8-0-RC1 pgoyette-compat-0415 pgoyette-compat-0407 pgoyette-compat-0330 pgoyette-compat-0322 pgoyette-compat-0315 pgoyette-compat-base matt-nb8-mediatek-base perseant-stdc-iso10646-base netbsd-8-base prg-localcount2-base3 prg-localcount2-base2 prg-localcount2-base1 prg-localcount2-base pgoyette-localcount-20170426 bouyer-socketcan-base1 pgoyette-localcount-20170320 bouyer-socketcan-base pgoyette-localcount-20170107 pgoyette-localcount-20161104 localcount-20160914 pgoyette-localcount-20160806
# 1.15 03-Aug-2016 christos

branches: 1.15.12;
machdep.booted_kernel is not an absolute path, make it so. Now u_int is
found but its parent is not :-)


Revision tags: pgoyette-localcount-20160726 pgoyette-localcount-base
# 1.14 30-Jun-2016 pgoyette

branches: 1.14.2;
Add missing dp_proc_unlock() in error path.

From PR kern/51285 (Henning Petersen)

XXX Pullup to 7 and 7-0


# 1.13 28-Apr-2016 christos

Introduce dt_bootfile() and use it to avoid hard-coded kernel values. Fixes
dtrace hang for kernels not named netbsd.


# 1.12 06-Oct-2015 riz

Make this build for me.


# 1.11 05-Oct-2015 christos

load the kernel for NetBSD (for now)


# 1.10 04-Oct-2015 christos

put back module filename finding code.


# 1.9 24-Sep-2015 christos

sync with FreeBSD


# 1.8 07-Feb-2015 christos

check and fix printf formats, negative array indices, uninitialized variables,
shadowed variables.


Revision tags: netbsd-7-2-RELEASE netbsd-7-1-2-RELEASE netbsd-7-1-1-RELEASE netbsd-7-1-RELEASE netbsd-7-1-RC2 netbsd-7-nhusb-base-20170116 netbsd-7-1-RC1 netbsd-7-0-2-RELEASE netbsd-7-nhusb-base netbsd-7-0-1-RELEASE netbsd-7-0-RELEASE netbsd-7-0-RC3 netbsd-7-0-RC2 netbsd-7-0-RC1 netbsd-6-0-6-RELEASE netbsd-6-1-5-RELEASE netbsd-7-base yamt-pagecache-base9 netbsd-6-1-4-RELEASE netbsd-6-0-5-RELEASE tls-earlyentropy-base riastradh-xf86-video-intel-2-7-1-pre-2-21-15 riastradh-drm2-base3 netbsd-6-1-3-RELEASE netbsd-6-0-4-RELEASE netbsd-6-1-2-RELEASE netbsd-6-0-3-RELEASE netbsd-6-1-1-RELEASE riastradh-drm2-base2 riastradh-drm2-base1 riastradh-drm2-base netbsd-6-0-2-RELEASE netbsd-6-1-RELEASE netbsd-6-1-RC4 netbsd-6-1-RC3 agc-symver-base netbsd-6-1-RC2 netbsd-6-1-RC1 yamt-pagecache-base8 netbsd-6-0-1-RELEASE yamt-pagecache-base7 matt-nb6-plus-nbase yamt-pagecache-base6 netbsd-6-0-RELEASE netbsd-6-0-RC2 tls-maxphys-base matt-nb6-plus-base netbsd-6-0-RC1 yamt-pagecache-base5 yamt-pagecache-base4 netbsd-6-base
# 1.7 13-Feb-2012 wiz

Use the correct path in dt_module.c.
From clang via Henning Petersen in PR 46009.


Revision tags: yamt-pagecache-base3 yamt-pagecache-base2 yamt-pagecache-base
# 1.6 26-Jul-2011 yamt

branches: 1.6.2;
remove a debug printf


Revision tags: cherry-xenmp-base bouyer-quota2-nbase bouyer-quota2-base matt-mips64-premerge-20101231
# 1.5 01-Mar-2010 darran

DTrace: fix a few problems introduced by the recent ZFS update (expected
problems from the OpenSolaris merge).


# 1.4 27-Feb-2010 haad

Merge NetBSD local changes to new zfs version 22 sources.


# 1.3 21-Feb-2010 darran

Apply NetBSD changes to DTrace.

Ok with core@.


Revision tags: darran-pre-netbsd
# 1.2 21-Feb-2010 darran

Add the FreeBSD 8-RC1 changes for DTrace.

Ok with core@.


# 1.1 20-Feb-2010 darran

branches: 1.1.1;
Initial revision


# 1.18 12-Feb-2020 riastradh

Use /dev/ksyms, not /netbsd, for the running kernel's symbols.


Revision tags: netbsd-9-0-RC2 netbsd-9-0-RC1 phil-wifi-20191119 netbsd-9-base phil-wifi-20190609 pgoyette-compat-20190127 pgoyette-compat-20190118 pgoyette-compat-1226 pgoyette-compat-1126 pgoyette-compat-1020 pgoyette-compat-0930 pgoyette-compat-0906 pgoyette-compat-0728 phil-wifi-base pgoyette-compat-0625
# 1.17 02-Jun-2018 christos

Use a constant to prevent dynamic array allocation which messes up SSP.


# 1.16 28-May-2018 chs

merge a new version of the CDDL dtrace and ZFS code.
this changes the upstream vendor from OpenSolaris to FreeBSD,
and this version is based on FreeBSD svn r315983.

in addition to the 10 years of improvements from upstream,
this version also has these NetBSD-specific enhancements:
- dtrace FBT probes can now be placed in kernel modules.
- ZFS now supports mmap().


Revision tags: netbsd-8-1-RELEASE netbsd-8-1-RC1 netbsd-8-0-RELEASE netbsd-8-0-RC2 pgoyette-compat-0521 pgoyette-compat-0502 pgoyette-compat-0422 netbsd-8-0-RC1 pgoyette-compat-0415 pgoyette-compat-0407 pgoyette-compat-0330 pgoyette-compat-0322 pgoyette-compat-0315 pgoyette-compat-base matt-nb8-mediatek-base perseant-stdc-iso10646-base netbsd-8-base prg-localcount2-base3 prg-localcount2-base2 prg-localcount2-base1 prg-localcount2-base pgoyette-localcount-20170426 bouyer-socketcan-base1 pgoyette-localcount-20170320 bouyer-socketcan-base pgoyette-localcount-20170107 pgoyette-localcount-20161104 localcount-20160914 pgoyette-localcount-20160806
# 1.15 03-Aug-2016 christos

branches: 1.15.12;
machdep.booted_kernel is not an absolute path, make it so. Now u_int is
found but its parent is not :-)


Revision tags: pgoyette-localcount-20160726 pgoyette-localcount-base
# 1.14 30-Jun-2016 pgoyette

branches: 1.14.2;
Add missing dp_proc_unlock() in error path.

From PR kern/51285 (Henning Petersen)

XXX Pullup to 7 and 7-0


# 1.13 28-Apr-2016 christos

Introduce dt_bootfile() and use it to avoid hard-coded kernel values. Fixes
dtrace hang for kernels not named netbsd.


# 1.12 06-Oct-2015 riz

Make this build for me.


# 1.11 05-Oct-2015 christos

load the kernel for NetBSD (for now)


# 1.10 04-Oct-2015 christos

put back module filename finding code.


# 1.9 24-Sep-2015 christos

sync with FreeBSD


# 1.8 07-Feb-2015 christos

check and fix printf formats, negative array indices, uninitialized variables,
shadowed variables.


Revision tags: netbsd-7-2-RELEASE netbsd-7-1-2-RELEASE netbsd-7-1-1-RELEASE netbsd-7-1-RELEASE netbsd-7-1-RC2 netbsd-7-nhusb-base-20170116 netbsd-7-1-RC1 netbsd-7-0-2-RELEASE netbsd-7-nhusb-base netbsd-7-0-1-RELEASE netbsd-7-0-RELEASE netbsd-7-0-RC3 netbsd-7-0-RC2 netbsd-7-0-RC1 netbsd-6-0-6-RELEASE netbsd-6-1-5-RELEASE netbsd-7-base yamt-pagecache-base9 netbsd-6-1-4-RELEASE netbsd-6-0-5-RELEASE tls-earlyentropy-base riastradh-xf86-video-intel-2-7-1-pre-2-21-15 riastradh-drm2-base3 netbsd-6-1-3-RELEASE netbsd-6-0-4-RELEASE netbsd-6-1-2-RELEASE netbsd-6-0-3-RELEASE netbsd-6-1-1-RELEASE riastradh-drm2-base2 riastradh-drm2-base1 riastradh-drm2-base netbsd-6-0-2-RELEASE netbsd-6-1-RELEASE netbsd-6-1-RC4 netbsd-6-1-RC3 agc-symver-base netbsd-6-1-RC2 netbsd-6-1-RC1 yamt-pagecache-base8 netbsd-6-0-1-RELEASE yamt-pagecache-base7 matt-nb6-plus-nbase yamt-pagecache-base6 netbsd-6-0-RELEASE netbsd-6-0-RC2 tls-maxphys-base matt-nb6-plus-base netbsd-6-0-RC1 yamt-pagecache-base5 yamt-pagecache-base4 netbsd-6-base
# 1.7 13-Feb-2012 wiz

Use the correct path in dt_module.c.
From clang via Henning Petersen in PR 46009.


Revision tags: yamt-pagecache-base3 yamt-pagecache-base2 yamt-pagecache-base
# 1.6 26-Jul-2011 yamt

branches: 1.6.2;
remove a debug printf


Revision tags: cherry-xenmp-base bouyer-quota2-nbase bouyer-quota2-base matt-mips64-premerge-20101231
# 1.5 01-Mar-2010 darran

DTrace: fix a few problems introduced by the recent ZFS update (expected
problems from the OpenSolaris merge).


# 1.4 27-Feb-2010 haad

Merge NetBSD local changes to new zfs version 22 sources.


# 1.3 21-Feb-2010 darran

Apply NetBSD changes to DTrace.

Ok with core@.


Revision tags: darran-pre-netbsd
# 1.2 21-Feb-2010 darran

Add the FreeBSD 8-RC1 changes for DTrace.

Ok with core@.


# 1.1 20-Feb-2010 darran

branches: 1.1.1;
Initial revision


Revision tags: pgoyette-compat-20190127 pgoyette-compat-20190118 pgoyette-compat-1226 pgoyette-compat-1126 pgoyette-compat-1020 pgoyette-compat-0930 pgoyette-compat-0906 pgoyette-compat-0728 phil-wifi-base pgoyette-compat-0625
# 1.17 02-Jun-2018 christos

Use a constant to prevent dynamic array allocation which messes up SSP.


# 1.16 28-May-2018 chs

merge a new version of the CDDL dtrace and ZFS code.
this changes the upstream vendor from OpenSolaris to FreeBSD,
and this version is based on FreeBSD svn r315983.

in addition to the 10 years of improvements from upstream,
this version also has these NetBSD-specific enhancements:
- dtrace FBT probes can now be placed in kernel modules.
- ZFS now supports mmap().


Revision tags: netbsd-8-0-RELEASE netbsd-8-0-RC2 pgoyette-compat-0521 pgoyette-compat-0502 pgoyette-compat-0422 netbsd-8-0-RC1 pgoyette-compat-0415 pgoyette-compat-0407 pgoyette-compat-0330 pgoyette-compat-0322 pgoyette-compat-0315 pgoyette-compat-base matt-nb8-mediatek-base perseant-stdc-iso10646-base netbsd-8-base prg-localcount2-base3 prg-localcount2-base2 prg-localcount2-base1 prg-localcount2-base pgoyette-localcount-20170426 bouyer-socketcan-base1 pgoyette-localcount-20170320 bouyer-socketcan-base pgoyette-localcount-20170107 pgoyette-localcount-20161104 localcount-20160914 pgoyette-localcount-20160806
# 1.15 03-Aug-2016 christos

branches: 1.15.12;
machdep.booted_kernel is not an absolute path, make it so. Now u_int is
found but its parent is not :-)


Revision tags: pgoyette-localcount-20160726 pgoyette-localcount-base
# 1.14 30-Jun-2016 pgoyette

branches: 1.14.2;
Add missing dp_proc_unlock() in error path.

From PR kern/51285 (Henning Petersen)

XXX Pullup to 7 and 7-0


# 1.13 28-Apr-2016 christos

Introduce dt_bootfile() and use it to avoid hard-coded kernel values. Fixes
dtrace hang for kernels not named netbsd.


# 1.12 06-Oct-2015 riz

Make this build for me.


# 1.11 05-Oct-2015 christos

load the kernel for NetBSD (for now)


# 1.10 04-Oct-2015 christos

put back module filename finding code.


# 1.9 24-Sep-2015 christos

sync with FreeBSD


# 1.8 07-Feb-2015 christos

check and fix printf formats, negative array indices, uninitialized variables,
shadowed variables.


Revision tags: netbsd-7-2-RELEASE netbsd-7-1-2-RELEASE netbsd-7-1-1-RELEASE netbsd-7-1-RELEASE netbsd-7-1-RC2 netbsd-7-nhusb-base-20170116 netbsd-7-1-RC1 netbsd-7-0-2-RELEASE netbsd-7-nhusb-base netbsd-7-0-1-RELEASE netbsd-7-0-RELEASE netbsd-7-0-RC3 netbsd-7-0-RC2 netbsd-7-0-RC1 netbsd-6-0-6-RELEASE netbsd-6-1-5-RELEASE netbsd-7-base yamt-pagecache-base9 netbsd-6-1-4-RELEASE netbsd-6-0-5-RELEASE tls-earlyentropy-base riastradh-xf86-video-intel-2-7-1-pre-2-21-15 riastradh-drm2-base3 netbsd-6-1-3-RELEASE netbsd-6-0-4-RELEASE netbsd-6-1-2-RELEASE netbsd-6-0-3-RELEASE netbsd-6-1-1-RELEASE riastradh-drm2-base2 riastradh-drm2-base1 riastradh-drm2-base netbsd-6-0-2-RELEASE netbsd-6-1-RELEASE netbsd-6-1-RC4 netbsd-6-1-RC3 agc-symver-base netbsd-6-1-RC2 netbsd-6-1-RC1 yamt-pagecache-base8 netbsd-6-0-1-RELEASE yamt-pagecache-base7 matt-nb6-plus-nbase yamt-pagecache-base6 netbsd-6-0-RELEASE netbsd-6-0-RC2 tls-maxphys-base matt-nb6-plus-base netbsd-6-0-RC1 yamt-pagecache-base5 yamt-pagecache-base4 netbsd-6-base
# 1.7 13-Feb-2012 wiz

Use the correct path in dt_module.c.
From clang via Henning Petersen in PR 46009.


Revision tags: yamt-pagecache-base3 yamt-pagecache-base2 yamt-pagecache-base
# 1.6 26-Jul-2011 yamt

branches: 1.6.2;
remove a debug printf


Revision tags: cherry-xenmp-base bouyer-quota2-nbase bouyer-quota2-base matt-mips64-premerge-20101231
# 1.5 01-Mar-2010 darran

DTrace: fix a few problems introduced by the recent ZFS update (expected
problems from the OpenSolaris merge).


# 1.4 27-Feb-2010 haad

Merge NetBSD local changes to new zfs version 22 sources.


# 1.3 21-Feb-2010 darran

Apply NetBSD changes to DTrace.

Ok with core@.


Revision tags: darran-pre-netbsd
# 1.2 21-Feb-2010 darran

Add the FreeBSD 8-RC1 changes for DTrace.

Ok with core@.


# 1.1 20-Feb-2010 darran

branches: 1.1.1;
Initial revision


Revision tags: pgoyette-localcount-20161104 localcount-20160914 pgoyette-localcount-20160806
# 1.15 03-Aug-2016 christos

machdep.booted_kernel is not an absolute path, make it so. Now u_int is
found but its parent is not :-)


Revision tags: pgoyette-localcount-20160726 pgoyette-localcount-base
# 1.14 30-Jun-2016 pgoyette

branches: 1.14.2;
Add missing dp_proc_unlock() in error path.

From PR kern/51285 (Henning Petersen)

XXX Pullup to 7 and 7-0


# 1.13 28-Apr-2016 christos

Introduce dt_bootfile() and use it to avoid hard-coded kernel values. Fixes
dtrace hang for kernels not named netbsd.


# 1.12 06-Oct-2015 riz

Make this build for me.


# 1.11 05-Oct-2015 christos

load the kernel for NetBSD (for now)


# 1.10 04-Oct-2015 christos

put back module filename finding code.


# 1.9 24-Sep-2015 christos

sync with FreeBSD


# 1.8 07-Feb-2015 christos

check and fix printf formats, negative array indices, uninitialized variables,
shadowed variables.


Revision tags: netbsd-7-0-2-RELEASE netbsd-7-nhusb-base netbsd-7-0-1-RELEASE netbsd-7-0-RELEASE netbsd-7-0-RC3 netbsd-7-0-RC2 netbsd-7-0-RC1 netbsd-6-0-6-RELEASE netbsd-6-1-5-RELEASE netbsd-7-base yamt-pagecache-base9 netbsd-6-1-4-RELEASE netbsd-6-0-5-RELEASE tls-earlyentropy-base riastradh-xf86-video-intel-2-7-1-pre-2-21-15 riastradh-drm2-base3 netbsd-6-1-3-RELEASE netbsd-6-0-4-RELEASE netbsd-6-1-2-RELEASE netbsd-6-0-3-RELEASE netbsd-6-1-1-RELEASE riastradh-drm2-base2 riastradh-drm2-base1 riastradh-drm2-base netbsd-6-0-2-RELEASE netbsd-6-1-RELEASE netbsd-6-1-RC4 netbsd-6-1-RC3 agc-symver-base netbsd-6-1-RC2 netbsd-6-1-RC1 yamt-pagecache-base8 netbsd-6-0-1-RELEASE yamt-pagecache-base7 matt-nb6-plus-nbase yamt-pagecache-base6 netbsd-6-0-RELEASE netbsd-6-0-RC2 tls-maxphys-base matt-nb6-plus-base netbsd-6-0-RC1 yamt-pagecache-base5 yamt-pagecache-base4 netbsd-6-base
# 1.7 13-Feb-2012 wiz

Use the correct path in dt_module.c.
From clang via Henning Petersen in PR 46009.


Revision tags: yamt-pagecache-base3 yamt-pagecache-base2 yamt-pagecache-base
# 1.6 26-Jul-2011 yamt

branches: 1.6.2;
remove a debug printf


Revision tags: cherry-xenmp-base bouyer-quota2-nbase bouyer-quota2-base matt-mips64-premerge-20101231
# 1.5 01-Mar-2010 darran

DTrace: fix a few problems introduced by the recent ZFS update (expected
problems from the OpenSolaris merge).


# 1.4 27-Feb-2010 haad

Merge NetBSD local changes to new zfs version 22 sources.


# 1.3 21-Feb-2010 darran

Apply NetBSD changes to DTrace.

Ok with core@.


Revision tags: darran-pre-netbsd
# 1.2 21-Feb-2010 darran

Add the FreeBSD 8-RC1 changes for DTrace.

Ok with core@.


# 1.1 20-Feb-2010 darran

branches: 1.1.1;
Initial revision


# 1.12 05-Oct-2015 riz

Make this build for me.


# 1.11 05-Oct-2015 christos

load the kernel for NetBSD (for now)


# 1.10 04-Oct-2015 christos

put back module filename finding code.


# 1.9 24-Sep-2015 christos

sync with FreeBSD


# 1.8 07-Feb-2015 christos

check and fix printf formats, negative array indices, uninitialized variables,
shadowed variables.


Revision tags: netbsd-7-0-RELEASE netbsd-7-0-RC3 netbsd-7-0-RC2 netbsd-7-0-RC1 netbsd-6-0-6-RELEASE netbsd-6-1-5-RELEASE netbsd-7-base yamt-pagecache-base9 netbsd-6-1-4-RELEASE netbsd-6-0-5-RELEASE tls-earlyentropy-base riastradh-xf86-video-intel-2-7-1-pre-2-21-15 riastradh-drm2-base3 netbsd-6-1-3-RELEASE netbsd-6-0-4-RELEASE netbsd-6-1-2-RELEASE netbsd-6-0-3-RELEASE netbsd-6-1-1-RELEASE riastradh-drm2-base2 riastradh-drm2-base1 riastradh-drm2-base netbsd-6-0-2-RELEASE netbsd-6-1-RELEASE netbsd-6-1-RC4 netbsd-6-1-RC3 agc-symver-base netbsd-6-1-RC2 netbsd-6-1-RC1 yamt-pagecache-base8 netbsd-6-0-1-RELEASE yamt-pagecache-base7 matt-nb6-plus-nbase yamt-pagecache-base6 netbsd-6-0-RELEASE netbsd-6-0-RC2 tls-maxphys-base matt-nb6-plus-base netbsd-6-0-RC1 yamt-pagecache-base5 yamt-pagecache-base4 netbsd-6-base
# 1.7 13-Feb-2012 wiz

Use the correct path in dt_module.c.
From clang via Henning Petersen in PR 46009.


Revision tags: yamt-pagecache-base3 yamt-pagecache-base2 yamt-pagecache-base
# 1.6 26-Jul-2011 yamt

branches: 1.6.2;
remove a debug printf


Revision tags: cherry-xenmp-base bouyer-quota2-nbase bouyer-quota2-base matt-mips64-premerge-20101231
# 1.5 01-Mar-2010 darran

DTrace: fix a few problems introduced by the recent ZFS update (expected
problems from the OpenSolaris merge).


# 1.4 27-Feb-2010 haad

Merge NetBSD local changes to new zfs version 22 sources.


# 1.3 20-Feb-2010 darran

Apply NetBSD changes to DTrace.

Ok with core@.


Revision tags: darran-pre-netbsd
# 1.2 20-Feb-2010 darran

Add the FreeBSD 8-RC1 changes for DTrace.

Ok with core@.


# 1.1 19-Feb-2010 darran

branches: 1.1.1;
Initial revision