From owner-svn-src-head@FreeBSD.ORG Thu Apr 16 22:55:59 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AE5D106566C; Thu, 16 Apr 2009 22:55:59 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 595188FC17; Thu, 16 Apr 2009 22:55:59 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n3GMtx2X094510; Thu, 16 Apr 2009 22:55:59 GMT (envelope-from kmacy@svn.freebsd.org) Received: (from kmacy@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n3GMtxEh094509; Thu, 16 Apr 2009 22:55:59 GMT (envelope-from kmacy@svn.freebsd.org) Message-Id: <200904162255.n3GMtxEh094509@svn.freebsd.org> From: Kip Macy Date: Thu, 16 Apr 2009 22:55:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r191159 - head/sys/net X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Apr 2009 22:55:59 -0000 Author: kmacy Date: Thu Apr 16 22:55:59 2009 New Revision: 191159 URL: http://svn.freebsd.org/changeset/base/191159 Log: add comment to llentry_update Requested by: sam Modified: head/sys/net/if_llatbl.c Modified: head/sys/net/if_llatbl.c ============================================================================== --- head/sys/net/if_llatbl.c Thu Apr 16 22:47:43 2009 (r191158) +++ head/sys/net/if_llatbl.c Thu Apr 16 22:55:59 2009 (r191159) @@ -103,6 +103,10 @@ llentry_free(struct llentry *lle) LLE_FREE_LOCKED(lle); } +/* + * Update an llentry for address dst (equivalent to rtalloc for new-arp) + * Caller must pass in a valid struct llentry * + */ int llentry_update(struct llentry **llep, struct lltable *lt, struct sockaddr *dst, struct ifnet *ifp)