summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/dtrace/systrace.c
diff options
context:
space:
mode:
authorJerry Jelinek <jerry.jelinek@joyent.com>2019-04-12 12:02:04 +0000
committerJerry Jelinek <jerry.jelinek@joyent.com>2019-04-12 12:02:04 +0000
commit5d9c1f58e33b02b709b5e031eec7e3e63d646ef7 (patch)
tree102ca03680a7180c99b84addda71e420ece2f59f /usr/src/uts/common/dtrace/systrace.c
parente4f70ac1007dda1e42e5f5a7f307834cb429824c (diff)
parent78a53e201c2691debc57ede24c524118299ab18c (diff)
downloadillumos-joyent-5d9c1f58e33b02b709b5e031eec7e3e63d646ef7.tar.gz
[illumos-gate merge]
commit 78a53e201c2691debc57ede24c524118299ab18c 10687 Service routine cast changes need smatch fixes commit ef623aa14b0dc34c6b9edb213cbcda88461ecfc3 10680 fasttrap: NULL pointer errors commit 314d13c90091499eb12548353dfa2d2ca0b0b840 10679 dcpc: NULL pointer errors commit f7ecc608dd732e7b1f2760725ded79c8afba20bd 10678 dtrace: NULL pointer errors commit cd717361fac4e95d6ef3d8ce64cbaaeeddf8725c 10677 systrace: NULL pointer errors commit 68deb3360e8e161517e8eda768aa13357247893e 10676 fbt: NULL pointer errors commit fa30bfac67a47bb941ce78809508c530f9853f0a 10675 sdt: NULL pointer issues commit fd826efa0fbcbc82b734a8db80a074204cf11b22 10686 Debug macros causes smatch issues commit 58447f688d5e308373ab16a3b129bc0ba0fbc154 10701 Correct lock ASSERTs in vdev_label_read/write
Diffstat (limited to 'usr/src/uts/common/dtrace/systrace.c')
-rw-r--r--usr/src/uts/common/dtrace/systrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/dtrace/systrace.c b/usr/src/uts/common/dtrace/systrace.c
index 3d36ce9547..5f508915b1 100644
--- a/usr/src/uts/common/dtrace/systrace.c
+++ b/usr/src/uts/common/dtrace/systrace.c
@@ -245,7 +245,7 @@ systrace_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
membar_enter();
if (ddi_create_minor_node(devi, "systrace", S_IFCHR, 0,
- DDI_PSEUDO, NULL) == DDI_FAILURE ||
+ DDI_PSEUDO, 0) == DDI_FAILURE ||
dtrace_register("syscall", &systrace_attr, DTRACE_PRIV_USER, NULL,
&systrace_pops, NULL, &systrace_id) != 0) {
systrace_probe = systrace_stub;