From owner-cvs-src-old@FreeBSD.ORG Tue Jan 12 00:04:40 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A6BB106568B for ; Tue, 12 Jan 2010 00:04:40 +0000 (UTC) (envelope-from qingli@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 199708FC12 for ; Tue, 12 Jan 2010 00:04:40 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0C04dsP047825 for ; Tue, 12 Jan 2010 00:04:39 GMT (envelope-from qingli@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0C04dES047824 for cvs-src-old@freebsd.org; Tue, 12 Jan 2010 00:04:39 GMT (envelope-from qingli@repoman.freebsd.org) Message-Id: <201001120004.o0C04dES047824@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to qingli@repoman.freebsd.org using -f From: Qing Li Date: Tue, 12 Jan 2010 00:04:13 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/netinet if_ether.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jan 2010 00:04:40 -0000 qingli 2010-01-12 00:04:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/netinet if_ether.c Log: SVN rev 202132 on 2010-01-12 00:04:13Z by qingli MFC r201544 An existing incomplete ARP entry would expire a subsequent statically configured entry of the same host. This bug was due to the expiration timer was not cancelled when installing the static entry. Since there exist a potential race condition with respect to timer cancellation, simply check for the LLE_STATIC bit inside the expiration function instead of cancelling the active timer. Revision Changes Path 1.208.2.7 +15 -9 src/sys/netinet/if_ether.c