Deleted Added
full compact
scsi_ctl.c (275365) scsi_ctl.c (275942)
1/*-
2 * Copyright (c) 2008, 2009 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

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

31 */
32/*
33 * Peripheral driver interface between CAM and CTL (CAM Target Layer).
34 *
35 * Author: Ken Merry <ken@FreeBSD.org>
36 */
37
38#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2008, 2009 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

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

31 */
32/*
33 * Peripheral driver interface between CAM and CTL (CAM Target Layer).
34 *
35 * Author: Ken Merry <ken@FreeBSD.org>
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/sys/cam/ctl/scsi_ctl.c 275365 2014-12-01 13:55:45Z mav $");
39__FBSDID("$FreeBSD: head/sys/cam/ctl/scsi_ctl.c 275942 2014-12-19 20:35:06Z mav $");
40
41#include <sys/param.h>
42#include <sys/queue.h>
43#include <sys/systm.h>
44#include <sys/kernel.h>
45#include <sys/lock.h>
46#include <sys/mutex.h>
47#include <sys/condvar.h>

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

223{
224 .name = "camtgt",
225 .init = ctlfeinitialize,
226 .fe_dump = ctlfe_dump,
227 .shutdown = ctlfeshutdown,
228};
229CTL_FRONTEND_DECLARE(ctlfe, ctlfe_frontend);
230
40
41#include <sys/param.h>
42#include <sys/queue.h>
43#include <sys/systm.h>
44#include <sys/kernel.h>
45#include <sys/lock.h>
46#include <sys/mutex.h>
47#include <sys/condvar.h>

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

223{
224 .name = "camtgt",
225 .init = ctlfeinitialize,
226 .fe_dump = ctlfe_dump,
227 .shutdown = ctlfeshutdown,
228};
229CTL_FRONTEND_DECLARE(ctlfe, ctlfe_frontend);
230
231extern struct ctl_softc *control_softc;
232
233void
234ctlfeshutdown(void)
235{
236 return;
237}
238
239int
240ctlfeinitialize(void)

--- 1823 unchanged lines hidden ---
231void
232ctlfeshutdown(void)
233{
234 return;
235}
236
237int
238ctlfeinitialize(void)

--- 1823 unchanged lines hidden ---