X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=wrapper%2Fperf.h;h=5de205cdda1eec77f60d0616a9fe6296a11300cf;hb=30f37edd6f47f84e96bc67a2bb0c6d3b6b8de7df;hp=d774d4abbb5bce28e222acd50a060e3b7e8ba0bd;hpb=a90917c3f8c4ed79117f1caa333b29a2108084ec;p=lttng-modules.git diff --git a/wrapper/perf.h b/wrapper/perf.h index d774d4ab..5de205cd 100644 --- a/wrapper/perf.h +++ b/wrapper/perf.h @@ -2,9 +2,23 @@ #define _LTTNG_WRAPPER_PERF_H /* - * Copyright (C) 2011 Mathieu Desnoyers (mathieu.desnoyers@efficios.com) + * wrapper/perf.h * - * Dual LGPL v2.1/GPL v2 license. + * Copyright (C) 2010-2012 Mathieu Desnoyers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; only + * version 2.1 of the License. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include @@ -18,7 +32,9 @@ wrapper_perf_event_create_kernel_counter(struct perf_event_attr *attr, { return perf_event_create_kernel_counter(attr, cpu, task, callback, NULL); } -#else +#else /* defined(CONFIG_PERF_EVENTS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3,0,99)) */ + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) static inline struct perf_event * wrapper_perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, @@ -27,6 +43,29 @@ wrapper_perf_event_create_kernel_counter(struct perf_event_attr *attr, { return perf_event_create_kernel_counter(attr, cpu, task, callback); } +#else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) */ +static inline struct perf_event * +wrapper_perf_event_create_kernel_counter(struct perf_event_attr *attr, + int cpu, + struct task_struct *task, + perf_overflow_handler_t callback) +{ + pid_t pid; + + if (!task) + pid = -1; + else + pid = task->pid; + + return perf_event_create_kernel_counter(attr, cpu, pid, callback); +} + +#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) */ + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)) +#define local64_read(l) atomic64_read(l) #endif +#endif /* defined(CONFIG_PERF_EVENTS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3,0,99)) */ + #endif /* _LTTNG_WRAPPER_PERF_H */