From owner-svn-src-all@FreeBSD.ORG Tue Sep 25 21:19:18 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B959A106566B; Tue, 25 Sep 2012 21:19:18 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8AD958FC12; Tue, 25 Sep 2012 21:19:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8PLJIdL097393; Tue, 25 Sep 2012 21:19:18 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8PLJI0n097390; Tue, 25 Sep 2012 21:19:18 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201209252119.q8PLJI0n097390@svn.freebsd.org> From: Ed Maste Date: Tue, 25 Sep 2012 21:19:18 +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: r240932 - head/sys/net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 21:19:18 -0000 Author: emaste Date: Tue Sep 25 21:19:17 2012 New Revision: 240932 URL: http://svn.freebsd.org/changeset/base/240932 Log: Remove an incorrect comment Modified: head/sys/net/if_tun.c Modified: head/sys/net/if_tun.c ============================================================================== --- head/sys/net/if_tun.c Tue Sep 25 21:11:40 2012 (r240931) +++ head/sys/net/if_tun.c Tue Sep 25 21:19:17 2012 (r240932) @@ -246,7 +246,6 @@ tun_destroy(struct tun_softc *tp) { struct cdev *dev; - /* Unlocked read. */ mtx_lock(&tp->tun_mtx); if ((tp->tun_flags & TUN_OPEN) != 0) cv_wait_unlock(&tp->tun_cv, &tp->tun_mtx);