cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/um/asm/vm-flags.h

Directory: arch/x86/um/asm
/*
 * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com)
 * Copyright 2003 PathScale, Inc.
 * Licensed under the GPL
 */

#ifndef __VM_FLAGS_X86_H

#define __VM_FLAGS_X86_H

#ifdef CONFIG_X86_32


#define VM_DATA_DEFAULT_FLAGS \
	(VM_READ | VM_WRITE | \
        ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \
                 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)

#else


#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
        VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)

#define VM_STACK_DEFAULT_FLAGS (VM_GROWSDOWN | VM_READ | VM_WRITE | \
        VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)

#endif
#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
al viroal viro1448.28%125.00%
jeff dikejeff dike1344.83%250.00%
richard weinbergerrichard weinberger26.90%125.00%
Total29100.00%4100.00%
Directory: arch/x86/um/asm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.