From owner-cvs-src-old@FreeBSD.ORG Thu Sep 16 14:55:43 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 A4EA51065693 for ; Thu, 16 Sep 2010 14:55:43 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 930108FC1C for ; Thu, 16 Sep 2010 14:55:43 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o8GEthgl010771 for ; Thu, 16 Sep 2010 14:55:43 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o8GEthPw010770 for cvs-src-old@freebsd.org; Thu, 16 Sep 2010 14:55:43 GMT (envelope-from glebius@repoman.freebsd.org) Message-Id: <201009161455.o8GEthPw010770@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to glebius@repoman.freebsd.org using -f From: Gleb Smirnoff Date: Thu, 16 Sep 2010 14:55:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/net if_llatbl.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: Thu, 16 Sep 2010 14:55:43 -0000 glebius 2010-09-16 14:55:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/net if_llatbl.c Log: SVN rev 212735 on 2010-09-16 14:55:22Z by glebius MFhead 210529: When installing a new ARP entry via 'arp -S', lla_lookup() will either find an existing entry, or allocate a new one. In the latter case an entry would have flags, that were supplied as argument to lla_lookup(). In case of an existing entry, flags aren't modified. This lead to losing LLE_PUB and/or LLE_PROXY flags. We should apply these flags either in lla_rt_output() or in the in.c:in_lltable_lookup(). It seems to me that lla_rt_output() is a more correct choice. PR: kern/148784, kern/146539 Revision Changes Path 1.8.2.12 +1 -0 src/sys/net/if_llatbl.c