linux_ioctl.c (e57c2b130f2cd40967cf20698d376cc5ada95871) linux_ioctl.c (33553d6e997f102da7a5f27d534b3ee57beb0a87)
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
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

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

21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
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

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

21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "opt_route.h"
29#include "opt_compat.h"
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD$");
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/sysproto.h>

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

58#include <sys/sx.h>
59#include <sys/tty.h>
60#include <sys/uio.h>
61#include <sys/vimage.h>
62
63#include <net/if.h>
64#include <net/if_dl.h>
65#include <net/if_types.h>
30#include "opt_compat.h"
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD$");
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/sysproto.h>

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

59#include <sys/sx.h>
60#include <sys/tty.h>
61#include <sys/uio.h>
62#include <sys/vimage.h>
63
64#include <net/if.h>
65#include <net/if_dl.h>
66#include <net/if_types.h>
67#include <net/route.h>
66#include <net/vnet.h>
67
68#ifdef COMPAT_LINUX32
69#include <machine/../linux32/linux.h>
70#include <machine/../linux32/linux32_proto.h>
71#else
72#include <machine/../linux/linux.h>
73#include <machine/../linux/linux_proto.h>

--- 2649 unchanged lines hidden ---
68#include <net/vnet.h>
69
70#ifdef COMPAT_LINUX32
71#include <machine/../linux32/linux.h>
72#include <machine/../linux32/linux32_proto.h>
73#else
74#include <machine/../linux/linux.h>
75#include <machine/../linux/linux_proto.h>

--- 2649 unchanged lines hidden ---