diff options
author | mav <mav@FreeBSD.org> | 2013-09-01 17:37:19 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2013-09-01 17:37:19 +0000 |
commit | 7351998cf8dfb6696100874613c8237166a17c86 (patch) | |
tree | 70e1770181c928438fd3c1e01a6bd11d5027405a /sys/cam/cam_xpt.h | |
parent | f9897c6dd3d2e00bc25d5857c3c6b2be50c7efea (diff) | |
download | FreeBSD-src-7351998cf8dfb6696100874613c8237166a17c86.zip FreeBSD-src-7351998cf8dfb6696100874613c8237166a17c86.tar.gz |
Add debug trace points for freeze/release device queue.
Diffstat (limited to 'sys/cam/cam_xpt.h')
-rw-r--r-- | sys/cam/cam_xpt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/cam/cam_xpt.h b/sys/cam/cam_xpt.h index 492fa3a..97933b9 100644 --- a/sys/cam/cam_xpt.h +++ b/sys/cam/cam_xpt.h @@ -35,6 +35,7 @@ /* Forward Declarations */ union ccb; struct cam_periph; +struct cam_ed; struct cam_sim; /* @@ -89,7 +90,10 @@ void xpt_path_counts(struct cam_path *path, uint32_t *bus_ref, uint32_t *device_ref); int xpt_path_comp(struct cam_path *path1, struct cam_path *path2); +int xpt_path_comp_dev(struct cam_path *path, + struct cam_ed *dev); void xpt_print_path(struct cam_path *path); +void xpt_print_device(struct cam_ed *device); void xpt_print(struct cam_path *path, const char *fmt, ...); int xpt_path_string(struct cam_path *path, char *str, size_t str_len); |