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:cqp_timeout
(Results
1 - 5
of
5
) sorted by relevance
/kernel/linux/linux-5.10/drivers/infiniband/hw/i40iw/
H
A
D
i40iw_utils.c
490
struct i40iw_cqp_timeout
cqp_timeout
;
in i40iw_wait_event()
local
493
memset(&
cqp_timeout
, 0, sizeof(
cqp_timeout
));
in i40iw_wait_event()
494
cqp_timeout
.compl_cqp_cmds = iwdev->sc_dev.cqp_cmd_stats[OP_COMPLETED_COMMANDS];
in i40iw_wait_event()
500
i40iw_check_cqp_progress(&
cqp_timeout
, &iwdev->sc_dev);
in i40iw_wait_event()
502
if (
cqp_timeout
.count < CQP_TIMEOUT_THRESHOLD)
in i40iw_wait_event()
H
A
D
i40iw_p.h
56
void i40iw_check_cqp_progress(struct i40iw_cqp_timeout *
cqp_timeout
, struct i40iw_sc_dev *dev);
H
A
D
i40iw_ctrl.c
57
void i40iw_check_cqp_progress(struct i40iw_cqp_timeout *
cqp_timeout
, struct i40iw_sc_dev *dev)
in i40iw_check_cqp_progress()
argument
59
if (
cqp_timeout
->compl_cqp_cmds != dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS]) {
in i40iw_check_cqp_progress()
60
cqp_timeout
->compl_cqp_cmds = dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS];
in i40iw_check_cqp_progress()
61
cqp_timeout
->count = 0;
in i40iw_check_cqp_progress()
63
if (dev->cqp_cmd_stats[OP_REQUESTED_COMMANDS] !=
cqp_timeout
->compl_cqp_cmds)
in i40iw_check_cqp_progress()
64
cqp_timeout
->count++;
in i40iw_check_cqp_progress()
/kernel/linux/linux-6.6/drivers/infiniband/hw/irdma/
H
A
D
utils.c
566
struct irdma_cqp_timeout
cqp_timeout
= {};
in irdma_wait_event()
local
570
cqp_timeout
.compl_cqp_cmds = atomic64_read(&rf->sc_dev.cqp->completed_ops);
in irdma_wait_event()
578
irdma_check_cqp_progress(&
cqp_timeout
, &rf->sc_dev);
in irdma_wait_event()
580
if (
cqp_timeout
.count < CQP_TIMEOUT_THRESHOLD)
in irdma_wait_event()
H
A
D
type.h
1190
void irdma_check_cqp_progress(struct irdma_cqp_timeout *
cqp_timeout
,
Completed in 18 milliseconds