Deleted Added
full compact
geom_ctl.c (105504) geom_ctl.c (105551)
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

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

27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 *
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

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

27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 * $FreeBSD: head/sys/geom/geom_ctl.c 105504 2002-10-20 08:42:18Z phk $
35 * $FreeBSD: head/sys/geom/geom_ctl.c 105551 2002-10-20 20:28:24Z phk $
36 */
37
38#include "opt_geom.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/kernel.h>
43#include <sys/sysctl.h>

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

80 struct g_geom *gp;
81 struct g_provider *pp;
82
83 g_topology_assert();
84 gp = g_new_geomf(&g_ctl_class, "geom.ctl");
85 gp->start = g_ctl_start;
86 gp->access = g_ctl_access;
87 pp = g_new_providerf(gp, "%s", gp->name);
36 */
37
38#include "opt_geom.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/kernel.h>
43#include <sys/sysctl.h>

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

80 struct g_geom *gp;
81 struct g_provider *pp;
82
83 g_topology_assert();
84 gp = g_new_geomf(&g_ctl_class, "geom.ctl");
85 gp->start = g_ctl_start;
86 gp->access = g_ctl_access;
87 pp = g_new_providerf(gp, "%s", gp->name);
88 pp->sectorsize = 512;
88 g_error_provider(pp, 0);
89}
90
91static void
92g_ctl_init(void)
93{
94 mtx_unlock(&Giant);
95 g_add_class(&g_ctl_class);

--- 138 unchanged lines hidden ---
89 g_error_provider(pp, 0);
90}
91
92static void
93g_ctl_init(void)
94{
95 mtx_unlock(&Giant);
96 g_add_class(&g_ctl_class);

--- 138 unchanged lines hidden ---