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:cp_rwsem
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/fs/f2fs/
H
A
D
f2fs.h
1140
int need_lock; /* indicate we need to lock
cp_rwsem
*/
1423
struct rw_semaphore
cp_rwsem
; /* blocking FS operations */
member
1927
down_read(&sbi->
cp_rwsem
);
in f2fs_lock_op()
1932
return down_read_trylock(&sbi->
cp_rwsem
);
in f2fs_trylock_op()
1937
up_read(&sbi->
cp_rwsem
);
in f2fs_unlock_op()
1942
down_write(&sbi->
cp_rwsem
);
in f2fs_lock_all()
1947
up_write(&sbi->
cp_rwsem
);
in f2fs_unlock_all()
H
A
D
super.c
3730
init_rwsem(&sbi->
cp_rwsem
);
in f2fs_fill_super()
H
A
D
segment.c
643
(!f2fs_time_over(sbi, REQ_TIME) && rwsem_is_locked(&sbi->
cp_rwsem
)))
in f2fs_balance_fs_bg()
/kernel/linux/linux-6.6/fs/f2fs/
H
A
D
f2fs.h
1201
unsigned int need_lock:8; /* indicate we need to lock
cp_rwsem
*/
1575
struct f2fs_rwsem
cp_rwsem
; /* blocking FS operations */
member
2169
f2fs_down_read(&sbi->
cp_rwsem
);
in f2fs_lock_op()
2176
return f2fs_down_read_trylock(&sbi->
cp_rwsem
);
in f2fs_trylock_op()
2181
f2fs_up_read(&sbi->
cp_rwsem
);
in f2fs_unlock_op()
2186
f2fs_down_write(&sbi->
cp_rwsem
);
in f2fs_lock_all()
2191
f2fs_up_write(&sbi->
cp_rwsem
);
in f2fs_unlock_all()
H
A
D
segment.c
445
int factor = f2fs_rwsem_is_locked(&sbi->
cp_rwsem
) ? 3 : 2;
in excess_dirty_threshold()
492
(!f2fs_time_over(sbi, REQ_TIME) && f2fs_rwsem_is_locked(&sbi->
cp_rwsem
)))
in f2fs_balance_fs_bg()
H
A
D
super.c
4397
init_f2fs_rwsem(&sbi->
cp_rwsem
);
in f2fs_fill_super()
Completed in 39 milliseconds