diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-03-20 12:16:15 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-03-20 12:16:15 +0100 |
commit | b8cb2ef042e22d6103bd9e44ea53314c1b909743 (patch) | |
tree | 257cd0341329000c450ea00f259e49e5a05450c7 /debian | |
parent | 30fb667e6630b8dfed40feb935d5ecf5e99af180 (diff) |
add ext2fs-skip-unallocated-blocks.patch
Diffstat (limited to 'debian')
-rw-r--r-- | debian/patches/ext2fs-skip-unallocated-blocks.patch | 17 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/debian/patches/ext2fs-skip-unallocated-blocks.patch b/debian/patches/ext2fs-skip-unallocated-blocks.patch new file mode 100644 index 00000000..b98c1dc6 --- /dev/null +++ b/debian/patches/ext2fs-skip-unallocated-blocks.patch @@ -0,0 +1,17 @@ +diff --git a/ext2fs/pager.c b/ext2fs/pager.c +index 6e99c83..4ea4b74 100644 +--- a/ext2fs/pager.c ++++ b/ext2fs/pager.c +@@ -398,8 +398,10 @@ file_pager_write_page (struct node *node, vm_offset_t offset, void *buf) + err = find_block (node, offset, &block, &lock); + if (err) + break; +- assert (block); +- pending_blocks_add (&pb, block); ++ if (block) ++ pending_blocks_add (&pb, block); ++ else ++ pending_blocks_skip (&pb); + offset += block_size; + left -= block_size; + } diff --git a/debian/patches/series b/debian/patches/series index 20a7f65f..f782f7bc 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -48,3 +48,4 @@ xxx-fix-build.patch mach-defpager-fix-receiver-lookups.patch mach-defpager-protected-payload.patch libpager-deadlock.patch +ext2fs-skip-unallocated-blocks.patch |