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:_PAGE_RONLY
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H
A
D
motorola_pgtable.h
11
#define
_PAGE_RONLY
0x004
macro
75
#define PAGE_COPY __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED | mm_cachebits)
76
#define PAGE_READONLY __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED | mm_cachebits)
83
#define PAGE_COPY_C __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED)
84
#define PAGE_READONLY_C __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED)
174
static inline int pte_write(pte_t pte) { return !(pte_val(pte) &
_PAGE_RONLY
); }
in pte_write()
178
static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |=
_PAGE_RONLY
; return pte; }
in pte_wrprotect()
181
static inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) &= ~
_PAGE_RONLY
; return pte; }
in pte_mkwrite()
/kernel/linux/linux-6.6/arch/m68k/include/asm/
H
A
D
motorola_pgtable.h
11
#define
_PAGE_RONLY
0x004
macro
78
#define PAGE_COPY __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED | mm_cachebits)
79
#define PAGE_READONLY __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED | mm_cachebits)
152
static inline int pte_write(pte_t pte) { return !(pte_val(pte) &
_PAGE_RONLY
); }
in pte_write()
156
static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |=
_PAGE_RONLY
; return pte; }
in pte_wrprotect()
159
static inline pte_t pte_mkwrite_novma(pte_t pte){ pte_val(pte) &= ~
_PAGE_RONLY
; return pte; }
in pte_mkwrite_novma()
/kernel/linux/linux-6.6/arch/m68k/mm/
H
A
D
motorola.c
391
#define PAGE_COPY_C __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED)
392
#define PAGE_READONLY_C __pgprot(_PAGE_PRESENT |
_PAGE_RONLY
| _PAGE_ACCESSED)
Completed in 3 milliseconds