Author: np
Date: Fri Nov 16 00:21:54 2012
New Revision: 243110
URL: http://svnweb.freebsd.org/changeset/base/243110

Log:
  cxgbe/tom: Plug mbuf leak.
  
  MFC after:    3 days

Modified:
  head/sys/dev/cxgbe/tom/t4_listen.c

Modified: head/sys/dev/cxgbe/tom/t4_listen.c
==============================================================================
--- head/sys/dev/cxgbe/tom/t4_listen.c  Fri Nov 16 00:14:02 2012        
(r243109)
+++ head/sys/dev/cxgbe/tom/t4_listen.c  Fri Nov 16 00:21:54 2012        
(r243110)
@@ -559,8 +559,10 @@ t4_syncache_respond(struct toedev *tod, 
        struct tcphdr *th = (void *)(ip + 1);
 
        wr = (struct wrqe *)atomic_readandclear_ptr(&synqe->wr);
-       if (wr == NULL)
+       if (wr == NULL) {
+               m_freem(m);
                return (EALREADY);
+       }
 
        bzero(&to, sizeof(to));
        tcp_dooptions(&to, (void *)(th + 1), (th->th_off << 2) - sizeof(*th),
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to