From owner-svn-src-projects@FreeBSD.ORG Sun Dec 9 04:55:59 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E2F378B; Sun, 9 Dec 2012 04:55:59 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id DCF238FC08; Sun, 9 Dec 2012 04:55:57 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id j13so1575740lah.13 for ; Sat, 08 Dec 2012 20:55:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=NXX4iFT26THTrr8YjnBAPrlLl2HfsyOuVxnSgjX5F5s=; b=v7I+qpp7990jWN1VYH7jbNbwxoJtoOVO5N4FNtvC014e6UMvw4aNudP7xmK4Yw5ho4 JjmrFJYsxsd1WFcq9jhGvODbIksduY+HfHRj4Mqr/AfJRdFQ7DZxbtkiV1uykgsXv/zY +pTSEuMGOCCN2A7DmIjZOFS8bbH8e00ORXeg2D31APPWnenrAE9Skm1lgfR+1ckicbR0 PfV+iAJuaCGNbVdgCvLNzTnvAROA1dlw4ckFnypapHxRGtRl/1NEOoZ/Oy8TQkERiTLF JJ4GFJOFUNuyD3yTrpfkjtwcKy2ZIEBz9kMGCR/Q3gTg0upllXfIz87n2Ud6pVkUgfX9 3eXg== MIME-Version: 1.0 Received: by 10.152.132.3 with SMTP id oq3mr9762813lab.18.1355028950828; Sat, 08 Dec 2012 20:55:50 -0800 (PST) Sender: asmrookie@gmail.com Received: by 10.112.84.193 with HTTP; Sat, 8 Dec 2012 20:55:50 -0800 (PST) In-Reply-To: <20121207125401.S1231@besplex.bde.org> References: <201207301350.q6UDobCI099069@svn.freebsd.org> <201207301732.33474.jhb@freebsd.org> <20121029155136.O943@besplex.bde.org> <20121109034942.C5338@besplex.bde.org> <20121207125401.S1231@besplex.bde.org> Date: Sun, 9 Dec 2012 04:55:50 +0000 X-Google-Sender-Auth: OBJL8GYYWn_adGhRVugN46Sp9hw Message-ID: Subject: Re: svn commit: r238907 - projects/calloutng/sys/kern From: Attilio Rao To: Bruce Evans Content-Type: text/plain; charset=UTF-8 Cc: src-committers@freebsd.org, John Baldwin , Jeff Roberson , Florian Smeets , Bruce Evans , svn-src-projects@freebsd.org X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: attilio@FreeBSD.org List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Dec 2012 04:55:59 -0000 On Fri, Dec 7, 2012 at 2:42 AM, Bruce Evans wrote: > On Wed, 5 Dec 2012, Attilio Rao wrote: > >> On Sat, Nov 24, 2012 at 3:43 PM, Attilio Rao wrote: >>> >>> On Thu, Nov 8, 2012 at 5:26 PM, Bruce Evans wrote: >>>> >>>> On Fri, 2 Nov 2012, Attilio Rao wrote: >>>> >>>>> On 10/29/12, Bruce Evans wrote: >>>>>> >>>>>> >>>>>> On Mon, 29 Oct 2012, Attilio Rao wrote: >>>>>> >>>>>>> Now that sched_pin()/sched_unpin() are fixed I would like to >>>>>>> introduce >>>>>>> this new patch, making critical_enter()/critical_exit() inline: >>>>>>> http://www.freebsd.org/~attilio/inline_critical.patch >>>>>> >>>>>> >>>>>> ... >>>>>> >>>>>> My version goes the other way and uninlines mtx_lock_spin() and >>>>>> mtx_unlock_spin(). Then it inlines (open codes) critical_enter() and >>>>>> ... >>>>> >>>>> >>>>> >>>>> So, I thought more about this and I think that inlining >>>>> critical_exit() is not really going to bring any benefit here but >>>>> bloat. >>>>> This is because nested critical sections are rare rather not, which >>>> >>>> >>>> >>>> Rather rare !not? :-) >>>> >>>> >>>>> means you will end up in doing the function call most of the time and >>>>> plus we have the possible pessimization introduced by the memory >>>>> clobber (__compiler_membar()) and as you note possible deficiency >>>>> caming from the branch misprediction*. >>>> >>>> >>>> >>>> This seems best. >>>> >>>> I see a point about the rareness of the branch in critical_exit(). >>>> Not sure if it is the one you are making: since the nested case is >>>> rare, then the branch will normally be correctly predicted. If the >>>> function remains uninlined, then the branch still has a good chance >>>> of being correctly predicted. This depends on the nested case being >>>> so rare across all callers, that the non-nested case doesn't mess >>>> up the prediction by happening often. The branch predictor only >>>> has to maintain history for 1 branch for this. However, if the >>>> call is inlined and there are many callers, there might be too many >>>> to maintain history for them all. >>> >>> >>> Yes, that's basically the same conclusion I came up with. >>> >>> It seems you are not opposed to this version of the patch. >>> I made some in-kernel benchmarks but they didn't really show a >>> performance improvements, bigger than 1-2%, which on SMP system is >>> basically accountable to thirdy-part effects. > > > 1-2% is about the best that can be hoped for from a single change, > but is too hard to measure with confidence. > > >>> However we already employ the same code for sched_pin() and I then >>> think that we can just commit this patch as-is. >> >> >> I made up my mind on instead not committing this patch, as I cannot >> prove a real performance gain, as also Jeff agreed with privately. >> Instead, I would like to commit this small comment explaining why it >> is not inlined (see below). Let me know what you think. > > > Good. > > Minor grammar and fixes: > > >> Index: sys/kern/kern_switch.c >> =================================================================== >> --- sys/kern/kern_switch.c (revision 243911) >> +++ sys/kern/kern_switch.c (working copy) >> @@ -176,6 +176,11 @@ retry: >> /* >> * Kernel thread preemption implementation. Critical sections mark >> * regions of code in which preemptions are not allowed. >> + * It would seem a good idea to inline such function but, in order > > > s/would/might/ > > s/such/such a/ or better (?), s/such function/crticical_enter() > > I think the new part of the comment only applies to critical_enter(). > critical_exit() is much larger, so it never seemed such a good idea > to inline it. > > If this sentence begins a new paragraph, then it should be preceded by > an empty line. Otherwise, it should not begin on a new line. I think > the latter applies. In fact, the comment should be separate. The old > part of the comment applies to both critical_enter() and critical_exit(), > but it is bogusly attached to only the former. After separating it from > the former, the new part of the comment can be better attached to the > former alone. > > >> + * to prevent instructions reordering by the compiler, a >> __compiler_membar() > > > s/instructions/instructions/ > > s/a __compiler.../__compiler.../ > > >> + * must be used here (look at sched_pin() case). The performance penalty > > > s/must/would have to/ > > s/look at sched_pin() case/the same as for sched_pin()/ > > Looking at sched_pin() doesn't show any comment about this. I seem to > remember discussions of this. Maybe the details are in a log message. > > Technical points: > - is the function being extern really enough to force the equivalent of > __compiler_membar()? Inter-file optimization might break this. It > would be easy to add an explicit __compiler_membar() to the beginning > of critical_enter(), but there are probably many other functions that > would need the same treatment for inter-file optimization. > - compilers already do intra-file optimization giving automatic inlining > of (static) functions that are only called once, unless this is > disabled by -fno-inline-functions-called-once. It should be disabled > by default, since it also breaks debugging including stack traces, > and profiling. Perhaps it also breaks implicit membars. > - IIRC, inlining is not permitted to change function call semantics, so > it may be a bug for the membar in sched_pin() to have any effect. > Anyway, extern functions are not required to give stricter ordering > than static [inline] ones. Function calls are required to give > sequence points (after their parameters have been evaluated), and > sequence points are required to have all side effects of previous > evaluations complete and no side effects of subsequent evaluations > begun. Is that any different from a membar? I think membars are > a little more magic, and it is hard to see how anything can give > stricter ordering requirements on the compiler than a sequence > point except by magic. > > >> + * imposed by the membar could, then, produce slower code than >> + * the function call itself, for most cases. >> */ > > > The punctuation given by all those commas seems to be correct, but oit > is painfully formal. I've integrated your suggestions and committed as r244046, thanks. For your concern about sched_pin() please check notes reported in this same thread and commit log. Thanks, Attilio -- Peace can only be achieved by understanding - A. Einstein From owner-svn-src-projects@FreeBSD.ORG Mon Dec 10 20:10:28 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8496EC0A; Mon, 10 Dec 2012 20:10:28 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 571738FC13; Mon, 10 Dec 2012 20:10:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBAKASZU002942; Mon, 10 Dec 2012 20:10:28 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBAKAO4D002914; Mon, 10 Dec 2012 20:10:24 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201212102010.qBAKAO4D002914@svn.freebsd.org> From: Brooks Davis Date: Mon, 10 Dec 2012 20:10:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244094 - in projects/mtree: . bin/date bin/dd bin/df bin/ed bin/getfacl bin/ln bin/ls bin/mv bin/pax bin/rcp bin/rm bin/setfacl bin/sh cddl/contrib/opensolaris/cmd/zfs cddl/contrib/ope... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2012 20:10:28 -0000 Author: brooks Date: Mon Dec 10 20:10:20 2012 New Revision: 244094 URL: http://svnweb.freebsd.org/changeset/base/244094 Log: MFH at r244092. This rolls in the merge of NetBSD's pwcache(3). Added: projects/mtree/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 - copied unchanged from r244092, head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 projects/mtree/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ - copied from r244092, head/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ projects/mtree/contrib/atf/FREEBSD-Xlist - copied unchanged from r244092, head/contrib/atf/FREEBSD-Xlist projects/mtree/contrib/atf/FREEBSD-upgrade - copied unchanged from r244092, head/contrib/atf/FREEBSD-upgrade projects/mtree/contrib/bind9/lib/dns/opensslecdsa_link.c - copied unchanged from r244092, head/contrib/bind9/lib/dns/opensslecdsa_link.c - copied from r244092, head/contrib/bmake/ projects/mtree/contrib/dialog/samples/dft-cancel - copied unchanged from r244092, head/contrib/dialog/samples/dft-cancel projects/mtree/contrib/dialog/samples/dft-extra - copied unchanged from r244092, head/contrib/dialog/samples/dft-extra projects/mtree/contrib/dialog/samples/dft-help - copied unchanged from r244092, head/contrib/dialog/samples/dft-help projects/mtree/contrib/dialog/samples/dft-no - copied unchanged from r244092, head/contrib/dialog/samples/dft-no projects/mtree/contrib/dialog/samples/fselect0 - copied unchanged from r244092, head/contrib/dialog/samples/fselect0 projects/mtree/contrib/dialog/samples/with-dquotes - copied unchanged from r244092, head/contrib/dialog/samples/with-dquotes projects/mtree/contrib/dialog/samples/with-squotes - copied unchanged from r244092, head/contrib/dialog/samples/with-squotes projects/mtree/contrib/libc++/CREDITS.TXT - copied unchanged from r244092, head/contrib/libc++/CREDITS.TXT projects/mtree/contrib/libc++/LICENSE.TXT - copied unchanged from r244092, head/contrib/libc++/LICENSE.TXT projects/mtree/contrib/libc-pwcache/ - copied from r244092, head/contrib/libc-pwcache/ projects/mtree/contrib/libpcap/pcap-canusb-linux.c - copied unchanged from r244092, head/contrib/libpcap/pcap-canusb-linux.c projects/mtree/contrib/libpcap/pcap-canusb-linux.h - copied unchanged from r244092, head/contrib/libpcap/pcap-canusb-linux.h projects/mtree/contrib/libpcap/tests/ - copied from r244092, head/contrib/libpcap/tests/ projects/mtree/contrib/llvm/include/llvm/ADT/MapVector.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/ADT/MapVector.h projects/mtree/contrib/llvm/include/llvm/AddressingMode.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/AddressingMode.h projects/mtree/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h projects/mtree/contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h projects/mtree/contrib/llvm/include/llvm/Analysis/ProfileDataTypes.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Analysis/ProfileDataTypes.h projects/mtree/contrib/llvm/include/llvm/CodeGen/CommandFlags.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/CodeGen/CommandFlags.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h projects/mtree/contrib/llvm/include/llvm/CodeGen/ScheduleDAGILP.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGILP.h projects/mtree/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h projects/mtree/contrib/llvm/include/llvm/DataLayout.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/DataLayout.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h projects/mtree/contrib/llvm/include/llvm/Object/RelocVisitor.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Object/RelocVisitor.h projects/mtree/contrib/llvm/include/llvm/Target/TargetTransformImpl.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Target/TargetTransformImpl.h projects/mtree/contrib/llvm/include/llvm/TargetTransformInfo.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/TargetTransformInfo.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h - copied unchanged from r244092, head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h projects/mtree/contrib/llvm/lib/Analysis/CostModel.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Analysis/CostModel.cpp projects/mtree/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp projects/mtree/contrib/llvm/lib/Analysis/ProfileDataLoader.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Analysis/ProfileDataLoader.cpp projects/mtree/contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachinePostDominators.cpp - copied unchanged from r244092, head/contrib/llvm/lib/CodeGen/MachinePostDominators.cpp projects/mtree/contrib/llvm/lib/CodeGen/StackColoring.cpp - copied unchanged from r244092, head/contrib/llvm/lib/CodeGen/StackColoring.cpp projects/mtree/contrib/llvm/lib/CodeGen/TargetSchedule.cpp - copied unchanged from r244092, head/contrib/llvm/lib/CodeGen/TargetSchedule.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp - copied unchanged from r244092, head/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.h - copied unchanged from r244092, head/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.h projects/mtree/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h - copied unchanged from r244092, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h projects/mtree/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h - copied unchanged from r244092, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h projects/mtree/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h - copied unchanged from r244092, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h projects/mtree/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c - copied unchanged from r244092, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c projects/mtree/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h - copied unchanged from r244092, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h - copied unchanged from r244092, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td - copied unchanged from r244092, head/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h - copied unchanged from r244092, head/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.h - copied unchanged from r244092, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td - copied unchanged from r244092, head/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td - copied unchanged from r244092, head/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td - copied unchanged from r244092, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td - copied unchanged from r244092, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td projects/mtree/contrib/llvm/lib/Target/TargetTransformImpl.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Target/TargetTransformImpl.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86InstrTSX.td - copied unchanged from r244092, head/contrib/llvm/lib/Target/X86/X86InstrTSX.td projects/mtree/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/BlackList.h - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Instrumentation/BlackList.h projects/mtree/contrib/llvm/lib/Transforms/Scalar/SROA.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Scalar/SROA.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp projects/mtree/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp - copied unchanged from r244092, head/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp projects/mtree/contrib/llvm/lib/VMCore/AttributesImpl.h - copied unchanged from r244092, head/contrib/llvm/lib/VMCore/AttributesImpl.h projects/mtree/contrib/llvm/lib/VMCore/DataLayout.cpp - copied unchanged from r244092, head/contrib/llvm/lib/VMCore/DataLayout.cpp projects/mtree/contrib/llvm/lib/VMCore/TargetTransformInfo.cpp - copied unchanged from r244092, head/contrib/llvm/lib/VMCore/TargetTransformInfo.cpp projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td projects/mtree/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTTypeTraits.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTTypeTraits.h projects/mtree/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PPMutationListener.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Lex/PPMutationListener.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/Core/ - copied from r244092, head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/ projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ - copied from r244092, head/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h projects/mtree/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h projects/mtree/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/Core/ - copied from r244092, head/contrib/llvm/tools/clang/lib/Rewrite/Core/ projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ - copied from r244092, head/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ projects/mtree/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp - copied unchanged from r244092, head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp projects/mtree/contrib/llvm/tools/lli/RecordingMemoryManager.cpp - copied unchanged from r244092, head/contrib/llvm/tools/lli/RecordingMemoryManager.cpp projects/mtree/contrib/llvm/tools/lli/RecordingMemoryManager.h - copied unchanged from r244092, head/contrib/llvm/tools/lli/RecordingMemoryManager.h projects/mtree/contrib/llvm/tools/lli/RemoteTarget.cpp - copied unchanged from r244092, head/contrib/llvm/tools/lli/RemoteTarget.cpp projects/mtree/contrib/llvm/tools/lli/RemoteTarget.h - copied unchanged from r244092, head/contrib/llvm/tools/lli/RemoteTarget.h projects/mtree/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp - copied unchanged from r244092, head/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp projects/mtree/contrib/mdocml/ - copied from r244092, head/contrib/mdocml/ projects/mtree/contrib/openbsm/bin/auditdistd/ - copied from r244092, head/contrib/openbsm/bin/auditdistd/ projects/mtree/contrib/openbsm/compat/closefrom.h - copied unchanged from r244092, head/contrib/openbsm/compat/closefrom.h projects/mtree/contrib/openbsm/compat/compat.h - copied unchanged from r244092, head/contrib/openbsm/compat/compat.h projects/mtree/contrib/openbsm/compat/endian_enc.h - copied unchanged from r244092, head/contrib/openbsm/compat/endian_enc.h projects/mtree/contrib/openbsm/compat/flopen.h - copied unchanged from r244092, head/contrib/openbsm/compat/flopen.h projects/mtree/contrib/openbsm/compat/pidfile.h - copied unchanged from r244092, head/contrib/openbsm/compat/pidfile.h projects/mtree/contrib/openbsm/compat/vis.h - copied unchanged from r244092, head/contrib/openbsm/compat/vis.h projects/mtree/contrib/openbsm/config/ylwrap - copied unchanged from r244092, head/contrib/openbsm/config/ylwrap projects/mtree/contrib/openbsm/m4/ - copied from r244092, head/contrib/openbsm/m4/ projects/mtree/contrib/tcpdump/print-pfsync.c - copied unchanged from r244092, head/contrib/tcpdump/print-pfsync.c projects/mtree/contrib/tcpdump/print-tipc.c - copied unchanged from r244092, head/contrib/tcpdump/print-tipc.c projects/mtree/etc/atf/ - copied from r244092, head/etc/atf/ projects/mtree/etc/rc.d/auditdistd - copied unchanged from r244092, head/etc/rc.d/auditdistd projects/mtree/lib/atf/ - copied from r244092, head/lib/atf/ projects/mtree/lib/clang/include/MipsGenAsmMatcher.inc - copied unchanged from r244092, head/lib/clang/include/MipsGenAsmMatcher.inc projects/mtree/lib/clang/include/MipsGenMCPseudoLowering.inc - copied unchanged from r244092, head/lib/clang/include/MipsGenMCPseudoLowering.inc projects/mtree/lib/clang/include/clang/AST/CommentCommandInfo.inc - copied unchanged from r244092, head/lib/clang/include/clang/AST/CommentCommandInfo.inc projects/mtree/lib/clang/include/clang/AST/CommentHTMLTags.inc - copied unchanged from r244092, head/lib/clang/include/clang/AST/CommentHTMLTags.inc projects/mtree/lib/clang/include/clang/AST/CommentHTMLTagsProperties.inc - copied unchanged from r244092, head/lib/clang/include/clang/AST/CommentHTMLTagsProperties.inc projects/mtree/lib/clang/libclangrewritecore/ - copied from r244092, head/lib/clang/libclangrewritecore/ projects/mtree/lib/clang/libclangrewritefrontend/ - copied from r244092, head/lib/clang/libclangrewritefrontend/ projects/mtree/lib/libc/gen/waitid.c - copied unchanged from r244092, head/lib/libc/gen/waitid.c projects/mtree/lib/libcrypt/tests/ - copied from r244092, head/lib/libcrypt/tests/ projects/mtree/lib/libmandoc/ - copied from r244092, head/lib/libmandoc/ projects/mtree/lib/libpmc/pmc.sandybridgexeon.3 - copied unchanged from r244092, head/lib/libpmc/pmc.sandybridgexeon.3 projects/mtree/lib/libutil/pw_util.3 - copied unchanged from r244092, head/lib/libutil/pw_util.3 projects/mtree/libexec/atf/ - copied from r244092, head/libexec/atf/ projects/mtree/libexec/rpc.rusersd/extern.h - copied unchanged from r244092, head/libexec/rpc.rusersd/extern.h projects/mtree/release/doc/de_DE.ISO8859-1/early-adopter/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/early-adopter/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/errata/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/errata/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/artheader.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/intro.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/common/intro.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.xml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/abstract.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/common/abstract.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/artheader.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/common/artheader.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/install.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/common/install.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/layout.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/common/layout.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/trouble.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/common/trouble.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/upgrade.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/i386/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/i386/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/installation/sparc64/install.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.xml projects/mtree/release/doc/de_DE.ISO8859-1/readme/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/readme/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml - copied unchanged from r244092, head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml projects/mtree/release/doc/de_DE.ISO8859-1/share/xml/ - copied from r244092, head/release/doc/de_DE.ISO8859-1/share/xml/ projects/mtree/release/doc/en_US.ISO8859-1/errata/article.xml - copied unchanged from r244092, head/release/doc/en_US.ISO8859-1/errata/article.xml projects/mtree/release/doc/en_US.ISO8859-1/hardware/article.xml - copied unchanged from r244092, head/release/doc/en_US.ISO8859-1/hardware/article.xml projects/mtree/release/doc/en_US.ISO8859-1/readme/article.xml - copied unchanged from r244092, head/release/doc/en_US.ISO8859-1/readme/article.xml projects/mtree/release/doc/en_US.ISO8859-1/relnotes/article.xml - copied unchanged from r244092, head/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/mtree/release/doc/en_US.ISO8859-1/share/xml/ - copied from r244092, head/release/doc/en_US.ISO8859-1/share/xml/ projects/mtree/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/errata/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/errata/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/intro.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.xml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/abstract.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/artheader.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/install.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/common/install.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/trouble.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.xml projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml - copied unchanged from r244092, head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml projects/mtree/release/doc/fr_FR.ISO8859-1/share/xml/ - copied from r244092, head/release/doc/fr_FR.ISO8859-1/share/xml/ projects/mtree/release/doc/ja_JP.eucJP/errata/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/errata/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/alpha/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/alpha/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/amd64/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/amd64/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/common/artheader.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/common/artheader.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/common/dev.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/common/dev.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/common/intro.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/common/intro.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/i386/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/i386/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/ia64/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/ia64/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/pc98/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/pc98/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml projects/mtree/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/common/new.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/common/new.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/i386/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/i386/article.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml projects/mtree/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml - copied unchanged from r244092, head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml projects/mtree/release/doc/ja_JP.eucJP/share/xml/ - copied from r244092, head/release/doc/ja_JP.eucJP/share/xml/ projects/mtree/release/doc/ru_RU.KOI8-R/errata/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/errata/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/install.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/common/install.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/layout.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/common/layout.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/i386/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/i386/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/readme/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/readme/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml - copied unchanged from r244092, head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml projects/mtree/release/doc/ru_RU.KOI8-R/share/xml/ - copied from r244092, head/release/doc/ru_RU.KOI8-R/share/xml/ projects/mtree/release/doc/share/xml/ - copied from r244092, head/release/doc/share/xml/ projects/mtree/release/doc/zh_CN.GB2312/errata/article.xml - copied unchanged from r244092, head/release/doc/zh_CN.GB2312/errata/article.xml projects/mtree/release/doc/zh_CN.GB2312/hardware/article.xml - copied unchanged from r244092, head/release/doc/zh_CN.GB2312/hardware/article.xml projects/mtree/release/doc/zh_CN.GB2312/readme/article.xml - copied unchanged from r244092, head/release/doc/zh_CN.GB2312/readme/article.xml projects/mtree/release/doc/zh_CN.GB2312/relnotes/article.xml - copied unchanged from r244092, head/release/doc/zh_CN.GB2312/relnotes/article.xml projects/mtree/release/doc/zh_CN.GB2312/share/xml/ - copied from r244092, head/release/doc/zh_CN.GB2312/share/xml/ projects/mtree/sbin/mount_fusefs/ - copied from r244092, head/sbin/mount_fusefs/ projects/mtree/share/atf/ - copied from r244092, head/share/atf/ projects/mtree/share/doc/atf/ - copied from r244092, head/share/doc/atf/ projects/mtree/share/examples/atf/ - copied from r244092, head/share/examples/atf/ projects/mtree/share/man/man4/nvd.4 - copied unchanged from r244092, head/share/man/man4/nvd.4 projects/mtree/share/man/man4/nvme.4 - copied unchanged from r244092, head/share/man/man4/nvme.4 projects/mtree/share/man/man4/virtio_scsi.4 - copied unchanged from r244092, head/share/man/man4/virtio_scsi.4 projects/mtree/share/mk/atf.test.mk - copied unchanged from r244092, head/share/mk/atf.test.mk projects/mtree/share/mk/bsd.progs.mk - copied unchanged from r244092, head/share/mk/bsd.progs.mk projects/mtree/share/mk/bsd.test.mk - copied unchanged from r244092, head/share/mk/bsd.test.mk projects/mtree/share/syscons/keymaps/danish.iso.macbook.kbd - copied unchanged from r244092, head/share/syscons/keymaps/danish.iso.macbook.kbd projects/mtree/share/syscons/keymaps/us.dvorakp.kbd - copied unchanged from r244092, head/share/syscons/keymaps/us.dvorakp.kbd projects/mtree/share/xml/ - copied from r244092, head/share/xml/ projects/mtree/share/xsl/ - copied from r244092, head/share/xsl/ projects/mtree/sys/arm/broadcom/bcm2835/bcm2835_gpio.c - copied unchanged from r244092, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/mtree/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c - copied unchanged from r244092, head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/mtree/sys/arm/conf/Makefile - copied unchanged from r244092, head/sys/arm/conf/Makefile projects/mtree/sys/arm/conf/NOTES - copied unchanged from r244092, head/sys/arm/conf/NOTES projects/mtree/sys/boot/forth/menusets.4th - copied unchanged from r244092, head/sys/boot/forth/menusets.4th projects/mtree/sys/boot/forth/menusets.4th.8 - copied unchanged from r244092, head/sys/boot/forth/menusets.4th.8 projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/trim_map.h - copied unchanged from r244092, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/trim_map.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c - copied unchanged from r244092, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/mtree/sys/cddl/contrib/opensolaris/uts/powerpc/ - copied from r244092, head/sys/cddl/contrib/opensolaris/uts/powerpc/ projects/mtree/sys/cddl/dev/dtrace/powerpc/ - copied from r244092, head/sys/cddl/dev/dtrace/powerpc/ projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c - copied unchanged from r244092, head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c projects/mtree/sys/dev/ath/if_ath_alq.c - copied unchanged from r244092, head/sys/dev/ath/if_ath_alq.c projects/mtree/sys/dev/ath/if_ath_alq.h - copied unchanged from r244092, head/sys/dev/ath/if_ath_alq.h projects/mtree/sys/dev/sdhci/sdhci_if.m - copied unchanged from r244092, head/sys/dev/sdhci/sdhci_if.m projects/mtree/sys/dev/sdhci/sdhci_pci.c - copied unchanged from r244092, head/sys/dev/sdhci/sdhci_pci.c projects/mtree/sys/dev/virtio/scsi/ - copied from r244092, head/sys/dev/virtio/scsi/ projects/mtree/sys/fs/fuse/ - copied from r244092, head/sys/fs/fuse/ projects/mtree/sys/mips/cavium/octeon_pci_console.c - copied unchanged from r244092, head/sys/mips/cavium/octeon_pci_console.c projects/mtree/sys/modules/fuse/ - copied from r244092, head/sys/modules/fuse/ projects/mtree/sys/modules/sdhci_pci/ - copied from r244092, head/sys/modules/sdhci_pci/ projects/mtree/sys/modules/virtio/scsi/ - copied from r244092, head/sys/modules/virtio/scsi/ projects/mtree/sys/powerpc/conf/WII - copied unchanged from r244092, head/sys/powerpc/conf/WII projects/mtree/sys/powerpc/wii/locore.S - copied unchanged from r244092, head/sys/powerpc/wii/locore.S projects/mtree/sys/rpc/krpc.h - copied unchanged from r244092, head/sys/rpc/krpc.h projects/mtree/sys/ufs/ffs/ffs_suspend.c - copied unchanged from r244092, head/sys/ufs/ffs/ffs_suspend.c projects/mtree/tools/build/options/WITHOUT_ATF - copied unchanged from r244092, head/tools/build/options/WITHOUT_ATF projects/mtree/tools/build/options/WITHOUT_CLANG_IS_CC - copied unchanged from r244092, head/tools/build/options/WITHOUT_CLANG_IS_CC projects/mtree/tools/build/options/WITH_BMAKE - copied unchanged from r244092, head/tools/build/options/WITH_BMAKE projects/mtree/tools/regression/bin/sh/builtins/alias3.0 - copied unchanged from r244092, head/tools/regression/bin/sh/builtins/alias3.0 projects/mtree/tools/regression/bin/sh/builtins/alias3.0.stdout - copied unchanged from r244092, head/tools/regression/bin/sh/builtins/alias3.0.stdout projects/mtree/tools/regression/bin/sh/parser/alias10.0 - copied unchanged from r244092, head/tools/regression/bin/sh/parser/alias10.0 projects/mtree/tools/regression/bin/sh/parser/alias7.0 - copied unchanged from r244092, head/tools/regression/bin/sh/parser/alias7.0 projects/mtree/tools/regression/bin/sh/parser/alias8.0 - copied unchanged from r244092, head/tools/regression/bin/sh/parser/alias8.0 projects/mtree/tools/regression/bin/sh/parser/alias9.0 - copied unchanged from r244092, head/tools/regression/bin/sh/parser/alias9.0 projects/mtree/tools/regression/filemon/timed-forkb.c - copied unchanged from r244092, head/tools/regression/filemon/timed-forkb.c projects/mtree/tools/regression/net/ - copied from r244092, head/tools/regression/net/ projects/mtree/tools/tools/ath/athalq/ - copied from r244092, head/tools/tools/ath/athalq/ projects/mtree/usr.bin/atf/ - copied from r244092, head/usr.bin/atf/ projects/mtree/usr.bin/bmake/ - copied from r244092, head/usr.bin/bmake/ projects/mtree/usr.bin/mandoc/ - copied from r244092, head/usr.bin/mandoc/ projects/mtree/usr.bin/ssh-copy-id/ - copied from r244092, head/usr.bin/ssh-copy-id/ projects/mtree/usr.sbin/auditdistd/ - copied from r244092, head/usr.sbin/auditdistd/ projects/mtree/usr.sbin/bsdconfig/include/bsdconfig.hlp - copied unchanged from r244092, head/usr.sbin/bsdconfig/include/bsdconfig.hlp projects/mtree/usr.sbin/bsdconfig/include/usage.hlp - copied unchanged from r244092, head/usr.sbin/bsdconfig/include/usage.hlp projects/mtree/usr.sbin/bsdconfig/networking/include/tcp.hlp - copied unchanged from r244092, head/usr.sbin/bsdconfig/networking/include/tcp.hlp projects/mtree/usr.sbin/bsdconfig/security/include/securelevel.hlp - copied unchanged from r244092, head/usr.sbin/bsdconfig/security/include/securelevel.hlp projects/mtree/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp - copied unchanged from r244092, head/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp projects/mtree/usr.sbin/pkg/dns_utils.c - copied unchanged from r244092, head/usr.sbin/pkg/dns_utils.c projects/mtree/usr.sbin/pkg/dns_utils.h - copied unchanged from r244092, head/usr.sbin/pkg/dns_utils.h projects/mtree/usr.sbin/pkg_install/lib/pkgng.c - copied unchanged from r244092, head/usr.sbin/pkg_install/lib/pkgng.c projects/mtree/usr.sbin/services_mkdb/extern.h - copied unchanged from r244092, head/usr.sbin/services_mkdb/extern.h projects/mtree/usr.sbin/sysrc/ - copied from r244092, head/usr.sbin/sysrc/ Directory Properties: projects/mtree/contrib/bmake/ (props changed) Deleted: projects/mtree/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 projects/mtree/contrib/dialog/samples/dselect projects/mtree/contrib/dialog/samples/valgrind.log projects/mtree/contrib/gnu-sort/ projects/mtree/contrib/libc++/src/support/ projects/mtree/contrib/libpcap/net/ projects/mtree/contrib/libpcap/test/ projects/mtree/contrib/llvm/include/llvm/ADT/Trie.h projects/mtree/contrib/llvm/include/llvm/Analysis/LoopDependenceAnalysis.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h projects/mtree/contrib/llvm/include/llvm/TableGen/TableGenAction.h projects/mtree/contrib/llvm/include/llvm/Target/TargetData.h projects/mtree/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h projects/mtree/contrib/llvm/lib/Analysis/LoopDependenceAnalysis.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImage.h projects/mtree/contrib/llvm/lib/TableGen/TableGenAction.cpp projects/mtree/contrib/llvm/lib/Target/AMDGPU/ projects/mtree/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.h projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.h projects/mtree/contrib/llvm/lib/Target/TargetData.cpp projects/mtree/contrib/llvm/lib/Target/TargetELFWriterInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.h projects/mtree/contrib/llvm/lib/Target/X86/X86MCInstLower.h projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/ASTConsumers.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/DeltaTree.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/HTMLRewrite.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/RewriteRope.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriters.h projects/mtree/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/DereferenceChecker.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/CommandLineClangTool.h projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/HTMLPrint.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/InclusionRewriter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/RewriteMacros.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/RewriteTest.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/CommandLineClangTool.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/CustomCompilationDatabase.h projects/mtree/gnu/usr.bin/sort/ projects/mtree/lib/clang/libclangrewrite/ projects/mtree/lib/libc/gen/pwcache.3 projects/mtree/lib/libc/gen/pwcache.c projects/mtree/release/doc/de_DE.ISO8859-1/early-adopter/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/errata/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/artheader.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/intro.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/ia64/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/pc98/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.sgml projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/abstract.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/artheader.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/install.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/layout.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/trouble.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/ia64/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/pc98/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/sparc64/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/installation/sparc64/install.sgml projects/mtree/release/doc/de_DE.ISO8859-1/readme/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.sgml projects/mtree/release/doc/de_DE.ISO8859-1/share/sgml/ projects/mtree/release/doc/en_US.ISO8859-1/errata/article.sgml projects/mtree/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/mtree/release/doc/en_US.ISO8859-1/readme/article.sgml projects/mtree/release/doc/en_US.ISO8859-1/relnotes/article.sgml projects/mtree/release/doc/en_US.ISO8859-1/share/sgml/ projects/mtree/release/doc/fr_FR.ISO8859-1/early-adopter/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/errata/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/dev.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/intro.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/i386/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/alpha/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/abstract.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/artheader.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/install.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/layout.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/trouble.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/i386/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/pc98/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/common/new.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.sgml projects/mtree/release/doc/fr_FR.ISO8859-1/share/sgml/ projects/mtree/release/doc/ja_JP.eucJP/errata/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/alpha/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/amd64/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/common/artheader.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/common/dev.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/common/intro.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/i386/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/ia64/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/pc98/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/sparc64/article.sgml projects/mtree/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/alpha/article.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/amd64/article.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/common/new.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/i386/article.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/ia64/article.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/pc98/article.sgml projects/mtree/release/doc/ja_JP.eucJP/relnotes/sparc64/article.sgml projects/mtree/release/doc/ja_JP.eucJP/share/sgml/ projects/mtree/release/doc/ru_RU.KOI8-R/errata/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/artheader.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/intro.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/abstract.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/artheader.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/install.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/layout.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/trouble.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/upgrade.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/readme/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/common/new.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml projects/mtree/release/doc/ru_RU.KOI8-R/share/sgml/ projects/mtree/release/doc/share/sgml/ projects/mtree/release/doc/zh_CN.GB2312/errata/article.sgml projects/mtree/release/doc/zh_CN.GB2312/hardware/article.sgml projects/mtree/release/doc/zh_CN.GB2312/readme/article.sgml projects/mtree/release/doc/zh_CN.GB2312/relnotes/article.sgml projects/mtree/release/doc/zh_CN.GB2312/share/sgml/ projects/mtree/share/man/man4/harp.4 projects/mtree/share/man/man4/hfa.4 projects/mtree/share/man/man4/idt.4 projects/mtree/share/man/man9/VFS_LOCK_GIANT.9 projects/mtree/sys/conf/defines projects/mtree/sys/dev/mlx/mlx_compat.h projects/mtree/tools/build/options/WITH_GNU_SORT projects/mtree/usr.sbin/pw/edgroup.c Modified: projects/mtree/MAINTAINERS (contents, props changed) projects/mtree/Makefile projects/mtree/Makefile.inc1 projects/mtree/ObsoleteFiles.inc projects/mtree/UPDATING projects/mtree/bin/date/extern.h projects/mtree/bin/date/netdate.c projects/mtree/bin/dd/conv_tab.c projects/mtree/bin/df/df.1 projects/mtree/bin/df/df.c projects/mtree/bin/ed/buf.c projects/mtree/bin/ed/cbc.c projects/mtree/bin/ed/ed.h projects/mtree/bin/ed/glbl.c projects/mtree/bin/ed/io.c projects/mtree/bin/ed/main.c projects/mtree/bin/ed/re.c projects/mtree/bin/ed/sub.c projects/mtree/bin/ed/undo.c projects/mtree/bin/getfacl/getfacl.c projects/mtree/bin/ln/ln.1 projects/mtree/bin/ls/cmp.c projects/mtree/bin/ls/extern.h projects/mtree/bin/ls/ls.1 projects/mtree/bin/ls/ls.c projects/mtree/bin/ls/ls.h projects/mtree/bin/ls/print.c projects/mtree/bin/ls/util.c projects/mtree/bin/mv/mv.c projects/mtree/bin/pax/ar_io.c projects/mtree/bin/pax/ar_subs.c projects/mtree/bin/pax/extern.h projects/mtree/bin/pax/options.c projects/mtree/bin/rcp/rcp.c projects/mtree/bin/rm/rm.c projects/mtree/bin/setfacl/setfacl.c projects/mtree/bin/setfacl/setfacl.h projects/mtree/bin/sh/alias.c projects/mtree/bin/sh/exec.c projects/mtree/bin/sh/input.c projects/mtree/bin/sh/input.h projects/mtree/bin/sh/sh.1 projects/mtree/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/mtree/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/mtree/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/mtree/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/mtree/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/mtree/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c projects/mtree/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/mtree/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/mtree/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/mtree/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/mtree/cddl/lib/Makefile projects/mtree/cddl/lib/libdtrace/Makefile projects/mtree/cddl/lib/libzpool/Makefile projects/mtree/cddl/sbin/zpool/Makefile projects/mtree/cddl/usr.sbin/Makefile projects/mtree/contrib/atf/atf-c/macros.h projects/mtree/contrib/atf/atf-report/atf-report.cpp projects/mtree/contrib/atf/atf-run/io.hpp projects/mtree/contrib/atf/atf-run/requirements_test.cpp projects/mtree/contrib/atf/atf-sh/atf_check_test.sh projects/mtree/contrib/atf/doc/atf-test-case.4 projects/mtree/contrib/bind9/CHANGES projects/mtree/contrib/bind9/Makefile.in projects/mtree/contrib/bind9/README projects/mtree/contrib/bind9/acconfig.h projects/mtree/contrib/bind9/bin/Makefile.in projects/mtree/contrib/bind9/bin/check/Makefile.in projects/mtree/contrib/bind9/bin/check/check-tool.c projects/mtree/contrib/bind9/bin/confgen/Makefile.in projects/mtree/contrib/bind9/bin/confgen/unix/Makefile.in projects/mtree/contrib/bind9/bin/dig/Makefile.in projects/mtree/contrib/bind9/bin/dig/nslookup.c projects/mtree/contrib/bind9/bin/dnssec/Makefile.in projects/mtree/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/mtree/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/mtree/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/mtree/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/mtree/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/mtree/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/mtree/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/mtree/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/mtree/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/mtree/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/mtree/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/mtree/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/mtree/contrib/bind9/bin/dnssec/dnssec-settime.c projects/mtree/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/mtree/contrib/bind9/bin/named/Makefile.in projects/mtree/contrib/bind9/bin/named/builtin.c projects/mtree/contrib/bind9/bin/named/config.c projects/mtree/contrib/bind9/bin/named/controlconf.c projects/mtree/contrib/bind9/bin/named/convertxsl.pl projects/mtree/contrib/bind9/bin/named/query.c projects/mtree/contrib/bind9/bin/named/server.c projects/mtree/contrib/bind9/bin/named/statschannel.c projects/mtree/contrib/bind9/bin/named/unix/Makefile.in projects/mtree/contrib/bind9/bin/nsupdate/Makefile.in projects/mtree/contrib/bind9/bin/nsupdate/nsupdate.c projects/mtree/contrib/bind9/bin/rndc/Makefile.in projects/mtree/contrib/bind9/bin/tools/Makefile.in projects/mtree/contrib/bind9/config.h.in projects/mtree/contrib/bind9/configure.in projects/mtree/contrib/bind9/doc/Makefile.in projects/mtree/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/mtree/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/mtree/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/mtree/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/mtree/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/mtree/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/mtree/contrib/bind9/doc/arm/Bv9ARM.html projects/mtree/contrib/bind9/doc/arm/Bv9ARM.pdf projects/mtree/contrib/bind9/doc/arm/Makefile.in projects/mtree/contrib/bind9/doc/arm/man.arpaname.html projects/mtree/contrib/bind9/doc/arm/man.ddns-confgen.html projects/mtree/contrib/bind9/doc/arm/man.dig.html projects/mtree/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/mtree/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/mtree/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/mtree/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/mtree/contrib/bind9/doc/arm/man.dnssec-settime.html projects/mtree/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/mtree/contrib/bind9/doc/arm/man.genrandom.html projects/mtree/contrib/bind9/doc/arm/man.host.html projects/mtree/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/mtree/contrib/bind9/doc/arm/man.named-checkconf.html projects/mtree/contrib/bind9/doc/arm/man.named-checkzone.html projects/mtree/contrib/bind9/doc/arm/man.named-journalprint.html projects/mtree/contrib/bind9/doc/arm/man.named.html projects/mtree/contrib/bind9/doc/arm/man.nsec3hash.html projects/mtree/contrib/bind9/doc/arm/man.nsupdate.html projects/mtree/contrib/bind9/doc/arm/man.rndc-confgen.html projects/mtree/contrib/bind9/doc/arm/man.rndc.conf.html projects/mtree/contrib/bind9/doc/arm/man.rndc.html projects/mtree/contrib/bind9/doc/misc/Makefile.in projects/mtree/contrib/bind9/doc/misc/format-options.pl projects/mtree/contrib/bind9/doc/misc/options projects/mtree/contrib/bind9/doc/misc/sort-options.pl projects/mtree/contrib/bind9/isc-config.sh.in projects/mtree/contrib/bind9/lib/Makefile.in projects/mtree/contrib/bind9/lib/bind9/Makefile.in projects/mtree/contrib/bind9/lib/bind9/api projects/mtree/contrib/bind9/lib/bind9/check.c projects/mtree/contrib/bind9/lib/bind9/include/Makefile.in projects/mtree/contrib/bind9/lib/bind9/include/bind9/Makefile.in projects/mtree/contrib/bind9/lib/dns/Makefile.in projects/mtree/contrib/bind9/lib/dns/adb.c projects/mtree/contrib/bind9/lib/dns/api projects/mtree/contrib/bind9/lib/dns/db.c projects/mtree/contrib/bind9/lib/dns/dnssec.c projects/mtree/contrib/bind9/lib/dns/ds.c projects/mtree/contrib/bind9/lib/dns/dst_api.c projects/mtree/contrib/bind9/lib/dns/dst_internal.h projects/mtree/contrib/bind9/lib/dns/dst_openssl.h projects/mtree/contrib/bind9/lib/dns/dst_parse.c projects/mtree/contrib/bind9/lib/dns/dst_parse.h projects/mtree/contrib/bind9/lib/dns/dst_result.c projects/mtree/contrib/bind9/lib/dns/include/Makefile.in projects/mtree/contrib/bind9/lib/dns/include/dns/db.h projects/mtree/contrib/bind9/lib/dns/include/dns/dnssec.h projects/mtree/contrib/bind9/lib/dns/include/dns/ds.h projects/mtree/contrib/bind9/lib/dns/include/dns/iptable.h projects/mtree/contrib/bind9/lib/dns/include/dns/keyvalues.h projects/mtree/contrib/bind9/lib/dns/include/dns/log.h projects/mtree/contrib/bind9/lib/dns/include/dns/rdataset.h projects/mtree/contrib/bind9/lib/dns/include/dns/rpz.h projects/mtree/contrib/bind9/lib/dns/include/dns/stats.h projects/mtree/contrib/bind9/lib/dns/include/dns/view.h projects/mtree/contrib/bind9/lib/dns/include/dns/zone.h projects/mtree/contrib/bind9/lib/dns/include/dst/Makefile.in projects/mtree/contrib/bind9/lib/dns/include/dst/dst.h projects/mtree/contrib/bind9/lib/dns/include/dst/result.h projects/mtree/contrib/bind9/lib/dns/log.c projects/mtree/contrib/bind9/lib/dns/master.c projects/mtree/contrib/bind9/lib/dns/masterdump.c projects/mtree/contrib/bind9/lib/dns/openssl_link.c projects/mtree/contrib/bind9/lib/dns/openssldh_link.c projects/mtree/contrib/bind9/lib/dns/openssldsa_link.c projects/mtree/contrib/bind9/lib/dns/opensslgost_link.c projects/mtree/contrib/bind9/lib/dns/opensslrsa_link.c projects/mtree/contrib/bind9/lib/dns/rbtdb.c projects/mtree/contrib/bind9/lib/dns/rcode.c projects/mtree/contrib/bind9/lib/dns/rdata.c projects/mtree/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/mtree/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/mtree/contrib/bind9/lib/dns/rdataset.c projects/mtree/contrib/bind9/lib/dns/resolver.c projects/mtree/contrib/bind9/lib/dns/rpz.c projects/mtree/contrib/bind9/lib/dns/spnego_asn1.pl projects/mtree/contrib/bind9/lib/dns/validator.c projects/mtree/contrib/bind9/lib/dns/view.c projects/mtree/contrib/bind9/lib/dns/zone.c projects/mtree/contrib/bind9/lib/export/Makefile.in projects/mtree/contrib/bind9/lib/export/dns/Makefile.in projects/mtree/contrib/bind9/lib/export/dns/include/Makefile.in projects/mtree/contrib/bind9/lib/export/dns/include/dns/Makefile.in projects/mtree/contrib/bind9/lib/export/dns/include/dst/Makefile.in projects/mtree/contrib/bind9/lib/export/irs/include/irs/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/nls/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/nothreads/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/nothreads/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/pthreads/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/pthreads/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/unix/Makefile.in projects/mtree/contrib/bind9/lib/export/isc/unix/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/export/isccfg/include/isccfg/Makefile.in projects/mtree/contrib/bind9/lib/export/samples/Makefile-postinstall.in projects/mtree/contrib/bind9/lib/export/samples/Makefile.in projects/mtree/contrib/bind9/lib/irs/Makefile.in projects/mtree/contrib/bind9/lib/irs/include/Makefile.in projects/mtree/contrib/bind9/lib/irs/include/irs/Makefile.in projects/mtree/contrib/bind9/lib/isc/alpha/Makefile.in projects/mtree/contrib/bind9/lib/isc/alpha/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/api projects/mtree/contrib/bind9/lib/isc/ia64/Makefile.in projects/mtree/contrib/bind9/lib/isc/ia64/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/ia64/include/isc/atomic.h projects/mtree/contrib/bind9/lib/isc/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/include/isc/file.h projects/mtree/contrib/bind9/lib/isc/include/isc/namespace.h projects/mtree/contrib/bind9/lib/isc/include/isc/task.h projects/mtree/contrib/bind9/lib/isc/mem.c projects/mtree/contrib/bind9/lib/isc/mips/Makefile.in projects/mtree/contrib/bind9/lib/isc/mips/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/mips/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/nls/Makefile.in projects/mtree/contrib/bind9/lib/isc/noatomic/Makefile.in projects/mtree/contrib/bind9/lib/isc/noatomic/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/nothreads/Makefile.in projects/mtree/contrib/bind9/lib/isc/nothreads/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/powerpc/Makefile.in projects/mtree/contrib/bind9/lib/isc/powerpc/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/pthreads/Makefile.in projects/mtree/contrib/bind9/lib/isc/pthreads/condition.c projects/mtree/contrib/bind9/lib/isc/pthreads/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/sparc64/Makefile.in projects/mtree/contrib/bind9/lib/isc/sparc64/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/task.c projects/mtree/contrib/bind9/lib/isc/task_api.c projects/mtree/contrib/bind9/lib/isc/unix/Makefile.in projects/mtree/contrib/bind9/lib/isc/unix/file.c projects/mtree/contrib/bind9/lib/isc/unix/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/unix/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/x86_32/Makefile.in projects/mtree/contrib/bind9/lib/isc/x86_32/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isc/x86_64/Makefile.in projects/mtree/contrib/bind9/lib/isc/x86_64/include/Makefile.in projects/mtree/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in projects/mtree/contrib/bind9/lib/isccc/api projects/mtree/contrib/bind9/lib/isccc/cc.c projects/mtree/contrib/bind9/lib/isccc/include/Makefile.in projects/mtree/contrib/bind9/lib/isccc/include/isccc/Makefile.in projects/mtree/contrib/bind9/lib/isccfg/api projects/mtree/contrib/bind9/lib/isccfg/include/Makefile.in projects/mtree/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in projects/mtree/contrib/bind9/lib/isccfg/namedconf.c projects/mtree/contrib/bind9/lib/lwres/Makefile.in projects/mtree/contrib/bind9/lib/lwres/api projects/mtree/contrib/bind9/lib/lwres/getaddrinfo.c projects/mtree/contrib/bind9/lib/lwres/include/Makefile.in projects/mtree/contrib/bind9/lib/lwres/include/lwres/Makefile.in projects/mtree/contrib/bind9/lib/lwres/man/Makefile.in projects/mtree/contrib/bind9/make/rules.in projects/mtree/contrib/bind9/version projects/mtree/contrib/binutils/Makefile.in projects/mtree/contrib/binutils/Makefile.tpl projects/mtree/contrib/binutils/libiberty/Makefile.in projects/mtree/contrib/bsnmp/snmp_mibII/mibII.h projects/mtree/contrib/bsnmp/snmp_mibII/mibII_route.c projects/mtree/contrib/cvs/diff/Makefile.in projects/mtree/contrib/cvs/lib/Makefile.in projects/mtree/contrib/dialog/CHANGES projects/mtree/contrib/dialog/VERSION projects/mtree/contrib/dialog/aclocal.m4 projects/mtree/contrib/dialog/arrows.c projects/mtree/contrib/dialog/buttons.c projects/mtree/contrib/dialog/calendar.c projects/mtree/contrib/dialog/checklist.c projects/mtree/contrib/dialog/columns.c projects/mtree/contrib/dialog/configure projects/mtree/contrib/dialog/configure.in projects/mtree/contrib/dialog/dialog.1 projects/mtree/contrib/dialog/dialog.3 projects/mtree/contrib/dialog/dialog.c projects/mtree/contrib/dialog/dialog.h projects/mtree/contrib/dialog/dlg_colors.h projects/mtree/contrib/dialog/dlg_keys.c projects/mtree/contrib/dialog/dlg_keys.h projects/mtree/contrib/dialog/editbox.c projects/mtree/contrib/dialog/formbox.c projects/mtree/contrib/dialog/fselect.c projects/mtree/contrib/dialog/guage.c projects/mtree/contrib/dialog/headers-sh.in projects/mtree/contrib/dialog/inputbox.c projects/mtree/contrib/dialog/inputstr.c projects/mtree/contrib/dialog/makefile.in projects/mtree/contrib/dialog/menubox.c projects/mtree/contrib/dialog/mixedform.c projects/mtree/contrib/dialog/mixedgauge.c projects/mtree/contrib/dialog/msgbox.c projects/mtree/contrib/dialog/package/debian/changelog projects/mtree/contrib/dialog/package/dialog.spec projects/mtree/contrib/dialog/pause.c projects/mtree/contrib/dialog/po/cs.po projects/mtree/contrib/dialog/po/el.po projects/mtree/contrib/dialog/po/hr.po projects/mtree/contrib/dialog/po/sr.po projects/mtree/contrib/dialog/prgbox.c projects/mtree/contrib/dialog/progressbox.c projects/mtree/contrib/dialog/rc.c projects/mtree/contrib/dialog/samples/copifuncs/admin.funcs projects/mtree/contrib/dialog/samples/copifuncs/common.funcs projects/mtree/contrib/dialog/samples/copifuncs/copi.funcs projects/mtree/contrib/dialog/samples/copifuncs/copi.ifman2 projects/mtree/contrib/dialog/samples/copifuncs/copi.ifpoll2 projects/mtree/contrib/dialog/samples/copifuncs/copi.ifreq2 projects/mtree/contrib/dialog/samples/copifuncs/copi.sendifm1 projects/mtree/contrib/dialog/samples/copifuncs/copi.wheel projects/mtree/contrib/dialog/samples/copismall projects/mtree/contrib/dialog/samples/debian.rc projects/mtree/contrib/dialog/samples/dialog.py projects/mtree/contrib/dialog/samples/form1 projects/mtree/contrib/dialog/samples/inputmenu projects/mtree/contrib/dialog/samples/inputmenu-stdout projects/mtree/contrib/dialog/samples/inputmenu1 projects/mtree/contrib/dialog/samples/inputmenu2 projects/mtree/contrib/dialog/samples/inputmenu3 projects/mtree/contrib/dialog/samples/inputmenu4 projects/mtree/contrib/dialog/samples/killall projects/mtree/contrib/dialog/samples/prgbox projects/mtree/contrib/dialog/samples/prgbox2 projects/mtree/contrib/dialog/samples/report-button projects/mtree/contrib/dialog/samples/report-edit projects/mtree/contrib/dialog/samples/report-string projects/mtree/contrib/dialog/samples/report-tempfile projects/mtree/contrib/dialog/samples/report-yesno projects/mtree/contrib/dialog/samples/setup-edit projects/mtree/contrib/dialog/samples/setup-tempfile projects/mtree/contrib/dialog/samples/setup-utf8 projects/mtree/contrib/dialog/samples/setup-vars projects/mtree/contrib/dialog/samples/slackware.rc projects/mtree/contrib/dialog/samples/sourcemage.rc projects/mtree/contrib/dialog/samples/suse.rc projects/mtree/contrib/dialog/samples/tailboxbg projects/mtree/contrib/dialog/samples/tailboxbg1 projects/mtree/contrib/dialog/samples/tailboxbg2 projects/mtree/contrib/dialog/samples/testdata-8bit projects/mtree/contrib/dialog/samples/wheel projects/mtree/contrib/dialog/samples/whiptail.rc projects/mtree/contrib/dialog/tailbox.c projects/mtree/contrib/dialog/textbox.c projects/mtree/contrib/dialog/timebox.c projects/mtree/contrib/dialog/trace.c projects/mtree/contrib/dialog/ui_getc.c projects/mtree/contrib/dialog/util.c projects/mtree/contrib/dialog/yesno.c projects/mtree/contrib/dtc/Makefile projects/mtree/contrib/gcc/Makefile.in projects/mtree/contrib/gcc/config/i386/xmmintrin.h projects/mtree/contrib/gcclibs/libcpp/Makefile.in projects/mtree/contrib/gcclibs/libdecnumber/Makefile.in projects/mtree/contrib/gcclibs/libiberty/Makefile.in projects/mtree/contrib/gdb/gdb/c-valprint.c projects/mtree/contrib/gdb/gdb/cp-valprint.c projects/mtree/contrib/gdb/gdb/dwarf2loc.c projects/mtree/contrib/gdb/gdb/f-valprint.c projects/mtree/contrib/gdb/gdb/frame.c projects/mtree/contrib/gdb/gdb/jv-valprint.c projects/mtree/contrib/gdb/gdb/p-valprint.c projects/mtree/contrib/gdb/gdb/scm-valprint.c projects/mtree/contrib/gdb/gdb/stack.c projects/mtree/contrib/gdb/gdb/valprint.c projects/mtree/contrib/gdb/gdb/value.h projects/mtree/contrib/gdb/gdb/varobj.c projects/mtree/contrib/gdtoa/makefile projects/mtree/contrib/gperf/lib/Makefile.in projects/mtree/contrib/groff/tmac/doc-syms projects/mtree/contrib/jemalloc/ChangeLog projects/mtree/contrib/jemalloc/FREEBSD-diffs projects/mtree/contrib/jemalloc/VERSION projects/mtree/contrib/jemalloc/doc/jemalloc.3 projects/mtree/contrib/jemalloc/include/jemalloc/internal/arena.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/chunk.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/chunk_dss.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/chunk_mmap.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/ctl.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/extent.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/huge.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/prof.h projects/mtree/contrib/jemalloc/include/jemalloc/internal/rtree.h projects/mtree/contrib/jemalloc/include/jemalloc/jemalloc.h projects/mtree/contrib/jemalloc/include/jemalloc/jemalloc_defs.h projects/mtree/contrib/jemalloc/src/arena.c projects/mtree/contrib/jemalloc/src/base.c projects/mtree/contrib/jemalloc/src/chunk.c projects/mtree/contrib/jemalloc/src/chunk_dss.c projects/mtree/contrib/jemalloc/src/chunk_mmap.c projects/mtree/contrib/jemalloc/src/ctl.c projects/mtree/contrib/jemalloc/src/huge.c projects/mtree/contrib/jemalloc/src/jemalloc.c projects/mtree/contrib/jemalloc/src/mutex.c projects/mtree/contrib/jemalloc/src/prof.c projects/mtree/contrib/jemalloc/src/rtree.c projects/mtree/contrib/jemalloc/src/stats.c projects/mtree/contrib/jemalloc/src/tcache.c projects/mtree/contrib/jemalloc/src/util.c projects/mtree/contrib/less/NEWS projects/mtree/contrib/less/README projects/mtree/contrib/less/configure projects/mtree/contrib/less/configure.ac projects/mtree/contrib/less/defines.ds projects/mtree/contrib/less/defines.h.in projects/mtree/contrib/less/defines.o2 projects/mtree/contrib/less/defines.o9 projects/mtree/contrib/less/defines.wn projects/mtree/contrib/less/less.man projects/mtree/contrib/less/less.nro projects/mtree/contrib/less/lessecho.man projects/mtree/contrib/less/lessecho.nro projects/mtree/contrib/less/lesskey.man projects/mtree/contrib/less/lesskey.nro projects/mtree/contrib/less/option.c projects/mtree/contrib/less/output.c projects/mtree/contrib/less/position.c projects/mtree/contrib/less/screen.c projects/mtree/contrib/less/version.c projects/mtree/contrib/libc++/include/__bit_reference projects/mtree/contrib/libc++/include/__config projects/mtree/contrib/libc++/include/__functional_base projects/mtree/contrib/libc++/include/__functional_base_03 projects/mtree/contrib/libc++/include/__hash_table projects/mtree/contrib/libc++/include/__locale projects/mtree/contrib/libc++/include/__mutex_base projects/mtree/contrib/libc++/include/__tree projects/mtree/contrib/libc++/include/__tuple projects/mtree/contrib/libc++/include/__undef_min_max projects/mtree/contrib/libc++/include/algorithm projects/mtree/contrib/libc++/include/array projects/mtree/contrib/libc++/include/atomic projects/mtree/contrib/libc++/include/bitset projects/mtree/contrib/libc++/include/chrono projects/mtree/contrib/libc++/include/cmath projects/mtree/contrib/libc++/include/complex projects/mtree/contrib/libc++/include/condition_variable projects/mtree/contrib/libc++/include/cstddef projects/mtree/contrib/libc++/include/cstdio projects/mtree/contrib/libc++/include/cstdlib projects/mtree/contrib/libc++/include/cwchar projects/mtree/contrib/libc++/include/deque projects/mtree/contrib/libc++/include/exception projects/mtree/contrib/libc++/include/ext/__hash projects/mtree/contrib/libc++/include/forward_list projects/mtree/contrib/libc++/include/fstream projects/mtree/contrib/libc++/include/functional projects/mtree/contrib/libc++/include/future projects/mtree/contrib/libc++/include/ios projects/mtree/contrib/libc++/include/iosfwd projects/mtree/contrib/libc++/include/istream projects/mtree/contrib/libc++/include/iterator projects/mtree/contrib/libc++/include/list projects/mtree/contrib/libc++/include/locale projects/mtree/contrib/libc++/include/map projects/mtree/contrib/libc++/include/memory projects/mtree/contrib/libc++/include/mutex projects/mtree/contrib/libc++/include/new projects/mtree/contrib/libc++/include/ostream projects/mtree/contrib/libc++/include/queue projects/mtree/contrib/libc++/include/random projects/mtree/contrib/libc++/include/regex projects/mtree/contrib/libc++/include/stack projects/mtree/contrib/libc++/include/streambuf projects/mtree/contrib/libc++/include/string projects/mtree/contrib/libc++/include/system_error projects/mtree/contrib/libc++/include/thread projects/mtree/contrib/libc++/include/tuple projects/mtree/contrib/libc++/include/type_traits projects/mtree/contrib/libc++/include/unordered_map projects/mtree/contrib/libc++/include/utility projects/mtree/contrib/libc++/include/valarray projects/mtree/contrib/libc++/include/vector projects/mtree/contrib/libc++/src/condition_variable.cpp projects/mtree/contrib/libc++/src/debug.cpp projects/mtree/contrib/libc++/src/exception.cpp projects/mtree/contrib/libc++/src/future.cpp projects/mtree/contrib/libc++/src/ios.cpp projects/mtree/contrib/libc++/src/iostream.cpp projects/mtree/contrib/libc++/src/locale.cpp projects/mtree/contrib/libc++/src/memory.cpp projects/mtree/contrib/libc++/src/mutex.cpp projects/mtree/contrib/libc++/src/new.cpp projects/mtree/contrib/libc++/src/random.cpp projects/mtree/contrib/libc++/src/stdexcept.cpp projects/mtree/contrib/libc++/src/thread.cpp projects/mtree/contrib/libc++/src/typeinfo.cpp projects/mtree/contrib/libpcap/CHANGES projects/mtree/contrib/libpcap/CREDITS projects/mtree/contrib/libpcap/Makefile.in projects/mtree/contrib/libpcap/VERSION projects/mtree/contrib/libpcap/config.h.in projects/mtree/contrib/libpcap/configure projects/mtree/contrib/libpcap/configure.in projects/mtree/contrib/libpcap/gencode.c projects/mtree/contrib/libpcap/gencode.h projects/mtree/contrib/libpcap/optimize.c projects/mtree/contrib/libpcap/packaging/pcap.spec.in projects/mtree/contrib/libpcap/pcap-bpf.c projects/mtree/contrib/libpcap/pcap-common.c projects/mtree/contrib/libpcap/pcap-linux.c projects/mtree/contrib/libpcap/pcap-netfilter-linux.c projects/mtree/contrib/libpcap/pcap.c projects/mtree/contrib/libpcap/pcap/bpf.h projects/mtree/contrib/libstdc++/config/os/bsd/freebsd/ctype_base.h projects/mtree/contrib/libstdc++/include/bits/fstream.tcc projects/mtree/contrib/libstdc++/include/bits/locale_facets.h projects/mtree/contrib/libstdc++/include/bits/locale_facets.tcc projects/mtree/contrib/libstdc++/include/bits/streambuf_iterator.h projects/mtree/contrib/libstdc++/include/debug/safe_iterator.tcc projects/mtree/contrib/libstdc++/include/ext/ropeimpl.h projects/mtree/contrib/libstdc++/include/std/std_sstream.h projects/mtree/contrib/libstdc++/libsupc++/tinfo.cc projects/mtree/contrib/libstdc++/src/locale.cc projects/mtree/contrib/libstdc++/src/strstream.cc projects/mtree/contrib/libstdc++/src/tree.cc projects/mtree/contrib/llvm/include/llvm-c/Core.h projects/mtree/contrib/llvm/include/llvm-c/Disassembler.h projects/mtree/contrib/llvm/include/llvm-c/Target.h projects/mtree/contrib/llvm/include/llvm-c/TargetMachine.h projects/mtree/contrib/llvm/include/llvm-c/Transforms/Vectorize.h projects/mtree/contrib/llvm/include/llvm/ADT/APFloat.h projects/mtree/contrib/llvm/include/llvm/ADT/APInt.h projects/mtree/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/mtree/contrib/llvm/include/llvm/ADT/BitVector.h projects/mtree/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h projects/mtree/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h projects/mtree/contrib/llvm/include/llvm/ADT/DenseMap.h projects/mtree/contrib/llvm/include/llvm/ADT/DenseMapInfo.h projects/mtree/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h projects/mtree/contrib/llvm/include/llvm/ADT/FoldingSet.h projects/mtree/contrib/llvm/include/llvm/ADT/Hashing.h projects/mtree/contrib/llvm/include/llvm/ADT/ImmutableList.h projects/mtree/contrib/llvm/include/llvm/ADT/ImmutableMap.h projects/mtree/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/mtree/contrib/llvm/include/llvm/ADT/Optional.h projects/mtree/contrib/llvm/include/llvm/ADT/OwningPtr.h projects/mtree/contrib/llvm/include/llvm/ADT/PackedVector.h projects/mtree/contrib/llvm/include/llvm/ADT/PointerIntPair.h projects/mtree/contrib/llvm/include/llvm/ADT/ScopedHashTable.h projects/mtree/contrib/llvm/include/llvm/ADT/SetVector.h projects/mtree/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/mtree/contrib/llvm/include/llvm/ADT/SmallPtrSet.h projects/mtree/contrib/llvm/include/llvm/ADT/SmallString.h projects/mtree/contrib/llvm/include/llvm/ADT/SmallVector.h projects/mtree/contrib/llvm/include/llvm/ADT/SparseBitVector.h projects/mtree/contrib/llvm/include/llvm/ADT/SparseSet.h projects/mtree/contrib/llvm/include/llvm/ADT/StringExtras.h projects/mtree/contrib/llvm/include/llvm/ADT/StringRef.h projects/mtree/contrib/llvm/include/llvm/ADT/StringSet.h projects/mtree/contrib/llvm/include/llvm/ADT/Triple.h projects/mtree/contrib/llvm/include/llvm/ADT/Twine.h projects/mtree/contrib/llvm/include/llvm/ADT/ValueMap.h projects/mtree/contrib/llvm/include/llvm/ADT/ilist.h projects/mtree/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/mtree/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h projects/mtree/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/mtree/contrib/llvm/include/llvm/Analysis/CallGraph.h projects/mtree/contrib/llvm/include/llvm/Analysis/CaptureTracking.h projects/mtree/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/mtree/contrib/llvm/include/llvm/Analysis/ConstantFolding.h projects/mtree/contrib/llvm/include/llvm/Analysis/Dominators.h projects/mtree/contrib/llvm/include/llvm/Analysis/IVUsers.h projects/mtree/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/mtree/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h projects/mtree/contrib/llvm/include/llvm/Analysis/IntervalPartition.h projects/mtree/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h projects/mtree/contrib/llvm/include/llvm/Analysis/Loads.h projects/mtree/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/mtree/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h projects/mtree/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/mtree/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/mtree/contrib/llvm/include/llvm/Analysis/PHITransAddr.h projects/mtree/contrib/llvm/include/llvm/Analysis/Passes.h projects/mtree/contrib/llvm/include/llvm/Analysis/ProfileInfoTypes.h projects/mtree/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/mtree/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/mtree/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/mtree/contrib/llvm/include/llvm/Analysis/SparsePropagation.h projects/mtree/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/mtree/contrib/llvm/include/llvm/Argument.h projects/mtree/contrib/llvm/include/llvm/Attributes.h projects/mtree/contrib/llvm/include/llvm/BasicBlock.h projects/mtree/contrib/llvm/include/llvm/Bitcode/Archive.h projects/mtree/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h projects/mtree/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h projects/mtree/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h projects/mtree/contrib/llvm/include/llvm/CallingConv.h projects/mtree/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/mtree/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h projects/mtree/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/mtree/contrib/llvm/include/llvm/CodeGen/GCMetadata.h projects/mtree/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h projects/mtree/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/mtree/contrib/llvm/include/llvm/CodeGen/IntrinsicLowering.h projects/mtree/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/mtree/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/mtree/contrib/llvm/include/llvm/CodeGen/LiveVariables.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h projects/mtree/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/mtree/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h projects/mtree/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicBase.h projects/mtree/contrib/llvm/include/llvm/CodeGen/Passes.h projects/mtree/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h projects/mtree/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h projects/mtree/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h projects/mtree/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h projects/mtree/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h projects/mtree/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/mtree/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/mtree/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h projects/mtree/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/mtree/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/mtree/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/mtree/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/mtree/contrib/llvm/include/llvm/Constant.h projects/mtree/contrib/llvm/include/llvm/Constants.h projects/mtree/contrib/llvm/include/llvm/DIBuilder.h projects/mtree/contrib/llvm/include/llvm/DebugInfo.h projects/mtree/contrib/llvm/include/llvm/DebugInfo/DIContext.h projects/mtree/contrib/llvm/include/llvm/DefaultPasses.h projects/mtree/contrib/llvm/include/llvm/DerivedTypes.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h projects/mtree/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/mtree/contrib/llvm/include/llvm/Function.h projects/mtree/contrib/llvm/include/llvm/GlobalAlias.h projects/mtree/contrib/llvm/include/llvm/GlobalValue.h projects/mtree/contrib/llvm/include/llvm/GlobalVariable.h projects/mtree/contrib/llvm/include/llvm/IRBuilder.h projects/mtree/contrib/llvm/include/llvm/InitializePasses.h projects/mtree/contrib/llvm/include/llvm/InlineAsm.h projects/mtree/contrib/llvm/include/llvm/InstrTypes.h projects/mtree/contrib/llvm/include/llvm/Instruction.h projects/mtree/contrib/llvm/include/llvm/Instructions.h projects/mtree/contrib/llvm/include/llvm/IntrinsicInst.h projects/mtree/contrib/llvm/include/llvm/Intrinsics.h projects/mtree/contrib/llvm/include/llvm/Intrinsics.td projects/mtree/contrib/llvm/include/llvm/IntrinsicsARM.td projects/mtree/contrib/llvm/include/llvm/IntrinsicsMips.td projects/mtree/contrib/llvm/include/llvm/IntrinsicsX86.td projects/mtree/contrib/llvm/include/llvm/LLVMContext.h projects/mtree/contrib/llvm/include/llvm/LinkAllPasses.h projects/mtree/contrib/llvm/include/llvm/MC/MCAsmBackend.h projects/mtree/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/mtree/contrib/llvm/include/llvm/MC/MCAssembler.h projects/mtree/contrib/llvm/include/llvm/MC/MCCodeEmitter.h projects/mtree/contrib/llvm/include/llvm/MC/MCContext.h projects/mtree/contrib/llvm/include/llvm/MC/MCDwarf.h projects/mtree/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/mtree/contrib/llvm/include/llvm/MC/MCExpr.h projects/mtree/contrib/llvm/include/llvm/MC/MCInst.h projects/mtree/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/mtree/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/mtree/contrib/llvm/include/llvm/MC/MCLabel.h projects/mtree/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h projects/mtree/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/mtree/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/mtree/contrib/llvm/include/llvm/MC/MCObjectWriter.h projects/mtree/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h projects/mtree/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h projects/mtree/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/mtree/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h projects/mtree/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h projects/mtree/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/mtree/contrib/llvm/include/llvm/MC/MCSchedule.h projects/mtree/contrib/llvm/include/llvm/MC/MCSection.h projects/mtree/contrib/llvm/include/llvm/MC/MCSectionCOFF.h projects/mtree/contrib/llvm/include/llvm/MC/MCSectionELF.h projects/mtree/contrib/llvm/include/llvm/MC/MCSectionMachO.h projects/mtree/contrib/llvm/include/llvm/MC/MCStreamer.h projects/mtree/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h projects/mtree/contrib/llvm/include/llvm/MC/MCSymbol.h projects/mtree/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h projects/mtree/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/mtree/contrib/llvm/include/llvm/MC/MCValue.h projects/mtree/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/mtree/contrib/llvm/include/llvm/MDBuilder.h projects/mtree/contrib/llvm/include/llvm/Metadata.h projects/mtree/contrib/llvm/include/llvm/Object/Archive.h projects/mtree/contrib/llvm/include/llvm/Object/Binary.h projects/mtree/contrib/llvm/include/llvm/Object/COFF.h projects/mtree/contrib/llvm/include/llvm/Object/ELF.h projects/mtree/contrib/llvm/include/llvm/Object/MachO.h projects/mtree/contrib/llvm/include/llvm/Object/MachOFormat.h projects/mtree/contrib/llvm/include/llvm/Object/ObjectFile.h projects/mtree/contrib/llvm/include/llvm/Operator.h projects/mtree/contrib/llvm/include/llvm/Pass.h projects/mtree/contrib/llvm/include/llvm/PassAnalysisSupport.h projects/mtree/contrib/llvm/include/llvm/PassSupport.h projects/mtree/contrib/llvm/include/llvm/Support/AlignOf.h projects/mtree/contrib/llvm/include/llvm/Support/Allocator.h projects/mtree/contrib/llvm/include/llvm/Support/CallSite.h projects/mtree/contrib/llvm/include/llvm/Support/Casting.h projects/mtree/contrib/llvm/include/llvm/Support/CommandLine.h projects/mtree/contrib/llvm/include/llvm/Support/Compiler.h projects/mtree/contrib/llvm/include/llvm/Support/DataExtractor.h projects/mtree/contrib/llvm/include/llvm/Support/ELF.h projects/mtree/contrib/llvm/include/llvm/Support/FileOutputBuffer.h projects/mtree/contrib/llvm/include/llvm/Support/FileSystem.h projects/mtree/contrib/llvm/include/llvm/Support/Format.h projects/mtree/contrib/llvm/include/llvm/Support/FormattedStream.h projects/mtree/contrib/llvm/include/llvm/Support/GCOV.h projects/mtree/contrib/llvm/include/llvm/Support/InstVisitor.h projects/mtree/contrib/llvm/include/llvm/Support/IntegersSubset.h projects/mtree/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h projects/mtree/contrib/llvm/include/llvm/Support/LEB128.h projects/mtree/contrib/llvm/include/llvm/Support/LockFileManager.h projects/mtree/contrib/llvm/include/llvm/Support/MathExtras.h projects/mtree/contrib/llvm/include/llvm/Support/Memory.h projects/mtree/contrib/llvm/include/llvm/Support/MemoryBuffer.h projects/mtree/contrib/llvm/include/llvm/Support/Mutex.h projects/mtree/contrib/llvm/include/llvm/Support/MutexGuard.h projects/mtree/contrib/llvm/include/llvm/Support/PathV1.h projects/mtree/contrib/llvm/include/llvm/Support/PathV2.h projects/mtree/contrib/llvm/include/llvm/Support/PrettyStackTrace.h projects/mtree/contrib/llvm/include/llvm/Support/Program.h projects/mtree/contrib/llvm/include/llvm/Support/RWMutex.h projects/mtree/contrib/llvm/include/llvm/Support/Regex.h projects/mtree/contrib/llvm/include/llvm/Support/Registry.h projects/mtree/contrib/llvm/include/llvm/Support/SourceMgr.h projects/mtree/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h projects/mtree/contrib/llvm/include/llvm/Support/TargetFolder.h projects/mtree/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/mtree/contrib/llvm/include/llvm/Support/Threading.h projects/mtree/contrib/llvm/include/llvm/Support/TimeValue.h projects/mtree/contrib/llvm/include/llvm/Support/Timer.h projects/mtree/contrib/llvm/include/llvm/Support/ValueHandle.h projects/mtree/contrib/llvm/include/llvm/Support/YAMLParser.h projects/mtree/contrib/llvm/include/llvm/Support/circular_raw_ostream.h projects/mtree/contrib/llvm/include/llvm/Support/raw_os_ostream.h projects/mtree/contrib/llvm/include/llvm/Support/raw_ostream.h projects/mtree/contrib/llvm/include/llvm/Support/system_error.h projects/mtree/contrib/llvm/include/llvm/Support/type_traits.h projects/mtree/contrib/llvm/include/llvm/SymbolTableListTraits.h projects/mtree/contrib/llvm/include/llvm/TableGen/Error.h projects/mtree/contrib/llvm/include/llvm/TableGen/Main.h projects/mtree/contrib/llvm/include/llvm/TableGen/Record.h projects/mtree/contrib/llvm/include/llvm/Target/Mangler.h projects/mtree/contrib/llvm/include/llvm/Target/Target.td projects/mtree/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/mtree/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/mtree/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h projects/mtree/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/mtree/contrib/llvm/include/llvm/Target/TargetLowering.h projects/mtree/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h projects/mtree/contrib/llvm/include/llvm/Target/TargetMachine.h projects/mtree/contrib/llvm/include/llvm/Target/TargetOpcodes.h projects/mtree/contrib/llvm/include/llvm/Target/TargetOptions.h projects/mtree/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/mtree/contrib/llvm/include/llvm/Target/TargetSchedule.td projects/mtree/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/mtree/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h projects/mtree/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h projects/mtree/contrib/llvm/include/llvm/Transforms/IPO.h projects/mtree/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h projects/mtree/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/mtree/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/mtree/contrib/llvm/include/llvm/Transforms/Scalar.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/AddrModeMatcher.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h projects/mtree/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h projects/mtree/contrib/llvm/include/llvm/Transforms/Vectorize.h projects/mtree/contrib/llvm/include/llvm/Type.h projects/mtree/contrib/llvm/include/llvm/Use.h projects/mtree/contrib/llvm/include/llvm/User.h projects/mtree/contrib/llvm/include/llvm/Value.h projects/mtree/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/mtree/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/mtree/contrib/llvm/lib/Analysis/Analysis.cpp projects/mtree/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/mtree/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/mtree/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/mtree/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/mtree/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/mtree/contrib/llvm/lib/Analysis/DominanceFrontier.cpp projects/mtree/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp projects/mtree/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp projects/mtree/contrib/llvm/lib/Analysis/IVUsers.cpp projects/mtree/contrib/llvm/lib/Analysis/InlineCost.cpp projects/mtree/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/mtree/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/mtree/contrib/llvm/lib/Analysis/Lint.cpp projects/mtree/contrib/llvm/lib/Analysis/Loads.cpp projects/mtree/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/mtree/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/mtree/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/mtree/contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp projects/mtree/contrib/llvm/lib/Analysis/PHITransAddr.cpp projects/mtree/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp projects/mtree/contrib/llvm/lib/Analysis/ProfileInfo.cpp projects/mtree/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/mtree/contrib/llvm/lib/Analysis/RegionPass.cpp projects/mtree/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/mtree/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/mtree/contrib/llvm/lib/Analysis/Trace.cpp projects/mtree/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/mtree/contrib/llvm/lib/Archive/ArchiveInternals.h projects/mtree/contrib/llvm/lib/Archive/ArchiveReader.cpp projects/mtree/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/mtree/contrib/llvm/lib/AsmParser/LLParser.cpp projects/mtree/contrib/llvm/lib/AsmParser/LLParser.h projects/mtree/contrib/llvm/lib/AsmParser/LLToken.h projects/mtree/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/mtree/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h projects/mtree/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/mtree/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h projects/mtree/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/mtree/contrib/llvm/lib/CodeGen/AllocationOrder.cpp projects/mtree/contrib/llvm/lib/CodeGen/Analysis.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp projects/mtree/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp projects/mtree/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/mtree/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/mtree/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/mtree/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/mtree/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp projects/mtree/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/mtree/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/mtree/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp projects/mtree/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/mtree/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/mtree/contrib/llvm/lib/CodeGen/GCStrategy.cpp projects/mtree/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/mtree/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/mtree/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/mtree/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h projects/mtree/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveRegMatrix.h projects/mtree/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp projects/mtree/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/mtree/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h projects/mtree/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/mtree/contrib/llvm/lib/CodeGen/Passes.cpp projects/mtree/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/mtree/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/mtree/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/mtree/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/mtree/contrib/llvm/lib/CodeGen/RegisterPressure.cpp projects/mtree/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/mtree/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/mtree/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/mtree/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp projects/mtree/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeOrdering.h projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/mtree/contrib/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp projects/mtree/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp projects/mtree/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/mtree/contrib/llvm/lib/CodeGen/SlotIndexes.cpp projects/mtree/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/mtree/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/mtree/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/mtree/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp projects/mtree/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/mtree/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp projects/mtree/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/mtree/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/mtree/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/mtree/contrib/llvm/lib/CodeGen/VirtRegMap.h projects/mtree/contrib/llvm/lib/DebugInfo/DIContext.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h projects/mtree/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFDebugLine.h projects/mtree/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp projects/mtree/contrib/llvm/lib/DebugInfo/DWARFFormValue.h projects/mtree/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h projects/mtree/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h projects/mtree/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITRegistrar.h projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/mtree/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/mtree/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/mtree/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/mtree/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/mtree/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/mtree/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/mtree/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/mtree/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/mtree/contrib/llvm/lib/MC/MCAssembler.cpp projects/mtree/contrib/llvm/lib/MC/MCContext.cpp projects/mtree/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp projects/mtree/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp projects/mtree/contrib/llvm/lib/MC/MCDwarf.cpp projects/mtree/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp projects/mtree/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/mtree/contrib/llvm/lib/MC/MCExpr.cpp projects/mtree/contrib/llvm/lib/MC/MCInst.cpp projects/mtree/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/mtree/contrib/llvm/lib/MC/MCLabel.cpp projects/mtree/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/mtree/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/mtree/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/mtree/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp projects/mtree/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/mtree/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/mtree/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp projects/mtree/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp projects/mtree/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp projects/mtree/contrib/llvm/lib/MC/MCRegisterInfo.cpp projects/mtree/contrib/llvm/lib/MC/MCStreamer.cpp projects/mtree/contrib/llvm/lib/MC/MCSubtargetInfo.cpp projects/mtree/contrib/llvm/lib/MC/MCSymbol.cpp projects/mtree/contrib/llvm/lib/MC/MCValue.cpp projects/mtree/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/mtree/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/mtree/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/mtree/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/mtree/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/mtree/contrib/llvm/lib/Support/APFloat.cpp projects/mtree/contrib/llvm/lib/Support/Atomic.cpp projects/mtree/contrib/llvm/lib/Support/CommandLine.cpp projects/mtree/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp projects/mtree/contrib/llvm/lib/Support/DataExtractor.cpp projects/mtree/contrib/llvm/lib/Support/DataStream.cpp projects/mtree/contrib/llvm/lib/Support/DynamicLibrary.cpp projects/mtree/contrib/llvm/lib/Support/Errno.cpp projects/mtree/contrib/llvm/lib/Support/FoldingSet.cpp projects/mtree/contrib/llvm/lib/Support/Host.cpp projects/mtree/contrib/llvm/lib/Support/LockFileManager.cpp projects/mtree/contrib/llvm/lib/Support/Memory.cpp projects/mtree/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/mtree/contrib/llvm/lib/Support/SmallVector.cpp projects/mtree/contrib/llvm/lib/Support/StreamableMemoryObject.cpp projects/mtree/contrib/llvm/lib/Support/StringMap.cpp projects/mtree/contrib/llvm/lib/Support/StringRef.cpp projects/mtree/contrib/llvm/lib/Support/Triple.cpp projects/mtree/contrib/llvm/lib/Support/Unix/Memory.inc projects/mtree/contrib/llvm/lib/Support/Unix/Path.inc projects/mtree/contrib/llvm/lib/Support/Unix/Signals.inc projects/mtree/contrib/llvm/lib/Support/Windows/Memory.inc projects/mtree/contrib/llvm/lib/Support/Windows/PathV2.inc projects/mtree/contrib/llvm/lib/Support/YAMLParser.cpp projects/mtree/contrib/llvm/lib/Support/raw_ostream.cpp projects/mtree/contrib/llvm/lib/Support/regexec.c projects/mtree/contrib/llvm/lib/Support/system_error.cpp projects/mtree/contrib/llvm/lib/TableGen/Error.cpp projects/mtree/contrib/llvm/lib/TableGen/Main.cpp projects/mtree/contrib/llvm/lib/TableGen/Record.cpp projects/mtree/contrib/llvm/lib/TableGen/TGParser.cpp projects/mtree/contrib/llvm/lib/TableGen/TGParser.h projects/mtree/contrib/llvm/lib/Target/ARM/ARM.h projects/mtree/contrib/llvm/lib/Target/ARM/ARM.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMSchedule.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td projects/mtree/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/mtree/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h projects/mtree/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/mtree/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/mtree/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/mtree/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/mtree/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/mtree/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/mtree/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp projects/mtree/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.h projects/mtree/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h projects/mtree/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/mtree/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/mtree/contrib/llvm/lib/Target/Hexagon/HexagonVarargsCallingConvention.h projects/mtree/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h projects/mtree/contrib/llvm/lib/Target/MBlaze/MBlazeTargetObjectFile.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h projects/mtree/contrib/llvm/lib/Target/Mangler.cpp projects/mtree/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp projects/mtree/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/mtree/contrib/llvm/lib/Target/Mips/Mips.td projects/mtree/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h projects/mtree/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td projects/mtree/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/mtree/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/mtree/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTX.td projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h projects/mtree/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/mtree/contrib/llvm/lib/Target/PowerPC/PPC.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h projects/mtree/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td projects/mtree/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/mtree/contrib/llvm/lib/Target/Target.cpp projects/mtree/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/mtree/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/mtree/contrib/llvm/lib/Target/TargetMachineC.cpp projects/mtree/contrib/llvm/lib/Target/TargetRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp projects/mtree/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/mtree/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/mtree/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/mtree/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/mtree/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h projects/mtree/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/mtree/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/mtree/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h projects/mtree/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/mtree/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/mtree/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86.td projects/mtree/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/mtree/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h projects/mtree/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/mtree/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/mtree/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/mtree/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td projects/mtree/contrib/llvm/lib/Target/X86/X86InstrXOP.td projects/mtree/contrib/llvm/lib/Target/X86/X86JITInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/mtree/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/mtree/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/mtree/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/X86/X86TargetMachine.h projects/mtree/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/mtree/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/mtree/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/mtree/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/mtree/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/mtree/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/mtree/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/mtree/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h projects/mtree/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/IPO.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/Internalize.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/mtree/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h projects/mtree/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h projects/mtree/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/DCE.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp projects/mtree/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/Utils.cpp projects/mtree/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp projects/mtree/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp projects/mtree/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp projects/mtree/contrib/llvm/lib/VMCore/AsmWriter.cpp projects/mtree/contrib/llvm/lib/VMCore/Attributes.cpp projects/mtree/contrib/llvm/lib/VMCore/AutoUpgrade.cpp projects/mtree/contrib/llvm/lib/VMCore/ConstantFold.cpp projects/mtree/contrib/llvm/lib/VMCore/Constants.cpp projects/mtree/contrib/llvm/lib/VMCore/ConstantsContext.h projects/mtree/contrib/llvm/lib/VMCore/Core.cpp projects/mtree/contrib/llvm/lib/VMCore/DIBuilder.cpp projects/mtree/contrib/llvm/lib/VMCore/DebugInfo.cpp projects/mtree/contrib/llvm/lib/VMCore/Dominators.cpp projects/mtree/contrib/llvm/lib/VMCore/Function.cpp projects/mtree/contrib/llvm/lib/VMCore/GCOV.cpp projects/mtree/contrib/llvm/lib/VMCore/IRBuilder.cpp projects/mtree/contrib/llvm/lib/VMCore/InlineAsm.cpp projects/mtree/contrib/llvm/lib/VMCore/Instructions.cpp projects/mtree/contrib/llvm/lib/VMCore/LLVMContext.cpp projects/mtree/contrib/llvm/lib/VMCore/LLVMContextImpl.cpp projects/mtree/contrib/llvm/lib/VMCore/LLVMContextImpl.h projects/mtree/contrib/llvm/lib/VMCore/PassManager.cpp projects/mtree/contrib/llvm/lib/VMCore/Type.cpp projects/mtree/contrib/llvm/lib/VMCore/User.cpp projects/mtree/contrib/llvm/lib/VMCore/Value.cpp projects/mtree/contrib/llvm/lib/VMCore/ValueTypes.cpp projects/mtree/contrib/llvm/lib/VMCore/Verifier.cpp projects/mtree/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/mtree/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp projects/mtree/contrib/llvm/tools/clang/include/clang-c/Index.h projects/mtree/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/Comment.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h projects/mtree/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h projects/mtree/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h projects/mtree/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h projects/mtree/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h projects/mtree/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h projects/mtree/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/mtree/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/mtree/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/mtree/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/mtree/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/mtree/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/mtree/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Action.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Arg.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Job.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/OptParser.td projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Option.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Options.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Tool.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/mtree/contrib/llvm/tools/clang/include/clang/Driver/Types.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/mtree/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/mtree/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/mtree/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/Module.h projects/mtree/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h projects/mtree/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h projects/mtree/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/mtree/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/mtree/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/mtree/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/mtree/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/Comment.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/mtree/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/mtree/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp projects/mtree/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/mtree/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c projects/mtree/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/Module.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/mtree/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/mtree/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/Arg.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/Option.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/mtree/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/mtree/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/mtree/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp projects/mtree/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/mtree/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/mtree/contrib/llvm/tools/clang/lib/Headers/altivec.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/cpuid.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/module.map projects/mtree/contrib/llvm/tools/clang/lib/Headers/unwind.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/x86intrin.h projects/mtree/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/mtree/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/mtree/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/mtree/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/mtree/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/mtree/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/Module.cpp projects/mtree/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.h projects/mtree/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp projects/mtree/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp projects/mtree/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/mtree/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/mtree/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp projects/mtree/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h projects/mtree/contrib/llvm/tools/llc/llc.cpp projects/mtree/contrib/llvm/tools/lli/lli.cpp projects/mtree/contrib/llvm/tools/llvm-ar/llvm-ar.cpp projects/mtree/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp projects/mtree/contrib/llvm/tools/llvm-extract/llvm-extract.cpp projects/mtree/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/mtree/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/mtree/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/mtree/contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp projects/mtree/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/mtree/contrib/llvm/tools/llvm-stress/llvm-stress.cpp projects/mtree/contrib/llvm/tools/opt/opt.cpp projects/mtree/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/AsmWriterInst.cpp projects/mtree/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h projects/mtree/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/mtree/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/mtree/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeGenSchedule.h projects/mtree/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/mtree/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/mtree/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/mtree/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/mtree/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/EDEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h projects/mtree/contrib/llvm/utils/TableGen/SetTheory.cpp projects/mtree/contrib/llvm/utils/TableGen/SetTheory.h projects/mtree/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/mtree/contrib/llvm/utils/TableGen/TGValueTypes.cpp projects/mtree/contrib/llvm/utils/TableGen/TableGen.cpp projects/mtree/contrib/llvm/utils/TableGen/TableGenBackends.h projects/mtree/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/mtree/contrib/llvm/utils/TableGen/X86ModRMFilters.h projects/mtree/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/mtree/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/mtree/contrib/netcat/FREEBSD-vendor projects/mtree/contrib/netcat/nc.1 projects/mtree/contrib/netcat/netcat.c projects/mtree/contrib/netcat/socks.c projects/mtree/contrib/ntp/arlib/Makefile.in projects/mtree/contrib/ntp/libntp/Makefile.in projects/mtree/contrib/ntp/libparse/Makefile.in projects/mtree/contrib/ntp/ntpd/Makefile.in projects/mtree/contrib/openbsm/CREDITS projects/mtree/contrib/openbsm/INSTALL projects/mtree/contrib/openbsm/LICENSE projects/mtree/contrib/openbsm/Makefile.am projects/mtree/contrib/openbsm/Makefile.in projects/mtree/contrib/openbsm/NEWS projects/mtree/contrib/openbsm/README projects/mtree/contrib/openbsm/TODO projects/mtree/contrib/openbsm/VERSION projects/mtree/contrib/openbsm/aclocal.m4 projects/mtree/contrib/openbsm/autogen.sh projects/mtree/contrib/openbsm/bin/Makefile.am projects/mtree/contrib/openbsm/bin/Makefile.in projects/mtree/contrib/openbsm/bin/audit/Makefile.am projects/mtree/contrib/openbsm/bin/audit/Makefile.in projects/mtree/contrib/openbsm/bin/audit/audit.8 projects/mtree/contrib/openbsm/bin/auditd/Makefile.am projects/mtree/contrib/openbsm/bin/auditd/Makefile.in projects/mtree/contrib/openbsm/bin/auditd/auditd.8 projects/mtree/contrib/openbsm/bin/auditd/auditd.c projects/mtree/contrib/openbsm/bin/auditfilterd/Makefile.am projects/mtree/contrib/openbsm/bin/auditfilterd/Makefile.in projects/mtree/contrib/openbsm/bin/auditreduce/Makefile.am projects/mtree/contrib/openbsm/bin/auditreduce/Makefile.in projects/mtree/contrib/openbsm/bin/auditreduce/auditreduce.1 projects/mtree/contrib/openbsm/bin/praudit/Makefile.am projects/mtree/contrib/openbsm/bin/praudit/Makefile.in projects/mtree/contrib/openbsm/bin/praudit/praudit.1 projects/mtree/contrib/openbsm/bin/praudit/praudit.c projects/mtree/contrib/openbsm/bsm/Makefile.am projects/mtree/contrib/openbsm/bsm/Makefile.in projects/mtree/contrib/openbsm/bsm/auditd_lib.h projects/mtree/contrib/openbsm/bsm/libbsm.h projects/mtree/contrib/openbsm/compat/endian.h projects/mtree/contrib/openbsm/config/config.h projects/mtree/contrib/openbsm/config/config.h.in projects/mtree/contrib/openbsm/config/ltmain.sh projects/mtree/contrib/openbsm/configure projects/mtree/contrib/openbsm/configure.ac projects/mtree/contrib/openbsm/etc/audit_control projects/mtree/contrib/openbsm/etc/audit_event projects/mtree/contrib/openbsm/libauditd/Makefile.am projects/mtree/contrib/openbsm/libauditd/Makefile.in projects/mtree/contrib/openbsm/libauditd/auditd_lib.c projects/mtree/contrib/openbsm/libbsm/Makefile.am projects/mtree/contrib/openbsm/libbsm/Makefile.in projects/mtree/contrib/openbsm/libbsm/au_control.3 projects/mtree/contrib/openbsm/libbsm/au_fcntl_cmd.3 projects/mtree/contrib/openbsm/libbsm/au_io.3 projects/mtree/contrib/openbsm/libbsm/audit_submit.3 projects/mtree/contrib/openbsm/libbsm/bsm_audit.c projects/mtree/contrib/openbsm/libbsm/bsm_class.c projects/mtree/contrib/openbsm/libbsm/bsm_control.c projects/mtree/contrib/openbsm/libbsm/bsm_errno.c projects/mtree/contrib/openbsm/libbsm/bsm_io.c projects/mtree/contrib/openbsm/libbsm/bsm_token.c projects/mtree/contrib/openbsm/libbsm/bsm_user.c projects/mtree/contrib/openbsm/libbsm/bsm_wrappers.c projects/mtree/contrib/openbsm/man/Makefile.am projects/mtree/contrib/openbsm/man/Makefile.in projects/mtree/contrib/openbsm/man/audit.log.5 projects/mtree/contrib/openbsm/man/audit_control.5 projects/mtree/contrib/openbsm/man/auditon.2 projects/mtree/contrib/openbsm/man/getaudit.2 projects/mtree/contrib/openbsm/man/setaudit.2 projects/mtree/contrib/openbsm/modules/Makefile.am projects/mtree/contrib/openbsm/modules/Makefile.in projects/mtree/contrib/openbsm/modules/auditfilter_noop/Makefile.am projects/mtree/contrib/openbsm/modules/auditfilter_noop/Makefile.in projects/mtree/contrib/openbsm/sys/Makefile.am projects/mtree/contrib/openbsm/sys/Makefile.in projects/mtree/contrib/openbsm/sys/bsm/Makefile.am projects/mtree/contrib/openbsm/sys/bsm/Makefile.in projects/mtree/contrib/openbsm/sys/bsm/audit_errno.h projects/mtree/contrib/openbsm/sys/bsm/audit_internal.h projects/mtree/contrib/openbsm/sys/bsm/audit_kevents.h projects/mtree/contrib/openbsm/test/Makefile.am projects/mtree/contrib/openbsm/test/Makefile.in projects/mtree/contrib/openbsm/test/bsm/Makefile.am projects/mtree/contrib/openbsm/test/bsm/Makefile.in projects/mtree/contrib/openbsm/tools/Makefile.am projects/mtree/contrib/openbsm/tools/Makefile.in projects/mtree/contrib/opie/libmissing/Makefile.in projects/mtree/contrib/opie/libopie/Makefile.in projects/mtree/contrib/sendmail/src/sasl.c projects/mtree/contrib/tcp_wrappers/Makefile projects/mtree/contrib/tcpdump/CHANGES projects/mtree/contrib/tcpdump/CREDITS projects/mtree/contrib/tcpdump/Makefile.in projects/mtree/contrib/tcpdump/VERSION projects/mtree/contrib/tcpdump/configure projects/mtree/contrib/tcpdump/configure.in projects/mtree/contrib/tcpdump/decode_prefix.h projects/mtree/contrib/tcpdump/ethertype.h projects/mtree/contrib/tcpdump/forces.h projects/mtree/contrib/tcpdump/interface.h projects/mtree/contrib/tcpdump/ipproto.c projects/mtree/contrib/tcpdump/netdissect.h projects/mtree/contrib/tcpdump/print-802_11.c projects/mtree/contrib/tcpdump/print-bgp.c projects/mtree/contrib/tcpdump/print-ether.c projects/mtree/contrib/tcpdump/print-forces.c projects/mtree/contrib/tcpdump/print-icmp6.c projects/mtree/contrib/tcpdump/print-igmp.c projects/mtree/contrib/tcpdump/print-ip.c projects/mtree/contrib/tcpdump/print-ip6opts.c projects/mtree/contrib/tcpdump/print-ldp.c projects/mtree/contrib/tcpdump/print-lldp.c projects/mtree/contrib/tcpdump/print-lwapp.c projects/mtree/contrib/tcpdump/print-ospf6.c projects/mtree/contrib/tcpdump/print-pim.c projects/mtree/contrib/tcpdump/print-pppoe.c projects/mtree/contrib/tcpdump/print-rrcp.c projects/mtree/contrib/tcpdump/tcpdump.1.in projects/mtree/contrib/tcpdump/tcpdump.c projects/mtree/contrib/telnet/telnetd/state.c projects/mtree/contrib/top/commands.c projects/mtree/contrib/tzdata/africa projects/mtree/contrib/tzdata/asia projects/mtree/contrib/tzdata/australasia projects/mtree/contrib/tzdata/europe projects/mtree/contrib/tzdata/northamerica projects/mtree/contrib/tzdata/southamerica projects/mtree/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/mtree/crypto/heimdal/appl/ftp/common/Makefile.in projects/mtree/crypto/heimdal/appl/telnet/libtelnet/Makefile.in projects/mtree/crypto/heimdal/lib/sl/slc-lex.l projects/mtree/crypto/openssl/Makefile.org projects/mtree/crypto/openssl/crypto/Makefile projects/mtree/crypto/openssl/crypto/rand/rand_unix.c projects/mtree/etc/Makefile projects/mtree/etc/defaults/periodic.conf projects/mtree/etc/defaults/rc.conf projects/mtree/etc/devd.conf projects/mtree/etc/devd/usb.conf projects/mtree/etc/disktab projects/mtree/etc/ftpusers projects/mtree/etc/gettytab projects/mtree/etc/group projects/mtree/etc/mail/aliases projects/mtree/etc/master.passwd projects/mtree/etc/motd projects/mtree/etc/mtree/BSD.include.dist projects/mtree/etc/mtree/BSD.root.dist projects/mtree/etc/mtree/BSD.usr.dist projects/mtree/etc/mtree/BSD.var.dist projects/mtree/etc/network.subr projects/mtree/etc/newsyslog.conf projects/mtree/etc/pccard_ether projects/mtree/etc/periodic/daily/490.status-pkg-changes projects/mtree/etc/rc.d/Makefile projects/mtree/etc/rc.d/ipfw projects/mtree/etc/rc.d/jail projects/mtree/etc/rc.d/routing projects/mtree/etc/rc.d/rtadvd projects/mtree/etc/rc.subr projects/mtree/etc/regdomain.xml projects/mtree/etc/root/dot.cshrc projects/mtree/etc/root/dot.login projects/mtree/etc/sendmail/freefall.mc projects/mtree/games/bcd/bcd.c projects/mtree/games/caesar/caesar.c projects/mtree/games/fortune/datfiles/fortunes projects/mtree/games/fortune/datfiles/freebsd-tips projects/mtree/games/fortune/fortune/fortune.6 projects/mtree/games/fortune/fortune/fortune.c projects/mtree/games/fortune/tools/do_uniq.py projects/mtree/games/random/randomize_fd.c projects/mtree/gnu/lib/libdialog/dlg_config.h projects/mtree/gnu/lib/libgcc/Makefile projects/mtree/gnu/lib/libstdc++/Makefile projects/mtree/gnu/lib/libsupc++/Makefile projects/mtree/gnu/usr.bin/Makefile projects/mtree/gnu/usr.bin/cc/cc_int/Makefile projects/mtree/gnu/usr.bin/cc/cc_tools/Makefile projects/mtree/gnu/usr.bin/cc/include/Makefile projects/mtree/gnu/usr.bin/send-pr/send-pr.sh projects/mtree/include/Makefile projects/mtree/include/paths.h projects/mtree/include/rpc/auth.h projects/mtree/include/rpc/auth_unix.h projects/mtree/include/stdatomic.h projects/mtree/include/xlocale/_ctype.h projects/mtree/kerberos5/Makefile projects/mtree/kerberos5/tools/asn1_compile/Makefile projects/mtree/kerberos5/tools/slc/Makefile projects/mtree/lib/Makefile projects/mtree/lib/bind/config.h projects/mtree/lib/bind/dns/Makefile projects/mtree/lib/bind/isc/isc/platform.h projects/mtree/lib/clang/Makefile projects/mtree/lib/clang/clang.build.mk projects/mtree/lib/clang/include/Makefile projects/mtree/lib/clang/include/clang/Basic/Version.inc projects/mtree/lib/clang/include/llvm/Config/config.h projects/mtree/lib/clang/libclanganalysis/Makefile projects/mtree/lib/clang/libclangast/Makefile projects/mtree/lib/clang/libclangsema/Makefile projects/mtree/lib/clang/libclangstaticanalyzercheckers/Makefile projects/mtree/lib/clang/libclangstaticanalyzercore/Makefile projects/mtree/lib/clang/libllvmanalysis/Makefile projects/mtree/lib/clang/libllvmarmcodegen/Makefile projects/mtree/lib/clang/libllvmcodegen/Makefile projects/mtree/lib/clang/libllvmcore/Makefile projects/mtree/lib/clang/libllvmdebuginfo/Makefile projects/mtree/lib/clang/libllvminstrumentation/Makefile projects/mtree/lib/clang/libllvmipo/Makefile projects/mtree/lib/clang/libllvmmcjit/Makefile projects/mtree/lib/clang/libllvmmipsasmparser/Makefile projects/mtree/lib/clang/libllvmmipscodegen/Makefile projects/mtree/lib/clang/libllvmmipsdesc/Makefile projects/mtree/lib/clang/libllvmscalaropts/Makefile projects/mtree/lib/clang/libllvmtablegen/Makefile projects/mtree/lib/clang/libllvmtarget/Makefile projects/mtree/lib/clang/libllvmtransformutils/Makefile projects/mtree/lib/clang/libllvmvectorize/Makefile projects/mtree/lib/clang/libllvmx86codegen/Makefile projects/mtree/lib/libc++/Makefile projects/mtree/lib/libc/compat-43/killpg.2 projects/mtree/lib/libc/gen/Makefile.inc projects/mtree/lib/libc/gen/Symbol.map projects/mtree/lib/libc/gen/arc4random.c projects/mtree/lib/libc/gen/fmtmsg.c projects/mtree/lib/libc/gen/fstab.c projects/mtree/lib/libc/gen/fts-compat.c projects/mtree/lib/libc/gen/fts.c projects/mtree/lib/libc/gen/getbsize.3 projects/mtree/lib/libc/gen/getcap.c projects/mtree/lib/libc/gen/getcwd.c projects/mtree/lib/libc/gen/getgrent.c projects/mtree/lib/libc/gen/getnetgrent.c projects/mtree/lib/libc/gen/getttyent.c projects/mtree/lib/libc/gen/getusershell.c projects/mtree/lib/libc/gen/getutxent.c projects/mtree/lib/libc/gen/glob.c projects/mtree/lib/libc/gen/isnan.c projects/mtree/lib/libc/gen/nlist.c projects/mtree/lib/libc/gen/opendir.c projects/mtree/lib/libc/gen/pututxline.c projects/mtree/lib/libc/gen/readpassphrase.c projects/mtree/lib/libc/gen/sem_new.c projects/mtree/lib/libc/gen/syslog.c projects/mtree/lib/libc/include/namespace.h projects/mtree/lib/libc/include/un-namespace.h projects/mtree/lib/libc/locale/ldpart.c projects/mtree/lib/libc/locale/setrunelocale.c projects/mtree/lib/libc/net/getnetent.3 projects/mtree/lib/libc/net/getprotoent.3 projects/mtree/lib/libc/net/getservent.3 projects/mtree/lib/libc/net/ip6opt.c projects/mtree/lib/libc/net/sctp_sys_calls.c projects/mtree/lib/libc/nls/msgcat.c projects/mtree/lib/libc/rpc/auth_unix.c projects/mtree/lib/libc/rpc/authunix_prot.c projects/mtree/lib/libc/rpc/clnt_perror.c projects/mtree/lib/libc/rpc/rpc_generic.c projects/mtree/lib/libc/rpc/rpc_soc.3 projects/mtree/lib/libc/rpc/rpcb_clnt.c projects/mtree/lib/libc/rpc/svc_auth_unix.c projects/mtree/lib/libc/rpc/svc_run.c projects/mtree/lib/libc/stdio/fdopen.c projects/mtree/lib/libc/stdio/flags.c projects/mtree/lib/libc/stdio/fopen.3 projects/mtree/lib/libc/stdio/freopen.c projects/mtree/lib/libc/stdio/getline.3 projects/mtree/lib/libc/stdio/printf.3 projects/mtree/lib/libc/stdlib/getenv.c projects/mtree/lib/libc/stdlib/rand.c projects/mtree/lib/libc/stdlib/random.c projects/mtree/lib/libc/string/ffs.3 projects/mtree/lib/libc/sys/Makefile.inc projects/mtree/lib/libc/sys/Symbol.map projects/mtree/lib/libc/sys/bind.2 projects/mtree/lib/libc/sys/fcntl.2 projects/mtree/lib/libc/sys/getpeername.2 projects/mtree/lib/libc/sys/getsockname.2 projects/mtree/lib/libc/sys/kill.2 projects/mtree/lib/libc/sys/listen.2 projects/mtree/lib/libc/sys/rtprio.2 projects/mtree/lib/libc/sys/sendfile.2 projects/mtree/lib/libc/sys/sigaction.2 projects/mtree/lib/libc/sys/sigwait.2 projects/mtree/lib/libc/sys/sigwaitinfo.2 projects/mtree/lib/libc/sys/socket.2 projects/mtree/lib/libc/sys/wait.2 projects/mtree/lib/libc/yp/yplib.c projects/mtree/lib/libdwarf/dwarf_errmsg.c projects/mtree/lib/libdwarf/dwarf_init.c projects/mtree/lib/libedit/read.c projects/mtree/lib/libelf/elf_errmsg.c projects/mtree/lib/libfetch/http.c projects/mtree/lib/libfetch/http.errors projects/mtree/lib/libgeom/geom_xml2tree.c projects/mtree/lib/libipsec/policy_parse.y projects/mtree/lib/libjail/jail.c projects/mtree/lib/libkvm/kvm_proc.c projects/mtree/lib/libmemstat/memstat_uma.c projects/mtree/lib/libpam/modules/pam_krb5/pam_krb5.c projects/mtree/lib/libpam/modules/pam_radius/pam_radius.c projects/mtree/lib/libpcap/config.h projects/mtree/lib/libpmc/Makefile projects/mtree/lib/libpmc/libpmc.c projects/mtree/lib/libpmc/pmc.ivybridge.3 projects/mtree/lib/libpmc/pmc.sandybridge.3 projects/mtree/lib/libpmc/pmc.sandybridgeuc.3 projects/mtree/lib/libproc/proc_bkpt.c projects/mtree/lib/libproc/proc_regs.c projects/mtree/lib/libprocstat/Makefile projects/mtree/lib/libprocstat/common_kvm.h projects/mtree/lib/libprocstat/libprocstat.c projects/mtree/lib/libradius/Makefile projects/mtree/lib/libradius/libradius.3 projects/mtree/lib/libradius/radius.conf.5 projects/mtree/lib/libradius/radlib.c projects/mtree/lib/libradius/radlib.h projects/mtree/lib/libradius/radlib_private.h projects/mtree/lib/libradius/radlib_vs.h projects/mtree/lib/librpcsec_gss/svc_rpcsec_gss.c projects/mtree/lib/libstand/nandfs.c projects/mtree/lib/libstand/nfs.c projects/mtree/lib/libstdbuf/Makefile projects/mtree/lib/libthread_db/libpthread_db.c projects/mtree/lib/libthread_db/libthr_db.c projects/mtree/lib/libusbhid/descr.c projects/mtree/lib/libusbhid/parse.c projects/mtree/lib/libusbhid/usbhid.3 projects/mtree/lib/libutil/Makefile projects/mtree/lib/libutil/gr_util.c projects/mtree/lib/msun/ld128/s_expl.c projects/mtree/lib/msun/ld80/s_expl.c projects/mtree/lib/msun/man/ieee.3 projects/mtree/lib/msun/src/k_rem_pio2.c projects/mtree/lib/msun/src/math_private.h projects/mtree/lib/msun/src/s_cosl.c projects/mtree/lib/msun/src/s_isnan.c projects/mtree/lib/msun/src/s_sinl.c projects/mtree/lib/msun/src/s_tanl.c projects/mtree/libexec/Makefile projects/mtree/libexec/atrun/atrun.c projects/mtree/libexec/atrun/atrun.man projects/mtree/libexec/rpc.rusersd/Makefile projects/mtree/libexec/rpc.rusersd/rusers_proc.c projects/mtree/libexec/rpc.rusersd/rusersd.c projects/mtree/libexec/rtld-aout/shlib.c projects/mtree/libexec/rtld-elf/Makefile projects/mtree/libexec/rtld-elf/libmap.c projects/mtree/libexec/rtld-elf/rtld.c projects/mtree/libexec/talkd/announce.c projects/mtree/libexec/talkd/extern.h projects/mtree/libexec/talkd/process.c projects/mtree/libexec/talkd/table.c projects/mtree/libexec/talkd/talkd.c projects/mtree/libexec/tftpd/tftp-io.c projects/mtree/libexec/tftpd/tftp-utils.c projects/mtree/libexec/tftpd/tftpd.c projects/mtree/release/Makefile projects/mtree/release/doc/Makefile projects/mtree/release/doc/README projects/mtree/release/doc/de_DE.ISO8859-1/early-adopter/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/errata/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/hardware/alpha/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/hardware/common/hw.ent projects/mtree/release/doc/de_DE.ISO8859-1/hardware/i386/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/hardware/ia64/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/hardware/pc98/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/hardware/sparc64/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/installation/alpha/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/installation/common/install.ent projects/mtree/release/doc/de_DE.ISO8859-1/installation/i386/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/installation/ia64/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/installation/pc98/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/installation/sparc64/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/readme/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/alpha/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/common/relnotes.ent projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/i386/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/ia64/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/pc98/Makefile projects/mtree/release/doc/de_DE.ISO8859-1/relnotes/sparc64/Makefile projects/mtree/release/doc/en_US.ISO8859-1/errata/Makefile projects/mtree/release/doc/en_US.ISO8859-1/hardware/Makefile projects/mtree/release/doc/en_US.ISO8859-1/readme/Makefile projects/mtree/release/doc/en_US.ISO8859-1/relnotes/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/early-adopter/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/errata/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/alpha/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/common/hw.ent projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/i386/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/ia64/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/pc98/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/hardware/sparc64/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/installation/alpha/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/installation/common/install.ent projects/mtree/release/doc/fr_FR.ISO8859-1/installation/i386/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/installation/pc98/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/installation/sparc64/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/alpha/Makefile projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/common/relnotes.ent projects/mtree/release/doc/fr_FR.ISO8859-1/relnotes/i386/Makefile projects/mtree/release/doc/ja_JP.eucJP/errata/Makefile projects/mtree/release/doc/ja_JP.eucJP/hardware/alpha/Makefile projects/mtree/release/doc/ja_JP.eucJP/hardware/amd64/Makefile projects/mtree/release/doc/ja_JP.eucJP/hardware/common/hw.ent projects/mtree/release/doc/ja_JP.eucJP/hardware/i386/Makefile projects/mtree/release/doc/ja_JP.eucJP/hardware/ia64/Makefile projects/mtree/release/doc/ja_JP.eucJP/hardware/pc98/Makefile projects/mtree/release/doc/ja_JP.eucJP/hardware/sparc64/Makefile projects/mtree/release/doc/ja_JP.eucJP/relnotes/alpha/Makefile projects/mtree/release/doc/ja_JP.eucJP/relnotes/amd64/Makefile projects/mtree/release/doc/ja_JP.eucJP/relnotes/common/relnotes.ent projects/mtree/release/doc/ja_JP.eucJP/relnotes/i386/Makefile projects/mtree/release/doc/ja_JP.eucJP/relnotes/ia64/Makefile projects/mtree/release/doc/ja_JP.eucJP/relnotes/pc98/Makefile projects/mtree/release/doc/ja_JP.eucJP/relnotes/sparc64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/errata/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/hardware/common/hw.ent projects/mtree/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/installation/alpha/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/installation/amd64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/installation/common/install.ent projects/mtree/release/doc/ru_RU.KOI8-R/installation/i386/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/installation/ia64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/installation/pc98/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/installation/sparc64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/readme/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/alpha/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/amd64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/common/relnotes.ent projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/i386/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/ia64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/pc98/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/relnotes/sparc64/Makefile projects/mtree/release/doc/ru_RU.KOI8-R/share/examples/dev-auto-translate.pl projects/mtree/release/doc/share/mk/doc.relnotes.mk projects/mtree/release/doc/zh_CN.GB2312/errata/Makefile projects/mtree/release/doc/zh_CN.GB2312/hardware/Makefile projects/mtree/release/doc/zh_CN.GB2312/readme/Makefile projects/mtree/release/doc/zh_CN.GB2312/relnotes/Makefile projects/mtree/release/generate-release.sh projects/mtree/release/picobsd/floppy.tree/etc/ppp/ppp.conf projects/mtree/release/picobsd/mfs_tree/etc/remote projects/mtree/rescue/rescue/Makefile projects/mtree/sbin/Makefile projects/mtree/sbin/camcontrol/camcontrol.c projects/mtree/sbin/camcontrol/camcontrol.h projects/mtree/sbin/camcontrol/fwdownload.c projects/mtree/sbin/camcontrol/modeedit.c projects/mtree/sbin/ccdconfig/ccdconfig.c projects/mtree/sbin/comcontrol/comcontrol.8 projects/mtree/sbin/ddb/ddb.c projects/mtree/sbin/devd/devd.cc projects/mtree/sbin/devd/devd.conf.5 projects/mtree/sbin/devd/devd.hh projects/mtree/sbin/dump/dump.h projects/mtree/sbin/dump/traverse.c projects/mtree/sbin/dumpfs/dumpfs.c projects/mtree/sbin/dumpon/dumpon.8 projects/mtree/sbin/dumpon/dumpon.c projects/mtree/sbin/etherswitchcfg/etherswitchcfg.c projects/mtree/sbin/etherswitchcfg/ifmedia.c projects/mtree/sbin/fsck/Makefile projects/mtree/sbin/fsck/fsck.c projects/mtree/sbin/fsck/fsutil.c projects/mtree/sbin/fsck/fsutil.h projects/mtree/sbin/fsck/preen.c projects/mtree/sbin/fsck_ffs/fsutil.c projects/mtree/sbin/fsck_ffs/gjournal.c projects/mtree/sbin/fsck_ffs/inode.c projects/mtree/sbin/fsck_ffs/main.c projects/mtree/sbin/fsck_ffs/pass1.c projects/mtree/sbin/fsck_ffs/pass2.c projects/mtree/sbin/fsck_ffs/pass4.c projects/mtree/sbin/fsck_ffs/suj.c projects/mtree/sbin/fsck_msdosfs/Makefile projects/mtree/sbin/fsck_msdosfs/boot.c projects/mtree/sbin/fsck_msdosfs/check.c projects/mtree/sbin/fsck_msdosfs/dir.c projects/mtree/sbin/fsck_msdosfs/ext.h projects/mtree/sbin/fsck_msdosfs/fat.c projects/mtree/sbin/fsdb/fsdb.c projects/mtree/sbin/fsdb/fsdbutil.c projects/mtree/sbin/fsirand/fsirand.c projects/mtree/sbin/geom/core/geom.c projects/mtree/sbin/ggate/ggatec/ggatec.c projects/mtree/sbin/ggate/ggated/ggated.c projects/mtree/sbin/ggate/ggatel/ggatel.c projects/mtree/sbin/growfs/growfs.8 projects/mtree/sbin/growfs/growfs.c projects/mtree/sbin/hastd/pjdlog.h projects/mtree/sbin/ifconfig/af_inet6.c projects/mtree/sbin/ifconfig/ifconfig.8 projects/mtree/sbin/ipfw/ipfw.8 projects/mtree/sbin/ipfw/ipv6.c projects/mtree/sbin/mdconfig/mdconfig.8 projects/mtree/sbin/mdconfig/mdconfig.c projects/mtree/sbin/mount/getmntopts.3 projects/mtree/sbin/mount/mount.8 projects/mtree/sbin/mount/mount.c projects/mtree/sbin/mount_nfs/mount_nfs.8 projects/mtree/sbin/natd/natd.c projects/mtree/sbin/newfs/mkfs.c projects/mtree/sbin/newfs/newfs.c projects/mtree/sbin/newfs/newfs.h projects/mtree/sbin/pfctl/pf_print_state.c projects/mtree/sbin/ping/ping.c projects/mtree/sbin/ping6/ping6.c projects/mtree/sbin/quotacheck/quotacheck.c projects/mtree/sbin/rcorder/rcorder.c projects/mtree/sbin/restore/dirs.c projects/mtree/sbin/restore/interactive.c projects/mtree/sbin/restore/restore.c projects/mtree/sbin/restore/symtab.c projects/mtree/sbin/restore/tape.c projects/mtree/sbin/route/keywords projects/mtree/sbin/route/route.8 projects/mtree/sbin/route/route.c projects/mtree/sbin/tunefs/tunefs.c projects/mtree/sbin/umount/umount.c projects/mtree/secure/usr.bin/bdes/bdes.1 projects/mtree/share/Makefile projects/mtree/share/dict/freebsd projects/mtree/share/doc/Makefile projects/mtree/share/doc/smm/01.setup/3.t projects/mtree/share/doc/smm/01.setup/4.t projects/mtree/share/examples/Makefile projects/mtree/share/examples/csh/dot.cshrc projects/mtree/share/examples/cvsup/ports-supfile projects/mtree/share/examples/etc/README.examples projects/mtree/share/examples/etc/make.conf projects/mtree/share/examples/ppp/ppp.conf.sample projects/mtree/share/examples/ppp/ppp.conf.span-isp projects/mtree/share/examples/ses/sesd/sesd.0 projects/mtree/share/examples/ses/srcs/eltsub.c projects/mtree/share/examples/ses/srcs/sesd.c projects/mtree/share/man/man1/Makefile projects/mtree/share/man/man4/Makefile projects/mtree/share/man/man4/ata.4 projects/mtree/share/man/man4/audit.4 projects/mtree/share/man/man4/carp.4 projects/mtree/share/man/man4/ddb.4 projects/mtree/share/man/man4/est.4 projects/mtree/share/man/man4/gdb.4 projects/mtree/share/man/man4/hptiop.4 projects/mtree/share/man/man4/hwpmc.4 projects/mtree/share/man/man4/icmp6.4 projects/mtree/share/man/man4/ip.4 projects/mtree/share/man/man4/ip6.4 projects/mtree/share/man/man4/ipfirewall.4 projects/mtree/share/man/man4/ipsec.4 projects/mtree/share/man/man4/ktr.4 projects/mtree/share/man/man4/lagg.4 projects/mtree/share/man/man4/mouse.4 projects/mtree/share/man/man4/ng_UI.4 projects/mtree/share/man/man4/ng_async.4 projects/mtree/share/man/man4/ng_atm.4 projects/mtree/share/man/man4/ng_atmllc.4 projects/mtree/share/man/man4/ng_bluetooth.4 projects/mtree/share/man/man4/ng_bpf.4 projects/mtree/share/man/man4/ng_bridge.4 projects/mtree/share/man/man4/ng_bt3c.4 projects/mtree/share/man/man4/ng_btsocket.4 projects/mtree/share/man/man4/ng_car.4 projects/mtree/share/man/man4/ng_ccatm.4 projects/mtree/share/man/man4/ng_cisco.4 projects/mtree/share/man/man4/ng_deflate.4 projects/mtree/share/man/man4/ng_eiface.4 projects/mtree/share/man/man4/ng_etf.4 projects/mtree/share/man/man4/ng_ether.4 projects/mtree/share/man/man4/ng_fec.4 projects/mtree/share/man/man4/ng_frame_relay.4 projects/mtree/share/man/man4/ng_gif.4 projects/mtree/share/man/man4/ng_gif_demux.4 projects/mtree/share/man/man4/ng_h4.4 projects/mtree/share/man/man4/ng_hci.4 projects/mtree/share/man/man4/ng_hole.4 projects/mtree/share/man/man4/ng_hub.4 projects/mtree/share/man/man4/ng_iface.4 projects/mtree/share/man/man4/ng_ksocket.4 projects/mtree/share/man/man4/ng_l2cap.4 projects/mtree/share/man/man4/ng_l2tp.4 projects/mtree/share/man/man4/ng_lmi.4 projects/mtree/share/man/man4/ng_mppc.4 projects/mtree/share/man/man4/ng_nat.4 projects/mtree/share/man/man4/ng_netflow.4 projects/mtree/share/man/man4/ng_one2many.4 projects/mtree/share/man/man4/ng_patch.4 projects/mtree/share/man/man4/ng_ppp.4 projects/mtree/share/man/man4/ng_pppoe.4 projects/mtree/share/man/man4/ng_pptpgre.4 projects/mtree/share/man/man4/ng_pred1.4 projects/mtree/share/man/man4/ng_rfc1490.4 projects/mtree/share/man/man4/ng_source.4 projects/mtree/share/man/man4/ng_split.4 projects/mtree/share/man/man4/ng_sppp.4 projects/mtree/share/man/man4/ng_sscfu.4 projects/mtree/share/man/man4/ng_sscop.4 projects/mtree/share/man/man4/ng_tag.4 projects/mtree/share/man/man4/ng_tcpmss.4 projects/mtree/share/man/man4/ng_tee.4 projects/mtree/share/man/man4/ng_tty.4 projects/mtree/share/man/man4/ng_ubt.4 projects/mtree/share/man/man4/ng_uni.4 projects/mtree/share/man/man4/ng_vjc.4 projects/mtree/share/man/man4/ng_vlan.4 projects/mtree/share/man/man4/textdump.4 projects/mtree/share/man/man4/unix.4 projects/mtree/share/man/man4/usb_quirk.4 projects/mtree/share/man/man4/vale.4 projects/mtree/share/man/man4/virtio.4 projects/mtree/share/man/man5/Makefile projects/mtree/share/man/man5/core.5 projects/mtree/share/man/man5/fstab.5 projects/mtree/share/man/man5/make.conf.5 projects/mtree/share/man/man5/portindex.5 projects/mtree/share/man/man5/rc.conf.5 projects/mtree/share/man/man5/remote.5 projects/mtree/share/man/man5/src.conf.5 projects/mtree/share/man/man7/Makefile projects/mtree/share/man/man7/build.7 projects/mtree/share/man/man7/development.7 projects/mtree/share/man/man7/environ.7 projects/mtree/share/man/man7/hier.7 projects/mtree/share/man/man7/ports.7 projects/mtree/share/man/man7/tuning.7 projects/mtree/share/man/man9/Makefile projects/mtree/share/man/man9/buf_ring.9 projects/mtree/share/man/man9/disk.9 projects/mtree/share/man/man9/domain.9 projects/mtree/share/man/man9/drbr.9 projects/mtree/share/man/man9/firmware.9 projects/mtree/share/man/man9/malloc.9 projects/mtree/share/man/man9/mbuf.9 projects/mtree/share/man/man9/mi_switch.9 projects/mtree/share/man/man9/module.9 projects/mtree/share/man/man9/namei.9 projects/mtree/share/man/man9/pfil.9 projects/mtree/share/man/man9/sleep.9 projects/mtree/share/man/man9/taskqueue.9 projects/mtree/share/man/man9/timeout.9 projects/mtree/share/man/man9/zero_copy.9 projects/mtree/share/man/man9/zone.9 projects/mtree/share/misc/Makefile projects/mtree/share/misc/bsd-family-tree projects/mtree/share/misc/committers-doc.dot projects/mtree/share/misc/committers-ports.dot projects/mtree/share/misc/committers-src.dot projects/mtree/share/misc/flowers (contents, props changed) projects/mtree/share/misc/iso639 projects/mtree/share/misc/organization.dot projects/mtree/share/misc/pci_vendors projects/mtree/share/mk/Makefile projects/mtree/share/mk/bsd.compiler.mk projects/mtree/share/mk/bsd.cpu.mk projects/mtree/share/mk/bsd.crunchgen.mk projects/mtree/share/mk/bsd.dep.mk projects/mtree/share/mk/bsd.lib.mk projects/mtree/share/mk/bsd.libnames.mk projects/mtree/share/mk/bsd.obj.mk projects/mtree/share/mk/bsd.own.mk projects/mtree/share/mk/bsd.subdir.mk projects/mtree/share/mk/bsd.sys.mk projects/mtree/share/mk/sys.mk projects/mtree/share/skel/dot.cshrc projects/mtree/share/syscons/keymaps/INDEX.keymaps projects/mtree/share/syscons/keymaps/Makefile projects/mtree/share/termcap/termcap.src projects/mtree/sys/Makefile projects/mtree/sys/amd64/amd64/db_trace.c projects/mtree/sys/amd64/amd64/identcpu.c projects/mtree/sys/amd64/amd64/initcpu.c projects/mtree/sys/amd64/amd64/machdep.c projects/mtree/sys/amd64/amd64/minidump_machdep.c projects/mtree/sys/amd64/amd64/mp_machdep.c projects/mtree/sys/amd64/amd64/pmap.c projects/mtree/sys/amd64/amd64/trap.c projects/mtree/sys/amd64/amd64/uma_machdep.c projects/mtree/sys/amd64/include/atomic.h projects/mtree/sys/amd64/include/bus.h projects/mtree/sys/amd64/include/intr_machdep.h projects/mtree/sys/amd64/include/md_var.h projects/mtree/sys/amd64/include/pc/bios.h projects/mtree/sys/amd64/pci/pci_cfgreg.c projects/mtree/sys/arm/arm/busdma_machdep-v6.c projects/mtree/sys/arm/arm/cpufunc.c projects/mtree/sys/arm/arm/cpufunc_asm_armv7.S projects/mtree/sys/arm/arm/locore.S projects/mtree/sys/arm/arm/machdep.c projects/mtree/sys/arm/arm/mpcore_timer.c projects/mtree/sys/arm/arm/pl310.c projects/mtree/sys/arm/arm/pmap-v6.c projects/mtree/sys/arm/arm/pmap.c projects/mtree/sys/arm/arm/vm_machdep.c projects/mtree/sys/arm/at91/at91_machdep.c projects/mtree/sys/arm/at91/at91_rtc.c projects/mtree/sys/arm/at91/at91_rtcreg.h projects/mtree/sys/arm/at91/files.at91 projects/mtree/sys/arm/at91/if_ate.c projects/mtree/sys/arm/at91/if_macb.c projects/mtree/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/mtree/sys/arm/broadcom/bcm2835/bcm2835_machdep.c projects/mtree/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/mtree/sys/arm/broadcom/bcm2835/files.bcm2835 projects/mtree/sys/arm/conf/BEAGLEBONE projects/mtree/sys/arm/conf/CAMBRIA projects/mtree/sys/arm/conf/PANDABOARD projects/mtree/sys/arm/conf/RPI-B projects/mtree/sys/arm/econa/econa_machdep.c projects/mtree/sys/arm/econa/if_ece.c projects/mtree/sys/arm/include/atomic.h projects/mtree/sys/arm/include/cpufunc.h projects/mtree/sys/arm/include/machdep.h projects/mtree/sys/arm/include/pmap.h projects/mtree/sys/arm/lpc/if_lpe.c projects/mtree/sys/arm/lpc/lpc_gpio.c projects/mtree/sys/arm/lpc/lpc_machdep.c projects/mtree/sys/arm/mv/armadaxp/armadaxp_mp.c projects/mtree/sys/arm/mv/mv_machdep.c projects/mtree/sys/arm/mv/mvreg.h projects/mtree/sys/arm/s3c2xx0/s3c24x0_machdep.c projects/mtree/sys/arm/sa11x0/assabet_machdep.c projects/mtree/sys/arm/tegra/tegra2_machdep.c projects/mtree/sys/arm/ti/am335x/am335x_dmtimer.c projects/mtree/sys/arm/ti/cpsw/if_cpsw.c projects/mtree/sys/arm/ti/omap4/omap4_mp.c projects/mtree/sys/arm/ti/ti_machdep.c projects/mtree/sys/arm/ti/usb/omap_ehci.c projects/mtree/sys/arm/xscale/i80321/ep80219_machdep.c projects/mtree/sys/arm/xscale/i80321/iq31244_machdep.c projects/mtree/sys/arm/xscale/i8134x/crb_machdep.c projects/mtree/sys/arm/xscale/ixp425/avila_machdep.c projects/mtree/sys/arm/xscale/ixp425/if_npe.c projects/mtree/sys/arm/xscale/pxa/pxa_machdep.c projects/mtree/sys/boot/common/Makefile.inc projects/mtree/sys/boot/common/bootstrap.h projects/mtree/sys/boot/common/console.c projects/mtree/sys/boot/common/disk.c projects/mtree/sys/boot/common/disk.h projects/mtree/sys/boot/common/interp.c projects/mtree/sys/boot/common/interp_forth.c projects/mtree/sys/boot/common/module.c projects/mtree/sys/boot/common/reloc_elf.c projects/mtree/sys/boot/efi/Makefile.inc projects/mtree/sys/boot/efi/libefi/libefi.c projects/mtree/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/mtree/sys/boot/fdt/fdt_loader_cmd.c projects/mtree/sys/boot/ficl/Makefile projects/mtree/sys/boot/forth/beastie.4th projects/mtree/sys/boot/forth/color.4th.8 projects/mtree/sys/boot/forth/frames.4th projects/mtree/sys/boot/forth/loader.4th projects/mtree/sys/boot/forth/loader.conf projects/mtree/sys/boot/forth/menu-commands.4th projects/mtree/sys/boot/forth/menu.4th projects/mtree/sys/boot/forth/menu.rc projects/mtree/sys/boot/forth/support.4th projects/mtree/sys/boot/i386/Makefile.inc projects/mtree/sys/boot/i386/boot2/boot2.c projects/mtree/sys/boot/i386/boot2/lib.h projects/mtree/sys/boot/i386/boot2/sio.S projects/mtree/sys/boot/i386/btx/btx/btx.S projects/mtree/sys/boot/i386/common/edd.h projects/mtree/sys/boot/i386/efi/exec.c projects/mtree/sys/boot/i386/efi/reloc.c projects/mtree/sys/boot/i386/gptboot/gptboot.c projects/mtree/sys/boot/i386/libi386/biosdisk.c projects/mtree/sys/boot/i386/libi386/comconsole.c projects/mtree/sys/boot/i386/loader/Makefile projects/mtree/sys/boot/i386/loader/conf.c projects/mtree/sys/boot/i386/loader/main.c projects/mtree/sys/boot/i386/zfsboot/zfsboot.c projects/mtree/sys/boot/ia64/common/Makefile projects/mtree/sys/boot/pc98/Makefile.inc projects/mtree/sys/boot/pc98/boot2/Makefile projects/mtree/sys/boot/pc98/boot2/boot2.c projects/mtree/sys/boot/pc98/btx/btx/btx.S projects/mtree/sys/boot/pc98/cdboot/Makefile projects/mtree/sys/boot/pc98/libpc98/comconsole.c projects/mtree/sys/boot/pc98/loader/Makefile projects/mtree/sys/boot/pc98/loader/main.c projects/mtree/sys/boot/powerpc/boot1.chrp/boot1.c projects/mtree/sys/boot/powerpc/ofw/Makefile projects/mtree/sys/boot/powerpc/ps3/Makefile projects/mtree/sys/boot/sparc64/boot1/boot1.c projects/mtree/sys/boot/sparc64/loader/Makefile projects/mtree/sys/boot/uboot/common/metadata.c projects/mtree/sys/boot/uboot/lib/disk.c projects/mtree/sys/boot/uboot/lib/elf_freebsd.c projects/mtree/sys/boot/userboot/ficl/Makefile projects/mtree/sys/boot/userboot/test/test.c projects/mtree/sys/boot/userboot/userboot.h projects/mtree/sys/boot/userboot/userboot/conf.c projects/mtree/sys/boot/userboot/userboot/libuserboot.h projects/mtree/sys/boot/userboot/userboot/main.c projects/mtree/sys/boot/userboot/userboot/userboot_disk.c projects/mtree/sys/boot/zfs/Makefile projects/mtree/sys/boot/zfs/libzfs.h projects/mtree/sys/boot/zfs/zfs.c projects/mtree/sys/boot/zfs/zfsimpl.c projects/mtree/sys/bsm/audit_errno.h projects/mtree/sys/bsm/audit_internal.h projects/mtree/sys/bsm/audit_kevents.h projects/mtree/sys/bsm/audit_record.h projects/mtree/sys/cam/ata/ata_da.c projects/mtree/sys/cam/ata/ata_pmp.c projects/mtree/sys/cam/ata/ata_xpt.c projects/mtree/sys/cam/cam.h projects/mtree/sys/cam/cam_periph.c projects/mtree/sys/cam/cam_queue.c projects/mtree/sys/cam/cam_xpt.c projects/mtree/sys/cam/ctl/ctl.c projects/mtree/sys/cam/ctl/ctl_backend_block.c projects/mtree/sys/cam/ctl/ctl_backend_ramdisk.c projects/mtree/sys/cam/ctl/ctl_frontend_cam_sim.c projects/mtree/sys/cam/ctl/scsi_ctl.c projects/mtree/sys/cam/scsi/scsi_cd.c projects/mtree/sys/cam/scsi/scsi_ch.c projects/mtree/sys/cam/scsi/scsi_da.c projects/mtree/sys/cam/scsi/scsi_enc.c projects/mtree/sys/cam/scsi/scsi_enc_internal.h projects/mtree/sys/cam/scsi/scsi_enc_ses.c projects/mtree/sys/cam/scsi/scsi_pass.c projects/mtree/sys/cam/scsi/scsi_pt.c projects/mtree/sys/cam/scsi/scsi_sa.c projects/mtree/sys/cam/scsi/scsi_sg.c projects/mtree/sys/cam/scsi/scsi_xpt.c projects/mtree/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/mtree/sys/cddl/compat/opensolaris/kern/opensolaris_kobj.c projects/mtree/sys/cddl/compat/opensolaris/kern/opensolaris_lookup.c projects/mtree/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c projects/mtree/sys/cddl/compat/opensolaris/sys/dkio.h projects/mtree/sys/cddl/compat/opensolaris/sys/vnode.h projects/mtree/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/mtree/sys/cddl/contrib/opensolaris/uts/common/sys/procset.h projects/mtree/sys/cddl/dev/lockstat/lockstat.c projects/mtree/sys/cddl/dev/profile/profile.c projects/mtree/sys/compat/freebsd32/freebsd32.h projects/mtree/sys/compat/freebsd32/freebsd32_misc.c projects/mtree/sys/compat/freebsd32/freebsd32_proto.h projects/mtree/sys/compat/freebsd32/freebsd32_syscall.h projects/mtree/sys/compat/freebsd32/freebsd32_syscalls.c projects/mtree/sys/compat/freebsd32/freebsd32_sysent.c projects/mtree/sys/compat/freebsd32/freebsd32_systrace_args.c projects/mtree/sys/compat/freebsd32/syscalls.master projects/mtree/sys/compat/linprocfs/linprocfs.c projects/mtree/sys/compat/linux/linux_file.c projects/mtree/sys/compat/linux/linux_ioctl.c projects/mtree/sys/compat/linux/linux_misc.c projects/mtree/sys/compat/linux/linux_socket.c projects/mtree/sys/compat/ndis/kern_ndis.c projects/mtree/sys/compat/ndis/subr_ndis.c projects/mtree/sys/compat/svr4/svr4_misc.c projects/mtree/sys/conf/Makefile.arm projects/mtree/sys/conf/Makefile.pc98 projects/mtree/sys/conf/NOTES projects/mtree/sys/conf/files projects/mtree/sys/conf/files.amd64 projects/mtree/sys/conf/files.arm projects/mtree/sys/conf/files.i386 projects/mtree/sys/conf/files.ia64 projects/mtree/sys/conf/files.mips projects/mtree/sys/conf/files.pc98 projects/mtree/sys/conf/files.powerpc projects/mtree/sys/conf/files.sparc64 projects/mtree/sys/conf/kern.post.mk projects/mtree/sys/conf/kern.pre.mk projects/mtree/sys/conf/kmod.mk projects/mtree/sys/conf/newvers.sh projects/mtree/sys/conf/options projects/mtree/sys/conf/options.ia64 projects/mtree/sys/conf/options.mips projects/mtree/sys/contrib/altq/altq/altq_priq.c projects/mtree/sys/contrib/altq/altq/altq_red.c projects/mtree/sys/contrib/altq/altq/altq_rio.c projects/mtree/sys/contrib/altq/altq/altq_rmclass.c projects/mtree/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/adfile.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/adisasm.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/adwalk.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/dmextern.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/dmrestag.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/dmtable.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/dmtbdump.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/dmtbinfo.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/common/getopt.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslcodegen.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslcompile.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslcompiler.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslcompiler.y (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asldefine.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslerror.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslfiles.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslfold.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslglobal.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asllength.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asllisting.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslload.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asllookup.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslmain.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslmap.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslmessages.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslopcodes.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asloperands.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslopt.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslresource.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype1.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype1i.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype2d.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype2e.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype2q.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype2w.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslstartup.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslstubs.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslsupport.l (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asltransform.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asltree.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asltypes.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslwalks.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtcompile.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtio.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dttable.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dttemplate.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dttemplate.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/compiler/prutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbcmds.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbdisply.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbexec.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbfileio.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbhistry.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbinput.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbmethod.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbnames.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbstats.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/dbxface.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmnames.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmobject.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmopcode.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmresrc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmresrcs.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/dmwalk.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsfield.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsinit.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsmethod.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsobject.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dswexec.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dswload2.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dswscope.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dswstate.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evevent.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evrgnini.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evxfgpe.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evxfregn.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exconfig.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exconvrt.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/excreate.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exdebug.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exdump.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exfield.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exfldio.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exmisc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exmutex.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exnames.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exoparg1.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exoparg2.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exoparg3.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exoparg6.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exprep.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exregion.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exresnte.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exresolv.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exresop.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exstore.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exstoren.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exstorob.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exsystem.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/exutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwacpi.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwgpe.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwpci.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwregs.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwtimer.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwvalid.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwxface.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsaccess.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsalloc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsdump.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsdumpdv.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nseval.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsinit.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsload.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsnames.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsobject.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsparse.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nssearch.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nswalk.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsxfeval.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsxfname.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsxfobj.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psargs.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psloop.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psopcode.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psparse.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psscope.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/pstree.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/psxface.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsaddr.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rscalc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rscreate.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsdump.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsio.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rslist.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsmemory.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsmisc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsxface.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbfadt.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbfind.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbinstal.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbutils.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbxface.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbxfload.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/tbxfroot.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utalloc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utcache.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utcopy.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utdebug.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utdelete.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utids.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utinit.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utlock.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utmath.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utmisc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utmutex.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utobject.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utresrc.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utstate.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/uttrack.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utxface.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utxferror.c (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acapps.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acconfig.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acdisasm.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acexcep.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acglobal.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/aclocal.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acmacros.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acnames.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acobject.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acopcode.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acpiosxf.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acpixf.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acrestyp.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acstruct.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/actbl2.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/actbl3.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/actypes.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/acutils.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/amlresrc.h (contents, props changed) projects/mtree/sys/contrib/dev/acpica/include/platform/acenv.h (contents, props changed) projects/mtree/sys/contrib/ipfilter/netinet/fil.c projects/mtree/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c projects/mtree/sys/contrib/ngatm/netnatm/msg/uni_ie.c projects/mtree/sys/contrib/octeon-sdk/cvmx-app-init.h projects/mtree/sys/contrib/octeon-sdk/cvmx-dma-engine.c projects/mtree/sys/contrib/octeon-sdk/cvmx-ebt3000.c projects/mtree/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/mtree/sys/contrib/octeon-sdk/cvmx-helper-spi.c projects/mtree/sys/contrib/octeon-sdk/cvmx-helper.c projects/mtree/sys/contrib/octeon-sdk/cvmx-pow.h projects/mtree/sys/contrib/octeon-sdk/cvmx-spi.c projects/mtree/sys/contrib/octeon-sdk/cvmx-utils.h projects/mtree/sys/contrib/octeon-sdk/cvmx-warn.c projects/mtree/sys/contrib/octeon-sdk/cvmx.h projects/mtree/sys/contrib/octeon-sdk/octeon-feature.c projects/mtree/sys/contrib/octeon-sdk/octeon-feature.h projects/mtree/sys/contrib/octeon-sdk/octeon-model.c projects/mtree/sys/contrib/octeon-sdk/octeon-model.h projects/mtree/sys/contrib/octeon-sdk/octeon-pci-console.c projects/mtree/sys/contrib/rdma/rdma_addr.c projects/mtree/sys/ddb/db_command.c projects/mtree/sys/ddb/db_textdump.c projects/mtree/sys/dev/aac/aac_cam.c projects/mtree/sys/dev/aac/aac_debug.c projects/mtree/sys/dev/acpi_support/acpi_ibm.c projects/mtree/sys/dev/acpi_support/acpi_wmi.c projects/mtree/sys/dev/acpica/acpi.c projects/mtree/sys/dev/acpica/acpi_cpu.c projects/mtree/sys/dev/acpica/acpi_pcib_acpi.c projects/mtree/sys/dev/acpica/acpi_thermal.c projects/mtree/sys/dev/acpica/acpi_video.c projects/mtree/sys/dev/acpica/acpivar.h projects/mtree/sys/dev/adb/adb_mouse.c projects/mtree/sys/dev/advansys/adv_eisa.c projects/mtree/sys/dev/advansys/adv_isa.c projects/mtree/sys/dev/advansys/adv_pci.c projects/mtree/sys/dev/advansys/advansys.c projects/mtree/sys/dev/advansys/advansys.h projects/mtree/sys/dev/advansys/advlib.c projects/mtree/sys/dev/advansys/advlib.h projects/mtree/sys/dev/advansys/adw_pci.c projects/mtree/sys/dev/advansys/adwcam.c projects/mtree/sys/dev/advansys/adwlib.c projects/mtree/sys/dev/advansys/adwlib.h projects/mtree/sys/dev/advansys/adwvar.h projects/mtree/sys/dev/age/if_age.c projects/mtree/sys/dev/agp/agp.c projects/mtree/sys/dev/agp/agp_ali.c projects/mtree/sys/dev/agp/agp_amd.c projects/mtree/sys/dev/agp/agp_amd64.c projects/mtree/sys/dev/agp/agp_apple.c projects/mtree/sys/dev/agp/agp_ati.c projects/mtree/sys/dev/agp/agp_i810.c projects/mtree/sys/dev/agp/agp_intel.c projects/mtree/sys/dev/agp/agp_nvidia.c projects/mtree/sys/dev/agp/agp_sis.c projects/mtree/sys/dev/agp/agp_via.c projects/mtree/sys/dev/aha/aha.c projects/mtree/sys/dev/aha/aha_isa.c projects/mtree/sys/dev/aha/aha_mca.c projects/mtree/sys/dev/aha/ahareg.h projects/mtree/sys/dev/ahb/ahb.c projects/mtree/sys/dev/ahb/ahbreg.h projects/mtree/sys/dev/ahci/ahciem.c projects/mtree/sys/dev/aic/aic.c projects/mtree/sys/dev/aic/aic_cbus.c projects/mtree/sys/dev/aic/aic_isa.c projects/mtree/sys/dev/aic/aic_pccard.c projects/mtree/sys/dev/aic/aicvar.h projects/mtree/sys/dev/aic7xxx/aicasm/aicasm_gram.y projects/mtree/sys/dev/alc/if_alc.c projects/mtree/sys/dev/ale/if_ale.c projects/mtree/sys/dev/amr/amr.c projects/mtree/sys/dev/an/if_an.c projects/mtree/sys/dev/arcmsr/arcmsr.c projects/mtree/sys/dev/asmc/asmc.c projects/mtree/sys/dev/ata/ata-all.c projects/mtree/sys/dev/ata/ata-all.h projects/mtree/sys/dev/ata/ata-card.c projects/mtree/sys/dev/ata/ata-lowlevel.c projects/mtree/sys/dev/ata/ata-sata.c projects/mtree/sys/dev/ata/chipsets/ata-acard.c projects/mtree/sys/dev/ata/chipsets/ata-acerlabs.c projects/mtree/sys/dev/ata/chipsets/ata-adaptec.c projects/mtree/sys/dev/ata/chipsets/ata-ahci.c projects/mtree/sys/dev/ata/chipsets/ata-amd.c projects/mtree/sys/dev/ata/chipsets/ata-ati.c projects/mtree/sys/dev/ata/chipsets/ata-highpoint.c projects/mtree/sys/dev/ata/chipsets/ata-intel.c projects/mtree/sys/dev/ata/chipsets/ata-ite.c projects/mtree/sys/dev/ata/chipsets/ata-jmicron.c projects/mtree/sys/dev/ata/chipsets/ata-marvell.c projects/mtree/sys/dev/ata/chipsets/ata-nvidia.c projects/mtree/sys/dev/ata/chipsets/ata-promise.c projects/mtree/sys/dev/ata/chipsets/ata-serverworks.c projects/mtree/sys/dev/ata/chipsets/ata-siliconimage.c projects/mtree/sys/dev/ata/chipsets/ata-sis.c projects/mtree/sys/dev/ata/chipsets/ata-via.c projects/mtree/sys/dev/ath/ath_hal/ah.h projects/mtree/sys/dev/ath/ath_hal/ah_debug.h projects/mtree/sys/dev/ath/ath_hal/ah_devid.h projects/mtree/sys/dev/ath/ath_hal/ah_internal.h projects/mtree/sys/dev/ath/ath_hal/ah_regdomain.c projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210desc.h projects/mtree/sys/dev/ath/ath_hal/ar5210/ar5210reg.h projects/mtree/sys/dev/ath/ath_hal/ar5211/ar5211desc.h projects/mtree/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/mtree/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/mtree/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c projects/mtree/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c projects/mtree/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/mtree/sys/dev/ath/ath_hal/ar5212/ar5212desc.h projects/mtree/sys/dev/ath/ath_hal/ar5416/ar2133.c projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/mtree/sys/dev/ath/ath_hal/ar5416/ar5416desc.h projects/mtree/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c projects/mtree/sys/dev/ath/ath_hal/ar9001/ar9130_phy.c projects/mtree/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c projects/mtree/sys/dev/ath/ath_hal/ar9002/ar9280.c projects/mtree/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/mtree/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/mtree/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c projects/mtree/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/mtree/sys/dev/ath/ath_rate/sample/sample.c projects/mtree/sys/dev/ath/if_ath.c projects/mtree/sys/dev/ath/if_ath_ahb.c projects/mtree/sys/dev/ath/if_ath_beacon.c projects/mtree/sys/dev/ath/if_ath_debug.c projects/mtree/sys/dev/ath/if_ath_debug.h projects/mtree/sys/dev/ath/if_ath_keycache.c projects/mtree/sys/dev/ath/if_ath_misc.h projects/mtree/sys/dev/ath/if_ath_pci.c projects/mtree/sys/dev/ath/if_ath_rx.c projects/mtree/sys/dev/ath/if_ath_rx_edma.c projects/mtree/sys/dev/ath/if_ath_sysctl.c projects/mtree/sys/dev/ath/if_ath_tdma.c projects/mtree/sys/dev/ath/if_ath_tx.c projects/mtree/sys/dev/ath/if_ath_tx.h projects/mtree/sys/dev/ath/if_ath_tx_edma.c projects/mtree/sys/dev/ath/if_ath_tx_ht.c projects/mtree/sys/dev/ath/if_athvar.h projects/mtree/sys/dev/bce/if_bce.c projects/mtree/sys/dev/bce/if_bcereg.h projects/mtree/sys/dev/bfe/if_bfe.c projects/mtree/sys/dev/bge/if_bge.c projects/mtree/sys/dev/bge/if_bgereg.h projects/mtree/sys/dev/bktr/bktr_audio.c projects/mtree/sys/dev/bm/if_bm.c projects/mtree/sys/dev/buslogic/bt.c projects/mtree/sys/dev/buslogic/bt_eisa.c projects/mtree/sys/dev/buslogic/bt_isa.c projects/mtree/sys/dev/buslogic/bt_mca.c projects/mtree/sys/dev/buslogic/bt_pci.c projects/mtree/sys/dev/buslogic/btreg.h projects/mtree/sys/dev/bwi/if_bwi.c projects/mtree/sys/dev/bwn/if_bwn.c projects/mtree/sys/dev/bxe/if_bxe.c projects/mtree/sys/dev/cas/if_cas.c projects/mtree/sys/dev/ce/if_ce.c projects/mtree/sys/dev/ciss/cissvar.h projects/mtree/sys/dev/cm/smc90cx6.c projects/mtree/sys/dev/cp/if_cp.c projects/mtree/sys/dev/cpuctl/cpuctl.c projects/mtree/sys/dev/cs/if_cs.c projects/mtree/sys/dev/ct/bshw_machdep.c projects/mtree/sys/dev/ct/ct.c projects/mtree/sys/dev/ct/ct_isa.c projects/mtree/sys/dev/ct/ct_machdep.h projects/mtree/sys/dev/ctau/if_ct.c projects/mtree/sys/dev/cx/if_cx.c projects/mtree/sys/dev/cxgb/cxgb_main.c projects/mtree/sys/dev/cxgb/cxgb_sge.c projects/mtree/sys/dev/cxgb/sys/uipc_mvec.c projects/mtree/sys/dev/cxgb/ulp/tom/cxgb_tom.h projects/mtree/sys/dev/cxgbe/adapter.h projects/mtree/sys/dev/cxgbe/common/common.h projects/mtree/sys/dev/cxgbe/common/t4_hw.c projects/mtree/sys/dev/cxgbe/t4_ioctl.h projects/mtree/sys/dev/cxgbe/t4_l2t.h projects/mtree/sys/dev/cxgbe/t4_main.c projects/mtree/sys/dev/cxgbe/t4_sge.c projects/mtree/sys/dev/cxgbe/tom/t4_cpl_io.c projects/mtree/sys/dev/cxgbe/tom/t4_ddp.c projects/mtree/sys/dev/cxgbe/tom/t4_listen.c projects/mtree/sys/dev/cxgbe/tom/t4_tom.h projects/mtree/sys/dev/dc/if_dc.c projects/mtree/sys/dev/de/if_de.c projects/mtree/sys/dev/dpt/dpt.h projects/mtree/sys/dev/dpt/dpt_eisa.c projects/mtree/sys/dev/dpt/dpt_isa.c projects/mtree/sys/dev/dpt/dpt_pci.c projects/mtree/sys/dev/dpt/dpt_scsi.c projects/mtree/sys/dev/drm/drmP.h projects/mtree/sys/dev/drm/via_dma.c projects/mtree/sys/dev/drm/via_dmablit.c projects/mtree/sys/dev/drm2/drm_drv.c projects/mtree/sys/dev/drm2/i915/i915_drv.c projects/mtree/sys/dev/e1000/if_em.c projects/mtree/sys/dev/e1000/if_igb.c projects/mtree/sys/dev/e1000/if_igb.h projects/mtree/sys/dev/e1000/if_lem.c projects/mtree/sys/dev/ed/if_ed.c projects/mtree/sys/dev/en/midway.c projects/mtree/sys/dev/ep/if_ep.c projects/mtree/sys/dev/et/if_et.c projects/mtree/sys/dev/etherswitch/arswitch/arswitch.c projects/mtree/sys/dev/etherswitch/arswitch/arswitch_phy.c projects/mtree/sys/dev/etherswitch/arswitch/arswitch_reg.c projects/mtree/sys/dev/etherswitch/arswitch/arswitchvar.h projects/mtree/sys/dev/etherswitch/etherswitch.c projects/mtree/sys/dev/etherswitch/etherswitch_if.m projects/mtree/sys/dev/ex/if_ex.c projects/mtree/sys/dev/fatm/if_fatm.c projects/mtree/sys/dev/fdc/fdc.c projects/mtree/sys/dev/fdt/fdt_common.c projects/mtree/sys/dev/fdt/fdt_common.h projects/mtree/sys/dev/fe/if_fe.c projects/mtree/sys/dev/filemon/filemon.c projects/mtree/sys/dev/filemon/filemon_wrapper.c projects/mtree/sys/dev/firewire/fwohci.c projects/mtree/sys/dev/firewire/if_fwe.c projects/mtree/sys/dev/firewire/if_fwip.c projects/mtree/sys/dev/flash/at45d.c projects/mtree/sys/dev/flash/mx25l.c projects/mtree/sys/dev/fxp/if_fxp.c projects/mtree/sys/dev/gem/if_gem.c projects/mtree/sys/dev/gem/if_gem_pci.c projects/mtree/sys/dev/gpio/gpiobus.c projects/mtree/sys/dev/gxemul/cons/gxemul_cons.c projects/mtree/sys/dev/gxemul/ether/if_gx.c projects/mtree/sys/dev/hatm/if_hatm_intr.c projects/mtree/sys/dev/hatm/if_hatm_tx.c projects/mtree/sys/dev/hifn/hifn7751.c projects/mtree/sys/dev/hme/if_hme.c projects/mtree/sys/dev/hpt27xx/os_bsd.c projects/mtree/sys/dev/hptiop/hptiop.c projects/mtree/sys/dev/hptiop/hptiop.h projects/mtree/sys/dev/hwpmc/hwpmc_core.c projects/mtree/sys/dev/hwpmc/hwpmc_intel.c projects/mtree/sys/dev/hwpmc/hwpmc_mod.c projects/mtree/sys/dev/hwpmc/pmc_events.h projects/mtree/sys/dev/ie/if_ie.c projects/mtree/sys/dev/ie/if_ie_isa.c projects/mtree/sys/dev/if_ndis/if_ndis.c projects/mtree/sys/dev/iicbus/iic.c projects/mtree/sys/dev/iicbus/pcf8563.c projects/mtree/sys/dev/iicbus/s35390a.c projects/mtree/sys/dev/ipmi/ipmi_smbios.c projects/mtree/sys/dev/ipw/if_ipw.c projects/mtree/sys/dev/isci/isci.c projects/mtree/sys/dev/isci/isci.h projects/mtree/sys/dev/isci/isci_controller.c projects/mtree/sys/dev/isci/isci_io_request.c projects/mtree/sys/dev/isf/isf.c projects/mtree/sys/dev/isp/isp_pci.c projects/mtree/sys/dev/isp/isp_sbus.c projects/mtree/sys/dev/iwi/if_iwi.c projects/mtree/sys/dev/iwn/if_iwn.c projects/mtree/sys/dev/ixgb/if_ixgb.c projects/mtree/sys/dev/ixgbe/ixgbe.c projects/mtree/sys/dev/ixgbe/ixgbe.h projects/mtree/sys/dev/ixgbe/ixv.c projects/mtree/sys/dev/jme/if_jme.c projects/mtree/sys/dev/le/lance.c projects/mtree/sys/dev/lge/if_lge.c projects/mtree/sys/dev/lmc/if_lmc.c projects/mtree/sys/dev/malo/if_malo.c projects/mtree/sys/dev/md/md.c projects/mtree/sys/dev/mfi/mfi.c projects/mtree/sys/dev/mfi/mfi_cam.c projects/mtree/sys/dev/mfi/mfi_disk.c projects/mtree/sys/dev/mfi/mfi_syspd.c projects/mtree/sys/dev/mfi/mfi_tbolt.c projects/mtree/sys/dev/mfi/mfivar.h projects/mtree/sys/dev/mge/if_mge.c projects/mtree/sys/dev/mii/brgphy.c projects/mtree/sys/dev/mii/e1000phy.c projects/mtree/sys/dev/mii/mii.c projects/mtree/sys/dev/mii/smscphy.c projects/mtree/sys/dev/mlx/mlx.c projects/mtree/sys/dev/mlx/mlx_disk.c projects/mtree/sys/dev/mlx/mlx_pci.c projects/mtree/sys/dev/mlx/mlxvar.h projects/mtree/sys/dev/mmc/mmc.c projects/mtree/sys/dev/mn/if_mn.c projects/mtree/sys/dev/mps/mps_sas.c projects/mtree/sys/dev/mps/mps_user.c projects/mtree/sys/dev/mpt/mpt.c projects/mtree/sys/dev/mpt/mpt.h projects/mtree/sys/dev/mpt/mpt_cam.c projects/mtree/sys/dev/mpt/mpt_debug.c projects/mtree/sys/dev/mpt/mpt_pci.c projects/mtree/sys/dev/mpt/mpt_raid.c projects/mtree/sys/dev/msk/if_msk.c projects/mtree/sys/dev/mwl/if_mwl.c projects/mtree/sys/dev/mxge/if_mxge.c projects/mtree/sys/dev/my/if_my.c projects/mtree/sys/dev/nand/nandsim_swap.c projects/mtree/sys/dev/netmap/ixgbe_netmap.h projects/mtree/sys/dev/netmap/netmap.c projects/mtree/sys/dev/netmap/netmap_kern.h projects/mtree/sys/dev/netmap/netmap_mem2.c projects/mtree/sys/dev/nfe/if_nfe.c projects/mtree/sys/dev/nge/if_nge.c projects/mtree/sys/dev/null/null.c projects/mtree/sys/dev/nvd/nvd.c projects/mtree/sys/dev/nve/if_nve.c projects/mtree/sys/dev/nve/if_nvereg.h projects/mtree/sys/dev/nvme/nvme.c projects/mtree/sys/dev/nvme/nvme.h projects/mtree/sys/dev/nvme/nvme_ctrlr.c projects/mtree/sys/dev/nvme/nvme_ctrlr_cmd.c projects/mtree/sys/dev/nvme/nvme_ns.c projects/mtree/sys/dev/nvme/nvme_ns_cmd.c projects/mtree/sys/dev/nvme/nvme_private.h projects/mtree/sys/dev/nvme/nvme_qpair.c projects/mtree/sys/dev/nvme/nvme_sysctl.c projects/mtree/sys/dev/nvme/nvme_uio.c projects/mtree/sys/dev/nxge/if_nxge.c projects/mtree/sys/dev/nxge/xgehal/xgehal-device.c projects/mtree/sys/dev/oce/oce_if.c projects/mtree/sys/dev/patm/if_patm_intr.c projects/mtree/sys/dev/patm/if_patm_rx.c projects/mtree/sys/dev/patm/if_patm_tx.c projects/mtree/sys/dev/pci/pci.c projects/mtree/sys/dev/pci/pci_user.c projects/mtree/sys/dev/pci/pcireg.h projects/mtree/sys/dev/pcn/if_pcn.c projects/mtree/sys/dev/pdq/pdq_freebsd.h projects/mtree/sys/dev/pdq/pdq_ifsubr.c projects/mtree/sys/dev/pdq/pdqvar.h projects/mtree/sys/dev/puc/pucdata.c projects/mtree/sys/dev/qlxgb/qla_os.c projects/mtree/sys/dev/ral/rt2560.c projects/mtree/sys/dev/ral/rt2661.c projects/mtree/sys/dev/ral/rt2860.c projects/mtree/sys/dev/re/if_re.c projects/mtree/sys/dev/rt/if_rt.c projects/mtree/sys/dev/safe/safe.c projects/mtree/sys/dev/sbni/if_sbni.c projects/mtree/sys/dev/sdhci/sdhci.c projects/mtree/sys/dev/sdhci/sdhci.h projects/mtree/sys/dev/sf/if_sf.c projects/mtree/sys/dev/sfxge/sfxge_dma.c projects/mtree/sys/dev/sfxge/sfxge_tx.c projects/mtree/sys/dev/sge/if_sge.c projects/mtree/sys/dev/sio/sio_isa.c projects/mtree/sys/dev/sis/if_sis.c projects/mtree/sys/dev/sk/if_sk.c projects/mtree/sys/dev/smc/if_smc.c projects/mtree/sys/dev/sn/if_sn.c projects/mtree/sys/dev/snc/dp83932.c projects/mtree/sys/dev/snc/dp83932subr.c projects/mtree/sys/dev/snc/if_snc.c projects/mtree/sys/dev/snc/if_snc_cbus.c projects/mtree/sys/dev/sound/pci/emu10kx.c projects/mtree/sys/dev/sound/pci/hda/hdaa.c projects/mtree/sys/dev/sound/pci/hda/hdaa.h projects/mtree/sys/dev/sound/pci/hda/hdaa_patches.c projects/mtree/sys/dev/sound/pci/hda/hdac.c projects/mtree/sys/dev/sound/pci/hda/hdac.h projects/mtree/sys/dev/sound/pci/hda/hdacc.c projects/mtree/sys/dev/sound/pci/hdspe-pcm.c projects/mtree/sys/dev/sound/pci/hdspe.c projects/mtree/sys/dev/sound/pcm/buffer.c projects/mtree/sys/dev/sound/pcm/channel.c projects/mtree/sys/dev/sound/pcm/feeder_matrix.c projects/mtree/sys/dev/sound/pcm/matrix.h projects/mtree/sys/dev/sound/pcm/matrix_map.h projects/mtree/sys/dev/sound/pcm/mixer.h projects/mtree/sys/dev/sound/pcm/sound.c projects/mtree/sys/dev/sound/usb/uaudio.c projects/mtree/sys/dev/ste/if_ste.c projects/mtree/sys/dev/stge/if_stge.c projects/mtree/sys/dev/syscons/scvidctl.c projects/mtree/sys/dev/ti/if_ti.c projects/mtree/sys/dev/tl/if_tl.c projects/mtree/sys/dev/tsec/if_tsec.c projects/mtree/sys/dev/twa/tw_cl_misc.c projects/mtree/sys/dev/tws/tws.c projects/mtree/sys/dev/tws/tws.h projects/mtree/sys/dev/tws/tws_cam.c projects/mtree/sys/dev/tws/tws_hdm.h projects/mtree/sys/dev/tws/tws_user.c projects/mtree/sys/dev/tx/if_tx.c projects/mtree/sys/dev/txp/if_txp.c projects/mtree/sys/dev/uart/uart_bus_acpi.c projects/mtree/sys/dev/uart/uart_bus_isa.c projects/mtree/sys/dev/uart/uart_dev_pl011.c projects/mtree/sys/dev/ubsec/ubsec.c projects/mtree/sys/dev/usb/controller/at91dci.c projects/mtree/sys/dev/usb/controller/atmegadci.c projects/mtree/sys/dev/usb/controller/avr32dci.c projects/mtree/sys/dev/usb/controller/dwc_otg.c projects/mtree/sys/dev/usb/controller/dwc_otg.h projects/mtree/sys/dev/usb/controller/dwc_otgreg.h projects/mtree/sys/dev/usb/controller/ehci.c projects/mtree/sys/dev/usb/controller/ehci.h projects/mtree/sys/dev/usb/controller/musb_otg.c projects/mtree/sys/dev/usb/controller/ohci.c projects/mtree/sys/dev/usb/controller/uhci.c projects/mtree/sys/dev/usb/controller/usb_controller.c projects/mtree/sys/dev/usb/controller/uss820dci.c projects/mtree/sys/dev/usb/controller/xhci.c projects/mtree/sys/dev/usb/controller/xhci.h projects/mtree/sys/dev/usb/input/uhid.c projects/mtree/sys/dev/usb/input/ukbd.c projects/mtree/sys/dev/usb/misc/udbp.c projects/mtree/sys/dev/usb/net/if_axe.c projects/mtree/sys/dev/usb/net/if_cdce.c projects/mtree/sys/dev/usb/net/if_ipheth.c projects/mtree/sys/dev/usb/net/if_smsc.c projects/mtree/sys/dev/usb/net/if_udav.c projects/mtree/sys/dev/usb/net/if_usie.c projects/mtree/sys/dev/usb/net/uhso.c projects/mtree/sys/dev/usb/net/usb_ethernet.c projects/mtree/sys/dev/usb/quirk/usb_quirk.c projects/mtree/sys/dev/usb/quirk/usb_quirk.h projects/mtree/sys/dev/usb/serial/u3g.c projects/mtree/sys/dev/usb/serial/uchcom.c projects/mtree/sys/dev/usb/serial/uplcom.c projects/mtree/sys/dev/usb/serial/usb_serial.c projects/mtree/sys/dev/usb/serial/usb_serial.h projects/mtree/sys/dev/usb/storage/umass.c projects/mtree/sys/dev/usb/usb.h projects/mtree/sys/dev/usb/usb_debug.c projects/mtree/sys/dev/usb/usb_debug.h projects/mtree/sys/dev/usb/usb_dev.c projects/mtree/sys/dev/usb/usb_device.c projects/mtree/sys/dev/usb/usb_generic.c projects/mtree/sys/dev/usb/usb_hub.c projects/mtree/sys/dev/usb/usb_msctest.c projects/mtree/sys/dev/usb/usb_pf.c projects/mtree/sys/dev/usb/usb_process.c projects/mtree/sys/dev/usb/usb_request.c projects/mtree/sys/dev/usb/usbdevs projects/mtree/sys/dev/usb/wlan/if_rum.c projects/mtree/sys/dev/usb/wlan/if_run.c projects/mtree/sys/dev/usb/wlan/if_uath.c projects/mtree/sys/dev/usb/wlan/if_upgt.c projects/mtree/sys/dev/usb/wlan/if_ural.c projects/mtree/sys/dev/usb/wlan/if_urtw.c projects/mtree/sys/dev/usb/wlan/if_zyd.c projects/mtree/sys/dev/vge/if_vge.c projects/mtree/sys/dev/virtio/network/if_vtnet.c projects/mtree/sys/dev/virtio/virtio.c projects/mtree/sys/dev/virtio/virtio.h projects/mtree/sys/dev/virtio/virtqueue.c projects/mtree/sys/dev/vr/if_vr.c projects/mtree/sys/dev/vte/if_vte.c projects/mtree/sys/dev/vx/if_vx.c projects/mtree/sys/dev/vxge/vxge.c projects/mtree/sys/dev/wb/if_wb.c projects/mtree/sys/dev/wi/if_wi.c projects/mtree/sys/dev/wl/if_wl.c projects/mtree/sys/dev/wpi/if_wpi.c projects/mtree/sys/dev/wtap/if_wtap.c projects/mtree/sys/dev/wtap/plugins/visibility.c projects/mtree/sys/dev/xe/if_xe.c projects/mtree/sys/dev/xen/blkback/blkback.c projects/mtree/sys/dev/xen/netback/netback_unit_tests.c projects/mtree/sys/dev/xen/netfront/netfront.c projects/mtree/sys/dev/xl/if_xl.c projects/mtree/sys/fs/cd9660/cd9660_vfsops.c projects/mtree/sys/fs/coda/coda_subr.c projects/mtree/sys/fs/devfs/devfs_devs.c projects/mtree/sys/fs/devfs/devfs_vfsops.c projects/mtree/sys/fs/ext2fs/ext2_alloc.c projects/mtree/sys/fs/ext2fs/ext2_dinode.h projects/mtree/sys/fs/ext2fs/ext2_inode_cnv.c projects/mtree/sys/fs/ext2fs/ext2_vfsops.c projects/mtree/sys/fs/ext2fs/ext2fs.h projects/mtree/sys/fs/fdescfs/fdesc_vfsops.c projects/mtree/sys/fs/hpfs/hpfs_vfsops.c projects/mtree/sys/fs/msdosfs/msdosfs_denode.c projects/mtree/sys/fs/msdosfs/msdosfs_vfsops.c projects/mtree/sys/fs/nandfs/nandfs_subr.c projects/mtree/sys/fs/nandfs/nandfs_vfsops.c projects/mtree/sys/fs/nfs/nfs.h projects/mtree/sys/fs/nfs/nfs_commonkrpc.c projects/mtree/sys/fs/nfs/nfs_commonport.c projects/mtree/sys/fs/nfs/nfs_commonsubs.c projects/mtree/sys/fs/nfs/nfs_var.h projects/mtree/sys/fs/nfs/nfscl.h projects/mtree/sys/fs/nfs/nfsclstate.h projects/mtree/sys/fs/nfs/nfsm_subs.h projects/mtree/sys/fs/nfs/nfsport.h projects/mtree/sys/fs/nfs/nfsproto.h projects/mtree/sys/fs/nfsclient/nfs_clbio.c projects/mtree/sys/fs/nfsclient/nfs_clcomsubs.c projects/mtree/sys/fs/nfsclient/nfs_clkdtrace.c projects/mtree/sys/fs/nfsclient/nfs_clkrpc.c projects/mtree/sys/fs/nfsclient/nfs_clnode.c projects/mtree/sys/fs/nfsclient/nfs_clport.c projects/mtree/sys/fs/nfsclient/nfs_clrpcops.c projects/mtree/sys/fs/nfsclient/nfs_clstate.c projects/mtree/sys/fs/nfsclient/nfs_clvfsops.c projects/mtree/sys/fs/nfsclient/nfs_clvnops.c projects/mtree/sys/fs/nfsclient/nfsmount.h projects/mtree/sys/fs/nfsclient/nfsnode.h projects/mtree/sys/fs/nfsserver/nfs_nfsdcache.c projects/mtree/sys/fs/nfsserver/nfs_nfsdkrpc.c projects/mtree/sys/fs/nfsserver/nfs_nfsdport.c projects/mtree/sys/fs/nfsserver/nfs_nfsdstate.c projects/mtree/sys/fs/ntfs/ntfs_subr.c projects/mtree/sys/fs/ntfs/ntfs_vfsops.c projects/mtree/sys/fs/ntfs/ntfs_vnops.c projects/mtree/sys/fs/nullfs/null_subr.c projects/mtree/sys/fs/nullfs/null_vfsops.c projects/mtree/sys/fs/nullfs/null_vnops.c projects/mtree/sys/fs/procfs/procfs_map.c projects/mtree/sys/fs/pseudofs/pseudofs.c projects/mtree/sys/fs/smbfs/smbfs.h projects/mtree/sys/fs/smbfs/smbfs_io.c projects/mtree/sys/fs/smbfs/smbfs_node.c projects/mtree/sys/fs/smbfs/smbfs_node.h projects/mtree/sys/fs/smbfs/smbfs_smb.c projects/mtree/sys/fs/smbfs/smbfs_subr.c projects/mtree/sys/fs/smbfs/smbfs_subr.h projects/mtree/sys/fs/smbfs/smbfs_vfsops.c projects/mtree/sys/fs/smbfs/smbfs_vnops.c projects/mtree/sys/fs/tmpfs/tmpfs_vfsops.c projects/mtree/sys/fs/udf/udf_vfsops.c projects/mtree/sys/fs/unionfs/union_subr.c projects/mtree/sys/fs/unionfs/union_vfsops.c projects/mtree/sys/fs/unionfs/union_vnops.c projects/mtree/sys/geom/bde/g_bde.c projects/mtree/sys/geom/cache/g_cache.c projects/mtree/sys/geom/geom.h projects/mtree/sys/geom/geom_aes.c projects/mtree/sys/geom/geom_dev.c projects/mtree/sys/geom/geom_disk.c projects/mtree/sys/geom/geom_disk.h projects/mtree/sys/geom/geom_mbr.c projects/mtree/sys/geom/geom_slice.c projects/mtree/sys/geom/geom_slice.h projects/mtree/sys/geom/geom_vfs.c projects/mtree/sys/geom/journal/g_journal.c projects/mtree/sys/geom/label/g_label.c projects/mtree/sys/geom/label/g_label_ufs.c projects/mtree/sys/geom/mountver/g_mountver.c projects/mtree/sys/geom/multipath/g_multipath.c projects/mtree/sys/geom/nop/g_nop.c projects/mtree/sys/geom/part/g_part.c projects/mtree/sys/geom/raid/g_raid.c projects/mtree/sys/geom/raid/g_raid.h projects/mtree/sys/geom/raid/g_raid_ctl.c projects/mtree/sys/geom/raid/md_ddf.c projects/mtree/sys/geom/raid/md_intel.c projects/mtree/sys/geom/raid/md_jmicron.c projects/mtree/sys/geom/raid/md_nvidia.c projects/mtree/sys/geom/raid/md_promise.c projects/mtree/sys/geom/raid/md_sii.c projects/mtree/sys/geom/raid/tr_concat.c projects/mtree/sys/geom/raid/tr_raid0.c projects/mtree/sys/geom/raid/tr_raid1.c projects/mtree/sys/geom/raid/tr_raid1e.c projects/mtree/sys/geom/sched/g_sched.c projects/mtree/sys/gnu/fs/reiserfs/reiserfs_inode.c projects/mtree/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/mtree/sys/gnu/fs/xfs/FreeBSD/xfs_compat.h projects/mtree/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd.h projects/mtree/sys/i386/bios/smapi.c projects/mtree/sys/i386/conf/GENERIC projects/mtree/sys/i386/i386/db_trace.c projects/mtree/sys/i386/i386/identcpu.c projects/mtree/sys/i386/i386/machdep.c projects/mtree/sys/i386/i386/mp_machdep.c projects/mtree/sys/i386/i386/pmap.c projects/mtree/sys/i386/i386/trap.c projects/mtree/sys/i386/ibcs2/ibcs2_misc.c projects/mtree/sys/i386/ibcs2/imgact_coff.c projects/mtree/sys/i386/include/atomic.h projects/mtree/sys/i386/include/bus.h projects/mtree/sys/i386/include/intr_machdep.h projects/mtree/sys/i386/include/pc/bios.h projects/mtree/sys/i386/include/vmparam.h projects/mtree/sys/i386/pci/pci_cfgreg.c projects/mtree/sys/i386/xen/clock.c projects/mtree/sys/i386/xen/mp_machdep.c projects/mtree/sys/i386/xen/pmap.c projects/mtree/sys/i386/xen/xen_machdep.c projects/mtree/sys/ia64/ia64/pmap.c projects/mtree/sys/ia64/ia64/uma_machdep.c projects/mtree/sys/ia64/include/pmap.h projects/mtree/sys/kern/Make.tags.inc projects/mtree/sys/kern/capabilities.conf projects/mtree/sys/kern/dtio_kdtrace.c projects/mtree/sys/kern/imgact_elf.c projects/mtree/sys/kern/init_main.c projects/mtree/sys/kern/init_sysent.c projects/mtree/sys/kern/kern_acct.c projects/mtree/sys/kern/kern_alq.c projects/mtree/sys/kern/kern_clocksource.c projects/mtree/sys/kern/kern_cons.c projects/mtree/sys/kern/kern_ctf.c projects/mtree/sys/kern/kern_descrip.c projects/mtree/sys/kern/kern_exec.c projects/mtree/sys/kern/kern_exit.c projects/mtree/sys/kern/kern_fork.c projects/mtree/sys/kern/kern_gzio.c projects/mtree/sys/kern/kern_intr.c projects/mtree/sys/kern/kern_jail.c projects/mtree/sys/kern/kern_ktr.c projects/mtree/sys/kern/kern_ktrace.c projects/mtree/sys/kern/kern_linker.c projects/mtree/sys/kern/kern_lock.c projects/mtree/sys/kern/kern_malloc.c projects/mtree/sys/kern/kern_mbuf.c projects/mtree/sys/kern/kern_mutex.c projects/mtree/sys/kern/kern_proc.c projects/mtree/sys/kern/kern_prot.c projects/mtree/sys/kern/kern_racct.c projects/mtree/sys/kern/kern_rctl.c projects/mtree/sys/kern/kern_rmlock.c projects/mtree/sys/kern/kern_rwlock.c projects/mtree/sys/kern/kern_shutdown.c projects/mtree/sys/kern/kern_sig.c projects/mtree/sys/kern/kern_switch.c projects/mtree/sys/kern/kern_thread.c projects/mtree/sys/kern/kern_time.c projects/mtree/sys/kern/kern_timeout.c projects/mtree/sys/kern/kern_umtx.c projects/mtree/sys/kern/link_elf.c projects/mtree/sys/kern/link_elf_obj.c projects/mtree/sys/kern/sched_4bsd.c projects/mtree/sys/kern/sched_ule.c projects/mtree/sys/kern/subr_bus.c projects/mtree/sys/kern/subr_lock.c projects/mtree/sys/kern/subr_mchain.c projects/mtree/sys/kern/subr_param.c projects/mtree/sys/kern/subr_smp.c projects/mtree/sys/kern/subr_taskqueue.c projects/mtree/sys/kern/subr_trap.c projects/mtree/sys/kern/subr_uio.c projects/mtree/sys/kern/sys_generic.c projects/mtree/sys/kern/sys_procdesc.c projects/mtree/sys/kern/sys_process.c projects/mtree/sys/kern/syscalls.c projects/mtree/sys/kern/syscalls.master projects/mtree/sys/kern/systrace_args.c projects/mtree/sys/kern/tty.c projects/mtree/sys/kern/tty_pts.c projects/mtree/sys/kern/tty_ttydisc.c projects/mtree/sys/kern/uipc_domain.c projects/mtree/sys/kern/uipc_mbuf.c projects/mtree/sys/kern/uipc_mbuf2.c projects/mtree/sys/kern/uipc_mqueue.c projects/mtree/sys/kern/uipc_sockbuf.c projects/mtree/sys/kern/uipc_socket.c projects/mtree/sys/kern/uipc_syscalls.c projects/mtree/sys/kern/uipc_usrreq.c projects/mtree/sys/kern/vfs_acl.c projects/mtree/sys/kern/vfs_aio.c projects/mtree/sys/kern/vfs_bio.c projects/mtree/sys/kern/vfs_cache.c projects/mtree/sys/kern/vfs_default.c projects/mtree/sys/kern/vfs_extattr.c projects/mtree/sys/kern/vfs_init.c projects/mtree/sys/kern/vfs_lookup.c projects/mtree/sys/kern/vfs_mount.c projects/mtree/sys/kern/vfs_mountroot.c projects/mtree/sys/kern/vfs_subr.c projects/mtree/sys/kern/vfs_syscalls.c projects/mtree/sys/kern/vfs_vnops.c projects/mtree/sys/kern/vnode_if.src projects/mtree/sys/libkern/strlcpy.c projects/mtree/sys/libkern/strlen.c projects/mtree/sys/mips/adm5120/if_admsw.c projects/mtree/sys/mips/atheros/files.ar71xx projects/mtree/sys/mips/atheros/if_arge.c projects/mtree/sys/mips/cavium/files.octeon1 projects/mtree/sys/mips/cavium/if_octm.c projects/mtree/sys/mips/cavium/octe/ethernet-common.c projects/mtree/sys/mips/cavium/octe/ethernet-mem.c projects/mtree/sys/mips/cavium/octe/ethernet-rgmii.c projects/mtree/sys/mips/cavium/octe/ethernet-rx.c projects/mtree/sys/mips/cavium/octe/ethernet-sgmii.c projects/mtree/sys/mips/cavium/octe/ethernet-tx.c projects/mtree/sys/mips/cavium/octe/ethernet-xaui.c projects/mtree/sys/mips/cavium/octe/ethernet.c projects/mtree/sys/mips/cavium/octeon_ebt3000_cf.c projects/mtree/sys/mips/cavium/octeon_machdep.c projects/mtree/sys/mips/cavium/octeon_pcmap_regs.h projects/mtree/sys/mips/cavium/octopci.c projects/mtree/sys/mips/cavium/uart_cpu_octeonusart.c projects/mtree/sys/mips/cavium/uart_dev_oct16550.c projects/mtree/sys/mips/cavium/usb/octusb.c projects/mtree/sys/mips/conf/AP91.hints projects/mtree/sys/mips/conf/AP93.hints projects/mtree/sys/mips/conf/AP96.hints projects/mtree/sys/mips/conf/AR71XX_BASE projects/mtree/sys/mips/conf/AR724X_BASE projects/mtree/sys/mips/conf/AR91XX_BASE projects/mtree/sys/mips/conf/OCTEON1 projects/mtree/sys/mips/conf/PB92 projects/mtree/sys/mips/conf/RSPRO.hints projects/mtree/sys/mips/conf/RT305X projects/mtree/sys/mips/idt/if_kr.c projects/mtree/sys/mips/include/cpufunc.h projects/mtree/sys/mips/include/pmap.h projects/mtree/sys/mips/include/tlb.h projects/mtree/sys/mips/mips/busdma_machdep.c projects/mtree/sys/mips/mips/pmap.c projects/mtree/sys/mips/mips/support.S projects/mtree/sys/mips/mips/tlb.c projects/mtree/sys/mips/mips/uma_machdep.c projects/mtree/sys/mips/nlm/dev/net/xlpge.c projects/mtree/sys/mips/rmi/dev/nlge/if_nlge.c projects/mtree/sys/mips/rmi/dev/xlr/rge.c projects/mtree/sys/mips/rmi/rootfs_list.txt projects/mtree/sys/mips/rmi/xlr_i2c.c projects/mtree/sys/mips/rt305x/files.rt305x projects/mtree/sys/modules/3dfx/Makefile projects/mtree/sys/modules/Makefile projects/mtree/sys/modules/acpi/acpi/Makefile projects/mtree/sys/modules/agp/Makefile projects/mtree/sys/modules/ath/Makefile projects/mtree/sys/modules/cmx/Makefile projects/mtree/sys/modules/drm/r128/Makefile projects/mtree/sys/modules/drm/radeon/Makefile projects/mtree/sys/modules/drm/via/Makefile projects/mtree/sys/modules/dtrace/Makefile projects/mtree/sys/modules/filemon/Makefile projects/mtree/sys/modules/iwn/Makefile projects/mtree/sys/modules/nxge/Makefile projects/mtree/sys/modules/sdhci/Makefile projects/mtree/sys/modules/ufs/Makefile projects/mtree/sys/modules/virtio/Makefile projects/mtree/sys/modules/zfs/Makefile projects/mtree/sys/net/bpf.c projects/mtree/sys/net/bpf.h projects/mtree/sys/net/bpf_buffer.c projects/mtree/sys/net/bpfdesc.h projects/mtree/sys/net/bridgestp.c projects/mtree/sys/net/ieee8023ad_lacp.c projects/mtree/sys/net/if.c projects/mtree/sys/net/if.h projects/mtree/sys/net/if_arcsubr.c projects/mtree/sys/net/if_atmsubr.c projects/mtree/sys/net/if_bridge.c projects/mtree/sys/net/if_clone.c projects/mtree/sys/net/if_clone.h projects/mtree/sys/net/if_disc.c projects/mtree/sys/net/if_edsc.c projects/mtree/sys/net/if_ef.c projects/mtree/sys/net/if_enc.c projects/mtree/sys/net/if_epair.c projects/mtree/sys/net/if_ethersubr.c projects/mtree/sys/net/if_faith.c projects/mtree/sys/net/if_fddisubr.c projects/mtree/sys/net/if_fwsubr.c projects/mtree/sys/net/if_gif.c projects/mtree/sys/net/if_gre.c projects/mtree/sys/net/if_iso88025subr.c projects/mtree/sys/net/if_lagg.c projects/mtree/sys/net/if_loop.c projects/mtree/sys/net/if_spppfr.c projects/mtree/sys/net/if_spppsubr.c projects/mtree/sys/net/if_stf.c projects/mtree/sys/net/if_tap.c projects/mtree/sys/net/if_tun.c projects/mtree/sys/net/if_var.h projects/mtree/sys/net/if_vlan.c projects/mtree/sys/net/netmap_user.h projects/mtree/sys/net/pfil.c projects/mtree/sys/net/pfil.h projects/mtree/sys/net/rtsock.c projects/mtree/sys/net80211/ieee80211.c projects/mtree/sys/net80211/ieee80211_adhoc.c projects/mtree/sys/net80211/ieee80211_freebsd.c projects/mtree/sys/net80211/ieee80211_freebsd.h projects/mtree/sys/net80211/ieee80211_hostap.c projects/mtree/sys/net80211/ieee80211_hostap.h projects/mtree/sys/net80211/ieee80211_ht.c projects/mtree/sys/net80211/ieee80211_hwmp.c projects/mtree/sys/net80211/ieee80211_input.c projects/mtree/sys/net80211/ieee80211_mesh.c projects/mtree/sys/net80211/ieee80211_output.c projects/mtree/sys/net80211/ieee80211_power.c projects/mtree/sys/net80211/ieee80211_power.h projects/mtree/sys/net80211/ieee80211_proto.c projects/mtree/sys/net80211/ieee80211_regdomain.h projects/mtree/sys/net80211/ieee80211_scan.c projects/mtree/sys/net80211/ieee80211_sta.c projects/mtree/sys/net80211/ieee80211_sta.h projects/mtree/sys/net80211/ieee80211_superg.c projects/mtree/sys/net80211/ieee80211_superg.h projects/mtree/sys/net80211/ieee80211_var.h projects/mtree/sys/net80211/ieee80211_wds.c projects/mtree/sys/netatalk/aarp.c projects/mtree/sys/netatalk/ddp_output.c projects/mtree/sys/netgraph/atm/ccatm/ng_ccatm.c projects/mtree/sys/netgraph/atm/ng_atm.c projects/mtree/sys/netgraph/atm/sscfu/ng_sscfu.c projects/mtree/sys/netgraph/atm/sscop/ng_sscop.c projects/mtree/sys/netgraph/atm/uni/ng_uni.c projects/mtree/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c projects/mtree/sys/netgraph/bluetooth/drivers/h4/ng_h4.c projects/mtree/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/mtree/sys/netgraph/bluetooth/hci/ng_hci_cmds.c projects/mtree/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/mtree/sys/netgraph/bluetooth/hci/ng_hci_misc.c projects/mtree/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/mtree/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h projects/mtree/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/mtree/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/mtree/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/mtree/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/mtree/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/mtree/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c projects/mtree/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c projects/mtree/sys/netgraph/netflow/netflow.c projects/mtree/sys/netgraph/netflow/netflow_v9.c projects/mtree/sys/netgraph/netflow/ng_netflow.c projects/mtree/sys/netgraph/netflow/ng_netflow.h projects/mtree/sys/netgraph/ng_UI.c projects/mtree/sys/netgraph/ng_atmllc.c projects/mtree/sys/netgraph/ng_base.c projects/mtree/sys/netgraph/ng_bridge.c projects/mtree/sys/netgraph/ng_cisco.c projects/mtree/sys/netgraph/ng_deflate.c projects/mtree/sys/netgraph/ng_device.c projects/mtree/sys/netgraph/ng_eiface.c projects/mtree/sys/netgraph/ng_ether.c projects/mtree/sys/netgraph/ng_fec.c projects/mtree/sys/netgraph/ng_frame_relay.c projects/mtree/sys/netgraph/ng_gif.c projects/mtree/sys/netgraph/ng_gif_demux.c projects/mtree/sys/netgraph/ng_hub.c projects/mtree/sys/netgraph/ng_iface.c projects/mtree/sys/netgraph/ng_ipfw.c projects/mtree/sys/netgraph/ng_ksocket.c projects/mtree/sys/netgraph/ng_l2tp.c projects/mtree/sys/netgraph/ng_lmi.c projects/mtree/sys/netgraph/ng_mppc.c projects/mtree/sys/netgraph/ng_nat.c projects/mtree/sys/netgraph/ng_one2many.c projects/mtree/sys/netgraph/ng_ppp.c projects/mtree/sys/netgraph/ng_pppoe.c projects/mtree/sys/netgraph/ng_pptpgre.c projects/mtree/sys/netgraph/ng_pred1.c projects/mtree/sys/netgraph/ng_rfc1490.c projects/mtree/sys/netgraph/ng_source.c projects/mtree/sys/netgraph/ng_tee.c projects/mtree/sys/netgraph/ng_tty.c projects/mtree/sys/netgraph/ng_vjc.c projects/mtree/sys/netgraph/ng_vlan.c projects/mtree/sys/netinet/if_ether.c projects/mtree/sys/netinet/igmp.c projects/mtree/sys/netinet/in.h projects/mtree/sys/netinet/in_gif.c projects/mtree/sys/netinet/in_pcb.c projects/mtree/sys/netinet/in_pcb.h projects/mtree/sys/netinet/in_rmx.c projects/mtree/sys/netinet/in_var.h projects/mtree/sys/netinet/ip_carp.c projects/mtree/sys/netinet/ip_divert.c projects/mtree/sys/netinet/ip_fastfwd.c projects/mtree/sys/netinet/ip_gre.c projects/mtree/sys/netinet/ip_icmp.c projects/mtree/sys/netinet/ip_input.c projects/mtree/sys/netinet/ip_ipsec.c projects/mtree/sys/netinet/ip_mroute.c projects/mtree/sys/netinet/ip_options.c projects/mtree/sys/netinet/ip_options.h projects/mtree/sys/netinet/ip_output.c projects/mtree/sys/netinet/ip_var.h projects/mtree/sys/netinet/libalias/alias.c projects/mtree/sys/netinet/libalias/alias_proxy.c projects/mtree/sys/netinet/raw_ip.c projects/mtree/sys/netinet/sctp_asconf.c projects/mtree/sys/netinet/sctp_auth.c projects/mtree/sys/netinet/sctp_constants.h projects/mtree/sys/netinet/sctp_indata.c projects/mtree/sys/netinet/sctp_input.c projects/mtree/sys/netinet/sctp_output.c projects/mtree/sys/netinet/sctp_output.h projects/mtree/sys/netinet/sctp_pcb.c projects/mtree/sys/netinet/sctp_pcb.h projects/mtree/sys/netinet/sctp_peeloff.c projects/mtree/sys/netinet/sctp_peeloff.h projects/mtree/sys/netinet/sctp_structs.h projects/mtree/sys/netinet/sctp_sysctl.c projects/mtree/sys/netinet/sctp_timer.c projects/mtree/sys/netinet/sctp_uio.h projects/mtree/sys/netinet/sctp_usrreq.c projects/mtree/sys/netinet/sctp_var.h projects/mtree/sys/netinet/sctputil.c projects/mtree/sys/netinet/sctputil.h projects/mtree/sys/netinet/siftr.c projects/mtree/sys/netinet/tcp_debug.c projects/mtree/sys/netinet/tcp_hostcache.c projects/mtree/sys/netinet/tcp_input.c projects/mtree/sys/netinet/tcp_output.c projects/mtree/sys/netinet/tcp_reass.c projects/mtree/sys/netinet/tcp_subr.c projects/mtree/sys/netinet/tcp_syncache.c projects/mtree/sys/netinet/tcp_syncache.h projects/mtree/sys/netinet/tcp_timer.c projects/mtree/sys/netinet/tcp_timer.h projects/mtree/sys/netinet/tcp_timewait.c projects/mtree/sys/netinet/tcp_usrreq.c projects/mtree/sys/netinet/tcp_var.h projects/mtree/sys/netinet/udp_usrreq.c projects/mtree/sys/netinet6/frag6.c projects/mtree/sys/netinet6/icmp6.c projects/mtree/sys/netinet6/in6.c projects/mtree/sys/netinet6/in6.h projects/mtree/sys/netinet6/in6_gif.c projects/mtree/sys/netinet6/in6_gif.h projects/mtree/sys/netinet6/in6_ifattach.h projects/mtree/sys/netinet6/in6_pcb.h projects/mtree/sys/netinet6/in6_rmx.c projects/mtree/sys/netinet6/in6_src.c projects/mtree/sys/netinet6/in6_var.h projects/mtree/sys/netinet6/ip6_forward.c projects/mtree/sys/netinet6/ip6_input.c projects/mtree/sys/netinet6/ip6_ipsec.c projects/mtree/sys/netinet6/ip6_mroute.c projects/mtree/sys/netinet6/ip6_output.c projects/mtree/sys/netinet6/ip6_var.h projects/mtree/sys/netinet6/ip6protosw.h projects/mtree/sys/netinet6/mld6.c projects/mtree/sys/netinet6/nd6.c projects/mtree/sys/netinet6/nd6.h projects/mtree/sys/netinet6/nd6_nbr.c projects/mtree/sys/netinet6/nd6_rtr.c projects/mtree/sys/netinet6/pim6_var.h projects/mtree/sys/netinet6/raw_ip6.c projects/mtree/sys/netinet6/scope6.c projects/mtree/sys/netinet6/scope6_var.h projects/mtree/sys/netinet6/sctp6_usrreq.c projects/mtree/sys/netinet6/sctp6_var.h projects/mtree/sys/netinet6/tcp6_var.h projects/mtree/sys/netinet6/udp6_usrreq.c projects/mtree/sys/netipsec/ipsec.c projects/mtree/sys/netipsec/ipsec_input.c projects/mtree/sys/netipsec/ipsec_mbuf.c projects/mtree/sys/netipsec/ipsec_output.c projects/mtree/sys/netipsec/key.c projects/mtree/sys/netipsec/keysock.c projects/mtree/sys/netipsec/xform_ah.c projects/mtree/sys/netipsec/xform_ipip.c projects/mtree/sys/netipx/ipx_outputfl.c projects/mtree/sys/netipx/ipx_usrreq.c projects/mtree/sys/netipx/spx_reass.c projects/mtree/sys/netipx/spx_usrreq.c projects/mtree/sys/netnatm/natm.c projects/mtree/sys/netncp/ncp_sock.c projects/mtree/sys/netpfil/ipfw/ip_dn_glue.c projects/mtree/sys/netpfil/ipfw/ip_dn_io.c projects/mtree/sys/netpfil/ipfw/ip_fw2.c projects/mtree/sys/netpfil/ipfw/ip_fw_dynamic.c projects/mtree/sys/netpfil/ipfw/ip_fw_log.c projects/mtree/sys/netpfil/ipfw/ip_fw_nat.c projects/mtree/sys/netpfil/ipfw/ip_fw_pfil.c projects/mtree/sys/netpfil/ipfw/ip_fw_private.h projects/mtree/sys/netpfil/ipfw/ip_fw_sockopt.c projects/mtree/sys/netpfil/pf/if_pflog.c projects/mtree/sys/netpfil/pf/if_pfsync.c projects/mtree/sys/netpfil/pf/pf.c projects/mtree/sys/netpfil/pf/pf_ioctl.c projects/mtree/sys/netpfil/pf/pf_table.c projects/mtree/sys/netsmb/smb_conn.c projects/mtree/sys/netsmb/smb_dev.c projects/mtree/sys/netsmb/smb_iod.c projects/mtree/sys/netsmb/smb_rq.c projects/mtree/sys/netsmb/smb_trantcp.c projects/mtree/sys/netsmb/smb_usr.c projects/mtree/sys/nfs/krpc_subr.c projects/mtree/sys/nfs/nfs_common.c projects/mtree/sys/nfs/nfs_nfssvc.c projects/mtree/sys/nfs/nfssvc.h projects/mtree/sys/nfsclient/nfs_krpc.c projects/mtree/sys/nfsclient/nfs_node.c projects/mtree/sys/nfsclient/nfs_subs.c projects/mtree/sys/nfsclient/nfs_vfsops.c projects/mtree/sys/nfsclient/nfsargs.h projects/mtree/sys/nfsserver/nfs.h projects/mtree/sys/nfsserver/nfs_fha.c projects/mtree/sys/nfsserver/nfs_serv.c projects/mtree/sys/nfsserver/nfs_srvkrpc.c projects/mtree/sys/nfsserver/nfs_srvsubs.c projects/mtree/sys/nlm/nlm_prot_impl.c projects/mtree/sys/ofed/drivers/infiniband/core/cma.c projects/mtree/sys/ofed/drivers/infiniband/core/ud_header.c projects/mtree/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c projects/mtree/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/mtree/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c projects/mtree/sys/ofed/drivers/infiniband/ulp/sdp/sdp_bcopy.c projects/mtree/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/mtree/sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c projects/mtree/sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c projects/mtree/sys/ofed/drivers/net/mlx4/en_netdev.c projects/mtree/sys/ofed/drivers/net/mlx4/en_rx.c projects/mtree/sys/ofed/drivers/net/mlx4/en_tx.c projects/mtree/sys/ofed/include/linux/cdev.h projects/mtree/sys/ofed/include/linux/pci.h projects/mtree/sys/ofed/include/rdma/ib_addr.h projects/mtree/sys/pc98/include/bus.h projects/mtree/sys/pc98/pc98/machdep.c projects/mtree/sys/pci/if_rl.c projects/mtree/sys/powerpc/aim/locore32.S projects/mtree/sys/powerpc/aim/locore64.S projects/mtree/sys/powerpc/aim/mmu_oea.c projects/mtree/sys/powerpc/aim/mmu_oea64.c projects/mtree/sys/powerpc/aim/slb.c projects/mtree/sys/powerpc/aim/trap.c projects/mtree/sys/powerpc/aim/trap_subr32.S projects/mtree/sys/powerpc/aim/trap_subr64.S projects/mtree/sys/powerpc/aim/uma_machdep.c projects/mtree/sys/powerpc/booke/locore.S projects/mtree/sys/powerpc/booke/machdep.c projects/mtree/sys/powerpc/booke/platform_bare.c projects/mtree/sys/powerpc/booke/pmap.c projects/mtree/sys/powerpc/conf/GENERIC projects/mtree/sys/powerpc/conf/NOTES projects/mtree/sys/powerpc/include/bat.h projects/mtree/sys/powerpc/include/cpu.h projects/mtree/sys/powerpc/include/pcb.h projects/mtree/sys/powerpc/ofw/ofw_real.c projects/mtree/sys/powerpc/powermac/openpic_macio.c projects/mtree/sys/powerpc/ps3/if_glc.c projects/mtree/sys/powerpc/wii/platform_wii.c projects/mtree/sys/powerpc/wii/wii_ipcreg.h projects/mtree/sys/rpc/auth.h projects/mtree/sys/rpc/clnt.h projects/mtree/sys/rpc/clnt_dg.c projects/mtree/sys/rpc/clnt_rc.c projects/mtree/sys/rpc/clnt_vc.c projects/mtree/sys/rpc/rpc_generic.c projects/mtree/sys/rpc/rpcb_clnt.c projects/mtree/sys/rpc/rpcm_subs.h projects/mtree/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c projects/mtree/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/mtree/sys/rpc/svc.c projects/mtree/sys/rpc/svc.h projects/mtree/sys/rpc/svc_dg.c projects/mtree/sys/rpc/svc_vc.c projects/mtree/sys/security/audit/audit.c projects/mtree/sys/security/audit/audit.h projects/mtree/sys/security/audit/audit_arg.c projects/mtree/sys/security/audit/audit_bsm.c projects/mtree/sys/security/audit/audit_bsm_errno.c projects/mtree/sys/security/audit/audit_bsm_klib.c projects/mtree/sys/security/audit/audit_bsm_token.c projects/mtree/sys/security/audit/audit_private.h projects/mtree/sys/security/audit/audit_syscalls.c projects/mtree/sys/security/audit/audit_worker.c projects/mtree/sys/security/mac/mac_process.c projects/mtree/sys/security/mac/mac_syscalls.c projects/mtree/sys/sparc64/include/atomic.h projects/mtree/sys/sparc64/include/intr_machdep.h projects/mtree/sys/sparc64/include/ktr.h projects/mtree/sys/sparc64/include/pmap.h projects/mtree/sys/sparc64/pci/fire.c projects/mtree/sys/sparc64/pci/psycho.c projects/mtree/sys/sparc64/pci/schizo.c projects/mtree/sys/sparc64/sparc64/interrupt.S projects/mtree/sys/sparc64/sparc64/intr_machdep.c projects/mtree/sys/sparc64/sparc64/machdep.c projects/mtree/sys/sparc64/sparc64/pmap.c projects/mtree/sys/sparc64/sparc64/tick.c projects/mtree/sys/sparc64/sparc64/vm_machdep.c projects/mtree/sys/sys/_mutex.h projects/mtree/sys/sys/_rwlock.h projects/mtree/sys/sys/buf.h projects/mtree/sys/sys/buf_ring.h projects/mtree/sys/sys/bufobj.h projects/mtree/sys/sys/capability.h projects/mtree/sys/sys/cdefs.h projects/mtree/sys/sys/conf.h projects/mtree/sys/sys/eventhandler.h projects/mtree/sys/sys/ipc.h projects/mtree/sys/sys/kernel.h projects/mtree/sys/sys/ktr.h projects/mtree/sys/sys/lock.h projects/mtree/sys/sys/mbuf.h projects/mtree/sys/sys/mount.h projects/mtree/sys/sys/mutex.h projects/mtree/sys/sys/namei.h projects/mtree/sys/sys/param.h projects/mtree/sys/sys/pmc.h projects/mtree/sys/sys/proc.h projects/mtree/sys/sys/protosw.h projects/mtree/sys/sys/racct.h projects/mtree/sys/sys/rctl.h projects/mtree/sys/sys/resource.h projects/mtree/sys/sys/rwlock.h projects/mtree/sys/sys/sched.h projects/mtree/sys/sys/smp.h projects/mtree/sys/sys/socketvar.h projects/mtree/sys/sys/syscall.h projects/mtree/sys/sys/syscall.mk projects/mtree/sys/sys/syscallsubr.h projects/mtree/sys/sys/sysproto.h projects/mtree/sys/sys/systm.h projects/mtree/sys/sys/tty.h projects/mtree/sys/sys/vmmeter.h projects/mtree/sys/sys/vnode.h projects/mtree/sys/sys/wait.h projects/mtree/sys/ufs/ffs/ffs_alloc.c projects/mtree/sys/ufs/ffs/ffs_balloc.c projects/mtree/sys/ufs/ffs/ffs_extern.h projects/mtree/sys/ufs/ffs/ffs_snapshot.c projects/mtree/sys/ufs/ffs/ffs_softdep.c projects/mtree/sys/ufs/ffs/ffs_vfsops.c projects/mtree/sys/ufs/ffs/fs.h projects/mtree/sys/ufs/ufs/inode.h projects/mtree/sys/ufs/ufs/ufs_acl.c projects/mtree/sys/ufs/ufs/ufs_extattr.c projects/mtree/sys/ufs/ufs/ufs_lookup.c projects/mtree/sys/ufs/ufs/ufs_quota.c projects/mtree/sys/ufs/ufs/ufs_vnops.c projects/mtree/sys/ufs/ufs/ufsmount.h projects/mtree/sys/vm/device_pager.c projects/mtree/sys/vm/sg_pager.c projects/mtree/sys/vm/swap_pager.c projects/mtree/sys/vm/uma.h projects/mtree/sys/vm/uma_core.c projects/mtree/sys/vm/uma_int.h projects/mtree/sys/vm/vm_fault.c projects/mtree/sys/vm/vm_glue.c projects/mtree/sys/vm/vm_kern.c projects/mtree/sys/vm/vm_map.c projects/mtree/sys/vm/vm_meter.c projects/mtree/sys/vm/vm_mmap.c projects/mtree/sys/vm/vm_object.c projects/mtree/sys/vm/vm_object.h projects/mtree/sys/vm/vm_page.c projects/mtree/sys/vm/vm_page.h projects/mtree/sys/vm/vm_pageout.c projects/mtree/sys/vm/vm_phys.h projects/mtree/sys/vm/vnode_pager.c projects/mtree/sys/x86/bios/smbios.c projects/mtree/sys/x86/include/bus.h projects/mtree/sys/x86/include/specialreg.h projects/mtree/sys/x86/x86/intr_machdep.c projects/mtree/sys/x86/x86/io_apic.c projects/mtree/sys/xen/evtchn/evtchn.c projects/mtree/sys/xen/interface/foreign/mkheader.py projects/mtree/tools/build/make_check/Makefile projects/mtree/tools/build/mk/OptionalObsoleteFiles.inc projects/mtree/tools/debugscripts/dot.gdbinit projects/mtree/tools/regression/filemon/Makefile projects/mtree/tools/regression/lib/libc/nss/test-gethostby.c projects/mtree/tools/regression/lib/libc/resolv/resolv.c projects/mtree/tools/regression/lib/libc/stdio/test-perror.c projects/mtree/tools/regression/netinet/arphold/arphold.c projects/mtree/tools/regression/netinet/ip_id_period/ip_id_period.py projects/mtree/tools/regression/netinet/udpzerobyte/udpzerobyte.c projects/mtree/tools/regression/netipx/ipxdgramloopback/ipxdgramloopback.c projects/mtree/tools/regression/sockets/sblock/sblock.c projects/mtree/tools/regression/sockets/sigpipe/sigpipe.c projects/mtree/tools/regression/sockets/unix_cmsg/unix_cmsg.c projects/mtree/tools/regression/sockets/unix_seqpacket_exercise/unix_seqpacket_exercise.c projects/mtree/tools/regression/sockets/zerosend/zerosend.c projects/mtree/tools/regression/ufs/uprintf/ufs_uprintf.c projects/mtree/tools/test/hwpmc/pmctest.py projects/mtree/tools/test/ppsapi/Makefile projects/mtree/tools/test/ppsapi/README projects/mtree/tools/tools/cxgbetool/cxgbetool.c projects/mtree/tools/tools/netmap/pcap.c projects/mtree/tools/tools/sysdoc/Makefile projects/mtree/usr.bin/Makefile projects/mtree/usr.bin/Makefile.amd64 projects/mtree/usr.bin/Makefile.i386 projects/mtree/usr.bin/Makefile.ia64 projects/mtree/usr.bin/Makefile.powerpc projects/mtree/usr.bin/Makefile.sparc64 projects/mtree/usr.bin/ar/ar.h projects/mtree/usr.bin/at/parsetime.c projects/mtree/usr.bin/at/privs.h projects/mtree/usr.bin/bc/bc.y projects/mtree/usr.bin/calendar/calendar.1 projects/mtree/usr.bin/calendar/calendar.c projects/mtree/usr.bin/calendar/calendars/calendar.freebsd projects/mtree/usr.bin/calendar/calendars/calendar.history projects/mtree/usr.bin/calendar/dates.c projects/mtree/usr.bin/calendar/day.c projects/mtree/usr.bin/calendar/io.c projects/mtree/usr.bin/chat/chat.c projects/mtree/usr.bin/chpass/chpass.c projects/mtree/usr.bin/cksum/extern.h projects/mtree/usr.bin/clang/clang-tblgen/Makefile projects/mtree/usr.bin/clang/clang/Makefile projects/mtree/usr.bin/clang/llc/Makefile projects/mtree/usr.bin/clang/lli/Makefile projects/mtree/usr.bin/clang/llvm-mc/Makefile projects/mtree/usr.bin/clang/llvm-objdump/Makefile projects/mtree/usr.bin/clang/llvm-rtdyld/Makefile projects/mtree/usr.bin/clang/opt/Makefile projects/mtree/usr.bin/clang/tblgen/Makefile projects/mtree/usr.bin/csup/lister.c projects/mtree/usr.bin/csup/proto.c projects/mtree/usr.bin/ctlstat/ctlstat.c projects/mtree/usr.bin/cut/cut.1 projects/mtree/usr.bin/cut/cut.c projects/mtree/usr.bin/du/du.1 projects/mtree/usr.bin/elfdump/elfdump.c projects/mtree/usr.bin/fetch/fetch.c projects/mtree/usr.bin/find/find.1 projects/mtree/usr.bin/find/ls.c projects/mtree/usr.bin/find/main.c projects/mtree/usr.bin/finger/finger.c projects/mtree/usr.bin/gencat/gencat.c projects/mtree/usr.bin/getent/getent.c projects/mtree/usr.bin/grep/grep.c projects/mtree/usr.bin/grep/regex/xmalloc.c projects/mtree/usr.bin/gzip/zuncompress.c projects/mtree/usr.bin/kdump/kdump.c projects/mtree/usr.bin/kdump/mksubr projects/mtree/usr.bin/ktrdump/ktrdump.c projects/mtree/usr.bin/less/defines.h projects/mtree/usr.bin/less/zless.sh projects/mtree/usr.bin/locale/locale.1 projects/mtree/usr.bin/locale/locale.c projects/mtree/usr.bin/locate/locate/locate.c projects/mtree/usr.bin/lock/lock.c projects/mtree/usr.bin/logger/logger.c projects/mtree/usr.bin/m4/Makefile projects/mtree/usr.bin/m4/expr.c projects/mtree/usr.bin/m4/extern.h projects/mtree/usr.bin/m4/gnum4.c projects/mtree/usr.bin/m4/lib/ohash_init.3 projects/mtree/usr.bin/m4/m4.1 projects/mtree/usr.bin/m4/main.c projects/mtree/usr.bin/m4/parser.y projects/mtree/usr.bin/make/main.c projects/mtree/usr.bin/make/var.c projects/mtree/usr.bin/ministat/ministat.1 projects/mtree/usr.bin/ministat/ministat.c projects/mtree/usr.bin/mkcsmapper/Makefile.inc projects/mtree/usr.bin/mktemp/mktemp.1 projects/mtree/usr.bin/mktemp/mktemp.c projects/mtree/usr.bin/msgs/msgs.c projects/mtree/usr.bin/ncal/ncal.c projects/mtree/usr.bin/netstat/mbuf.c projects/mtree/usr.bin/netstat/route.c projects/mtree/usr.bin/nfsstat/nfsstat.1 projects/mtree/usr.bin/nfsstat/nfsstat.c projects/mtree/usr.bin/passwd/Makefile projects/mtree/usr.bin/pr/pr.1 projects/mtree/usr.bin/procstat/procstat.1 projects/mtree/usr.bin/rctl/rctl.8 projects/mtree/usr.bin/rlogin/rlogin.c projects/mtree/usr.bin/rpcgen/rpc_main.c projects/mtree/usr.bin/rpcgen/rpc_svcout.c projects/mtree/usr.bin/rpcgen/rpc_util.c projects/mtree/usr.bin/script/script.1 projects/mtree/usr.bin/script/script.c projects/mtree/usr.bin/seq/seq.1 projects/mtree/usr.bin/sort/Makefile projects/mtree/usr.bin/sort/bwstring.c projects/mtree/usr.bin/sort/bwstring.h projects/mtree/usr.bin/sort/coll.c projects/mtree/usr.bin/sort/coll.h projects/mtree/usr.bin/sort/file.c projects/mtree/usr.bin/sort/file.h projects/mtree/usr.bin/sort/radixsort.c projects/mtree/usr.bin/sort/sort.c projects/mtree/usr.bin/sort/sort.h projects/mtree/usr.bin/stat/stat.c projects/mtree/usr.bin/tftp/main.c projects/mtree/usr.bin/time/time.c projects/mtree/usr.bin/tip/tip/cu.1 projects/mtree/usr.bin/top/machine.c projects/mtree/usr.bin/tset/extern.h projects/mtree/usr.bin/tset/map.c projects/mtree/usr.bin/tset/term.c projects/mtree/usr.bin/unzip/unzip.1 projects/mtree/usr.bin/uuencode/uuencode.1 projects/mtree/usr.bin/w/extern.h projects/mtree/usr.bin/w/proc_compare.c projects/mtree/usr.bin/w/w.c projects/mtree/usr.bin/wall/wall.c projects/mtree/usr.bin/who/who.1 projects/mtree/usr.sbin/Makefile projects/mtree/usr.sbin/Makefile.amd64 projects/mtree/usr.sbin/Makefile.i386 projects/mtree/usr.sbin/Makefile.ia64 projects/mtree/usr.sbin/Makefile.powerpc projects/mtree/usr.sbin/Makefile.sparc64 projects/mtree/usr.sbin/acpi/acpidb/Makefile projects/mtree/usr.sbin/acpi/acpidump/acpi.c projects/mtree/usr.sbin/acpi/acpidump/acpi_user.c projects/mtree/usr.sbin/acpi/iasl/Makefile projects/mtree/usr.sbin/bluetooth/btpand/client.c projects/mtree/usr.sbin/bluetooth/btpand/server.c projects/mtree/usr.sbin/bluetooth/hcseriald/hcseriald.8 projects/mtree/usr.sbin/bluetooth/hcseriald/hcseriald.c projects/mtree/usr.sbin/bsdconfig/bsdconfig projects/mtree/usr.sbin/bsdconfig/bsdconfig.8 projects/mtree/usr.sbin/bsdconfig/console/console projects/mtree/usr.sbin/bsdconfig/console/font projects/mtree/usr.sbin/bsdconfig/console/keymap projects/mtree/usr.sbin/bsdconfig/console/repeat projects/mtree/usr.sbin/bsdconfig/console/saver projects/mtree/usr.sbin/bsdconfig/console/screenmap projects/mtree/usr.sbin/bsdconfig/console/ttys projects/mtree/usr.sbin/bsdconfig/diskmgmt/diskmgmt projects/mtree/usr.sbin/bsdconfig/docsinstall/docsinstall projects/mtree/usr.sbin/bsdconfig/dot/dot projects/mtree/usr.sbin/bsdconfig/include/Makefile projects/mtree/usr.sbin/bsdconfig/include/messages.subr projects/mtree/usr.sbin/bsdconfig/mouse/disable projects/mtree/usr.sbin/bsdconfig/mouse/enable projects/mtree/usr.sbin/bsdconfig/mouse/flags projects/mtree/usr.sbin/bsdconfig/mouse/mouse projects/mtree/usr.sbin/bsdconfig/mouse/port projects/mtree/usr.sbin/bsdconfig/mouse/type projects/mtree/usr.sbin/bsdconfig/networking/defaultrouter projects/mtree/usr.sbin/bsdconfig/networking/devices projects/mtree/usr.sbin/bsdconfig/networking/hostname projects/mtree/usr.sbin/bsdconfig/networking/include/Makefile projects/mtree/usr.sbin/bsdconfig/networking/include/messages.subr projects/mtree/usr.sbin/bsdconfig/networking/nameservers projects/mtree/usr.sbin/bsdconfig/networking/networking projects/mtree/usr.sbin/bsdconfig/networking/share/device.subr projects/mtree/usr.sbin/bsdconfig/networking/share/hostname.subr projects/mtree/usr.sbin/bsdconfig/networking/share/ipaddr.subr projects/mtree/usr.sbin/bsdconfig/networking/share/media.subr projects/mtree/usr.sbin/bsdconfig/networking/share/netmask.subr projects/mtree/usr.sbin/bsdconfig/networking/share/resolv.subr projects/mtree/usr.sbin/bsdconfig/networking/share/routing.subr projects/mtree/usr.sbin/bsdconfig/password/password projects/mtree/usr.sbin/bsdconfig/password/share/password.subr projects/mtree/usr.sbin/bsdconfig/security/include/Makefile projects/mtree/usr.sbin/bsdconfig/security/kern_securelevel projects/mtree/usr.sbin/bsdconfig/security/security projects/mtree/usr.sbin/bsdconfig/share/common.subr projects/mtree/usr.sbin/bsdconfig/share/dialog.subr projects/mtree/usr.sbin/bsdconfig/share/mustberoot.subr projects/mtree/usr.sbin/bsdconfig/share/strings.subr projects/mtree/usr.sbin/bsdconfig/share/sysrc.subr projects/mtree/usr.sbin/bsdconfig/startup/misc projects/mtree/usr.sbin/bsdconfig/startup/rcadd projects/mtree/usr.sbin/bsdconfig/startup/rcconf projects/mtree/usr.sbin/bsdconfig/startup/rcdelete projects/mtree/usr.sbin/bsdconfig/startup/rcedit projects/mtree/usr.sbin/bsdconfig/startup/rcvar projects/mtree/usr.sbin/bsdconfig/startup/share/rcconf.subr projects/mtree/usr.sbin/bsdconfig/startup/share/rcedit.subr projects/mtree/usr.sbin/bsdconfig/startup/startup projects/mtree/usr.sbin/bsdconfig/timezone/share/zones.subr projects/mtree/usr.sbin/bsdconfig/timezone/timezone projects/mtree/usr.sbin/bsdconfig/ttys/ttys projects/mtree/usr.sbin/bsdconfig/usermgmt/groupadd projects/mtree/usr.sbin/bsdconfig/usermgmt/groupdel projects/mtree/usr.sbin/bsdconfig/usermgmt/groupedit projects/mtree/usr.sbin/bsdconfig/usermgmt/groupinput projects/mtree/usr.sbin/bsdconfig/usermgmt/include/Makefile projects/mtree/usr.sbin/bsdconfig/usermgmt/share/group_input.subr projects/mtree/usr.sbin/bsdconfig/usermgmt/share/user_input.subr projects/mtree/usr.sbin/bsdconfig/usermgmt/useradd projects/mtree/usr.sbin/bsdconfig/usermgmt/userdel projects/mtree/usr.sbin/bsdconfig/usermgmt/useredit projects/mtree/usr.sbin/bsdconfig/usermgmt/userinput projects/mtree/usr.sbin/bsdconfig/usermgmt/usermgmt projects/mtree/usr.sbin/bsdinstall/bsdinstall projects/mtree/usr.sbin/bsdinstall/scripts/auto projects/mtree/usr.sbin/bsdinstall/scripts/mirrorselect projects/mtree/usr.sbin/chkgrp/chkgrp.8 projects/mtree/usr.sbin/chkgrp/chkgrp.c projects/mtree/usr.sbin/chroot/chroot.8 projects/mtree/usr.sbin/config/mkmakefile.c projects/mtree/usr.sbin/cpucontrol/cpucontrol.c projects/mtree/usr.sbin/cron/cron/cron.c projects/mtree/usr.sbin/cron/cron/cron.h projects/mtree/usr.sbin/cron/crontab/crontab.5 projects/mtree/usr.sbin/cron/lib/entry.c projects/mtree/usr.sbin/cron/lib/misc.c projects/mtree/usr.sbin/crunch/examples/Makefile projects/mtree/usr.sbin/crunch/examples/really-big.conf projects/mtree/usr.sbin/ctladm/ctladm.c projects/mtree/usr.sbin/ctladm/util.c projects/mtree/usr.sbin/diskinfo/diskinfo.c projects/mtree/usr.sbin/edquota/edquota.c projects/mtree/usr.sbin/fifolog/fifolog_create/fifolog.1 projects/mtree/usr.sbin/gpioctl/gpioctl.c projects/mtree/usr.sbin/ifmcstat/ifmcstat.c projects/mtree/usr.sbin/ip6addrctl/Makefile projects/mtree/usr.sbin/ip6addrctl/ip6addrctl.c projects/mtree/usr.sbin/jail/config.c projects/mtree/usr.sbin/kgmon/kgmon.c projects/mtree/usr.sbin/kldxref/ef.c projects/mtree/usr.sbin/lpr/common_source/common.c projects/mtree/usr.sbin/lpr/common_source/displayq.c projects/mtree/usr.sbin/lpr/common_source/lp.h projects/mtree/usr.sbin/lpr/common_source/net.c projects/mtree/usr.sbin/lpr/common_source/rmjob.c projects/mtree/usr.sbin/lpr/common_source/startdaemon.c projects/mtree/usr.sbin/lpr/filters/lpf.c projects/mtree/usr.sbin/lpr/lpc/cmds.c projects/mtree/usr.sbin/lpr/lpc/lpc.c projects/mtree/usr.sbin/lpr/lpc/movejobs.c projects/mtree/usr.sbin/lpr/lpd/printjob.c projects/mtree/usr.sbin/lpr/lpq/lpq.c projects/mtree/usr.sbin/lpr/lpr/lpr.c projects/mtree/usr.sbin/lpr/lprm/lprm.c projects/mtree/usr.sbin/makefs/ffs/ffs_alloc.c projects/mtree/usr.sbin/makefs/mtree.c projects/mtree/usr.sbin/memcontrol/memcontrol.c projects/mtree/usr.sbin/mergemaster/mergemaster.sh projects/mtree/usr.sbin/mfiutil/mfi_flash.c projects/mtree/usr.sbin/mfiutil/mfi_show.c projects/mtree/usr.sbin/mfiutil/mfiutil.c projects/mtree/usr.sbin/mfiutil/mfiutil.h projects/mtree/usr.sbin/mountd/exports.5 projects/mtree/usr.sbin/mountd/mountd.8 projects/mtree/usr.sbin/mountd/mountd.c projects/mtree/usr.sbin/moused/moused.8 projects/mtree/usr.sbin/moused/moused.c projects/mtree/usr.sbin/mtree/mtree.c projects/mtree/usr.sbin/ndiscvt/inf-parse.y projects/mtree/usr.sbin/ndiscvt/ndiscvt.c projects/mtree/usr.sbin/ndp/ndp.c projects/mtree/usr.sbin/newsyslog/newsyslog.c projects/mtree/usr.sbin/nfscbd/nfscbd.8 projects/mtree/usr.sbin/nfscbd/nfscbd.c projects/mtree/usr.sbin/nfsd/nfsd.8 projects/mtree/usr.sbin/nfsd/nfsd.c projects/mtree/usr.sbin/pciconf/cap.c projects/mtree/usr.sbin/pkg/Makefile projects/mtree/usr.sbin/pkg/elf_tables.h projects/mtree/usr.sbin/pkg/pkg.c projects/mtree/usr.sbin/pkg_install/add/main.c projects/mtree/usr.sbin/pkg_install/add/pkg_add.1 projects/mtree/usr.sbin/pkg_install/create/main.c projects/mtree/usr.sbin/pkg_install/create/pkg_create.1 projects/mtree/usr.sbin/pkg_install/delete/main.c projects/mtree/usr.sbin/pkg_install/delete/pkg_delete.1 projects/mtree/usr.sbin/pkg_install/info/main.c projects/mtree/usr.sbin/pkg_install/info/pkg_info.1 projects/mtree/usr.sbin/pkg_install/lib/Makefile projects/mtree/usr.sbin/pkg_install/lib/exec.c projects/mtree/usr.sbin/pkg_install/lib/lib.h projects/mtree/usr.sbin/pkg_install/updating/main.c projects/mtree/usr.sbin/pkg_install/updating/pkg_updating.1 projects/mtree/usr.sbin/pkg_install/version/main.c projects/mtree/usr.sbin/pkg_install/version/perform.c projects/mtree/usr.sbin/pkg_install/version/pkg_version.1 projects/mtree/usr.sbin/pmccontrol/pmccontrol.c projects/mtree/usr.sbin/pmcstat/pmcpl_calltree.c projects/mtree/usr.sbin/pmcstat/pmcstat.c projects/mtree/usr.sbin/pmcstat/pmcstat_log.c projects/mtree/usr.sbin/pmcstat/pmcstat_log.h projects/mtree/usr.sbin/portsnap/portsnap/portsnap.8 projects/mtree/usr.sbin/portsnap/portsnap/portsnap.sh projects/mtree/usr.sbin/ppp/README.changes projects/mtree/usr.sbin/ppp/defs.h projects/mtree/usr.sbin/ppp/lqr.c projects/mtree/usr.sbin/ppp/ppp.8.m4 projects/mtree/usr.sbin/ppp/radius.c projects/mtree/usr.sbin/pw/Makefile projects/mtree/usr.sbin/pw/bitmap.c projects/mtree/usr.sbin/pw/fileupd.c projects/mtree/usr.sbin/pw/grupd.c projects/mtree/usr.sbin/pw/pw.8 projects/mtree/usr.sbin/pw/pw.c projects/mtree/usr.sbin/pw/pw.h projects/mtree/usr.sbin/pw/pw_group.c projects/mtree/usr.sbin/pw/pw_log.c projects/mtree/usr.sbin/pw/pw_nis.c projects/mtree/usr.sbin/pw/pw_user.c projects/mtree/usr.sbin/pw/pw_vpw.c projects/mtree/usr.sbin/pw/pwupd.c projects/mtree/usr.sbin/pw/pwupd.h projects/mtree/usr.sbin/pw/rm_r.c projects/mtree/usr.sbin/quot/quot.c projects/mtree/usr.sbin/quotaon/quotaon.c projects/mtree/usr.sbin/repquota/repquota.c projects/mtree/usr.sbin/route6d/route6d.8 projects/mtree/usr.sbin/route6d/route6d.c projects/mtree/usr.sbin/rpcbind/util.c projects/mtree/usr.sbin/rtprio/rtprio.1 projects/mtree/usr.sbin/services_mkdb/Makefile projects/mtree/usr.sbin/services_mkdb/services_mkdb.c projects/mtree/usr.sbin/services_mkdb/uniq.c projects/mtree/usr.sbin/snapinfo/snapinfo.c projects/mtree/usr.sbin/syslogd/syslogd.c projects/mtree/usr.sbin/tcpdump/tcpdump/Makefile projects/mtree/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/mtree/usr.sbin/vidcontrol/vidcontrol.c projects/mtree/usr.sbin/watchdogd/Makefile projects/mtree/usr.sbin/watchdogd/watchdogd.c projects/mtree/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8 Directory Properties: projects/mtree/ (props changed) projects/mtree/cddl/contrib/opensolaris/ (props changed) projects/mtree/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/mtree/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/mtree/contrib/atf/ (props changed) projects/mtree/contrib/bind9/ (props changed) projects/mtree/contrib/binutils/ (props changed) projects/mtree/contrib/dialog/ (props changed) projects/mtree/contrib/dtc/ (props changed) projects/mtree/contrib/gcc/ (props changed) projects/mtree/contrib/gdb/ (props changed) projects/mtree/contrib/gdtoa/ (props changed) projects/mtree/contrib/groff/ (props changed) projects/mtree/contrib/less/ (props changed) projects/mtree/contrib/libc++/ (props changed) projects/mtree/contrib/libpcap/ (props changed) projects/mtree/contrib/libstdc++/ (props changed) projects/mtree/contrib/llvm/ (props changed) projects/mtree/contrib/llvm/tools/clang/ (props changed) projects/mtree/contrib/netcat/ (props changed) projects/mtree/contrib/ntp/ (props changed) projects/mtree/contrib/openbsm/ (props changed) projects/mtree/contrib/sendmail/ (props changed) projects/mtree/contrib/tcpdump/ (props changed) projects/mtree/contrib/top/ (props changed) projects/mtree/contrib/tzdata/ (props changed) projects/mtree/contrib/wpa/ (props changed) projects/mtree/crypto/heimdal/ (props changed) projects/mtree/crypto/openssl/ (props changed) projects/mtree/gnu/lib/ (props changed) projects/mtree/gnu/usr.bin/cc/cc_tools/ (props changed) projects/mtree/lib/libc/ (props changed) projects/mtree/lib/libutil/ (props changed) projects/mtree/sbin/ (props changed) projects/mtree/sbin/dumpon/ (props changed) projects/mtree/sbin/ipfw/ (props changed) projects/mtree/share/man/man4/ (props changed) projects/mtree/sys/ (props changed) projects/mtree/sys/boot/ (props changed) projects/mtree/sys/boot/i386/efi/ (props changed) projects/mtree/sys/boot/powerpc/boot1.chrp/ (props changed) projects/mtree/sys/boot/powerpc/ofw/ (props changed) projects/mtree/sys/cddl/contrib/opensolaris/ (props changed) projects/mtree/sys/conf/ (props changed) projects/mtree/sys/contrib/dev/acpica/ (props changed) projects/mtree/sys/contrib/dev/acpica/common/ (props changed) projects/mtree/sys/contrib/dev/acpica/common/ahpredef.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/ (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslanalyze.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslbtypes.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslcompiler.l (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslpredef.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype2.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/aslrestype2s.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/asluuid.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtcompiler.h (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtexpress.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtfield.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtparser.l (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtparser.y (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtsubtable.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/dtutils.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/preprocess.h (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/prexpress.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/prmacros.c (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/prparser.l (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/prparser.y (props changed) projects/mtree/sys/contrib/dev/acpica/compiler/prscan.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dsargs.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/dispatcher/dswload.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evglock.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evgpe.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evgpeblk.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evgpeinit.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evgpeutil.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evmisc.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evregion.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evsci.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evxface.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/events/evxfevnt.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/executer/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwesleep.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwsleep.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nspredef.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsrepair.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/namespace/nsrepair2.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/parser/pswalk.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsinfo.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsirq.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/resources/rsserial.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/tables/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utaddress.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utdecode.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/uteval.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utexcep.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utglobal.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utosi.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utxfinit.c (props changed) projects/mtree/sys/contrib/dev/acpica/components/utilities/utxfmutex.c (props changed) projects/mtree/sys/contrib/dev/acpica/include/ (props changed) projects/mtree/sys/contrib/dev/acpica/include/acbuffer.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/accommon.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acdebug.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acdispat.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acevents.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/achware.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acinterp.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acnamesp.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acoutput.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acparser.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acpi.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acpredef.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/acresrc.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/actables.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/actbl.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/actbl1.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/amlcode.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/platform/acfreebsd.h (props changed) projects/mtree/sys/contrib/dev/acpica/include/platform/acgcc.h (props changed) projects/mtree/sys/contrib/dev/acpica/os_specific/ (props changed) projects/mtree/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c (props changed) projects/mtree/sys/contrib/octeon-sdk/ (props changed) projects/mtree/usr.bin/calendar/ (props changed) projects/mtree/usr.bin/csup/ (props changed) projects/mtree/usr.bin/procstat/ (props changed) projects/mtree/usr.sbin/jail/ (props changed) projects/mtree/usr.sbin/ndiscvt/ (props changed) Modified: projects/mtree/MAINTAINERS ============================================================================== --- projects/mtree/MAINTAINERS Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/MAINTAINERS Mon Dec 10 20:10:20 2012 (r244094) @@ -21,7 +21,6 @@ It is not a registry of 'turf' or privat subsystem login notes ----------------------------- kqueue jmg Pre-commit review requested. -mergemaster dougb Prefers to pre-approve commits libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -75,8 +74,6 @@ drm rnoland Just keep me informed of ch unifdef(1) fanf Pre-commit review requested. ntp roberto Pre-commit review requested. inetd dwmalone Recommends pre-commit review. -nwfs bp In case of functional changes pre-commit review - requested. contrib/smbfs bp Open for in-tree committs. In case of functional changes pre-commit review requested. contrib/pf mlaier Pre-commit review requested. @@ -101,8 +98,6 @@ nfs alfred Will be happy to review code rpc.lockd alfred Will be happy to review code, but not mandatory. truss alfred Will be happy to review code, but not mandatory. rpc alfred Pre-commit review requested. -xfs kan@FreeBSD.org,rodrigc@FreeBSD.org,cattelan@xfs.org - Pre-commit review preferred. pkg_install portmgr Pre-commit review or approval from portmgr@ requested. linux emul emulation Please discuss changes here. bs{diff,patch} cperciva Pre-commit review requested. @@ -125,16 +120,7 @@ lib/libc/stdtime edwin Heads-up apprec is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com isci(4) jimharris Pre-commit review requested. - -Following are the entries from the Makefiles, and a few other sources. -Please remove stale entries from both their origin, and this file. - -Please also consider removing the lines from the files listed below and -stating your preferences here instead. - -List below generated with: -$ cd /usr/src; find */* -type f|xargs egrep 'MAINTAINER[ ]*=' - -sys/modules/3dfx/Makefile:MAINTAINER= cokane@FreeBSD.org -sys/modules/urio/Makefile:MAINTAINER= Iwasa Kazmi -tools/tools/sysdoc/Makefile:MAINTAINER= trhodes@FreeBSD.org +3dfx cokane Pre-commit review preferred. +cmx daniel@roe.ch Pre-commit review preferred. +filemon obrien Pre-commit review preferred. +sysdoc trhodes Pre-commit review preferred. Modified: projects/mtree/Makefile ============================================================================== --- projects/mtree/Makefile Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/Makefile Mon Dec 10 20:10:20 2012 (r244094) @@ -280,12 +280,14 @@ kernel: buildkernel installkernel # for building the world. # upgrade_checks: +.if !defined(.PARSEDIR) @if ! (cd ${.CURDIR}/tools/build/make_check && \ PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \ PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \ then \ (cd ${.CURDIR} && ${MAKE} make); \ fi +.endif # # Upgrade make(1) to the current version using the installed @@ -441,3 +443,6 @@ universe_epilogue: fi .endif .endif + +buildLINT: + ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT Modified: projects/mtree/Makefile.inc1 ============================================================================== --- projects/mtree/Makefile.inc1 Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/Makefile.inc1 Mon Dec 10 20:10:20 2012 (r244094) @@ -16,6 +16,8 @@ # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list # LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target +# LOCAL_MTREE="list of mtree files" to process to allow local directories +# to be created before files are installed # LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools # list # TARGET="machine" to crossbuild world for a different machine type @@ -295,9 +297,10 @@ LIB32CPUFLAGS= -march=i686 -mmmx -msse - LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ - MACHINE_CPU="i686 mmx sse sse2" \ - LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ - AS="${AS} --32" + MACHINE_CPU="i686 mmx sse sse2" +LIB32WMAKEFLAGS= \ + AS="${AS} --32" \ + LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" .elif ${TARGET_ARCH} == "powerpc64" .if empty(TARGET_CPUTYPE) @@ -305,7 +308,8 @@ LIB32CPUFLAGS= -mcpu=powerpc .else LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif -LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc \ +LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc +LIB32WMAKEFLAGS= \ LD="${LD} -m elf32ppc_fbsd" .endif @@ -322,16 +326,20 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ - CC="${CC} ${LIB32FLAGS}" \ - CXX="${CXX} ${LIB32FLAGS}" \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ COMPILER_TYPE=${WMAKE_COMPILER_TYPE} +LIB32WMAKEFLAGS+= \ + CC="${CC} ${LIB32FLAGS}" \ + CXX="${CXX} ${LIB32FLAGS}" \ + DESTDIR=${LIB32TMP} \ + -DCOMPAT_32BIT \ + -DNO_CPU_CFLAGS \ + -DNO_CTF \ + -DNO_LINT -LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ - -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ - -DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \ - DESTDIR=${LIB32TMP} +LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \ + -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO -DWITHOUT_HTML LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} -DNO_INCS .endif @@ -401,6 +409,9 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \ -p ${WORLDTMP}/usr/include >/dev/null .endif +.for _mtree in ${LOCAL_MTREE} + mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null +.endfor _legacy: @echo @echo "--------------------------------------------------------------" @@ -500,6 +511,8 @@ build32: .endfor .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic cd ${.CURDIR}/${_dir}; \ + WORLDTMP=${WORLDTMP} \ + MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \ -DEARLY_BUILD build-tools @@ -598,7 +611,7 @@ installcheck_DESTDIR: # # Check for missing UIDs/GIDs. # -CHECK_UIDS= +CHECK_UIDS= auditdistd CHECK_GIDS= audit .if ${MK_SENDMAIL} != "no" CHECK_UIDS+= smmsp @@ -718,7 +731,8 @@ reinstall: @echo "--------------------------------------------------------------" @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy + ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ + LOCAL_MTREE=${LOCAL_MTREE} hierarchy @echo @echo "--------------------------------------------------------------" @echo ">>> Installing everything" @@ -1126,7 +1140,7 @@ _aicasm= sys/modules/aic7xxx/aicasm _share= share/syscons/scrnmaps .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" _gcc_tools= gnu/usr.bin/cc/cc_tools .endif @@ -1188,7 +1202,7 @@ _clang= usr.bin/clang _clang_libs= lib/clang .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98") _cc= gnu/usr.bin/cc .endif @@ -1215,6 +1229,10 @@ cross-tools: # hierarchy hier: cd ${.CURDIR}/etc; ${MAKE} distrib-dirs +.for _mtree in ${LOCAL_MTREE} + mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/${_mtree} \ + -p ${DESTDIR}/ +.endfor # # libraries - build all libraries, and install them under ${DESTDIR}. @@ -1269,6 +1287,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ ${_kerberos5_lib_libwind} \ + ${_lib_atf_libatf_c} \ lib/libbz2 ${_libcom_err} lib/libcrypt \ lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ @@ -1281,6 +1300,10 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ ${_secure_lib_libssl} +.if ${MK_ATF} != "no" +_lib_atf_libatf_c= lib/atf/libatf-c +.endif + .if ${MK_LIBTHR} != "no" _lib_libthr= lib/libthr .endif @@ -1563,7 +1586,7 @@ check-old: check-old-files check-old-lib # showconfig - show build configuration. # showconfig: - @${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort + @${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort .if !empty(KRNLOBJDIR) && !empty(KERNCONF) DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ Modified: projects/mtree/ObsoleteFiles.inc ============================================================================== --- projects/mtree/ObsoleteFiles.inc Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/ObsoleteFiles.inc Mon Dec 10 20:10:20 2012 (r244094) @@ -38,6 +38,23 @@ # xargs -n1 | sort | uniq -d; # done +# 20121114: zpool-features manual page moved from section 5 to 7 +OLD_FILES+=usr/share/man/man5/zpool-features.5.gz +# 20121022: remove harp, hfa and idt man page +OLD_FILES+=share/man/man4/harp.4 +OLD_FILES+=share/man/man4/hfa.4 +OLD_FILES+=share/man/man4/idt.4 +# 20121022: VFS_LOCK_GIANT elimination +OLD_FILES+=usr/share/man/man9/VFS_LOCK_GIANT.9.gz +OLD_FILES+=usr/share/man/man9/VFS_UNLOCK_GIANT.9.gz +# 20121004: remove incomplete unwind.h +OLD_FILES+=usr/include/clang/3.2/unwind.h +# 20120910: NetBSD compat shims removed +OLD_FILES+=usr/include/cam/scsi/scsi_low_pisa.h +OLD_FILES+=usr/include/sys/device_port.h +# 20120909: doc and www supfiles removed +OLD_FILES+=usr/share/examples/cvsup/doc-supfile +OLD_FILES+=usr/share/examples/cvsup/www-supfile # 20120908: pf cleanup OLD_FILES+=usr/include/net/if_pflow.h # 20120816: new clang import which bumps version from 3.1 to 3.2 @@ -86,13 +103,19 @@ OLD_FILES+=usr/include/openssl/ui_locl.h OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz # 20120621: remove old man page OLD_FILES+=usr/share/man/man8/vnconfig.8.gz +# 20120619: TOE support updated +OLD_FILES+=usr/include/netinet/toedev.h # 20120613: auth.conf removed OLD_FILES+=etc/auth.conf OLD_FILES+=usr/share/examples/etc/auth.conf OLD_FILES+=usr/share/man/man3/auth.3.gz +OLD_FILES+=usr/share/man/man3/auth_getval.3.gz OLD_FILES+=usr/share/man/man5/auth.conf.5.gz # 20120530: kde pam lives now in ports OLD_FILES+=etc/pam.d/kde +# 20120521: byacc import +OLD_FILES+=usr/bin/yyfix +OLD_FILES+=usr/share/man/man1/yyfix.1.gz # 20120505: new clang import installed a redundant internal header OLD_FILES+=usr/include/clang/3.1/stdalign.h # 20120428: MD2 removed from libmd Modified: projects/mtree/UPDATING ============================================================================== --- projects/mtree/UPDATING Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/UPDATING Mon Dec 10 20:10:20 2012 (r244094) @@ -4,7 +4,9 @@ This file is maintained and copyrighted See end of file for further details. For commonly done items, please see the COMMON ITEMS: section later in the file. These instructions assume that you basically know what you are doing. If not, then please consult the FreeBSD -handbook. +handbook: + + http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html Items affecting the ports and packages system can be found in /usr/ports/UPDATING. Please read that file before running portupgrade. @@ -24,6 +26,97 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121201: + With the addition of auditdistd(8), a new auditdistd user is now + depended on during installworld. "mergemaster -p" can be used to add + the user prior to installworld, as documented in the handbook. + +20121117: + The sin6_scope_id member variable in struct sockaddr_in6 is now + filled by the kernel before passing the structure to the userland via + sysctl or routing socket. This means the KAME-specific embedded scope + id in sin6_addr.s6_addr[2] is always cleared in userland application. + This behavior can be controlled by net.inet6.ip6.deembed_scopeid. + __FreeBSD_version is bumped to 1000025. + +20121105: + On i386 and amd64 systems WITH_CLANG_IS_CC is now the default. + This means that the world and kernel will be compiled with clang + and that clang will be installed as /usr/bin/cc, /usr/bin/c++, + and /usr/bin/cpp. To disable this behavior and revert to building + with gcc, compile with WITHOUT_CLANG_IS_CC. + +20121102: + The IPFIREWALL_FORWARD kernel option has been removed. Its + functionality now turned on by default. + +20121023: + The ZERO_COPY_SOCKET kernel option has been removed and + split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP. + NB: SOCKET_SEND_COW uses the VM page based copy-on-write + mechanism which is not safe and may result in kernel crashes. + NB: The SOCKET_RECV_PFLIP mechanism is useless as no current + driver supports disposeable external page sized mbuf storage. + Proper replacements for both zero-copy mechanisms are under + consideration and will eventually lead to complete removal + of the two kernel options. + +20121023: + The IPv4 network stack has been converted to network byte + order. The following modules need to be recompiled together + with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4), + pf(4), ipfw(4), ng_ipfw(4), stf(4). + +20121022: + Support for non-MPSAFE filesystems was removed from VFS. The + VFS_VERSION was bumped, all filesystem modules shall be + recompiled. + +20121018: + All the non-MPSAFE filesystems have been disconnected from + the build. The full list includes: codafs, hpfs, ntfs, nwfs, + portalfs, smbfs, xfs. + +20121016: + The interface cloning API and ABI has changed. The following + modules need to be recompiled together with kernel: + ipfw(4), pfsync(4), pflog(4), usb(4), wlan(4), stf(4), + vlan(4), disc(4), edsc(4), if_bridge(4), gif(4), tap(4), + faith(4), epair(4), enc(4), tun(4), if_lagg(4), gre(4). + +20121015: + The sdhci driver was split in two parts: sdhci (generic SD Host + Controller logic) and sdhci_pci (actual hardware driver). + No kernel config modifications are required, but if you + load sdhc as a module you must switch to sdhci_pci instead. + +20121014: + Import the FUSE kernel and userland support into base system. + +20121013: + The GNU sort(1) program has been removed since the BSD-licensed + sort(1) has been the default for quite some time and no serious + problems have been reported. The corresponding WITH_GNU_SORT + knob has also gone. + +20121006: + The pfil(9) API/ABI for AF_INET family has been changed. Packet + filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled + with new kernel. + +20121001: + The net80211(4) ABI has been changed to allow for improved driver + PS-POLL and power-save support. All wireless drivers need to be + recompiled to work with the new kernel. + +20120913: + The random(4) support for the VIA hardware random number + generator (`PADLOCK') is no longer enabled unconditionally. + Add the PADLOCK_RNG option in the custom kernel config if + needed. The GENERIC kernels on i386 and amd64 do include the + option, so the change only affects the custom kernel + configurations. + 20120908: The pf(4) packet filter ABI has been changed. pfctl(8) and snmp_pf module need to be recompiled to work with new kernel. @@ -1523,7 +1616,7 @@ COMMON ITEMS: - To upgrade in-place from 8.x-stable to current + To upgrade in-place from stable to current ---------------------------------------------- make buildworld [9] Modified: projects/mtree/bin/date/extern.h ============================================================================== --- projects/mtree/bin/date/extern.h Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/date/extern.h Mon Dec 10 20:10:20 2012 (r244094) @@ -30,4 +30,6 @@ * $FreeBSD$ */ +extern int retval; + int netsettime(time_t); Modified: projects/mtree/bin/date/netdate.c ============================================================================== --- projects/mtree/bin/date/netdate.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/date/netdate.c Mon Dec 10 20:10:20 2012 (r244094) @@ -55,8 +55,6 @@ __FBSDID("$FreeBSD$"); #define WAITACK 2 /* seconds */ #define WAITDATEACK 5 /* seconds */ -extern int retval; - /* * Set the date in the machines controlled by timedaemons by communicating the * new date to the local timedaemon. If the timedaemon is in the master state, Modified: projects/mtree/bin/dd/conv_tab.c ============================================================================== --- projects/mtree/bin/dd/conv_tab.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/dd/conv_tab.c Mon Dec 10 20:10:20 2012 (r244094) @@ -41,6 +41,11 @@ __FBSDID("$FreeBSD$"); #include +#include + +#include "dd.h" +#include "extern.h" + /* * There are currently six tables: * Modified: projects/mtree/bin/df/df.1 ============================================================================== --- projects/mtree/bin/df/df.1 Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/df/df.1 Mon Dec 10 20:10:20 2012 (r244094) @@ -29,7 +29,7 @@ .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD$ .\" -.Dd March 3, 2012 +.Dd November 16, 2012 .Dt DF 1 .Os .Sh NAME @@ -50,7 +50,8 @@ displays statistics about the amount of or on the file system of which .Ar file is a part. -Values are displayed in 512-byte per block counts. +By default block counts are displayed with an assumed block size of +512 bytes. If neither a file or a file system operand is specified, statistics for all mounted file systems are displayed (subject to the @@ -65,48 +66,54 @@ Show all mount points, including those t flag. This is implied for file systems specified on the command line. .It Fl b -Use 512-byte blocks rather than the default. -Note that -this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl P +option. +The +.Fl k +option overrides this option. .It Fl c Display a grand total. .It Fl g -Use 1073741824-byte (1-Gbyte) blocks rather than the default. -Note that -this overrides the +Use 1073741824 byte (1 Gibibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl H .Dq Human-readable output. -Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 10 for sizes. +Use unit suffixes: Byte, Kibibyte, Mebibyte, Gibibyte, Tebibyte and +Pebibyte (based on powers of 1024) in order to reduce the number of +digits to four or fewer. .It Fl h .Dq Human-readable output. Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 2 for sizes. -Inodes statistics, if enabled with -.Fl i , -are always printed in base 10. +Gigabyte, Terabyte and Petabyte (based on powers of 1000) in order to +reduce the number of +digits to four or fewer. .It Fl i -Include statistics on the number of free inodes. +Include statistics on the number of free and used inodes. +In conjunction with the +.Fl h +or +.Fl H +options, the number of inodes is scaled by powers of 1000. .It Fl k -Use 1024-byte (1-Kbyte) blocks rather than the default. -Note that -this overrides the +Use 1024 byte (1 Kibibyte) blocks rather than the default. +This overrides the +.Fl P +option and any .Ev BLOCKSIZE specification from the environment. .It Fl l Only display information about locally-mounted file systems. .It Fl m -Use 1048576-byte (1-Mbyte) blocks rather than the default. -Note that -this overrides the +Use 1048576 byte (1 Mebibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl n @@ -119,10 +126,15 @@ When this option is specified, will not request new statistics from the file systems, but will respond with the possibly stale statistics that were previously obtained. .It Fl P -Use POSIX compliant output of 512-byte blocks rather than the default. -Note that this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl b +option. +The +.Fl k +option overrides this option. .It Fl t Only print out statistics for file systems of the specified types. More than one type may be specified in a comma separated list. @@ -148,26 +160,53 @@ command can be used to find out the type that are available on the system. .It Fl T Include file system type. +.It Fl , +(Comma) Print sizes grouped and separated by thousands using the +non-monetary separator returned by +.Xr localeconv 3 , +typically a comma or period. +If no locale is set, or the locale does not have a non-monetary separator, this +option has no effect. .El .Sh ENVIRONMENT .Bl -tag -width BLOCKSIZE .It Ev BLOCKSIZE -If the environment variable -.Ev BLOCKSIZE -is set, the block counts will be displayed in units of that size block. +Specifies the units in which to report block counts. +This uses +.Xr getbsize 3 , +which allows units of bytes or numbers scaled with the letters +.Em k +(for multiples of 1024 bytes), +.Em m +(for multiples of 1048576 bytes) or +.Em g +(for gibibytes). +The allowed range is 512 bytes to 1 GB. +If the value is outside, it will be set to the appropriate limit. .El .Sh SEE ALSO .Xr lsvfs 1 , -.Xr pstat 1 , .Xr quota 1 , -.Xr swapinfo 1 , .Xr fstatfs 2 , .Xr getfsstat 2 , .Xr statfs 2 , +.Xr getbsize 3 , .Xr getmntinfo 3 , +.Xr localeconv 3 , .Xr fstab 5 , .Xr mount 8 , -.Xr quot 8 +.Xr quot 8 . +.Sh STANDARDS +With the exception of most options, +the +.Nm +utility conforms to +.St -p1003.1-2004 , +which defines only the +.Fl k , P +and +.Fl t +options. .Sh HISTORY A .Nm @@ -180,3 +219,13 @@ flag is ignored if a file or file system Also, if a mount point is not accessible by the user, it is possible that the file system information could be stale. +.Pp +The +.Fl b +and +.Fl P +options are identical. +The former comes from the BSD tradition, and the latter is required +for +.St -p1003.1-2004 +conformity. Modified: projects/mtree/bin/df/df.c ============================================================================== --- projects/mtree/bin/df/df.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/df/df.c Mon Dec 10 20:10:20 2012 (r244094) @@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -95,6 +96,7 @@ imax(int a, int b) } static int aflag = 0, cflag, hflag, iflag, kflag, lflag = 0, nflag, Tflag; +static int thousands; static struct ufs_args mdev; int @@ -111,12 +113,12 @@ main(int argc, char *argv[]) int ch, rv; fstype = "ufs"; - + (void)setlocale(LC_ALL, ""); memset(&totalbuf, 0, sizeof(totalbuf)); totalbuf.f_bsize = DEV_BSIZE; strlcpy(totalbuf.f_mntfromname, "total", MNAMELEN); vfslist = NULL; - while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T")) != -1) + while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T,")) != -1) switch (ch) { case 'a': aflag = 1; @@ -180,6 +182,9 @@ main(int argc, char *argv[]) case 'T': Tflag = 1; break; + case ',': + thousands = 1; + break; case '?': default: usage(); @@ -388,16 +393,11 @@ prthumanvalinode(int64_t bytes) /* * Convert statfs returned file system size into BLOCKSIZE units. - * Attempts to avoid overflow for large file systems. */ static intmax_t fsbtoblk(int64_t num, uint64_t fsbs, u_long bs) { - - if (fsbs != 0 && fsbs < bs) - return (num / (intmax_t)(bs / fsbs)); - else - return (num * (intmax_t)(fsbs / bs)); + return (num * (intmax_t) fsbs / bs); } /* @@ -410,10 +410,18 @@ prtstat(struct statfs *sfsp, struct maxw static int headerlen, timesthrough = 0; static const char *header; int64_t used, availblks, inodes; + const char *format; if (++timesthrough == 1) { mwp->mntfrom = imax(mwp->mntfrom, (int)strlen("Filesystem")); mwp->fstype = imax(mwp->fstype, (int)strlen("Type")); + if (thousands) { /* make space for commas */ + mwp->total += (mwp->total - 1) / 3; + mwp->used += (mwp->used - 1) / 3; + mwp->avail += (mwp->avail - 1) / 3; + mwp->iused += (mwp->iused - 1) / 3; + mwp->ifree += (mwp->ifree - 1) / 3; + } if (hflag) { header = " Size"; mwp->total = mwp->used = mwp->avail = @@ -428,7 +436,7 @@ prtstat(struct statfs *sfsp, struct maxw (void)printf("%-*s", mwp->mntfrom, "Filesystem"); if (Tflag) (void)printf(" %-*s", mwp->fstype, "Type"); - (void)printf(" %-*s %*s %*s Capacity", mwp->total, header, + (void)printf(" %*s %*s %*s Capacity", mwp->total, header, mwp->used, "Used", mwp->avail, "Avail"); if (iflag) { mwp->iused = imax(hflag ? 0 : mwp->iused, @@ -440,6 +448,12 @@ prtstat(struct statfs *sfsp, struct maxw } (void)printf(" Mounted on\n"); } + /* Check for 0 block size. Can this happen? */ + if (sfsp->f_bsize == 0) { + warnx ("File system %s does not have a block size, assuming 512.", + sfsp->f_mntonname); + sfsp->f_bsize = 512; + } (void)printf("%-*s", mwp->mntfrom, sfsp->f_mntfromname); if (Tflag) (void)printf(" %-*s", mwp->fstype, sfsp->f_fstypename); @@ -448,7 +462,11 @@ prtstat(struct statfs *sfsp, struct maxw if (hflag) { prthuman(sfsp, used); } else { - (void)printf(" %*jd %*jd %*jd", + if (thousands) + format = " %*j'd %*j'd %*j'd"; + else + format = " %*jd %*jd %*jd"; + (void)printf(format, mwp->total, fsbtoblk(sfsp->f_blocks, sfsp->f_bsize, blocksize), mwp->used, fsbtoblk(used, sfsp->f_bsize, blocksize), @@ -465,7 +483,11 @@ prtstat(struct statfs *sfsp, struct maxw prthumanvalinode(used); prthumanvalinode(sfsp->f_ffree); } else { - (void)printf(" %*jd %*jd", mwp->iused, (intmax_t)used, + if (thousands) + format = " %*j'd %*j'd"; + else + format = " %*jd %*jd"; + (void)printf(format, mwp->iused, (intmax_t)used, mwp->ifree, (intmax_t)sfsp->f_ffree); } (void)printf(" %4.0f%% ", inodes == 0 ? 100.0 : @@ -542,7 +564,7 @@ usage(void) { (void)fprintf(stderr, -"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [file | filesystem ...]\n"); +"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [-,] [file | filesystem ...]\n"); exit(EX_USAGE); } Modified: projects/mtree/bin/ed/buf.c ============================================================================== --- projects/mtree/bin/ed/buf.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/buf.c Mon Dec 10 20:10:20 2012 (r244094) @@ -35,10 +35,10 @@ __FBSDID("$FreeBSD$"); #include "ed.h" -FILE *sfp; /* scratch file pointer */ -off_t sfseek; /* scratch file position */ -int seek_write; /* seek before writing */ -line_t buffer_head; /* incore buffer */ +static FILE *sfp; /* scratch file pointer */ +static off_t sfseek; /* scratch file position */ +static int seek_write; /* seek before writing */ +static line_t buffer_head; /* incore buffer */ /* get_sbuf_line: get a line of text from the scratch file; return pointer to the text */ @@ -185,10 +185,7 @@ get_addressed_line_node(long n) return lp; } - -extern int newline_added; - -char sfn[15] = ""; /* scratch file name */ +static char sfn[15] = ""; /* scratch file name */ /* open_sbuf: open scratch file */ int @@ -244,7 +241,7 @@ quit(int n) } -unsigned char ctab[256]; /* character translation table */ +static unsigned char ctab[256]; /* character translation table */ /* init_buffers: open scratch buffer; initialize line queue */ void Modified: projects/mtree/bin/ed/cbc.c ============================================================================== --- projects/mtree/bin/ed/cbc.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/cbc.c Mon Dec 10 20:10:20 2012 (r244094) @@ -68,28 +68,24 @@ __FBSDID("$FreeBSD$"); * global variables and related macros */ -enum { /* encrypt, decrypt, authenticate */ - MODE_ENCRYPT, MODE_DECRYPT, MODE_AUTHENTICATE -} mode = MODE_ENCRYPT; - #ifdef DES -DES_cblock ivec; /* initialization vector */ -DES_cblock pvec; /* padding vector */ +static DES_cblock ivec; /* initialization vector */ +static DES_cblock pvec; /* padding vector */ #endif -char bits[] = { /* used to extract bits from a char */ +static char bits[] = { /* used to extract bits from a char */ '\200', '\100', '\040', '\020', '\010', '\004', '\002', '\001' }; -int pflag; /* 1 to preserve parity bits */ +static int pflag; /* 1 to preserve parity bits */ #ifdef DES -DES_key_schedule schedule; /* expanded DES key */ +static DES_key_schedule schedule; /* expanded DES key */ #endif -unsigned char des_buf[8]; /* shared buffer for get_des_char/put_des_char */ -int des_ct = 0; /* count for get_des_char/put_des_char */ -int des_n = 0; /* index for put_des_char/get_des_char */ +static unsigned char des_buf[8];/* shared buffer for get_des_char/put_des_char */ +static int des_ct = 0; /* count for get_des_char/put_des_char */ +static int des_n = 0; /* index for put_des_char/get_des_char */ /* init_des_cipher: initialize DES */ void Modified: projects/mtree/bin/ed/ed.h ============================================================================== --- projects/mtree/bin/ed/ed.h Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/ed.h Mon Dec 10 20:10:20 2012 (r244094) @@ -277,3 +277,9 @@ extern int lineno; extern long second_addr; extern long u_addr_last; extern long u_current_addr; +extern long rows; +extern int cols; +extern int newline_added; +extern int des; +extern int scripted; +extern int patlock; Modified: projects/mtree/bin/ed/glbl.c ============================================================================== --- projects/mtree/bin/ed/glbl.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/glbl.c Mon Dec 10 20:10:20 2012 (r244094) @@ -135,11 +135,11 @@ exec_global(int interact, int gflag) } -line_t **active_list; /* list of lines active in a global command */ -long active_last; /* index of last active line in active_list */ -long active_size; /* size of active_list */ -long active_ptr; /* active_list index (non-decreasing) */ -long active_ndx; /* active_list index (modulo active_last) */ +static line_t **active_list; /* list of lines active in a global command */ +static long active_last; /* index of last active line in active_list */ +static long active_size; /* size of active_list */ +static long active_ptr; /* active_list index (non-decreasing) */ +static long active_ndx; /* active_list index (modulo active_last) */ /* set_active_node: add a line node to the global-active list */ int Modified: projects/mtree/bin/ed/io.c ============================================================================== --- projects/mtree/bin/ed/io.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/io.c Mon Dec 10 20:10:20 2012 (r244094) @@ -30,9 +30,6 @@ __FBSDID("$FreeBSD$"); #include "ed.h" - -extern int scripted; - /* read_file: read a named file/pipe into the buffer; return line count */ long read_file(char *fn, long n) @@ -58,11 +55,8 @@ read_file(char *fn, long n) return current_addr - n; } - -extern int des; - -char *sbuf; /* file i/o buffer */ -int sbufsz; /* file i/o buffer size */ +static char *sbuf; /* file i/o buffer */ +static int sbufsz; /* file i/o buffer size */ int newline_added; /* if set, newline appended to input file */ /* read_stream: read a stream into the editor buffer; return status */ @@ -298,9 +292,6 @@ get_tty_line(void) #define ESCAPES "\a\b\f\n\r\t\v\\" #define ESCCHARS "abfnrtv\\" -extern int rows; -extern int cols; - /* put_tty_line: print text to stdout */ int put_tty_line(const char *s, int l, long n, int gflag) Modified: projects/mtree/bin/ed/main.c ============================================================================== --- projects/mtree/bin/ed/main.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/main.c Mon Dec 10 20:10:20 2012 (r244094) @@ -66,40 +66,40 @@ __FBSDID("$FreeBSD$"); #ifdef _POSIX_SOURCE -sigjmp_buf env; +static sigjmp_buf env; #else -jmp_buf env; +static jmp_buf env; #endif /* static buffers */ char stdinbuf[1]; /* stdin buffer */ -char *shcmd; /* shell command buffer */ -int shcmdsz; /* shell command buffer size */ -int shcmdi; /* shell command buffer index */ +static char *shcmd; /* shell command buffer */ +static int shcmdsz; /* shell command buffer size */ +static int shcmdi; /* shell command buffer index */ char *ibuf; /* ed command-line buffer */ int ibufsz; /* ed command-line buffer size */ char *ibufp; /* pointer to ed command-line buffer */ /* global flags */ int des = 0; /* if set, use crypt(3) for i/o */ -int garrulous = 0; /* if set, print all error messages */ +static int garrulous = 0; /* if set, print all error messages */ int isbinary; /* if set, buffer contains ASCII NULs */ int isglobal; /* if set, doing a global command */ int modified; /* if set, buffer modified since last write */ int mutex = 0; /* if set, signals set "sigflags" */ -int red = 0; /* if set, restrict shell/directory access */ +static int red = 0; /* if set, restrict shell/directory access */ int scripted = 0; /* if set, suppress diagnostics */ int sigflags = 0; /* if set, signals received while mutex set */ -int sigactive = 0; /* if set, signal handlers are enabled */ +static int sigactive = 0; /* if set, signal handlers are enabled */ -char old_filename[PATH_MAX] = ""; /* default filename */ +static char old_filename[PATH_MAX] = ""; /* default filename */ long current_addr; /* current address in editor buffer */ long addr_last; /* last address in editor buffer */ int lineno; /* script line number */ -const char *prompt; /* command-line prompt */ -const char *dps = "*"; /* default command-line prompt */ +static const char *prompt; /* command-line prompt */ +static const char *dps = "*"; /* default command-line prompt */ -const char usage[] = "usage: %s [-] [-sx] [-p string] [file]\n"; +static const char *usage = "usage: %s [-] [-sx] [-p string] [file]\n"; /* ed: line editor */ int @@ -254,7 +254,8 @@ top: /*NOTREACHED*/ } -long first_addr, second_addr, addr_cnt; +long first_addr, second_addr; +static long addr_cnt; /* extract_addr_range: get line addresses from the command buffer until an illegal address is seen; return status */ @@ -1241,8 +1242,8 @@ display_lines(long from, long to, int gf #define MAXMARK 26 /* max number of marks */ -line_t *mark[MAXMARK]; /* line markers */ -int markno; /* line marker count */ +static line_t *mark[MAXMARK]; /* line markers */ +static int markno; /* line marker count */ /* mark_line_node: set a line node mark */ int Modified: projects/mtree/bin/ed/re.c ============================================================================== --- projects/mtree/bin/ed/re.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/re.c Mon Dec 10 20:10:20 2012 (r244094) @@ -31,9 +31,6 @@ __FBSDID("$FreeBSD$"); #include "ed.h" - -extern int patlock; - const char *errmsg = ""; /* get_compiled_pattern: return pointer to compiled pattern from command Modified: projects/mtree/bin/ed/sub.c ============================================================================== --- projects/mtree/bin/ed/sub.c Mon Dec 10 19:33:39 2012 (r244093) +++ projects/mtree/bin/ed/sub.c Mon Dec 10 20:10:20 2012 (r244094) @@ -32,9 +32,9 @@ __FBSDID("$FreeBSD$"); #include "ed.h" -char *rhbuf; /* rhs substitution buffer */ -int rhbufsz; /* rhs substitution buffer size */ -int rhbufi; /* rhs substitution buffer index */ +static char *rhbuf; /* rhs substitution buffer */ +static int rhbufsz; /* rhs substitution buffer size */ +static int rhbufi; /* rhs substitution buffer index */ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Dec 11 20:38:56 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AA89EB7; Tue, 11 Dec 2012 20:38:56 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3EC488FC13; Tue, 11 Dec 2012 20:38:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBBKcuVe085294; Tue, 11 Dec 2012 20:38:56 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBBKcrxw085276; Tue, 11 Dec 2012 20:38:53 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201212112038.qBBKcrxw085276@svn.freebsd.org> From: Brooks Davis Date: Tue, 11 Dec 2012 20:38:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244125 - projects/mtree/contrib/mtree X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Dec 2012 20:38:56 -0000 Author: brooks Date: Tue Dec 11 20:38:53 2012 New Revision: 244125 URL: http://svnweb.freebsd.org/changeset/base/244125 Log: Sync with NetBSD as of 2012-12-10. They have accepted most of my compability changes. Drop the no-op -w support. The default behavior is better and if we do an MFC I'll implement the historic, awful behavior. Retain -T and encoding of glob characters. Also retain some FreeBSD specific foramtting differences. I'm seeking advice on retaining them under __FreeBSD__ or adding a -F flag. I've also discovered that there are formatting differences in the -d case. Modified: projects/mtree/contrib/mtree/Makefile projects/mtree/contrib/mtree/compare.c projects/mtree/contrib/mtree/crc.c projects/mtree/contrib/mtree/create.c projects/mtree/contrib/mtree/extern.h projects/mtree/contrib/mtree/misc.c projects/mtree/contrib/mtree/mtree.8 projects/mtree/contrib/mtree/mtree.c projects/mtree/contrib/mtree/mtree.h projects/mtree/contrib/mtree/spec.c projects/mtree/contrib/mtree/specspec.c projects/mtree/contrib/mtree/verify.c Modified: projects/mtree/contrib/mtree/Makefile ============================================================================== --- projects/mtree/contrib/mtree/Makefile Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/Makefile Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2009/04/22 15:23:05 lukem Exp $ +# $NetBSD: Makefile,v 1.33 2012/10/05 01:26:56 christos Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/27/95 .include @@ -8,8 +8,7 @@ PROG= mtree CPPFLAGS+= -DMTREE MAN= mtree.8 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c specspec.c \ - verify.c \ - getid.c pack_dev.c + verify.c getid.c pack_dev.c .if (${HOSTPROG:U} == "") DPADD+= ${LIBUTIL} LDADD+= -lutil Modified: projects/mtree/contrib/mtree/compare.c ============================================================================== --- projects/mtree/contrib/mtree/compare.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/compare.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: compare.c,v 1.52 2008/12/28 19:36:30 christos Exp $ */ +/* $NetBSD: compare.c,v 1.55 2012/10/05 00:59:35 christos Exp $ */ /*- * Copyright (c) 1989, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)compare.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: compare.c,v 1.52 2008/12/28 19:36:30 christos Exp $"); +__RCSID("$NetBSD: compare.c,v 1.55 2012/10/05 00:59:35 christos Exp $"); #endif #endif /* not lint */ @@ -463,7 +463,7 @@ typeerr: LABEL; free(digestbuf); } } -#ifndef NO_SHA384 +#ifdef SHA384_BLOCK_LENGTH if (s->flags & F_SHA384) { if ((digestbuf = SHA384_File(p->fts_accpath, NULL)) == NULL) { LABEL; @@ -480,7 +480,7 @@ typeerr: LABEL; free(digestbuf); } } -#endif /* ! NO_SHA384 */ +#endif if (s->flags & F_SHA512) { if ((digestbuf = SHA512_File(p->fts_accpath, NULL)) == NULL) { LABEL; Modified: projects/mtree/contrib/mtree/crc.c ============================================================================== --- projects/mtree/contrib/mtree/crc.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/crc.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: crc.c,v 1.8 2005/06/02 06:04:46 lukem Exp $ */ +/* $NetBSD: crc.c,v 1.9 2012/10/05 00:40:51 christos Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)crc.c 8.1 (Berkeley) 6/17/93"; #else -__RCSID("$NetBSD: crc.c,v 1.8 2005/06/02 06:04:46 lukem Exp $"); +__RCSID("$NetBSD: crc.c,v 1.9 2012/10/05 00:40:51 christos Exp $"); #endif #endif /* not lint */ Modified: projects/mtree/contrib/mtree/create.c ============================================================================== --- projects/mtree/contrib/mtree/create.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/create.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: create.c,v 1.59 2012/07/15 09:08:29 spz Exp $ */ +/* $NetBSD: create.c,v 1.65 2012/10/05 01:21:44 christos Exp $ */ /*- * Copyright (c) 1989, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)create.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: create.c,v 1.59 2012/07/15 09:08:29 spz Exp $"); +__RCSID("$NetBSD: create.c,v 1.65 2012/10/05 01:21:44 christos Exp $"); #endif #endif /* not lint */ @@ -83,7 +83,13 @@ static uid_t uid; static mode_t mode; static u_long flags; -static int dcmp(const FTSENT * const *, const FTSENT * const *); +#ifdef __FreeBSD__ +#define FTS_CONST const +#else +#define FTS_CONST +#endif + +static int dcmp(const FTSENT *FTS_CONST *, const FTSENT *FTS_CONST *); static void output(int, int *, const char *, ...) __attribute__((__format__(__printf__, 3, 4))); static int statd(FTS *, FTSENT *, uid_t *, gid_t *, mode_t *, u_long *); @@ -136,12 +142,16 @@ cwalk(void) statf(indent, p); break; case FTS_DP: - if (!nflag && p->fts_level > 0) - printf("%*s# %s\n", indent, "", p->fts_path); -#ifndef __FreeBSD__ - if (p->fts_level > 0) + if (p->fts_level > 0) { + if (!nflag) + printf("%*s# %s\n", indent, "", + p->fts_path); +#ifdef __FreeBSD__ + } + if (1) { #endif printf("%*s..\n\n", indent, ""); + } break; case FTS_DNR: @@ -206,11 +216,11 @@ statf(int indent, FTSENT *p) (long long)p->fts_statp->st_rdev); if (keys & F_NLINK && p->fts_statp->st_nlink != 1) output(indent, &offset, "nlink=%u", p->fts_statp->st_nlink); - if (keys & F_SIZE #ifndef __FreeBSD__ - && S_ISREG(p->fts_statp->st_mode) + if (keys & F_SIZE && S_ISREG(p->fts_statp->st_mode)) +#else + if (keys & F_SIZE) #endif - ) output(indent, &offset, "size=%lld", (long long)p->fts_statp->st_size); if (keys & F_TIME) @@ -232,7 +242,8 @@ statf(int indent, FTSENT *p) #ifndef NO_MD5 if (keys & F_MD5 && S_ISREG(p->fts_statp->st_mode)) { if ((digestbuf = MD5File(p->fts_accpath, NULL)) == NULL) - mtree_err("%s: MD5File failed: %s", p->fts_accpath, strerror(errno)); + mtree_err("%s: MD5File failed: %s", p->fts_accpath, + strerror(errno)); output(indent, &offset, "%s=%s", MD5KEY, digestbuf); free(digestbuf); } @@ -240,7 +251,8 @@ statf(int indent, FTSENT *p) #ifndef NO_RMD160 if (keys & F_RMD160 && S_ISREG(p->fts_statp->st_mode)) { if ((digestbuf = RMD160File(p->fts_accpath, NULL)) == NULL) - mtree_err("%s: RMD160File failed: %s", p->fts_accpath, strerror(errno)); + mtree_err("%s: RMD160File failed: %s", p->fts_accpath, + strerror(errno)); output(indent, &offset, "%s=%s", RMD160KEY, digestbuf); free(digestbuf); } @@ -248,7 +260,8 @@ statf(int indent, FTSENT *p) #ifndef NO_SHA1 if (keys & F_SHA1 && S_ISREG(p->fts_statp->st_mode)) { if ((digestbuf = SHA1File(p->fts_accpath, NULL)) == NULL) - mtree_err("%s: SHA1File failed: %s", p->fts_accpath, strerror(errno)); + mtree_err("%s: SHA1File failed: %s", p->fts_accpath, + strerror(errno)); output(indent, &offset, "%s=%s", SHA1KEY, digestbuf); free(digestbuf); } @@ -256,21 +269,24 @@ statf(int indent, FTSENT *p) #ifndef NO_SHA2 if (keys & F_SHA256 && S_ISREG(p->fts_statp->st_mode)) { if ((digestbuf = SHA256_File(p->fts_accpath, NULL)) == NULL) - mtree_err("%s: SHA256_File failed: %s", p->fts_accpath, strerror(errno)); + mtree_err("%s: SHA256_File failed: %s", p->fts_accpath, + strerror(errno)); output(indent, &offset, "%s=%s", SHA256KEY, digestbuf); free(digestbuf); } -#ifndef NO_SHA384 +#ifdef SHA384_BLOCK_LENGTH if (keys & F_SHA384 && S_ISREG(p->fts_statp->st_mode)) { if ((digestbuf = SHA384_File(p->fts_accpath, NULL)) == NULL) - mtree_err("%s: SHA384_File failed: %s", p->fts_accpath, strerror(errno)); + mtree_err("%s: SHA384_File failed: %s", p->fts_accpath, + strerror(errno)); output(indent, &offset, "%s=%s", SHA384KEY, digestbuf); free(digestbuf); } #endif if (keys & F_SHA512 && S_ISREG(p->fts_statp->st_mode)) { if ((digestbuf = SHA512_File(p->fts_accpath, NULL)) == NULL) - mtree_err("%s: SHA512_File failed: %s", p->fts_accpath, strerror(errno)); + mtree_err("%s: SHA512_File failed: %s", p->fts_accpath, + strerror(errno)); output(indent, &offset, "%s=%s", SHA512KEY, digestbuf); free(digestbuf); } @@ -419,7 +435,7 @@ statd(FTS *t, FTSENT *parent, uid_t *pui * Keep this in sync with nodecmp() in spec.c. */ static int -dcmp(const FTSENT * const *a, const FTSENT * const *b) +dcmp(const FTSENT *FTS_CONST *a, const FTSENT *FTS_CONST *b) { if (S_ISDIR((*a)->fts_statp->st_mode)) { Modified: projects/mtree/contrib/mtree/extern.h ============================================================================== --- projects/mtree/contrib/mtree/extern.h Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/extern.h Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.32 2011/08/29 20:37:43 joerg Exp $ */ +/* $NetBSD: extern.h,v 1.36 2012/10/05 01:26:56 christos Exp $ */ /*- * Copyright (c) 1991, 1993 Modified: projects/mtree/contrib/mtree/misc.c ============================================================================== --- projects/mtree/contrib/mtree/misc.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/misc.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: misc.c,v 1.30 2009/01/18 12:09:38 lukem Exp $ */ +/* $NetBSD: misc.c,v 1.32 2012/10/05 01:31:05 christos Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -37,7 +37,7 @@ #include #if defined(__RCSID) && !defined(lint) -__RCSID("$NetBSD: misc.c,v 1.30 2009/01/18 12:09:38 lukem Exp $"); +__RCSID("$NetBSD: misc.c,v 1.32 2012/10/05 01:31:05 christos Exp $"); #endif /* not lint */ #include Modified: projects/mtree/contrib/mtree/mtree.8 ============================================================================== --- projects/mtree/contrib/mtree/mtree.8 Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/mtree.8 Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -.\" $NetBSD: mtree.8,v 1.53 2010/01/20 14:00:48 wiz Exp $ +.\" $NetBSD: mtree.8,v 1.63 2012/10/05 09:18:02 wiz Exp $ .\" .\" Copyright (c) 1989, 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -56,7 +56,7 @@ .\" .\" @(#)mtree.8 8.2 (Berkeley) 12/11/93 .\" -.Dd January 20, 2010 +.Dd October 4, 2012 .Dt MTREE 8 .Os .Sh NAME @@ -64,7 +64,7 @@ .Nd map a directory hierarchy .Sh SYNOPSIS .Nm -.Op Fl CcDdeLlMPrSUuWx +.Op Fl CcDdejLlMnPqrSTtUuWx .Op Fl i | Fl m .Op Fl E Ar tags .Op Fl f Ar spec @@ -104,8 +104,8 @@ The full path name (beginning with .Dq \&./ ) is always printed as the first field; -.Fl k , .Fl K , +.Fl k , and .Fl R can be used to control which other keywords are printed; @@ -113,6 +113,7 @@ can be used to control which other keywo and .Fl I can be used to control which files are printed; +and the .Fl S option can be used to sort the output. .It Fl c @@ -148,13 +149,12 @@ If this option is specified twice, the t to each other rather than to the file hierarchy. The specifications will be sorted like output generated using .Fl c . -The output format in this case is somewhat remniscent of +The output format in this case is somewhat reminiscent of .Xr comm 1 , having "in first spec only", "in second spec only", and "different" columns, prefixed by zero, one and two TAB characters respectively. Each entry in the "different" column occupies two lines, one from each -specifica -tion. +specification. .It Fl I Ar tags Add the comma separated tags to the .Dq inclusion @@ -167,7 +167,7 @@ If no inclusion list is provided, the de .It Fl i If specified, set the schg and/or sappnd flags. .It Fl j -Indent the output 4 spaces each time a directory level is descended when +Indent the output 4 spaces each time a directory level is descended when creating a specification with the .Fl c option. @@ -213,13 +213,13 @@ particular, if other bits like the stick set either in the specification or the file, exact checking will be performed. This option may not be set at the same time as the -.Fl u -or .Fl U +or +.Fl u option. .It Fl M Permit merging of specification entries with different types, -with the last entry take precedence. +with the last entry taking precedence. .It Fl m If the schg and/or sappnd flags are specified, reset these flags. Note that this is only possible with securelevel less than 1 (i.e., @@ -230,7 +230,7 @@ See for information on security levels. .It Fl n Do not emit pathname comments when creating a specification. -Normally +Normally a comment is emitted before each directory and before the close of that directory when using the .Fl c @@ -297,19 +297,18 @@ of the files for which the keyword .Sy cksum was specified. The checksum is seeded with the specified value. -.It Fl t -Modify the modified time of existing files, the device type of devices, and -symbolic link targets, to match the specification. -This is the default on -.Fx -systems. .It Fl T .Em Do not modify the modified time of existing files, the device type of devices, and symbolic link targets, to match the specification. This is the default on systems other than +.Fx . +.It Fl t +Modify the modified time of existing files, the device type of devices, and +symbolic link targets, to match the specification. +This is the default on .Fx -. +systems. .It Fl U Same as .Fl u @@ -331,17 +330,14 @@ is given, these flags will be reset. Exit with a status of 0 on success, 2 if the file hierarchy did not match the specification, and 1 if any other error occurred. -.It Fl w -Ignored for compatibility with FreeBSD versions of -.Nm . .It Fl W Don't attempt to set various file attributes such as the ownership, mode, flags, or time when creating new directories or changing existing entries. This option will be most useful when used in conjunction with -.Fl u +.Fl U or -.Fl U . +.Fl u . .It Fl X Ar exclude-file The specified file contains .Xr fnmatch 3 @@ -381,7 +377,6 @@ or .Sy char file types. The argument must be one of the following forms: -.Pp .Bl -tag -width 4n .It Ar format , Ns Ar major , Ns Ar minor A device with @@ -558,7 +553,6 @@ and .Sy uid . .Pp There are four types of lines in a specification: -.Pp .Bl -enum .It Set global values for a keyword. @@ -641,7 +635,7 @@ appropriately. Multiple entries for the same full path are permitted if the types are the same (unless .Fl M -is given, and then the types may differ); +is given, in which case the types may differ); in this case the settings for the last entry take precedence. .Pp A path name that does not contain a slash will be treated as a relative path. @@ -691,10 +685,11 @@ can be used to detect which of the binar .Pp The .Fl d -and +option can be used in combination with +.Fl U +or .Fl u -options can be used in combination to create directory hierarchies -for distributions and other such things. +to create directory hierarchies for, for example, distributions. .Sh SEE ALSO .Xr chflags 1 , .Xr chgrp 1 , @@ -741,8 +736,8 @@ keywords, .Fl D , .Fl E , .Fl I , -.Fl l , .Fl L , +.Fl l , .Fl N , .Fl P , .Fl R , Modified: projects/mtree/contrib/mtree/mtree.c ============================================================================== --- projects/mtree/contrib/mtree/mtree.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/mtree.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: mtree.c,v 1.37 2011/08/29 20:37:43 joerg Exp $ */ +/* $NetBSD: mtree.c,v 1.42 2012/10/05 09:18:08 wiz Exp $ */ /*- * Copyright (c) 1989, 1990, 1993 @@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 19 #if 0 static char sccsid[] = "@(#)mtree.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: mtree.c,v 1.37 2011/08/29 20:37:43 joerg Exp $"); +__RCSID("$NetBSD: mtree.c,v 1.42 2012/10/05 09:18:08 wiz Exp $"); #endif #endif /* not lint */ @@ -84,7 +84,7 @@ main(int argc, char **argv) #endif while ((ch = getopt(argc, argv, - "cCdDeE:f:I:ijk:K:lLmMnN:p:PqrR:s:StTuUwWxX:")) + "cCdDeE:f:I:ijk:K:lLmMnN:p:PqrR:s:StTuUWxX:")) != -1) { switch((char)ch) { case 'c': @@ -200,9 +200,6 @@ main(int argc, char **argv) case 'U': Uflag = uflag = 1; break; - case 'w': - /* Ignored for compatibility with FreeBSD's mtree. */ - break; case 'W': mtree_Wflag = 1; break; @@ -267,7 +264,7 @@ usage(void) { fprintf(stderr, - "usage: %s [-CcDdeLlMnPrSUuWx] [-i|-m] [-E tags]\n" + "usage: %s [-CcDdejLlMnPqrSTtUuWx] [-i|-m] [-E tags]\n" "\t\t[-f spec] [-f spec]\n" "\t\t[-I tags] [-K keywords] [-k keywords] [-N dbdir] [-p path]\n" "\t\t[-R keywords] [-s seed] [-X exclude-file]\n", Modified: projects/mtree/contrib/mtree/mtree.h ============================================================================== --- projects/mtree/contrib/mtree/mtree.h Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/mtree.h Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: mtree.h,v 1.27 2009/04/04 21:49:49 apb Exp $ */ +/* $NetBSD: mtree.h,v 1.31 2012/10/05 09:17:29 wiz Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -86,7 +86,7 @@ typedef struct _node { #define F_UID 0x00080000 /* uid */ #define F_UNAME 0x00100000 /* user name */ #define F_VISIT 0x00200000 /* file visited */ -#define F_NOCHANGE 0x00400000 /* check existance, but not */ +#define F_NOCHANGE 0x00400000 /* check existence, but not */ /* other properties */ #define F_SHA256 0x00800000 /* SHA256 digest */ #define F_SHA384 0x01000000 /* SHA384 digest */ @@ -126,17 +126,20 @@ int mtree_specspec(FILE *, FILE *); void free_nodes(NODE *); char *vispath(const char *); -#ifndef __FreeBSD__ -#define MD5KEY "md5" -#define RMD160KEY "rmd160" -#define SHA1KEY "sha1" -#define SHA256KEY "sha256" +#ifdef __FreeBSD__ +#define KEY_DIGEST "digest" #else -#define MD5KEY "md5digest" -#define RMD160KEY "ripemd160digest" -#define SHA1KEY "sha1digest" -#define SHA256KEY "sha256digest" +#define KEY_DIGEST #endif + +#define MD5KEY "md5" KEY_DIGEST +#ifdef __FreeBSD__ +#define RMD160KEY "ripemd160" KEY_DIGEST +#else +#define RMD160KEY "rmd160" KEY_DIGEST +#endif +#define SHA1KEY "sha1" KEY_DIGEST +#define SHA256KEY "sha256" KEY_DIGEST #define SHA384KEY "sha384" #define SHA512KEY "sha512" Modified: projects/mtree/contrib/mtree/spec.c ============================================================================== --- projects/mtree/contrib/mtree/spec.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/spec.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: spec.c,v 1.80 2012/03/15 02:02:24 joerg Exp $ */ +/* $NetBSD: spec.c,v 1.84 2012/10/07 18:40:49 christos Exp $ */ /*- * Copyright (c) 1989, 1993 @@ -67,7 +67,7 @@ #if 0 static char sccsid[] = "@(#)spec.c 8.2 (Berkeley) 4/28/95"; #else -__RCSID("$NetBSD: spec.c,v 1.80 2012/03/15 02:02:24 joerg Exp $"); +__RCSID("$NetBSD: spec.c,v 1.84 2012/10/07 18:40:49 christos Exp $"); #endif #endif /* not lint */ Modified: projects/mtree/contrib/mtree/specspec.c ============================================================================== --- projects/mtree/contrib/mtree/specspec.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/specspec.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,3 +1,5 @@ +/* $NetBSD: specspec.c,v 1.2 2012/10/05 01:27:29 christos Exp $ */ + /*- * Copyright (c) 2003 Poul-Henning Kamp * All rights reserved. @@ -24,12 +26,17 @@ * SUCH DAMAGE. */ +#if HAVE_NBTOOL_CONFIG_H +#include "nbtool_config.h" +#endif + #include -__FBSDID("$FreeBSD$"); +__RCSID("$NetBSD: specspec.c,v 1.2 2012/10/05 01:27:29 christos Exp $"); #include #include #include +#include #include #include #include @@ -84,14 +91,12 @@ shownode(NODE *n, int f, char const *pat printf(" %s=%s", SHA1KEY, n->sha1digest); if (f & F_RMD160) printf(" %s=%s", RMD160KEY, n->rmd160digest); - if (f & F_SHA1) - printf(" %s=%s", SHA1KEY, n->sha256digest); if (f & F_SHA256) printf(" %s=%s", SHA256KEY, n->sha256digest); if (f & F_SHA384) printf(" %s=%s", SHA384KEY, n->sha384digest); if (f & F_SHA512) - printf(" %s=%s", SHA512KEY, n->sha512digest); + printf(" %s=%s", SHA512KEY, n->sha512digest); if (f & F_FLAGS) printf(" flags=%s", flags_to_string(n->st_flags, "none")); printf("\n"); Modified: projects/mtree/contrib/mtree/verify.c ============================================================================== --- projects/mtree/contrib/mtree/verify.c Tue Dec 11 20:08:57 2012 (r244124) +++ projects/mtree/contrib/mtree/verify.c Tue Dec 11 20:38:53 2012 (r244125) @@ -1,4 +1,4 @@ -/* $NetBSD: verify.c,v 1.40 2012/03/25 16:07:04 christos Exp $ */ +/* $NetBSD: verify.c,v 1.43 2012/10/05 01:31:05 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)verify.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: verify.c,v 1.40 2012/03/25 16:07:04 christos Exp $"); +__RCSID("$NetBSD: verify.c,v 1.43 2012/10/05 01:31:05 christos Exp $"); #endif #endif /* not lint */ @@ -181,7 +181,8 @@ miss(NODE *p, char *tail) symbolic link and the -q flag is set. */ struct stat statbuf; - if (qflag && stat(path, &statbuf) == 0) + if (qflag && stat(path, &statbuf) == 0 && + S_ISDIR(statbuf.st_mode)) p->flags |= F_VISIT; else (void)printf("%s missing", path); From owner-svn-src-projects@FreeBSD.ORG Tue Dec 11 23:59:15 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A20DF10F; Tue, 11 Dec 2012 23:59:15 +0000 (UTC) (envelope-from cherry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7CD0D8FC16; Tue, 11 Dec 2012 23:59:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBBNxF1U019660; Tue, 11 Dec 2012 23:59:15 GMT (envelope-from cherry@svn.freebsd.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBBNxF8M019659; Tue, 11 Dec 2012 23:59:15 GMT (envelope-from cherry@svn.freebsd.org) Message-Id: <201212112359.qBBNxF8M019659@svn.freebsd.org> From: "Cherry G. Mathew" Date: Tue, 11 Dec 2012 23:59:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244127 - projects/amd64_xen_pv/sys/amd64/xen X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Dec 2012 23:59:15 -0000 Author: cherry Date: Tue Dec 11 23:59:14 2012 New Revision: 244127 URL: http://svnweb.freebsd.org/changeset/base/244127 Log: This change addresses a few issues related to the kernel pmap: - pte accesses are now possible by ad-hoc mapping of pte pages. XXX: vtopte() and friends assume dmap - vtop() and ptov() style functions ( essentialy v<->p map lookups for the kernel pmap ) are now able to consult the pv entry list and kernel object(s). We don't assume a fixed offset, although va == pa + KERNBASE is true for boottime pages and is guaranteed by the VM xen booloader and can be accessed via the PTOV() and VTOP() macros. This may be revamped in future. - XXX: kernel pte machine page pointers (returned via pmap_kextract_ma()) seem to have their LSBs set. ptes are aligned at 8bytes (64bits) on x86_64, so this is a bit mysterious. Masking out the entry pointers seem to work for now, but I need to reinvestigate this. Approved by: gibbs (implicit) Modified: projects/amd64_xen_pv/sys/amd64/xen/pmap.c Modified: projects/amd64_xen_pv/sys/amd64/xen/pmap.c ============================================================================== --- projects/amd64_xen_pv/sys/amd64/xen/pmap.c Tue Dec 11 22:52:56 2012 (r244126) +++ projects/amd64_xen_pv/sys/amd64/xen/pmap.c Tue Dec 11 23:59:14 2012 (r244127) @@ -137,6 +137,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -224,7 +225,7 @@ pmap_xen_setpages_ro(uintptr_t va, vm_si vm_size_t i; for (i = 0; i < npages; i++) { PT_SET_MA(va + PAGE_SIZE * i, - phystomach(VTOP(va + PAGE_SIZE * i)) | PG_U | PG_V); + phystomach(ptmb_vtop(va + PAGE_SIZE * i)) | PG_U | PG_V); } } @@ -235,7 +236,7 @@ pmap_xen_setpages_rw(uintptr_t va, vm_si vm_size_t i; for (i = 0; i < npages; i++) { PT_SET_MA(va + PAGE_SIZE * i, - phystomach(VTOP(va + PAGE_SIZE * i)) | PG_U | PG_V | PG_RW); + phystomach(ptmb_vtop(va + PAGE_SIZE * i)) | PG_U | PG_V | PG_RW); } } @@ -715,8 +716,9 @@ vtopte(uintptr_t va) * effectively const. */ - const u_int64_t mask = ((1ul << (NPTEPGSHIFT + NPDEPGSHIFT - + NPDPEPGSHIFT + NPML4EPGSHIFT)) - 1); + const uint64_t SIGNMASK = (1UL << 48) - 1; + + va &= SIGNMASK; /* Remove sign extension */ pd_entry_t *pte; /* PTE address to return */ @@ -732,18 +734,18 @@ vtopte(uintptr_t va) mmu_map_t_init(tptr, &mb); if (!mmu_map_inspect_va(kernel_pmap, tptr, va)) { - panic("pte queried for unmapped kernel va"); + return NULL; /* XXX: fix api, return some kind of #define */ } pte = mmu_map_pt(tptr); /* Read out PT from mmu state */ + /* add VA offset */ - pte += ((va >> PAGE_SHIFT) & mask); + pte += (va & PDRMASK) >> PAGE_SHIFT; mmu_map_release_va(kernel_pmap, tptr, va); mmu_map_t_fini(tptr); - - return (PTmap + ((va >> PAGE_SHIFT) & mask)); + return pte; } #ifdef SMP @@ -807,6 +809,7 @@ pmap_qremove(vm_offset_t sva, int count) pmap_kremove(va); va += PAGE_SIZE; } + xen_flush_queue(); // XXX: TODO: pmap_invalidate_range(kernel_pmap, sva, va); } @@ -939,7 +942,8 @@ pmap_kextract_ma(vm_offset_t va) mmu_map_t_fini(tptr); nomapping: - return ma; + /* XXX: why do we need to enforce alignment ? */ + return ma & ~0x7UL; } /*************************************************** @@ -992,7 +996,7 @@ pmap_kenter_ma(vm_offset_t va, vm_paddr_ if (!mmu_map_inspect_va(kernel_pmap, tptr, va)) { mmu_map_hold_va(kernel_pmap, tptr, va); /* PT hierarchy */ - xen_flush_queue(); + xen_flush_queue(); /* XXX: cleanup */ } /* Backing page tables are in place, let xen do the maths */ @@ -1016,7 +1020,13 @@ pmap_kremove(vm_offset_t va) pt_entry_t *pte; pte = vtopte(va); + if (pte == NULL) { /* Mapping doesn't exist */ + return; + } + PT_CLEAR_VA(pte, FALSE); + + PT_UPDATES_FLUSH(); } /* @@ -1276,6 +1286,7 @@ xen_vm_ptov(vm_paddr_t pa) KASSERT(gdtset == 1 && m != NULL || pa < physfree, ("Stray PA 0x%lx passed\n", pa)); if (m == NULL) { /* Early boottime page - obeys early mapping rules */ + /* XXX: KASSERT() for this */ return PTOV(pa); } @@ -1288,12 +1299,40 @@ xen_vm_ptov(vm_paddr_t pa) static vm_paddr_t xen_vm_vtop(uintptr_t va) { + int result; + + /* The kernel expects to have full access to its address space */ + const vm_prot_t accesstype = VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE; + vm_page_t m; + vm_object_t object; /* Backing object for this va */ + vm_pindex_t pindex; /* Index into backing object */ + vm_map_entry_t entry; + vm_prot_t tmp_prot; /* Our Access rights */ + boolean_t wired; /* Is the va wired */ + KASSERT((va >= VM_MIN_KERNEL_ADDRESS && va <= VM_MAX_KERNEL_ADDRESS), ("Invalid kernel virtual address")); - m = vm_page_lookup(kernel_object, va - VM_MIN_KERNEL_ADDRESS); + /* Get the specific object and pindex where the va may be mapped */ + result = vm_map_lookup(&kernel_map, va, accesstype, &entry, + &object, &pindex, &tmp_prot, &wired); + + KASSERT(result == KERN_SUCCESS, ("Couldn't find va in the kernel map. \n")); + KASSERT(accesstype == tmp_prot, ("Kernel access permissions disparity\n")); + + VM_OBJECT_LOCK(object); + + m = vm_page_lookup(object, pindex); + + vm_map_lookup_done(kernel_map, entry); + + KASSERT(m != NULL, + ("%s: %d:: va = 0x%lx is unbacked in kernel_map()\n", + __func__, __LINE__, va)); + + VM_OBJECT_UNLOCK(object); return VM_PAGE_TO_PHYS(m); } From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 05:21:05 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A7C2808; Wed, 12 Dec 2012 05:21:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id E3E238FC08; Wed, 12 Dec 2012 05:21:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBC5L4NH068701; Wed, 12 Dec 2012 05:21:04 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBC5L44v068700; Wed, 12 Dec 2012 05:21:04 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212120521.qBC5L44v068700@svn.freebsd.org> From: Mark Linimon Date: Wed, 12 Dec 2012 05:21:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244138 - projects/portbuild/scripts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 05:21:05 -0000 Author: linimon (doc,ports committer) Date: Wed Dec 12 05:21:04 2012 New Revision: 244138 URL: http://svnweb.freebsd.org/changeset/base/244138 Log: Create the errorlogs/ dir for the webserver if it does not exist. Note that due to packagestats, this directory needs to be owned by a general user, not a ports-specific one. Modified: projects/portbuild/scripts/build Modified: projects/portbuild/scripts/build ============================================================================== --- projects/portbuild/scripts/build Wed Dec 12 05:02:56 2012 (r244137) +++ projects/portbuild/scripts/build Wed Dec 12 05:21:04 2012 (r244138) @@ -157,8 +157,16 @@ do_create() { chmod -R g+w ${mlist} fi - # create the links for the webserver under ../errorlogs/ + # create the links for the webserver under ../errorlogs/. Note + # non ports- ownership of this directory! errorlogs=${pbd}/errorlogs + portbuild_uid=${PORTBUILD_USER} + if [ ! -d ${errorlogs} ]; then + echo "${errorlogs} must exist and be owned by ${portbuild_uid}:${gid} mode 77x." + exit 1 + fi + chown -R ${portbuild_uid}:${gid} ${errorlogs} || exit 1 + chmod 775 ${errorlogs} || exit 1 ln -s ${buildsdir}/latest/bak/errors ${errorlogs}/${arch}-${branch}-previous ln -s ${buildsdir}/latest/bak/logs ${errorlogs}/${arch}-${branch}-previous-logs From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 07:28:18 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92AD835A; Wed, 12 Dec 2012 07:28:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5D88E8FC18; Wed, 12 Dec 2012 07:28:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBC7SIF1088650; Wed, 12 Dec 2012 07:28:18 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBC7SII5088648; Wed, 12 Dec 2012 07:28:18 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212120728.qBC7SII5088648@svn.freebsd.org> From: Mark Linimon Date: Wed, 12 Dec 2012 07:28:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244142 - projects/portbuild/scripts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 07:28:18 -0000 Author: linimon (doc,ports committer) Date: Wed Dec 12 07:28:17 2012 New Revision: 244142 URL: http://svnweb.freebsd.org/changeset/base/244142 Log: Allow arch to be passed in as a parameter. Keep "all" the default for backwards compatibility, although this should not be necessary. Modified: projects/portbuild/scripts/do-cleanup-chroots projects/portbuild/scripts/do-cleanup-tmp Modified: projects/portbuild/scripts/do-cleanup-chroots ============================================================================== --- projects/portbuild/scripts/do-cleanup-chroots Wed Dec 12 07:24:37 2012 (r244141) +++ projects/portbuild/scripts/do-cleanup-chroots Wed Dec 12 07:28:17 2012 (r244142) @@ -1,8 +1,12 @@ #!/bin/sh # -# clean up stale chroots on all client machines. MCL 20081216. +# clean up stale chroots on all client machines. # pbc=${PORTBUILD_CHECKOUT:-/var/portbuild} -${pbc}/scripts/allgohans all -q -scp ${pbc}/scripts/cleanup-chroots +arch=$0 +if [ -z "$arch" ]; then + arch=all +fi +${pbc}/scripts/allgohans ${arch} -q -scp ${pbc}/scripts/cleanup-chroots Modified: projects/portbuild/scripts/do-cleanup-tmp ============================================================================== --- projects/portbuild/scripts/do-cleanup-tmp Wed Dec 12 07:24:37 2012 (r244141) +++ projects/portbuild/scripts/do-cleanup-tmp Wed Dec 12 07:28:17 2012 (r244142) @@ -1,8 +1,12 @@ #!/bin/sh # -# clean up stale /tmp on all client machines. MCL 20110712. +# clean up stale /tmp on all client machines. # pbc=${PORTBUILD_CHECKOUT:-/var/portbuild} -${pbc}/scripts/allgohans all -q -scp ${pbc}/scripts/cleanup-tmp +arch=$0 +if [ -z "$arch" ]; then + arch=all +fi +${pbc}/scripts/allgohans ${arch} -q -scp ${pbc}/scripts/cleanup-tmp From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 07:29:38 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B670C490; Wed, 12 Dec 2012 07:29:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9BE3F8FC08; Wed, 12 Dec 2012 07:29:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBC7TcT0088873; Wed, 12 Dec 2012 07:29:38 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBC7TcA2088872; Wed, 12 Dec 2012 07:29:38 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212120729.qBC7TcA2088872@svn.freebsd.org> From: Mark Linimon Date: Wed, 12 Dec 2012 07:29:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244143 - projects/portbuild/crontabs X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 07:29:38 -0000 Author: linimon (doc,ports committer) Date: Wed Dec 12 07:29:38 2012 New Revision: 244143 URL: http://svnweb.freebsd.org/changeset/base/244143 Log: Convert do-cleanup-chroots to take a parameter. This is part of refactoring this crontab into various pieces. Modified: projects/portbuild/crontabs/root Modified: projects/portbuild/crontabs/root ============================================================================== --- projects/portbuild/crontabs/root Wed Dec 12 07:28:17 2012 (r244142) +++ projects/portbuild/crontabs/root Wed Dec 12 07:29:38 2012 (r244143) @@ -18,7 +18,7 @@ TERM=xterm 50 5 * * * lockf -t 0 -k /var/run/busybusybusy.lock find /var/portbuild/*/archive/ -name \*.log -mtime +7 | xargs bzip2 -9f # # Clean up old chroots on client machines -30 * * * * /var/portbuild/scripts/do-cleanup-chroots +30 * * * * /var/portbuild/scripts/do-cleanup-chroots all # Backup ZFS filesystems # XXX MCL script not yet converted From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 12:03:02 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA2079FA; Wed, 12 Dec 2012 12:03:02 +0000 (UTC) (envelope-from davide@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8A7058FC16; Wed, 12 Dec 2012 12:03:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBCC32ER040219; Wed, 12 Dec 2012 12:03:02 GMT (envelope-from davide@svn.freebsd.org) Received: (from davide@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBCC2x4c040176; Wed, 12 Dec 2012 12:02:59 GMT (envelope-from davide@svn.freebsd.org) Message-Id: <201212121202.qBCC2x4c040176@svn.freebsd.org> From: Davide Italiano Date: Wed, 12 Dec 2012 12:02:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244147 - in projects/calloutng/sys: kern ofed/include/linux sys X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 12:03:02 -0000 Author: davide Date: Wed Dec 12 12:02:58 2012 New Revision: 244147 URL: http://svnweb.freebsd.org/changeset/base/244147 Log: Various improvements: - Fix build (OFED-related bits). - Change the new KPI for precision. Now an additional struct bintime argument is used to specify precision. This way we can express precision tolerance as an absolute value, which gives us the maximum flexibility. The old services can specify precision tolerance in terms of percentage of passed time in 'ticks'. - Allow the possibility to choose between getbinuptime() or binuptime(), using a threshold value to discriminate between the two. Users can choose threshold via sysctl to fit their needs. The rationale behind this choice relies on the fact that for long timeouts the impact of the relative measurement of getbinuptime() is relatively low. - Adapt nanosleep(), poll(), select() to these changes. Reviewed by: mav Modified: projects/calloutng/sys/kern/kern_condvar.c projects/calloutng/sys/kern/kern_event.c projects/calloutng/sys/kern/kern_synch.c projects/calloutng/sys/kern/kern_tc.c projects/calloutng/sys/kern/kern_time.c projects/calloutng/sys/kern/kern_timeout.c projects/calloutng/sys/kern/subr_sleepqueue.c projects/calloutng/sys/kern/sys_generic.c projects/calloutng/sys/ofed/include/linux/timer.h projects/calloutng/sys/sys/callout.h projects/calloutng/sys/sys/condvar.h projects/calloutng/sys/sys/mutex.h projects/calloutng/sys/sys/rwlock.h projects/calloutng/sys/sys/sleepqueue.h projects/calloutng/sys/sys/sx.h projects/calloutng/sys/sys/systm.h projects/calloutng/sys/sys/time.h Modified: projects/calloutng/sys/kern/kern_condvar.c ============================================================================== --- projects/calloutng/sys/kern/kern_condvar.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/kern_condvar.c Wed Dec 12 12:02:58 2012 (r244147) @@ -275,7 +275,7 @@ _cv_wait_sig(struct cv *cvp, struct lock */ int _cv_timedwait(struct cv *cvp, struct lock_object *lock, struct bintime *bt, - int timo, int flags) + struct bintime *precision, int timo, int flags) { WITNESS_SAVE_DECL(lock_witness); struct lock_class *class; @@ -314,7 +314,7 @@ _cv_timedwait(struct cv *cvp, struct loc if (bt == NULL) sleepq_set_timeout_flags(cvp, timo, flags); else - sleepq_set_timeout_bt(cvp, bt, flags); + sleepq_set_timeout_bt(cvp, bt, precision); if (lock != &Giant.lock_object) { if (class->lc_flags & LC_SLEEPABLE) sleepq_release(cvp); @@ -346,7 +346,7 @@ _cv_timedwait(struct cv *cvp, struct loc */ int _cv_timedwait_sig(struct cv *cvp, struct lock_object *lock, - struct bintime *bt, int timo, int flags) + struct bintime *bt, struct bintime *precision, int timo, int flags) { WITNESS_SAVE_DECL(lock_witness); struct lock_class *class; @@ -386,7 +386,7 @@ _cv_timedwait_sig(struct cv *cvp, struct if (bt == NULL) sleepq_set_timeout_flags(cvp, timo, flags); else - sleepq_set_timeout_bt(cvp, bt, flags); + sleepq_set_timeout_bt(cvp, bt, precision); if (lock != &Giant.lock_object) { if (class->lc_flags & LC_SLEEPABLE) sleepq_release(cvp); Modified: projects/calloutng/sys/kern/kern_event.c ============================================================================== --- projects/calloutng/sys/kern/kern_event.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/kern_event.c Wed Dec 12 12:02:58 2012 (r244147) @@ -550,8 +550,8 @@ filt_timerexpire(void *knx) if ((kn->kn_flags & EV_ONESHOT) != EV_ONESHOT) { bt = timer2bintime(kn->kn_sdata); calloutp = (struct callout *)kn->kn_hook; - callout_reset_bt_on(calloutp, &bt, filt_timerexpire, kn, - PCPU_GET(cpuid), C_P1MS); + callout_reset_bt_on(calloutp, &bt, NULL, filt_timerexpire, kn, + PCPU_GET(cpuid), 0); } } @@ -577,8 +577,8 @@ filt_timerattach(struct knote *kn) callout_init(calloutp, CALLOUT_MPSAFE); kn->kn_hook = calloutp; bt = timer2bintime(kn->kn_sdata); - callout_reset_bt_on(calloutp, &bt, filt_timerexpire, kn, - PCPU_GET(cpuid), C_P1MS); + callout_reset_bt_on(calloutp, &bt, NULL, filt_timerexpire, kn, + PCPU_GET(cpuid), 0); return (0); } Modified: projects/calloutng/sys/kern/kern_synch.c ============================================================================== --- projects/calloutng/sys/kern/kern_synch.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/kern_synch.c Wed Dec 12 12:02:58 2012 (r244147) @@ -146,7 +146,8 @@ sleepinit(void) */ int _sleep(void *ident, struct lock_object *lock, int priority, - const char *wmesg, int timo, struct bintime *bt, int flags) + const char *wmesg, int timo, struct bintime *bt, + struct bintime *precision, int flags) { struct thread *td; struct proc *p; @@ -233,7 +234,7 @@ _sleep(void *ident, struct lock_object * */ sleepq_add(ident, lock, wmesg, sleepq_flags, 0); if (bt) - sleepq_set_timeout_bt(ident, bt, flags); + sleepq_set_timeout_bt(ident, bt, precision); else if (timo) sleepq_set_timeout_flags(ident, timo, flags); if (lock != NULL && class->lc_flags & LC_SLEEPABLE) { Modified: projects/calloutng/sys/kern/kern_tc.c ============================================================================== --- projects/calloutng/sys/kern/kern_tc.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/kern_tc.c Wed Dec 12 12:02:58 2012 (r244147) @@ -119,9 +119,12 @@ static int timestepwarnings; SYSCTL_INT(_kern_timecounter, OID_AUTO, stepwarnings, CTLFLAG_RW, ×tepwarnings, 0, "Log time steps"); -int tc_timethreshold; -int tc_timepercentage = TC_DEFAULTPERC; +struct bintime bt_timethreshold; +struct bintime halftick_bt; struct bintime tick_bt; +int tc_timeexp; +int tc_timepercentage = TC_DEFAULTPERC; +int tc_timethreshold; SYSCTL_INT(_kern, OID_AUTO, tc_timepercentage, CTLFLAG_RW, &tc_timepercentage, 0, "Precision percentage tolerance"); @@ -281,7 +284,7 @@ fbclock_getmicrouptime(struct timeval *t do { th = timehands; gen = th->th_generation; - bintime2timeval(&th->th_offset, tvp); + Bintime2timeval(&th->th_offset, tvp); } while (gen == 0 || gen != th->th_generation); } @@ -1715,6 +1718,7 @@ static void inittimecounter(void *dummy) { u_int p; + struct timespec ts; int tick_rate; /* @@ -1730,8 +1734,14 @@ inittimecounter(void *dummy) else tc_tick = 1; tick_rate = hz / tc_tick; - tc_timethreshold = (100 / tc_timepercentage) * (1000000000 / tick_rate); + tc_timethreshold = (1000000000 / (tick_rate * tc_timepercentage)) * 100; + tc_timeexp = fls(roundup2(100 / tc_timepercentage, 2)); + ts.tv_sec = tc_timethreshold / 1000000000; + ts.tv_nsec = tc_timethreshold % 1000000000; + timespec2bintime(&ts, &bt_timethreshold); FREQ2BT(tick_rate, &tick_bt); + halftick_bt = tick_bt; + bintime_divpow2(&halftick_bt, 1); p = (tc_tick * 1000000) / hz; printf("Timecounters tick every %d.%03u msec\n", p / 1000, p % 1000); Modified: projects/calloutng/sys/kern/kern_time.c ============================================================================== --- projects/calloutng/sys/kern/kern_time.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/kern_time.c Wed Dec 12 12:02:58 2012 (r244147) @@ -483,35 +483,42 @@ int kern_nanosleep(struct thread *td, struct timespec *rqt, struct timespec *rmt) { struct timespec ts; - struct bintime bt, bt2, tmp; + struct bintime bt, btt, bt_prec, tmp; int error; if (rqt->tv_nsec < 0 || rqt->tv_nsec >= 1000000000) return (EINVAL); if (rqt->tv_sec < 0 || (rqt->tv_sec == 0 && rqt->tv_nsec == 0)) return (0); - binuptime(&bt); timespec2bintime(rqt, &tmp); - bintime_add(&bt,&tmp); - for (;;) { - error = tsleep_bt(&nanowait, PWAIT | PCATCH, "nanslp", &bt, 0); - binuptime(&bt2); - if (error != EWOULDBLOCK) { - if (error == ERESTART) - error = EINTR; - if (rmt != NULL) { - tmp = bt; - bintime_sub(&tmp, &bt2); - bintime2timespec(&tmp, &ts); - if (ts.tv_sec < 0) - timespecclear(&ts); - *rmt = ts; - } - return (error); + TIMESEL(&bt, &tmp); + bintime_add(&bt, &tmp); + bt_prec = tmp; + bintime_divpow2(&bt_prec, tc_timeexp); + if (rqt->tv_nsec > tc_timethreshold) { + bintime_add(&bt, &tick_bt); + if (bintime_cmp(&bt_prec, &halftick_bt, <)) + bt_prec = halftick_bt; + } + bintime_add(&bt, &bt_prec); + error = tsleep_bt(&nanowait, PWAIT | PCATCH, "nanslp", &bt, &bt_prec); + TIMESEL(&btt, &tmp); + if (error != EWOULDBLOCK) { + if (error == ERESTART) + error = EINTR; + if (rmt != NULL) { + tmp = bt; + bintime_sub(&tmp, &btt); + bintime2timespec(&tmp, &ts); + if (ts.tv_sec < 0) + timespecclear(&ts); + *rmt = ts; } - if (bintime_cmp(&bt2, &bt, >=)) + if (bintime_cmp(&btt, &bt, >=)) return (0); + return (error); } + return (0); } #ifndef _SYS_SYSPROTO_H_ Modified: projects/calloutng/sys/kern/kern_timeout.c ============================================================================== --- projects/calloutng/sys/kern/kern_timeout.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/kern_timeout.c Wed Dec 12 12:02:58 2012 (r244147) @@ -567,11 +567,10 @@ callout_lock(struct callout *c) static void callout_cc_add(struct callout *c, struct callout_cpu *cc, - struct bintime to_bintime, void (*func)(void *), void *arg, int cpu, - int flags) + struct bintime to_bintime, struct bintime precision, void (*func)(void *), + void *arg, int cpu, int flags) { struct bintime bt; - uint64_t r_val; int bucket; CC_LOCK_ASSERT(cc); @@ -584,11 +583,10 @@ callout_cc_add(struct callout *c, struct c->c_flags &= ~CALLOUT_PROCESSED; c->c_func = func; c->c_time = to_bintime; - bintime_clear(&c->c_precision); - r_val = C_PABS2BT(flags); - c->c_precision.frac = r_val; - CTR3(KTR_CALLOUT, "precision set for %p: 0.%08x%08", - c, (u_int) (r_val >> 32), (u_int) (r_val & 0xffffffff)); + c->c_precision = precision; + CTR4(KTR_CALLOUT, "precision set for %p: %d.%08x%08x", + c, c->precision.sec, (u_int) (c->c_precision.frac >> 32), + (u_int) (c->c_precision.frac & 0xffffffff)); bucket = get_bucket(&c->c_time); TAILQ_INSERT_TAIL(&cc->cc_callwheel[bucket], c, c_links.tqe); /* @@ -769,8 +767,8 @@ skip: new_cc = callout_cpu_switch(c, cc, new_cpu); flags = (direct) ? C_DIRECT_EXEC : 0; - callout_cc_add(c, new_cc, new_time, new_func, new_arg, - new_cpu, flags); + callout_cc_add(c, new_cc, new_time, c->c_precision, new_func, + new_arg, new_cpu, flags); CC_UNLOCK(new_cc); CC_LOCK(cc); #else @@ -924,23 +922,32 @@ callout_handle_init(struct callout_handl * callout_pending() - returns truth if callout is still waiting for timeout * callout_deactivate() - marks the callout as having been serviced */ -int -_callout_reset_on(struct callout *c, struct bintime *bt, int to_ticks, - void (*ftn)(void *), void *arg, int cpu, int flags) +int +_callout_reset_on(struct callout *c, struct bintime *bt, + struct bintime *precision, int to_ticks, void (*ftn)(void *), + void *arg, int cpu, int flags) { - struct bintime now, to_bt; + struct bintime now, to_bt, pr; struct callout_cpu *cc; int bucket, cancelled, direct; cancelled = 0; if (bt == NULL) { FREQ2BT(hz, &to_bt); + pr = to_bt; getbinuptime(&now); if (to_ticks > 0) bintime_mul(&to_bt, to_ticks); bintime_add(&to_bt, &now); - } else + to_ticks >>= C_PRELGET(flags); + bintime_mul(&pr, to_ticks); + } else { to_bt = *bt; + if (precision != NULL) + pr = *precision; + else + bintime_clear(&pr); + } /* * Don't allow migration of pre-allocated callouts lest they * become unbalanced. @@ -1013,7 +1020,7 @@ _callout_reset_on(struct callout *c, str } #endif - callout_cc_add(c, cc, to_bt, ftn, arg, cpu, flags); + callout_cc_add(c, cc, to_bt, pr, ftn, arg, cpu, flags); CTR6(KTR_CALLOUT, "%sscheduled %p func %p arg %p in %d.%08x", cancelled ? "re" : "", c, c->c_func, c->c_arg, (int)(to_bt.sec), (u_int)(to_bt.frac >> 32)); Modified: projects/calloutng/sys/kern/subr_sleepqueue.c ============================================================================== --- projects/calloutng/sys/kern/subr_sleepqueue.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/subr_sleepqueue.c Wed Dec 12 12:02:58 2012 (r244147) @@ -363,7 +363,8 @@ sleepq_add(void *wchan, struct lock_obje * sleep queue after timo ticks if the thread has not already been awakened. */ void -_sleepq_set_timeout(void *wchan, struct bintime *bt, int timo, int flags) +_sleepq_set_timeout(void *wchan, struct bintime *bt, struct bintime *precision, + int timo, int flags) { struct sleepqueue_chain *sc; @@ -379,7 +380,7 @@ _sleepq_set_timeout(void *wchan, struct callout_reset_flags_on(&td->td_slpcallout, timo, sleepq_timeout, td, PCPU_GET(cpuid), flags | C_DIRECT_EXEC); else - callout_reset_bt_on(&td->td_slpcallout, bt, + callout_reset_bt_on(&td->td_slpcallout, bt, precision, sleepq_timeout, td, PCPU_GET(cpuid), flags | C_DIRECT_EXEC); } Modified: projects/calloutng/sys/kern/sys_generic.c ============================================================================== --- projects/calloutng/sys/kern/sys_generic.c Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/kern/sys_generic.c Wed Dec 12 12:02:58 2012 (r244147) @@ -102,7 +102,8 @@ static int dofilewrite(struct thread *, off_t, int); static void doselwakeup(struct selinfo *, int); static void seltdinit(struct thread *); -static int seltdwait(struct thread *, struct bintime *, int); +static int seltdwait(struct thread *, struct bintime *, struct bintime *, + int); static void seltdclear(struct thread *); /* @@ -902,11 +903,12 @@ kern_select(struct thread *td, int nd, f */ fd_mask s_selbits[howmany(2048, NFDBITS)]; fd_mask *ibits[3], *obits[3], *selbits, *sbp; - struct bintime abt, rbt; + struct bintime abt, precision, rbt; struct timeval atv; - int error, lf, ndu, timo; + int error, lf, ndu; u_int nbufbytes, ncpbytes, ncpubytes, nfdbits; + timevalclear(&atv); if (nd < 0) return (EINVAL); fdp = td->td_proc->p_fd; @@ -1002,9 +1004,17 @@ kern_select(struct thread *td, int nd, f error = EINVAL; goto done; } - binuptime(&rbt); timeval2bintime(&atv, &abt); + TIMESEL(&rbt, &abt); bintime_add(&abt, &rbt); + precision = abt; + bintime_divpow2(&precision, tc_timeexp); + if (bintime_cmp(&tick_bt, &precision, >)) { + bintime_add(&abt, &tick_bt); + if (bintime_cmp(&precision, &halftick_bt, <)) + precision = halftick_bt; + } + bintime_add(&abt, &precision); } else { abt.sec = 0; abt.frac = 0; @@ -1016,14 +1026,13 @@ kern_select(struct thread *td, int nd, f if (error || td->td_retval[0] != 0) break; if (abt.sec || abt.frac) { - binuptime(&rbt); + TIMESEL(&rbt, &abt); if (bintime_cmp(&rbt, &abt, >=)) break; - error = seltdwait(td, &abt, 0); + error = seltdwait(td, &abt, &precision, 0); } else { - timo = 0; - error = seltdwait(td, NULL, timo); + error = seltdwait(td, NULL, NULL, 0); } if (error) break; @@ -1256,12 +1265,13 @@ sys_poll(td, uap) { struct pollfd *bits; struct pollfd smallbits[32]; - struct bintime abt, rbt; + struct bintime abt, precision, rbt; struct timeval atv; - int error, timo; + int error; u_int nfds; size_t ni; + timevalclear(&atv); nfds = uap->nfds; if (nfds > maxfilesperproc && nfds > FD_SETSIZE) return (EINVAL); @@ -1281,9 +1291,17 @@ sys_poll(td, uap) error = EINVAL; goto done; } - binuptime(&rbt); timeval2bintime(&atv, &abt); + TIMESEL(&rbt, &abt); + precision = abt; bintime_add(&abt, &rbt); + bintime_divpow2(&precision, tc_timeexp); + if (atv.tv_usec * 1000 > tc_timethreshold) { + bintime_add(&abt, &tick_bt); + if (bintime_cmp(&precision, &halftick_bt, <)) + precision = halftick_bt; + } + bintime_add(&abt, &precision); } else { abt.sec = 0; abt.frac = 0; @@ -1295,13 +1313,12 @@ sys_poll(td, uap) if (error || td->td_retval[0] != 0) break; if (abt.sec || abt.frac) { - binuptime(&rbt); + TIMESEL(&rbt, &abt); if (bintime_cmp(&rbt, &abt, >=)) break; - error = seltdwait(td, &abt, 0); + error = seltdwait(td, &abt, &precision, 0); } else { - timo = 0; - error = seltdwait(td, NULL, timo); + error = seltdwait(td, NULL, NULL, 0); } if (error) break; @@ -1644,7 +1661,8 @@ out: } static int -seltdwait(struct thread *td, struct bintime *bt, int timo) +seltdwait(struct thread *td, struct bintime *bt, struct bintime *precision, + int timo) { struct seltd *stp; int error; @@ -1667,7 +1685,7 @@ seltdwait(struct thread *td, struct bint error = cv_timedwait_sig(&stp->st_wait, &stp->st_mtx, timo); else if (bt != NULL) error = cv_timedwait_sig_bt(&stp->st_wait, &stp->st_mtx, - bt, 0); + bt, precision); else error = cv_wait_sig(&stp->st_wait, &stp->st_mtx); mtx_unlock(&stp->st_mtx); Modified: projects/calloutng/sys/ofed/include/linux/timer.h ============================================================================== --- projects/calloutng/sys/ofed/include/linux/timer.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/ofed/include/linux/timer.h Wed Dec 12 12:02:58 2012 (r244147) @@ -38,10 +38,9 @@ struct timer_list { struct callout timer_callout; void (*function)(unsigned long); unsigned long data; + int expires; }; -#define expires timer_callout.c_time - static inline void _timer_fn(void *context) { @@ -65,13 +64,16 @@ do { \ callout_init(&(timer)->timer_callout, CALLOUT_MPSAFE); \ } while (0) -#define mod_timer(timer, expire) \ - callout_reset(&(timer)->timer_callout, (expire) - jiffies, \ - _timer_fn, (timer)) +#define mod_timer(timer, exp) \ +do { \ + (timer)->expires = exp; \ + callout_reset(&(timer)->timer_callout, (exp) - jiffies, \ + _timer_fn, (timer)); \ +} while (0) #define add_timer(timer) \ callout_reset(&(timer)->timer_callout, \ - (timer)->timer_callout.c_time - jiffies, _timer_fn, (timer)) + (timer)->expires - jiffies, _timer_fn, (timer)) #define del_timer(timer) callout_stop(&(timer)->timer_callout) #define del_timer_sync(timer) callout_drain(&(timer)->timer_callout) Modified: projects/calloutng/sys/sys/callout.h ============================================================================== --- projects/calloutng/sys/sys/callout.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/callout.h Wed Dec 12 12:02:58 2012 (r244147) @@ -51,25 +51,11 @@ #define CALLOUT_DIRECT 0x0100 /* allow exec from hw int context */ #define C_DIRECT_EXEC 0x0001 /* direct execution of callout */ -#define C_PABSBITS 24 -#define C_PABSMASK (~((1 << (32 - C_PABSBITS)) - 1)) -#define C_PABSRANGE ((1 << C_PABSBITS) - 1) -#define C_BT2PABS(x) ((x) >> 40) -#define C_SETPABS(x) (((x) & C_PABSRANGE) << 8) -#define C_US2PABS(x) (((x) * 4294) & ~C_PABSMASK) -#define C_PABS2BT(x) ((uint64_t)(flags & C_PABSMASK) << 32) -#define C_PRELBITS 5 +#define C_PRELBITS 7 #define C_PRELRANGE ((1 << C_PRELBITS) - 1) -#define C_PRELSET(x) (((x) & C_PRELRANGE) << 1) +#define C_PRELSET(x) ((x) << 1) #define C_PRELGET(x) (((x) >> 1) & C_PRELRANGE) -/* - * Common values specified for precision. - */ -#define C_P1MS C_US2PABS(1000) -#define C_P10MS C_US2PABS(10000) -#define C_P100MS C_US2PABS(100000) - struct callout_handle { struct callout *callout; }; @@ -89,16 +75,16 @@ void _callout_init_lock(struct callout * _callout_init_lock((c), ((rw) != NULL) ? &(rw)->lock_object : \ NULL, (flags)) #define callout_pending(c) ((c)->c_flags & CALLOUT_PENDING) -int _callout_reset_on(struct callout *, struct bintime *, int, - void (*)(void *), void *, int, int); +int _callout_reset_on(struct callout *, struct bintime *, + struct bintime *, int, void (*)(void *), void *, int, int); #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ - _callout_reset_on((c), (NULL), (to_ticks), (fn), (arg), (cpu), \ - (0)) + _callout_reset_on((c), NULL, NULL, (to_ticks), (fn), (arg), \ + (cpu), 0) #define callout_reset_flags_on(c, to_ticks, fn, arg, cpu, flags) \ - _callout_reset_on((c), (NULL), (to_ticks), (fn), (arg), (cpu), \ - (flags)) -#define callout_reset_bt_on(c, bt, fn, arg, cpu, flags) \ - _callout_reset_on((c), (bt), (0), (fn), (arg), (cpu), (flags)) + _callout_reset_on((c), NULL, NULL, (to_ticks), (fn), (arg), (cpu), \ + (flags)) +#define callout_reset_bt_on(c, bt, pr, fn, arg, cpu, flags) \ + _callout_reset_on((c), (bt), (pr), 0, (fn), (arg), (cpu), (flags)) #define callout_reset(c, on_tick, fn, arg) \ callout_reset_on((c), (on_tick), (fn), (arg), (c)->c_cpu) #define callout_reset_curcpu(c, on_tick, fn, arg) \ Modified: projects/calloutng/sys/sys/condvar.h ============================================================================== --- projects/calloutng/sys/sys/condvar.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/condvar.h Wed Dec 12 12:02:58 2012 (r244147) @@ -56,9 +56,11 @@ void _cv_wait(struct cv *cvp, struct loc void _cv_wait_unlock(struct cv *cvp, struct lock_object *lock); int _cv_wait_sig(struct cv *cvp, struct lock_object *lock); int _cv_timedwait(struct cv *cvp, struct lock_object *lock, - struct bintime *bt, int timo, int flags); + struct bintime *bt, struct bintime *precision, int timo, + int flags); int _cv_timedwait_sig(struct cv *cvp, struct lock_object *lock, - struct bintime *bt, int timo, int flags); + struct bintime *bt, struct bintime *precision, int timo, + int flags); void cv_signal(struct cv *cvp); void cv_broadcastpri(struct cv *cvp, int pri); @@ -70,20 +72,23 @@ void cv_broadcastpri(struct cv *cvp, int #define cv_wait_sig(cvp, lock) \ _cv_wait_sig((cvp), &(lock)->lock_object) #define cv_timedwait(cvp, lock, timo) \ - _cv_timedwait((cvp), &(lock)->lock_object, NULL, (timo), 0) -#define cv_timedwait_bt(cvp, lock, bt, flags) \ - _cv_timedwait_sig((cvp), &(lock)->lock_object, (bt), 0, 0) -#define cv_timedwait_sig_bt(cvp, lock, bt, flags) \ - _cv_timedwait_sig((cvp), &(lock)->lock_object, (bt), 0, \ - (flags)) + _cv_timedwait((cvp), &(lock)->lock_object, NULL, NULL, \ + (timo), 0) +#define cv_timedwait_bt(cvp, lock, bt, pr) \ + _cv_timedwait_sig((cvp), &(lock)->lock_object, (bt), \ + (pr), 0, 0) +#define cv_timedwait_sig_bt(cvp, lock, bt, pr) \ + _cv_timedwait_sig((cvp), &(lock)->lock_object, (bt), (pr), 0, \ + 0) #define cv_timedwait_flags(cvp, lock, timo, flags) \ - _cv_timedwait((cvp), &(lock)->lock_object, NULL, (timo), \ + _cv_timedwait((cvp), &(lock)->lock_object, NULL, NULL, (timo), \ (flags)) #define cv_timedwait_sig(cvp, lock, timo) \ - _cv_timedwait_sig((cvp), &(lock)->lock_object, NULL, (timo), 0) + _cv_timedwait_sig((cvp), &(lock)->lock_object, NULL, NULL, \ + (timo), 0) #define cv_timedwait_sig_flags(cvp, lock, timo, flags) \ - _cv_timedwait_sig((cvp), &(lock)->lock_object, NULL, (timo), \ - (flags)) + _cv_timedwait_sig((cvp), &(lock)->lock_object, NULL, NULL, \ + (timo), (flags)) #define cv_broadcast(cvp) cv_broadcastpri(cvp, 0) Modified: projects/calloutng/sys/sys/mutex.h ============================================================================== --- projects/calloutng/sys/sys/mutex.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/mutex.h Wed Dec 12 12:02:58 2012 (r244147) @@ -377,7 +377,7 @@ extern struct mtx_pool *mtxpool_sleep; #define mtx_sleep(chan, mtx, pri, wmesg, timo) \ _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo), \ - NULL, 0) + NULL, NULL, 0) #define mtx_initialized(m) lock_initalized(&(m)->lock_object) Modified: projects/calloutng/sys/sys/rwlock.h ============================================================================== --- projects/calloutng/sys/sys/rwlock.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/rwlock.h Wed Dec 12 12:02:58 2012 (r244147) @@ -211,7 +211,8 @@ void __rw_assert(const volatile uintptr_ rw_runlock(rw); \ } while (0) #define rw_sleep(chan, rw, pri, wmesg, timo) \ - _sleep((chan), &(rw)->lock_object, (pri), (wmesg), (timo), NULL, 0) + _sleep((chan), &(rw)->lock_object, (pri), (wmesg), (timo), \ + NULL, NULL, 0) #define rw_initialized(rw) lock_initalized(&(rw)->lock_object) Modified: projects/calloutng/sys/sys/sleepqueue.h ============================================================================== --- projects/calloutng/sys/sys/sleepqueue.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/sleepqueue.h Wed Dec 12 12:02:58 2012 (r244147) @@ -108,14 +108,14 @@ struct sleepqueue *sleepq_lookup(void *w void sleepq_release(void *wchan); void sleepq_remove(struct thread *td, void *wchan); int sleepq_signal(void *wchan, int flags, int pri, int queue); -void _sleepq_set_timeout(void *wchan, struct bintime *bt, int timo, - int flags); +void _sleepq_set_timeout(void *wchan, struct bintime *bt, + struct bintime *precision, int timo, int flags); #define sleepq_set_timeout(wchan, timo) \ - _sleepq_set_timeout((wchan), NULL, (timo), 0) + _sleepq_set_timeout((wchan), NULL, NULL, (timo), 0) #define sleepq_set_timeout_flags(wchan, timo, flags) \ - _sleepq_set_timeout((wchan), NULL, (timo), (flags)) -#define sleepq_set_timeout_bt(wchan, bt, flags) \ - _sleepq_set_timeout((wchan), (bt), 0, (flags)) + _sleepq_set_timeout((wchan), NULL, NULL, (timo), (flags)) +#define sleepq_set_timeout_bt(wchan, bt, precision) \ + _sleepq_set_timeout((wchan), (bt), (precision), 0, 0) u_int sleepq_sleepcnt(void *wchan, int queue); int sleepq_timedwait(void *wchan, int pri); int sleepq_timedwait_sig(void *wchan, int pri); Modified: projects/calloutng/sys/sys/sx.h ============================================================================== --- projects/calloutng/sys/sys/sx.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/sx.h Wed Dec 12 12:02:58 2012 (r244147) @@ -276,7 +276,7 @@ __sx_sunlock(struct sx *sx, const char * #define sx_sleep(chan, sx, pri, wmesg, timo) \ _sleep((chan), &(sx)->lock_object, (pri), (wmesg), (timo), \ - NULL, 0) + NULL, NULL, 0) /* * Options passed to sx_init_flags(). Modified: projects/calloutng/sys/sys/systm.h ============================================================================== --- projects/calloutng/sys/sys/systm.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/systm.h Wed Dec 12 12:02:58 2012 (r244147) @@ -341,23 +341,24 @@ static __inline void splx(intrmask_t ip * less often. */ int _sleep(void *chan, struct lock_object *lock, int pri, const char *wmesg, - int timo, struct bintime *bt, int flags) __nonnull(1); + int timo, struct bintime *bt, struct bintime *precision, + int flags) __nonnull(1); #define msleep(chan, mtx, pri, wmesg, timo) \ _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo), \ - NULL, 0) + NULL, NULL, 0) #define msleep_flags(chan, mtx, pri, wmesg, timo, flags) \ _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo), \ - NULL, (flags)) -#define msleep_bt(chan, mtx, pri, wmesg, bt, flags) \ + NULL, NULL, (flags)) +#define msleep_bt(chan, mtx, pri, wmesg, bt, pr) \ _sleep((chan), &(mtx)->lock_object, (pri), (wmesg) 0, (bt), \ - (flags)) + (pr), 0) int msleep_spin(void *chan, struct mtx *mtx, const char *wmesg, int timo) __nonnull(1); int pause(const char *wmesg, int timo); #define tsleep(chan, pri, wmesg, timo) \ - _sleep((chan), NULL, (pri), (wmesg), (timo), NULL, 0) -#define tsleep_bt(chan, pri, wmesg, bt, flags) \ - _sleep((chan), NULL, (pri), (wmesg), 0, (bt), (flags)) + _sleep((chan), NULL, (pri), (wmesg), (timo), NULL, NULL, 0) +#define tsleep_bt(chan, pri, wmesg, bt, pr) \ + _sleep((chan), NULL, (pri), (wmesg), 0, (bt), (pr), 0) void wakeup(void *chan) __nonnull(1); void wakeup_one(void *chan) __nonnull(1); Modified: projects/calloutng/sys/sys/time.h ============================================================================== --- projects/calloutng/sys/sys/time.h Wed Dec 12 11:53:15 2012 (r244146) +++ projects/calloutng/sys/sys/time.h Wed Dec 12 12:02:58 2012 (r244147) @@ -102,6 +102,15 @@ bintime_mul(struct bintime *bt, u_int x) bt->frac = (p2 << 32) | (p1 & 0xffffffffull); } +static __inline void +bintime_divpow2(struct bintime *bt, u_int exp) +{ + + bt->frac >>= exp; + bt->frac |= (uint64_t)bt->sec << (64 - exp); + bt->sec >>= exp; +} + #define bintime_clear(a) ((a)->sec = (a)->frac = 0) #define bintime_isset(a) ((a)->sec || (a)->frac) #define bintime_cmp(a, b, cmp) \ @@ -290,9 +299,13 @@ void resettodr(void); extern time_t time_second; extern time_t time_uptime; extern struct bintime boottimebin; +extern struct bintime halftick_bt; extern struct bintime tick_bt; extern struct timeval boottime; +extern int tc_timeexp; +extern int tc_timepercentage; extern int tc_timethreshold; +extern struct bintime bt_timethreshold; /* * Functions for looking at our clock: [get]{bin,nano,micro}[up]time() @@ -342,18 +355,19 @@ int tvtohz(struct timeval *tv); #define TC_DEFAULTPERC 5 -#define FREQ2BT(freq, bt) \ -{ \ - (bt)->sec = 0; \ - (bt)->frac = ((uint64_t)0x8000000000000000 / (freq)) << 1; \ -} #define BT2FREQ(bt) \ - (((uint64_t)0x8000000000000000 + ((bt)->frac >> 2)) / \ - ((bt)->frac >> 1)) + (((uint64_t)0x8000000000000000 + ((bt)->frac >> 2)) / \ + ((bt)->frac >> 1)) -#define TIMESEL(x, bt) \ - ((x) < tc_timethreshold ? (binuptime : getbinuptime(&(bt))) +#define FREQ2BT(freq, bt) \ +{ \ + (bt)->sec = 0; \ + (bt)->frac = ((uint64_t)0x8000000000000000 / (freq)) << 1; \ +} +#define TIMESEL(bt, bt2) \ + ((bintime_cmp((bt2), (&bt_timethreshold), >=)) ? \ + binuptime((bt)) : getbinuptime((bt))) #else /* !_KERNEL */ #include From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 12:14:06 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90EF7D17; Wed, 12 Dec 2012 12:14:06 +0000 (UTC) (envelope-from davide@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 752678FC0A; Wed, 12 Dec 2012 12:14:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBCCE6l9042620; Wed, 12 Dec 2012 12:14:06 GMT (envelope-from davide@svn.freebsd.org) Received: (from davide@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBCCE6iA042618; Wed, 12 Dec 2012 12:14:06 GMT (envelope-from davide@svn.freebsd.org) Message-Id: <201212121214.qBCCE6iA042618@svn.freebsd.org> From: Davide Italiano Date: Wed, 12 Dec 2012 12:14:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244148 - projects/calloutng/sys/kern X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 12:14:06 -0000 Author: davide Date: Wed Dec 12 12:14:05 2012 New Revision: 244148 URL: http://svnweb.freebsd.org/changeset/base/244148 Log: FREQ2BT is an heavy 64-bit division. There's no need to compute that everytime we enter in callout_reset_on(), in particular if the input is a costant and precalculated value. Modified: projects/calloutng/sys/kern/kern_timeout.c Modified: projects/calloutng/sys/kern/kern_timeout.c ============================================================================== --- projects/calloutng/sys/kern/kern_timeout.c Wed Dec 12 12:02:58 2012 (r244147) +++ projects/calloutng/sys/kern/kern_timeout.c Wed Dec 12 12:14:05 2012 (r244148) @@ -933,8 +933,7 @@ _callout_reset_on(struct callout *c, str cancelled = 0; if (bt == NULL) { - FREQ2BT(hz, &to_bt); - pr = to_bt; + pr = to_bt = tick_bt; getbinuptime(&now); if (to_ticks > 0) bintime_mul(&to_bt, to_ticks); From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 12:24:54 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADC4D639; Wed, 12 Dec 2012 12:24:54 +0000 (UTC) (envelope-from davide@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9378B8FC12; Wed, 12 Dec 2012 12:24:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBCCOsOZ045650; Wed, 12 Dec 2012 12:24:54 GMT (envelope-from davide@svn.freebsd.org) Received: (from davide@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBCCOsKG045649; Wed, 12 Dec 2012 12:24:54 GMT (envelope-from davide@svn.freebsd.org) Message-Id: <201212121224.qBCCOsKG045649@svn.freebsd.org> From: Davide Italiano Date: Wed, 12 Dec 2012 12:24:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244149 - projects/calloutng/sys/kern X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 12:24:54 -0000 Author: davide Date: Wed Dec 12 12:24:54 2012 New Revision: 244149 URL: http://svnweb.freebsd.org/changeset/base/244149 Log: Precision-calculation code for old KPI doesn't work very well in case timeout is short. Suggested by: mav Modified: projects/calloutng/sys/kern/kern_timeout.c Modified: projects/calloutng/sys/kern/kern_timeout.c ============================================================================== --- projects/calloutng/sys/kern/kern_timeout.c Wed Dec 12 12:14:05 2012 (r244148) +++ projects/calloutng/sys/kern/kern_timeout.c Wed Dec 12 12:24:54 2012 (r244149) @@ -939,7 +939,10 @@ _callout_reset_on(struct callout *c, str bintime_mul(&to_bt, to_ticks); bintime_add(&to_bt, &now); to_ticks >>= C_PRELGET(flags); - bintime_mul(&pr, to_ticks); + if (to_ticks == 0) + pr = halftick_bt; + else + bintime_mul(&pr, to_ticks); } else { to_bt = *bt; if (precision != NULL) From owner-svn-src-projects@FreeBSD.ORG Wed Dec 12 12:37:50 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA771B92; Wed, 12 Dec 2012 12:37:50 +0000 (UTC) (envelope-from davide@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id AB2548FC08; Wed, 12 Dec 2012 12:37:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBCCboFS048213; Wed, 12 Dec 2012 12:37:50 GMT (envelope-from davide@svn.freebsd.org) Received: (from davide@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBCCbiSo048169; Wed, 12 Dec 2012 12:37:44 GMT (envelope-from davide@svn.freebsd.org) Message-Id: <201212121237.qBCCbiSo048169@svn.freebsd.org> From: Davide Italiano Date: Wed, 12 Dec 2012 12:37:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244150 - in projects/calloutng: bin/df contrib/bind9 contrib/bind9/bin contrib/bind9/bin/check contrib/bind9/bin/confgen contrib/bind9/bin/confgen/unix contrib/bind9/bin/dig contrib/bi... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 12:37:50 -0000 Author: davide Date: Wed Dec 12 12:37:43 2012 New Revision: 244150 URL: http://svnweb.freebsd.org/changeset/base/244150 Log: MFC as per r244149. Added: projects/calloutng/contrib/bind9/lib/dns/opensslecdsa_link.c - copied unchanged from r244149, head/contrib/bind9/lib/dns/opensslecdsa_link.c projects/calloutng/sys/rpc/krpc.h - copied unchanged from r244149, head/sys/rpc/krpc.h Modified: projects/calloutng/bin/df/df.c projects/calloutng/contrib/bind9/CHANGES projects/calloutng/contrib/bind9/Makefile.in projects/calloutng/contrib/bind9/README projects/calloutng/contrib/bind9/acconfig.h projects/calloutng/contrib/bind9/bin/Makefile.in projects/calloutng/contrib/bind9/bin/check/Makefile.in projects/calloutng/contrib/bind9/bin/check/check-tool.c projects/calloutng/contrib/bind9/bin/confgen/Makefile.in projects/calloutng/contrib/bind9/bin/confgen/unix/Makefile.in projects/calloutng/contrib/bind9/bin/dig/Makefile.in projects/calloutng/contrib/bind9/bin/dig/nslookup.c projects/calloutng/contrib/bind9/bin/dnssec/Makefile.in projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/calloutng/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/calloutng/contrib/bind9/bin/dnssec/dnssec-settime.c projects/calloutng/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/calloutng/contrib/bind9/bin/named/Makefile.in projects/calloutng/contrib/bind9/bin/named/builtin.c projects/calloutng/contrib/bind9/bin/named/config.c projects/calloutng/contrib/bind9/bin/named/controlconf.c projects/calloutng/contrib/bind9/bin/named/convertxsl.pl projects/calloutng/contrib/bind9/bin/named/query.c projects/calloutng/contrib/bind9/bin/named/server.c projects/calloutng/contrib/bind9/bin/named/statschannel.c projects/calloutng/contrib/bind9/bin/named/unix/Makefile.in projects/calloutng/contrib/bind9/bin/nsupdate/Makefile.in projects/calloutng/contrib/bind9/bin/nsupdate/nsupdate.c projects/calloutng/contrib/bind9/bin/rndc/Makefile.in projects/calloutng/contrib/bind9/bin/tools/Makefile.in projects/calloutng/contrib/bind9/config.h.in projects/calloutng/contrib/bind9/configure.in projects/calloutng/contrib/bind9/doc/Makefile.in projects/calloutng/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.html projects/calloutng/contrib/bind9/doc/arm/Bv9ARM.pdf projects/calloutng/contrib/bind9/doc/arm/Makefile.in projects/calloutng/contrib/bind9/doc/arm/man.arpaname.html projects/calloutng/contrib/bind9/doc/arm/man.ddns-confgen.html projects/calloutng/contrib/bind9/doc/arm/man.dig.html projects/calloutng/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/calloutng/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/calloutng/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/calloutng/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/calloutng/contrib/bind9/doc/arm/man.dnssec-settime.html projects/calloutng/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/calloutng/contrib/bind9/doc/arm/man.genrandom.html projects/calloutng/contrib/bind9/doc/arm/man.host.html projects/calloutng/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/calloutng/contrib/bind9/doc/arm/man.named-checkconf.html projects/calloutng/contrib/bind9/doc/arm/man.named-checkzone.html projects/calloutng/contrib/bind9/doc/arm/man.named-journalprint.html projects/calloutng/contrib/bind9/doc/arm/man.named.html projects/calloutng/contrib/bind9/doc/arm/man.nsec3hash.html projects/calloutng/contrib/bind9/doc/arm/man.nsupdate.html projects/calloutng/contrib/bind9/doc/arm/man.rndc-confgen.html projects/calloutng/contrib/bind9/doc/arm/man.rndc.conf.html projects/calloutng/contrib/bind9/doc/arm/man.rndc.html projects/calloutng/contrib/bind9/doc/misc/Makefile.in projects/calloutng/contrib/bind9/doc/misc/format-options.pl projects/calloutng/contrib/bind9/doc/misc/options projects/calloutng/contrib/bind9/doc/misc/sort-options.pl projects/calloutng/contrib/bind9/isc-config.sh.in projects/calloutng/contrib/bind9/lib/Makefile.in projects/calloutng/contrib/bind9/lib/bind9/Makefile.in projects/calloutng/contrib/bind9/lib/bind9/api projects/calloutng/contrib/bind9/lib/bind9/check.c projects/calloutng/contrib/bind9/lib/bind9/include/Makefile.in projects/calloutng/contrib/bind9/lib/bind9/include/bind9/Makefile.in projects/calloutng/contrib/bind9/lib/dns/Makefile.in projects/calloutng/contrib/bind9/lib/dns/adb.c projects/calloutng/contrib/bind9/lib/dns/api projects/calloutng/contrib/bind9/lib/dns/db.c projects/calloutng/contrib/bind9/lib/dns/dnssec.c projects/calloutng/contrib/bind9/lib/dns/ds.c projects/calloutng/contrib/bind9/lib/dns/dst_api.c projects/calloutng/contrib/bind9/lib/dns/dst_internal.h projects/calloutng/contrib/bind9/lib/dns/dst_openssl.h projects/calloutng/contrib/bind9/lib/dns/dst_parse.c projects/calloutng/contrib/bind9/lib/dns/dst_parse.h projects/calloutng/contrib/bind9/lib/dns/dst_result.c projects/calloutng/contrib/bind9/lib/dns/include/Makefile.in projects/calloutng/contrib/bind9/lib/dns/include/dns/db.h projects/calloutng/contrib/bind9/lib/dns/include/dns/dnssec.h projects/calloutng/contrib/bind9/lib/dns/include/dns/ds.h projects/calloutng/contrib/bind9/lib/dns/include/dns/iptable.h projects/calloutng/contrib/bind9/lib/dns/include/dns/keyvalues.h projects/calloutng/contrib/bind9/lib/dns/include/dns/log.h projects/calloutng/contrib/bind9/lib/dns/include/dns/rdataset.h projects/calloutng/contrib/bind9/lib/dns/include/dns/rpz.h projects/calloutng/contrib/bind9/lib/dns/include/dns/stats.h projects/calloutng/contrib/bind9/lib/dns/include/dns/view.h projects/calloutng/contrib/bind9/lib/dns/include/dns/zone.h projects/calloutng/contrib/bind9/lib/dns/include/dst/Makefile.in projects/calloutng/contrib/bind9/lib/dns/include/dst/dst.h projects/calloutng/contrib/bind9/lib/dns/include/dst/result.h projects/calloutng/contrib/bind9/lib/dns/log.c projects/calloutng/contrib/bind9/lib/dns/master.c projects/calloutng/contrib/bind9/lib/dns/masterdump.c projects/calloutng/contrib/bind9/lib/dns/openssl_link.c projects/calloutng/contrib/bind9/lib/dns/openssldh_link.c projects/calloutng/contrib/bind9/lib/dns/openssldsa_link.c projects/calloutng/contrib/bind9/lib/dns/opensslgost_link.c projects/calloutng/contrib/bind9/lib/dns/opensslrsa_link.c projects/calloutng/contrib/bind9/lib/dns/rbtdb.c projects/calloutng/contrib/bind9/lib/dns/rcode.c projects/calloutng/contrib/bind9/lib/dns/rdata.c projects/calloutng/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/calloutng/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/calloutng/contrib/bind9/lib/dns/rdataset.c projects/calloutng/contrib/bind9/lib/dns/resolver.c projects/calloutng/contrib/bind9/lib/dns/rpz.c projects/calloutng/contrib/bind9/lib/dns/spnego_asn1.pl projects/calloutng/contrib/bind9/lib/dns/validator.c projects/calloutng/contrib/bind9/lib/dns/view.c projects/calloutng/contrib/bind9/lib/dns/zone.c projects/calloutng/contrib/bind9/lib/export/Makefile.in projects/calloutng/contrib/bind9/lib/export/dns/Makefile.in projects/calloutng/contrib/bind9/lib/export/dns/include/Makefile.in projects/calloutng/contrib/bind9/lib/export/dns/include/dns/Makefile.in projects/calloutng/contrib/bind9/lib/export/dns/include/dst/Makefile.in projects/calloutng/contrib/bind9/lib/export/irs/include/irs/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/nls/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/nothreads/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/nothreads/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/pthreads/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/pthreads/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/unix/Makefile.in projects/calloutng/contrib/bind9/lib/export/isc/unix/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/export/isccfg/include/isccfg/Makefile.in projects/calloutng/contrib/bind9/lib/export/samples/Makefile-postinstall.in projects/calloutng/contrib/bind9/lib/export/samples/Makefile.in projects/calloutng/contrib/bind9/lib/irs/Makefile.in projects/calloutng/contrib/bind9/lib/irs/include/Makefile.in projects/calloutng/contrib/bind9/lib/irs/include/irs/Makefile.in projects/calloutng/contrib/bind9/lib/isc/alpha/Makefile.in projects/calloutng/contrib/bind9/lib/isc/alpha/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/api projects/calloutng/contrib/bind9/lib/isc/ia64/Makefile.in projects/calloutng/contrib/bind9/lib/isc/ia64/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/ia64/include/isc/atomic.h projects/calloutng/contrib/bind9/lib/isc/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/include/isc/file.h projects/calloutng/contrib/bind9/lib/isc/include/isc/namespace.h projects/calloutng/contrib/bind9/lib/isc/include/isc/task.h projects/calloutng/contrib/bind9/lib/isc/mem.c projects/calloutng/contrib/bind9/lib/isc/mips/Makefile.in projects/calloutng/contrib/bind9/lib/isc/mips/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/mips/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/nls/Makefile.in projects/calloutng/contrib/bind9/lib/isc/noatomic/Makefile.in projects/calloutng/contrib/bind9/lib/isc/noatomic/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/nothreads/Makefile.in projects/calloutng/contrib/bind9/lib/isc/nothreads/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/powerpc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/powerpc/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/pthreads/Makefile.in projects/calloutng/contrib/bind9/lib/isc/pthreads/condition.c projects/calloutng/contrib/bind9/lib/isc/pthreads/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/sparc64/Makefile.in projects/calloutng/contrib/bind9/lib/isc/sparc64/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/task.c projects/calloutng/contrib/bind9/lib/isc/task_api.c projects/calloutng/contrib/bind9/lib/isc/unix/Makefile.in projects/calloutng/contrib/bind9/lib/isc/unix/file.c projects/calloutng/contrib/bind9/lib/isc/unix/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/unix/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/x86_32/Makefile.in projects/calloutng/contrib/bind9/lib/isc/x86_32/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isc/x86_64/Makefile.in projects/calloutng/contrib/bind9/lib/isc/x86_64/include/Makefile.in projects/calloutng/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in projects/calloutng/contrib/bind9/lib/isccc/api projects/calloutng/contrib/bind9/lib/isccc/cc.c projects/calloutng/contrib/bind9/lib/isccc/include/Makefile.in projects/calloutng/contrib/bind9/lib/isccc/include/isccc/Makefile.in projects/calloutng/contrib/bind9/lib/isccfg/api projects/calloutng/contrib/bind9/lib/isccfg/include/Makefile.in projects/calloutng/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in projects/calloutng/contrib/bind9/lib/isccfg/namedconf.c projects/calloutng/contrib/bind9/lib/lwres/Makefile.in projects/calloutng/contrib/bind9/lib/lwres/api projects/calloutng/contrib/bind9/lib/lwres/getaddrinfo.c projects/calloutng/contrib/bind9/lib/lwres/include/Makefile.in projects/calloutng/contrib/bind9/lib/lwres/include/lwres/Makefile.in projects/calloutng/contrib/bind9/lib/lwres/man/Makefile.in projects/calloutng/contrib/bind9/make/rules.in projects/calloutng/contrib/bind9/version projects/calloutng/etc/pf.os projects/calloutng/etc/regdomain.xml projects/calloutng/lib/bind/config.h projects/calloutng/lib/bind/dns/Makefile projects/calloutng/lib/bind/isc/isc/platform.h projects/calloutng/lib/clang/Makefile projects/calloutng/lib/libc/gen/fmtmsg.c projects/calloutng/lib/libc/gen/getcap.c projects/calloutng/lib/libc/gen/getgrent.c projects/calloutng/lib/libc/gen/getnetgrent.c projects/calloutng/lib/libc/gen/getttyent.c projects/calloutng/lib/libc/gen/getusershell.c projects/calloutng/lib/libc/gen/getutxent.c projects/calloutng/lib/libc/locale/collate.c projects/calloutng/lib/libc/locale/setrunelocale.c projects/calloutng/lib/libc/sys/socket.2 projects/calloutng/lib/libradius/Makefile projects/calloutng/lib/libradius/libradius.3 projects/calloutng/lib/libradius/radius.conf.5 projects/calloutng/lib/libradius/radlib.c projects/calloutng/lib/libradius/radlib.h projects/calloutng/lib/libradius/radlib_private.h projects/calloutng/lib/libradius/radlib_vs.h projects/calloutng/release/picobsd/floppy.tree/etc/ppp/ppp.conf projects/calloutng/release/picobsd/mfs_tree/etc/remote projects/calloutng/sbin/comcontrol/comcontrol.8 projects/calloutng/sbin/mount_nfs/mount_nfs.8 projects/calloutng/sbin/sysctl/sysctl.8 projects/calloutng/sbin/sysctl/sysctl.c projects/calloutng/share/examples/etc/make.conf projects/calloutng/share/examples/ppp/ppp.conf.sample projects/calloutng/share/examples/ppp/ppp.conf.span-isp projects/calloutng/share/man/man4/gdb.4 projects/calloutng/share/man/man4/mouse.4 projects/calloutng/share/man/man4/ng_netflow.4 projects/calloutng/share/man/man5/rc.conf.5 projects/calloutng/share/man/man5/remote.5 projects/calloutng/share/man/man7/tuning.7 projects/calloutng/share/man/man9/Makefile projects/calloutng/share/man/man9/domain.9 projects/calloutng/share/man/man9/zone.9 projects/calloutng/share/misc/iso639 projects/calloutng/sys/amd64/amd64/fpu.c projects/calloutng/sys/amd64/amd64/pmap.c projects/calloutng/sys/amd64/include/bus.h projects/calloutng/sys/amd64/include/fpu.h projects/calloutng/sys/boot/efi/libefi/libefi.c projects/calloutng/sys/boot/forth/frames.4th projects/calloutng/sys/boot/forth/support.4th projects/calloutng/sys/boot/i386/efi/reloc.c projects/calloutng/sys/cam/cam_periph.c projects/calloutng/sys/cam/cam_xpt.c projects/calloutng/sys/cam/ctl/ctl.c projects/calloutng/sys/cam/ctl/ctl_frontend_cam_sim.c projects/calloutng/sys/cam/ctl/scsi_ctl.c projects/calloutng/sys/cam/scsi/scsi_ch.c projects/calloutng/sys/cam/scsi/scsi_enc.c projects/calloutng/sys/cam/scsi/scsi_enc_internal.h projects/calloutng/sys/cam/scsi/scsi_pass.c projects/calloutng/sys/cam/scsi/scsi_sg.c projects/calloutng/sys/dev/agp/agp_i810.c projects/calloutng/sys/dev/ahci/ahci.c projects/calloutng/sys/dev/ata/ata-pci.h projects/calloutng/sys/dev/ata/chipsets/ata-ati.c projects/calloutng/sys/dev/ath/ath_hal/ah_regdomain.c projects/calloutng/sys/dev/ath/if_ath_tx.c projects/calloutng/sys/dev/ath/if_athvar.h projects/calloutng/sys/dev/nvme/nvme.c projects/calloutng/sys/dev/nvme/nvme_private.h projects/calloutng/sys/dev/sound/pci/hda/hdaa_patches.c projects/calloutng/sys/dev/sound/pci/hda/hdac.h projects/calloutng/sys/dev/sound/usb/uaudio.c projects/calloutng/sys/dev/usb/serial/u3g.c projects/calloutng/sys/dev/usb/usbdevs projects/calloutng/sys/dev/virtio/scsi/virtio_scsi.c projects/calloutng/sys/fs/nfs/nfs.h projects/calloutng/sys/fs/nfs/nfs_commonkrpc.c projects/calloutng/sys/fs/nfs/nfs_commonport.c projects/calloutng/sys/fs/nfs/nfs_commonsubs.c projects/calloutng/sys/fs/nfs/nfs_var.h projects/calloutng/sys/fs/nfs/nfscl.h projects/calloutng/sys/fs/nfs/nfsclstate.h projects/calloutng/sys/fs/nfs/nfsport.h projects/calloutng/sys/fs/nfs/nfsproto.h projects/calloutng/sys/fs/nfsclient/nfs_clbio.c projects/calloutng/sys/fs/nfsclient/nfs_clcomsubs.c projects/calloutng/sys/fs/nfsclient/nfs_clkdtrace.c projects/calloutng/sys/fs/nfsclient/nfs_clkrpc.c projects/calloutng/sys/fs/nfsclient/nfs_clport.c projects/calloutng/sys/fs/nfsclient/nfs_clrpcops.c projects/calloutng/sys/fs/nfsclient/nfs_clstate.c projects/calloutng/sys/fs/nfsclient/nfs_clvfsops.c projects/calloutng/sys/fs/nfsclient/nfs_clvnops.c projects/calloutng/sys/fs/nfsclient/nfsmount.h projects/calloutng/sys/fs/nfsclient/nfsnode.h projects/calloutng/sys/fs/nfsserver/nfs_nfsdstate.c projects/calloutng/sys/i386/include/bus.h projects/calloutng/sys/kern/kern_ktr.c projects/calloutng/sys/kern/kern_mbuf.c projects/calloutng/sys/kern/kern_mib.c projects/calloutng/sys/kern/kern_shutdown.c projects/calloutng/sys/kern/kern_switch.c projects/calloutng/sys/kern/subr_param.c projects/calloutng/sys/kern/subr_witness.c projects/calloutng/sys/kern/uipc_domain.c projects/calloutng/sys/kern/uipc_socket.c projects/calloutng/sys/kern/uipc_usrreq.c projects/calloutng/sys/kern/vfs_bio.c projects/calloutng/sys/kern/vfs_mount.c projects/calloutng/sys/kern/vfs_subr.c projects/calloutng/sys/net/bpf.c projects/calloutng/sys/net/bpf.h projects/calloutng/sys/net/bpf_buffer.c projects/calloutng/sys/net/bpfdesc.h projects/calloutng/sys/net80211/ieee80211_adhoc.c projects/calloutng/sys/net80211/ieee80211_proto.c projects/calloutng/sys/net80211/ieee80211_regdomain.h projects/calloutng/sys/net80211/ieee80211_sta.c projects/calloutng/sys/net80211/ieee80211_sta.h projects/calloutng/sys/net80211/ieee80211_superg.c projects/calloutng/sys/net80211/ieee80211_superg.h projects/calloutng/sys/netinet/in_pcb.c projects/calloutng/sys/netinet/sctp_output.c projects/calloutng/sys/netinet/sctp_output.h projects/calloutng/sys/netinet/tcp_subr.c projects/calloutng/sys/netinet/udp_usrreq.c projects/calloutng/sys/netpfil/pf/if_pfsync.c projects/calloutng/sys/nfsclient/nfsargs.h projects/calloutng/sys/rpc/clnt.h projects/calloutng/sys/rpc/clnt_rc.c projects/calloutng/sys/rpc/clnt_vc.c projects/calloutng/sys/rpc/svc.h projects/calloutng/sys/rpc/svc_vc.c projects/calloutng/sys/sys/kdb.h projects/calloutng/sys/sys/protosw.h projects/calloutng/sys/sys/socketvar.h projects/calloutng/sys/sys/sysctl.h projects/calloutng/sys/sys/systm.h projects/calloutng/sys/vm/uma.h projects/calloutng/sys/vm/uma_core.c projects/calloutng/sys/vm/uma_int.h projects/calloutng/sys/vm/vm_fault.c projects/calloutng/sys/vm/vm_map.c projects/calloutng/sys/vm/vm_meter.c projects/calloutng/sys/vm/vm_object.c projects/calloutng/sys/vm/vm_object.h projects/calloutng/sys/vm/vm_page.c projects/calloutng/sys/vm/vm_pageout.c projects/calloutng/sys/x86/include/bus.h projects/calloutng/tools/debugscripts/dot.gdbinit projects/calloutng/tools/regression/lib/libc/stdio/test-perror.c projects/calloutng/tools/test/ppsapi/Makefile projects/calloutng/tools/test/ppsapi/README projects/calloutng/usr.bin/fetch/fetch.c projects/calloutng/usr.bin/locate/locate/locate.c projects/calloutng/usr.bin/time/time.c projects/calloutng/usr.bin/tip/tip/cu.1 projects/calloutng/usr.sbin/bluetooth/hcseriald/hcseriald.8 projects/calloutng/usr.sbin/bluetooth/hcseriald/hcseriald.c projects/calloutng/usr.sbin/bsdinstall/scripts/mirrorselect projects/calloutng/usr.sbin/moused/moused.8 projects/calloutng/usr.sbin/ppp/README.changes projects/calloutng/usr.sbin/ppp/defs.h projects/calloutng/usr.sbin/ppp/ppp.8.m4 projects/calloutng/usr.sbin/service/service.8 projects/calloutng/usr.sbin/service/service.sh Directory Properties: projects/calloutng/ (props changed) projects/calloutng/contrib/bind9/ (props changed) projects/calloutng/lib/libc/ (props changed) projects/calloutng/sbin/ (props changed) projects/calloutng/share/man/man4/ (props changed) projects/calloutng/sys/ (props changed) projects/calloutng/sys/boot/ (props changed) projects/calloutng/sys/boot/i386/efi/ (props changed) Modified: projects/calloutng/bin/df/df.c ============================================================================== --- projects/calloutng/bin/df/df.c Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/bin/df/df.c Wed Dec 12 12:37:43 2012 (r244150) @@ -397,7 +397,7 @@ prthumanvalinode(int64_t bytes) static intmax_t fsbtoblk(int64_t num, uint64_t fsbs, u_long bs) { - return (num * (intmax_t) fsbs / bs); + return (num * (intmax_t) fsbs / (int64_t) bs); } /* Modified: projects/calloutng/contrib/bind9/CHANGES ============================================================================== --- projects/calloutng/contrib/bind9/CHANGES Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/CHANGES Wed Dec 12 12:37:43 2012 (r244150) @@ -1,15 +1,81 @@ - --- 9.8.3-P4 released --- + --- 9.8.4-P1 released --- + +3407. [security] Named could die on specific queries with dns64 enabled. + [Addressed in change #3388 for BIND 9.8.5 and 9.9.3.] + + --- 9.8.4 released --- 3383. [security] A certain combination of records in the RBT could cause named to hang while populating the additional section of a response. [RT #31090] - --- 9.8.3-P3 released --- +3373. [bug] win32: open raw files in binary mode. [RT #30944] 3364. [security] Named could die on specially crafted record. [RT #30416] - --- 9.8.3-P2 released --- + --- 9.8.4rc1 released --- + +3369. [bug] nsupdate terminated unexpectedly in interactive mode + if built with readline support. [RT #29550] + +3368. [bug] and were not C++ safe. + +3367. [bug] dns_dnsseckey_create() result was not being checked. + [RT #30685] + +3366. [bug] Fixed Read-After-Write dependency violation for IA64 + atomic operations. [RT #25181] + +3365. [bug] Removed spurious newlines from log messages in + zone.c [RT #30675] + +3363. [bug] Need to allow "forward" and "fowarders" options + in static-stub zones; this had been overlooked. + [RT #30482] + +3362. [bug] Setting some option values to 0 in named.conf + could trigger an assertion failure on startup. + [RT #27730] + +3360. [bug] 'host -w' could die. [RT #18723] + +3359. [bug] An improperly-formed TSIG secret could cause a + memory leak. [RT #30607] + +3357. [port] Add support for libxml2-2.8.x [RT #30440] + +3356. [bug] Cap the TTL of signed RRsets when RRSIGs are + approaching their expiry, so they don't remain + in caches after expiry. [RT #26429] + + --- 9.8.4b1 released --- + +3354. [func] Improve OpenSSL error logging. [RT #29932] + +3353. [bug] Use a single task for task exclusive operations. + [RT #29872] + +3352. [bug] Ensure that learned server attributes timeout of the + adb cache. [RT #29856] + +3351. [bug] isc_mem_put and isc_mem_putanddetach didn't report + caller if either ISC_MEM_DEBUGSIZE or ISC_MEM_DEBUGCTX + memory debugging flags are set. [RT #30243] + +3350. [bug] Memory read overrun in isc___mem_reallocate if + ISC_MEM_DEBUGCTX memory debugging flag is set. + [RT #30240] + +3348. [bug] Prevent RRSIG data from being cached if a negative + record matching the covering type exists at a higher + trust level. Such data already can't be retrieved from + the cache since change 3218 -- this prevents it + being inserted into the cache as well. [RT #26809] + +3347. [bug] dnssec-settime: Issue a warning when writing a new + private key file would cause a change in the + permissions of the existing file. [RT #27724] 3346. [security] Bad-cache data could be used before it was initialized, causing an assert. [RT #30025] @@ -18,11 +84,47 @@ resulting in excessive cpu usage in some cases. [RT #29952] - --- 9.8.3-P1 released --- +3337. [bug] Change #3294 broke support for the multiple keys + in controls. [RT #29694] + +3335. [func] nslookup: return a nonzero exit code when unable + to get an answer. [RT #29492] + +3333. [bug] Setting resolver-query-timeout too low can cause + named to not recover if it loses connectivity. + [RT #29623] + +3332. [bug] Re-use cached DS rrsets if possible. [RT #29446] 3331. [security] dns_rdataslab_fromrdataset could produce bad rdataslabs. [RT #29644] - + +3330. [func] Fix missing signatures on NOERROR results despite + RPZ rewriting. Also + - add optional "recursive-only yes|no" to the + response-policy statement + - add optional "max-policy-ttl" to the response-policy + statement to limit the false data that + "recursive-only no" can introduce into + resolvers' caches + - add a RPZ performance test to bin/tests/system/rpz + when queryperf is available. + - the encoding of PASSTHRU action to "rpz-passthru". + (The old encoding is still accepted.) + [RT #26172] + + +3329. [bug] Handle RRSIG signer-name case consistently: We + generate RRSIG records with the signer-name in + lower case. We accept them with any case, but if + they fail to validate, we try again in lower case. + [RT #27451] + +3328. [bug] Fixed inconsistent data checking in dst_parse.c. + [RT #29401] + +3317. [func] Add ECDSA support (RFC 6605). [RT #21918] + --- 9.8.3 released --- 3318. [tuning] Reduce the amount of work performed while holding a Modified: projects/calloutng/contrib/bind9/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2004-2009, 2011 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004-2009, 2011, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 1998-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/calloutng/contrib/bind9/README ============================================================================== --- projects/calloutng/contrib/bind9/README Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/README Wed Dec 12 12:37:43 2012 (r244150) @@ -51,6 +51,11 @@ BIND 9 For up-to-date release notes and errata, see http://www.isc.org/software/bind9/releasenotes +BIND 9.8.4 + + BIND 9.8.4 includes several bug fixes and patches security + flaws described in CVE-2012-1667, CVE-2012-3817 and CVE-2012-4244. + BIND 9.8.3 BIND 9.8.3 is a maintenance release. Modified: projects/calloutng/contrib/bind9/acconfig.h ============================================================================== --- projects/calloutng/contrib/bind9/acconfig.h Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/acconfig.h Wed Dec 12 12:37:43 2012 (r244150) @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007, 2008, 2012 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -138,6 +138,9 @@ int sigwait(const unsigned int *set, int /* Define if OpenSSL includes DSA support */ #undef HAVE_OPENSSL_DSA +/* Define if OpenSSL includes ECDSA support */ +#undef HAVE_OPENSSL_ECDSA + /* Define to the length type used by the socket API (socklen_t, size_t, int). */ #undef ISC_SOCKADDR_LEN_T Modified: projects/calloutng/contrib/bind9/bin/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/bin/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 1998-2001 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/calloutng/contrib/bind9/bin/check/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/bin/check/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/check/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2004-2007, 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004-2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000-2003 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/calloutng/contrib/bind9/bin/check/check-tool.c ============================================================================== --- projects/calloutng/contrib/bind9/bin/check/check-tool.c Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/check/check-tool.c Wed Dec 12 12:37:43 2012 (r244150) @@ -639,6 +639,9 @@ dump_zone(const char *zonename, dns_zone { isc_result_t result; FILE *output = stdout; + const char *flags; + + flags = (fileformat == dns_masterformat_text) ? "w+" : "wb+"; if (debug) { if (filename != NULL && strcmp(filename, "-") != 0) @@ -649,7 +652,7 @@ dump_zone(const char *zonename, dns_zone } if (filename != NULL && strcmp(filename, "-") != 0) { - result = isc_stdio_open(filename, "w+", &output); + result = isc_stdio_open(filename, flags, &output); if (result != ISC_R_SUCCESS) { fprintf(stderr, "could not open output " Modified: projects/calloutng/contrib/bind9/bin/confgen/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/bin/confgen/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/confgen/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above Modified: projects/calloutng/contrib/bind9/bin/confgen/unix/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/bin/confgen/unix/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/confgen/unix/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above Modified: projects/calloutng/contrib/bind9/bin/dig/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/bin/dig/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/dig/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2005, 2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/calloutng/contrib/bind9/bin/dig/nslookup.c ============================================================================== --- projects/calloutng/contrib/bind9/bin/dig/nslookup.c Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/dig/nslookup.c Wed Dec 12 12:37:43 2012 (r244150) @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2012 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -57,6 +57,7 @@ static isc_boolean_t in_use = ISC_FALSE; static char defclass[MXRD] = "IN"; static char deftype[MXRD] = "A"; static isc_event_t *global_event = NULL; +static int query_error = 1, print_error = 0; static char domainopt[DNS_NAME_MAXTEXT]; @@ -406,6 +407,9 @@ isc_result_t printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) { char servtext[ISC_SOCKADDR_FORMATSIZE]; + /* I've we've gotten this far, we've reached a server. */ + query_error = 0; + debug("printmessage()"); isc_sockaddr_format(&query->sockaddr, servtext, sizeof(servtext)); @@ -433,6 +437,9 @@ printmessage(dig_query_t *query, dns_mes (msg->rcode != dns_rcode_nxdomain) ? nametext : query->lookup->textname, rcode_totext(msg->rcode)); debug("returning with rcode == 0"); + + /* the lookup failed */ + print_error |= 1; return (ISC_R_SUCCESS); } @@ -887,5 +894,5 @@ main(int argc, char **argv) { destroy_libs(); isc_app_finish(); - return (0); + return (query_error | print_error); } Modified: projects/calloutng/contrib/bind9/bin/dnssec/Makefile.in ============================================================================== --- projects/calloutng/contrib/bind9/bin/dnssec/Makefile.in Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/dnssec/Makefile.in Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2005, 2007-2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2005, 2007-2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 ============================================================================== --- projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 Wed Dec 12 12:37:43 2012 (r244150) @@ -1,4 +1,4 @@ -.\" Copyright (C) 2008-2010 Internet Systems Consortium, Inc. ("ISC") +.\" Copyright (C) 2008-2010, 2012 Internet Systems Consortium, Inc. ("ISC") .\" .\" Permission to use, copy, modify, and/or distribute this software for any .\" purpose with or without fee is hereby granted, provided that the above @@ -55,7 +55,7 @@ Use SHA\-256 as the digest algorithm. .RS 4 Select the digest algorithm. The value of \fBalgorithm\fR -must be one of SHA\-1 (SHA1), SHA\-256 (SHA256) or GOST. These values are case insensitive. +must be one of SHA\-1 (SHA1), SHA\-256 (SHA256), GOST or SHA\-384 (SHA384). These values are case insensitive. .RE .PP \-K \fIdirectory\fR @@ -139,5 +139,5 @@ RFC 4509. .PP Internet Systems Consortium .SH "COPYRIGHT" -Copyright \(co 2008\-2010 Internet Systems Consortium, Inc. ("ISC") +Copyright \(co 2008\-2010, 2012 Internet Systems Consortium, Inc. ("ISC") .br Modified: projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c ============================================================================== --- projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c Wed Dec 12 12:37:43 2012 (r244150) @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2011 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2008-2012 Internet Systems Consortium, Inc. ("ISC") * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -296,7 +296,7 @@ usage(void) { fprintf(stderr, " -K : directory in which to find " "key file or keyset file\n"); fprintf(stderr, " -a algorithm: digest algorithm " - "(SHA-1, SHA-256 or GOST)\n"); + "(SHA-1, SHA-256, GOST or SHA-384)\n"); fprintf(stderr, " -1: use SHA-1\n"); fprintf(stderr, " -2: use SHA-256\n"); fprintf(stderr, " -l: add lookaside zone and print DLV records\n"); @@ -415,6 +415,9 @@ main(int argc, char **argv) { else if (strcasecmp(algname, "GOST") == 0) dtype = DNS_DSDIGEST_GOST; #endif + else if (strcasecmp(algname, "SHA384") == 0 || + strcasecmp(algname, "SHA-384") == 0) + dtype = DNS_DSDIGEST_SHA384; else fatal("unknown algorithm %s", algname); } Modified: projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook ============================================================================== --- projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook Wed Dec 12 12:24:54 2012 (r244149) +++ projects/calloutng/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook Wed Dec 12 12:37:43 2012 (r244150) @@ -2,7 +2,7 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" []>