Deleted Added
full compact
cam_cdbparse.3 (108317) cam_cdbparse.3 (119893)
1.\"
2.\" Copyright (c) 1998 Kenneth D. Merry.
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
1.\"
2.\" Copyright (c) 1998 Kenneth D. Merry.
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\" $FreeBSD: head/lib/libcam/cam_cdbparse.3 108317 2002-12-27 12:15:40Z schweikh $
28.\" $FreeBSD: head/lib/libcam/cam_cdbparse.3 119893 2003-09-08 19:57:22Z ru $
29.\"
30.\" This man page borrows heavily from the old scsi(3) man page, which had
31.\" the following copyright:
32.\"
33.\" Copyright (c) 1994 HD Associates (hd@world.std.com)
34.\" All rights reserved.
35.\"
36.\" Redistribution and use in source and binary forms, with or without

--- 162 unchanged lines hidden (view full) ---

199.Tn SCSI
200command in question, this should be set to NULL. If there is data to
201transfer for the command, this buffer must be at least
202.Fa dxfer_len
203long.
204.Pp
205.Fa flags
206are the flags defined in
29.\"
30.\" This man page borrows heavily from the old scsi(3) man page, which had
31.\" the following copyright:
32.\"
33.\" Copyright (c) 1994 HD Associates (hd@world.std.com)
34.\" All rights reserved.
35.\"
36.\" Redistribution and use in source and binary forms, with or without

--- 162 unchanged lines hidden (view full) ---

199.Tn SCSI
200command in question, this should be set to NULL. If there is data to
201transfer for the command, this buffer must be at least
202.Fa dxfer_len
203long.
204.Pp
205.Fa flags
206are the flags defined in
207.Aq Pa cam/cam_ccb.h :
207.In cam/cam_ccb.h :
208.Bd -literal
209/* Common CCB header */
210/* CAM CCB flags */
211typedef enum {
212 CAM_CDB_POINTER = 0x00000001,/* The CDB field is a pointer */
213 CAM_QUEUE_ENABLE = 0x00000002,/* SIM queue actions are enabled */
214 CAM_CDB_LINKED = 0x00000004,/* CCB contains a linked CDB */
215 CAM_SCATTER_VALID = 0x00000010,/* Scatter/gather list is valid */

--- 333 unchanged lines hidden ---
208.Bd -literal
209/* Common CCB header */
210/* CAM CCB flags */
211typedef enum {
212 CAM_CDB_POINTER = 0x00000001,/* The CDB field is a pointer */
213 CAM_QUEUE_ENABLE = 0x00000002,/* SIM queue actions are enabled */
214 CAM_CDB_LINKED = 0x00000004,/* CCB contains a linked CDB */
215 CAM_SCATTER_VALID = 0x00000010,/* Scatter/gather list is valid */

--- 333 unchanged lines hidden ---