From owner-svn-src-all@FreeBSD.ORG Tue Nov 13 02:41:32 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 28182CA8 for ; Tue, 13 Nov 2012 02:41:32 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id D2B548FC1A for ; Tue, 13 Nov 2012 02:41:31 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so13055790iea.13 for ; Mon, 12 Nov 2012 18:41:31 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer :x-gm-message-state; bh=hm7nvMdmML08iEBcpq5XUaihNgrXfRR2ENi/E2q7iL4=; b=YHJ/A2W8mUHQ5mynxUEaz7imnfBECQ/D3ArH1xWKI0g1P8u0L/gc54qxRPGKHvu2cj hjQq3njVEDmCdi4ITG+A4YWRmrRsUZKVQMCCa6yWZkepH9zoAufwsCBBf9tROP5GRSNT IYxM0HjlhuPnWmtoi4wyjOggWwow4wHoM89UXIea0xl+byWIw9i20HNMjtt7hJ4MYDpz ea5Kc0aCBAUrFGEtQoTEExVHBc1+GsVaunUuEp540vsRDBeZJ34eOzO9oeGW78FV4iT6 fcq7x2g+2f0r7S8zPPmlARFmMGu1DAApOCjl726DgpVA8G8F5AMpe3wIgiHC8P0iwDIi dLrw== Received: by 10.50.150.235 with SMTP id ul11mr9478971igb.31.1352774491244; Mon, 12 Nov 2012 18:41:31 -0800 (PST) Received: from 53.imp.bsdimp.com (50-78-194-198-static.hfc.comcastbusiness.net. [50.78.194.198]) by mx.google.com with ESMTPS id ff4sm9664546igc.13.2012.11.12.18.41.29 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 12 Nov 2012 18:41:30 -0800 (PST) Sender: Warner Losh Subject: Re: svn commit: r241933 - head/sys/conf Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii From: Warner Losh In-Reply-To: <20121113002907.GA98994@dragon.NUXI.org> Date: Mon, 12 Nov 2012 19:41:28 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <092962CE-23AB-46C9-91C5-D3E2A302A6AA@bsdimp.com> References: <201210231458.q9NEwPRd090442@svn.freebsd.org> <20121113002907.GA98994@dragon.NUXI.org> To: obrien@freebsd.org X-Mailer: Apple Mail (2.1085) X-Gm-Message-State: ALoCoQl92qQk/b53pptClIzJ5tNQUgLtT+CJWYlD0uSsKArRG1N2+ZGPkEn5lCWaNiHpfWQEqvwz Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Warner Losh X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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, 13 Nov 2012 02:41:32 -0000 On Nov 12, 2012, at 5:29 PM, David O'Brien wrote: > On Tue, Oct 23, 2012 at 02:58:25PM +0000, Warner Losh wrote: >> Log: >> Start a clean-room implementation of files.mips. This is sufficient >> for SWARM64 and SWARM64_SMP to compile. Other kernels will be = layered >> in. >> Modified: >> head/sys/conf/files.mips > ... >> -# Copyright (c) 2001, 2004-2005, Juniper Networks, Inc. >> -# All rights reserved. >> -# JNPR: files.mips,v 1.11 2007/08/09 12:25:35 katta >=20 > Hi Warner, > What is the purpose of this? A complete rewrite from scratch, starting with an empty file and fixing = things that config/buildkernel complained about. > $ diff -Bbw files.mips.r241680,sorted files.mips.r241933,sorted | = egrep -v '^(\+|-|@@)' | wc -l > 43 >=20 > So some of the content did "filter through" the clean room. No, it did not. You are mistaken. Sometimes, there's only one way to = list files. > Who did the "clean-room" implementation? I did. > If you, is it really a clean-room reimplementation? Yes. > You're so familiar with this file are you really able to do such a = thing? Yes. This file is so simple that there's really only one way that a 'find = sys/mips -name \*.c' can be expressed. Warner=