summaryrefslogtreecommitdiffstats
path: root/main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-12-14 10:06:14 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-12-14 10:06:14 +0000
commit31847192a74580e8ca0c0681b538c7282e968cc7 (patch)
tree7592242b4884c4431cc1a3577bdb64b1a61c7f7c /main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch
parent815d016c68d2791e9cb85355750ffe1e4062dee1 (diff)
downloadaports-31847192a74580e8ca0c0681b538c7282e968cc7.tar.bz2
aports-31847192a74580e8ca0c0681b538c7282e968cc7.tar.xz
main/iscsitarget-grsec: upgrade to 1.4.19 + patch for 2.6.32
Diffstat (limited to 'main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch')
-rw-r--r--main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch b/main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch
new file mode 100644
index 000000000..f139e732e
--- /dev/null
+++ b/main/iscsitarget-grsec/iscsitarget-1.4.18+linux-2.6.32.patch
@@ -0,0 +1,42 @@
+From 43227c1624e919efcd0cd035516c1776be55ac08 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Diego=20Elio=20'Flameeyes'=20Petten=C3=B2?= <flameeyes@gmail.com>
+Date: Sun, 18 Oct 2009 12:41:28 +0200
+Subject: [PATCH] Fix building with Linux kernel 2.6.32 and later.
+
+With commit 18f2ee705d98034b0f229a3202d827468d4bffd9 of the Linux kernel,
+the sync_page_range() function has been removed.
+
+This patch changes it to filemap_write_and_wait_range() as done for the XFS
+driver in the kernel (commit af0f4414f343429971d33b0dd8dccc85c1f3dcd2).
+---
+ kernel/file-io.c | 6 ++++++
+ 1 files changed, 6 insertions(+), 0 deletions(-)
+
+diff --git a/kernel/file-io.c b/kernel/file-io.c
+index dbf7b1c..e4c3fea 100644
+--- a/kernel/file-io.c
++++ b/kernel/file-io.c
+@@ -8,6 +8,7 @@
+ #include <linux/blkdev.h>
+ #include <linux/parser.h>
+ #include <linux/writeback.h>
++#include <linux/version.h>
+
+ #include "iscsi.h"
+ #include "iscsi_dbg.h"
+@@ -88,7 +89,12 @@ static int fileio_sync(struct iet_volume *lu, struct tio *tio)
+ count = lu->blk_cnt << lu->blk_shift;
+ }
+
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 32)
+ res = sync_page_range(inode, mapping, ppos, count);
++#else
++ res = filemap_write_and_wait_range(mapping, ppos,
++ ppos + count -1);
++#endif
+ if (res) {
+ eprintk("I/O error: syncing pages failed: %d\n", res);
+ return -EIO;
+--
+1.6.5
+