]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
remove rpc_create patch, not applicable to 2.6.24
authorChris Wright <chrisw@sous-sol.org>
Thu, 17 Apr 2008 22:16:57 +0000 (15:16 -0700)
committerChris Wright <chrisw@sous-sol.org>
Thu, 17 Apr 2008 22:16:57 +0000 (15:16 -0700)
queue-2.6.24/series
queue-2.6.24/sunrpc-fix-a-memory-leak-in-rpc_create.patch [deleted file]

index 6833fc7a1e963428dd7e1be79bd33bff4fb3221b..7c80fc3e8e1f0b7843d743ae996b72286c3fb7a6 100644 (file)
@@ -48,7 +48,6 @@ sis190-read-the-mac-address-from-the-eeprom-first.patch
 bluetooth-hci_core-defer-hci_unregister_sysfs.patch
 sparc64-fix-fpu-saving-in-64-bit-signal-handling.patch
 dvb-tda10086-make-the-22khz-tone-for-diseqc-a-config-option.patch
-sunrpc-fix-a-memory-leak-in-rpc_create.patch
 hfs-fix-unlink-of-links.patch
 acpi-fix-buggy-bios-check-when-cpus-are-hot-removed.patch
 plip-replace-spin_lock_irq-with-spin_lock_irqsave-in-irq-context.patch
diff --git a/queue-2.6.24/sunrpc-fix-a-memory-leak-in-rpc_create.patch b/queue-2.6.24/sunrpc-fix-a-memory-leak-in-rpc_create.patch
deleted file mode 100644 (file)
index f9329f7..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-From stable-bounces@linux.kernel.org  Wed Apr 16 16:27:25 2008
-From: Trond Myklebust <Trond.Myklebust@netapp.com>
-To: stable@kernel.org
-Date: Tue, 08 Apr 2008 21:15:33 -0400
-Message-ID: <20080409011532.22409.87741.stgit@c-69-242-210-120.hsd1.mi.comcast.net>
-Cc: Chuck Lever <chuck.lever@oracle.com>
-Subject: SUNRPC: Fix a memory leak in rpc_create()
-
-From: Chuck Lever <chuck.lever@oracle.com>
-
-upstream commit: ed13c27e546667fb0967ae30f5070cd7f6455f90
-
-Commit 510deb0d was supposed to move the xprt_create_transport() call in
-rpc_create(), but neglected to remove the old call site.  This resulted in
-a transport leak after every rpc_create() call.
-
-This leak is present in 2.6.24 and 2.6.25.
-
-Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
-Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-Signed-off-by: Chris Wright <chrisw@sous-sol.org>
----
-
- net/sunrpc/clnt.c |    4 ----
- 1 file changed, 4 deletions(-)
-
---- a/net/sunrpc/clnt.c
-+++ b/net/sunrpc/clnt.c
-@@ -249,10 +249,6 @@ struct rpc_clnt *rpc_create(struct rpc_c
-       };
-       char servername[20];
--      xprt = xprt_create_transport(&xprtargs);
--      if (IS_ERR(xprt))
--              return (struct rpc_clnt *)xprt;
--
-       /*
-        * If the caller chooses not to specify a hostname, whip
-        * up a string representation of the passed-in address.