summaryrefslogtreecommitdiff
path: root/libre/linux-libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-06-23 15:40:05 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-06-23 15:40:05 -0300
commit79c0430f9d9453cfae107700fe6fc72db1b2e42b (patch)
treec1032ecc03d1a63525e4f56a762db04f7a24f67e /libre/linux-libre
parentad4b6fce4cc7770d9210465ba5e108e00f9eb19c (diff)
downloadabslibre-79c0430f9d9453cfae107700fe6fc72db1b2e42b.tar.gz
abslibre-79c0430f9d9453cfae107700fe6fc72db1b2e42b.tar.bz2
abslibre-79c0430f9d9453cfae107700fe6fc72db1b2e42b.zip
removing obsolete patch
Diffstat (limited to 'libre/linux-libre')
-rw-r--r--libre/linux-libre/3.4.2-rpc_pipefs.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/libre/linux-libre/3.4.2-rpc_pipefs.patch b/libre/linux-libre/3.4.2-rpc_pipefs.patch
deleted file mode 100644
index db53b3813..000000000
--- a/libre/linux-libre/3.4.2-rpc_pipefs.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c
-index 0404047..21fde99 100644
---- a/net/sunrpc/rpc_pipe.c
-+++ b/net/sunrpc/rpc_pipe.c
-@@ -71,7 +71,9 @@ static void rpc_purge_list(wait_queue_head_t *waitq, struct list_head *head,
- msg->errno = err;
- destroy_msg(msg);
- } while (!list_empty(head));
-- wake_up(waitq);
-+
-+ if (waitq)
-+ wake_up(waitq);
- }
-
- static void
-@@ -91,11 +93,9 @@ rpc_timeout_upcall_queue(struct work_struct *work)
- }
- dentry = dget(pipe->dentry);
- spin_unlock(&pipe->lock);
-- if (dentry) {
-- rpc_purge_list(&RPC_I(dentry->d_inode)->waitq,
-- &free_list, destroy_msg, -ETIMEDOUT);
-- dput(dentry);
-- }
-+ rpc_purge_list(dentry ? &RPC_I(dentry->d_inode)->waitq : NULL,
-+ &free_list, destroy_msg, -ETIMEDOUT);
-+ dput(dentry);
- }
-
- ssize_t rpc_pipe_generic_upcall(struct file *filp, struct rpc_pipe_msg *msg,
---
-1.7.7.6
-