/linux-6.14.4/mm/kmsan/ |
D | init.c | 145 static struct smallstack collect = { variable 173 while (collect.index >= 3) { in do_collection() 174 page = smallstack_pop(&collect); in do_collection() 175 shadow = smallstack_pop(&collect); in do_collection() 176 origin = smallstack_pop(&collect); in do_collection() 177 kmsan_setup_meta(page, shadow, origin, collect.order); in do_collection() 178 __free_pages_core(page, collect.order, MEMINIT_EARLY); in do_collection() 185 .order = collect.order - 1, in collect_split() 190 if (!collect.order) in collect_split() 192 while (collect.index) { in collect_split() [all …]
|
/linux-6.14.4/Documentation/images/ |
D | logo.svg | 104 inkscape:collect="always"> 125 inkscape:collect="always"> 129 inkscape:collect="always" /> 138 inkscape:collect="always"> 142 inkscape:collect="always" /> 146 inkscape:collect="always"> 159 inkscape:collect="always"> 163 inkscape:collect="always" /> 180 inkscape:collect="always"> 184 inkscape:collect="always" /> [all …]
|
/linux-6.14.4/tools/perf/Documentation/ |
D | perf-arm-spe.txt | 24 2. Collect data about the operation 38 Collect data about the operation 58 When the buffer fills, an interrupt is sent and the driver signals Perf to collect the records. 144 branch_filter=1 - collect branches only (PMSFCR.B) 147 load_filter=1 - collect loads only (PMSFCR.LD) 148 min_latency=<n> - collect only samples with this latency or higher* (PMSLATFR) 149 …pa_enable=1 - collect physical address (as well as VA) of loads/stores (PMSCR.PA) - requir… 150 …pct_enable=1 - collect physical timestamp instead of virtual timestamp (PMSCR.PCT) - requir… 151 store_filter=1 - collect stores only (PMSFCR.ST) 153 …discard=1 - enable SPE PMU events but don't collect sample data - see 'Discard mode' (PM… [all …]
|
D | perf-record.txt | 191 Also user should request to collect that information (with -d option in 250 Collect data with this RT SCHED_FIFO priority. 253 Collect data without buffering. 373 Collect raw sample records from all opened counters (default for tracepoint counters). 377 Collect samples only on the list of CPUs provided. Multiple CPUs can be provided as a 601 Collect callchains only from kernel space. I.e. this option sets 605 Collect callchains only from user space. I.e. this option sets 667 Collect and synthesize given type of events (comma separated). Note that 685 the beginning of record, collect them during finalizing an output file. 827 Enable off-cpu profiling with BPF. The BPF program will collect [all …]
|
D | perf-iostat.txt | 52 2. Collect metrics for all PCIe root ports: 71 3. Collect metrics for comma-separated list of PCIe root ports:
|
/linux-6.14.4/Documentation/admin-guide/perf/ |
D | hns3-pmu.rst | 6 End Point device to collect performance statistics of HiSilicon SoC NIC. 82 PMU collect performance statistics for all HNS3 PCIe functions of IO DIE. 89 PMU collect performance statistic of one whole physical port. The port id 98 PMU collect performance statistic of one tc of physical port. The port id 106 PMU collect performance statistic of one PF/VF. The function id is BDF of 123 PMU collect performance statistic of one queue of PF/VF. The function id 131 PMU collect performance statistic of one interrupt of PF/VF. The function
|
/linux-6.14.4/Documentation/dev-tools/ |
D | kcov.rst | 9 Note that KCOV does not aim to collect as much coverage as possible. It aims 10 to collect more or less stable coverage that is a function of syscall inputs. 11 To achieve this goal, it does not collect coverage in soft/hard interrupts 15 Besides collecting code coverage, KCOV can also collect comparison operands. 18 Besides collecting coverage data from syscall handlers, KCOV can also collect 46 The following program demonstrates how to use KCOV to collect coverage for a 131 If a program needs to collect coverage from several threads (independently), 224 userspace process, KCOV can also collect coverage for parts of the kernel 227 Using KCOV to collect remote coverage requires: 287 The following program demonstrates using KCOV to collect coverage from both
|
/linux-6.14.4/drivers/s390/scsi/ |
D | zfcp_diag.c | 108 * to collect and update Port Data. 109 * @adapter: Adapter to collect Port Data from. 138 * to collect and update Config Data. 139 * @adapter: Adapter to collect Config Data from. 219 * zfcp_diag_update_buffer_limited() - Collect diagnostics and update a 221 * @adapter: Adapter to collect the diagnostics from.
|
/linux-6.14.4/drivers/misc/cxl/ |
D | hcalls.h | 91 * cxl_h_get_afu_err - collect the AFU error buffer 100 * cxl_h_get_config - collect configuration record for the 121 * cxl_h_collect_vpd - Collect VPD for the coherent platform function. 151 * cxl_h_collect_int_info - Collect interrupt info about a coherent 176 * cxl_h_collect_vpd - Collect VPD for the coherent platform function.
|
D | hcalls.c | 30 #define H_CONTROL_CA_FUNCTION_GET_AFU_ERR 5 /* collect the AFU error buffer */ 31 #define H_CONTROL_CA_FUNCTION_GET_CONFIG 6 /* collect configuration record */ 34 #define H_CONTROL_CA_FUNCTION_COLLECT_VPD 9 /* collect VPD */ 43 #define H_CONTROL_CA_FACILITY_COLLECT_VPD 2 /* collect VPD */ 292 * cxl_h_get_afu_err - collect the AFU error buffer 308 * cxl_h_get_config - collect configuration record for the 341 * cxl_h_collect_vpd - Collect VPD for the coherent platform function. 394 * cxl_h_collect_int_info - Collect interrupt info about a coherent 420 …case H_STATE: /* The coherent platform function is not in a valid state to collect interrupt… in cxl_h_collect_int_info() 524 * cxl_h_collect_vpd - Collect VPD for the coherent platform function.
|
/linux-6.14.4/rust/macros/ |
D | pin_data.rs | 55 "Self".parse::<TokenStream>().unwrap().into_iter().collect() in pin_data() 60 .collect::<Vec<_>>(); in pin_data() 71 .collect::<Vec<_>>(); in pin_data() 126 .collect(), in replace_self_and_deny_type_defs()
|
D | paste.rs | 50 let tokens = group.stream().into_iter().collect::<Vec<TokenTree>>(); in concat_helper() 62 let pasted: String = segments.into_iter().map(|x| x.0).collect(); in concat() 71 let mut stream: Vec<_> = group.stream().into_iter().collect(); in expand() 83 let mut group = Group::new(delimiter, stream.into_iter().collect()); in expand()
|
D | vtable.rs | 8 let mut tokens: Vec<_> = ts.into_iter().collect(); in vtable() 93 .collect(); in vtable() 95 tokens.into_iter().collect() in vtable()
|
/linux-6.14.4/Documentation/ABI/removed/ |
D | sysfs-kernel-fadump_release_opalcore | 8 collect the dump on OPAL based machine. It used to release 9 the memory used to collect the opalcore.
|
/linux-6.14.4/Documentation/ABI/obsolete/ |
D | sysfs-kernel-fadump_registered | 7 Helps to control the dump collect feature from userspace. 8 Setting 1 to this file enables the system to collect the
|
/linux-6.14.4/drivers/input/joystick/ |
D | fsia6b.c | 45 enum ibus_state { SYNC, COLLECT, PROCESS }; enumerator 75 fsia6b->packet.state = COLLECT; in fsia6b_serio_irq() 78 case COLLECT: in fsia6b_serio_irq() 119 fsia6b->packet.state = COLLECT; in fsia6b_serio_irq()
|
/linux-6.14.4/drivers/thermal/mediatek/ |
D | Kconfig | 18 This driver configures thermal controllers to collect 28 thermal controllers to collect temperatures via ASIF
|
/linux-6.14.4/init/ |
D | initramfs.c | 217 Collect, enumerator 239 static __initdata char *collect; variable 248 collect = collected = buf; in read_into() 251 state = Collect; in read_into() 268 memcpy(collect, victim, n); in do_collect() 270 collect += n; in do_collect() 299 collect = collected = symlink_buf; in do_header() 302 state = Collect; in do_header() 454 [Collect] = do_collect,
|
/linux-6.14.4/Documentation/ABI/testing/ |
D | sysfs-fs-ext4 | 6 collect statistics, which are shown during the unmount. 7 1 means to collect statistics, 0 means not to collect
|
D | sysfs-kernel-fadump | 21 Helps to control the dump collect feature from userspace. 22 Setting 1 to this file enables the system to collect the
|
/linux-6.14.4/drivers/video/fbdev/omap2/omapfb/dss/ |
D | Kconfig | 27 bool "Collect DSS IRQ statistics" 30 Collect DSS IRQ statistics, printable via debugfs.
|
/linux-6.14.4/drivers/scsi/bfa/ |
D | bfad_debugfs.c | 29 * fwtrc: To collect current firmware trace. 30 * drvtrc: To collect current driver trace 31 * fwsave: To collect last saved fw trace as a result of firmware crash. 93 printk(KERN_INFO "bfad[%d]: Failed to collect fwtrc\n", in bfad_debugfs_open_fwtrc() 135 printk(KERN_INFO "bfad[%d]: Failed to collect fwsave\n", in bfad_debugfs_open_fwsave()
|
/linux-6.14.4/drivers/net/ethernet/brocade/bna/ |
D | bnad_debugfs.c | 28 * fwtrc: To collect current firmware trace. 29 * fwsave: To collect last saved fw trace as a result of firmware crash. 71 netdev_warn(bnad->netdev, "failed to collect fwtrc\n"); in bnad_debugfs_open_fwtrc() 111 netdev_warn(bnad->netdev, "failed to collect fwsave\n"); in bnad_debugfs_open_fwsave() 210 netdev_warn(bnad->netdev, "failed to collect drvinfo\n"); in bnad_debugfs_open_drvinfo()
|
/linux-6.14.4/drivers/gpu/drm/omapdrm/ |
D | Kconfig | 38 bool "Collect DSS IRQ statistics" 42 Collect DSS IRQ statistics, printable via debugfs.
|
/linux-6.14.4/net/ipv4/ |
D | fou_bpf.c | 30 * ipip device in collect-metadata mode. 79 * on an ipip device in collect-metadata mode.
|