summaryrefslogtreecommitdiff
path: root/debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-12-01 23:32:11 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-12-01 23:32:11 +0100
commit2f7be7751e50a60be8d54741b4fedad20d58fb41 (patch)
treeafef470cb783f51156efe3230ecb3585d0b7fdc9 /debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch
parentd8fd0b7d390e06648ebc1926cb24204ce81b1fb8 (diff)
drop old patch series
Diffstat (limited to 'debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch')
-rw-r--r--debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch68
1 files changed, 0 insertions, 68 deletions
diff --git a/debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch b/debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch
deleted file mode 100644
index 399a49d4..00000000
--- a/debian/patches/ext2fs-optimize-bcache0002-ext2fs-disable-block-cache-debugging-by-default.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-From fe9ece07747eb7281e0749a3dde7c02267af8ae6 Mon Sep 17 00:00:00 2001
-From: Justus Winter <4winter@informatik.uni-hamburg.de>
-Date: Thu, 12 Nov 2015 23:33:35 +0100
-Subject: [PATCH hurd 2/3] ext2fs: disable block cache debugging by default
-
-* ext2fs/ext2fs.h: Disable block cache debugging by default.
-* ext2fs/pager.c: Likewise.
----
- ext2fs/ext2fs.h | 4 ++--
- ext2fs/pager.c | 6 +++---
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/ext2fs/ext2fs.h b/ext2fs/ext2fs.h
-index 42717c5..0b6b79e 100644
---- a/ext2fs/ext2fs.h
-+++ b/ext2fs/ext2fs.h
-@@ -244,7 +244,7 @@ extern int disk_cache_blocks;
-
- #define DC_NO_BLOCK ((block_t) -1L)
-
--#ifndef NDEBUG
-+#ifdef DEBUG_DISK_CACHE
- #define DISK_CACHE_LAST_READ_XOR 0xDEADBEEF
- #endif
-
-@@ -254,7 +254,7 @@ struct disk_cache_info
- block_t block;
- uint16_t flags;
- uint16_t ref_count;
--#ifndef NDEBUG
-+#ifdef DEBUG_DISK_CACHE
- block_t last_read, last_read_xor;
- #endif
- };
-diff --git a/ext2fs/pager.c b/ext2fs/pager.c
-index 2528856..f28bcab 100644
---- a/ext2fs/pager.c
-+++ b/ext2fs/pager.c
-@@ -433,7 +433,7 @@ disk_pager_read_page (vm_offset_t page, void **buf, int *writelock)
- + offset % block_size;
- disk_cache_info[index].flags |= DC_INCORE;
- disk_cache_info[index].flags &=~ DC_UNTOUCHED;
--#ifndef NDEBUG
-+#ifdef DEBUG_DISK_CACHE
- disk_cache_info[index].last_read = disk_cache_info[index].block;
- disk_cache_info[index].last_read_xor
- = disk_cache_info[index].block ^ DISK_CACHE_LAST_READ_XOR;
-@@ -469,7 +469,7 @@ disk_pager_write_page (vm_offset_t page, void *buf)
- assert (disk_cache_info[index].block != DC_NO_BLOCK);
- offset = ((store_offset_t) disk_cache_info[index].block << log2_block_size)
- + offset % block_size;
--#ifndef NDEBUG /* Not strictly needed. */
-+#ifdef DEBUG_DISK_CACHE /* Not strictly needed. */
- assert ((disk_cache_info[index].last_read ^ DISK_CACHE_LAST_READ_XOR)
- == disk_cache_info[index].last_read_xor);
- assert (disk_cache_info[index].last_read
-@@ -873,7 +873,7 @@ disk_cache_init (void)
- disk_cache_info[i].block = DC_NO_BLOCK;
- disk_cache_info[i].flags = 0;
- disk_cache_info[i].ref_count = 0;
--#ifndef NDEBUG
-+#ifdef DEBUG_DISK_CACHE
- disk_cache_info[i].last_read = DC_NO_BLOCK;
- disk_cache_info[i].last_read_xor
- = DC_NO_BLOCK ^ DISK_CACHE_LAST_READ_XOR;
---
-2.1.4
-