Home
last modified time | relevance | path

Searched refs:mem_op (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/spi/
H A Dspi-intel.c181 struct spi_mem_op mem_op; member
721 if (iop->mem_op.cmd.nbytes != op->cmd.nbytes || in intel_spi_cmp_mem_op()
722 iop->mem_op.cmd.buswidth != op->cmd.buswidth || in intel_spi_cmp_mem_op()
723 iop->mem_op.cmd.dtr != op->cmd.dtr) in intel_spi_cmp_mem_op()
726 if (iop->mem_op.addr.nbytes != op->addr.nbytes || in intel_spi_cmp_mem_op()
727 iop->mem_op.addr.dtr != op->addr.dtr) in intel_spi_cmp_mem_op()
730 if (iop->mem_op.data.dir != op->data.dir || in intel_spi_cmp_mem_op()
731 iop->mem_op.data.dtr != op->data.dtr) in intel_spi_cmp_mem_op()
734 if (iop->mem_op.data.dir != SPI_MEM_NO_DATA) { in intel_spi_cmp_mem_op()
735 if (iop->mem_op in intel_spi_cmp_mem_op()
[all...]
/linux/tools/perf/util/
H A Dmem-events.c420 op = mem_info__const_data_src(mem_info)->mem_op; in perf_mem__op_scnprintf()
627 u64 op = data_src->mem_op; in c2c_decode_stats()
815 switch (src.mem_op) { in mem_stat_index()
823 if (src.mem_op & PERF_MEM_OP_PFETCH) in mem_stat_index()
825 if (src.mem_op & PERF_MEM_OP_EXEC) in mem_stat_index()
H A Darm-spe.c897 union perf_mem_data_src data_src = { .mem_op = PERF_MEM_OP_NA }; in arm_spe__synth_data_source()
904 data_src.mem_op = PERF_MEM_OP_LOAD; in arm_spe__synth_data_source()
906 data_src.mem_op = PERF_MEM_OP_STORE; in arm_spe__synth_data_source()
/linux/tools/perf/util/bpf_skel/
H A Dsample_filter.bpf.c59 __u64 mem_op:5, /* type of opcode */ member
147 return kctx->data->data_src.mem_op; in perf_get_sample()
/linux/include/uapi/linux/
H A Dperf_event.h1302 __u64 mem_op : 5, /* Type of opcode */ member
1329 mem_op : 5; /* Type of opcode */ member
/linux/tools/include/uapi/linux/
H A Dperf_event.h1302 __u64 mem_op : 5, /* Type of opcode */ member
1329 mem_op : 5; /* Type of opcode */ member
/linux/tools/perf/Documentation/
H A Dperf-record.txt183 --filter 'mem_op == load || mem_op == store, mem_lvl > l1'
188 mem_op and mem_lvl fields come from the (memory) data_source, it'd only
194 $ sudo perf record -e cycles --filter 'mem_op == load'
206 p_stage_cyc, mem_op, mem_lvl, mem_snoop, mem_remote, mem_lock,
214 na, load, store, pfetch, exec (for mem_op)
/linux/arch/x86/events/intel/
H A Dds.c276 dse.mem_op = PERF_MEM_OP_STORE; in precise_datala_hsw()
278 dse.mem_op = PERF_MEM_OP_LOAD; in precise_datala_hsw()
388 src.mem_op = P(OP, STORE); in lnc_latency_data()
481 * so override the mem_op to say STORE instead in store_latency_data()
484 src.mem_op = P(OP,STORE); in store_latency_data()
/linux/arch/s390/kvm/
H A Dkvm-s390.c3145 struct kvm_s390_mem_op mem_op; in kvm_arch_vm_ioctl() local
3147 if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0) in kvm_arch_vm_ioctl()
3148 r = kvm_s390_vm_mem_op(kvm, &mem_op); in kvm_arch_vm_ioctl()
5944 struct kvm_s390_mem_op mem_op; in kvm_arch_vcpu_ioctl() local
5946 if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0) in kvm_arch_vcpu_ioctl()
5947 r = kvm_s390_vcpu_memsida_op(vcpu, &mem_op); in kvm_arch_vcpu_ioctl()