summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2011-08-03 19:55:54 +0200
committerJuergen Beisert <jbe@pengutronix.de>2011-08-03 19:55:54 +0200
commit880eb725dae838258bb4b50d331ad10a1fc4d8b9 (patch)
tree6863d91c79a5e5774da4bc9731a540b566122d2d
parentf1d14d0e84a83e30ed7d557f911740d683a03b3a (diff)
downloadptxdist-880eb725dae838258bb4b50d331ad10a1fc4d8b9.tar.gz
ptxdist-880eb725dae838258bb4b50d331ad10a1fc4d8b9.tar.xz
Remove a leftover of the rt-tests package update from 0.66 to 0.73
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
-rw-r--r--patches/rt-tests-0.66/cyclictest-create-pythondir.patch26
-rw-r--r--patches/rt-tests-0.66/cyclictest-fix-output.diff36
-rw-r--r--patches/rt-tests-0.66/cyclictest-fix-wakeup-latency-tracing-entry-name.patch27
-rw-r--r--patches/rt-tests-0.66/series3
4 files changed, 0 insertions, 92 deletions
diff --git a/patches/rt-tests-0.66/cyclictest-create-pythondir.patch b/patches/rt-tests-0.66/cyclictest-create-pythondir.patch
deleted file mode 100644
index 15b90b0df..000000000
--- a/patches/rt-tests-0.66/cyclictest-create-pythondir.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: [PATCH] cyclictest: create python install path
-
-We should make sure directories do already exist when copying into it.
-
-install: cannot create regular file `/home/rsc/svn/oselas/bsp/pengutronix/OSELAS.BSP-Pengutronix-AllYes-trunk/platform-ARM-reference/packages/rt-tests-0.64/usr/lib/python2.5/site-packages/hwlatdetect.py': No such file or directory
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
----
- Makefile | 2 +-
- src/cyclictest/cyclictest.c | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: rt-tests-0.64/Makefile
-===================================================================
---- rt-tests-0.64.orig/Makefile
-+++ rt-tests-0.64/Makefile
-@@ -107,7 +107,7 @@ install: all
- mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man4"
- mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man8"
- cp $(TARGETS) "$(DESTDIR)$(bindir)"
-- install -m 755 src/hwlatdetect/hwlatdetect.py $(DESTDIR)$(PYLIB)/hwlatdetect.py
-+ install -D -m 755 src/hwlatdetect/hwlatdetect.py $(DESTDIR)$(PYLIB)/hwlatdetect.py
- ln -s $(PYLIB)/hwlatdetect.py "$(DESTDIR)$(bindir)/hwlatdetect"
- mkdir -p "$(DESTDIR)$(srcdir)/backfire"
- gzip src/backfire/backfire.4 -c >"$(DESTDIR)$(mandir)/man4/backfire.4.gz"
diff --git a/patches/rt-tests-0.66/cyclictest-fix-output.diff b/patches/rt-tests-0.66/cyclictest-fix-output.diff
deleted file mode 100644
index 5d9f9ce97..000000000
--- a/patches/rt-tests-0.66/cyclictest-fix-output.diff
+++ /dev/null
@@ -1,36 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Subject: [PATCH] cyclictest: balance verbose output
-
-For verbose output cyclictest writes all available samples for each thread
-before handling the next thread. As a result the samples of the same cycle
-may be hundreds of lines apart.
-This patch forces the writer thread to switch to the next thread even if
-more samples are available.
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-
----
- src/cyclictest/cyclictest.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-Index: b/src/cyclictest/cyclictest.c
-===================================================================
---- a/src/cyclictest/cyclictest.c
-+++ b/src/cyclictest/cyclictest.c
-@@ -1147,6 +1147,7 @@ static void print_hist(struct thread_par
- static void print_stat(struct thread_param *par, int index, int verbose)
- {
- struct thread_stat *stat = par->stats;
-+ int i;
-
- if (!verbose) {
- if (quiet != 1) {
-@@ -1163,7 +1164,7 @@ static void print_stat(struct thread_par
- (long)(stat->avg/stat->cycles) : 0, stat->max);
- }
- } else {
-- while (stat->cycles != stat->cyclesread) {
-+ for (i = 0; (i < 5) && (stat->cycles != stat->cyclesread); ++i) {
- long diff = stat->values
- [stat->cyclesread & par->bufmsk];
-
diff --git a/patches/rt-tests-0.66/cyclictest-fix-wakeup-latency-tracing-entry-name.patch b/patches/rt-tests-0.66/cyclictest-fix-wakeup-latency-tracing-entry-name.patch
deleted file mode 100644
index 804d2fd8d..000000000
--- a/patches/rt-tests-0.66/cyclictest-fix-wakeup-latency-tracing-entry-name.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 1659872000da0e923dc612e026cf26f38ddc3e24 Mon Sep 17 00:00:00 2001
-From: Luotao Fu <l.fu@pengutronix.de>
-Date: Thu, 21 Jan 2010 13:27:13 +0100
-Subject: [PATCH] cyclictest: fix wakeup latency tracing entry name
-
-the control entries for wakeup hist latency is put in a directory simply
-named as "wakeup", not "wakeup_latency"
-
-Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
----
- Makefile | 2 +-
- src/cyclictest/cyclictest.c | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-Index: rt-tests-0.64/src/cyclictest/cyclictest.c
-===================================================================
---- rt-tests-0.64.orig/src/cyclictest/cyclictest.c
-+++ rt-tests-0.64/src/cyclictest/cyclictest.c
-@@ -460,7 +460,7 @@ static void setup_tracer(void)
- setkernvar(traceroptions, traceptr[i]);
- }
- setkernvar("tracing_max_latency", "0");
-- setkernvar("latency_hist/wakeup_latency/reset", "1");
-+ setkernvar("latency_hist/wakeup/reset", "1");
- } else {
- setkernvar("trace_all_cpus", "1");
- setkernvar("trace_freerunning", "1");
diff --git a/patches/rt-tests-0.66/series b/patches/rt-tests-0.66/series
deleted file mode 100644
index 26373cc25..000000000
--- a/patches/rt-tests-0.66/series
+++ /dev/null
@@ -1,3 +0,0 @@
-cyclictest-fix-wakeup-latency-tracing-entry-name.patch
-cyclictest-create-pythondir.patch
-cyclictest-fix-output.diff