Deleted Added
full compact
mac_label.c (136773) mac_label.c (163606)
1/*-
2 * Copyright (c) 2003-2004 Networks Associates Technology, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project in part by Network
6 * Associates Laboratories, the Security Research Division of Network
7 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"),
8 * as part of the DARPA CHATS research program.

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

25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2003-2004 Networks Associates Technology, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project in part by Network
6 * Associates Laboratories, the Security Research Division of Network
7 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"),
8 * as part of the DARPA CHATS research program.

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

25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/security/mac/mac_label.c 136773 2004-10-22 11:08:52Z rwatson $");
33__FBSDID("$FreeBSD: head/sys/security/mac/mac_label.c 163606 2006-10-22 11:52:19Z rwatson $");
34
35#include "opt_mac.h"
36
37#include <sys/param.h>
38#include <sys/mac.h>
39#include <sys/sysctl.h>
40#include <sys/systm.h>
41
42#include <vm/uma.h>
43
34
35#include "opt_mac.h"
36
37#include <sys/param.h>
38#include <sys/mac.h>
39#include <sys/sysctl.h>
40#include <sys/systm.h>
41
42#include <vm/uma.h>
43
44#include <security/mac/mac_framework.h>
44#include <security/mac/mac_internal.h>
45
46uma_zone_t zone_label;
47
48static int mac_labelzone_ctor(void *mem, int size, void *arg, int flags);
49static void mac_labelzone_dtor(void *mem, int size, void *arg);
50
51void

--- 49 unchanged lines hidden ---
45#include <security/mac/mac_internal.h>
46
47uma_zone_t zone_label;
48
49static int mac_labelzone_ctor(void *mem, int size, void *arg, int flags);
50static void mac_labelzone_dtor(void *mem, int size, void *arg);
51
52void

--- 49 unchanged lines hidden ---