From owner-freebsd-questions@FreeBSD.ORG Fri Sep 24 17:49:47 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89517106566C for ; Fri, 24 Sep 2010 17:49:47 +0000 (UTC) (envelope-from rjhjr0@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3F11C8FC0A for ; Fri, 24 Sep 2010 17:49:46 +0000 (UTC) Received: by gxk8 with SMTP id 8so1284103gxk.13 for ; Fri, 24 Sep 2010 10:49:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=UR4ZYkCCp4KyoglqX7hVdbBs0Up9wnCfJxlVCTqS6SM=; b=cXOpKyQbtDstaImkyzucn0w+UvVVLj7FFKQX3D/1Z8phspnbs3bdVpbTyubGvw/VT5 U96NaFTDys73VxhEkwz5QFW7tHdWVT++1XzyV55cRUqS96QXIE90v3ZBmyQ0X0+qpJ10 5X6pL4Q/ua3TcF+gP3DxmwKXg9Gri+mVt/VGg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; b=abEQnmwHO4hsNbtIVVsoJNWLtX2OgwFoXTx7DX3pLcMPQUJu+GJiC23ci0XlQHiKeF xj+yugqCaet1jtkdr/IygCNtciLwznwkEb4zTcaXS3Ezzj7la4wsqZ0vPa5q/D7imkOQ mbL1XM2qukmwUb0rgk9kps5AFgSRxfxADacoI= Received: by 10.151.156.18 with SMTP id i18mr4991535ybo.315.1285350586532; Fri, 24 Sep 2010 10:49:46 -0700 (PDT) Received: from localhost (ip98-163-115-74.dc.dc.cox.net [98.163.115.74]) by mx.google.com with ESMTPS id w3sm1265432ybi.7.2010.09.24.10.49.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 24 Sep 2010 10:49:45 -0700 (PDT) Date: Fri, 24 Sep 2010 13:49:43 -0400 From: Bob Hall To: FreeBSD Questions Message-ID: <20100924174943.GA4468@stainmore> Mail-Followup-To: Bob Hall , FreeBSD Questions References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Subject: Re: Little question about device driver name X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Sep 2010 17:49:47 -0000 On Fri, Sep 24, 2010 at 07:04:06PM +0200, David DEMELIER wrote: > Hi folks, > > I just wonder why if_bridge(4) is prefixed by if_ for device name. > Every other device name like lagg(4), gif(4) are not prefixed with > this same one. if_bridge was based on bridge. I assume that when the updated if_bridge was introduced, the earlier bridge was still available, so the author needed some way to distinguish his new module from the earlier module. Type "man bridge" and check the Authors section.