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:credit_charge
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/fs/smb/server/
H
A
D
smb2misc.c
293
unsigned short
credit_charge
= le16_to_cpu(hdr->CreditCharge);
in smb2_validate_credit_charge()
local
324
credit_charge
= max_t(unsigned short,
credit_charge
, 1);
in smb2_validate_credit_charge()
328
if (
credit_charge
< calc_credit_num) {
in smb2_validate_credit_charge()
330
credit_charge
, calc_credit_num);
in smb2_validate_credit_charge()
332
} else if (
credit_charge
> conn->vals->max_credits) {
in smb2_validate_credit_charge()
333
ksmbd_debug(SMB, "Too large credit charge: %d\n",
credit_charge
);
in smb2_validate_credit_charge()
338
if (
credit_charge
> conn->total_credits) {
in smb2_validate_credit_charge()
340
credit_charge
, conn->total_credits);
in smb2_validate_credit_charge()
344
if ((u64)conn->outstanding_credits +
credit_charge
> con
in smb2_validate_credit_charge()
[all...]
H
A
D
smb2pdu.c
317
unsigned short
credit_charge
, credits_granted = 0;
in smb2_set_rsp_credits()
local
330
credit_charge
= max_t(unsigned short,
in smb2_set_rsp_credits()
332
if (
credit_charge
> conn->total_credits) {
in smb2_set_rsp_credits()
334
credit_charge
, conn->total_credits);
in smb2_set_rsp_credits()
338
conn->total_credits -=
credit_charge
;
in smb2_set_rsp_credits()
339
conn->outstanding_credits -=
credit_charge
;
in smb2_set_rsp_credits()
Completed in 11 milliseconds