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:CEPH_BLOCK_SHIFT
(Results
1 - 8
of
8
) sorted by relevance
/kernel/linux/linux-5.10/fs/ceph/
H
A
D
super.c
81
buf->f_bsize = 1 <<
CEPH_BLOCK_SHIFT
;
in ceph_statfs()
82
buf->f_frsize = 1 <<
CEPH_BLOCK_SHIFT
;
in ceph_statfs()
91
buf->f_blocks = le64_to_cpu(st.kb) >> (
CEPH_BLOCK_SHIFT
-10);
in ceph_statfs()
92
buf->f_bfree = le64_to_cpu(st.kb_avail) >> (
CEPH_BLOCK_SHIFT
-10);
in ceph_statfs()
93
buf->f_bavail = le64_to_cpu(st.kb_avail) >> (
CEPH_BLOCK_SHIFT
-10);
in ceph_statfs()
H
A
D
quota.c
498
total = ci->i_max_bytes >>
CEPH_BLOCK_SHIFT
;
in ceph_quota_update_statfs()
499
used = ci->i_rbytes >>
CEPH_BLOCK_SHIFT
;
in ceph_quota_update_statfs()
H
A
D
super.h
32
#define
CEPH_BLOCK_SHIFT
22 /* 4 MB */
macro
33
#define CEPH_BLOCK (1 <<
CEPH_BLOCK_SHIFT
)
H
A
D
inode.c
827
inode->i_blkbits =
CEPH_BLOCK_SHIFT
;
in ceph_fill_inode()
/kernel/linux/linux-6.6/fs/ceph/
H
A
D
quota.c
506
total = ci->i_max_bytes >>
CEPH_BLOCK_SHIFT
;
in ceph_quota_update_statfs()
507
used = ci->i_rbytes >>
CEPH_BLOCK_SHIFT
;
in ceph_quota_update_statfs()
H
A
D
super.c
80
buf->f_frsize = 1 <<
CEPH_BLOCK_SHIFT
;
in ceph_statfs()
89
buf->f_blocks = le64_to_cpu(st.kb) >> (
CEPH_BLOCK_SHIFT
-10);
in ceph_statfs()
90
buf->f_bfree = le64_to_cpu(st.kb_avail) >> (
CEPH_BLOCK_SHIFT
-10);
in ceph_statfs()
91
buf->f_bavail = le64_to_cpu(st.kb_avail) >> (
CEPH_BLOCK_SHIFT
-10);
in ceph_statfs()
H
A
D
super.h
29
#define
CEPH_BLOCK_SHIFT
22 /* 4 MB */
macro
30
#define CEPH_BLOCK (1 <<
CEPH_BLOCK_SHIFT
)
H
A
D
inode.c
1048
inode->i_blkbits =
CEPH_BLOCK_SHIFT
;
in ceph_fill_inode()
Completed in 16 milliseconds