kern_uuid.c (e57c2b130f2cd40967cf20698d376cc5ada95871) kern_uuid.c (33553d6e997f102da7a5f27d534b3ee57beb0a87)
1/*-
2 * Copyright (c) 2002 Marcel Moolenaar
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 *

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

22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD$");
29
1/*-
2 * Copyright (c) 2002 Marcel Moolenaar
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 *

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

22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD$");
29
30#include "opt_route.h"
31
30#include <sys/param.h>
31#include <sys/endian.h>
32#include <sys/kernel.h>
33#include <sys/lock.h>
34#include <sys/mutex.h>
35#include <sys/sbuf.h>
36#include <sys/socket.h>
37#include <sys/sysproto.h>
38#include <sys/systm.h>
39#include <sys/uuid.h>
40#include <sys/vimage.h>
41
42#include <net/if.h>
43#include <net/if_dl.h>
44#include <net/if_types.h>
32#include <sys/param.h>
33#include <sys/endian.h>
34#include <sys/kernel.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>
37#include <sys/sbuf.h>
38#include <sys/socket.h>
39#include <sys/sysproto.h>
40#include <sys/systm.h>
41#include <sys/uuid.h>
42#include <sys/vimage.h>
43
44#include <net/if.h>
45#include <net/if_dl.h>
46#include <net/if_types.h>
47#include <net/route.h>
45#include <net/vnet.h>
46
47/*
48 * See also:
49 * http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt
50 * http://www.opengroup.org/onlinepubs/009629399/apdxa.htm
51 *
52 * Note that the generator state is itself an UUID, but the time and clock

--- 312 unchanged lines hidden ---
48#include <net/vnet.h>
49
50/*
51 * See also:
52 * http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt
53 * http://www.opengroup.org/onlinepubs/009629399/apdxa.htm
54 *
55 * Note that the generator state is itself an UUID, but the time and clock

--- 312 unchanged lines hidden ---