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:kfd_locked
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdkfd/
H
A
D
kfd_device.c
42
*
kfd_locked
is used to lock the kfd driver during suspend or reset
46
static int
kfd_locked
;
variable
916
--
kfd_locked
;
in kgd2kfd_post_reset()
931
return (
kfd_locked
> 0);
in kfd_is_locked()
946
count = ++
kfd_locked
;
in kgd2kfd_suspend()
976
count = --
kfd_locked
;
in kgd2kfd_resume()
1378
++
kfd_locked
;
in kgd2kfd_check_and_lock_kfd()
1387
--
kfd_locked
;
in kgd2kfd_unlock_kfd()
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdkfd/
H
A
D
kfd_device.c
37
*
kfd_locked
is used to lock the kfd driver during suspend or reset
41
static atomic_t
kfd_locked
= ATOMIC_INIT(0);
variable
845
atomic_dec(&
kfd_locked
);
in kgd2kfd_post_reset()
856
return (atomic_read(&
kfd_locked
) > 0);
in kfd_is_locked()
867
if (atomic_inc_return(&
kfd_locked
) == 1)
in kgd2kfd_suspend()
888
count = atomic_dec_return(&
kfd_locked
);
in kgd2kfd_resume()
Completed in 3 milliseconds