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:sb_logsunit
(Results
1 - 13
of
13
) sorted by relevance
/kernel/linux/linux-5.10/fs/xfs/libxfs/
H
A
D
xfs_log_rlimit.c
95
if (xfs_sb_version_haslogv2(&mp->m_sb) && mp->m_sb.
sb_logsunit
> 1)
in xfs_log_calc_minimum_size()
96
lsunit = BTOBB(mp->m_sb.
sb_logsunit
);
in xfs_log_calc_minimum_size()
H
A
D
xfs_log_format.h
37
#define XLOG_BTOLSUNIT(log, b) (((b)+(log)->l_mp->m_sb.
sb_logsunit
-1) / \
38
(log)->l_mp->m_sb.
sb_logsunit
)
39
#define XLOG_LSUNITTOB(log, su) ((su) * (log)->l_mp->m_sb.
sb_logsunit
)
H
A
D
xfs_sb.c
313
sbp->
sb_logsunit
> XLOG_MAX_RECORD_BSIZE ||
in xfs_validate_sb_common()
531
to->
sb_logsunit
= be32_to_cpu(from->
sb_logsunit
);
in __xfs_sb_from_disk()
672
to->
sb_logsunit
= cpu_to_be32(from->
sb_logsunit
);
in xfs_sb_to_disk()
1194
geo->logsunit = sbp->
sb_logsunit
;
in xfs_fs_geometry()
H
A
D
xfs_format.h
149
uint32_t
sb_logsunit
; /* stripe unit size for the log */
member
240
__be32
sb_logsunit
; /* stripe unit size for the log */
member
/kernel/linux/linux-6.6/fs/xfs/libxfs/
H
A
D
xfs_log_rlimit.c
162
if (xfs_has_logv2(mp) && mp->m_sb.
sb_logsunit
> 1)
in xfs_log_calc_minimum_size()
163
lsunit = BTOBB(mp->m_sb.
sb_logsunit
);
in xfs_log_calc_minimum_size()
H
A
D
xfs_sb.c
473
if (sbp->
sb_logsunit
> 1) {
in xfs_validate_sb_common()
474
if (sbp->
sb_logsunit
% sbp->sb_blocksize) {
in xfs_validate_sb_common()
477
sbp->
sb_logsunit
);
in xfs_validate_sb_common()
480
if (sbp->
sb_logsunit
> XLOG_MAX_RECORD_BSIZE) {
in xfs_validate_sb_common()
483
sbp->
sb_logsunit
, XLOG_MAX_RECORD_BSIZE);
in xfs_validate_sb_common()
653
to->
sb_logsunit
= be32_to_cpu(from->
sb_logsunit
);
in __xfs_sb_from_disk()
800
to->
sb_logsunit
= cpu_to_be32(from->
sb_logsunit
);
in xfs_sb_to_disk()
1266
geo->logsunit = sbp->
sb_logsunit
;
in xfs_fs_geometry()
[all...]
H
A
D
xfs_format.h
149
uint32_t
sb_logsunit
; /* stripe unit size for the log */
member
240
__be32
sb_logsunit
; /* stripe unit size for the log */
member
/kernel/linux/linux-5.10/fs/xfs/
H
A
D
xfs_log.c
617
} else if (mp->m_sb.
sb_logsunit
> 1 &&
in xfs_log_mount()
618
mp->m_sb.
sb_logsunit
% mp->m_sb.sb_blocksize) {
in xfs_log_mount()
621
mp->m_sb.
sb_logsunit
);
in xfs_log_mount()
1796
log->l_mp->m_sb.
sb_logsunit
> 1;
in xlog_calc_iclog_size()
1813
ASSERT(*roundoff < log->l_mp->m_sb.
sb_logsunit
);
in xlog_calc_iclog_size()
3088
log->l_mp->m_sb.
sb_logsunit
> 1) {
in xlog_state_switch_iclogs()
3089
uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.
sb_logsunit
);
in xlog_state_switch_iclogs()
3425
if (xfs_sb_version_haslogv2(&mp->m_sb) && mp->m_sb.
sb_logsunit
> 1) {
in xfs_log_calc_unit_res()
3427
unit_bytes += 2 * mp->m_sb.
sb_logsunit
;
in xfs_log_calc_unit_res()
H
A
D
xfs_super.c
960
mp->m_sb.
sb_logsunit
> XLOG_BIG_RECORD_BSIZE) {
in xfs_finish_flags()
961
mp->m_logbsize = mp->m_sb.
sb_logsunit
;
in xfs_finish_flags()
963
mp->m_logbsize < mp->m_sb.
sb_logsunit
) {
in xfs_finish_flags()
/kernel/linux/linux-6.6/fs/xfs/scrub/
H
A
D
agheader.c
262
if (sb->
sb_logsunit
!= cpu_to_be32(mp->m_sb.
sb_logsunit
))
in xchk_superblock()
/kernel/linux/linux-5.10/fs/xfs/scrub/
H
A
D
agheader.c
240
if (sb->
sb_logsunit
!= cpu_to_be32(mp->m_sb.
sb_logsunit
))
in xchk_superblock()
/kernel/linux/linux-6.6/fs/xfs/
H
A
D
xfs_super.c
995
mp->m_sb.
sb_logsunit
> XLOG_BIG_RECORD_BSIZE) {
in xfs_finish_flags()
996
mp->m_logbsize = mp->m_sb.
sb_logsunit
;
in xfs_finish_flags()
998
mp->m_logbsize < mp->m_sb.
sb_logsunit
) {
in xfs_finish_flags()
H
A
D
xfs_log.c
1552
if (xfs_has_logv2(mp) && mp->m_sb.
sb_logsunit
> 1)
in xlog_alloc_log()
1553
log->l_iclog_roundoff = mp->m_sb.
sb_logsunit
;
in xlog_alloc_log()
Completed in 41 milliseconds