From owner-freebsd-net@FreeBSD.ORG Mon Apr 9 14:20:16 2012 Return-Path: Delivered-To: freebsd-net@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15CB2106564A for ; Mon, 9 Apr 2012 14:20:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F36D98FC14 for ; Mon, 9 Apr 2012 14:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q39EKFwM022242 for ; Mon, 9 Apr 2012 14:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q39EKFIV022241; Mon, 9 Apr 2012 14:20:15 GMT (envelope-from gnats) Date: Mon, 9 Apr 2012 14:20:15 GMT Message-Id: <201204091420.q39EKFIV022241@freefall.freebsd.org> To: freebsd-net@FreeBSD.org From: st41ker Cc: Subject: Re: kern/154850: [netgraph] [patch] ng_ether fails to name nodes when the associated interface contains dots or colons X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: st41ker List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Apr 2012 14:20:16 -0000 The following reply was made to PR kern/154850; it has been noted by GNATS. From: st41ker To: bug-followup@FreeBSD.org, ndenev@gmail.com Cc: Subject: Re: kern/154850: [netgraph] [patch] ng_ether fails to name nodes when the associated interface contains dots or colons Date: Mon, 09 Apr 2012 17:07:39 +0300 Hello, Mentioned issue still exists in the FreeBSD-9-STABLE branch (it seems like every branch is affected). According to new rc subsystem (check the /etc/network.subr) where vlans are created - they're all using dots in ifnames. Also, function get_if_var() already has mentioned code for the replacing ". - / +" to "_". So mentioned patch will not break anything, even users ngctl scripts, since that users just can not use dots there by design. Thank you.