diff options
author | Matt Jacob <mjacob@FreeBSD.org> | 2011-08-12 20:09:38 +0000 |
---|---|---|
committer | Matt Jacob <mjacob@FreeBSD.org> | 2011-08-12 20:09:38 +0000 |
commit | 15975b7bc274304696c3eff67aa9ecb32f580174 (patch) | |
tree | c0594ec3c48dc3903a1950befb6584a14a900a2c /sys/cam/cam_xpt.h | |
parent | de46193396f5a04796af77ccb5379678271034c0 (diff) | |
download | src-15975b7bc274304696c3eff67aa9ecb32f580174.tar.gz src-15975b7bc274304696c3eff67aa9ecb32f580174.zip |
Notes
Diffstat (limited to 'sys/cam/cam_xpt.h')
-rw-r--r-- | sys/cam/cam_xpt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/cam/cam_xpt.h b/sys/cam/cam_xpt.h index f7d9b428cb70..1d0e7f7d2381 100644 --- a/sys/cam/cam_xpt.h +++ b/sys/cam/cam_xpt.h @@ -106,6 +106,9 @@ cam_status xpt_create_path_unlocked(struct cam_path **new_path_ptr, int xpt_getattr(char *buf, size_t len, const char *attr, struct cam_path *path); void xpt_free_path(struct cam_path *path); +void xpt_path_counts(struct cam_path *path, uint32_t *bus_ref, + uint32_t *periph_ref, uint32_t *target_ref, + uint32_t *device_ref); int xpt_path_comp(struct cam_path *path1, struct cam_path *path2); void xpt_print_path(struct cam_path *path); @@ -138,4 +141,3 @@ void xpt_release_path(struct cam_path *path); #endif /* _KERNEL */ #endif /* _CAM_CAM_XPT_H */ - |