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:dq_count
(Results
1 - 14
of
14
) sorted by relevance
/kernel/linux/linux-5.10/net/sched/
H
A
D
sch_pie.c
234
/* If current queue is about 10 packets or more and
dq_count
is unset
in pie_process_dequeue()
238
if (backlog >= QUEUE_THRESHOLD && vars->
dq_count
== DQCOUNT_INVALID) {
in pie_process_dequeue()
240
vars->
dq_count
= 0;
in pie_process_dequeue()
245
* the
dq_count
to -1 as we don't have enough packets to calculate the
in pie_process_dequeue()
248
* and we calculate the drain rate for the threshold here.
dq_count
is
in pie_process_dequeue()
252
if (vars->
dq_count
!= DQCOUNT_INVALID) {
in pie_process_dequeue()
253
vars->
dq_count
+= skb->len;
in pie_process_dequeue()
255
if (vars->
dq_count
>= QUEUE_THRESHOLD) {
in pie_process_dequeue()
256
u32 count = vars->
dq_count
<< PIE_SCALE;
in pie_process_dequeue()
274
*
dq_count
t
in pie_process_dequeue()
[all...]
/kernel/linux/linux-6.6/net/sched/
H
A
D
sch_pie.c
231
/* If current queue is about 10 packets or more and
dq_count
is unset
in pie_process_dequeue()
235
if (backlog >= QUEUE_THRESHOLD && vars->
dq_count
== DQCOUNT_INVALID) {
in pie_process_dequeue()
237
vars->
dq_count
= 0;
in pie_process_dequeue()
242
* the
dq_count
to -1 as we don't have enough packets to calculate the
in pie_process_dequeue()
245
* and we calculate the drain rate for the threshold here.
dq_count
is
in pie_process_dequeue()
249
if (vars->
dq_count
!= DQCOUNT_INVALID) {
in pie_process_dequeue()
250
vars->
dq_count
+= skb->len;
in pie_process_dequeue()
252
if (vars->
dq_count
>= QUEUE_THRESHOLD) {
in pie_process_dequeue()
253
u32 count = vars->
dq_count
<< PIE_SCALE;
in pie_process_dequeue()
271
*
dq_count
t
in pie_process_dequeue()
[all...]
/kernel/linux/linux-5.10/include/net/
H
A
D
pie.h
47
* @
dq_count
: number of bytes dequeued in a measurement cycle
58
u64
dq_count
;
member
106
vars->
dq_count
= DQCOUNT_INVALID;
in pie_vars_init()
/kernel/linux/linux-6.6/include/net/
H
A
D
pie.h
47
* @
dq_count
: number of bytes dequeued in a measurement cycle
58
u64
dq_count
;
member
106
vars->
dq_count
= DQCOUNT_INVALID;
in pie_vars_init()
/kernel/linux/linux-5.10/include/linux/
H
A
D
quotaops.h
49
WARN_ON_ONCE(!atomic_read(&dquot->
dq_count
));
in dqgrab()
51
atomic_inc(&dquot->
dq_count
);
in dqgrab()
59
if (atomic_read(&dquot->
dq_count
) > 0)
in dquot_is_busy()
H
A
D
quota.h
303
atomic_t
dq_count
; /* Use count */
member
/kernel/linux/linux-6.6/include/linux/
H
A
D
quotaops.h
50
WARN_ON_ONCE(!atomic_read(&dquot->
dq_count
));
in dqgrab()
52
atomic_inc(&dquot->
dq_count
);
in dqgrab()
60
if (atomic_read(&dquot->
dq_count
) > 0)
in dquot_is_busy()
H
A
D
quota.h
303
atomic_t
dq_count
; /* Use count */
member
/kernel/linux/linux-5.10/fs/quota/
H
A
D
dquot.c
589
if (atomic_read(&dquot->
dq_count
)) {
in invalidate_dquots()
590
atomic_inc(&dquot->
dq_count
);
in invalidate_dquots()
597
* Otherwise
dq_count
would be > 1 and we would never
in invalidate_dquots()
601
atomic_read(&dquot->
dq_count
) == 1);
in invalidate_dquots()
646
atomic_inc(&dquot->
dq_count
);
in dquot_scan_active()
834
WARN_ON_ONCE(atomic_read(&dquot->
dq_count
));
in quota_release_workfn()
866
if (!atomic_read(&dquot->
dq_count
)) {
in dqput()
876
if (atomic_read(&dquot->
dq_count
) > 1) {
in dqput()
878
atomic_dec(&dquot->
dq_count
);
in dqput()
881
atomic_read(&dquot->
dq_count
)
in dqput()
[all...]
/kernel/linux/linux-6.6/fs/quota/
H
A
D
dquot.c
587
if (atomic_read(&dquot->
dq_count
)) {
in invalidate_dquots()
588
atomic_inc(&dquot->
dq_count
);
in invalidate_dquots()
595
* Otherwise
dq_count
would be > 1 and we would never
in invalidate_dquots()
599
atomic_read(&dquot->
dq_count
) == 1);
in invalidate_dquots()
644
atomic_inc(&dquot->
dq_count
);
in dquot_scan_active()
832
WARN_ON_ONCE(atomic_read(&dquot->
dq_count
));
in quota_release_workfn()
864
if (!atomic_read(&dquot->
dq_count
)) {
in dqput()
874
if (atomic_read(&dquot->
dq_count
) > 1) {
in dqput()
876
atomic_dec(&dquot->
dq_count
);
in dqput()
879
atomic_read(&dquot->
dq_count
)
in dqput()
[all...]
/kernel/linux/linux-5.10/drivers/media/common/videobuf2/
H
A
D
videobuf2-core.c
2557
unsigned int
dq_count
;
member
2762
fileio->
dq_count
+= 1;
in __vb2_perform_fileio()
2822
if (read && fileio->read_once && fileio->
dq_count
== 1) {
in __vb2_perform_fileio()
/kernel/linux/linux-6.6/drivers/media/common/videobuf2/
H
A
D
videobuf2-core.c
2615
unsigned int
dq_count
;
member
2820
fileio->
dq_count
+= 1;
in __vb2_perform_fileio()
2880
if (read && fileio->read_once && fileio->
dq_count
== 1) {
in __vb2_perform_fileio()
/kernel/linux/linux-5.10/drivers/scsi/be2iscsi/
H
A
D
be_cmds.h
1219
u32
dq_count
;
member
/kernel/linux/linux-6.6/drivers/scsi/be2iscsi/
H
A
D
be_cmds.h
1219
u32
dq_count
;
member
Completed in 26 milliseconds