Date: Fri, 11 Apr 2014 19:17:45 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264351 - head/sys/netinet Message-ID: <201404111917.s3BJHjMS001186@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Fri Apr 11 19:17:45 2014 New Revision: 264351 URL: http://svnweb.freebsd.org/changeset/base/264351 Log: The tw_pcbrele() function does not need the global timewait lock. Submitted by: Julien Charbon Suggested by: glebius Modified: head/sys/netinet/tcp_timewait.c Modified: head/sys/netinet/tcp_timewait.c ============================================================================== --- head/sys/netinet/tcp_timewait.c Fri Apr 11 18:40:29 2014 (r264350) +++ head/sys/netinet/tcp_timewait.c Fri Apr 11 19:17:45 2014 (r264351) @@ -133,23 +133,18 @@ tw_pcbref(struct tcptw *tw) } /* - * Drop a refcount on an tw elevated using tw_pcbref(). Return - * the tw lock released. + * Drop a refcount on an tw elevated using tw_pcbref(). */ static int tw_pcbrele(struct tcptw *tw) { - TW_WLOCK_ASSERT(V_tw_lock); KASSERT(tw->tw_refcount > 0, ("%s: refcount 0", __func__)); - if (!refcount_release(&tw->tw_refcount)) { - TW_WUNLOCK(V_tw_lock); + if (!refcount_release(&tw->tw_refcount)) return (0); - } uma_zfree(V_tcptw_zone, tw); - TW_WUNLOCK(V_tw_lock); return (1); } @@ -682,13 +677,10 @@ tcp_tw_2msl_stop(struct tcptw *tw, int r TAILQ_REMOVE(&V_twq_2msl, tw, tw_2msl); crfree(tw->tw_cred); tw->tw_cred = NULL; + TW_WUNLOCK(V_tw_lock); - if (!reuse) { + if (!reuse) tw_pcbrele(tw); - return; - } - - TW_WUNLOCK(V_tw_lock); } struct tcptw * @@ -730,7 +722,6 @@ tcp_tw_2msl_scan(void) /* Close timewait state */ if (INP_INFO_TRY_WLOCK(&V_tcbinfo)) { - TW_WLOCK(V_tw_lock); if (tw_pcbrele(tw)) { INP_INFO_WUNLOCK(&V_tcbinfo); continue; @@ -744,7 +735,6 @@ tcp_tw_2msl_scan(void) INP_INFO_WUNLOCK(&V_tcbinfo); } else { /* INP_INFO lock is busy, continue later */ - TW_WLOCK(V_tw_lock); tw_pcbrele(tw); break; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404111917.s3BJHjMS001186>