From owner-svn-src-head@freebsd.org Tue Mar 20 20:10:55 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 485B2F6A50F; Tue, 20 Mar 2018 20:10:55 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail106.syd.optusnet.com.au (mail106.syd.optusnet.com.au [211.29.132.42]) by mx1.freebsd.org (Postfix) with ESMTP id B431584C47; Tue, 20 Mar 2018 20:10:54 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from [192.168.0.102] (c110-21-101-228.carlnfd1.nsw.optusnet.com.au [110.21.101.228]) by mail106.syd.optusnet.com.au (Postfix) with ESMTPS id 092233C7A04; Wed, 21 Mar 2018 06:53:33 +1100 (AEDT) Date: Wed, 21 Mar 2018 06:53:32 +1100 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Ed Maste cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r331226 - in head/sys: amd64/linux amd64/linux32 i386/linux In-Reply-To: Message-ID: <20180321064039.L4104@besplex.bde.org> References: <201803192126.w2JLQW0N039356@repo.freebsd.org> <20180320183744.S950@besplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.2 cv=VJytp5HX c=1 sm=1 tr=0 a=PalzARQSbocsUSjMRkwAPg==:117 a=PalzARQSbocsUSjMRkwAPg==:17 a=kj9zAlcOel0A:10 a=PO7r1zJSAAAA:8 a=1uFwktCMVjhwZNqsXxYA:9 a=CjuIK1q_8ugA:10 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 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: Tue, 20 Mar 2018 20:10:55 -0000 On Tue, 20 Mar 2018, Ed Maste wrote: > On 20 March 2018 at 04:19, Bruce Evans wrote: >> >> It is preferable to have a well-chosen (short...) prefix. The linux >> emulator mostly uses l_ for internal names. That is a bit too short >> for external names. > > l_ is too short. The only reasonable alternative is probably lnx_ but > saving two characters seems does not seem worth it. lx_ is reasonable. /sys currently has 1321 lines matching lx_ and 0 lines matching '[^A-Za-z_]lx_', but 865 lines matching lnx_ (mostly for qlnxe(4)). Bruce