diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-14 14:35:42 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-14 14:35:42 +0200 |
commit | 3c11912d3e6b13a3e88b392eaf61cd11ba2c548b (patch) | |
tree | 45ccb3ad2877d05d7f28bef9a31827dd2b11d78f /debian/patches/0011-fatfs-improve-enable-disable-_caching.patch | |
parent | 8ff7c917a8dbe541fb4bf797e21acc6d0edc7ceb (diff) |
drop old patch series
Diffstat (limited to 'debian/patches/0011-fatfs-improve-enable-disable-_caching.patch')
-rw-r--r-- | debian/patches/0011-fatfs-improve-enable-disable-_caching.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/debian/patches/0011-fatfs-improve-enable-disable-_caching.patch b/debian/patches/0011-fatfs-improve-enable-disable-_caching.patch deleted file mode 100644 index 45b3f45a..00000000 --- a/debian/patches/0011-fatfs-improve-enable-disable-_caching.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 555a58f92cfcf75c5650ef1d96080c512a511f64 Mon Sep 17 00:00:00 2001 -From: Justus Winter <4winter@informatik.uni-hamburg.de> -Date: Fri, 9 May 2014 10:11:45 +0200 -Subject: [PATCH 11/15] fatfs: improve {enable,disable}_caching - -* fatfs/pager.c (enable_caching, disable_caching): Iterate over the -pager class instead of over both pager buckets. ---- - fatfs/pager.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/fatfs/pager.c b/fatfs/pager.c -index f855ecf..7aa5c5e 100644 ---- a/fatfs/pager.c -+++ b/fatfs/pager.c -@@ -23,6 +23,9 @@ - #include <hurd/store.h> - #include "fatfs.h" - -+/* XXX */ -+#include "../libpager/priv.h" -+ - /* A ports bucket to hold disk pager ports. */ - struct port_bucket *disk_pager_bucket; - -@@ -963,8 +966,7 @@ disable_caching () - - /* Loop through the pagers and turn off caching one by one, - synchronously. That should cause termination of each pager. */ -- ports_bucket_iterate (disk_pager_bucket, block_cache); -- ports_bucket_iterate (file_pager_bucket, block_cache); -+ ports_class_iterate (_pager_class, block_cache); - } - - static void -@@ -992,8 +994,7 @@ enable_caching () - return 0; - } - -- ports_bucket_iterate (disk_pager_bucket, enable_cache); -- ports_bucket_iterate (file_pager_bucket, enable_cache); -+ ports_class_iterate (_pager_class, enable_cache); - } - - /* Tell diskfs if there are pagers exported, and if none, then --- -2.0.0.rc0 - |