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:SDEBUG_CANQUEUE
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/drivers/scsi/
H
A
D
scsi_debug.c
212
/*
SDEBUG_CANQUEUE
is the maximum number of commands that can be queued
217
* but cannot exceed
SDEBUG_CANQUEUE
.
220
#define
SDEBUG_CANQUEUE
(SDEBUG_CANQUEUE_WORDS * BITS_PER_LONG)
macro
349
struct sdebug_queued_cmd qc_arr[
SDEBUG_CANQUEUE
];
745
static int sdebug_max_queue =
SDEBUG_CANQUEUE
; /* per submit queue */
4781
if (unlikely((qc_idx < 0) || (qc_idx >=
SDEBUG_CANQUEUE
))) {
in sdebug_q_cmd_complete()
5130
for (k = 0; k <
SDEBUG_CANQUEUE
; ++k) {
in stop_all_queued()
5164
for (k = 0; k <
SDEBUG_CANQUEUE
; ++k) {
in free_all_queued()
6242
(n <=
SDEBUG_CANQUEUE
) &&
in max_queue_store()
6248
a = find_last_bit(sqp->in_use_bm,
SDEBUG_CANQUEUE
);
in max_queue_store()
[all...]
/kernel/linux/linux-6.6/drivers/scsi/
H
A
D
scsi_debug.c
214
/*
SDEBUG_CANQUEUE
is the maximum number of commands that can be queued
219
* but cannot exceed
SDEBUG_CANQUEUE
.
222
#define
SDEBUG_CANQUEUE
(SDEBUG_CANQUEUE_WORDS * BITS_PER_LONG)
macro
223
#define DEF_CMD_PER_LUN
SDEBUG_CANQUEUE
754
static int sdebug_max_queue =
SDEBUG_CANQUEUE
; /* per submit queue */
6381
(n <=
SDEBUG_CANQUEUE
) &&
in max_queue_store()
6891
if ((sdebug_max_queue >
SDEBUG_CANQUEUE
) || (sdebug_max_queue < 1)) {
in scsi_debug_init()
6892
pr_err("max_queue must be in range [1, %d]\n",
SDEBUG_CANQUEUE
);
in scsi_debug_init()
6896
if ((sdebug_host_max_queue >
SDEBUG_CANQUEUE
) ||
in scsi_debug_init()
6899
SDEBUG_CANQUEUE
);
in scsi_debug_init()
[all...]
Completed in 19 milliseconds