summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pagano <mpagano@gentoo.org>2016-04-28 10:05:14 -0400
committerMike Pagano <mpagano@gentoo.org>2016-04-28 10:05:14 -0400
commit248ced9dfcb08afe949a95f1918d25eac762ec40 (patch)
treef83c1a279f9215de10972853b2cae9661af93e29
parentFix 3.12.59 patch. (diff)
downloadlinux-patches-248ced9dfcb08afe949a95f1918d25eac762ec40.tar.gz
linux-patches-248ced9dfcb08afe949a95f1918d25eac762ec40.tar.bz2
linux-patches-248ced9dfcb08afe949a95f1918d25eac762ec40.zip
Removal of redundant patchset3.12-58
-rw-r--r--0000_README4
-rw-r--r--1900_modify-pipe_write-to-first-call-sb_start_write_try-a.patch32
2 files changed, 0 insertions, 36 deletions
diff --git a/0000_README b/0000_README
index ee2e2fc5..fdbff05e 100644
--- a/0000_README
+++ b/0000_README
@@ -294,10 +294,6 @@ Patch: 1700_enable-thinkpad-micled.patch
From: https://bugs.gentoo.org/show_bug.cgi?id=449248
Desc: Enable mic mute led in thinkpads
-Patch: 1900_modify-pipe_write-to-first-call-sb_start_write_try-a.patch
-From: https://bugs.gentoo.org/show_bug.cgi?id=493002
-Desc: Modify pipe_write to first call sb_start_write_try(),skip time update on fail
-
Patch: 2400_kcopy-patch-for-infiniband-driver.patch
From: Alexey Shvetsov <alexxy@gentoo.org>
Desc: Zero copy for infiniband psm userspace driver
diff --git a/1900_modify-pipe_write-to-first-call-sb_start_write_try-a.patch b/1900_modify-pipe_write-to-first-call-sb_start_write_try-a.patch
deleted file mode 100644
index 67dedaff..00000000
--- a/1900_modify-pipe_write-to-first-call-sb_start_write_try-a.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 34d651f7979e35fde9a4f77adc26a7e8c1e3e54a Mon Sep 17 00:00:00 2001
-From: Dmitry Monakhov <dmonakhov@openvz.org>
-Date: Tue, 10 Dec 2013 10:05:10 -0500
-Subject: [PATCH] Modify pipe_write to first call sb_start_write_try() and upon
- encountering a frozen fs, skip the time update. See kernel bug #65701 and
- Gentoo Kernel bug #493002.
-
-Signed-off-by: Mike Pagano <mpagano@gentoo.org>
----
- fs/pipe.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/fs/pipe.c b/fs/pipe.c
-index 0e0752e..78fd0d0 100644
---- a/fs/pipe.c
-+++ b/fs/pipe.c
-@@ -663,10 +663,11 @@ out:
- wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
- kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
- }
-- if (ret > 0) {
-+ if (ret > 0 && sb_start_write_trylock(file_inode(filp)->i_sb)) {
- int err = file_update_time(filp);
- if (err)
- ret = err;
-+ sb_end_write(file_inode(filp)->i_sb);
- }
- return ret;
- }
---
-1.8.3.2
-