summaryrefslogtreecommitdiff
path: root/debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-07-11 14:23:52 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-07-11 14:23:52 +0200
commit9007eeff5b52460c4691bd523e7f938e97c7db56 (patch)
tree2242fdcafda7844896a86bbc6ecad159e678cf6c /debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch
parent025f74bd8f2a4cf4bb0f65d221823cc2c4d9d1cb (diff)
drop old patch series
Diffstat (limited to 'debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch')
-rw-r--r--debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch b/debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch
deleted file mode 100644
index 51ada71..0000000
--- a/debian/patches/upstreamme0007-vm-fix-traversing-the-list-of-inactive-pages.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 012439120c8eda8f4e94f74ff69659a60cedca77 Mon Sep 17 00:00:00 2001
-From: Justus Winter <4winter@informatik.uni-hamburg.de>
-Date: Fri, 10 Jul 2015 11:11:27 +0200
-Subject: [PATCH gnumach 07/10] vm: fix traversing the list of inactive pages
-
-* vm/vm_pageout.c (vm_pageout_scan): Fix traversing the list of
-inactive pages.
----
- vm/vm_pageout.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/vm/vm_pageout.c b/vm/vm_pageout.c
-index aff823a..b13128a 100644
---- a/vm/vm_pageout.c
-+++ b/vm/vm_pageout.c
-@@ -693,7 +693,7 @@ void vm_pageout_scan(void)
- if (want_pages || m->external)
- break;
-
-- m = (vm_page_t) queue_next (m);
-+ m = (vm_page_t) queue_next (&m->listq);
- if (!m)
- goto pause;
- }
---
-2.1.4
-