Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147430
b: refs/heads/master
c: 6de6a7b
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 5, 2009
1 parent 1cde54e commit d86ab19
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c66de4a5be7913247bd83d79168f8e4420c9cfbc
refs/heads/master: 6de6a7b95705b859b61430fa3afa1403034eb3e6
1 change: 1 addition & 0 deletions trunk/include/linux/perf_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ struct perf_counter_hw_event {
#define PERF_COUNTER_IOC_ENABLE _IO ('$', 0)
#define PERF_COUNTER_IOC_DISABLE _IO ('$', 1)
#define PERF_COUNTER_IOC_REFRESH _IOW('$', 2, u32)
#define PERF_COUNTER_IOC_RESET _IO ('$', 3)

/*
* Structure of the page that can be mapped via mmap
Expand Down
8 changes: 8 additions & 0 deletions trunk/kernel/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1288,6 +1288,11 @@ static unsigned int perf_poll(struct file *file, poll_table *wait)
return events;
}

static void perf_counter_reset(struct perf_counter *counter)
{
atomic_set(&counter->count, 0);
}

static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
struct perf_counter *counter = file->private_data;
Expand All @@ -1303,6 +1308,9 @@ static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
case PERF_COUNTER_IOC_REFRESH:
perf_counter_refresh(counter, arg);
break;
case PERF_COUNTER_IOC_RESET:
perf_counter_reset(counter);
break;
default:
err = -ENOTTY;
}
Expand Down

0 comments on commit d86ab19

Please sign in to comment.