Deleted Added
full compact
ctld.h (285086) ctld.h (287500)
1/*-
2 * Copyright (c) 2012 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Edward Tomasz Napierala under sponsorship
6 * from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 2012 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Edward Tomasz Napierala under sponsorship
6 * from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/usr.sbin/ctld/ctld.h 285086 2015-07-03 10:08:10Z trasz $
29 * $FreeBSD: head/usr.sbin/ctld/ctld.h 287500 2015-09-06 11:23:01Z mav $
30 */
31
32#ifndef CTLD_H
33#define CTLD_H
34
35#include <sys/queue.h>
36#ifdef ICL_KERNEL_PROXY
37#include <sys/types.h>

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

386void lun_option_delete(struct lun_option *clo);
387struct lun_option *lun_option_find(const struct lun *lun,
388 const char *name);
389void lun_option_set(struct lun_option *clo,
390 const char *value);
391
392void kernel_init(void);
393int kernel_lun_add(struct lun *lun);
30 */
31
32#ifndef CTLD_H
33#define CTLD_H
34
35#include <sys/queue.h>
36#ifdef ICL_KERNEL_PROXY
37#include <sys/types.h>

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

386void lun_option_delete(struct lun_option *clo);
387struct lun_option *lun_option_find(const struct lun *lun,
388 const char *name);
389void lun_option_set(struct lun_option *clo,
390 const char *value);
391
392void kernel_init(void);
393int kernel_lun_add(struct lun *lun);
394int kernel_lun_resize(struct lun *lun);
394int kernel_lun_modify(struct lun *lun);
395int kernel_lun_remove(struct lun *lun);
396void kernel_handoff(struct connection *conn);
397void kernel_limits(const char *offload,
398 size_t *max_data_segment_length);
399int kernel_port_add(struct port *port);
400int kernel_port_update(struct port *port);
401int kernel_port_remove(struct port *port);
402void kernel_capsicate(void);

--- 48 unchanged lines hidden ---
395int kernel_lun_remove(struct lun *lun);
396void kernel_handoff(struct connection *conn);
397void kernel_limits(const char *offload,
398 size_t *max_data_segment_length);
399int kernel_port_add(struct port *port);
400int kernel_port_update(struct port *port);
401int kernel_port_remove(struct port *port);
402void kernel_capsicate(void);

--- 48 unchanged lines hidden ---