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:new_sectors
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/drivers/ata/
H
A
D
libata-core.c
1201
* @
new_sectors
: new max sectors value to set for the device
1203
* Set max sectors of @dev to @
new_sectors
.
1210
static int ata_set_max_sectors(struct ata_device *dev, u64
new_sectors
)
in ata_set_max_sectors()
argument
1216
new_sectors
--;
in ata_set_max_sectors()
1226
tf.hob_lbal = (
new_sectors
>> 24) & 0xff;
in ata_set_max_sectors()
1227
tf.hob_lbam = (
new_sectors
>> 32) & 0xff;
in ata_set_max_sectors()
1228
tf.hob_lbah = (
new_sectors
>> 40) & 0xff;
in ata_set_max_sectors()
1232
tf.device |= (
new_sectors
>> 24) & 0xf;
in ata_set_max_sectors()
1238
tf.lbal = (
new_sectors
>> 0) & 0xff;
in ata_set_max_sectors()
1239
tf.lbam = (
new_sectors
>>
in ata_set_max_sectors()
1342
u64
new_sectors
= ata_id_n_sectors(dev->id);
ata_hpa_resize()
local
[all...]
/kernel/linux/linux-6.6/drivers/ata/
H
A
D
libata-core.c
1232
* @
new_sectors
: new max sectors value to set for the device
1234
* Set max sectors of @dev to @
new_sectors
.
1241
static int ata_set_max_sectors(struct ata_device *dev, u64
new_sectors
)
in ata_set_max_sectors()
argument
1247
new_sectors
--;
in ata_set_max_sectors()
1257
tf.hob_lbal = (
new_sectors
>> 24) & 0xff;
in ata_set_max_sectors()
1258
tf.hob_lbam = (
new_sectors
>> 32) & 0xff;
in ata_set_max_sectors()
1259
tf.hob_lbah = (
new_sectors
>> 40) & 0xff;
in ata_set_max_sectors()
1263
tf.device |= (
new_sectors
>> 24) & 0xf;
in ata_set_max_sectors()
1269
tf.lbal = (
new_sectors
>> 0) & 0xff;
in ata_set_max_sectors()
1270
tf.lbam = (
new_sectors
>>
in ata_set_max_sectors()
1372
u64
new_sectors
= ata_id_n_sectors(dev->id);
ata_hpa_resize()
local
[all...]
/kernel/linux/linux-5.10/drivers/md/
H
A
D
raid5.c
2426
static int resize_chunks(struct r5conf *conf, int new_disks, int
new_sectors
)
in resize_chunks()
argument
2434
* should equal to new_disks and
new_sectors
in resize_chunks()
2437
conf->scribble_sectors >=
new_sectors
)
in resize_chunks()
2447
new_sectors
/ RAID5_STRIPE_SECTORS(conf));
in resize_chunks()
2456
conf->scribble_sectors =
new_sectors
;
in resize_chunks()
/kernel/linux/linux-6.6/drivers/md/
H
A
D
raid5.c
2497
static int resize_chunks(struct r5conf *conf, int new_disks, int
new_sectors
)
in resize_chunks()
argument
2505
* should equal to new_disks and
new_sectors
in resize_chunks()
2508
conf->scribble_sectors >=
new_sectors
)
in resize_chunks()
2518
new_sectors
/ RAID5_STRIPE_SECTORS(conf));
in resize_chunks()
2527
conf->scribble_sectors =
new_sectors
;
in resize_chunks()
Completed in 27 milliseconds