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:vtsk
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-6.6/kernel/
H
A
D
vhost_task.c
25
struct vhost_task *
vtsk
= data;
in vhost_task_fn()
local
50
if (test_bit(VHOST_TASK_FLAGS_STOP, &
vtsk
->flags)) {
in vhost_task_fn()
55
did_work =
vtsk
->fn(
vtsk
->data);
in vhost_task_fn()
60
complete(&
vtsk
->exited);
in vhost_task_fn()
66
* @
vtsk
: vhost_task to wake
70
void vhost_task_wake(struct vhost_task *
vtsk
)
in vhost_task_wake()
argument
72
wake_up_process(
vtsk
->task);
in vhost_task_wake()
78
* @
vtsk
: vhost_task to stop
83
void vhost_task_stop(struct vhost_task *
vtsk
)
in vhost_task_stop()
argument
118
struct vhost_task *
vtsk
;
vhost_task_create()
local
145
vhost_task_start(struct vhost_task *
vtsk
)
vhost_task_start()
argument
[all...]
/kernel/linux/linux-6.6/include/linux/sched/
H
A
D
vhost_task.h
10
void vhost_task_start(struct vhost_task *
vtsk
);
11
void vhost_task_stop(struct vhost_task *
vtsk
);
12
void vhost_task_wake(struct vhost_task *
vtsk
);
/kernel/linux/linux-6.6/drivers/vhost/
H
A
D
vhost.c
245
vhost_task_wake(worker->
vtsk
);
in vhost_worker_queue()
599
vhost_task_stop(worker->
vtsk
);
in vhost_worker_destroy()
625
struct vhost_task *
vtsk
;
in vhost_worker_create()
local
636
vtsk
= vhost_task_create(vhost_worker, worker, name);
in vhost_worker_create()
637
if (!
vtsk
)
in vhost_worker_create()
643
worker->
vtsk
=
vtsk
;
in vhost_worker_create()
645
vhost_task_start(
vtsk
);
in vhost_worker_create()
655
vhost_task_stop(
vtsk
);
in vhost_worker_create()
H
A
D
vhost.h
30
struct vhost_task *
vtsk
;
member
Completed in 5 milliseconds