Deleted Added
full compact
ctl_io.h (274962) ctl_io.h (275058)
1/*-
2 * Copyright (c) 2003 Silicon Graphics International Corp.
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

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

23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGES.
29 *
30 * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_io.h#5 $
1/*-
2 * Copyright (c) 2003 Silicon Graphics International Corp.
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

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

23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGES.
29 *
30 * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_io.h#5 $
31 * $FreeBSD: head/sys/cam/ctl/ctl_io.h 274962 2014-11-24 11:37:27Z mav $
31 * $FreeBSD: head/sys/cam/ctl/ctl_io.h 275058 2014-11-25 17:53:35Z mav $
32 */
33/*
34 * CAM Target Layer data movement structures/interface.
35 *
36 * Author: Ken Merry <ken@FreeBSD.org>
37 */
38
39#ifndef _CTL_IO_H_

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

119 CTL_FLAG_DMA_QUEUED = 0x00800000, /* DMA queued but not started*/
120 CTL_FLAG_STATUS_QUEUED = 0x01000000, /* Status queued but not sent*/
121
122 CTL_FLAG_REDIR_DONE = 0x02000000, /* Redirection has already
123 been done. */
124 CTL_FLAG_FAILOVER = 0x04000000, /* Killed by a failover */
125 CTL_FLAG_IO_ACTIVE = 0x08000000, /* I/O active on this SC */
126 CTL_FLAG_RDMA_MASK = CTL_FLAG_NO_DATASYNC | CTL_FLAG_BUS_ADDR |
32 */
33/*
34 * CAM Target Layer data movement structures/interface.
35 *
36 * Author: Ken Merry <ken@FreeBSD.org>
37 */
38
39#ifndef _CTL_IO_H_

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

119 CTL_FLAG_DMA_QUEUED = 0x00800000, /* DMA queued but not started*/
120 CTL_FLAG_STATUS_QUEUED = 0x01000000, /* Status queued but not sent*/
121
122 CTL_FLAG_REDIR_DONE = 0x02000000, /* Redirection has already
123 been done. */
124 CTL_FLAG_FAILOVER = 0x04000000, /* Killed by a failover */
125 CTL_FLAG_IO_ACTIVE = 0x08000000, /* I/O active on this SC */
126 CTL_FLAG_RDMA_MASK = CTL_FLAG_NO_DATASYNC | CTL_FLAG_BUS_ADDR |
127 CTL_FLAG_AUTO_MIRROR | CTL_FLAG_REDIR_DONE
127 CTL_FLAG_AUTO_MIRROR | CTL_FLAG_REDIR_DONE,
128 /* Flags we care about for
129 remote DMA */
128 /* Flags we care about for
129 remote DMA */
130 CTL_FLAG_STATUS_SENT = 0x10000000 /* Status sent by datamove */
130} ctl_io_flags;
131
132
133struct ctl_lba_len {
134 uint64_t lba;
135 uint32_t len;
136};
137

--- 388 unchanged lines hidden ---
131} ctl_io_flags;
132
133
134struct ctl_lba_len {
135 uint64_t lba;
136 uint32_t len;
137};
138

--- 388 unchanged lines hidden ---