All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix typo on __rpc_purge_upcall
@ 2005-11-21 19:51 Vince Busam
  2005-11-21 19:55 ` Trond Myklebust
  0 siblings, 1 reply; 14+ messages in thread
From: Vince Busam @ 2005-11-21 19:51 UTC (permalink / raw)
  To: nfs

I posted this last week.  Here's an official style patch.

Vince
------------------------------------------------------------------

Fix an obvious typo that would cause a NULL pointer dereference.

Signed-off-by: Vince Busam <vbusam@google.com>
---

--- linux-2.6.13.4/net/sunrpc/rpc_pipe.c.orig  2005-11-16 16:48:00.000000000 -0800
+++ linux-2.6.13.4/net/sunrpc/rpc_pipe.c       2005-11-16 16:52:23.000000000 -0800
@@ -51,7 +51,7 @@ __rpc_purge_upcall(struct inode *inode,
                  rpci->ops->destroy_msg(msg);
          }
          while (!list_empty(&rpci->in_upcall)) {
-               msg = list_entry(rpci->pipe.next, struct rpc_pipe_msg, list);
+               msg = list_entry(rpci->in_upcall.next, struct rpc_pipe_msg, list);
                  list_del_init(&msg->list);
                  msg->errno = err;
                  rpci->ops->destroy_msg(msg);


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2006-01-05 22:30 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-21 19:51 [PATCH] Fix typo on __rpc_purge_upcall Vince Busam
2005-11-21 19:55 ` Trond Myklebust
2005-11-21 21:51   ` Vince Busam
2005-11-21 22:34     ` Trond Myklebust
2005-11-21 22:59       ` Vince Busam
2005-11-21 23:07         ` Trond Myklebust
2005-11-28 18:16           ` Vince Busam
2005-11-28 18:52             ` Trond Myklebust
2005-12-05 21:03               ` Vince Busam
2005-12-12 18:57                 ` Vince Busam
2005-12-12 19:18                   ` Trond Myklebust
2005-12-12 20:33                     ` Vince Busam
2005-12-12 23:51                       ` Trond Myklebust
2006-01-05 22:30                         ` Vince Busam

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.