Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:PROT_NORMAL
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/arch/arm64/include/asm/
H
A
D
pgtable-prot.h
59
#define
PROT_NORMAL
(PROT_DEFAULT | PTE_PXN | PTE_UXN | PTE_WRITE | PTE_ATTRINDX(MT_NORMAL))
macro
68
#define PAGE_KERNEL __pgprot(
PROT_NORMAL
)
69
#define PAGE_KERNEL_RO __pgprot((
PROT_NORMAL
& ~PTE_WRITE) | PTE_RDONLY)
70
#define PAGE_KERNEL_ROX __pgprot((
PROT_NORMAL
& ~(PTE_WRITE | PTE_PXN)) | PTE_RDONLY)
71
#define PAGE_KERNEL_EXEC __pgprot(
PROT_NORMAL
& ~PTE_PXN)
72
#define PAGE_KERNEL_EXEC_CONT __pgprot((
PROT_NORMAL
& ~PTE_PXN) | PTE_CONT)
/kernel/linux/linux-6.6/arch/arm64/include/asm/
H
A
D
pgtable-prot.h
39
#define
PROT_NORMAL
(PROT_DEFAULT | PTE_PXN | PTE_UXN | PTE_WRITE | PTE_ATTRINDX(MT_NORMAL))
macro
48
#define _PAGE_KERNEL (
PROT_NORMAL
)
49
#define _PAGE_KERNEL_RO ((
PROT_NORMAL
& ~PTE_WRITE) | PTE_RDONLY)
50
#define _PAGE_KERNEL_ROX ((
PROT_NORMAL
& ~(PTE_WRITE | PTE_PXN)) | PTE_RDONLY)
51
#define _PAGE_KERNEL_EXEC (
PROT_NORMAL
& ~PTE_PXN)
52
#define _PAGE_KERNEL_EXEC_CONT ((
PROT_NORMAL
& ~PTE_PXN) | PTE_CONT)
H
A
D
io.h
170
return ioremap_prot(addr, size,
PROT_NORMAL
);
in ioremap_cache()
/kernel/linux/linux-5.10/arch/arm64/mm/
H
A
D
ioremap.c
91
return __ioremap_caller(phys_addr, size, __pgprot(
PROT_NORMAL
),
in ioremap_cache()
Completed in 2 milliseconds