summaryrefslogtreecommitdiff
path: root/package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2011-10-26 21:21:43 -0300
committerPeter Korsgaard <jacmet@sunsite.dk>2011-10-27 14:04:56 +0200
commit2a56a141e09b1540875abb572229e5eaec68aef8 (patch)
treee908a9459c051e55f1b531deab32cfaceffead85 /package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch
parent48391acd2c63ea373f9771210b3acd54ec97fb00 (diff)
oprofile: bump to version 0.9.7 and fixes
* Bump to version 0.9.7 * Style fixes * Build fix for x86: i386 is expected, not some other random i?86 as arch Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch')
-rw-r--r--package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch b/package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch
deleted file mode 100644
index 7c4138946..000000000
--- a/package/oprofile/oprofile-0.9.4-001-avr32-enable-lookup_dcookie.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: oprofile-0.9.4/daemon/opd_cookie.c
-===================================================================
---- oprofile-0.9.4.orig/daemon/opd_cookie.c 2008-07-25 16:00:17.000000000 +0200
-+++ oprofile-0.9.4/daemon/opd_cookie.c 2008-07-25 16:00:20.000000000 +0200
-@@ -78,6 +78,19 @@
- (unsigned long)(cookie & 0xffffffff),
- (unsigned long)(cookie >> 32), buf, size);
- }
-+#elif (defined(__avr32__))
-+static inline int lookup_dcookie(cookie_t cookie, char * buf, size_t size)
-+{
-+ /* On avr32, the first 64bit arg (cookie) is expected to be in
-+ * r11(MSW)/r10(LSW) which normally hold arg 2 and arg 3. The second arg
-+ * (buf) is then expected to be in r12 which normally holds the first
-+ * arg. Third arg (size) is at the right position.
-+ */
-+ return syscall(__NR_lookup_dcookie, buf,
-+ (unsigned long)(cookie >> 32),
-+ (unsigned long)(cookie & 0xffffffff),
-+ size);
-+}
- #else
- static inline int lookup_dcookie(cookie_t cookie, char * buf, size_t size)
- {