/linux/arch/mips/kernel/ |
A D | mips-mt.c | 235 struct class *mtc; in mt_init() local 237 mtc = class_create(THIS_MODULE, "mt"); in mt_init() 238 if (IS_ERR(mtc)) in mt_init() 239 return PTR_ERR(mtc); in mt_init() 241 mt_class = mtc; in mt_init()
|
/linux/drivers/scsi/ |
A D | st.c | 3565 if (mtc.mt_op == MTFSF || mtc.mt_op == MTFSFM || in st_ioctl() 3583 i = mtc.mt_op == MTREW || mtc.mt_op == MTOFFL || in st_ioctl() 3584 mtc.mt_op == MTRETEN || mtc.mt_op == MTEOM || in st_ioctl() 3585 mtc.mt_op == MTLOCK || mtc.mt_op == MTLOAD || in st_ioctl() 3586 mtc.mt_op == MTFSF || mtc.mt_op == MTFSFM || in st_ioctl() 3587 mtc.mt_op == MTBSF || mtc.mt_op == MTBSFM || in st_ioctl() 3596 (mtc.mt_op == MTREW || mtc.mt_op == MTOFFL || in st_ioctl() 3598 mtc.mt_op == MTBSF || mtc.mt_op == MTBSFM)) { in st_ioctl() 3604 if (mtc.mt_op == MTBSF || mtc.mt_op == MTBSFM) in st_ioctl() 3629 if (mtc.mt_op != MTNOP && mtc.mt_op != MTSETBLK && in st_ioctl() [all …]
|
/linux/arch/powerpc/boot/dts/ |
A D | digsy_mtc.dts | 16 model = "intercontrol,digsy-mtc"; 17 compatible = "intercontrol,digsy-mtc";
|
/linux/tools/perf/util/intel-pt-decoder/ |
A D | intel-pt-decoder.c | 788 *last_mtc |= mtc & mask; in intel_pt_fixup_last_mtc() 789 if (*last_mtc >= mtc) { in intel_pt_fixup_last_mtc() 829 mtc = pkt_info->packet.payload; in intel_pt_calc_cyc_cb() 835 if (mtc > data->last_mtc) in intel_pt_calc_cyc_cb() 836 mtc_delta = mtc - data->last_mtc; in intel_pt_calc_cyc_cb() 840 data->last_mtc = mtc; in intel_pt_calc_cyc_cb() 1703 uint32_t mtc, mtc_delta; in intel_pt_calc_mtc_timestamp() local 1708 mtc = decoder->packet.payload; in intel_pt_calc_mtc_timestamp() 1716 if (mtc > decoder->last_mtc) in intel_pt_calc_mtc_timestamp() 1717 mtc_delta = mtc - decoder->last_mtc; in intel_pt_calc_mtc_timestamp() [all …]
|
/linux/mm/ |
A D | migrate.c | 1600 struct migration_target_control *mtc; in alloc_migration_target() local 1607 mtc = (struct migration_target_control *)private; in alloc_migration_target() 1608 gfp_mask = mtc->gfp_mask; in alloc_migration_target() 1609 nid = mtc->nid; in alloc_migration_target() 1617 return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask); in alloc_migration_target() 1633 new_page = __alloc_pages(gfp_mask, order, nid, mtc->nmask); in alloc_migration_target() 1658 struct migration_target_control mtc = { in do_move_pages_to_node() local 1664 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL); in do_move_pages_to_node()
|
A D | memory_hotplug.c | 1746 struct migration_target_control mtc = { in do_migrate_range() local 1755 mtc.nid = page_to_nid(list_first_entry(&source, struct page, lru)); in do_migrate_range() 1762 node_clear(mtc.nid, nmask); in do_migrate_range() 1764 node_set(mtc.nid, nmask); in do_migrate_range() 1766 (unsigned long)&mtc, MIGRATE_SYNC, MR_MEMORY_HOTPLUG, NULL); in do_migrate_range()
|
A D | memory-failure.c | 2089 struct migration_target_control mtc = { in __soft_offline_page() local 2130 (unsigned long)&mtc, MIGRATE_SYNC, MR_MEMORY_FAILURE, NULL); in __soft_offline_page()
|
A D | mempolicy.c | 1058 struct migration_target_control mtc = { in migrate_to_node() local 1077 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL); in migrate_to_node()
|
A D | gup.c | 1846 struct migration_target_control mtc = { in check_and_migrate_movable_pages() local 1898 NULL, (unsigned long)&mtc, MIGRATE_SYNC, in check_and_migrate_movable_pages()
|
A D | vmscan.c | 1463 struct migration_target_control mtc = { in alloc_demote_page() local 1475 return alloc_migration_target(page, (unsigned long)&mtc); in alloc_demote_page()
|
A D | page_alloc.c | 8965 struct migration_target_control mtc = { in __alloc_contig_migrate_range() local 8995 NULL, (unsigned long)&mtc, cc->mode, MR_CONTIG_RANGE, NULL); in __alloc_contig_migrate_range()
|
/linux/arch/powerpc/platforms/52xx/ |
A D | Kconfig | 26 intercontrol,digsy-mtc
|
/linux/tools/perf/arch/x86/util/ |
A D | intel-pt.c | 191 int mtc, mtc_periods = 0, mtc_period; in intel_pt_default_config() local 200 &mtc) != 1) in intel_pt_default_config() 201 mtc = 1; in intel_pt_default_config() 203 if (mtc) { in intel_pt_default_config()
|
/linux/tools/perf/Documentation/ |
A D | perf-intel-pt.txt | 151 used - refer to the 'mtc' config term. When MTC is used, however, the values 238 /sys/bus/event_source/devices/intel_pt/format/mtc:config:9 361 mtc Produces MTC timing packets. 369 /sys/bus/event_source/devices/intel_pt/caps/mtc 377 mtc_period Specifies how frequently MTC packets are produced - see mtc 1236 TSC is not supported and tsc=0 must be specified. That means mtc is useless, so add mtc=0. 1242 …$ sudo perf kvm --guest --host --guestkallsyms $KALLSYMS record --kcore -e intel_pt/tsc=0,mtc=0,cy…
|
/linux/arch/x86/events/intel/ |
A D | pt.c | 57 PT_CAP(mtc, 0, CPUID_EBX, BIT(3)), 106 PMU_FORMAT_ATTR(mtc, "config:9" );
|
/linux/Documentation/scsi/ |
A D | ChangeLog.megaraid | 197 Jun'ichi Nomura [mailto:jnomura@mtc.biglobe.ne.jp]
|