| /linux/drivers/md/dm-vdo/indexer/ |
| H A D | open-chapter.c | 80 &open_chapter->records); in uds_make_open_chapter() 95 memset(open_chapter->records, 0, records_size(open_chapter)); in uds_reset_open_chapter() 122 record = &open_chapter->records[record_number]; in probe_chapter_slots() 148 *metadata = open_chapter->records[record_number].data; in uds_search_open_chapter() 172 record = &open_chapter->records[record_number]; in uds_put_open_chapter() 197 vdo_free(open_chapter->records); in uds_free_open_chapter() 212 unsigned int records = 0; in fill_delta_chapter_index() local 228 fill_record = &zone->records[zone->size]; in fill_delta_chapter_index() 236 for (records = 0; records < records_per_chapter; records++) { in fill_delta_chapter_index() 237 struct uds_volume_record *record = &collated_records[records]; in fill_delta_chapter_index() [all …]
|
| H A D | open-chapter.h | 39 struct uds_volume_record *records; member
|
| /linux/tools/testing/selftests/landlock/ |
| H A D | ptrace_test.c | 340 struct audit_records records; in TEST_F() local 343 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 344 EXPECT_EQ(0, records.access); in TEST_F() 345 EXPECT_EQ(0, records.domain); in TEST_F() 381 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 382 EXPECT_EQ(0, records.access); in TEST_F() 384 EXPECT_EQ(1, records.domain); in TEST_F() 428 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 429 EXPECT_EQ(0, records.access); in TEST_F() 430 EXPECT_EQ(0, records.domain); in TEST_F()
|
| H A D | audit_test.c | 357 struct audit_records records; in TEST_F() local 408 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 411 EXPECT_EQ(0, records.access); in TEST_F() 413 EXPECT_EQ(1, records.access); in TEST_F() 415 EXPECT_EQ(0, records.domain); in TEST_F() 544 struct audit_records records; in TEST_F() local 602 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 603 EXPECT_EQ(0, records.access); in TEST_F() 604 EXPECT_EQ(0, records.domain); in TEST_F() 621 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() [all …]
|
| H A D | fs_test.c | 7134 struct audit_records records; in TEST_F() local 7153 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 7154 EXPECT_EQ(0, records.access); in TEST_F() 7155 EXPECT_EQ(0, records.domain); in TEST_F() 7185 struct audit_records records; in TEST_F() local 7206 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() 7207 EXPECT_EQ(0, records.access); in TEST_F() 7208 EXPECT_EQ(0, records.domain); in TEST_F() 7213 struct audit_records records; in TEST_F() local 7223 EXPECT_EQ(0, audit_count_records(self->audit_fd, &records)); in TEST_F() [all …]
|
| H A D | audit.h | 341 static int audit_count_records(int audit_fd, struct audit_records *records) in audit_count_records() argument 346 records->access = 0; in audit_count_records() 347 records->domain = 0; in audit_count_records() 361 records->access++; in audit_count_records() 364 records->domain++; in audit_count_records()
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-iostat.txt | 55 357708+0 records in 56 357707+0 records out 74 357708+0 records in 75 357707+0 records out
|
| H A 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 */ 383 Indicates that trace contains records of PERF_RECORD_COMPRESSED2 type 384 that have perf_events records in compressed form. 424 } [nr]; /* Variable length records */ 629 Describes a header feature. These are records used in pipe-mode that [all …]
|
| H A D | security.txt | 140 monitoring and observability operations. Inspect system audit records for 155 audit records using journalctl command or /var/log/audit/audit.log so the 156 output would contain AVC denied records related to perf_event: 168 be generated using the system audit records about blocking perf_event access.
|
| /linux/drivers/usb/serial/ |
| H A D | ezusb_convert.pl | 28 push(@records, [$addr, \@bytes]); 31 @sorted_records = sort { $a->[0] <=> $b->[0] } @records;
|
| /linux/drivers/gpu/drm/amd/ras/rascore/ |
| H A D | ras_umc.c | 278 struct eeprom_umc_record *records, u32 num) in ras_umc_get_new_records() argument 293 memcpy(&records[i], entries[i], sizeof(struct eeprom_umc_record)); in ras_umc_get_new_records() 512 struct eeprom_umc_record *records; in ras_umc_handle_bad_pages() local 515 records = kzalloc_objs(*records, MAX_ECC_NUM_PER_RETIREMENT); in ras_umc_handle_bad_pages() 516 if (!records) in ras_umc_handle_bad_pages() 519 count = ras_umc_get_new_records(ras_core, records, in ras_umc_handle_bad_pages() 526 ret = ras_umc_add_bad_pages(ras_core, records, count, false); in ras_umc_handle_bad_pages() 543 kfree(records); in ras_umc_handle_bad_pages()
|
| /linux/tools/testing/selftests/net/bench/page_pool/ |
| H A D | time_bench.c | 300 int records; in time_bench_print_stats_cpumask() member 318 sum.records++; in time_bench_print_stats_cpumask() 323 if (sum.records) /* avoid div-by-zero */ in time_bench_print_stats_cpumask() 324 average = sum.tsc_cycles / sum.records; in time_bench_print_stats_cpumask() 326 average, sum.records, step); in time_bench_print_stats_cpumask()
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A 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/tools/hv/ |
| H A D | hv_kvp_daemon.c | 127 struct kvp_record *records; member 176 fwrite(kvp_file_info[pool].records, sizeof(struct kvp_record), in kvp_update_file() 198 kvp_file_info[pool].records[i].key, in kvp_dump_initial_pools() 199 kvp_file_info[pool].records[i].value); in kvp_dump_initial_pools() 206 struct kvp_record *record = kvp_file_info[pool].records; in kvp_update_mem_state() 252 kvp_file_info[pool].records = record; in kvp_update_mem_state() 284 kvp_file_info[i].records = malloc(alloc_unit); in kvp_file_init() 285 if (kvp_file_info[i].records == NULL) in kvp_file_init() 309 record = kvp_file_info[pool].records; in kvp_key_delete() 376 record = kvp_file_info[pool].records; in kvp_key_add_or_modify() [all …]
|
| /linux/Documentation/arch/powerpc/ |
| H A D | vpa-dtl.rst | 36 this data is made available as PERF_RECORD_AUXTRACE records. 41 based on timestamp. When the different PERF_RECORD_XX records are processed, 75 There are different PERF_RECORD_XX records. In that records corresponding to 122 processing of PERF_RECORD_AUXTRACE records will translate to meaningful data
|
| /linux/lib/pldmfw/ |
| H A D | pldmfw.c | 27 struct list_head records; member 183 data->record_start = record_area->records; in pldm_parse_header() 336 list_add_tail(&record->entry, &data->records); in pldm_parse_one_record() 562 list_for_each_entry_safe(record, r_safe, &data->records, entry) { in pldmfw_free_priv() 706 list_for_each_entry(record, &data->records, entry) { in pldm_find_matching_record() 855 INIT_LIST_HEAD(&data->records); in pldmfw_flash_image()
|
| /linux/Documentation/admin-guide/ |
| H A D | filesystem-monitoring.rst | 44 The order of records is not guaranteed, and new records might be added 46 must be prepared to skip over unknown records. Please refer to
|
| /linux/tools/firmware/ |
| H A D | ihex2fw.c | 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/Documentation/driver-api/pldmfw/ |
| H A D | index.rst | 40 length, including version strings and the number of records and components. 50 Endian to CPU host format. Additionally the records, descriptors, and 60 2. Scan through the records and determine if the device matches any record
|
| H A D | file-format.rst | 9 package header, one or more firmware records, and one or more components 77 The device firmware records area starts with a count indicating the total 78 number of records in the file, followed by each record. A single device
|
| /linux/drivers/gpu/drm/amd/amdgpu/ |
| H A D | amdgpu_ras_eeprom.h | 154 struct eeprom_table_record *records, const u32 num); 157 struct eeprom_table_record *records, const u32 num);
|
| /linux/Documentation/bpf/ |
| H A 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/Documentation/arch/s390/ |
| H A D | monreader.rst | 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/tools/kvm/kvm_stat/ |
| H A D | kvm_stat.txt | 115 --skip-zero-records:: 116 omit records with all zeros in logging mode
|
| /linux/Documentation/ABI/testing/ |
| H A D | dev-kmsg | 35 records are available read() will block, or if O_NONBLOCK is 44 Subsequent reads() will return available records again. 64 or write only whole variable length messages (records) that are
|