/Linux-v6.6/fs/xfs/ |
D | xfs_iwalk.c | 40 * therefore cache the inobt records in kernel memory and only call the walk 41 * function when our memory buffer is full. @nr_recs is the number of records 45 * allocated inodes, as the inobt records may be stale by the time they are 63 /* Array of inobt records we cache. */ 84 /* Skip empty inobt records? */ 161 /* Allocate a prefetch buffer for inobt records. */ in xfs_iwalk_alloc() 248 * Set ourselves up for walking inobt records starting from a given point in 288 * the record into our cache, and then see if there are more records. in xfs_iwalk_ag_start() 291 * records. in xfs_iwalk_ag_start() 298 * If the LE lookup at @agino yields no records, jump ahead to the in xfs_iwalk_ag_start() [all …]
|
/Linux-v6.6/fs/ntfs/ |
D | logfile.h | 28 * These are followed by log records organized in pages headed by a log record 29 * header going up to log file size. Not all pages contain log records when a 30 * volume is first formatted, but as the volume ages, all records will be used. 31 * When the log file fills up, the records at the beginning are purged (by 89 * Constant for the log client indices meaning that there are no client records 90 * in this particular client array. Also inside the client records themselves, 91 * this means that there are no client records preceding or following this one. 120 /* 8*/ le16 log_clients; /* Number of log client records in the array of 121 log client records which follows this 124 in the array of log client records. [all …]
|
/Linux-v6.6/drivers/acpi/apei/ |
D | bert.c | 40 * Print "all" the error records in the BERT table, but avoid huge spam to 41 * the console if the BIOS included oversize records, or too many records. 42 * Skipping some records here does not lose anything because the full 63 /* No more error records. */ in bert_print_all() 74 pr_info_once("Error records from previous boot:\n"); in bert_print_all() 93 pr_info(HW_ERR "Skipped %d error records\n", skipped); in bert_print_all() 96 pr_info("Total records found: %d\n", printed + skipped); in bert_print_all()
|
/Linux-v6.6/Documentation/filesystems/ |
D | xfs-online-fsck-design.rst | 79 cross-references different types of metadata records with each other to look 364 - Inode records and indexes 383 errors and cross-references healthy records against other metadata to look for 424 Metadata structures in this category reflect records found in primary metadata, 510 compared the shadow records to the ondisk records. 520 metadata records. 590 coherent narrative cannot be formed from records collected, then the repair 594 designed to stage and validate all new records before committing the new 710 Targeted Fuzz Testing of Metadata Records 1077 The details of how these records are staged, written to disk, and committed [all …]
|
/Linux-v6.6/fs/xfs/libxfs/ |
D | xfs_btree_staging.h | 44 /* Number of records. */ 64 * This function will be called nr_records times to load records into 66 * field in in-core format. Records must be returned in sort order. 86 * The caller should set this to the number of records that will be 92 * Number of free records to leave in each leaf block. If the caller 107 * number of btree blocks needed to store nr_records records.
|
/Linux-v6.6/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_ras_eeprom.c | 541 dev_warn(adev->dev, "RAS records:%d exceed threshold:%d", in amdgpu_ras_eeprom_check_err_threshold() 562 * @num: number of records to write 583 DRM_ERROR("Writing %d EEPROM table records error:%d", in __amdgpu_ras_eeprom_write() 588 DRM_ERROR("Wrote %d records out of %d", in __amdgpu_ras_eeprom_write() 627 * a = first index to read (fri) + number of records in the table, in amdgpu_ras_eeprom_append_table() 631 * just append @num records starting at a; in amdgpu_ras_eeprom_append_table() 633 * append (N - a) records starting at a, and in amdgpu_ras_eeprom_append_table() 637 * append num records starting at a; and fix fri if b overwrote it, in amdgpu_ras_eeprom_append_table() 641 * write num records starting at a, which wraps around 0=N in amdgpu_ras_eeprom_append_table() 647 * the number of records present in the table after writing, is, in amdgpu_ras_eeprom_append_table() [all …]
|
D | amdgpu_ras_eeprom.h | 74 * and where the records start--always 81 /* Number of records in the table. 92 /* Maximum possible number of records 140 struct eeprom_table_record *records, const u32 num); 143 struct eeprom_table_record *records, const u32 num);
|
/Linux-v6.6/arch/x86/kernel/cpu/mce/ |
D | genpool.c | 18 * This memory pool is only to be used to save MCE records in MCE context. 20 * 2 pages to save MCE events for now (~80 MCE records at most). 29 * Compare the record "t" with each of the records on list "l" to see if 49 * The system has panicked - we'd like to peruse the list of MCE records 52 * also drop duplicate records (these were logged because some banks are 109 pr_warn_ratelimited("MCE records pool full!\n"); in mce_gen_pool_add()
|
/Linux-v6.6/include/uapi/linux/ |
D | dns_resolver.h | 60 DNS_LOOKUP_GOOD = 1, /* Good records obtained */ 61 DNS_LOOKUP_GOOD_WITH_BAD = 2, /* Good records, some decoding errors */ 81 * the server records. Each server records begins with a struct of type 88 __u8 nr_servers; /* Number of server records following this */ 94 * records for that server. Each address record begins with a struct of type
|
/Linux-v6.6/arch/x86/kvm/vmx/ |
D | pmu_intel.c | 184 struct x86_pmu_lbr *records = vcpu_to_lbr_records(vcpu); in intel_pmu_is_valid_lbr_msr() local 191 (index >= records->from && index < records->from + records->nr) || in intel_pmu_is_valid_lbr_msr() 192 (index >= records->to && index < records->to + records->nr); in intel_pmu_is_valid_lbr_msr() 194 if (!ret && records->info) in intel_pmu_is_valid_lbr_msr() 195 ret = (index >= records->info && index < records->info + records->nr); in intel_pmu_is_valid_lbr_msr() 273 * event, which helps KVM to save/restore guest LBR records in intel_pmu_create_guest_lbr_event() 309 * the LBR msrs records when the guest LBR event is scheduled in. 509 memset(&lbr_desc->records, 0, sizeof(lbr_desc->records)); in intel_pmu_refresh() 585 x86_perf_get_lbr(&lbr_desc->records); in intel_pmu_refresh() 587 lbr_desc->records.nr = 0; in intel_pmu_refresh() [all …]
|
/Linux-v6.6/include/linux/ |
D | ihex.h | 3 * Compact binary representation of ihex records. Some devices need their 16 drivers which would benefit from using separate records which are 55 /* Zero length marks end of records */ in ihex_validate_fw() 63 * run off the end while reading records... */ 76 dev_err(dev, "Firmware \"%s\" not valid IHEX records\n", in request_ihex_firmware()
|
/Linux-v6.6/tools/perf/Documentation/ |
D | perf.data-file-format.txt | 62 struct perf_header_string strings[nr]; /* variable length records */ 149 } events[nr]; /* Variable length records */ 173 } cpus[nr]; /* Variable length records */ 205 } nodes[nr]; /* Variable length records */ 221 } [nr]; /* Variable length records */ 234 } [nr]; /* Variable length records */ 373 Indicates that trace contains records of PERF_RECORD_COMPRESSED type 374 that have perf_events records in compressed form. 414 } [nr]; /* Variable length records */ 602 Describes a header feature. These are records used in pipe-mode that [all …]
|
D | perf-iostat.txt | 55 357708+0 records in 56 357707+0 records out 74 357708+0 records in 75 357707+0 records out
|
/Linux-v6.6/fs/xfs/scrub/ |
D | xfarray.c | 16 * Large Arrays of Fixed-Size Records 20 * large numbers of fixed-size records in memory that can be paged out. This 63 * Initialize a big memory array. Array records cannot be larger than a 67 * support that many records. 278 * the backing xfile. Returns ENODATA if we reach the end of the records. 308 * the first byte, since records cannot be larger than a page. in xfarray_find_data() 538 * Sort a small number of array records using scratchpad memory. The records 566 /* Grab a page for sorting records. */ 587 /* Release a page we grabbed for sorting records. */ 601 /* Decide if these records are eligible for in-page sorting. */ [all …]
|
D | rmap.c | 45 * The furthest-reaching of the rmapbt records that we've already 46 * processed. This enables us to detect overlapping records for space 52 * The previous rmapbt record, so that we can check for two records 126 * In reverse mapping records, the file mapping extent state 129 * convert rmapbt records to keys forgot to filter out the extent state bit, 190 /* Flag failures for records that overlap but cannot. */ 211 /* Overlap is only allowed if both records are data fork mappings. */ in xchk_rmapbt_check_overlapping() 225 /* Decide if two reverse-mapping records can be merged. */ 254 /* Flag failures for records that could be merged. */ 282 * Skip corrupt records. It is essential that we detect records in the in xchk_rmapbt_mark_bitmap() [all …]
|
/Linux-v6.6/Documentation/arch/s390/ |
D | monreader.rst | 2 Linux API for read access to z/VM Monitor Records 15 usable from user space and allows read access to the z/VM Monitor Records 137 followed by a set of one or more contiguous monitor records (similar to the 143 last byte of data. The start address is needed to handle "end-of-frame" records 148 of the monitor control element layout. The layout of the monitor records can 156 <first set of records> | 159 <last set of records> / 192 read with 0 size is valid but subsequent records may be missing.
|
/Linux-v6.6/tools/firmware/ |
D | ihex2fw.c | 66 fprintf(stderr, " -w: wide records (16-bit length)\n"); in usage() 67 fprintf(stderr, " -s: sort records by address\n"); in usage() 68 fprintf(stderr, " -j: include records for CS:IP/EIP address\n"); in usage() 165 fprintf(stderr, "out of memory for records\n"); in process_ihex() 238 /* These records contain the CS/IP or EIP where execution in process_ihex() 252 static struct ihex_binrec *records; variable 256 struct ihex_binrec **p = &records; in file_record() 273 struct ihex_binrec *p = records; in output_records()
|
/Linux-v6.6/drivers/usb/serial/ |
D | ezusb_convert.pl | 5 # convert an Intel HEX file into a set of C records usable by the firmware 19 # normal records, 01 for EOF 28 push(@records, [$addr, \@bytes]); 31 @sorted_records = sort { $a->[0] <=> $b->[0] } @records;
|
/Linux-v6.6/Documentation/networking/ |
D | tls-offload.rst | 58 and the ``strparser`` mechanism is used to delineate the records. Upon read 59 request, records are retrieved from the socket and passed to decryption routine. 124 so the initial records' TCP sequence number may be anywhere inside the segment. 138 segments may start at any point of a record and contain any number of records. 275 as received on wire, red stripes mark start of new records. 322 and counting all records since the just-confirmed one, it adds the number 323 of records it had seen to the record number provided by the kernel. 341 whenever it sees the records are no longer getting decrypted. 344 records. 348 records continue to be received fully encrypted stack retries the [all …]
|
D | tls.rst | 79 The sendfile system call will send the file's data over TLS records of maximum 88 TLS records are created and sent after each send() call, unless 201 recv will never return data from mixed types of TLS records. 239 this will look like TLS records had been tampered with and will result 245 TLS 1.3 only. Expect the sender to not pad records. This allows the data 282 number of RX records which had to be re-decrypted due to 284 also increment for non-data records. 287 number of data RX records which had to be re-decrypted due to
|
/Linux-v6.6/drivers/s390/char/ |
D | Kconfig | 147 Select this option if you want to be able to receive records collected 173 prompt "API for reading z/VM monitor service records" 176 Character device driver for reading z/VM monitor service records 180 prompt "API for writing z/VM monitor service records" 183 Character device driver for writing z/VM monitor service records
|
/Linux-v6.6/Documentation/bpf/ |
D | ringbuf.rst | 75 - variable-length records; 98 submit records of the length that's not known to verifier beforehand. It also 103 pointer directly to ring buffer memory. In a lot of cases records are larger 113 a record as discarded, and such records are supposed to be ignored by consumer 148 independent records and work with them without blocking other producers. This 180 completely lockless and independent. All records become available to consumer 181 in the order of reservations, but only after all previous records where 183 off submitted records, that were reserved later.
|
/Linux-v6.6/Documentation/admin-guide/device-mapper/ |
D | dm-dust.rst | 79 128+0 records in 80 128+0 records out 83 128+0 records in 84 128+0 records out 124 0+0 records in 125 0+0 records out 132 128+0 records in 133 128+0 records out
|
/Linux-v6.6/lib/pldmfw/ |
D | pldmfw_private.h | 101 u8 records[]; member 172 * @start: byte offset of the start of the PLDM records 174 * Converts a starting offset of the PLDM records into a pointer to the first 194 * @start: byte offset of the start of the records 195 * @count: the number of records 197 * for loop macro to iterate over all of the records of a PLDM file.
|
/Linux-v6.6/fs/jbd2/ |
D | revoke.c | 12 * Revoke is the mechanism used to prevent old log records for deleted 20 * revoked blocks. If there are multiple revoke records in the log 43 * cancelled. We still need to prevent old log records from 61 * We keep two hash tables of revoke records. One hashtable belongs to the 110 /* The revoke table is just a simple hash table of revoke records. */ 527 * Write revoke records to the journal for all entries in the current 563 jbd2_debug(1, "Wrote %d revoke records\n", count); in jbd2_journal_write_revoke_records() 585 revoke records: only the IO to the journal is omitted. */ in write_one_revoke_record() 666 * record all revoke records, including the tid of the latest instance 677 * First, setting revoke records. We create a new revoke record for [all …]
|