]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
perf_counter: Remove PERF_TYPE_RAW special casing
authorPeter Zijlstra <a.p.zijlstra@chello.nl>
Thu, 11 Jun 2009 15:57:21 +0000 (17:57 +0200)
committerIngo Molnar <mingo@elte.hu>
Fri, 12 Jun 2009 12:28:51 +0000 (14:28 +0200)
The PERF_TYPE_RAW special case seems superfluous these days. Remove
it and add it to the switch() stmt like the others.

[ Impact: cleanup ]

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/perf_counter.c

index ef5d8a5b245390130f76e9284f372396dfa7ddd5..663bbe0150573238fe4ffd3a1699edbebf34f188 100644 (file)
@@ -3570,12 +3570,8 @@ perf_counter_alloc(struct perf_counter_attr *attr,
        if (attr->inherit && (attr->sample_type & PERF_SAMPLE_GROUP))
                goto done;
 
-       if (attr->type == PERF_TYPE_RAW) {
-               pmu = hw_perf_counter_init(counter);
-               goto done;
-       }
-
        switch (attr->type) {
+       case PERF_TYPE_RAW:
        case PERF_TYPE_HARDWARE:
        case PERF_TYPE_HW_CACHE:
                pmu = hw_perf_counter_init(counter);