Commit 96b90f27 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull perf updates from Ingo Molnar:
 "This update has mostly fixes, but also other bits:

   - perf tooling fixes

   - PMU driver fixes

   - Intel Broadwell PMU driver HW-enablement for LBR callstacks

   - a late coming 'perf kmem' tool update that enables it to also
     analyze page allocation data.  Note, this comes with MM tracepoint
     changes that we believe to not break anything: because it changes
     the formerly opaque 'struct page *' field that uniquely identifies
     pages to 'pfn' which identifies pages uniquely too, but isn't as
     opaque and can be used for other purposes as well"

* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  perf/x86/intel/pt: Fix and clean up error handling in pt_event_add()
  perf/x86/intel: Add Broadwell support for the LBR callstack
  perf/x86/intel/rapl: Fix energy counter measurements but supporing per domain energy units
  perf/x86/intel: Fix Core2,Atom,NHM,WSM cycles:pp events
  perf/x86: Fix hw_perf_event::flags collision
  perf probe: Fix segfault when probe with lazy_line to file
  perf probe: Find compilation directory path for lazy matching
  perf probe: Set retprobe flag when probe in address-based alternative mode
  perf kmem: Analyze page allocator events also
  tracing, mm: Record pfn instead of pointer to struct page
parents 396c9df2 0c99241c
...@@ -65,15 +65,15 @@ struct event_constraint { ...@@ -65,15 +65,15 @@ struct event_constraint {
/* /*
* struct hw_perf_event.flags flags * struct hw_perf_event.flags flags
*/ */
#define PERF_X86_EVENT_PEBS_LDLAT 0x1 /* ld+ldlat data address sampling */ #define PERF_X86_EVENT_PEBS_LDLAT 0x0001 /* ld+ldlat data address sampling */
#define PERF_X86_EVENT_PEBS_ST 0x2 /* st data address sampling */ #define PERF_X86_EVENT_PEBS_ST 0x0002 /* st data address sampling */
#define PERF_X86_EVENT_PEBS_ST_HSW 0x4 /* haswell style datala, store */ #define PERF_X86_EVENT_PEBS_ST_HSW 0x0004 /* haswell style datala, store */
#define PERF_X86_EVENT_COMMITTED 0x8 /* event passed commit_txn */ #define PERF_X86_EVENT_COMMITTED 0x0008 /* event passed commit_txn */
#define PERF_X86_EVENT_PEBS_LD_HSW 0x10 /* haswell style datala, load */ #define PERF_X86_EVENT_PEBS_LD_HSW 0x0010 /* haswell style datala, load */
#define PERF_X86_EVENT_PEBS_NA_HSW 0x20 /* haswell style datala, unknown */ #define PERF_X86_EVENT_PEBS_NA_HSW 0x0020 /* haswell style datala, unknown */
#define PERF_X86_EVENT_EXCL 0x40 /* HT exclusivity on counter */ #define PERF_X86_EVENT_EXCL 0x0040 /* HT exclusivity on counter */
#define PERF_X86_EVENT_DYNAMIC 0x80 /* dynamic alloc'd constraint */ #define PERF_X86_EVENT_DYNAMIC 0x0080 /* dynamic alloc'd constraint */
#define PERF_X86_EVENT_RDPMC_ALLOWED 0x40 /* grant rdpmc permission */ #define PERF_X86_EVENT_RDPMC_ALLOWED 0x0100 /* grant rdpmc permission */
struct amd_nb { struct amd_nb {
......
...@@ -3275,7 +3275,7 @@ __init int intel_pmu_init(void) ...@@ -3275,7 +3275,7 @@ __init int intel_pmu_init(void)
hw_cache_extra_regs[C(NODE)][C(OP_WRITE)][C(RESULT_ACCESS)] = HSW_DEMAND_WRITE| hw_cache_extra_regs[C(NODE)][C(OP_WRITE)][C(RESULT_ACCESS)] = HSW_DEMAND_WRITE|
BDW_L3_MISS_LOCAL|HSW_SNOOP_DRAM; BDW_L3_MISS_LOCAL|HSW_SNOOP_DRAM;
intel_pmu_lbr_init_snb(); intel_pmu_lbr_init_hsw();
x86_pmu.event_constraints = intel_bdw_event_constraints; x86_pmu.event_constraints = intel_bdw_event_constraints;
x86_pmu.pebs_constraints = intel_hsw_pebs_event_constraints; x86_pmu.pebs_constraints = intel_hsw_pebs_event_constraints;
......
...@@ -558,6 +558,8 @@ struct event_constraint intel_core2_pebs_event_constraints[] = { ...@@ -558,6 +558,8 @@ struct event_constraint intel_core2_pebs_event_constraints[] = {
INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */ INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */
INTEL_FLAGS_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */ INTEL_FLAGS_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */
INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */ INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
/* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01),
EVENT_CONSTRAINT_END EVENT_CONSTRAINT_END
}; };
...@@ -565,6 +567,8 @@ struct event_constraint intel_atom_pebs_event_constraints[] = { ...@@ -565,6 +567,8 @@ struct event_constraint intel_atom_pebs_event_constraints[] = {
INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */ INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */ INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */
INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */ INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
/* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01),
EVENT_CONSTRAINT_END EVENT_CONSTRAINT_END
}; };
...@@ -588,6 +592,8 @@ struct event_constraint intel_nehalem_pebs_event_constraints[] = { ...@@ -588,6 +592,8 @@ struct event_constraint intel_nehalem_pebs_event_constraints[] = {
INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */ INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */ INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */ INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
/* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
EVENT_CONSTRAINT_END EVENT_CONSTRAINT_END
}; };
...@@ -603,6 +609,8 @@ struct event_constraint intel_westmere_pebs_event_constraints[] = { ...@@ -603,6 +609,8 @@ struct event_constraint intel_westmere_pebs_event_constraints[] = {
INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */ INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */ INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */ INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
/* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
EVENT_CONSTRAINT_END EVENT_CONSTRAINT_END
}; };
......
...@@ -988,39 +988,36 @@ static int pt_event_add(struct perf_event *event, int mode) ...@@ -988,39 +988,36 @@ static int pt_event_add(struct perf_event *event, int mode)
int ret = -EBUSY; int ret = -EBUSY;
if (pt->handle.event) if (pt->handle.event)
goto out; goto fail;
buf = perf_aux_output_begin(&pt->handle, event); buf = perf_aux_output_begin(&pt->handle, event);
if (!buf) { ret = -EINVAL;
ret = -EINVAL; if (!buf)
goto out; goto fail_stop;
}
pt_buffer_reset_offsets(buf, pt->handle.head); pt_buffer_reset_offsets(buf, pt->handle.head);
if (!buf->snapshot) { if (!buf->snapshot) {
ret = pt_buffer_reset_markers(buf, &pt->handle); ret = pt_buffer_reset_markers(buf, &pt->handle);
if (ret) { if (ret)
perf_aux_output_end(&pt->handle, 0, true); goto fail_end_stop;
goto out;
}
} }
if (mode & PERF_EF_START) { if (mode & PERF_EF_START) {
pt_event_start(event, 0); pt_event_start(event, 0);
if (hwc->state == PERF_HES_STOPPED) { ret = -EBUSY;
pt_event_del(event, 0); if (hwc->state == PERF_HES_STOPPED)
ret = -EBUSY; goto fail_end_stop;
}
} else { } else {
hwc->state = PERF_HES_STOPPED; hwc->state = PERF_HES_STOPPED;
} }
ret = 0; return 0;
out:
if (ret)
hwc->state = PERF_HES_STOPPED;
fail_end_stop:
perf_aux_output_end(&pt->handle, 0, true);
fail_stop:
hwc->state = PERF_HES_STOPPED;
fail:
return ret; return ret;
} }
......
...@@ -62,6 +62,14 @@ ...@@ -62,6 +62,14 @@
#define RAPL_IDX_PP1_NRG_STAT 3 /* gpu */ #define RAPL_IDX_PP1_NRG_STAT 3 /* gpu */
#define INTEL_RAPL_PP1 0x4 /* pseudo-encoding */ #define INTEL_RAPL_PP1 0x4 /* pseudo-encoding */
#define NR_RAPL_DOMAINS 0x4
static const char *rapl_domain_names[NR_RAPL_DOMAINS] __initconst = {
"pp0-core",
"package",
"dram",
"pp1-gpu",
};
/* Clients have PP0, PKG */ /* Clients have PP0, PKG */
#define RAPL_IDX_CLN (1<<RAPL_IDX_PP0_NRG_STAT|\ #define RAPL_IDX_CLN (1<<RAPL_IDX_PP0_NRG_STAT|\
1<<RAPL_IDX_PKG_NRG_STAT|\ 1<<RAPL_IDX_PKG_NRG_STAT|\
...@@ -112,7 +120,6 @@ static struct perf_pmu_events_attr event_attr_##v = { \ ...@@ -112,7 +120,6 @@ static struct perf_pmu_events_attr event_attr_##v = { \
struct rapl_pmu { struct rapl_pmu {
spinlock_t lock; spinlock_t lock;
int hw_unit; /* 1/2^hw_unit Joule */
int n_active; /* number of active events */ int n_active; /* number of active events */
struct list_head active_list; struct list_head active_list;
struct pmu *pmu; /* pointer to rapl_pmu_class */ struct pmu *pmu; /* pointer to rapl_pmu_class */
...@@ -120,6 +127,7 @@ struct rapl_pmu { ...@@ -120,6 +127,7 @@ struct rapl_pmu {
struct hrtimer hrtimer; struct hrtimer hrtimer;
}; };
static int rapl_hw_unit[NR_RAPL_DOMAINS] __read_mostly; /* 1/2^hw_unit Joule */
static struct pmu rapl_pmu_class; static struct pmu rapl_pmu_class;
static cpumask_t rapl_cpu_mask; static cpumask_t rapl_cpu_mask;
static int rapl_cntr_mask; static int rapl_cntr_mask;
...@@ -127,6 +135,7 @@ static int rapl_cntr_mask; ...@@ -127,6 +135,7 @@ static int rapl_cntr_mask;
static DEFINE_PER_CPU(struct rapl_pmu *, rapl_pmu); static DEFINE_PER_CPU(struct rapl_pmu *, rapl_pmu);
static DEFINE_PER_CPU(struct rapl_pmu *, rapl_pmu_to_free); static DEFINE_PER_CPU(struct rapl_pmu *, rapl_pmu_to_free);
static struct x86_pmu_quirk *rapl_quirks;
static inline u64 rapl_read_counter(struct perf_event *event) static inline u64 rapl_read_counter(struct perf_event *event)
{ {
u64 raw; u64 raw;
...@@ -134,15 +143,28 @@ static inline u64 rapl_read_counter(struct perf_event *event) ...@@ -134,15 +143,28 @@ static inline u64 rapl_read_counter(struct perf_event *event)
return raw; return raw;
} }
static inline u64 rapl_scale(u64 v) #define rapl_add_quirk(func_) \
do { \
static struct x86_pmu_quirk __quirk __initdata = { \
.func = func_, \
}; \
__quirk.next = rapl_quirks; \
rapl_quirks = &__quirk; \
} while (0)
static inline u64 rapl_scale(u64 v, int cfg)
{ {
if (cfg > NR_RAPL_DOMAINS) {
pr_warn("invalid domain %d, failed to scale data\n", cfg);
return v;
}
/* /*
* scale delta to smallest unit (1/2^32) * scale delta to smallest unit (1/2^32)
* users must then scale back: count * 1/(1e9*2^32) to get Joules * users must then scale back: count * 1/(1e9*2^32) to get Joules
* or use ldexp(count, -32). * or use ldexp(count, -32).
* Watts = Joules/Time delta * Watts = Joules/Time delta
*/ */
return v << (32 - __this_cpu_read(rapl_pmu)->hw_unit); return v << (32 - rapl_hw_unit[cfg - 1]);
} }
static u64 rapl_event_update(struct perf_event *event) static u64 rapl_event_update(struct perf_event *event)
...@@ -173,7 +195,7 @@ static u64 rapl_event_update(struct perf_event *event) ...@@ -173,7 +195,7 @@ static u64 rapl_event_update(struct perf_event *event)
delta = (new_raw_count << shift) - (prev_raw_count << shift); delta = (new_raw_count << shift) - (prev_raw_count << shift);
delta >>= shift; delta >>= shift;
sdelta = rapl_scale(delta); sdelta = rapl_scale(delta, event->hw.config);
local64_add(sdelta, &event->count); local64_add(sdelta, &event->count);
...@@ -546,12 +568,22 @@ static void rapl_cpu_init(int cpu) ...@@ -546,12 +568,22 @@ static void rapl_cpu_init(int cpu)
cpumask_set_cpu(cpu, &rapl_cpu_mask); cpumask_set_cpu(cpu, &rapl_cpu_mask);
} }
static __init void rapl_hsw_server_quirk(void)
{
/*
* DRAM domain on HSW server has fixed energy unit which can be
* different than the unit from power unit MSR.
* "Intel Xeon Processor E5-1600 and E5-2600 v3 Product Families, V2
* of 2. Datasheet, September 2014, Reference Number: 330784-001 "
*/
rapl_hw_unit[RAPL_IDX_RAM_NRG_STAT] = 16;
}
static int rapl_cpu_prepare(int cpu) static int rapl_cpu_prepare(int cpu)
{ {
struct rapl_pmu *pmu = per_cpu(rapl_pmu, cpu); struct rapl_pmu *pmu = per_cpu(rapl_pmu, cpu);
int phys_id = topology_physical_package_id(cpu); int phys_id = topology_physical_package_id(cpu);
u64 ms; u64 ms;
u64 msr_rapl_power_unit_bits;
if (pmu) if (pmu)
return 0; return 0;
...@@ -559,24 +591,13 @@ static int rapl_cpu_prepare(int cpu) ...@@ -559,24 +591,13 @@ static int rapl_cpu_prepare(int cpu)
if (phys_id < 0) if (phys_id < 0)
return -1; return -1;
/* protect rdmsrl() to handle virtualization */
if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &msr_rapl_power_unit_bits))
return -1;
pmu = kzalloc_node(sizeof(*pmu), GFP_KERNEL, cpu_to_node(cpu)); pmu = kzalloc_node(sizeof(*pmu), GFP_KERNEL, cpu_to_node(cpu));
if (!pmu) if (!pmu)
return -1; return -1;
spin_lock_init(&pmu->lock); spin_lock_init(&pmu->lock);
INIT_LIST_HEAD(&pmu->active_list); INIT_LIST_HEAD(&pmu->active_list);
/*
* grab power unit as: 1/2^unit Joules
*
* we cache in local PMU instance
*/
pmu->hw_unit = (msr_rapl_power_unit_bits >> 8) & 0x1FULL;
pmu->pmu = &rapl_pmu_class; pmu->pmu = &rapl_pmu_class;
/* /*
...@@ -586,8 +607,8 @@ static int rapl_cpu_prepare(int cpu) ...@@ -586,8 +607,8 @@ static int rapl_cpu_prepare(int cpu)
* divide interval by 2 to avoid lockstep (2 * 100) * divide interval by 2 to avoid lockstep (2 * 100)
* if hw unit is 32, then we use 2 ms 1/200/2 * if hw unit is 32, then we use 2 ms 1/200/2
*/ */
if (pmu->hw_unit < 32) if (rapl_hw_unit[0] < 32)
ms = (1000 / (2 * 100)) * (1ULL << (32 - pmu->hw_unit - 1)); ms = (1000 / (2 * 100)) * (1ULL << (32 - rapl_hw_unit[0] - 1));
else else
ms = 2; ms = 2;
...@@ -655,6 +676,20 @@ static int rapl_cpu_notifier(struct notifier_block *self, ...@@ -655,6 +676,20 @@ static int rapl_cpu_notifier(struct notifier_block *self,
return NOTIFY_OK; return NOTIFY_OK;
} }
static int rapl_check_hw_unit(void)
{
u64 msr_rapl_power_unit_bits;
int i;
/* protect rdmsrl() to handle virtualization */
if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &msr_rapl_power_unit_bits))
return -1;
for (i = 0; i < NR_RAPL_DOMAINS; i++)
rapl_hw_unit[i] = (msr_rapl_power_unit_bits >> 8) & 0x1FULL;
return 0;
}
static const struct x86_cpu_id rapl_cpu_match[] = { static const struct x86_cpu_id rapl_cpu_match[] = {
[0] = { .vendor = X86_VENDOR_INTEL, .family = 6 }, [0] = { .vendor = X86_VENDOR_INTEL, .family = 6 },
[1] = {}, [1] = {},
...@@ -664,6 +699,8 @@ static int __init rapl_pmu_init(void) ...@@ -664,6 +699,8 @@ static int __init rapl_pmu_init(void)
{ {
struct rapl_pmu *pmu; struct rapl_pmu *pmu;
int cpu, ret; int cpu, ret;
struct x86_pmu_quirk *quirk;
int i;
/* /*
* check for Intel processor family 6 * check for Intel processor family 6
...@@ -678,6 +715,11 @@ static int __init rapl_pmu_init(void) ...@@ -678,6 +715,11 @@ static int __init rapl_pmu_init(void)
rapl_cntr_mask = RAPL_IDX_CLN; rapl_cntr_mask = RAPL_IDX_CLN;
rapl_pmu_events_group.attrs = rapl_events_cln_attr; rapl_pmu_events_group.attrs = rapl_events_cln_attr;
break; break;
case 63: /* Haswell-Server */
rapl_add_quirk(rapl_hsw_server_quirk);
rapl_cntr_mask = RAPL_IDX_SRV;
rapl_pmu_events_group.attrs = rapl_events_srv_attr;
break;
case 60: /* Haswell */ case 60: /* Haswell */
case 69: /* Haswell-Celeron */ case 69: /* Haswell-Celeron */
rapl_cntr_mask = RAPL_IDX_HSW; rapl_cntr_mask = RAPL_IDX_HSW;
...@@ -693,7 +735,13 @@ static int __init rapl_pmu_init(void) ...@@ -693,7 +735,13 @@ static int __init rapl_pmu_init(void)
/* unsupported */ /* unsupported */
return 0; return 0;
} }
ret = rapl_check_hw_unit();
if (ret)
return ret;
/* run cpu model quirks */
for (quirk = rapl_quirks; quirk; quirk = quirk->next)
quirk->func();
cpu_notifier_register_begin(); cpu_notifier_register_begin();
for_each_online_cpu(cpu) { for_each_online_cpu(cpu) {
...@@ -714,14 +762,18 @@ static int __init rapl_pmu_init(void) ...@@ -714,14 +762,18 @@ static int __init rapl_pmu_init(void)
pmu = __this_cpu_read(rapl_pmu); pmu = __this_cpu_read(rapl_pmu);
pr_info("RAPL PMU detected, hw unit 2^-%d Joules," pr_info("RAPL PMU detected,"
" API unit is 2^-32 Joules," " API unit is 2^-32 Joules,"
" %d fixed counters" " %d fixed counters"
" %llu ms ovfl timer\n", " %llu ms ovfl timer\n",
pmu->hw_unit,
hweight32(rapl_cntr_mask), hweight32(rapl_cntr_mask),
ktime_to_ms(pmu->timer_interval)); ktime_to_ms(pmu->timer_interval));
for (i = 0; i < NR_RAPL_DOMAINS; i++) {
if (rapl_cntr_mask & (1 << i)) {
pr_info("hw unit of domain %s 2^-%d Joules\n",
rapl_domain_names[i], rapl_hw_unit[i]);
}
}
out: out:
cpu_notifier_register_done(); cpu_notifier_register_done();
......
...@@ -18,14 +18,14 @@ DECLARE_EVENT_CLASS(mm_filemap_op_page_cache, ...@@ -18,14 +18,14 @@ DECLARE_EVENT_CLASS(mm_filemap_op_page_cache,
TP_ARGS(page), TP_ARGS(page),
TP_STRUCT__entry( TP_STRUCT__entry(
__field(struct page *, page) __field(unsigned long, pfn)
__field(unsigned long, i_ino) __field(unsigned long, i_ino)
__field(unsigned long, index) __field(unsigned long, index)
__field(dev_t, s_dev) __field(dev_t, s_dev)
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page_to_pfn(page);
__entry->i_ino = page->mapping->host->i_ino; __entry->i_ino = page->mapping->host->i_ino;
__entry->index = page->index; __entry->index = page->index;
if (page->mapping->host->i_sb) if (page->mapping->host->i_sb)
...@@ -37,8 +37,8 @@ DECLARE_EVENT_CLASS(mm_filemap_op_page_cache, ...@@ -37,8 +37,8 @@ DECLARE_EVENT_CLASS(mm_filemap_op_page_cache,
TP_printk("dev %d:%d ino %lx page=%p pfn=%lu ofs=%lu", TP_printk("dev %d:%d ino %lx page=%p pfn=%lu ofs=%lu",
MAJOR(__entry->s_dev), MINOR(__entry->s_dev), MAJOR(__entry->s_dev), MINOR(__entry->s_dev),
__entry->i_ino, __entry->i_ino,
__entry->page, pfn_to_page(__entry->pfn),
page_to_pfn(__entry->page), __entry->pfn,
__entry->index << PAGE_SHIFT) __entry->index << PAGE_SHIFT)
); );
......
...@@ -154,18 +154,18 @@ TRACE_EVENT(mm_page_free, ...@@ -154,18 +154,18 @@ TRACE_EVENT(mm_page_free,
TP_ARGS(page, order), TP_ARGS(page, order),
TP_STRUCT__entry( TP_STRUCT__entry(
__field( struct page *, page ) __field( unsigned long, pfn )
__field( unsigned int, order ) __field( unsigned int, order )
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page_to_pfn(page);
__entry->order = order; __entry->order = order;
), ),
TP_printk("page=%p pfn=%lu order=%d", TP_printk("page=%p pfn=%lu order=%d",
__entry->page, pfn_to_page(__entry->pfn),
page_to_pfn(__entry->page), __entry->pfn,
__entry->order) __entry->order)
); );
...@@ -176,18 +176,18 @@ TRACE_EVENT(mm_page_free_batched, ...@@ -176,18 +176,18 @@ TRACE_EVENT(mm_page_free_batched,
TP_ARGS(page, cold), TP_ARGS(page, cold),
TP_STRUCT__entry( TP_STRUCT__entry(
__field( struct page *, page ) __field( unsigned long, pfn )
__field( int, cold ) __field( int, cold )
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page_to_pfn(page);
__entry->cold = cold; __entry->cold = cold;
), ),
TP_printk("page=%p pfn=%lu order=0 cold=%d", TP_printk("page=%p pfn=%lu order=0 cold=%d",
__entry->page, pfn_to_page(__entry->pfn),
page_to_pfn(__entry->page), __entry->pfn,
__entry->cold) __entry->cold)
); );
...@@ -199,22 +199,22 @@ TRACE_EVENT(mm_page_alloc, ...@@ -199,22 +199,22 @@ TRACE_EVENT(mm_page_alloc,
TP_ARGS(page, order, gfp_flags, migratetype), TP_ARGS(page, order, gfp_flags, migratetype),
TP_STRUCT__entry( TP_STRUCT__entry(
__field( struct page *, page ) __field( unsigned long, pfn )
__field( unsigned int, order ) __field( unsigned int, order )
__field( gfp_t, gfp_flags ) __field( gfp_t, gfp_flags )
__field( int, migratetype ) __field( int, migratetype )
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page ? page_to_pfn(page) : -1UL;
__entry->order = order; __entry->order = order;
__entry->gfp_flags = gfp_flags; __entry->gfp_flags = gfp_flags;
__entry->migratetype = migratetype; __entry->migratetype = migratetype;
), ),
TP_printk("page=%p pfn=%lu order=%d migratetype=%d gfp_flags=%s", TP_printk("page=%p pfn=%lu order=%d migratetype=%d gfp_flags=%s",
__entry->page, __entry->pfn != -1UL ? pfn_to_page(__entry->pfn) : NULL,
__entry->page ? page_to_pfn(__entry->page) : 0, __entry->pfn != -1UL ? __entry->pfn : 0,
__entry->order, __entry->order,
__entry->migratetype, __entry->migratetype,
show_gfp_flags(__entry->gfp_flags)) show_gfp_flags(__entry->gfp_flags))
...@@ -227,20 +227,20 @@ DECLARE_EVENT_CLASS(mm_page, ...@@ -227,20 +227,20 @@ DECLARE_EVENT_CLASS(mm_page,
TP_ARGS(page, order, migratetype), TP_ARGS(page, order, migratetype),
TP_STRUCT__entry( TP_STRUCT__entry(
__field( struct page *, page ) __field( unsigned long, pfn )
__field( unsigned int, order ) __field( unsigned int, order )
__field( int, migratetype ) __field( int, migratetype )
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page ? page_to_pfn(page) : -1UL;
__entry->order = order; __entry->order = order;
__entry->migratetype = migratetype; __entry->migratetype = migratetype;
), ),
TP_printk("page=%p pfn=%lu order=%u migratetype=%d percpu_refill=%d", TP_printk("page=%p pfn=%lu order=%u migratetype=%d percpu_refill=%d",
__entry->page, __entry->pfn != -1UL ? pfn_to_page(__entry->pfn) : NULL,
__entry->page ? page_to_pfn(__entry->page) : 0, __entry->pfn != -1UL ? __entry->pfn : 0,
__entry->order, __entry->order,
__entry->migratetype, __entry->migratetype,
__entry->order == 0) __entry->order == 0)
...@@ -260,7 +260,7 @@ DEFINE_EVENT_PRINT(mm_page, mm_page_pcpu_drain, ...@@ -260,7 +260,7 @@ DEFINE_EVENT_PRINT(mm_page, mm_page_pcpu_drain,
TP_ARGS(page, order, migratetype), TP_ARGS(page, order, migratetype),
TP_printk("page=%p pfn=%lu order=%d migratetype=%d", TP_printk("page=%p pfn=%lu order=%d migratetype=%d",
__entry->page, page_to_pfn(__entry->page), pfn_to_page(__entry->pfn), __entry->pfn,
__entry->order, __entry->migratetype) __entry->order, __entry->migratetype)
); );
...@@ -275,7 +275,7 @@ TRACE_EVENT(mm_page_alloc_extfrag, ...@@ -275,7 +275,7 @@ TRACE_EVENT(mm_page_alloc_extfrag,
alloc_migratetype, fallback_migratetype), alloc_migratetype, fallback_migratetype),
TP_STRUCT__entry( TP_STRUCT__entry(
__field( struct page *, page ) __field( unsigned long, pfn )
__field( int, alloc_order ) __field( int, alloc_order )
__field( int, fallback_order ) __field( int, fallback_order )
__field( int, alloc_migratetype ) __field( int, alloc_migratetype )
...@@ -284,7 +284,7 @@ TRACE_EVENT(mm_page_alloc_extfrag, ...@@ -284,7 +284,7 @@ TRACE_EVENT(mm_page_alloc_extfrag,
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page_to_pfn(page);
__entry->alloc_order = alloc_order; __entry->alloc_order = alloc_order;
__entry->fallback_order = fallback_order; __entry->fallback_order = fallback_order;
__entry->alloc_migratetype = alloc_migratetype; __entry->alloc_migratetype = alloc_migratetype;
...@@ -294,8 +294,8 @@ TRACE_EVENT(mm_page_alloc_extfrag, ...@@ -294,8 +294,8 @@ TRACE_EVENT(mm_page_alloc_extfrag,
), ),
TP_printk("page=%p pfn=%lu alloc_order=%d fallback_order=%d pageblock_order=%d alloc_migratetype=%d fallback_migratetype=%d fragmenting=%d change_ownership=%d", TP_printk("page=%p pfn=%lu alloc_order=%d fallback_order=%d pageblock_order=%d alloc_migratetype=%d fallback_migratetype=%d fragmenting=%d change_ownership=%d",
__entry->page, pfn_to_page(__entry->pfn),
page_to_pfn(__entry->page), __entry->pfn,
__entry->alloc_order, __entry->alloc_order,
__entry->fallback_order, __entry->fallback_order,
pageblock_order, pageblock_order,
......
...@@ -336,18 +336,18 @@ TRACE_EVENT(mm_vmscan_writepage, ...@@ -336,18 +336,18 @@ TRACE_EVENT(mm_vmscan_writepage,
TP_ARGS(page, reclaim_flags), TP_ARGS(page, reclaim_flags),
TP_STRUCT__entry( TP_STRUCT__entry(
__field(struct page *, page) __field(unsigned long, pfn)
__field(int, reclaim_flags) __field(int, reclaim_flags)
), ),
TP_fast_assign( TP_fast_assign(
__entry->page = page; __entry->pfn = page_to_pfn(page);
__entry->reclaim_flags = reclaim_flags; __entry->reclaim_flags = reclaim_flags;
), ),
TP_printk("page=%p pfn=%lu flags=%s", TP_printk("page=%p pfn=%lu flags=%s",
__entry->page, pfn_to_page(__entry->pfn),
page_to_pfn(__entry->page), __entry->pfn,
show_reclaim_flags(__entry->reclaim_flags)) show_reclaim_flags(__entry->reclaim_flags))
); );
......
...@@ -3,7 +3,7 @@ perf-kmem(1) ...@@ -3,7 +3,7 @@ perf-kmem(1)
NAME NAME
---- ----
perf-kmem - Tool to trace/measure kernel memory(slab) properties perf-kmem - Tool to trace/measure kernel memory properties
SYNOPSIS SYNOPSIS
-------- --------
...@@ -46,6 +46,12 @@ OPTIONS ...@@ -46,6 +46,12 @@ OPTIONS
--raw-ip:: --raw-ip::
Print raw ip instead of symbol Print raw ip instead of symbol
--slab::
Analyze SLAB allocator events.
--page::
Analyze page allocator events
SEE ALSO SEE ALSO
-------- --------
linkperf:perf-record[1] linkperf:perf-record[1]
This diff is collapsed.
...@@ -332,6 +332,7 @@ static int find_alternative_probe_point(struct debuginfo *dinfo, ...@@ -332,6 +332,7 @@ static int find_alternative_probe_point(struct debuginfo *dinfo,
else { else {
result->offset += pp->offset; result->offset += pp->offset;
result->line += pp->line; result->line += pp->line;
result->retprobe = pp->retprobe;
ret = 0; ret = 0;
} }
...@@ -654,65 +655,6 @@ static int try_to_find_probe_trace_events(struct perf_probe_event *pev, ...@@ -654,65 +655,6 @@ static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
return ntevs; return ntevs;
} }
/*
* Find a src file from a DWARF tag path. Prepend optional source path prefix
* and chop off leading directories that do not exist. Result is passed back as
* a newly allocated path on success.
* Return 0 if file was found and readable, -errno otherwise.
*/
static int get_real_path(const char *raw_path, const char *comp_dir,
char **new_path)
{
const char *prefix = symbol_conf.source_prefix;
if (!prefix) {
if (raw_path[0] != '/' && comp_dir)
/* If not an absolute path, try to use comp_dir */
prefix = comp_dir;
else {
if (access(raw_path, R_OK) == 0) {
*new_path = strdup(raw_path);
return *new_path ? 0 : -ENOMEM;
} else
return -errno;
}
}
*new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
if (!*new_path)
return -ENOMEM;
for (;;) {
sprintf(*new_path, "%s/%s", prefix, raw_path);
if (access(*new_path, R_OK) == 0)
return 0;
if (!symbol_conf.source_prefix) {
/* In case of searching comp_dir, don't retry */
zfree(new_path);
return -errno;
}
switch (errno) {
case ENAMETOOLONG:
case ENOENT:
case EROFS:
case EFAULT:
raw_path = strchr(++raw_path, '/');
if (!raw_path) {
zfree(new_path);
return -ENOENT;
}
continue;
default:
zfree(new_path);
return -errno;
}
}
}
#define LINEBUF_SIZE 256 #define LINEBUF_SIZE 256
#define NR_ADDITIONAL_LINES 2 #define NR_ADDITIONAL_LINES 2
......
...@@ -855,11 +855,22 @@ static int probe_point_lazy_walker(const char *fname, int lineno, ...@@ -855,11 +855,22 @@ static int probe_point_lazy_walker(const char *fname, int lineno,
static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf) static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
{ {
int ret = 0; int ret = 0;
char *fpath;
if (intlist__empty(pf->lcache)) { if (intlist__empty(pf->lcache)) {
const char *comp_dir;
comp_dir = cu_get_comp_dir(&pf->cu_die);
ret = get_real_path(pf->fname, comp_dir, &fpath);
if (ret < 0) {
pr_warning("Failed to find source file path.\n");
return ret;
}
/* Matching lazy line pattern */ /* Matching lazy line pattern */
ret = find_lazy_match_lines(pf->lcache, pf->fname, ret = find_lazy_match_lines(pf->lcache, fpath,
pf->pev->point.lazy_line); pf->pev->point.lazy_line);
free(fpath);
if (ret <= 0) if (ret <= 0)
return ret; return ret;
} }
...@@ -1055,7 +1066,7 @@ static int debuginfo__find_probes(struct debuginfo *dbg, ...@@ -1055,7 +1066,7 @@ static int debuginfo__find_probes(struct debuginfo *dbg,
if (pp->function) if (pp->function)
ret = find_probe_point_by_func(pf); ret = find_probe_point_by_func(pf);
else if (pp->lazy_line) else if (pp->lazy_line)
ret = find_probe_point_lazy(NULL, pf); ret = find_probe_point_lazy(&pf->cu_die, pf);
else { else {
pf->lno = pp->line; pf->lno = pp->line;
ret = find_probe_point_by_line(pf); ret = find_probe_point_by_line(pf);
...@@ -1622,3 +1633,61 @@ int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr) ...@@ -1622,3 +1633,61 @@ int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr)
return (ret < 0) ? ret : lf.found; return (ret < 0) ? ret : lf.found;
} }
/*
* Find a src file from a DWARF tag path. Prepend optional source path prefix
* and chop off leading directories that do not exist. Result is passed back as
* a newly allocated path on success.
* Return 0 if file was found and readable, -errno otherwise.
*/
int get_real_path(const char *raw_path, const char *comp_dir,
char **new_path)
{
const char *prefix = symbol_conf.source_prefix;
if (!prefix) {
if (raw_path[0] != '/' && comp_dir)
/* If not an absolute path, try to use comp_dir */
prefix = comp_dir;
else {
if (access(raw_path, R_OK) == 0) {
*new_path = strdup(raw_path);
return *new_path ? 0 : -ENOMEM;
} else
return -errno;
}
}
*new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
if (!*new_path)
return -ENOMEM;
for (;;) {
sprintf(*new_path, "%s/%s", prefix, raw_path);
if (access(*new_path, R_OK) == 0)
return 0;
if (!symbol_conf.source_prefix) {
/* In case of searching comp_dir, don't retry */
zfree(new_path);
return -errno;
}
switch (errno) {
case ENAMETOOLONG:
case ENOENT:
case EROFS:
case EFAULT:
raw_path = strchr(++raw_path, '/');
if (!raw_path) {
zfree(new_path);
return -ENOENT;
}
continue;
default:
zfree(new_path);
return -errno;
}
}
}
...@@ -55,6 +55,10 @@ extern int debuginfo__find_available_vars_at(struct debuginfo *dbg, ...@@ -55,6 +55,10 @@ extern int debuginfo__find_available_vars_at(struct debuginfo *dbg,
struct variable_list **vls, struct variable_list **vls,
int max_points, bool externs); int max_points, bool externs);
/* Find a src file from a DWARF tag path */
int get_real_path(const char *raw_path, const char *comp_dir,
char **new_path);
struct probe_finder { struct probe_finder {
struct perf_probe_event *pev; /* Target probe event */ struct perf_probe_event *pev; /* Target probe event */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment