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:xen_lazy_mode
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/arch/x86/include/asm/xen/
H
A
D
hypervisor.h
68
enum
xen_lazy_mode
{
enum
74
DECLARE_PER_CPU(enum
xen_lazy_mode
,
xen_lazy_mode
);
77
static inline void enter_lazy(enum
xen_lazy_mode
mode)
in enter_lazy()
79
enum
xen_lazy_mode
old_mode = this_cpu_read(
xen_lazy_mode
);
in enter_lazy()
88
this_cpu_write(
xen_lazy_mode
, mode);
in enter_lazy()
91
static inline void leave_lazy(enum
xen_lazy_mode
mode)
in leave_lazy()
93
BUG_ON(this_cpu_read(
xen_lazy_mode
) != mode);
in leave_lazy()
96
this_cpu_write(
xen_lazy_mode
, XEN_LAZY_NON
in leave_lazy()
[all...]
/kernel/linux/linux-6.6/include/trace/events/
H
A
D
xen.h
16
TP_PROTO(enum
xen_lazy_mode
mode),
19
__field(enum
xen_lazy_mode
, mode)
28
TP_PROTO(enum
xen_lazy_mode
mode), \
/kernel/linux/linux-6.6/arch/x86/xen/
H
A
D
enlighten_pv.c
104
DEFINE_PER_CPU(enum
xen_lazy_mode
,
xen_lazy_mode
) = XEN_LAZY_NONE;
107
enum
xen_lazy_mode
xen_get_lazy_mode(void)
in xen_get_lazy_mode()
112
return this_cpu_read(
xen_lazy_mode
);
in xen_get_lazy_mode()
380
if (this_cpu_read(
xen_lazy_mode
) == XEN_LAZY_MMU) {
in xen_start_context_switch()
Completed in 3 milliseconds