Deleted Added
full compact
geom_ccd.c (112367) geom_ccd.c (112946)
1/*
2 * Copyright (c) 2003 Poul-Henning Kamp.
3 * Copyright (c) 1995 Jason R. Thorpe.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 * All rights reserved.
7 * Copyright (c) 1988 University of Utah.
8 *

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

45 * Moffett Field, CA 94035
46 *
47 * from: Utah $Hdr: cd.c 1.6 90/11/28$
48 *
49 * @(#)cd.c 8.2 (Berkeley) 11/16/93
50 *
51 * $NetBSD: ccd.c,v 1.22 1995/12/08 19:13:26 thorpej Exp $
52 *
1/*
2 * Copyright (c) 2003 Poul-Henning Kamp.
3 * Copyright (c) 1995 Jason R. Thorpe.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 * All rights reserved.
7 * Copyright (c) 1988 University of Utah.
8 *

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

45 * Moffett Field, CA 94035
46 *
47 * from: Utah $Hdr: cd.c 1.6 90/11/28$
48 *
49 * @(#)cd.c 8.2 (Berkeley) 11/16/93
50 *
51 * $NetBSD: ccd.c,v 1.22 1995/12/08 19:13:26 thorpej Exp $
52 *
53 * $FreeBSD: head/sys/geom/geom_ccd.c 112367 2003-03-18 08:45:25Z phk $
53 * $FreeBSD: head/sys/geom/geom_ccd.c 112946 2003-04-01 15:06:26Z phk $
54 */
55
56#include <sys/param.h>
57#include <sys/systm.h>
58#include <sys/kernel.h>
59#include <sys/module.h>
60#include <sys/proc.h>
61#include <sys/bio.h>
62#include <sys/malloc.h>
63#include <sys/namei.h>
64#include <sys/conf.h>
65#include <sys/stat.h>
66#include <sys/sysctl.h>
67#include <sys/disk.h>
68#include <sys/fcntl.h>
69#include <sys/vnode.h>
54 */
55
56#include <sys/param.h>
57#include <sys/systm.h>
58#include <sys/kernel.h>
59#include <sys/module.h>
60#include <sys/proc.h>
61#include <sys/bio.h>
62#include <sys/malloc.h>
63#include <sys/namei.h>
64#include <sys/conf.h>
65#include <sys/stat.h>
66#include <sys/sysctl.h>
67#include <sys/disk.h>
68#include <sys/fcntl.h>
69#include <sys/vnode.h>
70#include <geom/geom_disk.h>
70
71#include <sys/ccdvar.h>
72
73MALLOC_DEFINE(M_CCD, "CCD driver", "Concatenated Disk driver");
74
75/*
76 This is how mirroring works (only writes are special):
77

--- 1176 unchanged lines hidden ---
71
72#include <sys/ccdvar.h>
73
74MALLOC_DEFINE(M_CCD, "CCD driver", "Concatenated Disk driver");
75
76/*
77 This is how mirroring works (only writes are special):
78

--- 1176 unchanged lines hidden ---