Deleted Added
full compact
uipc_shm.c (193303) uipc_shm.c (193511)
1/*-
2 * Copyright (c) 2006 Robert N. M. Watson
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

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

48 * swapped back in for us?
49 *
50 * (6) Add MAC support in mac_biba(4) and mac_mls(4).
51 *
52 * (7) Add a MAC check_create() hook for creating new named objects.
53 */
54
55#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2006 Robert N. M. Watson
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

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

48 * swapped back in for us?
49 *
50 * (6) Add MAC support in mac_biba(4) and mac_mls(4).
51 *
52 * (7) Add a MAC check_create() hook for creating new named objects.
53 */
54
55#include <sys/cdefs.h>
56__FBSDID("$FreeBSD: head/sys/kern/uipc_shm.c 193303 2009-06-02 08:02:27Z alc $");
56__FBSDID("$FreeBSD: head/sys/kern/uipc_shm.c 193511 2009-06-05 14:55:22Z rwatson $");
57
57
58#include "opt_mac.h"
59
60#include <sys/param.h>
61#include <sys/fcntl.h>
62#include <sys/file.h>
63#include <sys/filedesc.h>
64#include <sys/fnv_hash.h>
65#include <sys/kernel.h>
66#include <sys/lock.h>
67#include <sys/malloc.h>

--- 564 unchanged lines hidden ---
58#include <sys/param.h>
59#include <sys/fcntl.h>
60#include <sys/file.h>
61#include <sys/filedesc.h>
62#include <sys/fnv_hash.h>
63#include <sys/kernel.h>
64#include <sys/lock.h>
65#include <sys/malloc.h>

--- 564 unchanged lines hidden ---