Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147604
b: refs/heads/master
c: 8e5799b
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Jun 2, 2009
1 parent fc6e47c commit 2e6652f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 53e111a730ea8b002d57dd226098c12789993329
refs/heads/master: 8e5799b1ad2a0567fdfaaf0e91b40efee010f2c1
8 changes: 5 additions & 3 deletions trunk/include/linux/perf_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,9 @@ enum perf_counter_record_format {
* in increasing order of bit value, after the counter value.
*/
enum perf_counter_read_format {
PERF_FORMAT_TOTAL_TIME_ENABLED = 1,
PERF_FORMAT_TOTAL_TIME_RUNNING = 2,
PERF_FORMAT_TOTAL_TIME_ENABLED = 1U << 0,
PERF_FORMAT_TOTAL_TIME_RUNNING = 1U << 1,
PERF_FORMAT_ID = 1U << 2,
};

/*
Expand Down Expand Up @@ -290,7 +291,7 @@ enum perf_event_type {
* { u32 cpu, res; } && PERF_RECORD_CPU
*
* { u64 nr;
* { u64 event, val; } cnt[nr]; } && PERF_RECORD_GROUP
* { u64 id, val; } cnt[nr]; } && PERF_RECORD_GROUP
*
* { u16 nr,
* hv,
Expand Down Expand Up @@ -503,6 +504,7 @@ struct perf_counter {
struct rcu_head rcu_head;

struct pid_namespace *ns;
u64 id;
#endif
};

Expand Down
9 changes: 7 additions & 2 deletions trunk/kernel/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1510,6 +1510,8 @@ perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
if (counter->hw_event.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
values[n++] = counter->total_time_running +
atomic64_read(&counter->child_total_time_running);
if (counter->hw_event.read_format & PERF_FORMAT_ID)
values[n++] = counter->id;
mutex_unlock(&counter->child_mutex);

if (count < n * sizeof(u64))
Expand Down Expand Up @@ -2303,7 +2305,7 @@ static void perf_counter_output(struct perf_counter *counter,
u32 pid, tid;
} tid_entry;
struct {
u64 event;
u64 id;
u64 counter;
} group_entry;
struct perf_callchain_entry *callchain = NULL;
Expand Down Expand Up @@ -2416,7 +2418,7 @@ static void perf_counter_output(struct perf_counter *counter,
if (sub != counter)
sub->pmu->read(sub);

group_entry.event = sub->hw_event.config;
group_entry.id = sub->id;
group_entry.counter = atomic64_read(&sub->count);

perf_output_put(&handle, group_entry);
Expand Down Expand Up @@ -3375,6 +3377,8 @@ perf_counter_alloc(struct perf_counter_hw_event *hw_event,
return counter;
}

static atomic64_t perf_counter_id;

/**
* sys_perf_counter_open - open a performance counter, associate it to a task/cpu
*
Expand Down Expand Up @@ -3470,6 +3474,7 @@ SYSCALL_DEFINE5(perf_counter_open,
mutex_unlock(&current->perf_counter_mutex);

counter->ns = get_pid_ns(current->nsproxy->pid_ns);
counter->id = atomic64_inc_return(&perf_counter_id);

fput_light(counter_file, fput_needed2);

Expand Down

0 comments on commit 2e6652f

Please sign in to comment.