Deleted Added
full compact
geom_sunlabel.c (332519) geom_sunlabel.c (332640)
1/*-
2 * Copyright (c) 2002 Poul-Henning Kamp
3 * Copyright (c) 2002 Networks Associates Technology, Inc.
4 * All rights reserved.
5 *
6 * This software was developed for the FreeBSD Project by Poul-Henning Kamp
7 * and NAI Labs, the Security Research Division of Network Associates, Inc.
8 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the

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

29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2002 Poul-Henning Kamp
3 * Copyright (c) 2002 Networks Associates Technology, Inc.
4 * All rights reserved.
5 *
6 * This software was developed for the FreeBSD Project by Poul-Henning Kamp
7 * and NAI Labs, the Security Research Division of Network Associates, Inc.
8 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the

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

29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: stable/11/sys/geom/geom_sunlabel.c 332519 2018-04-16 00:12:03Z kevans $");
37__FBSDID("$FreeBSD: stable/11/sys/geom/geom_sunlabel.c 332640 2018-04-17 02:18:04Z kevans $");
38
39#include <sys/param.h>
40#include <sys/endian.h>
41#include <sys/systm.h>
42#include <sys/sysctl.h>
43#include <sys/kernel.h>
44#include <sys/conf.h>
45#include <sys/bio.h>

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

327 .name = SUNLABEL_CLASS_NAME,
328 .version = G_VERSION,
329 .taste = g_sunlabel_taste,
330 .ctlreq = g_sunlabel_config,
331 .dumpconf = g_sunlabel_dumpconf,
332};
333
334DECLARE_GEOM_CLASS(g_sunlabel_class, g_sunlabel);
38
39#include <sys/param.h>
40#include <sys/endian.h>
41#include <sys/systm.h>
42#include <sys/sysctl.h>
43#include <sys/kernel.h>
44#include <sys/conf.h>
45#include <sys/bio.h>

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

327 .name = SUNLABEL_CLASS_NAME,
328 .version = G_VERSION,
329 .taste = g_sunlabel_taste,
330 .ctlreq = g_sunlabel_config,
331 .dumpconf = g_sunlabel_dumpconf,
332};
333
334DECLARE_GEOM_CLASS(g_sunlabel_class, g_sunlabel);
335MODULE_VERSION(geom_sunlabel, 0);