]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
perf: Remove perf_event_attr::type check
authorLin Ming <ming.m.lin@intel.com>
Thu, 30 Jun 2011 08:09:55 +0000 (08:09 +0000)
committerIngo Molnar <mingo@elte.hu>
Thu, 21 Jul 2011 18:41:55 +0000 (20:41 +0200)
PMU type id can be allocated dynamically, so perf_event_attr::type check
when copying attribute from userspace to kernel is not valid.

Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Cc: Robert Richter <robert.richter@amd.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1309421396-17438-4-git-send-email-ming.m.lin@intel.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/events/core.c

index 0567e32d71aaef12b19aaf072a06441fab48ba69..b8785e26ee1cd28c33a1c0429a49bb515c34c8d2 100644 (file)
@@ -5926,13 +5926,6 @@ static int perf_copy_attr(struct perf_event_attr __user *uattr,
        if (ret)
                return -EFAULT;
 
-       /*
-        * If the type exists, the corresponding creation will verify
-        * the attr->config.
-        */
-       if (attr->type >= PERF_TYPE_MAX)
-               return -EINVAL;
-
        if (attr->__reserved_1)
                return -EINVAL;