Deleted Added
full compact
geom_vinum.c (302408) geom_vinum.c (332640)
1/*-
2 * Copyright (c) 2004, 2007 Lukas Ertl
3 * Copyright (c) 2007, 2009 Ulf Lilleengen
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2004, 2007 Lukas Ertl
3 * Copyright (c) 2007, 2009 Ulf Lilleengen
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: stable/11/sys/geom/vinum/geom_vinum.c 267992 2014-06-28 03:56:17Z hselasky $");
30__FBSDID("$FreeBSD: stable/11/sys/geom/vinum/geom_vinum.c 332640 2018-04-17 02:18:04Z kevans $");
31
32#include <sys/param.h>
33#include <sys/bio.h>
34#include <sys/kernel.h>
35#include <sys/kthread.h>
36#include <sys/lock.h>
37#include <sys/malloc.h>
38#include <sys/module.h>

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

1041 .version = G_VERSION,
1042 .init = gv_init,
1043 .taste = gv_taste,
1044 .ctlreq = gv_config,
1045 .destroy_geom = gv_unload,
1046};
1047
1048DECLARE_GEOM_CLASS(g_vinum_class, g_vinum);
31
32#include <sys/param.h>
33#include <sys/bio.h>
34#include <sys/kernel.h>
35#include <sys/kthread.h>
36#include <sys/lock.h>
37#include <sys/malloc.h>
38#include <sys/module.h>

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

1041 .version = G_VERSION,
1042 .init = gv_init,
1043 .taste = gv_taste,
1044 .ctlreq = gv_config,
1045 .destroy_geom = gv_unload,
1046};
1047
1048DECLARE_GEOM_CLASS(g_vinum_class, g_vinum);
1049MODULE_VERSION(geom_vinum, 0);