54366c0bd7
option, unbreak the lock tracing release semantic by embedding calls to LOCKSTAT_PROFILE_RELEASE_LOCK() direclty in the inlined version of the releasing functions for mutex, rwlock and sxlock. Failing to do so skips the lockstat_probe_func invokation for unlocking. - As part of the LOCKSTAT support is inlined in mutex operation, for kernel compiled without lock debugging options, potentially every consumer must be compiled including opt_kdtrace.h. Fix this by moving KDTRACE_HOOKS into opt_global.h and remove the dependency by opt_kdtrace.h for all files, as now only KDTRACE_FRAMES is linked there and it is only used as a compile-time stub [0]. [0] immediately shows some new bug as DTRACE-derived support for debug in sfxge is broken and it was never really tested. As it was not including correctly opt_kdtrace.h before it was never enabled so it was kept broken for a while. Fix this by using a protection stub, leaving sfxge driver authors the responsibility for fixing it appropriately [1]. Sponsored by: EMC / Isilon storage division Discussed with: rstone [0] Reported by: rstone [1] Discussed with: philip
29 lines
502 B
Makefile
29 lines
502 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../cam/ctl
|
|
|
|
KMOD= ctl
|
|
|
|
SRCS= ctl.c
|
|
SRCS+= ctl_backend.c
|
|
SRCS+= ctl_backend_block.c
|
|
SRCS+= ctl_backend_ramdisk.c
|
|
SRCS+= ctl_cmd_table.c
|
|
SRCS+= ctl_frontend.c
|
|
SRCS+= ctl_frontend_cam_sim.c
|
|
SRCS+= ctl_frontend_internal.c
|
|
SRCS+= ctl_frontend_iscsi.c
|
|
SRCS+= ctl_mem_pool.c
|
|
SRCS+= ctl_scsi_all.c
|
|
SRCS+= ctl_error.c
|
|
SRCS+= ctl_util.c
|
|
SRCS+= scsi_ctl.c
|
|
SRCS+= bus_if.h
|
|
SRCS+= device_if.h
|
|
SRCS+= vnode_if.h
|
|
SRCS+= opt_cam.h
|
|
|
|
#CFLAGS+=-DICL_KERNEL_PROXY
|
|
|
|
.include <bsd.kmod.mk>
|