From owner-svn-src-projects@FreeBSD.ORG Mon Aug 18 16:08:07 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9382454; Mon, 18 Aug 2014 16:08:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C501037B6; Mon, 18 Aug 2014 16:08:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7IG87bR054523; Mon, 18 Aug 2014 16:08:07 GMT (envelope-from cherry@FreeBSD.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7IG8748054522; Mon, 18 Aug 2014 16:08:07 GMT (envelope-from cherry@FreeBSD.org) Message-Id: <201408181608.s7IG8748054522@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cherry set sender to cherry@FreeBSD.org using -f From: "Cherry G. Mathew" Date: Mon, 18 Aug 2014 16:08:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270138 - projects/amd64_xen_pv/sys/amd64/include/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.18-1 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, 18 Aug 2014 16:08:07 -0000 Author: cherry Date: Mon Aug 18 16:08:07 2014 New Revision: 270138 URL: http://svnweb.freebsd.org/changeset/base/270138 Log: Add a "Compare and set" style support function. Approved by: gibbs (implicit) Modified: projects/amd64_xen_pv/sys/amd64/include/xen/xenpmap.h Modified: projects/amd64_xen_pv/sys/amd64/include/xen/xenpmap.h ============================================================================== --- projects/amd64_xen_pv/sys/amd64/include/xen/xenpmap.h Mon Aug 18 16:06:04 2014 (r270137) +++ projects/amd64_xen_pv/sys/amd64/include/xen/xenpmap.h Mon Aug 18 16:08:07 2014 (r270138) @@ -226,10 +226,12 @@ do { \ #define pde_store(pdep, pde) pte_store(pdep, pde) -static inline pt_entry_t pte_load_store(pt_entry_t *ptep, pt_entry_t npte) +static __inline pt_entry_t +pte_load_store(pt_entry_t *ptep, pt_entry_t npte) { pt_entry_t pte; + /* XXX: review for SMP */ pte = *ptep; pte_store(ptep, npte); @@ -245,6 +247,22 @@ static inline pt_entry_t pte_load_store( #define pte_load_clear(ptep) pte_load_store(ptep, 0); +static inline bool +pte_cmp_store(pt_entry_t *ptep, pt_entry_t oldpte, pt_entry_t newpte) +{ + /* XXX: locking for SMP */ + pt_entry_t tpte; + + tpte = *ptep; + + if (*ptep == oldpte) { + pte_store(ptep, newpte); + return true; + } + else { + return false; + } +} static __inline vm_paddr_t xpmap_mtop(vm_paddr_t mpa) From owner-svn-src-projects@FreeBSD.ORG Mon Aug 18 17:01:02 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 542A518B; Mon, 18 Aug 2014 17:01:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3FA483CBF; Mon, 18 Aug 2014 17:01:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7IH129V079167; Mon, 18 Aug 2014 17:01:02 GMT (envelope-from cherry@FreeBSD.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7IH128M079166; Mon, 18 Aug 2014 17:01:02 GMT (envelope-from cherry@FreeBSD.org) Message-Id: <201408181701.s7IH128M079166@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cherry set sender to cherry@FreeBSD.org using -f From: "Cherry G. Mathew" Date: Mon, 18 Aug 2014 17:01:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270140 - in projects/amd64_xen_pv/sys: amd64/xen conf 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.18-1 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, 18 Aug 2014 17:01:02 -0000 Author: cherry Date: Mon Aug 18 17:01:01 2014 New Revision: 270140 URL: http://svnweb.freebsd.org/changeset/base/270140 Log: Excise the pv related sources from the tree. This is cruft leftover from an earlier effort to separate the pv code from pmap.c Approved by: gibbs (implicit) Deleted: projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.c Modified: projects/amd64_xen_pv/sys/conf/files.amd64 Modified: projects/amd64_xen_pv/sys/conf/files.amd64 ============================================================================== --- projects/amd64_xen_pv/sys/conf/files.amd64 Mon Aug 18 16:55:18 2014 (r270139) +++ projects/amd64_xen_pv/sys/conf/files.amd64 Mon Aug 18 17:01:01 2014 (r270140) @@ -123,8 +123,6 @@ amd64/amd64/mpboot.S optional native sm amd64/xen/mpboot.c optional xen smp amd64/amd64/pmap.c optional native amd64/xen/pmap.c optional xen -amd64/xen/pmap_pv.c optional xen -amd64/xen/mmu_map.c optional xen amd64/amd64/prof_machdep.c optional profiling-routine amd64/amd64/ptrace_machdep.c standard amd64/amd64/sigtramp.S standard From owner-svn-src-projects@FreeBSD.ORG Mon Aug 18 17:08:12 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43ADD33A; Mon, 18 Aug 2014 17:08:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F41C3D03; Mon, 18 Aug 2014 17:08:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7IH8CgN082239; Mon, 18 Aug 2014 17:08:12 GMT (envelope-from cherry@FreeBSD.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7IH8CHe082238; Mon, 18 Aug 2014 17:08:12 GMT (envelope-from cherry@FreeBSD.org) Message-Id: <201408181708.s7IH8CHe082238@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cherry set sender to cherry@FreeBSD.org using -f From: "Cherry G. Mathew" Date: Mon, 18 Aug 2014 17:08:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270141 - in projects/amd64_xen_pv/sys/amd64: 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.18-1 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, 18 Aug 2014 17:08:12 -0000 Author: cherry Date: Mon Aug 18 17:08:11 2014 New Revision: 270141 URL: http://svnweb.freebsd.org/changeset/base/270141 Log: Missed out removing pmap_pv.h from the tree, and references to it and mmu_map.h in r270140 Approved by: gibbs (implicit) Deleted: projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.h Modified: projects/amd64_xen_pv/sys/amd64/amd64/db_interface.c Modified: projects/amd64_xen_pv/sys/amd64/amd64/db_interface.c ============================================================================== --- projects/amd64_xen_pv/sys/amd64/amd64/db_interface.c Mon Aug 18 17:01:01 2014 (r270140) +++ projects/amd64_xen_pv/sys/amd64/amd64/db_interface.c Mon Aug 18 17:08:11 2014 (r270141) @@ -42,10 +42,6 @@ __FBSDID("$FreeBSD$"); #include #include -#ifdef XEN -#include -#endif - #include /* From owner-svn-src-projects@FreeBSD.ORG Mon Aug 18 17:35:34 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D3D7CC6; Mon, 18 Aug 2014 17:35:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC0C83FD6; Mon, 18 Aug 2014 17:35:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7IHZXpF096095; Mon, 18 Aug 2014 17:35:33 GMT (envelope-from cherry@FreeBSD.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7IHZXY7096092; Mon, 18 Aug 2014 17:35:33 GMT (envelope-from cherry@FreeBSD.org) Message-Id: <201408181735.s7IHZXY7096092@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cherry set sender to cherry@FreeBSD.org using -f From: "Cherry G. Mathew" Date: Mon, 18 Aug 2014 17:35:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270143 - 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.18-1 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, 18 Aug 2014 17:35:34 -0000 Author: cherry Date: Mon Aug 18 17:35:33 2014 New Revision: 270143 URL: http://svnweb.freebsd.org/changeset/base/270143 Log: This commit consists of a number of changes that enable the pv kernel to boot to multiuser mode. i) pmap has been completely purged of pmap_pv and mmu_map cruft. ii) machdep.c has been modified unmap excess boottime kernel va mappings, which had overlaps with vm_pages on the free list. This caused page aliasing with conflicting permissions further on in boot. iii) To enable ii), the "special" page wirings for the xen console, xenstore, and shared info pages were mapped into non-conflicting va space at the expense of virtual_start, which is from an abundant resource (kernel va range). iv) Maxmem has been limited to about 50M for now, due to bootstrap limitations of Memory direct mapping. This is trivially fixable, and will be addressed in the next set of commits. v) User thread VA mappings into kernel space has been bugfixed and streamlined. (Further optimisations are possible). vi) The exception return path has been clipped of gs restore for now. We know that the hypervisor restores this on exit (via swapgs), but this needs further review. It seems to "just work for now", but I have left a note in the comments. This commit also removes mmu_map.[hc] which have mysteriously survived previous purges! Approved by: gibbs (implicit) Deleted: projects/amd64_xen_pv/sys/amd64/xen/mmu_map.c projects/amd64_xen_pv/sys/amd64/xen/mmu_map.h Modified: projects/amd64_xen_pv/sys/amd64/xen/exception.S projects/amd64_xen_pv/sys/amd64/xen/machdep.c projects/amd64_xen_pv/sys/amd64/xen/pmap.c Modified: projects/amd64_xen_pv/sys/amd64/xen/exception.S ============================================================================== --- projects/amd64_xen_pv/sys/amd64/xen/exception.S Mon Aug 18 17:10:55 2014 (r270142) +++ projects/amd64_xen_pv/sys/amd64/xen/exception.S Mon Aug 18 17:35:33 2014 (r270143) @@ -281,6 +281,7 @@ ld_gs: callq pcpu_find movq %rax, %rdi /* kgsbase == pcpu_find(PCPU_GET(cpuid)) */ +#if 0 /* XXX: Investigate tls restore to userland further */ movw (TF_GS + 8)(%rsp), %ax movw %ax, %gs /* blew away (k)gsbase here */ @@ -294,7 +295,7 @@ ld_gs: 3: cmpq $0x666, %rbx /* reload user %fs/%gs ? */ jne 4f - +#endif movq PCPU(CURPCB), %rdi callq xen_load_tls /* Update user %fs/%gs to pcb_fsbase and pcb_gsbase */ Modified: projects/amd64_xen_pv/sys/amd64/xen/machdep.c ============================================================================== --- projects/amd64_xen_pv/sys/amd64/xen/machdep.c Mon Aug 18 17:10:55 2014 (r270142) +++ projects/amd64_xen_pv/sys/amd64/xen/machdep.c Mon Aug 18 17:35:33 2014 (r270143) @@ -99,8 +99,8 @@ #include #include -#define CS_SECURE(cs) (0) /* XXX: TODO */ -#define EFL_SECURE(ef, oef) (0) /* XXX: TODO */ +#define CS_SECURE(cs) (ISPL(cs) == SEL_UPL) +#define EFL_SECURE(ef, oef) ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0) int _udatasel, _ucodesel, _ufssel, _ugssel; @@ -682,6 +682,12 @@ initxen(struct start_info *si) if (env != NULL) strlcpy(kernelname, env, sizeof(kernelname)); + /* unmap unused kmem after physfree */ + intptr_t unmapva; + for (unmapva = PTOV(physfree); unmapva < (xenstack + 512 * 1024); unmapva += PAGE_SIZE) { + PT_SET_MA(unmapva, 0); + } + return (u_int64_t) thread0.td_pcb & ~0xFul /* 16 byte aligned */; } Modified: projects/amd64_xen_pv/sys/amd64/xen/pmap.c ============================================================================== --- projects/amd64_xen_pv/sys/amd64/xen/pmap.c Mon Aug 18 17:10:55 2014 (r270142) +++ projects/amd64_xen_pv/sys/amd64/xen/pmap.c Mon Aug 18 17:35:33 2014 (r270143) @@ -160,9 +160,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include -#include - static __inline boolean_t pmap_emulate_ad_bits(pmap_t pmap) { @@ -406,7 +403,6 @@ static vm_paddr_t boot_ptendphys; /* phy */ extern int gdtset; extern uint64_t xenstack; /* The stack Xen gives us at boot */ -extern char *console_page; /* The shared ring for console i/o */ extern struct xenstore_domain_interface *xen_store; /* xenstore page */ extern vm_map_t pv_map; @@ -539,12 +535,14 @@ pmap_pte(pmap_t pmap, vm_offset_t va) return (pmap_pde_to_pte(pde, va)); } +#if 0 /* Index offset into a pagetable, for a given va */ static int pt_index(uintptr_t va) { return ((va & PDRMASK) >> PAGE_SHIFT); } +#endif static __inline void pmap_resident_count_inc(pmap_t pmap, int count) @@ -998,17 +996,11 @@ pmap_xen_bootpages(vm_paddr_t *firstaddr /* i) Share info */ /* - * Steal some mapped VA from the nkmapped range (so that - * PT_SET_MA() will work). We can't however overlap into - * memory allocated by allocpages(). Adjust "xenstack" to - * reflect this. This is safe, because "xenstack" is not used - * as our stack bottom (See: amd64/xen/locore.S) - * + * Encroach into virtual_avail to map in xen related + * shared pages. */ - va = virtual_avail - PAGE_SIZE; - KASSERT(PTOV(*firstaddr) < va, - ("Boot VAs exhausted!\n")); + va = virtual_avail; ma = xen_start_info->shared_info; PT_SET_MA(va, ma | PG_RW | PG_V | PG_U); HYPERVISOR_shared_info = (void *) va; @@ -1016,18 +1008,14 @@ pmap_xen_bootpages(vm_paddr_t *firstaddr /* ii) Console page */ /* Get a va for console and map the console mfn into it */ - va -= PAGE_SIZE; - KASSERT(PTOV(*firstaddr) < va, - ("Boot VAs exhausted!\n")); + va += PAGE_SIZE; ma = xen_start_info->console.domU.mfn << PAGE_SHIFT; PT_SET_MA(va, ma | PG_RW | PG_V | PG_U); console_page = (void *)va; /* iii) xenstore shared page */ /* Get a va for the xenstore shared page */ - va -= PAGE_SIZE; - KASSERT(PTOV(*firstaddr) < va, - ("Boot VAs exhausted!\n")); + va += PAGE_SIZE; ma = xen_start_info->store_mfn << PAGE_SHIFT; PT_SET_MA(va, ma | PG_RW | PG_V | PG_U); xen_store = (void *)va; @@ -1035,7 +1023,6 @@ pmap_xen_bootpages(vm_paddr_t *firstaddr #if 0 /* iv) Userland page table base */ va = PTOV(allocpages(firstaddr, 1)); - /* XXX: assert for collision with stolen VAs above */ bzero((void *)va, PAGE_SIZE); /* @@ -1054,7 +1041,7 @@ pmap_xen_bootpages(vm_paddr_t *firstaddr /* Register user page table with Xen */ xen_pt_user_switch(xpmap_ptom(VTOP(va))); #endif - + virtual_avail = va + PAGE_SIZE; } @@ -1063,13 +1050,27 @@ pmap_bootstrap(vm_paddr_t *firstaddr) { int nkmapped; - long tmpMaxmem; - nkmapped = atop(VTOP(xenstack + 512 * 1024 + PAGE_SIZE)); - tmpMaxmem = Maxmem; + nkmapped = atop(VTOP(xenstack + 512 * 1024)); + + /* + * Converts number of pages available for backing page tables, + * to maximum contiguous and aligned VA span they can serve. + * We assume a maximum span of 512GB, therefore assuming 2 + * pages for 1 L4 and L3 table each. + */ + +#define npt_to_va_span(_npg) ((2ULL * 1024 * 1024 * 512 * ((_npg) - 2) + 513 - \ + 4ULL * 1024 * 1024 * 512) / 513) + + /* + * Converts a given aligned and contiguous span of VA to the + * number of pages of backing page tables required. + */ +#define va_span_to_npt(_span) (((513 * (_span) + 4ULL * 1024 * 1024 * 512 - 513) / \ + 2ULL * 1024 * 1024 * 512) + 2) - /* Truncate bootstrap pages to fit in 512kb */ - //Maxmem = atop(pgtok(Maxmem)) <= 64 ? Maxmem : 64; + Maxmem = atop(npt_to_va_span(atop(128 * 1024))); create_pagetables(firstaddr, nkmapped); @@ -1082,6 +1083,7 @@ pmap_bootstrap(vm_paddr_t *firstaddr) pmap_xen_setpages_rw(xen_start_info->pt_base, xen_start_info->nr_pt_frames); + bzero((void *)xen_start_info->pt_base, xen_start_info->nr_pt_frames * PAGE_SIZE); /* And DMAP mappings */ pmap_xen_setpages_rw(PHYS_TO_DMAP(VTOP(xen_start_info->pt_base)), xen_start_info->nr_pt_frames); @@ -1108,12 +1110,12 @@ pmap_bootstrap(vm_paddr_t *firstaddr) * they're scarce resources. Move along to the end of * guaranteed mapping. * - * Note: Xen *may* provide mappings upto xenstack + 2MB, but - * this is not guaranteed. We therefore assum that only 512KB + * Note: Xen *may* provide mappings upto xenstack + 4MB, but + * this is not guaranteed. We therefore assume that only 512KB * is available. */ - virtual_avail = (uintptr_t) xenstack + 512 * 1024; + virtual_avail = (uintptr_t) xenstack + 512 * 1024 + PAGE_SIZE; /* XXX: Check we don't overlap xen pgdir entries. */ virtual_end = VM_MAX_KERNEL_ADDRESS - PAGE_SIZE; @@ -1141,9 +1143,8 @@ pmap_bootstrap(vm_paddr_t *firstaddr) */ rw_init(&pvh_global_lock, "pmap pv global"); - pmap_pv_init(); - /* Steal some memory (backing physical pages, and kva) */ + physmem = Maxmem; /* XXX: remove after > 64M support */ physmem -= atop(round_page(msgbufsize)); msgbufp = (struct msgbuf *)PHYS_TO_DMAP(ptoa(physmem)); @@ -1166,7 +1167,8 @@ pmap_cache_bits(pmap_t pmap, int mode, b void pmap_page_init(vm_page_t m) { - pmap_pv_vm_page_init(m); + TAILQ_INIT(&m->md.pv_list); + m->md.pat_mode = PAT_WRITE_BACK; } /* @@ -1309,7 +1311,7 @@ pmap_extract(pmap_t pmap, vm_offset_t va pdpe = pmap_pdpe(pmap, va); if (pdpe != NULL && (*pdpe & PG_V) != 0) { if ((*pdpe & PG_PS) != 0) - pa = (*pdpe & PG_PS_FRAME) | (va & PDPMASK); + pa = xpmap_mtop(*pdpe & PG_PS_FRAME) | (va & PDPMASK); else { pde = pmap_pdpe_to_pde(pdpe, va); if ((*pde & PG_V) != 0) { @@ -1318,7 +1320,8 @@ pmap_extract(pmap_t pmap, vm_offset_t va (va & PDRMASK); } else { pte = pmap_pde_to_pte(pde, va); - pa = (*pte & PG_FRAME) | + KASSERT((*pte & PG_V) != 0, ("Invalide extraction")); + pa = xpmap_mtop(*pte & PG_FRAME) | (va & PAGE_MASK); } } @@ -1653,6 +1656,13 @@ _pmap_unwire_ptp(pmap_t pmap, vm_offset_ pml4_entry_t *pml4; pml4 = pmap_pml4e(pmap, va); PT_CLEAR_VA(pml4, true); + + /* XXX: revisit */ + /* Also clear alias if current */ + if (pmap == PCPU_GET(curpmap)) { + pml4 = pmap_pml4e(kernel_pmap, va); + PT_CLEAR_VA(pml4, true); + } } else if (m->pindex >= NUPDE) { /* PD page */ pdp_entry_t *pdp; @@ -1722,7 +1732,7 @@ pmap_pinit0(pmap_t pmap) CPU_ZERO(&pmap->pm_active); CPU_ZERO(&pmap->pm_save); PCPU_SET(curpmap, pmap); - pmap_pv_pmap_init(pmap); + TAILQ_INIT(&pmap->pm_pvchunk); bzero(&pmap->pm_stats, sizeof pmap->pm_stats); pmap->pm_pcid = -1; } @@ -1763,7 +1773,7 @@ pmap_pinit(pmap_t pmap) pmap->pm_root.rt_root = 0; CPU_ZERO(&pmap->pm_active); - pmap_pv_pmap_init(pmap); + TAILQ_INIT(&pmap->pm_pvchunk); bzero(&pmap->pm_stats, sizeof pmap->pm_stats); pmap->pm_pcid = -1; /* No pcid for now */ CPU_ZERO(&pmap->pm_save); @@ -1834,6 +1844,13 @@ _pmap_allocpte(pmap_t pmap, vm_pindex_t pml4index = ptepindex - (NUPDE + NUPDPE); pml4 = &pmap->pm_pml4[pml4index]; PT_SET_VA_MA(pml4, VM_PAGE_TO_MACH(m) | PG_U | PG_RW | PG_V | PG_A | PG_M, true); + + /* If current pmap, we clear the kernel alias entry too */ + if (pmap == PCPU_GET(curpmap)) { + pml4 = (pml4_entry_t *)PTOV(KPML4phys) + pml4index; + PT_SET_VA_MA(pml4, VM_PAGE_TO_MACH(m) | PG_U | PG_RW | PG_V | PG_A | PG_M, true); + PT_UPDATES_FLUSH(); + } } else if (ptepindex >= NUPDE) { vm_pindex_t pml4index; vm_pindex_t pdpindex; @@ -1923,6 +1940,7 @@ _pmap_allocpte(pmap_t pmap, vm_pindex_t return (m); } +#ifdef LARGEFRAMES static vm_page_t pmap_allocpde(pmap_t pmap, vm_offset_t va, struct rwlock **lockp) { @@ -1948,6 +1966,7 @@ retry: } return (pdpg); } +#endif static vm_page_t pmap_allocpte(pmap_t pmap, vm_offset_t va, struct rwlock **lockp) @@ -2448,6 +2467,7 @@ retry: return (pv); } +#ifdef LARGEFRAMES /* * Returns the number of one bits within the given PV chunk map element. */ @@ -2535,6 +2555,7 @@ retry: mtx_unlock(&pv_chunks_mutex); } } +#endif /* * First find and then remove the pv entry for the specified pmap and virtual @@ -2993,13 +3014,8 @@ validate: } if ((origpte & PG_A) != 0) pmap_invalidate_page(pmap, va); - } else { + } else pte_store(pte, newpte); - if (pmap != kernel_pmap) { - pmap_xen_userload(pmap); /*XXX: Move to kernel (re) entry ? */ - } - - } /* XXX: remove braces */ unchanged: @@ -3577,13 +3593,64 @@ small_mappings: pmap_free_zero_pages(&free); } +/* + * Routine: pmap_change_wiring + * Function: Change the wiring attribute for a map/virtual-address + * pair. + * In/out conditions: + * The mapping must already exist in the pmap. + */ void pmap_change_wiring(pmap_t pmap, vm_offset_t va, boolean_t wired) { - /* - * Nothing to do - page table backing pages are the only pages - * that are implicitly "wired". These are managed by uma(9). + pd_entry_t *pde; + pt_entry_t *pte; + boolean_t pv_lists_locked; + + pv_lists_locked = FALSE; + + /* + * Wiring is not a hardware characteristic so there is no need to + * invalidate TLB. */ +#ifdef LARGEFRAMES +retry: +#endif + PMAP_LOCK(pmap); + pde = pmap_pde(pmap, va); +#ifdef LARGEFRAMES + if ((*pde & PG_PS) != 0) { + if (!wired != ((*pde & PG_W) == 0)) { + if (!pv_lists_locked) { + pv_lists_locked = TRUE; + if (!rw_try_rlock(&pvh_global_lock)) { + PMAP_UNLOCK(pmap); + rw_rlock(&pvh_global_lock); + goto retry; + } + } + if (!pmap_demote_pde(pmap, pde, va)) + panic("pmap_change_wiring: demotion failed"); + } else + goto out; + } +#endif + pte = pmap_pde_to_pte(pde, va); + if (wired && (*pte & PG_W) == 0) { + pmap->pm_stats.wired_count++; + PT_SET_VA_MA(pte, *pte | PG_W, true); + //atomic_set_long(pte, PG_W); + } else if (!wired && (*pte & PG_W) != 0) { + pmap->pm_stats.wired_count--; + PT_SET_VA_MA(pte, *pte & ~PG_W, true); + //atomic_clear_long(pte, PG_W); + } +#ifdef LARGEFRAMES +out: +#endif + if (pv_lists_locked) + rw_runlock(&pvh_global_lock); + PMAP_UNLOCK(pmap); } /* @@ -4115,29 +4182,66 @@ pmap_page_set_memattr(vm_page_t m, vm_me KASSERT(0, ("XXX: %s: TODO\n", __func__)); } -static bool -pv_dummy(pmap_t pmap, vm_offset_t va, vm_page_t m) -{ - return true; /* stop at the first iteration */ -} - boolean_t pmap_page_is_mapped(vm_page_t m) { + struct rwlock *lock; + boolean_t rv; + if ((m->oflags & VPO_UNMANAGED) != 0) return (FALSE); - - return pmap_pv_iterate(m, pv_dummy, PV_RO_ITERATE); + rw_rlock(&pvh_global_lock); + lock = VM_PAGE_TO_PV_LIST_LOCK(m); + rw_rlock(lock); + rv = !TAILQ_EMPTY(&m->md.pv_list) || + ((m->flags & PG_FICTITIOUS) == 0 && + !TAILQ_EMPTY(&pa_to_pvh(VM_PAGE_TO_PHYS(m))->pv_list)); + rw_runlock(lock); + rw_runlock(&pvh_global_lock); + return (rv); } boolean_t pmap_page_exists_quick(pmap_t pmap, vm_page_t m) { - KASSERT(0, ("XXX: %s: TODO\n", __func__)); - return 0; -} + struct md_page *pvh; + struct rwlock *lock; + pv_entry_t pv; + int loops = 0; + boolean_t rv; + KASSERT((m->oflags & VPO_UNMANAGED) == 0, + ("pmap_page_exists_quick: page %p is not managed", m)); + rv = FALSE; + rw_rlock(&pvh_global_lock); + lock = VM_PAGE_TO_PV_LIST_LOCK(m); + rw_rlock(lock); + TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) { + if (PV_PMAP(pv) == pmap) { + rv = TRUE; + break; + } + loops++; + if (loops >= 16) + break; + } + if (!rv && loops < 16 && (m->flags & PG_FICTITIOUS) == 0) { + pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m)); + TAILQ_FOREACH(pv, &pvh->pv_list, pv_next) { + if (PV_PMAP(pv) == pmap) { + rv = TRUE; + break; + } + loops++; + if (loops >= 16) + break; + } + } + rw_runlock(lock); + rw_runlock(&pvh_global_lock); + return (rv); +} /* * pmap_page_wired_mappings: @@ -4206,11 +4310,114 @@ restart: return (count); } +static boolean_t +pmap_page_test_mappings(vm_page_t m, boolean_t accessed, boolean_t modified) +{ + struct rwlock *lock; + pv_entry_t pv; + struct md_page *pvh; + pt_entry_t *pte, mask; + pt_entry_t PG_A, PG_M, PG_RW, PG_V; + pmap_t pmap; + int md_gen, pvh_gen; + boolean_t rv; + + rv = FALSE; + rw_rlock(&pvh_global_lock); + lock = VM_PAGE_TO_PV_LIST_LOCK(m); + rw_rlock(lock); +restart: + TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) { + pmap = PV_PMAP(pv); + if (!PMAP_TRYLOCK(pmap)) { + md_gen = m->md.pv_gen; + rw_runlock(lock); + PMAP_LOCK(pmap); + rw_rlock(lock); + if (md_gen != m->md.pv_gen) { + PMAP_UNLOCK(pmap); + goto restart; + } + } + pte = pmap_pte(pmap, pv->pv_va); + mask = 0; + if (modified) { + PG_M = pmap_modified_bit(pmap); + PG_RW = pmap_rw_bit(pmap); + mask |= PG_RW | PG_M; + } + if (accessed) { + PG_A = pmap_accessed_bit(pmap); + PG_V = pmap_valid_bit(pmap); + mask |= PG_V | PG_A; + } + rv = (*pte & mask) == mask; + PMAP_UNLOCK(pmap); + if (rv) + goto out; + } + if ((m->flags & PG_FICTITIOUS) == 0) { + pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m)); + TAILQ_FOREACH(pv, &pvh->pv_list, pv_next) { + pmap = PV_PMAP(pv); + if (!PMAP_TRYLOCK(pmap)) { + md_gen = m->md.pv_gen; + pvh_gen = pvh->pv_gen; + rw_runlock(lock); + PMAP_LOCK(pmap); + rw_rlock(lock); + if (md_gen != m->md.pv_gen || + pvh_gen != pvh->pv_gen) { + PMAP_UNLOCK(pmap); + goto restart; + } + } + pte = pmap_pde(pmap, pv->pv_va); + mask = 0; + if (modified) { + PG_M = pmap_modified_bit(pmap); + PG_RW = pmap_rw_bit(pmap); + mask |= PG_RW | PG_M; + } + if (accessed) { + PG_A = pmap_accessed_bit(pmap); + PG_V = pmap_valid_bit(pmap); + mask |= PG_V | PG_A; + } + rv = (*pte & mask) == mask; + PMAP_UNLOCK(pmap); + if (rv) + goto out; + } + } +out: + rw_runlock(lock); + rw_runlock(&pvh_global_lock); + return (rv); +} + +/* + * pmap_is_modified: + * + * Return whether or not the specified physical page was modified + * in any physical maps. + */ boolean_t pmap_is_modified(vm_page_t m) { - KASSERT(0, ("XXX: %s: TODO\n", __func__)); - return 0; + + KASSERT((m->oflags & VPO_UNMANAGED) == 0, + ("pmap_is_modified: page %p is not managed", m)); + + /* + * If the page is not exclusive busied, then PGA_WRITEABLE cannot be + * concurrently set while the object is locked. Thus, if PGA_WRITEABLE + * is clear, no PTEs can have PG_M set. + */ + VM_OBJECT_ASSERT_WLOCKED(m->object); + if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0) + return (FALSE); + return (pmap_page_test_mappings(m, FALSE, TRUE)); } boolean_t @@ -4391,10 +4598,118 @@ resume: PMAP_UNLOCK(pmap); } +/* + * Clear the modify bits on the specified physical page. + */ + void pmap_clear_modify(vm_page_t m) { - KASSERT(0, ("XXX: %s: TODO\n", __func__)); + struct md_page *pvh; + pmap_t pmap; + pv_entry_t next_pv, pv; + pd_entry_t oldpde, *pde; + pt_entry_t oldpte, *pte, PG_M, PG_RW, PG_V; + struct rwlock *lock; + vm_offset_t va; + int md_gen, pvh_gen; + + KASSERT((m->oflags & VPO_UNMANAGED) == 0, + ("pmap_clear_modify: page %p is not managed", m)); + VM_OBJECT_ASSERT_WLOCKED(m->object); + KASSERT(!vm_page_xbusied(m), + ("pmap_clear_modify: page %p is exclusive busied", m)); + + /* + * If the page is not PGA_WRITEABLE, then no PTEs can have PG_M set. + * If the object containing the page is locked and the page is not + * exclusive busied, then PGA_WRITEABLE cannot be concurrently set. + */ + if ((m->aflags & PGA_WRITEABLE) == 0) + return; + pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m)); + rw_rlock(&pvh_global_lock); + lock = VM_PAGE_TO_PV_LIST_LOCK(m); + rw_wlock(lock); +restart: + if ((m->flags & PG_FICTITIOUS) != 0) + goto small_mappings; +#ifdef LARGEFRAMES + TAILQ_FOREACH_SAFE(pv, &pvh->pv_list, pv_next, next_pv) { + pmap = PV_PMAP(pv); + if (!PMAP_TRYLOCK(pmap)) { + pvh_gen = pvh->pv_gen; + rw_wunlock(lock); + PMAP_LOCK(pmap); + rw_wlock(lock); + if (pvh_gen != pvh->pv_gen) { + PMAP_UNLOCK(pmap); + goto restart; + } + } + PG_M = pmap_modified_bit(pmap); + PG_V = pmap_valid_bit(pmap); + PG_RW = pmap_rw_bit(pmap); + va = pv->pv_va; + pde = pmap_pde(pmap, va); + oldpde = *pde; + if ((oldpde & PG_RW) != 0) { + if (pmap_demote_pde_locked(pmap, pde, va, &lock)) { + if ((oldpde & PG_W) == 0) { + /* + * Write protect the mapping to a + * single page so that a subsequent + * write access may repromote. + */ + va += VM_PAGE_TO_PHYS(m) - (oldpde & + PG_PS_FRAME); + pte = pmap_pde_to_pte(pde, va); + oldpte = *pte; + if ((oldpte & PG_V) != 0) { + while (!atomic_cmpset_long(pte, + oldpte, + oldpte & ~(PG_M | PG_RW))) + oldpte = *pte; + vm_page_dirty(m); + pmap_invalidate_page(pmap, va); + } + } + } + } + PMAP_UNLOCK(pmap); + } +#endif /* LARGEFRAMES */ + /* XXX: remove with LARGEFRAMES */ + (void) next_pv, (void) oldpde, (void) oldpte, (void) PG_V, (void) va; +small_mappings: + TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) { + pmap = PV_PMAP(pv); + if (!PMAP_TRYLOCK(pmap)) { + md_gen = m->md.pv_gen; + pvh_gen = pvh->pv_gen; + rw_wunlock(lock); + PMAP_LOCK(pmap); + rw_wlock(lock); + if (pvh_gen != pvh->pv_gen || md_gen != m->md.pv_gen) { + PMAP_UNLOCK(pmap); + goto restart; + } + } + PG_M = pmap_modified_bit(pmap); + PG_RW = pmap_rw_bit(pmap); + pde = pmap_pde(pmap, pv->pv_va); + KASSERT((*pde & PG_PS) == 0, ("pmap_clear_modify: found" + " a 2mpage in page %p's pv list", m)); + pte = pmap_pde_to_pte(pde, pv->pv_va); + if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { + PT_SET_VA_MA(pte, (*pte & ~PG_M), true); + //atomic_clear_long(pte, PG_M); + pmap_invalidate_page(pmap, pv->pv_va); + } + PMAP_UNLOCK(pmap); + } + rw_wunlock(lock); + rw_runlock(&pvh_global_lock); } void * @@ -4492,7 +4807,7 @@ small_mappings: retry: oldpte = *pte; if (oldpte & PG_RW) { - if (!atomic_cmpset_long(pte, oldpte, oldpte & + if (!pte_cmp_store(pte, oldpte, oldpte & ~(PG_RW | PG_M))) goto retry; if ((oldpte & PG_M) != 0) @@ -4506,6 +4821,35 @@ retry: rw_runlock(&pvh_global_lock); } +static __inline boolean_t +safe_to_clear_referenced(pmap_t pmap, pt_entry_t pte) +{ + if (!pmap_emulate_ad_bits(pmap)) + return (TRUE); + + KASSERT(pmap->pm_type == PT_EPT, ("invalid pm_type %d", pmap->pm_type)); + + /* + * XWR = 010 or 110 will cause an unconditional EPT misconfiguration + * so we don't let the referenced (aka EPT_PG_READ) bit to be cleared + * if the EPT_PG_WRITE bit is set. + */ + if ((pte & EPT_PG_WRITE) != 0) + return (FALSE); + + /* + * XWR = 100 is allowed only if the PMAP_SUPPORTS_EXEC_ONLY is set. + */ + if ((pte & EPT_PG_EXECUTE) == 0 || + ((pmap->pm_flags & PMAP_SUPPORTS_EXEC_ONLY) != 0)) + return (TRUE); + else + return (FALSE); + + return FALSE; +} +#define PMAP_TS_REFERENCED_MAX 5 + /* * pmap_ts_referenced: * @@ -4514,20 +4858,202 @@ retry: * is necessary that 0 only be returned when there are truly no * reference bits set. * + * XXX: The exact number of bits to check and clear is a matter that + * should be tested and standardized at some point in the future for + * optimal aging of shared pages. */ - int pmap_ts_referenced(vm_page_t m) { - /* - * XXX: we don't clear refs yet. We just return non-zero if at - * least one reference exists. - * This obeys the required semantics - but only just. - */ + struct md_page *pvh; + pv_entry_t pv, pvf; + pmap_t pmap; + struct rwlock *lock; + + pd_entry_t oldpde, *pde; + pt_entry_t *pte, PG_A; + vm_offset_t va; + vm_paddr_t pa; + int cleared, md_gen, not_cleared, pvh_gen; + struct spglist free; + boolean_t demoted; + KASSERT((m->oflags & VPO_UNMANAGED) == 0, ("pmap_ts_referenced: page %p is not managed", m)); + SLIST_INIT(&free); + cleared = 0; + pa = VM_PAGE_TO_PHYS(m); + lock = PHYS_TO_PV_LIST_LOCK(pa); + pvh = pa_to_pvh(pa); + rw_rlock(&pvh_global_lock); + rw_wlock(lock); + +retry: + not_cleared = 0; + if ((m->flags & PG_FICTITIOUS) != 0 || + (pvf = TAILQ_FIRST(&pvh->pv_list)) == NULL) + goto small_mappings; + pv = pvf; + do { + if (pvf == NULL) + pvf = pv; + pmap = PV_PMAP(pv); + if (!PMAP_TRYLOCK(pmap)) { + pvh_gen = pvh->pv_gen; + rw_wunlock(lock); + PMAP_LOCK(pmap); + rw_wlock(lock); + if (pvh_gen != pvh->pv_gen) { + PMAP_UNLOCK(pmap); + goto retry; + } + } + PG_A = pmap_accessed_bit(pmap); + va = pv->pv_va; + pde = pmap_pde(pmap, pv->pv_va); + oldpde = *pde; + if ((*pde & PG_A) != 0) { + /* + * Since this reference bit is shared by 512 4KB + * pages, it should not be cleared every time it is + * tested. Apply a simple "hash" function on the + * physical page number, the virtual superpage number, + * and the pmap address to select one 4KB page out of + * the 512 on which testing the reference bit will + * result in clearing that reference bit. This + * function is designed to avoid the selection of the + * same 4KB page for every 2MB page mapping. + * + * On demotion, a mapping that hasn't been referenced + * is simply destroyed. To avoid the possibility of a + * subsequent page fault on a demoted wired mapping, + * always leave its reference bit set. Moreover, + * since the superpage is wired, the current state of + * its reference bit won't affect page replacement. + */ + if ((((pa >> PAGE_SHIFT) ^ (pv->pv_va >> PDRSHIFT) ^ + (uintptr_t)pmap) & (NPTEPG - 1)) == 0 && + (*pde & PG_W) == 0) { + if (safe_to_clear_referenced(pmap, oldpde)) { + atomic_clear_long(pde, PG_A); + pmap_invalidate_page(pmap, pv->pv_va); + demoted = FALSE; + } +#ifdef LARGEFRAMES /* XXX: This is not a clean separation of function. Review wrt safe_to_clear_referenced() above. */ + else if (pmap_demote_pde_locked(pmap, pde, + pv->pv_va, &lock)) { + /* + * Remove the mapping to a single page + * so that a subsequent access may + * repromote. Since the underlying + * page table page is fully populated, + * this removal never frees a page + * table page. + */ + demoted = TRUE; + va += VM_PAGE_TO_PHYS(m) - (oldpde & + PG_PS_FRAME); + pte = pmap_pde_to_pte(pde, va); + pmap_remove_pte(pmap, pte, va, *pde, + NULL, &lock); + pmap_invalidate_page(pmap, va); + } +#endif + else + demoted = TRUE; - return pmap_pv_iterate(m, pv_dummy, PV_RO_ITERATE); + if (demoted) { + /* + * The superpage mapping was removed + * entirely and therefore 'pv' is no + * longer valid. + */ + if (pvf == pv) + pvf = NULL; + pv = NULL; + } + cleared++; + KASSERT(lock == VM_PAGE_TO_PV_LIST_LOCK(m), + ("inconsistent pv lock %p %p for page %p", + lock, VM_PAGE_TO_PV_LIST_LOCK(m), m)); + } else + not_cleared++; + } + PMAP_UNLOCK(pmap); + /* Rotate the PV list if it has more than one entry. */ + if (pv != NULL && TAILQ_NEXT(pv, pv_next) != NULL) { + TAILQ_REMOVE(&pvh->pv_list, pv, pv_next); + TAILQ_INSERT_TAIL(&pvh->pv_list, pv, pv_next); + pvh->pv_gen++; + } + if (cleared + not_cleared >= PMAP_TS_REFERENCED_MAX) + goto out; + } while ((pv = TAILQ_FIRST(&pvh->pv_list)) != pvf); +small_mappings: + if ((pvf = TAILQ_FIRST(&m->md.pv_list)) == NULL) + goto out; + pv = pvf; + do { + if (pvf == NULL) + pvf = pv; + pmap = PV_PMAP(pv); + if (!PMAP_TRYLOCK(pmap)) { + pvh_gen = pvh->pv_gen; + md_gen = m->md.pv_gen; + rw_wunlock(lock); + PMAP_LOCK(pmap); + rw_wlock(lock); + if (pvh_gen != pvh->pv_gen || md_gen != m->md.pv_gen) { + PMAP_UNLOCK(pmap); + goto retry; + } + } + PG_A = pmap_accessed_bit(pmap); + pde = pmap_pde(pmap, pv->pv_va); + KASSERT((*pde & PG_PS) == 0, + ("pmap_ts_referenced: found a 2mpage in page %p's pv list", + m)); + pte = pmap_pde_to_pte(pde, pv->pv_va); + if ((*pte & PG_A) != 0) { + if (safe_to_clear_referenced(pmap, *pte)) { + pte_store(pte, *pte & ~PG_A); + //atomic_clear_long(pte, PG_A); + pmap_invalidate_page(pmap, pv->pv_va); + cleared++; + } else if ((*pte & PG_W) == 0) { + /* + * Wired pages cannot be paged out so + * doing accessed bit emulation for + * them is wasted effort. We do the + * hard work for unwired pages only. + */ + pmap_remove_pte(pmap, pte, pv->pv_va, + *pde, &free, &lock); + pmap_invalidate_page(pmap, pv->pv_va); + cleared++; + if (pvf == pv) + pvf = NULL; + pv = NULL; + KASSERT(lock == VM_PAGE_TO_PV_LIST_LOCK(m), + ("inconsistent pv lock %p %p for page %p", + lock, VM_PAGE_TO_PV_LIST_LOCK(m), m)); + } else + not_cleared++; + } + PMAP_UNLOCK(pmap); + /* Rotate the PV list if it has more than one entry. */ + if (pv != NULL && TAILQ_NEXT(pv, pv_next) != NULL) { + TAILQ_REMOVE(&m->md.pv_list, pv, pv_next); + TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_next); + m->md.pv_gen++; + } + } while ((pv = TAILQ_FIRST(&m->md.pv_list)) != pvf && cleared + + not_cleared < PMAP_TS_REFERENCED_MAX); +out: + rw_wunlock(lock); + rw_runlock(&pvh_global_lock); + pmap_free_zero_pages(&free); + return (cleared + not_cleared); } void @@ -4575,8 +5101,57 @@ pmap_resume() int pmap_mincore(pmap_t pmap, vm_offset_t addr, vm_paddr_t *locked_pa) { - KASSERT(0, ("XXX: %s: TODO\n", __func__)); - return -1; + pd_entry_t *pdep; + pt_entry_t pte, PG_A, PG_M, PG_RW, PG_V; + vm_paddr_t pa; + int val; + + PG_A = pmap_accessed_bit(pmap); + PG_M = pmap_modified_bit(pmap); + PG_V = pmap_valid_bit(pmap); + PG_RW = pmap_rw_bit(pmap); + + PMAP_LOCK(pmap); +retry: + pdep = pmap_pde(pmap, addr); + if (pdep != NULL && (*pdep & PG_V)) { +#ifdef LARGEFRAMES + if (*pdep & PG_PS) { + pte = *pdep; + /* Compute the physical address of the 4KB page. */ + pa = ((*pdep & PG_PS_FRAME) | (addr & PDRMASK)) & + PG_FRAME; + val = MINCORE_SUPER; + } else +#endif + { + + pte = *pmap_pde_to_pte(pdep, addr); + pa = xpmap_mtop(pte & PG_FRAME); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Aug 19 06:37:33 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABBFEE8F; Tue, 19 Aug 2014 06:37:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97EB435C8; Tue, 19 Aug 2014 06:37:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7J6bXLe050626; Tue, 19 Aug 2014 06:37:33 GMT (envelope-from sjg@FreeBSD.org) Received: (from sjg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7J6bXfJ050625; Tue, 19 Aug 2014 06:37:33 GMT (envelope-from sjg@FreeBSD.org) Message-Id: <201408190637.s7J6bXfJ050625@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sjg set sender to sjg@FreeBSD.org using -f From: "Simon J. Gerraty" Date: Tue, 19 Aug 2014 06:37:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270163 - projects/bmake/pkgs/pseudo/bootstrap-tools 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.18-1 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, 19 Aug 2014 06:37:33 -0000 Author: sjg Date: Tue Aug 19 06:37:33 2014 New Revision: 270163 URL: http://svnweb.freebsd.org/changeset/base/270163 Log: After we finish using src/Makefile.inc1 to bootstrap legacy tools use it to build the toolchain we actually want. Modified: projects/bmake/pkgs/pseudo/bootstrap-tools/Makefile Modified: projects/bmake/pkgs/pseudo/bootstrap-tools/Makefile ============================================================================== --- projects/bmake/pkgs/pseudo/bootstrap-tools/Makefile Tue Aug 19 03:51:10 2014 (r270162) +++ projects/bmake/pkgs/pseudo/bootstrap-tools/Makefile Tue Aug 19 06:37:33 2014 (r270163) @@ -1,9 +1,8 @@ # $FreeBSD$ # building clang is particularly tedious - so avoid re-inventing wheels -# the end result is -all: cross-tools build-tools +all: bootstrap-toolchain UPDATE_DEPENDFILE= no .export UPDATE_DEPENDFILE @@ -28,6 +27,7 @@ BSARGS= \ SSP_CFLAGS= \ MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ + -DWITH_CLANG_BOOTSTRAP \ -DNO_CPU_CFLAGS -DNO_WARNS MK_CTF=no -DEARLY_BUILD MK_TESTS=no @@ -45,3 +45,22 @@ cross-tools: build-tools cross-tools build-tools bootstrap-tools: .MAKE .META ${BSENV} ${MAKE} -C ${SRCTOP} -f Makefile.inc1 ${BSARGS} $@ touch $@ + +# MAKELEVEL=0 so that dirdeps.mk does its thing +# LEGACY_TOOLS lets us use the bootstaped stuff above +# TARGET* is so that MK_CLANG gets set correctly. +BSTCENV= \ + MAKELEVEL=0 \ + MACHINE=host \ + LEGACY_TOOLS=${LEGACY_TOOLS} \ + TARGET=${HOST_MACHINE} \ + TARGET_ARCH=${HOST_MACHINE_ARCH} + +BSTCARGS= \ + ${BSARGS} \ + -DWITH_STAGING \ + -DWITH_TOOLSDIR + +# finally we build toolchain leveraging the above. +bootstrap-toolchain: .MAKE cross-tools + ${BSTCENV} ${MAKE} -C ${.CURDIR:H:H} ${BSTCARGS} toolchain From owner-svn-src-projects@FreeBSD.ORG Tue Aug 19 06:51:08 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE237147; Tue, 19 Aug 2014 06:51:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3BF436A3; Tue, 19 Aug 2014 06:51:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7J6p826058006; Tue, 19 Aug 2014 06:51:08 GMT (envelope-from sjg@FreeBSD.org) Received: (from sjg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7J6p3RK055662; Tue, 19 Aug 2014 06:51:03 GMT (envelope-from sjg@FreeBSD.org) Message-Id: <201408190651.s7J6p3RK055662@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sjg set sender to sjg@FreeBSD.org using -f From: "Simon J. Gerraty" Date: Tue, 19 Aug 2014 06:51:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270164 - in projects/bmake: . bin/chio bin/csh bin/ed bin/freebsd-version bin/ls bin/mv bin/pkill bin/ps bin/rm bin/rmail bin/setfacl bin/sh bin/sh/tests/builtins bin/sh/tests/paramete... 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.18-1 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, 19 Aug 2014 06:51:08 -0000 Author: sjg Date: Tue Aug 19 06:50:54 2014 New Revision: 270164 URL: http://svnweb.freebsd.org/changeset/base/270164 Log: Merge head from 7/28 Added: projects/bmake/.arcconfig - copied unchanged from r269221, head/.arcconfig projects/bmake/.arclint - copied unchanged from r269221, head/.arclint projects/bmake/bin/sh/tests/builtins/break6.0 - copied unchanged from r269221, head/bin/sh/tests/builtins/break6.0 projects/bmake/bin/sh/tests/builtins/getopts6.0 - copied unchanged from r269221, head/bin/sh/tests/builtins/getopts6.0 projects/bmake/bin/sh/tests/builtins/getopts7.0 - copied unchanged from r269221, head/bin/sh/tests/builtins/getopts7.0 projects/bmake/bin/sh/tests/builtins/getopts8.0 - copied unchanged from r269221, head/bin/sh/tests/builtins/getopts8.0 projects/bmake/bin/sh/tests/builtins/getopts8.0.stdout - copied unchanged from r269221, head/bin/sh/tests/builtins/getopts8.0.stdout projects/bmake/bin/sh/tests/parameters/positional3.0 - copied unchanged from r269221, head/bin/sh/tests/parameters/positional3.0 projects/bmake/bin/sh/tests/parameters/positional4.0 - copied unchanged from r269221, head/bin/sh/tests/parameters/positional4.0 projects/bmake/bin/sh/tests/parameters/positional5.0 - copied unchanged from r269221, head/bin/sh/tests/parameters/positional5.0 projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ - copied from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.fds.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.fds.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.getf.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.getf.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.procpriv.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.procpriv.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.providers.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.providers.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/strtoll/ - copied from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/strtoll/ projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/uctf/ - copied from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/uctf/ projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh.out - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh.out projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh - copied unchanged from r269221, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh projects/bmake/cddl/contrib/opensolaris/common/util/ - copied from r269221, head/cddl/contrib/opensolaris/common/util/ projects/bmake/contrib/apr/CMakeLists.txt - copied unchanged from r269221, head/contrib/apr/CMakeLists.txt projects/bmake/contrib/apr/README.cmake - copied unchanged from r269221, head/contrib/apr/README.cmake projects/bmake/contrib/apr/encoding/ - copied from r269221, head/contrib/apr/encoding/ projects/bmake/contrib/apr/include/apr.hwc - copied unchanged from r269221, head/contrib/apr/include/apr.hwc projects/bmake/contrib/apr/include/apr_escape.h - copied unchanged from r269221, head/contrib/apr/include/apr_escape.h projects/bmake/contrib/apr/include/apr_skiplist.h - copied unchanged from r269221, head/contrib/apr/include/apr_skiplist.h projects/bmake/contrib/apr/include/private/ - copied from r269221, head/contrib/apr/include/private/ projects/bmake/contrib/apr/poll/unix/z_asio.c - copied unchanged from r269221, head/contrib/apr/poll/unix/z_asio.c projects/bmake/contrib/apr/tables/apr_skiplist.c - copied unchanged from r269221, head/contrib/apr/tables/apr_skiplist.c projects/bmake/contrib/apr/tools/ - copied from r269221, head/contrib/apr/tools/ projects/bmake/contrib/file/config.guess - copied unchanged from r269221, head/contrib/file/config.guess projects/bmake/contrib/file/config.sub - copied unchanged from r269221, head/contrib/file/config.sub projects/bmake/contrib/file/depcomp - copied unchanged from r269221, head/contrib/file/depcomp projects/bmake/contrib/file/doc/ - copied from r269221, head/contrib/file/doc/ projects/bmake/contrib/file/ltmain.sh - copied unchanged from r269221, head/contrib/file/ltmain.sh projects/bmake/contrib/file/m4/ - copied from r269221, head/contrib/file/m4/ projects/bmake/contrib/file/magic/ - copied from r269221, head/contrib/file/magic/ projects/bmake/contrib/file/missing - copied unchanged from r269221, head/contrib/file/missing projects/bmake/contrib/file/python/ - copied from r269221, head/contrib/file/python/ projects/bmake/contrib/file/src/ - copied from r269221, head/contrib/file/src/ projects/bmake/contrib/file/tests/escapevel.result - copied unchanged from r269221, head/contrib/file/tests/escapevel.result projects/bmake/contrib/file/tests/escapevel.testfile - copied unchanged from r269221, head/contrib/file/tests/escapevel.testfile projects/bmake/contrib/file/tests/issue311docx.result - copied unchanged from r269221, head/contrib/file/tests/issue311docx.result projects/bmake/contrib/file/tests/issue311docx.testfile - copied unchanged from r269221, head/contrib/file/tests/issue311docx.testfile projects/bmake/contrib/ldns/README.git - copied unchanged from r269221, head/contrib/ldns/README.git projects/bmake/contrib/ldns/ldns/radix.h - copied unchanged from r269221, head/contrib/ldns/ldns/radix.h projects/bmake/contrib/ldns/m4/ - copied from r269221, head/contrib/ldns/m4/ projects/bmake/contrib/ldns/radix.c - copied unchanged from r269221, head/contrib/ldns/radix.c projects/bmake/contrib/libucl/ChangeLog.md - copied unchanged from r269221, head/contrib/libucl/ChangeLog.md projects/bmake/contrib/libucl/src/ucl_emitter_streamline.c - copied unchanged from r269221, head/contrib/libucl/src/ucl_emitter_streamline.c projects/bmake/contrib/libucl/src/ucl_emitter_utils.c - copied unchanged from r269221, head/contrib/libucl/src/ucl_emitter_utils.c projects/bmake/contrib/libucl/tests/basic/11.in - copied unchanged from r269221, head/contrib/libucl/tests/basic/11.in projects/bmake/contrib/libucl/tests/basic/11.res - copied unchanged from r269221, head/contrib/libucl/tests/basic/11.res projects/bmake/contrib/libucl/tests/streamline.res - copied unchanged from r269221, head/contrib/libucl/tests/streamline.res projects/bmake/contrib/libucl/tests/streamline.test - copied unchanged from r269221, head/contrib/libucl/tests/streamline.test projects/bmake/contrib/libucl/tests/test_streamline.c - copied unchanged from r269221, head/contrib/libucl/tests/test_streamline.c projects/bmake/contrib/llvm/patches/patch-r265477-clang-r198655-standalone-debug.diff - copied unchanged from r269221, head/contrib/llvm/patches/patch-r265477-clang-r198655-standalone-debug.diff projects/bmake/contrib/llvm/patches/patch-r266674-clang-r209489-fix-xmmintrin.diff - copied unchanged from r269221, head/contrib/llvm/patches/patch-r266674-clang-r209489-fix-xmmintrin.diff projects/bmake/contrib/llvm/patches/patch-r267704-llvm-r211435-fix-avx-backend.diff - copied unchanged from r269221, head/contrib/llvm/patches/patch-r267704-llvm-r211435-fix-avx-backend.diff projects/bmake/contrib/llvm/patches/patch-r267981-llvm-r211435-fix-ppc-fctiduz.diff - copied unchanged from r269221, head/contrib/llvm/patches/patch-r267981-llvm-r211435-fix-ppc-fctiduz.diff projects/bmake/contrib/unbound/ax_pthread.m4 - copied unchanged from r269221, head/contrib/unbound/ax_pthread.m4 projects/bmake/contrib/unbound/compat/strlcat.c - copied unchanged from r269221, head/contrib/unbound/compat/strlcat.c projects/bmake/contrib/unbound/ldns/ - copied from r269221, head/contrib/unbound/ldns/ projects/bmake/contrib/unbound/libunbound/unbound-event.h - copied unchanged from r269221, head/contrib/unbound/libunbound/unbound-event.h projects/bmake/crypto/openssl/ssl/heartbeat_test.c - copied unchanged from r269221, head/crypto/openssl/ssl/heartbeat_test.c projects/bmake/include/xlocale/_strings.h - copied unchanged from r269221, head/include/xlocale/_strings.h projects/bmake/lib/libc/arm/aeabi/aeabi_unwind_exidx.c - copied unchanged from r269221, head/lib/libc/arm/aeabi/aeabi_unwind_exidx.c projects/bmake/lib/libcuse/ - copied from r269221, head/lib/libcuse/ projects/bmake/lib/libcuse/Makefile.depend (contents, props changed) projects/bmake/lib/libedit/TEST/tc1.c - copied unchanged from r269221, head/lib/libedit/TEST/tc1.c projects/bmake/lib/libthr/plockstat.d - copied unchanged from r269221, head/lib/libthr/plockstat.d projects/bmake/lib/libz/zlib.pc - copied unchanged from r269221, head/lib/libz/zlib.pc projects/bmake/lib/msun/ld128/s_erfl.c - copied unchanged from r269221, head/lib/msun/ld128/s_erfl.c projects/bmake/lib/msun/ld80/s_erfl.c - copied unchanged from r269221, head/lib/msun/ld80/s_erfl.c projects/bmake/libexec/atf/atf-sh/ - copied from r269221, head/libexec/atf/atf-sh/ projects/bmake/libexec/atf/atf-sh/Makefile.depend (contents, props changed) projects/bmake/libexec/rtld-elf/tests/ - copied from r269221, head/libexec/rtld-elf/tests/ projects/bmake/sbin/camcontrol/persist.c - copied unchanged from r269221, head/sbin/camcontrol/persist.c projects/bmake/share/man/man4/ismt.4 - copied unchanged from r269221, head/share/man/man4/ismt.4 projects/bmake/share/man/man4/lm75.4 - copied unchanged from r269221, head/share/man/man4/lm75.4 projects/bmake/share/man/man4/vt.4 - copied unchanged from r269221, head/share/man/man4/vt.4 projects/bmake/share/man/man9/PCBGROUP.9 - copied unchanged from r269221, head/share/man/man9/PCBGROUP.9 projects/bmake/share/man/man9/fpu_kern.9 - copied unchanged from r269221, head/share/man/man9/fpu_kern.9 projects/bmake/share/man/man9/pmap_protect.9 - copied unchanged from r269221, head/share/man/man9/pmap_protect.9 projects/bmake/share/man/man9/pmap_unwire.9 - copied unchanged from r269221, head/share/man/man9/pmap_unwire.9 projects/bmake/share/mk/src.sys.mk - copied, changed from r269221, head/share/mk/src.sys.mk projects/bmake/share/vt/ - copied from r269221, head/share/vt/ projects/bmake/sys/arm/arm/platform.c - copied unchanged from r269221, head/sys/arm/arm/platform.c projects/bmake/sys/arm/arm/platform_if.m - copied unchanged from r269221, head/sys/arm/arm/platform_if.m projects/bmake/sys/arm/conf/APALIS-IMX6 - copied unchanged from r269221, head/sys/arm/conf/APALIS-IMX6 projects/bmake/sys/arm/conf/ARNDALE-OCTA - copied unchanged from r269221, head/sys/arm/conf/ARNDALE-OCTA projects/bmake/sys/arm/conf/CHROMEBOOK-SNOW - copied unchanged from r269221, head/sys/arm/conf/CHROMEBOOK-SNOW projects/bmake/sys/arm/conf/CHROMEBOOK-SPRING - copied unchanged from r269221, head/sys/arm/conf/CHROMEBOOK-SPRING projects/bmake/sys/arm/conf/EXYNOS5.common - copied unchanged from r269221, head/sys/arm/conf/EXYNOS5.common projects/bmake/sys/arm/conf/EXYNOS5250 - copied unchanged from r269221, head/sys/arm/conf/EXYNOS5250 projects/bmake/sys/arm/conf/EXYNOS5420 - copied unchanged from r269221, head/sys/arm/conf/EXYNOS5420 projects/bmake/sys/arm/conf/RADXA-LITE - copied unchanged from r269221, head/sys/arm/conf/RADXA-LITE projects/bmake/sys/arm/conf/RK3188 - copied unchanged from r269221, head/sys/arm/conf/RK3188 projects/bmake/sys/arm/freescale/imx/imx_gpio.c - copied unchanged from r269221, head/sys/arm/freescale/imx/imx_gpio.c projects/bmake/sys/arm/freescale/imx/imx_i2c.c - copied unchanged from r269221, head/sys/arm/freescale/imx/imx_i2c.c projects/bmake/sys/arm/freescale/vybrid/vf_adc.c - copied unchanged from r269221, head/sys/arm/freescale/vybrid/vf_adc.c projects/bmake/sys/arm/freescale/vybrid/vf_adc.h - copied unchanged from r269221, head/sys/arm/freescale/vybrid/vf_adc.h projects/bmake/sys/arm/freescale/vybrid/vf_spi.c - copied unchanged from r269221, head/sys/arm/freescale/vybrid/vf_spi.c projects/bmake/sys/arm/include/platform.h - copied unchanged from r269221, head/sys/arm/include/platform.h projects/bmake/sys/arm/include/platformvar.h - copied unchanged from r269221, head/sys/arm/include/platformvar.h projects/bmake/sys/arm/rockchip/rk30xx_mp.c - copied unchanged from r269221, head/sys/arm/rockchip/rk30xx_mp.c projects/bmake/sys/arm/samsung/exynos/exynos_uart.c - copied unchanged from r269221, head/sys/arm/samsung/exynos/exynos_uart.c projects/bmake/sys/arm/samsung/exynos/exynos_uart.h - copied unchanged from r269221, head/sys/arm/samsung/exynos/exynos_uart.h projects/bmake/sys/arm/samsung/exynos/std.exynos5250 - copied unchanged from r269221, head/sys/arm/samsung/exynos/std.exynos5250 projects/bmake/sys/arm/samsung/exynos/std.exynos5420 - copied unchanged from r269221, head/sys/arm/samsung/exynos/std.exynos5420 projects/bmake/sys/boot/fdt/dts/Makefile - copied unchanged from r269221, head/sys/boot/fdt/dts/Makefile projects/bmake/sys/boot/fdt/dts/Makefile.inc - copied unchanged from r269221, head/sys/boot/fdt/dts/Makefile.inc projects/bmake/sys/boot/fdt/dts/arm/Makefile - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/Makefile projects/bmake/sys/boot/fdt/dts/arm/apalis-imx6.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/apalis-imx6.dts projects/bmake/sys/boot/fdt/dts/arm/exynos5.dtsi - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/exynos5.dtsi projects/bmake/sys/boot/fdt/dts/arm/exynos5250-chromebook-snow.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/exynos5250-chromebook-snow.dts projects/bmake/sys/boot/fdt/dts/arm/exynos5250-chromebook-spring.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/exynos5250-chromebook-spring.dts projects/bmake/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts projects/bmake/sys/boot/fdt/dts/arm/exynos5420.dtsi - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/exynos5420.dtsi projects/bmake/sys/boot/fdt/dts/arm/rk3188-radxa-lite.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/arm/rk3188-radxa-lite.dts projects/bmake/sys/boot/fdt/dts/mips/Makefile - copied unchanged from r269221, head/sys/boot/fdt/dts/mips/Makefile projects/bmake/sys/boot/fdt/dts/powerpc/Makefile - copied unchanged from r269221, head/sys/boot/fdt/dts/powerpc/Makefile projects/bmake/sys/boot/fdt/dts/powerpc/p2041rdb.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/powerpc/p2041rdb.dts projects/bmake/sys/boot/fdt/dts/powerpc/p3041ds.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/powerpc/p3041ds.dts projects/bmake/sys/boot/fdt/dts/powerpc/p5020ds.dts - copied unchanged from r269221, head/sys/boot/fdt/dts/powerpc/p5020ds.dts projects/bmake/sys/boot/usb/storage/ - copied from r269221, head/sys/boot/usb/storage/ projects/bmake/sys/cam/ctl/ctl_tpc.c - copied unchanged from r269221, head/sys/cam/ctl/ctl_tpc.c projects/bmake/sys/cam/ctl/ctl_tpc.h - copied unchanged from r269221, head/sys/cam/ctl/ctl_tpc.h projects/bmake/sys/cam/ctl/ctl_tpc_local.c - copied unchanged from r269221, head/sys/cam/ctl/ctl_tpc_local.c projects/bmake/sys/cddl/boot/zfs/blkptr.c - copied unchanged from r269221, head/sys/cddl/boot/zfs/blkptr.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/blkptr.c - copied unchanged from r269221, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/blkptr.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/blkptr.h - copied unchanged from r269221, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/blkptr.h projects/bmake/sys/conf/kern.opts.mk - copied unchanged from r269221, head/sys/conf/kern.opts.mk projects/bmake/sys/dev/cxgbe/firmware/t4fw-1.11.27.0.bin.uu - copied unchanged from r269221, head/sys/dev/cxgbe/firmware/t4fw-1.11.27.0.bin.uu projects/bmake/sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu - copied unchanged from r269221, head/sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu projects/bmake/sys/dev/cxgbe/t4_netmap.c - copied unchanged from r269221, head/sys/dev/cxgbe/t4_netmap.c projects/bmake/sys/dev/fdt/fdt_arm_platform.c - copied unchanged from r269221, head/sys/dev/fdt/fdt_arm_platform.c projects/bmake/sys/dev/i40e/ - copied from r269221, head/sys/dev/i40e/ projects/bmake/sys/dev/iicbus/lm75.c - copied unchanged from r269221, head/sys/dev/iicbus/lm75.c projects/bmake/sys/dev/ismt/ - copied from r269221, head/sys/dev/ismt/ projects/bmake/sys/dev/usb/controller/saf1761_otg.c - copied unchanged from r269221, head/sys/dev/usb/controller/saf1761_otg.c projects/bmake/sys/dev/usb/controller/saf1761_otg.h - copied unchanged from r269221, head/sys/dev/usb/controller/saf1761_otg.h projects/bmake/sys/dev/usb/controller/saf1761_otg_boot.c - copied unchanged from r269221, head/sys/dev/usb/controller/saf1761_otg_boot.c projects/bmake/sys/dev/usb/controller/saf1761_otg_fdt.c - copied unchanged from r269221, head/sys/dev/usb/controller/saf1761_otg_fdt.c projects/bmake/sys/dev/usb/controller/saf1761_otg_reg.h - copied unchanged from r269221, head/sys/dev/usb/controller/saf1761_otg_reg.h projects/bmake/sys/dev/virtio/virtio_config.h - copied unchanged from r269221, head/sys/dev/virtio/virtio_config.h projects/bmake/sys/dev/virtio/virtio_ids.h - copied unchanged from r269221, head/sys/dev/virtio/virtio_ids.h projects/bmake/sys/dev/vt/hw/vga/vt_vga.c - copied unchanged from r269221, head/sys/dev/vt/hw/vga/vt_vga.c projects/bmake/sys/dev/vt/hw/vga/vt_vga_reg.h - copied unchanged from r269221, head/sys/dev/vt/hw/vga/vt_vga_reg.h projects/bmake/sys/dev/xen/pvcpu/ - copied from r269221, head/sys/dev/xen/pvcpu/ projects/bmake/sys/fs/cuse/ - copied from r269221, head/sys/fs/cuse/ projects/bmake/sys/geom/part/g_part_bsd64.c - copied unchanged from r269221, head/sys/geom/part/g_part_bsd64.c projects/bmake/sys/modules/cuse/ - copied from r269221, head/sys/modules/cuse/ projects/bmake/sys/modules/geom/geom_part/geom_part_bsd64/ - copied from r269221, head/sys/modules/geom/geom_part/geom_part_bsd64/ projects/bmake/sys/modules/i2c/controllers/ismt/ - copied from r269221, head/sys/modules/i2c/controllers/ismt/ projects/bmake/sys/modules/i40e/ - copied from r269221, head/sys/modules/i40e/ projects/bmake/sys/modules/tsec/ - copied from r269221, head/sys/modules/tsec/ projects/bmake/sys/modules/usb/saf1761otg/ - copied from r269221, head/sys/modules/usb/saf1761otg/ projects/bmake/sys/rpc/clnt_bck.c - copied unchanged from r269221, head/sys/rpc/clnt_bck.c projects/bmake/sys/x86/xen/xen_apic.c - copied unchanged from r269221, head/sys/x86/xen/xen_apic.c projects/bmake/sys/x86/xen/xen_nexus.c - copied unchanged from r269221, head/sys/x86/xen/xen_nexus.c projects/bmake/sys/x86/xen/xenpv.c - copied unchanged from r269221, head/sys/x86/xen/xenpv.c projects/bmake/sys/xen/xen_pv.h - copied unchanged from r269221, head/sys/xen/xen_pv.h projects/bmake/tools/build/options/WITHOUT_DOCCOMPRESS - copied unchanged from r269221, head/tools/build/options/WITHOUT_DOCCOMPRESS projects/bmake/tools/build/options/WITHOUT_GNU_GREP_COMPAT - copied unchanged from r269221, head/tools/build/options/WITHOUT_GNU_GREP_COMPAT projects/bmake/tools/build/options/WITHOUT_MANCOMPRESS - copied unchanged from r269221, head/tools/build/options/WITHOUT_MANCOMPRESS projects/bmake/tools/build/options/WITHOUT_SYSCALL_COMPAT - copied unchanged from r269221, head/tools/build/options/WITHOUT_SYSCALL_COMPAT projects/bmake/tools/build/options/WITHOUT_VT - copied unchanged from r269221, head/tools/build/options/WITHOUT_VT projects/bmake/tools/build/options/WITHOUT_WARNS - copied unchanged from r269221, head/tools/build/options/WITHOUT_WARNS projects/bmake/tools/build/options/WITH_FMAKE - copied unchanged from r269221, head/tools/build/options/WITH_FMAKE projects/bmake/tools/build/options/WITH_INFO - copied unchanged from r269221, head/tools/build/options/WITH_INFO projects/bmake/tools/build/options/WITH_PIE - copied unchanged from r269221, head/tools/build/options/WITH_PIE projects/bmake/tools/ifnet/ - copied from r269221, head/tools/ifnet/ projects/bmake/tools/tools/nanobsd/rescue/R32 - copied unchanged from r269221, head/tools/tools/nanobsd/rescue/R32 projects/bmake/tools/tools/nanobsd/rescue/R64 - copied unchanged from r269221, head/tools/tools/nanobsd/rescue/R64 projects/bmake/usr.bin/bmake/tests/ - copied from r269221, head/usr.bin/bmake/tests/ projects/bmake/usr.bin/gcore/elf32core.c - copied unchanged from r269221, head/usr.bin/gcore/elf32core.c projects/bmake/usr.bin/m4/lib/ohash.c - copied unchanged from r269221, head/usr.bin/m4/lib/ohash.c projects/bmake/usr.bin/mkimg/format.c - copied unchanged from r269221, head/usr.bin/mkimg/format.c projects/bmake/usr.bin/mkimg/format.h - copied unchanged from r269221, head/usr.bin/mkimg/format.h projects/bmake/usr.bin/mkimg/image.c - copied unchanged from r269221, head/usr.bin/mkimg/image.c projects/bmake/usr.bin/mkimg/image.h - copied unchanged from r269221, head/usr.bin/mkimg/image.h projects/bmake/usr.bin/mkimg/raw.c - copied unchanged from r269221, head/usr.bin/mkimg/raw.c projects/bmake/usr.bin/mkimg/vhd.c - copied unchanged from r269221, head/usr.bin/mkimg/vhd.c projects/bmake/usr.bin/mkimg/vmdk.c - copied unchanged from r269221, head/usr.bin/mkimg/vmdk.c projects/bmake/usr.bin/printf/tests/regress.missingpos1.out - copied unchanged from r269221, head/usr.bin/printf/tests/regress.missingpos1.out projects/bmake/usr.bin/procstat/procstat_rusage.c - copied unchanged from r269221, head/usr.bin/procstat/procstat_rusage.c projects/bmake/usr.bin/send-pr/ - copied from r269221, head/usr.bin/send-pr/ projects/bmake/usr.bin/timeout/ - copied from r269221, head/usr.bin/timeout/ projects/bmake/usr.bin/timeout/Makefile.depend (contents, props changed) projects/bmake/usr.bin/truncate/tests/ - copied from r269221, head/usr.bin/truncate/tests/ projects/bmake/usr.bin/units/tests/ - copied from r269221, head/usr.bin/units/tests/ projects/bmake/usr.bin/users/users.cc - copied unchanged from r269221, head/usr.bin/users/users.cc projects/bmake/usr.bin/vtfontcvt/ - copied from r269221, head/usr.bin/vtfontcvt/ projects/bmake/usr.bin/vtfontcvt/Makefile.depend (contents, props changed) projects/bmake/usr.bin/yacc/tests/yacc_tests.sh - copied unchanged from r269221, head/usr.bin/yacc/tests/yacc_tests.sh projects/bmake/usr.sbin/bhyve/pci_irq.c - copied unchanged from r269221, head/usr.sbin/bhyve/pci_irq.c projects/bmake/usr.sbin/bhyve/pci_irq.h - copied unchanged from r269221, head/usr.sbin/bhyve/pci_irq.h projects/bmake/usr.sbin/bhyve/task_switch.c - copied unchanged from r269221, head/usr.sbin/bhyve/task_switch.c projects/bmake/usr.sbin/bsdconfig/examples/add_some_packages.sh - copied unchanged from r269221, head/usr.sbin/bsdconfig/examples/add_some_packages.sh projects/bmake/usr.sbin/bsdconfig/share/packages/musthavepkg.subr - copied unchanged from r269221, head/usr.sbin/bsdconfig/share/packages/musthavepkg.subr projects/bmake/usr.sbin/bsnmpd/modules/snmp_lm75/ - copied from r269221, head/usr.sbin/bsnmpd/modules/snmp_lm75/ projects/bmake/usr.sbin/bsnmpd/modules/snmp_lm75/Makefile.depend (contents, props changed) projects/bmake/usr.sbin/chown/tests/ - copied from r269221, head/usr.sbin/chown/tests/ Replaced: projects/bmake/release/amd64/make-memstick.sh - copied unchanged from r269221, head/release/amd64/make-memstick.sh projects/bmake/sys/dev/iicbus/iic.h - copied unchanged from r269221, head/sys/dev/iicbus/iic.h projects/bmake/tools/build/options/WITHOUT_TESTS - copied unchanged from r269221, head/tools/build/options/WITHOUT_TESTS Deleted: projects/bmake/contrib/atf/atf-c++/atf-c++.m4 projects/bmake/contrib/atf/atf-c++/atf-c++.pc.in projects/bmake/contrib/atf/atf-c/atf-c.m4 projects/bmake/contrib/atf/atf-c/atf-c.pc.in projects/bmake/contrib/atf/atf-c/atf-common.m4 projects/bmake/contrib/atf/atf-sh/atf-sh.m4 projects/bmake/contrib/atf/atf-sh/atf-sh.pc.in projects/bmake/contrib/byacc/NOTES-btyacc-Changes projects/bmake/contrib/byacc/NOTES-btyacc-Disposition projects/bmake/contrib/file/Header projects/bmake/contrib/file/Localstuff projects/bmake/contrib/file/Magdir/ projects/bmake/contrib/file/Makefile.am-src projects/bmake/contrib/file/apprentice.c projects/bmake/contrib/file/apptype.c projects/bmake/contrib/file/ascmagic.c projects/bmake/contrib/file/asprintf.c projects/bmake/contrib/file/cdf.c projects/bmake/contrib/file/cdf.h projects/bmake/contrib/file/cdf_time.c projects/bmake/contrib/file/compress.c projects/bmake/contrib/file/elfclass.h projects/bmake/contrib/file/encoding.c projects/bmake/contrib/file/file.c projects/bmake/contrib/file/file.h projects/bmake/contrib/file/file.man projects/bmake/contrib/file/file_opts.h projects/bmake/contrib/file/fsmagic.c projects/bmake/contrib/file/funcs.c projects/bmake/contrib/file/getline.c projects/bmake/contrib/file/getopt_long.c projects/bmake/contrib/file/is_tar.c projects/bmake/contrib/file/libmagic.man projects/bmake/contrib/file/magic.c projects/bmake/contrib/file/magic.h projects/bmake/contrib/file/magic.man projects/bmake/contrib/file/magic2mime projects/bmake/contrib/file/mygetopt.h projects/bmake/contrib/file/names.h projects/bmake/contrib/file/print.c projects/bmake/contrib/file/readcdf.c projects/bmake/contrib/file/readelf.c projects/bmake/contrib/file/readelf.h projects/bmake/contrib/file/softmagic.c projects/bmake/contrib/file/strlcat.c projects/bmake/contrib/file/strlcpy.c projects/bmake/contrib/file/tar.h projects/bmake/contrib/file/tests/gedcom.magic projects/bmake/contrib/file/vasprintf.c projects/bmake/contrib/ldns/README.svn projects/bmake/contrib/ldns/compat/b32_ntop.c projects/bmake/contrib/ldns/compat/b32_pton.c projects/bmake/contrib/llvm/patches/patch-r262809-clang-r203007-destructor-calling-conv.diff projects/bmake/contrib/unbound/acx_pthread.m4 projects/bmake/contrib/unbound/util/configlexer.c projects/bmake/contrib/unbound/util/configparser.c projects/bmake/contrib/unbound/util/configparser.h projects/bmake/etc/etc.ia64/ projects/bmake/gnu/lib/libreadline/readline/doc/ projects/bmake/gnu/usr.bin/binutils/as/ia64-freebsd/ projects/bmake/gnu/usr.bin/binutils/ld/Makefile.ia64 projects/bmake/gnu/usr.bin/binutils/ld/elf64_ia64_fbsd.sh projects/bmake/gnu/usr.bin/binutils/libbfd/Makefile.ia64 projects/bmake/gnu/usr.bin/binutils/libopcodes/Makefile.ia64 projects/bmake/gnu/usr.bin/gdb/arch/ia64/ projects/bmake/gnu/usr.bin/gdb/kgdb/trgt_ia64.c projects/bmake/lib/clang/include/IA64GenAsmWriter.inc projects/bmake/lib/clang/include/IA64GenDAGISel.inc projects/bmake/lib/clang/include/IA64GenInstrInfo.inc projects/bmake/lib/clang/include/IA64GenRegisterInfo.inc projects/bmake/lib/csu/ia64/ projects/bmake/lib/libc/ia64/ projects/bmake/lib/libc/string/strcspn.3 projects/bmake/lib/libedit/TEST/test.c projects/bmake/lib/libkvm/kvm_ia64.c projects/bmake/lib/libthr/arch/ia64/ projects/bmake/lib/libthread_db/arch/ia64/ projects/bmake/lib/msun/ia64/ projects/bmake/libexec/rtld-elf/ia64/ projects/bmake/release/amd64/make-uefi-memstick.sh projects/bmake/release/amd64/mkisoimages-uefi.sh projects/bmake/release/ia64/ projects/bmake/sbin/Makefile.ia64 projects/bmake/secure/lib/libcrypto/opensslconf-ia64.h projects/bmake/share/examples/cvsup/ projects/bmake/share/man/man9/VOP_GETVOBJECT.9 projects/bmake/share/man/man9/pmap_page_protect.9 projects/bmake/share/man/man9/zero_copy.9 projects/bmake/share/mk/bsd.dtrace.mk projects/bmake/share/mk/bsd.pkg.mk projects/bmake/sys/amd64/conf/VT projects/bmake/sys/arm/conf/AC100 projects/bmake/sys/arm/conf/EXYNOS5250.common projects/bmake/sys/arm/freescale/imx/i2c.c projects/bmake/sys/arm/freescale/imx/imx51_gpio.c projects/bmake/sys/arm/samsung/exynos/std.exynos5 projects/bmake/sys/arm/samsung/exynos/uart.c projects/bmake/sys/arm/samsung/exynos/uart.h projects/bmake/sys/arm/tegra/ projects/bmake/sys/boot/Makefile.ia64 projects/bmake/sys/boot/efi/include/ia64/ projects/bmake/sys/boot/fdt/dts/arm/exynos5250-chromebook.dts projects/bmake/sys/boot/fdt/dts/arm/p2041rdb.dts projects/bmake/sys/boot/fdt/dts/arm/p3041ds.dts projects/bmake/sys/boot/fdt/dts/arm/p5020ds.dts projects/bmake/sys/boot/ficl/ia64/ projects/bmake/sys/boot/ia64/ projects/bmake/sys/cddl/contrib/opensolaris/common/atomic/ia64/ projects/bmake/sys/cddl/dev/dtrace/dtrace_clone.c projects/bmake/sys/conf/Makefile.ia64 projects/bmake/sys/conf/files.ia64 projects/bmake/sys/conf/ldscript.ia64 projects/bmake/sys/conf/options.ia64 projects/bmake/sys/contrib/ia64/ projects/bmake/sys/dev/cxgbe/firmware/t4fw-1.9.12.0.bin.uu projects/bmake/sys/dev/cxgbe/firmware/t5fw-1.9.12.0.bin.uu projects/bmake/sys/dev/hwpmc/hwpmc_ia64.c projects/bmake/sys/dev/uart/uart_cpu_ia64.c projects/bmake/sys/dev/usb/controller/dwc_otg_atmelarm.c projects/bmake/sys/dev/vt/hw/vga/vga.c projects/bmake/sys/dev/vt/hw/vga/vga_reg.h projects/bmake/sys/dev/vt/hw/xboxfb/ projects/bmake/sys/i386/conf/VT projects/bmake/sys/ia64/ projects/bmake/sys/libkern/ia64/ projects/bmake/sys/xen/interface/arch-ia64/ projects/bmake/sys/xen/interface/arch-ia64.h projects/bmake/tools/build/options/WITHOUT_NCURSESW projects/bmake/tools/build/options/WITH_TESTS projects/bmake/tools/regression/ia64/ projects/bmake/tools/tools/gdb_regofs/ia64.c projects/bmake/tools/tools/prstats/ projects/bmake/tools/tools/vt/fontcvt/Makefile projects/bmake/tools/tools/vt/fontcvt/fontcvt.c projects/bmake/usr.bin/Makefile.ia64 projects/bmake/usr.bin/gprof/ia64.h projects/bmake/usr.bin/m4/lib/ohash_create_entry.c projects/bmake/usr.bin/m4/lib/ohash_delete.c projects/bmake/usr.bin/m4/lib/ohash_do.c projects/bmake/usr.bin/m4/lib/ohash_entries.c projects/bmake/usr.bin/m4/lib/ohash_enum.c projects/bmake/usr.bin/m4/lib/ohash_init.c projects/bmake/usr.bin/m4/lib/ohash_int.h projects/bmake/usr.bin/m4/lib/ohash_interval.c projects/bmake/usr.bin/m4/lib/ohash_lookup_interval.c projects/bmake/usr.bin/m4/lib/ohash_lookup_memory.c projects/bmake/usr.bin/m4/lib/ohash_qlookup.c projects/bmake/usr.bin/m4/lib/ohash_qlookupi.c projects/bmake/usr.bin/make/tests/ projects/bmake/usr.bin/truss/ia64-fbsd.c projects/bmake/usr.bin/users/users.c projects/bmake/usr.bin/xlint/arch/ia64/ projects/bmake/usr.bin/yacc/tests/calc.y projects/bmake/usr.bin/yacc/tests/calc1.y projects/bmake/usr.bin/yacc/tests/calc2.y projects/bmake/usr.bin/yacc/tests/calc3.y projects/bmake/usr.bin/yacc/tests/code_calc.y projects/bmake/usr.bin/yacc/tests/code_error.y projects/bmake/usr.bin/yacc/tests/error.y projects/bmake/usr.bin/yacc/tests/ftp.y projects/bmake/usr.bin/yacc/tests/grammar.y projects/bmake/usr.bin/yacc/tests/legacy_test.sh projects/bmake/usr.bin/yacc/tests/pure_calc.y projects/bmake/usr.bin/yacc/tests/pure_error.y projects/bmake/usr.bin/yacc/tests/quote_calc.y projects/bmake/usr.bin/yacc/tests/quote_calc2.y projects/bmake/usr.bin/yacc/tests/quote_calc3.y projects/bmake/usr.bin/yacc/tests/quote_calc4.y projects/bmake/usr.bin/yacc/tests/regress.00.out projects/bmake/usr.bin/yacc/tests/regress.01.out projects/bmake/usr.bin/yacc/tests/regress.02.out projects/bmake/usr.bin/yacc/tests/regress.03.out projects/bmake/usr.bin/yacc/tests/regress.04.out projects/bmake/usr.bin/yacc/tests/regress.05.out projects/bmake/usr.bin/yacc/tests/regress.06.out projects/bmake/usr.bin/yacc/tests/regress.07.out projects/bmake/usr.bin/yacc/tests/regress.08.out projects/bmake/usr.bin/yacc/tests/regress.09.out projects/bmake/usr.bin/yacc/tests/regress.10.out projects/bmake/usr.bin/yacc/tests/regress.11.out projects/bmake/usr.bin/yacc/tests/regress.12.out projects/bmake/usr.bin/yacc/tests/regress.13.out projects/bmake/usr.bin/yacc/tests/regress.14.out projects/bmake/usr.bin/yacc/tests/regress.sh projects/bmake/usr.bin/yacc/tests/undefined.y projects/bmake/usr.sbin/Makefile.ia64 projects/bmake/usr.sbin/bsdconfig/examples/browse_packages_ftp.sh projects/bmake/usr.sbin/ctm/mkCTM/ctm_conf.gnats Modified: projects/bmake/MAINTAINERS (contents, props changed) projects/bmake/Makefile projects/bmake/Makefile.inc1 projects/bmake/ObsoleteFiles.inc projects/bmake/UPDATING projects/bmake/bin/chio/chio.1 projects/bmake/bin/csh/Makefile projects/bmake/bin/csh/Makefile.depend projects/bmake/bin/ed/Makefile projects/bmake/bin/freebsd-version/freebsd-version.1 projects/bmake/bin/ls/Makefile projects/bmake/bin/ls/Makefile.depend projects/bmake/bin/mv/mv.c projects/bmake/bin/pkill/pkill.1 projects/bmake/bin/ps/keyword.c projects/bmake/bin/ps/ps.1 projects/bmake/bin/rm/rm.1 projects/bmake/bin/rm/rm.c projects/bmake/bin/rmail/Makefile projects/bmake/bin/setfacl/setfacl.1 projects/bmake/bin/sh/Makefile projects/bmake/bin/sh/Makefile.depend projects/bmake/bin/sh/arith_yacc.c projects/bmake/bin/sh/eval.c projects/bmake/bin/sh/exec.c projects/bmake/bin/sh/expand.c projects/bmake/bin/sh/jobs.c projects/bmake/bin/sh/main.c projects/bmake/bin/sh/miscbltin.c projects/bmake/bin/sh/mystring.c projects/bmake/bin/sh/mystring.h projects/bmake/bin/sh/options.c projects/bmake/bin/sh/tests/builtins/Makefile projects/bmake/bin/sh/tests/builtins/getopts1.0 projects/bmake/bin/sh/tests/parameters/Makefile projects/bmake/cddl/contrib/dtracetoolkit/rwsnoop projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.subr.d projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroModuleProbes.d.ksh projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.func_access.ksh projects/bmake/cddl/contrib/opensolaris/cmd/zdb/zdb.8 projects/bmake/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/bmake/cddl/contrib/opensolaris/cmd/zdb/zdb_il.c projects/bmake/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/bmake/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/bmake/cddl/contrib/opensolaris/cmd/zhack/zhack.c projects/bmake/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 projects/bmake/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/bmake/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/bmake/cddl/contrib/opensolaris/cmd/zpool/zpool_vdev.c projects/bmake/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.c projects/bmake/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/bmake/cddl/contrib/opensolaris/common/ctf/ctf_open.c projects/bmake/cddl/contrib/opensolaris/common/ctf/ctf_types.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_aggregate.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_as.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_decl.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_decl.h projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_dis.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_error.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_grammar.y projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_ident.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_lex.l projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.h projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_options.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.h projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.h projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_print.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_provider.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dt_xlator.c projects/bmake/cddl/contrib/opensolaris/lib/libdtrace/common/dtrace.h projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_mount.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c projects/bmake/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h projects/bmake/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/bmake/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/bmake/cddl/lib/libdtrace/ip.d projects/bmake/cddl/lib/libdtrace/libproc_compat.h projects/bmake/cddl/lib/libdtrace/tcp.d projects/bmake/cddl/lib/libdtrace/udp.d projects/bmake/cddl/lib/libzfs/Makefile projects/bmake/cddl/lib/libzfs/Makefile.depend projects/bmake/cddl/lib/libzpool/Makefile projects/bmake/cddl/sbin/zfs/Makefile.depend projects/bmake/cddl/sbin/zpool/Makefile projects/bmake/cddl/usr.bin/zinject/Makefile projects/bmake/cddl/usr.bin/zinject/Makefile.depend projects/bmake/cddl/usr.sbin/zdb/Makefile projects/bmake/cddl/usr.sbin/zdb/Makefile.depend projects/bmake/cddl/usr.sbin/zhack/Makefile projects/bmake/cddl/usr.sbin/zhack/Makefile.depend projects/bmake/contrib/apr/CHANGES projects/bmake/contrib/apr/LICENSE projects/bmake/contrib/apr/Makefile.in projects/bmake/contrib/apr/Makefile.win projects/bmake/contrib/apr/NOTICE projects/bmake/contrib/apr/apr.dep projects/bmake/contrib/apr/apr.dsp projects/bmake/contrib/apr/apr.mak projects/bmake/contrib/apr/apr.spec projects/bmake/contrib/apr/build-outputs.mk projects/bmake/contrib/apr/build.conf projects/bmake/contrib/apr/configure projects/bmake/contrib/apr/configure.in projects/bmake/contrib/apr/docs/canonical_filenames.html projects/bmake/contrib/apr/file_io/unix/filedup.c projects/bmake/contrib/apr/file_io/unix/filestat.c projects/bmake/contrib/apr/file_io/unix/mktemp.c projects/bmake/contrib/apr/file_io/unix/open.c projects/bmake/contrib/apr/file_io/unix/pipe.c projects/bmake/contrib/apr/file_io/unix/readwrite.c projects/bmake/contrib/apr/include/apr.h.in projects/bmake/contrib/apr/include/apr_allocator.h projects/bmake/contrib/apr/include/apr_errno.h projects/bmake/contrib/apr/include/apr_file_info.h projects/bmake/contrib/apr/include/apr_file_io.h projects/bmake/contrib/apr/include/apr_fnmatch.h projects/bmake/contrib/apr/include/apr_hash.h projects/bmake/contrib/apr/include/apr_inherit.h projects/bmake/contrib/apr/include/apr_lib.h projects/bmake/contrib/apr/include/apr_mmap.h projects/bmake/contrib/apr/include/apr_network_io.h projects/bmake/contrib/apr/include/apr_poll.h projects/bmake/contrib/apr/include/apr_pools.h projects/bmake/contrib/apr/include/apr_shm.h projects/bmake/contrib/apr/include/apr_strings.h projects/bmake/contrib/apr/include/apr_tables.h projects/bmake/contrib/apr/include/apr_thread_mutex.h projects/bmake/contrib/apr/include/apr_thread_proc.h projects/bmake/contrib/apr/include/apr_time.h projects/bmake/contrib/apr/include/apr_user.h projects/bmake/contrib/apr/include/apr_version.h projects/bmake/contrib/apr/include/arch/unix/apr_arch_poll_private.h projects/bmake/contrib/apr/include/arch/unix/apr_arch_threadproc.h projects/bmake/contrib/apr/include/arch/unix/apr_private.h.in projects/bmake/contrib/apr/libapr.dep projects/bmake/contrib/apr/libapr.dsp projects/bmake/contrib/apr/libapr.mak projects/bmake/contrib/apr/locks/unix/proc_mutex.c projects/bmake/contrib/apr/network_io/unix/sendrecv.c projects/bmake/contrib/apr/network_io/unix/sockaddr.c projects/bmake/contrib/apr/network_io/unix/socket_util.c projects/bmake/contrib/apr/network_io/unix/sockets.c projects/bmake/contrib/apr/network_io/unix/sockopt.c projects/bmake/contrib/apr/passwd/apr_getpass.c projects/bmake/contrib/apr/poll/unix/pollcb.c projects/bmake/contrib/apr/poll/unix/pollset.c projects/bmake/contrib/apr/shmem/unix/shm.c projects/bmake/contrib/apr/strings/apr_cpystrn.c projects/bmake/contrib/apr/strings/apr_strings.c projects/bmake/contrib/apr/support/unix/waitio.c projects/bmake/contrib/apr/tables/apr_hash.c projects/bmake/contrib/apr/tables/apr_tables.c projects/bmake/contrib/atf/FREEBSD-Xlist projects/bmake/contrib/binutils/opcodes/i386-dis.c projects/bmake/contrib/binutils/opcodes/i386-opc.tbl projects/bmake/contrib/binutils/opcodes/i386-tbl.h projects/bmake/contrib/bmake/ChangeLog projects/bmake/contrib/bmake/Makefile projects/bmake/contrib/bmake/README projects/bmake/contrib/bmake/bmake.1 projects/bmake/contrib/bmake/bmake.cat1 projects/bmake/contrib/bmake/boot-strap projects/bmake/contrib/bmake/bsd.after-import.mk projects/bmake/contrib/bmake/config.h.in projects/bmake/contrib/bmake/configure projects/bmake/contrib/bmake/configure.in projects/bmake/contrib/bmake/main.c projects/bmake/contrib/bmake/make.1 projects/bmake/contrib/bmake/mk/ChangeLog projects/bmake/contrib/bmake/mk/autodep.mk projects/bmake/contrib/bmake/mk/dirdeps.mk projects/bmake/contrib/bmake/mk/dpadd.mk projects/bmake/contrib/bmake/mk/gendirdeps.mk projects/bmake/contrib/bmake/mk/host-target.mk projects/bmake/contrib/bmake/mk/install-mk projects/bmake/contrib/bmake/mk/lib.mk projects/bmake/contrib/bmake/mk/meta.autodep.mk projects/bmake/contrib/bmake/mk/meta2deps.py projects/bmake/contrib/bmake/mk/meta2deps.sh projects/bmake/contrib/bmake/mk/options.mk projects/bmake/contrib/bmake/mk/rst2htm.mk projects/bmake/contrib/bmake/mk/sys.mk projects/bmake/contrib/bmake/mk/sys/SunOS.mk projects/bmake/contrib/bmake/mk/target-flags.mk projects/bmake/contrib/bmake/mk/warnings.mk projects/bmake/contrib/bmake/os.sh projects/bmake/contrib/bmake/parse.c projects/bmake/contrib/bmake/str.c projects/bmake/contrib/bmake/var.c projects/bmake/contrib/byacc/CHANGES projects/bmake/contrib/byacc/MANIFEST projects/bmake/contrib/byacc/README.BTYACC projects/bmake/contrib/byacc/VERSION projects/bmake/contrib/byacc/aclocal.m4 projects/bmake/contrib/byacc/config.guess projects/bmake/contrib/byacc/config.sub projects/bmake/contrib/byacc/config_h.in projects/bmake/contrib/byacc/configure projects/bmake/contrib/byacc/configure.in projects/bmake/contrib/byacc/defs.h projects/bmake/contrib/byacc/main.c projects/bmake/contrib/byacc/mstring.c projects/bmake/contrib/byacc/output.c projects/bmake/contrib/byacc/package/byacc.spec projects/bmake/contrib/byacc/package/debian/changelog projects/bmake/contrib/byacc/package/mingw-byacc.spec projects/bmake/contrib/byacc/package/pkgsrc/Makefile projects/bmake/contrib/byacc/test/btyacc/big_b.output projects/bmake/contrib/byacc/test/btyacc/big_l.output projects/bmake/contrib/byacc/test/btyacc/err_inherit1.error projects/bmake/contrib/byacc/test/btyacc/err_inherit2.error projects/bmake/contrib/byacc/test/btyacc/err_inherit3.error projects/bmake/contrib/byacc/test/btyacc/err_inherit4.error projects/bmake/contrib/byacc/test/btyacc/err_inherit5.error projects/bmake/contrib/byacc/test/btyacc/err_syntax1.error projects/bmake/contrib/byacc/test/btyacc/err_syntax10.error projects/bmake/contrib/byacc/test/btyacc/err_syntax11.error projects/bmake/contrib/byacc/test/btyacc/err_syntax12.error projects/bmake/contrib/byacc/test/btyacc/err_syntax13.error projects/bmake/contrib/byacc/test/btyacc/err_syntax14.error projects/bmake/contrib/byacc/test/btyacc/err_syntax15.error projects/bmake/contrib/byacc/test/btyacc/err_syntax16.error projects/bmake/contrib/byacc/test/btyacc/err_syntax17.error projects/bmake/contrib/byacc/test/btyacc/err_syntax18.error projects/bmake/contrib/byacc/test/btyacc/err_syntax19.error projects/bmake/contrib/byacc/test/btyacc/err_syntax2.error projects/bmake/contrib/byacc/test/btyacc/err_syntax21.error projects/bmake/contrib/byacc/test/btyacc/err_syntax22.error projects/bmake/contrib/byacc/test/btyacc/err_syntax23.error projects/bmake/contrib/byacc/test/btyacc/err_syntax24.error projects/bmake/contrib/byacc/test/btyacc/err_syntax25.error projects/bmake/contrib/byacc/test/btyacc/err_syntax26.error projects/bmake/contrib/byacc/test/btyacc/err_syntax27.error projects/bmake/contrib/byacc/test/btyacc/err_syntax3.error projects/bmake/contrib/byacc/test/btyacc/err_syntax4.error projects/bmake/contrib/byacc/test/btyacc/err_syntax5.error projects/bmake/contrib/byacc/test/btyacc/err_syntax6.error projects/bmake/contrib/byacc/test/btyacc/err_syntax7.error projects/bmake/contrib/byacc/test/btyacc/err_syntax7a.error projects/bmake/contrib/byacc/test/btyacc/err_syntax7b.error projects/bmake/contrib/byacc/test/btyacc/err_syntax8.error projects/bmake/contrib/byacc/test/btyacc/err_syntax8a.error projects/bmake/contrib/byacc/test/btyacc/err_syntax9.error projects/bmake/contrib/byacc/test/btyacc/help.output projects/bmake/contrib/byacc/test/btyacc/no_b_opt.output projects/bmake/contrib/byacc/test/btyacc/no_output2.output projects/bmake/contrib/byacc/test/btyacc/no_p_opt.output projects/bmake/contrib/byacc/test/btyacc/nostdin.output projects/bmake/contrib/byacc/test/run_test.sh projects/bmake/contrib/byacc/test/yacc/big_b.output projects/bmake/contrib/byacc/test/yacc/big_l.output projects/bmake/contrib/byacc/test/yacc/err_syntax1.error projects/bmake/contrib/byacc/test/yacc/err_syntax10.error projects/bmake/contrib/byacc/test/yacc/err_syntax11.error projects/bmake/contrib/byacc/test/yacc/err_syntax12.error projects/bmake/contrib/byacc/test/yacc/err_syntax13.error projects/bmake/contrib/byacc/test/yacc/err_syntax14.error projects/bmake/contrib/byacc/test/yacc/err_syntax15.error projects/bmake/contrib/byacc/test/yacc/err_syntax16.error projects/bmake/contrib/byacc/test/yacc/err_syntax17.error projects/bmake/contrib/byacc/test/yacc/err_syntax18.error projects/bmake/contrib/byacc/test/yacc/err_syntax19.error projects/bmake/contrib/byacc/test/yacc/err_syntax2.error projects/bmake/contrib/byacc/test/yacc/err_syntax21.error projects/bmake/contrib/byacc/test/yacc/err_syntax22.error projects/bmake/contrib/byacc/test/yacc/err_syntax23.error projects/bmake/contrib/byacc/test/yacc/err_syntax24.error projects/bmake/contrib/byacc/test/yacc/err_syntax25.error projects/bmake/contrib/byacc/test/yacc/err_syntax26.error projects/bmake/contrib/byacc/test/yacc/err_syntax27.error projects/bmake/contrib/byacc/test/yacc/err_syntax3.error projects/bmake/contrib/byacc/test/yacc/err_syntax4.error projects/bmake/contrib/byacc/test/yacc/err_syntax5.error projects/bmake/contrib/byacc/test/yacc/err_syntax6.error projects/bmake/contrib/byacc/test/yacc/err_syntax7.error projects/bmake/contrib/byacc/test/yacc/err_syntax7a.error projects/bmake/contrib/byacc/test/yacc/err_syntax7b.error projects/bmake/contrib/byacc/test/yacc/err_syntax8.error projects/bmake/contrib/byacc/test/yacc/err_syntax8a.error projects/bmake/contrib/byacc/test/yacc/err_syntax9.error projects/bmake/contrib/byacc/test/yacc/help.output projects/bmake/contrib/byacc/test/yacc/no_b_opt.output projects/bmake/contrib/byacc/test/yacc/no_output2.output projects/bmake/contrib/byacc/test/yacc/no_p_opt.output projects/bmake/contrib/byacc/test/yacc/nostdin.output projects/bmake/contrib/file/ChangeLog projects/bmake/contrib/file/Makefile.am projects/bmake/contrib/file/Makefile.in projects/bmake/contrib/file/README projects/bmake/contrib/file/TODO projects/bmake/contrib/file/aclocal.m4 projects/bmake/contrib/file/compile projects/bmake/contrib/file/config.h.in projects/bmake/contrib/file/configure projects/bmake/contrib/file/configure.ac projects/bmake/contrib/file/install-sh projects/bmake/contrib/file/tests/Makefile.am projects/bmake/contrib/file/tests/Makefile.in projects/bmake/contrib/file/tests/README projects/bmake/contrib/file/tests/gedcom.result projects/bmake/contrib/gcc/config/arm/unwind-arm.h projects/bmake/contrib/gcc/version.c projects/bmake/contrib/ipfilter/lib/printhost.c projects/bmake/contrib/ipfilter/lib/printhostmask.c projects/bmake/contrib/ipfilter/lib/printipfexpr.c projects/bmake/contrib/ipfilter/lib/save_v1trap.c projects/bmake/contrib/ipfilter/lib/save_v2trap.c projects/bmake/contrib/ldns/Changelog projects/bmake/contrib/ldns/Makefile.in projects/bmake/contrib/ldns/README projects/bmake/contrib/ldns/acx_nlnetlabs.m4 projects/bmake/contrib/ldns/ax_python_devel.m4 projects/bmake/contrib/ldns/compat/b64_ntop.c projects/bmake/contrib/ldns/compat/b64_pton.c projects/bmake/contrib/ldns/compat/snprintf.c projects/bmake/contrib/ldns/configure projects/bmake/contrib/ldns/configure.ac projects/bmake/contrib/ldns/dane.c (contents, props changed) projects/bmake/contrib/ldns/dnssec.c projects/bmake/contrib/ldns/dnssec_sign.c projects/bmake/contrib/ldns/dnssec_zone.c projects/bmake/contrib/ldns/drill/chasetrace.c projects/bmake/contrib/ldns/drill/configure projects/bmake/contrib/ldns/drill/configure.ac projects/bmake/contrib/ldns/drill/drill.1.in projects/bmake/contrib/ldns/drill/drill.c projects/bmake/contrib/ldns/drill/drill_util.c projects/bmake/contrib/ldns/drill/securetrace.c projects/bmake/contrib/ldns/drill/work.c projects/bmake/contrib/ldns/error.c projects/bmake/contrib/ldns/higher.c projects/bmake/contrib/ldns/host2str.c projects/bmake/contrib/ldns/host2wire.c projects/bmake/contrib/ldns/install-sh projects/bmake/contrib/ldns/keys.c projects/bmake/contrib/ldns/ldns/common.h projects/bmake/contrib/ldns/ldns/common.h.in projects/bmake/contrib/ldns/ldns/config.h projects/bmake/contrib/ldns/ldns/config.h.in projects/bmake/contrib/ldns/ldns/dane.h (contents, props changed) projects/bmake/contrib/ldns/ldns/dnssec.h projects/bmake/contrib/ldns/ldns/dnssec_sign.h projects/bmake/contrib/ldns/ldns/dnssec_zone.h projects/bmake/contrib/ldns/ldns/error.h projects/bmake/contrib/ldns/ldns/host2str.h projects/bmake/contrib/ldns/ldns/ldns.h projects/bmake/contrib/ldns/ldns/net.h projects/bmake/contrib/ldns/ldns/net.h.in projects/bmake/contrib/ldns/ldns/packet.h projects/bmake/contrib/ldns/ldns/rdata.h projects/bmake/contrib/ldns/ldns/resolver.h projects/bmake/contrib/ldns/ldns/rr.h projects/bmake/contrib/ldns/ldns/str2host.h projects/bmake/contrib/ldns/ldns/util.h projects/bmake/contrib/ldns/ldns/util.h.in projects/bmake/contrib/ldns/net.c projects/bmake/contrib/ldns/packet.c projects/bmake/contrib/ldns/parse.c projects/bmake/contrib/ldns/rdata.c projects/bmake/contrib/ldns/resolver.c projects/bmake/contrib/ldns/rr.c projects/bmake/contrib/ldns/sha1.c projects/bmake/contrib/ldns/sha2.c projects/bmake/contrib/ldns/str2host.c projects/bmake/contrib/ldns/tsig.c projects/bmake/contrib/ldns/util.c projects/bmake/contrib/ldns/wire2host.c projects/bmake/contrib/libstdc++/libsupc++/unwind-cxx.h projects/bmake/contrib/libucl/configure.ac projects/bmake/contrib/libucl/doc/api.md projects/bmake/contrib/libucl/doc/libucl.3 projects/bmake/contrib/libucl/doc/pandoc.template projects/bmake/contrib/libucl/include/ucl.h projects/bmake/contrib/libucl/src/Makefile.am projects/bmake/contrib/libucl/src/ucl_emitter.c projects/bmake/contrib/libucl/src/ucl_internal.h projects/bmake/contrib/libucl/src/ucl_parser.c projects/bmake/contrib/libucl/src/ucl_util.c projects/bmake/contrib/libucl/tests/Makefile.am projects/bmake/contrib/libucl/tests/test_basic.c projects/bmake/contrib/libucl/tests/test_generate.c projects/bmake/contrib/libucl/uthash/utstring.h projects/bmake/contrib/llvm/include/llvm/IR/IntrinsicsX86.td projects/bmake/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/bmake/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/bmake/contrib/llvm/lib/Analysis/IVUsers.cpp projects/bmake/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/bmake/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/bmake/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/bmake/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/bmake/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/bmake/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/bmake/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/bmake/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/bmake/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/bmake/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/bmake/contrib/llvm/lib/MC/MCDwarf.cpp projects/bmake/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/bmake/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp projects/bmake/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td projects/bmake/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp projects/bmake/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h projects/bmake/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp projects/bmake/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/bmake/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/bmake/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/bmake/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/bmake/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h projects/bmake/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/bmake/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/bmake/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.cpp projects/bmake/contrib/llvm/lib/Target/R600/AMDGPUInstructions.td projects/bmake/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp projects/bmake/contrib/llvm/lib/Target/R600/R600ControlFlowFinalizer.cpp projects/bmake/contrib/llvm/lib/Target/R600/R600InstrInfo.cpp projects/bmake/contrib/llvm/lib/Target/R600/R600Instructions.td projects/bmake/contrib/llvm/lib/Target/R600/SIFixSGPRCopies.cpp projects/bmake/contrib/llvm/lib/Target/R600/SIInsertWaits.cpp projects/bmake/contrib/llvm/lib/Target/R600/SIInstrInfo.td projects/bmake/contrib/llvm/lib/Target/R600/SIInstructions.td projects/bmake/contrib/llvm/lib/Target/R600/SIIntrinsics.td projects/bmake/contrib/llvm/lib/Target/R600/SILowerControlFlow.cpp projects/bmake/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/bmake/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/bmake/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/bmake/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/bmake/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/bmake/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/bmake/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/bmake/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp projects/bmake/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/bmake/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp projects/bmake/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp projects/bmake/contrib/llvm/patches/patch-r208961-clang-version-include.diff projects/bmake/contrib/llvm/patches/patch-r208987-format-extensions.diff projects/bmake/contrib/llvm/patches/patch-r209107-clang-vendor-suffix.diff projects/bmake/contrib/llvm/patches/patch-r213492-amd64-multi-os-dot.diff projects/bmake/contrib/llvm/patches/patch-r221503-default-target-triple.diff projects/bmake/contrib/llvm/patches/patch-r243830-arm-disable-clear-cache.diff projects/bmake/contrib/llvm/patches/patch-r252503-arm-transient-stack-alignment.diff projects/bmake/contrib/llvm/patches/patch-r257109-add-CC-aliases.diff projects/bmake/contrib/llvm/patches/patch-r259053-gcc-installation-detector.diff projects/bmake/contrib/llvm/patches/patch-r259498-add-fxsave.diff projects/bmake/contrib/llvm/patches/patch-r261680-clang-r200899-fix-security-quantis.diff projects/bmake/contrib/llvm/patches/patch-r261991-llvm-r195391-fix-dwarf2.diff projects/bmake/contrib/llvm/patches/patch-r261991-llvm-r198385-fix-dwarf2.diff projects/bmake/contrib/llvm/patches/patch-r261991-llvm-r198389-fix-dwarf2.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198028-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198029-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198030-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198145-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198149-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198157-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198280-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198281-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198286-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198480-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198484-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198533-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198565-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198567-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198580-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198591-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198658-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198681-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198738-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198739-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198740-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198893-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198909-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r198910-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199014-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199024-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199028-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199031-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199033-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199061-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199186-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199187-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199775-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199781-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199786-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199940-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199974-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199975-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r199977-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200103-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200104-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200112-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200130-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200131-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200141-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200282-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200368-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200373-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200376-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200509-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200617-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200960-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200961-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200962-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200963-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262261-llvm-r200965-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r198311-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r198312-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r198911-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r198912-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r198918-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r198923-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r199012-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r199034-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r199037-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r199188-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r199399-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262262-clang-r200452-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262264-llvm-r200453-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262265-llvm-r201718-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262303-enable-ppc-integrated-as.diff projects/bmake/contrib/llvm/patches/patch-r262415-llvm-r201994-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262460-llvm-r202059-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262535-clang-r202177-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262536-clang-r202179-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262582-llvm-r202422-sparc.diff projects/bmake/contrib/llvm/patches/patch-r262611-llvm-r196874-fix-invalid-pwd-crash.diff projects/bmake/contrib/llvm/patches/patch-r263048-clang-r203624-fix-CC-aliases.diff projects/bmake/contrib/llvm/patches/patch-r263312-llvm-r169939-inline-asm-with-realign.diff projects/bmake/contrib/llvm/patches/patch-r263312-llvm-r196940-update-inline-asm-test.diff projects/bmake/contrib/llvm/patches/patch-r263312-llvm-r196986-allow-realign-alloca.diff projects/bmake/contrib/llvm/patches/patch-r263312-llvm-r202930-fix-alloca-esi-clobber.diff projects/bmake/contrib/llvm/patches/patch-r263313-llvm-r203311-fix-sse1-oom.diff projects/bmake/contrib/llvm/patches/patch-r263619-clang-r201662-arm-gnueabihf.diff projects/bmake/contrib/llvm/patches/patch-r264826-llvm-r202188-variadic-fn-debug-info.diff projects/bmake/contrib/llvm/patches/patch-r264827-clang-r202185-variadic-fn-debug-info.diff projects/bmake/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/bmake/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/bmake/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp projects/bmake/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/bmake/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/bmake/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp projects/bmake/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/bmake/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/bmake/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/bmake/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/bmake/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/bmake/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/bmake/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/bmake/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/bmake/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/bmake/contrib/llvm/tools/lldb/tools/driver/Platform.h projects/bmake/contrib/openbsm/libbsm/bsm_io.c projects/bmake/contrib/openpam/lib/libpam/openpam_configure.c projects/bmake/contrib/sendmail/CACerts projects/bmake/contrib/sendmail/FAQ projects/bmake/contrib/sendmail/FREEBSD-upgrade projects/bmake/contrib/sendmail/INSTALL projects/bmake/contrib/sendmail/KNOWNBUGS projects/bmake/contrib/sendmail/LICENSE projects/bmake/contrib/sendmail/Makefile projects/bmake/contrib/sendmail/PGPKEYS projects/bmake/contrib/sendmail/README projects/bmake/contrib/sendmail/RELEASE_NOTES projects/bmake/contrib/sendmail/cf/README projects/bmake/contrib/sendmail/cf/cf/Makefile projects/bmake/contrib/sendmail/cf/cf/README projects/bmake/contrib/sendmail/cf/cf/chez.cs.mc projects/bmake/contrib/sendmail/cf/cf/clientproto.mc projects/bmake/contrib/sendmail/cf/cf/cs-hpux10.mc projects/bmake/contrib/sendmail/cf/cf/cs-hpux9.mc projects/bmake/contrib/sendmail/cf/cf/cs-osf1.mc projects/bmake/contrib/sendmail/cf/cf/cs-solaris2.mc projects/bmake/contrib/sendmail/cf/cf/cs-sunos4.1.mc projects/bmake/contrib/sendmail/cf/cf/cs-ultrix4.mc projects/bmake/contrib/sendmail/cf/cf/cyrusproto.mc projects/bmake/contrib/sendmail/cf/cf/generic-bsd4.4.mc projects/bmake/contrib/sendmail/cf/cf/generic-hpux10.mc projects/bmake/contrib/sendmail/cf/cf/generic-hpux9.mc projects/bmake/contrib/sendmail/cf/cf/generic-linux.mc projects/bmake/contrib/sendmail/cf/cf/generic-mpeix.mc projects/bmake/contrib/sendmail/cf/cf/generic-nextstep3.3.mc projects/bmake/contrib/sendmail/cf/cf/generic-osf1.mc projects/bmake/contrib/sendmail/cf/cf/generic-solaris.mc projects/bmake/contrib/sendmail/cf/cf/generic-sunos4.1.mc projects/bmake/contrib/sendmail/cf/cf/generic-ultrix4.mc projects/bmake/contrib/sendmail/cf/cf/huginn.cs.mc projects/bmake/contrib/sendmail/cf/cf/knecht.mc projects/bmake/contrib/sendmail/cf/cf/mail.cs.mc projects/bmake/contrib/sendmail/cf/cf/mail.eecs.mc projects/bmake/contrib/sendmail/cf/cf/mailspool.cs.mc projects/bmake/contrib/sendmail/cf/cf/python.cs.mc projects/bmake/contrib/sendmail/cf/cf/s2k-osf1.mc projects/bmake/contrib/sendmail/cf/cf/s2k-ultrix4.mc projects/bmake/contrib/sendmail/cf/cf/submit.cf projects/bmake/contrib/sendmail/cf/cf/submit.mc projects/bmake/contrib/sendmail/cf/cf/tcpproto.mc projects/bmake/contrib/sendmail/cf/cf/ucbarpa.mc projects/bmake/contrib/sendmail/cf/cf/ucbvax.mc projects/bmake/contrib/sendmail/cf/cf/uucpproto.mc projects/bmake/contrib/sendmail/cf/cf/vangogh.cs.mc projects/bmake/contrib/sendmail/cf/domain/Berkeley.EDU.m4 projects/bmake/contrib/sendmail/cf/domain/CS.Berkeley.EDU.m4 projects/bmake/contrib/sendmail/cf/domain/EECS.Berkeley.EDU.m4 projects/bmake/contrib/sendmail/cf/domain/S2K.Berkeley.EDU.m4 projects/bmake/contrib/sendmail/cf/domain/berkeley-only.m4 projects/bmake/contrib/sendmail/cf/domain/generic.m4 projects/bmake/contrib/sendmail/cf/feature/accept_unqualified_senders.m4 projects/bmake/contrib/sendmail/cf/feature/accept_unresolvable_domains.m4 projects/bmake/contrib/sendmail/cf/feature/access_db.m4 projects/bmake/contrib/sendmail/cf/feature/allmasquerade.m4 projects/bmake/contrib/sendmail/cf/feature/always_add_domain.m4 projects/bmake/contrib/sendmail/cf/feature/authinfo.m4 projects/bmake/contrib/sendmail/cf/feature/badmx.m4 projects/bmake/contrib/sendmail/cf/feature/bestmx_is_local.m4 projects/bmake/contrib/sendmail/cf/feature/bitdomain.m4 projects/bmake/contrib/sendmail/cf/feature/blacklist_recipients.m4 projects/bmake/contrib/sendmail/cf/feature/block_bad_helo.m4 projects/bmake/contrib/sendmail/cf/feature/compat_check.m4 projects/bmake/contrib/sendmail/cf/feature/conncontrol.m4 projects/bmake/contrib/sendmail/cf/feature/delay_checks.m4 projects/bmake/contrib/sendmail/cf/feature/dnsbl.m4 projects/bmake/contrib/sendmail/cf/feature/domaintable.m4 projects/bmake/contrib/sendmail/cf/feature/enhdnsbl.m4 projects/bmake/contrib/sendmail/cf/feature/generics_entire_domain.m4 projects/bmake/contrib/sendmail/cf/feature/genericstable.m4 projects/bmake/contrib/sendmail/cf/feature/greet_pause.m4 projects/bmake/contrib/sendmail/cf/feature/ldap_routing.m4 projects/bmake/contrib/sendmail/cf/feature/limited_masquerade.m4 projects/bmake/contrib/sendmail/cf/feature/local_lmtp.m4 projects/bmake/contrib/sendmail/cf/feature/local_no_masquerade.m4 projects/bmake/contrib/sendmail/cf/feature/local_procmail.m4 projects/bmake/contrib/sendmail/cf/feature/lookupdotdomain.m4 projects/bmake/contrib/sendmail/cf/feature/loose_relay_check.m4 projects/bmake/contrib/sendmail/cf/feature/mailertable.m4 projects/bmake/contrib/sendmail/cf/feature/masquerade_entire_domain.m4 projects/bmake/contrib/sendmail/cf/feature/masquerade_envelope.m4 projects/bmake/contrib/sendmail/cf/feature/msp.m4 projects/bmake/contrib/sendmail/cf/feature/mtamark.m4 projects/bmake/contrib/sendmail/cf/feature/no_default_msa.m4 projects/bmake/contrib/sendmail/cf/feature/nocanonify.m4 projects/bmake/contrib/sendmail/cf/feature/notsticky.m4 projects/bmake/contrib/sendmail/cf/feature/nouucp.m4 projects/bmake/contrib/sendmail/cf/feature/nullclient.m4 projects/bmake/contrib/sendmail/cf/feature/preserve_local_plus_detail.m4 projects/bmake/contrib/sendmail/cf/feature/preserve_luser_host.m4 projects/bmake/contrib/sendmail/cf/feature/promiscuous_relay.m4 projects/bmake/contrib/sendmail/cf/feature/queuegroup.m4 projects/bmake/contrib/sendmail/cf/feature/ratecontrol.m4 projects/bmake/contrib/sendmail/cf/feature/redirect.m4 projects/bmake/contrib/sendmail/cf/feature/relay_based_on_MX.m4 projects/bmake/contrib/sendmail/cf/feature/relay_entire_domain.m4 projects/bmake/contrib/sendmail/cf/feature/relay_hosts_only.m4 projects/bmake/contrib/sendmail/cf/feature/relay_local_from.m4 projects/bmake/contrib/sendmail/cf/feature/relay_mail_from.m4 projects/bmake/contrib/sendmail/cf/feature/require_rdns.m4 projects/bmake/contrib/sendmail/cf/feature/smrsh.m4 projects/bmake/contrib/sendmail/cf/feature/stickyhost.m4 projects/bmake/contrib/sendmail/cf/feature/use_client_ptr.m4 projects/bmake/contrib/sendmail/cf/feature/use_ct_file.m4 projects/bmake/contrib/sendmail/cf/feature/use_cw_file.m4 projects/bmake/contrib/sendmail/cf/feature/uucpdomain.m4 projects/bmake/contrib/sendmail/cf/feature/virtuser_entire_domain.m4 projects/bmake/contrib/sendmail/cf/feature/virtusertable.m4 projects/bmake/contrib/sendmail/cf/hack/cssubdomain.m4 projects/bmake/contrib/sendmail/cf/m4/cf.m4 projects/bmake/contrib/sendmail/cf/m4/cfhead.m4 projects/bmake/contrib/sendmail/cf/m4/proto.m4 projects/bmake/contrib/sendmail/cf/m4/version.m4 projects/bmake/contrib/sendmail/cf/mailer/cyrus.m4 projects/bmake/contrib/sendmail/cf/mailer/cyrusv2.m4 projects/bmake/contrib/sendmail/cf/mailer/fax.m4 projects/bmake/contrib/sendmail/cf/mailer/local.m4 projects/bmake/contrib/sendmail/cf/mailer/mail11.m4 projects/bmake/contrib/sendmail/cf/mailer/phquery.m4 projects/bmake/contrib/sendmail/cf/mailer/pop.m4 projects/bmake/contrib/sendmail/cf/mailer/procmail.m4 projects/bmake/contrib/sendmail/cf/mailer/qpage.m4 projects/bmake/contrib/sendmail/cf/mailer/smtp.m4 projects/bmake/contrib/sendmail/cf/mailer/usenet.m4 projects/bmake/contrib/sendmail/cf/mailer/uucp.m4 projects/bmake/contrib/sendmail/cf/ostype/a-ux.m4 projects/bmake/contrib/sendmail/cf/ostype/aix3.m4 projects/bmake/contrib/sendmail/cf/ostype/aix4.m4 projects/bmake/contrib/sendmail/cf/ostype/aix5.m4 projects/bmake/contrib/sendmail/cf/ostype/altos.m4 projects/bmake/contrib/sendmail/cf/ostype/amdahl-uts.m4 projects/bmake/contrib/sendmail/cf/ostype/bsd4.3.m4 projects/bmake/contrib/sendmail/cf/ostype/bsd4.4.m4 projects/bmake/contrib/sendmail/cf/ostype/bsdi.m4 projects/bmake/contrib/sendmail/cf/ostype/bsdi1.0.m4 projects/bmake/contrib/sendmail/cf/ostype/bsdi2.0.m4 projects/bmake/contrib/sendmail/cf/ostype/darwin.m4 projects/bmake/contrib/sendmail/cf/ostype/dgux.m4 projects/bmake/contrib/sendmail/cf/ostype/domainos.m4 projects/bmake/contrib/sendmail/cf/ostype/dragonfly.m4 projects/bmake/contrib/sendmail/cf/ostype/dynix3.2.m4 projects/bmake/contrib/sendmail/cf/ostype/freebsd4.m4 projects/bmake/contrib/sendmail/cf/ostype/freebsd5.m4 projects/bmake/contrib/sendmail/cf/ostype/freebsd6.m4 projects/bmake/contrib/sendmail/cf/ostype/gnu.m4 projects/bmake/contrib/sendmail/cf/ostype/hpux10.m4 projects/bmake/contrib/sendmail/cf/ostype/hpux11.m4 projects/bmake/contrib/sendmail/cf/ostype/hpux9.m4 projects/bmake/contrib/sendmail/cf/ostype/irix4.m4 projects/bmake/contrib/sendmail/cf/ostype/irix5.m4 projects/bmake/contrib/sendmail/cf/ostype/irix6.m4 projects/bmake/contrib/sendmail/cf/ostype/isc4.1.m4 projects/bmake/contrib/sendmail/cf/ostype/linux.m4 projects/bmake/contrib/sendmail/cf/ostype/maxion.m4 projects/bmake/contrib/sendmail/cf/ostype/mklinux.m4 projects/bmake/contrib/sendmail/cf/ostype/mpeix.m4 projects/bmake/contrib/sendmail/cf/ostype/nextstep.m4 projects/bmake/contrib/sendmail/cf/ostype/openbsd.m4 projects/bmake/contrib/sendmail/cf/ostype/osf1.m4 projects/bmake/contrib/sendmail/cf/ostype/powerux.m4 projects/bmake/contrib/sendmail/cf/ostype/ptx2.m4 projects/bmake/contrib/sendmail/cf/ostype/qnx.m4 projects/bmake/contrib/sendmail/cf/ostype/riscos4.5.m4 projects/bmake/contrib/sendmail/cf/ostype/sco-uw-2.1.m4 projects/bmake/contrib/sendmail/cf/ostype/sco3.2.m4 projects/bmake/contrib/sendmail/cf/ostype/sinix.m4 projects/bmake/contrib/sendmail/cf/ostype/solaris11.m4 projects/bmake/contrib/sendmail/cf/ostype/solaris2.m4 projects/bmake/contrib/sendmail/cf/ostype/solaris2.ml.m4 projects/bmake/contrib/sendmail/cf/ostype/solaris2.pre5.m4 projects/bmake/contrib/sendmail/cf/ostype/solaris8.m4 projects/bmake/contrib/sendmail/cf/ostype/sunos3.5.m4 projects/bmake/contrib/sendmail/cf/ostype/sunos4.1.m4 projects/bmake/contrib/sendmail/cf/ostype/svr4.m4 projects/bmake/contrib/sendmail/cf/ostype/ultrix4.m4 projects/bmake/contrib/sendmail/cf/ostype/unicos.m4 projects/bmake/contrib/sendmail/cf/ostype/unicosmk.m4 projects/bmake/contrib/sendmail/cf/ostype/unicosmp.m4 projects/bmake/contrib/sendmail/cf/ostype/unixware7.m4 projects/bmake/contrib/sendmail/cf/ostype/unknown.m4 projects/bmake/contrib/sendmail/cf/ostype/uxpds.m4 projects/bmake/contrib/sendmail/cf/sendmail.schema projects/bmake/contrib/sendmail/cf/sh/makeinfo.sh projects/bmake/contrib/sendmail/contrib/README projects/bmake/contrib/sendmail/contrib/bsdi.mc projects/bmake/contrib/sendmail/contrib/buildvirtuser projects/bmake/contrib/sendmail/contrib/cidrexpand projects/bmake/contrib/sendmail/contrib/dnsblaccess.m4 projects/bmake/contrib/sendmail/contrib/link_hash.sh projects/bmake/contrib/sendmail/contrib/qtool.8 projects/bmake/contrib/sendmail/contrib/qtool.pl projects/bmake/contrib/sendmail/contrib/smcontrol.pl projects/bmake/contrib/sendmail/contrib/socketmapClient.pl projects/bmake/contrib/sendmail/contrib/socketmapServer.pl projects/bmake/contrib/sendmail/doc/op/Makefile projects/bmake/contrib/sendmail/doc/op/README projects/bmake/contrib/sendmail/doc/op/op.me projects/bmake/contrib/sendmail/editmap/Makefile projects/bmake/contrib/sendmail/editmap/Makefile.m4 projects/bmake/contrib/sendmail/editmap/editmap.8 projects/bmake/contrib/sendmail/editmap/editmap.c projects/bmake/contrib/sendmail/include/libmilter/mfapi.h projects/bmake/contrib/sendmail/include/libmilter/mfdef.h projects/bmake/contrib/sendmail/include/libmilter/milter.h projects/bmake/contrib/sendmail/include/libsmdb/smdb.h projects/bmake/contrib/sendmail/include/sendmail/mailstats.h projects/bmake/contrib/sendmail/include/sendmail/pathnames.h projects/bmake/contrib/sendmail/include/sendmail/sendmail.h projects/bmake/contrib/sendmail/include/sm/assert.h projects/bmake/contrib/sendmail/include/sm/bdb.h projects/bmake/contrib/sendmail/include/sm/bitops.h projects/bmake/contrib/sendmail/include/sm/cdefs.h projects/bmake/contrib/sendmail/include/sm/cf.h projects/bmake/contrib/sendmail/include/sm/clock.h projects/bmake/contrib/sendmail/include/sm/conf.h projects/bmake/contrib/sendmail/include/sm/config.h projects/bmake/contrib/sendmail/include/sm/debug.h projects/bmake/contrib/sendmail/include/sm/errstring.h projects/bmake/contrib/sendmail/include/sm/exc.h projects/bmake/contrib/sendmail/include/sm/fdset.h projects/bmake/contrib/sendmail/include/sm/gen.h projects/bmake/contrib/sendmail/include/sm/heap.h projects/bmake/contrib/sendmail/include/sm/io.h projects/bmake/contrib/sendmail/include/sm/ldap.h projects/bmake/contrib/sendmail/include/sm/limits.h projects/bmake/contrib/sendmail/include/sm/mbdb.h projects/bmake/contrib/sendmail/include/sm/misc.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_aix.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_dragonfly.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_freebsd.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_hp.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_irix.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_linux.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_mpeix.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_next.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_openbsd.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_openunix.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_osf1.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_qnx.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_sunos.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_ultrix.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_unicos.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_unicosmk.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_unicosmp.h projects/bmake/contrib/sendmail/include/sm/os/sm_os_unixware.h projects/bmake/contrib/sendmail/include/sm/path.h projects/bmake/contrib/sendmail/include/sm/rpool.h projects/bmake/contrib/sendmail/include/sm/sem.h projects/bmake/contrib/sendmail/include/sm/setjmp.h projects/bmake/contrib/sendmail/include/sm/shm.h projects/bmake/contrib/sendmail/include/sm/signal.h projects/bmake/contrib/sendmail/include/sm/string.h projects/bmake/contrib/sendmail/include/sm/sysexits.h projects/bmake/contrib/sendmail/include/sm/tailq.h projects/bmake/contrib/sendmail/include/sm/test.h projects/bmake/contrib/sendmail/include/sm/time.h projects/bmake/contrib/sendmail/include/sm/types.h projects/bmake/contrib/sendmail/include/sm/varargs.h projects/bmake/contrib/sendmail/include/sm/xtrap.h projects/bmake/contrib/sendmail/libmilter/Makefile projects/bmake/contrib/sendmail/libmilter/Makefile.m4 projects/bmake/contrib/sendmail/libmilter/README projects/bmake/contrib/sendmail/libmilter/comm.c projects/bmake/contrib/sendmail/libmilter/docs/api.html projects/bmake/contrib/sendmail/libmilter/docs/design.html projects/bmake/contrib/sendmail/libmilter/docs/index.html projects/bmake/contrib/sendmail/libmilter/docs/installation.html projects/bmake/contrib/sendmail/libmilter/docs/other.html projects/bmake/contrib/sendmail/libmilter/docs/overview.html projects/bmake/contrib/sendmail/libmilter/docs/sample.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_addheader.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_addrcpt.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_addrcpt_par.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_chgfrom.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_chgheader.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_delrcpt.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_getpriv.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_getsymval.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_insheader.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_main.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_opensocket.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_progress.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_quarantine.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_register.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_replacebody.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setbacklog.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setconn.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setdbg.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setmlreply.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setpriv.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setreply.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_setsymlist.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_settimeout.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_stop.html projects/bmake/contrib/sendmail/libmilter/docs/smfi_version.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_abort.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_body.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_close.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_connect.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_data.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_envfrom.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_eoh.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_eom.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_header.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_helo.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_negotiate.html projects/bmake/contrib/sendmail/libmilter/docs/xxfi_unknown.html projects/bmake/contrib/sendmail/libmilter/engine.c projects/bmake/contrib/sendmail/libmilter/example.c projects/bmake/contrib/sendmail/libmilter/handler.c projects/bmake/contrib/sendmail/libmilter/libmilter.h projects/bmake/contrib/sendmail/libmilter/listener.c projects/bmake/contrib/sendmail/libmilter/main.c projects/bmake/contrib/sendmail/libmilter/monitor.c projects/bmake/contrib/sendmail/libmilter/signal.c projects/bmake/contrib/sendmail/libmilter/sm_gethost.c projects/bmake/contrib/sendmail/libmilter/smfi.c projects/bmake/contrib/sendmail/libmilter/worker.c projects/bmake/contrib/sendmail/libsm/Makefile projects/bmake/contrib/sendmail/libsm/Makefile.m4 projects/bmake/contrib/sendmail/libsm/README projects/bmake/contrib/sendmail/libsm/assert.c projects/bmake/contrib/sendmail/libsm/assert.html projects/bmake/contrib/sendmail/libsm/b-strcmp.c projects/bmake/contrib/sendmail/libsm/b-strl.c projects/bmake/contrib/sendmail/libsm/cdefs.html projects/bmake/contrib/sendmail/libsm/cf.c projects/bmake/contrib/sendmail/libsm/clock.c projects/bmake/contrib/sendmail/libsm/clrerr.c projects/bmake/contrib/sendmail/libsm/config.c projects/bmake/contrib/sendmail/libsm/debug.c projects/bmake/contrib/sendmail/libsm/debug.html projects/bmake/contrib/sendmail/libsm/errstring.c projects/bmake/contrib/sendmail/libsm/exc.c projects/bmake/contrib/sendmail/libsm/exc.html projects/bmake/contrib/sendmail/libsm/fclose.c projects/bmake/contrib/sendmail/libsm/feof.c projects/bmake/contrib/sendmail/libsm/ferror.c projects/bmake/contrib/sendmail/libsm/fflush.c projects/bmake/contrib/sendmail/libsm/fget.c projects/bmake/contrib/sendmail/libsm/findfp.c projects/bmake/contrib/sendmail/libsm/flags.c projects/bmake/contrib/sendmail/libsm/fopen.c projects/bmake/contrib/sendmail/libsm/fpos.c projects/bmake/contrib/sendmail/libsm/fprintf.c projects/bmake/contrib/sendmail/libsm/fpurge.c projects/bmake/contrib/sendmail/libsm/fput.c projects/bmake/contrib/sendmail/libsm/fread.c projects/bmake/contrib/sendmail/libsm/fscanf.c projects/bmake/contrib/sendmail/libsm/fseek.c projects/bmake/contrib/sendmail/libsm/fvwrite.c projects/bmake/contrib/sendmail/libsm/fvwrite.h projects/bmake/contrib/sendmail/libsm/fwalk.c projects/bmake/contrib/sendmail/libsm/fwrite.c projects/bmake/contrib/sendmail/libsm/gen.html projects/bmake/contrib/sendmail/libsm/get.c projects/bmake/contrib/sendmail/libsm/glue.h projects/bmake/contrib/sendmail/libsm/heap.c projects/bmake/contrib/sendmail/libsm/heap.html projects/bmake/contrib/sendmail/libsm/index.html projects/bmake/contrib/sendmail/libsm/inet6_ntop.c projects/bmake/contrib/sendmail/libsm/io.html projects/bmake/contrib/sendmail/libsm/ldap.c projects/bmake/contrib/sendmail/libsm/local.h projects/bmake/contrib/sendmail/libsm/makebuf.c projects/bmake/contrib/sendmail/libsm/match.c projects/bmake/contrib/sendmail/libsm/mbdb.c projects/bmake/contrib/sendmail/libsm/memstat.c projects/bmake/contrib/sendmail/libsm/mpeix.c projects/bmake/contrib/sendmail/libsm/niprop.c projects/bmake/contrib/sendmail/libsm/path.c projects/bmake/contrib/sendmail/libsm/put.c projects/bmake/contrib/sendmail/libsm/refill.c projects/bmake/contrib/sendmail/libsm/rewind.c projects/bmake/contrib/sendmail/libsm/rpool.c projects/bmake/contrib/sendmail/libsm/rpool.html projects/bmake/contrib/sendmail/libsm/sem.c projects/bmake/contrib/sendmail/libsm/setvbuf.c projects/bmake/contrib/sendmail/libsm/shm.c projects/bmake/contrib/sendmail/libsm/signal.c projects/bmake/contrib/sendmail/libsm/smstdio.c projects/bmake/contrib/sendmail/libsm/snprintf.c projects/bmake/contrib/sendmail/libsm/stdio.c projects/bmake/contrib/sendmail/libsm/strcasecmp.c projects/bmake/contrib/sendmail/libsm/strdup.c projects/bmake/contrib/sendmail/libsm/strerror.c projects/bmake/contrib/sendmail/libsm/strexit.c projects/bmake/contrib/sendmail/libsm/string.c projects/bmake/contrib/sendmail/libsm/stringf.c projects/bmake/contrib/sendmail/libsm/strio.c projects/bmake/contrib/sendmail/libsm/strl.c projects/bmake/contrib/sendmail/libsm/strrevcmp.c projects/bmake/contrib/sendmail/libsm/strto.c projects/bmake/contrib/sendmail/libsm/syslogio.c projects/bmake/contrib/sendmail/libsm/t-cf.c projects/bmake/contrib/sendmail/libsm/t-event.c projects/bmake/contrib/sendmail/libsm/t-exc.c projects/bmake/contrib/sendmail/libsm/t-fget.c projects/bmake/contrib/sendmail/libsm/t-float.c projects/bmake/contrib/sendmail/libsm/t-fopen.c projects/bmake/contrib/sendmail/libsm/t-heap.c projects/bmake/contrib/sendmail/libsm/t-inet6_ntop.c projects/bmake/contrib/sendmail/libsm/t-match.c projects/bmake/contrib/sendmail/libsm/t-memstat.c projects/bmake/contrib/sendmail/libsm/t-path.c projects/bmake/contrib/sendmail/libsm/t-qic.c projects/bmake/contrib/sendmail/libsm/t-rpool.c projects/bmake/contrib/sendmail/libsm/t-scanf.c projects/bmake/contrib/sendmail/libsm/t-sem.c projects/bmake/contrib/sendmail/libsm/t-shm.c projects/bmake/contrib/sendmail/libsm/t-smstdio.c projects/bmake/contrib/sendmail/libsm/t-string.c projects/bmake/contrib/sendmail/libsm/t-strio.c projects/bmake/contrib/sendmail/libsm/t-strl.c projects/bmake/contrib/sendmail/libsm/t-strrevcmp.c projects/bmake/contrib/sendmail/libsm/t-types.c projects/bmake/contrib/sendmail/libsm/test.c projects/bmake/contrib/sendmail/libsm/ungetc.c projects/bmake/contrib/sendmail/libsm/util.c projects/bmake/contrib/sendmail/libsm/vasprintf.c projects/bmake/contrib/sendmail/libsm/vfprintf.c projects/bmake/contrib/sendmail/libsm/vfscanf.c projects/bmake/contrib/sendmail/libsm/vprintf.c projects/bmake/contrib/sendmail/libsm/vsnprintf.c projects/bmake/contrib/sendmail/libsm/wbuf.c projects/bmake/contrib/sendmail/libsm/wsetup.c projects/bmake/contrib/sendmail/libsm/xtrap.c projects/bmake/contrib/sendmail/libsmdb/Makefile projects/bmake/contrib/sendmail/libsmdb/Makefile.m4 projects/bmake/contrib/sendmail/libsmdb/smdb.c projects/bmake/contrib/sendmail/libsmdb/smdb1.c projects/bmake/contrib/sendmail/libsmdb/smdb2.c projects/bmake/contrib/sendmail/libsmdb/smndbm.c projects/bmake/contrib/sendmail/libsmutil/Makefile projects/bmake/contrib/sendmail/libsmutil/Makefile.m4 projects/bmake/contrib/sendmail/libsmutil/cf.c projects/bmake/contrib/sendmail/libsmutil/debug.c projects/bmake/contrib/sendmail/libsmutil/err.c projects/bmake/contrib/sendmail/libsmutil/lockfile.c projects/bmake/contrib/sendmail/libsmutil/safefile.c projects/bmake/contrib/sendmail/libsmutil/snprintf.c projects/bmake/contrib/sendmail/mail.local/Makefile projects/bmake/contrib/sendmail/mail.local/Makefile.m4 projects/bmake/contrib/sendmail/mail.local/README projects/bmake/contrib/sendmail/mail.local/mail.local.8 projects/bmake/contrib/sendmail/mail.local/mail.local.c projects/bmake/contrib/sendmail/mailstats/Makefile projects/bmake/contrib/sendmail/mailstats/Makefile.m4 projects/bmake/contrib/sendmail/mailstats/mailstats.8 projects/bmake/contrib/sendmail/mailstats/mailstats.c projects/bmake/contrib/sendmail/makemap/Makefile projects/bmake/contrib/sendmail/makemap/Makefile.m4 projects/bmake/contrib/sendmail/makemap/makemap.8 projects/bmake/contrib/sendmail/makemap/makemap.c projects/bmake/contrib/sendmail/praliases/Makefile projects/bmake/contrib/sendmail/praliases/Makefile.m4 projects/bmake/contrib/sendmail/praliases/praliases.8 projects/bmake/contrib/sendmail/praliases/praliases.c projects/bmake/contrib/sendmail/rmail/Makefile projects/bmake/contrib/sendmail/rmail/Makefile.m4 projects/bmake/contrib/sendmail/rmail/rmail.8 projects/bmake/contrib/sendmail/rmail/rmail.c projects/bmake/contrib/sendmail/smrsh/Makefile projects/bmake/contrib/sendmail/smrsh/Makefile.m4 projects/bmake/contrib/sendmail/smrsh/README projects/bmake/contrib/sendmail/smrsh/smrsh.8 projects/bmake/contrib/sendmail/smrsh/smrsh.c projects/bmake/contrib/sendmail/src/Makefile projects/bmake/contrib/sendmail/src/Makefile.m4 projects/bmake/contrib/sendmail/src/README projects/bmake/contrib/sendmail/src/SECURITY projects/bmake/contrib/sendmail/src/TRACEFLAGS projects/bmake/contrib/sendmail/src/TUNING projects/bmake/contrib/sendmail/src/alias.c projects/bmake/contrib/sendmail/src/aliases projects/bmake/contrib/sendmail/src/aliases.5 projects/bmake/contrib/sendmail/src/arpadate.c projects/bmake/contrib/sendmail/src/bf.c projects/bmake/contrib/sendmail/src/bf.h projects/bmake/contrib/sendmail/src/collect.c projects/bmake/contrib/sendmail/src/conf.c projects/bmake/contrib/sendmail/src/conf.h projects/bmake/contrib/sendmail/src/control.c projects/bmake/contrib/sendmail/src/convtime.c projects/bmake/contrib/sendmail/src/daemon.c projects/bmake/contrib/sendmail/src/daemon.h projects/bmake/contrib/sendmail/src/deliver.c projects/bmake/contrib/sendmail/src/domain.c projects/bmake/contrib/sendmail/src/envelope.c projects/bmake/contrib/sendmail/src/err.c projects/bmake/contrib/sendmail/src/headers.c projects/bmake/contrib/sendmail/src/helpfile projects/bmake/contrib/sendmail/src/macro.c projects/bmake/contrib/sendmail/src/mailq.1 projects/bmake/contrib/sendmail/src/main.c projects/bmake/contrib/sendmail/src/map.c projects/bmake/contrib/sendmail/src/map.h projects/bmake/contrib/sendmail/src/mci.c projects/bmake/contrib/sendmail/src/milter.c projects/bmake/contrib/sendmail/src/mime.c projects/bmake/contrib/sendmail/src/newaliases.1 projects/bmake/contrib/sendmail/src/parseaddr.c projects/bmake/contrib/sendmail/src/queue.c projects/bmake/contrib/sendmail/src/ratectrl.c projects/bmake/contrib/sendmail/src/readcf.c projects/bmake/contrib/sendmail/src/recipient.c projects/bmake/contrib/sendmail/src/sasl.c projects/bmake/contrib/sendmail/src/savemail.c projects/bmake/contrib/sendmail/src/sendmail.8 projects/bmake/contrib/sendmail/src/sendmail.h projects/bmake/contrib/sendmail/src/sfsasl.c projects/bmake/contrib/sendmail/src/sfsasl.h projects/bmake/contrib/sendmail/src/shmticklib.c projects/bmake/contrib/sendmail/src/sm_resolve.c projects/bmake/contrib/sendmail/src/sm_resolve.h projects/bmake/contrib/sendmail/src/srvrsmtp.c projects/bmake/contrib/sendmail/src/stab.c projects/bmake/contrib/sendmail/src/stats.c projects/bmake/contrib/sendmail/src/statusd_shm.h projects/bmake/contrib/sendmail/src/sysexits.c projects/bmake/contrib/sendmail/src/timers.c projects/bmake/contrib/sendmail/src/timers.h projects/bmake/contrib/sendmail/src/tls.c projects/bmake/contrib/sendmail/src/trace.c projects/bmake/contrib/sendmail/src/udb.c projects/bmake/contrib/sendmail/src/usersmtp.c projects/bmake/contrib/sendmail/src/util.c projects/bmake/contrib/sendmail/src/version.c projects/bmake/contrib/sendmail/test/Makefile projects/bmake/contrib/sendmail/test/Makefile.m4 projects/bmake/contrib/sendmail/test/README projects/bmake/contrib/sendmail/test/Results projects/bmake/contrib/sendmail/test/t_dropgid.c projects/bmake/contrib/sendmail/test/t_exclopen.c projects/bmake/contrib/sendmail/test/t_pathconf.c projects/bmake/contrib/sendmail/test/t_seteuid.c projects/bmake/contrib/sendmail/test/t_setgid.c projects/bmake/contrib/sendmail/test/t_setreuid.c projects/bmake/contrib/sendmail/test/t_setuid.c projects/bmake/contrib/sendmail/test/t_snprintf.c projects/bmake/contrib/sendmail/vacation/Makefile projects/bmake/contrib/sendmail/vacation/Makefile.m4 projects/bmake/contrib/sendmail/vacation/vacation.1 projects/bmake/contrib/sendmail/vacation/vacation.c projects/bmake/contrib/serf/CHANGES projects/bmake/contrib/serf/auth/auth_spnego.c projects/bmake/contrib/serf/serf.h projects/bmake/contrib/serf/ssltunnel.c projects/bmake/contrib/subversion/CHANGES projects/bmake/contrib/subversion/NOTICE projects/bmake/contrib/subversion/build-outputs.mk projects/bmake/contrib/subversion/configure projects/bmake/contrib/subversion/configure.ac projects/bmake/contrib/subversion/subversion/include/private/svn_cache.h projects/bmake/contrib/subversion/subversion/include/private/svn_dep_compat.h projects/bmake/contrib/subversion/subversion/include/svn_version.h projects/bmake/contrib/subversion/subversion/libsvn_client/commit_util.c projects/bmake/contrib/subversion/subversion/libsvn_client/export.c projects/bmake/contrib/subversion/subversion/libsvn_client/merge.c projects/bmake/contrib/subversion/subversion/libsvn_client/prop_commands.c projects/bmake/contrib/subversion/subversion/libsvn_delta/svndiff.c projects/bmake/contrib/subversion/subversion/libsvn_fs_fs/fs.c projects/bmake/contrib/subversion/subversion/libsvn_fs_fs/fs.h projects/bmake/contrib/subversion/subversion/libsvn_fs_fs/rep-cache-db.h projects/bmake/contrib/subversion/subversion/libsvn_ra_serf/getlocks.c projects/bmake/contrib/subversion/subversion/libsvn_ra_serf/inherited_props.c projects/bmake/contrib/subversion/subversion/libsvn_ra_serf/locks.c projects/bmake/contrib/subversion/subversion/libsvn_ra_serf/log.c projects/bmake/contrib/subversion/subversion/libsvn_ra_serf/update.c projects/bmake/contrib/subversion/subversion/libsvn_ra_svn/protocol projects/bmake/contrib/subversion/subversion/libsvn_repos/dump.c projects/bmake/contrib/subversion/subversion/libsvn_repos/fs-wrap.c projects/bmake/contrib/subversion/subversion/libsvn_subr/cache-memcache.c projects/bmake/contrib/subversion/subversion/libsvn_subr/config_file.c projects/bmake/contrib/subversion/subversion/libsvn_subr/internal_statements.h projects/bmake/contrib/subversion/subversion/libsvn_subr/io.c projects/bmake/contrib/subversion/subversion/libsvn_subr/prompt.c projects/bmake/contrib/subversion/subversion/libsvn_subr/sysinfo.c projects/bmake/contrib/subversion/subversion/libsvn_subr/version.c projects/bmake/contrib/subversion/subversion/libsvn_wc/status.c projects/bmake/contrib/subversion/subversion/libsvn_wc/wc-checks.h projects/bmake/contrib/subversion/subversion/libsvn_wc/wc-metadata.h projects/bmake/contrib/subversion/subversion/libsvn_wc/wc-metadata.sql projects/bmake/contrib/subversion/subversion/libsvn_wc/wc-queries.h projects/bmake/contrib/subversion/subversion/libsvn_wc/wc-queries.sql projects/bmake/contrib/subversion/subversion/libsvn_wc/wc_db.c projects/bmake/contrib/subversion/subversion/libsvn_wc/wc_db.h projects/bmake/contrib/subversion/subversion/libsvn_wc/wc_db_wcroot.c projects/bmake/contrib/subversion/subversion/svn/conflict-callbacks.c projects/bmake/contrib/subversion/subversion/svndumpfilter/svndumpfilter.c projects/bmake/contrib/subversion/subversion/svnrdump/util.c projects/bmake/contrib/subversion/subversion/svnserve/serve.c projects/bmake/contrib/tzcode/stdtime/ctime.3 projects/bmake/contrib/tzdata/africa projects/bmake/contrib/tzdata/asia projects/bmake/contrib/tzdata/australasia projects/bmake/contrib/tzdata/europe projects/bmake/contrib/tzdata/northamerica projects/bmake/contrib/unbound/LICENSE projects/bmake/contrib/unbound/Makefile.in projects/bmake/contrib/unbound/acx_nlnetlabs.m4 projects/bmake/contrib/unbound/compat/snprintf.c projects/bmake/contrib/unbound/config.h projects/bmake/contrib/unbound/config.h.in projects/bmake/contrib/unbound/configure projects/bmake/contrib/unbound/configure.ac projects/bmake/contrib/unbound/daemon/acl_list.c projects/bmake/contrib/unbound/daemon/acl_list.h projects/bmake/contrib/unbound/daemon/cachedump.c projects/bmake/contrib/unbound/daemon/cachedump.h projects/bmake/contrib/unbound/daemon/daemon.c projects/bmake/contrib/unbound/daemon/daemon.h projects/bmake/contrib/unbound/daemon/remote.c projects/bmake/contrib/unbound/daemon/remote.h projects/bmake/contrib/unbound/daemon/stats.c projects/bmake/contrib/unbound/daemon/stats.h projects/bmake/contrib/unbound/daemon/unbound.c projects/bmake/contrib/unbound/daemon/worker.c projects/bmake/contrib/unbound/daemon/worker.h projects/bmake/contrib/unbound/doc/Changelog projects/bmake/contrib/unbound/doc/FEATURES projects/bmake/contrib/unbound/doc/LICENSE projects/bmake/contrib/unbound/doc/README projects/bmake/contrib/unbound/doc/example.conf.in projects/bmake/contrib/unbound/doc/libunbound.3 projects/bmake/contrib/unbound/doc/libunbound.3.in projects/bmake/contrib/unbound/doc/unbound-anchor.8 projects/bmake/contrib/unbound/doc/unbound-anchor.8.in projects/bmake/contrib/unbound/doc/unbound-checkconf.8 projects/bmake/contrib/unbound/doc/unbound-checkconf.8.in projects/bmake/contrib/unbound/doc/unbound-control.8 projects/bmake/contrib/unbound/doc/unbound-control.8.in projects/bmake/contrib/unbound/doc/unbound-host.1 projects/bmake/contrib/unbound/doc/unbound.8 projects/bmake/contrib/unbound/doc/unbound.8.in projects/bmake/contrib/unbound/doc/unbound.conf.5 projects/bmake/contrib/unbound/doc/unbound.conf.5.in projects/bmake/contrib/unbound/freebsd-configure.sh projects/bmake/contrib/unbound/iterator/iter_delegpt.c projects/bmake/contrib/unbound/iterator/iter_delegpt.h projects/bmake/contrib/unbound/iterator/iter_donotq.c projects/bmake/contrib/unbound/iterator/iter_donotq.h projects/bmake/contrib/unbound/iterator/iter_fwd.c projects/bmake/contrib/unbound/iterator/iter_fwd.h projects/bmake/contrib/unbound/iterator/iter_hints.c projects/bmake/contrib/unbound/iterator/iter_hints.h projects/bmake/contrib/unbound/iterator/iter_priv.c projects/bmake/contrib/unbound/iterator/iter_priv.h projects/bmake/contrib/unbound/iterator/iter_resptype.c projects/bmake/contrib/unbound/iterator/iter_resptype.h projects/bmake/contrib/unbound/iterator/iter_scrub.c projects/bmake/contrib/unbound/iterator/iter_scrub.h projects/bmake/contrib/unbound/iterator/iter_utils.c projects/bmake/contrib/unbound/iterator/iter_utils.h projects/bmake/contrib/unbound/iterator/iterator.c projects/bmake/contrib/unbound/iterator/iterator.h projects/bmake/contrib/unbound/libunbound/context.c projects/bmake/contrib/unbound/libunbound/context.h projects/bmake/contrib/unbound/libunbound/libunbound.c projects/bmake/contrib/unbound/libunbound/libworker.c projects/bmake/contrib/unbound/libunbound/libworker.h projects/bmake/contrib/unbound/libunbound/ubsyms.def projects/bmake/contrib/unbound/libunbound/unbound.h projects/bmake/contrib/unbound/libunbound/worker.h projects/bmake/contrib/unbound/services/cache/dns.c projects/bmake/contrib/unbound/services/cache/dns.h projects/bmake/contrib/unbound/services/cache/infra.c projects/bmake/contrib/unbound/services/cache/infra.h projects/bmake/contrib/unbound/services/cache/rrset.c projects/bmake/contrib/unbound/services/cache/rrset.h projects/bmake/contrib/unbound/services/listen_dnsport.c projects/bmake/contrib/unbound/services/listen_dnsport.h projects/bmake/contrib/unbound/services/localzone.c projects/bmake/contrib/unbound/services/localzone.h projects/bmake/contrib/unbound/services/mesh.c projects/bmake/contrib/unbound/services/mesh.h projects/bmake/contrib/unbound/services/modstack.c projects/bmake/contrib/unbound/services/modstack.h projects/bmake/contrib/unbound/services/outbound_list.c projects/bmake/contrib/unbound/services/outbound_list.h projects/bmake/contrib/unbound/services/outside_network.c projects/bmake/contrib/unbound/services/outside_network.h projects/bmake/contrib/unbound/smallapp/unbound-anchor.c projects/bmake/contrib/unbound/smallapp/unbound-checkconf.c projects/bmake/contrib/unbound/smallapp/unbound-control-setup.sh projects/bmake/contrib/unbound/smallapp/unbound-control-setup.sh.in projects/bmake/contrib/unbound/smallapp/unbound-control.c projects/bmake/contrib/unbound/smallapp/unbound-host.c projects/bmake/contrib/unbound/smallapp/worker_cb.c projects/bmake/contrib/unbound/util/alloc.c projects/bmake/contrib/unbound/util/alloc.h projects/bmake/contrib/unbound/util/config_file.c projects/bmake/contrib/unbound/util/config_file.h projects/bmake/contrib/unbound/util/configlexer.lex projects/bmake/contrib/unbound/util/configparser.y projects/bmake/contrib/unbound/util/data/dname.c projects/bmake/contrib/unbound/util/data/dname.h projects/bmake/contrib/unbound/util/data/msgencode.c projects/bmake/contrib/unbound/util/data/msgencode.h projects/bmake/contrib/unbound/util/data/msgparse.c projects/bmake/contrib/unbound/util/data/msgparse.h projects/bmake/contrib/unbound/util/data/msgreply.c projects/bmake/contrib/unbound/util/data/msgreply.h projects/bmake/contrib/unbound/util/data/packed_rrset.c projects/bmake/contrib/unbound/util/data/packed_rrset.h projects/bmake/contrib/unbound/util/fptr_wlist.c projects/bmake/contrib/unbound/util/fptr_wlist.h projects/bmake/contrib/unbound/util/iana_ports.inc projects/bmake/contrib/unbound/util/locks.c projects/bmake/contrib/unbound/util/locks.h projects/bmake/contrib/unbound/util/log.c projects/bmake/contrib/unbound/util/log.h projects/bmake/contrib/unbound/util/mini_event.c projects/bmake/contrib/unbound/util/mini_event.h projects/bmake/contrib/unbound/util/module.c projects/bmake/contrib/unbound/util/module.h projects/bmake/contrib/unbound/util/net_help.c projects/bmake/contrib/unbound/util/net_help.h projects/bmake/contrib/unbound/util/netevent.c projects/bmake/contrib/unbound/util/netevent.h projects/bmake/contrib/unbound/util/random.c projects/bmake/contrib/unbound/util/random.h projects/bmake/contrib/unbound/util/rbtree.c projects/bmake/contrib/unbound/util/rbtree.h projects/bmake/contrib/unbound/util/regional.c projects/bmake/contrib/unbound/util/regional.h projects/bmake/contrib/unbound/util/rtt.c projects/bmake/contrib/unbound/util/rtt.h projects/bmake/contrib/unbound/util/storage/dnstree.c projects/bmake/contrib/unbound/util/storage/dnstree.h projects/bmake/contrib/unbound/util/storage/lookup3.c projects/bmake/contrib/unbound/util/storage/lookup3.h projects/bmake/contrib/unbound/util/storage/lruhash.c projects/bmake/contrib/unbound/util/storage/lruhash.h projects/bmake/contrib/unbound/util/storage/slabhash.c projects/bmake/contrib/unbound/util/storage/slabhash.h projects/bmake/contrib/unbound/util/timehist.c projects/bmake/contrib/unbound/util/timehist.h projects/bmake/contrib/unbound/util/tube.c projects/bmake/contrib/unbound/util/tube.h projects/bmake/contrib/unbound/util/winsock_event.c projects/bmake/contrib/unbound/util/winsock_event.h projects/bmake/contrib/unbound/validator/autotrust.c projects/bmake/contrib/unbound/validator/autotrust.h projects/bmake/contrib/unbound/validator/val_anchor.c projects/bmake/contrib/unbound/validator/val_anchor.h projects/bmake/contrib/unbound/validator/val_kcache.c projects/bmake/contrib/unbound/validator/val_kcache.h projects/bmake/contrib/unbound/validator/val_kentry.c projects/bmake/contrib/unbound/validator/val_kentry.h projects/bmake/contrib/unbound/validator/val_neg.c projects/bmake/contrib/unbound/validator/val_neg.h projects/bmake/contrib/unbound/validator/val_nsec.c projects/bmake/contrib/unbound/validator/val_nsec.h projects/bmake/contrib/unbound/validator/val_nsec3.c projects/bmake/contrib/unbound/validator/val_nsec3.h projects/bmake/contrib/unbound/validator/val_secalgo.c projects/bmake/contrib/unbound/validator/val_secalgo.h projects/bmake/contrib/unbound/validator/val_sigcrypt.c projects/bmake/contrib/unbound/validator/val_sigcrypt.h projects/bmake/contrib/unbound/validator/val_utils.c projects/bmake/contrib/unbound/validator/val_utils.h projects/bmake/contrib/unbound/validator/validator.c projects/bmake/contrib/unbound/validator/validator.h projects/bmake/contrib/wpa/src/utils/os_unix.c projects/bmake/crypto/openssh/sshd_config projects/bmake/crypto/openssl/ACKNOWLEDGMENTS projects/bmake/crypto/openssl/CHANGES projects/bmake/crypto/openssl/Makefile projects/bmake/crypto/openssl/NEWS projects/bmake/crypto/openssl/README projects/bmake/crypto/openssl/apps/enc.c projects/bmake/crypto/openssl/apps/ocsp.c projects/bmake/crypto/openssl/apps/req.c projects/bmake/crypto/openssl/apps/s_cb.c projects/bmake/crypto/openssl/apps/s_socket.c projects/bmake/crypto/openssl/apps/smime.c projects/bmake/crypto/openssl/crypto/asn1/a_strnid.c projects/bmake/crypto/openssl/crypto/bio/bss_dgram.c projects/bmake/crypto/openssl/crypto/bn/bn_mont.c projects/bmake/crypto/openssl/crypto/cms/cms_env.c projects/bmake/crypto/openssl/crypto/cms/cms_sd.c projects/bmake/crypto/openssl/crypto/cms/cms_smime.c projects/bmake/crypto/openssl/crypto/dso/dso_dlfcn.c projects/bmake/crypto/openssl/crypto/ec/ec_ameth.c projects/bmake/crypto/openssl/crypto/ec/ec_asn1.c projects/bmake/crypto/openssl/crypto/ec/ec_lcl.h projects/bmake/crypto/openssl/crypto/evp/bio_b64.c projects/bmake/crypto/openssl/crypto/evp/encode.c projects/bmake/crypto/openssl/crypto/opensslv.h projects/bmake/crypto/openssl/crypto/pkcs12/p12_crt.c projects/bmake/crypto/openssl/crypto/pkcs12/p12_kiss.c projects/bmake/crypto/openssl/crypto/pkcs7/pk7_doit.c projects/bmake/crypto/openssl/crypto/pkcs7/pkcs7.h projects/bmake/crypto/openssl/crypto/pkcs7/pkcs7err.c projects/bmake/crypto/openssl/crypto/rsa/rsa_ameth.c projects/bmake/crypto/openssl/crypto/srp/srp_vfy.c projects/bmake/crypto/openssl/crypto/ts/ts_rsp_verify.c projects/bmake/crypto/openssl/crypto/x509v3/v3_purp.c projects/bmake/crypto/openssl/doc/apps/cms.pod projects/bmake/crypto/openssl/doc/apps/enc.pod projects/bmake/crypto/openssl/doc/apps/s_server.pod projects/bmake/crypto/openssl/doc/apps/smime.pod projects/bmake/crypto/openssl/doc/apps/verify.pod projects/bmake/crypto/openssl/doc/apps/version.pod projects/bmake/crypto/openssl/doc/apps/x509v3_config.pod projects/bmake/crypto/openssl/doc/crypto/CMS_decrypt.pod projects/bmake/crypto/openssl/doc/crypto/CONF_modules_free.pod projects/bmake/crypto/openssl/doc/crypto/CONF_modules_load_file.pod projects/bmake/crypto/openssl/doc/crypto/OPENSSL_config.pod projects/bmake/crypto/openssl/doc/crypto/X509_NAME_ENTRY_get_object.pod projects/bmake/crypto/openssl/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod projects/bmake/crypto/openssl/doc/fingerprints.txt projects/bmake/crypto/openssl/doc/ssl/SSL_CTX_set_msg_callback.pod projects/bmake/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod projects/bmake/crypto/openssl/doc/ssl/SSL_get_peer_cert_chain.pod projects/bmake/crypto/openssl/engines/ccgost/gost_ameth.c projects/bmake/crypto/openssl/ssl/Makefile projects/bmake/crypto/openssl/ssl/d1_both.c projects/bmake/crypto/openssl/ssl/d1_lib.c projects/bmake/crypto/openssl/ssl/d1_pkt.c projects/bmake/crypto/openssl/ssl/d1_srvr.c projects/bmake/crypto/openssl/ssl/s3_clnt.c projects/bmake/crypto/openssl/ssl/s3_pkt.c projects/bmake/crypto/openssl/ssl/s3_srvr.c projects/bmake/crypto/openssl/ssl/ssl.h projects/bmake/crypto/openssl/ssl/ssl3.h projects/bmake/crypto/openssl/ssl/ssl_asn1.c projects/bmake/crypto/openssl/ssl/ssl_err.c projects/bmake/crypto/openssl/ssl/ssl_lib.c projects/bmake/crypto/openssl/ssl/t1_enc.c projects/bmake/crypto/openssl/ssl/t1_lib.c projects/bmake/etc/Makefile projects/bmake/etc/etc.amd64/ttys projects/bmake/etc/etc.i386/ttys projects/bmake/etc/mtree/BSD.include.dist projects/bmake/etc/mtree/BSD.root.dist projects/bmake/etc/mtree/BSD.tests.dist projects/bmake/etc/mtree/BSD.usr.dist projects/bmake/etc/mtree/BSD.var.dist projects/bmake/etc/network.subr projects/bmake/etc/newsyslog.conf projects/bmake/etc/sendmail/freebsd.mc projects/bmake/etc/sendmail/freebsd.submit.mc projects/bmake/etc/snmpd.config projects/bmake/games/fortune/datfiles/fortunes projects/bmake/games/fortune/datfiles/freebsd-tips projects/bmake/games/fortune/fortune/pathnames.h projects/bmake/games/grdc/Makefile projects/bmake/games/grdc/Makefile.depend projects/bmake/games/morse/morse.6 projects/bmake/games/random/random.6 projects/bmake/gnu/lib/Makefile projects/bmake/gnu/lib/csu/Makefile projects/bmake/gnu/lib/csu/Makefile.depend projects/bmake/gnu/lib/libgcc/Makefile projects/bmake/gnu/lib/libgcc/Makefile.depend projects/bmake/gnu/lib/libgcov/Makefile projects/bmake/gnu/lib/libreadline/Makefile projects/bmake/gnu/lib/libreadline/readline/Makefile projects/bmake/gnu/lib/libreadline/readline/Makefile.depend projects/bmake/gnu/lib/libstdc++/Makefile projects/bmake/gnu/lib/libsupc++/Makefile projects/bmake/gnu/usr.bin/Makefile projects/bmake/gnu/usr.bin/binutils/addr2line/Makefile projects/bmake/gnu/usr.bin/binutils/ld/Makefile projects/bmake/gnu/usr.bin/binutils/ld/Makefile.depend.amd64 projects/bmake/gnu/usr.bin/binutils/libbfd/Makefile projects/bmake/gnu/usr.bin/binutils/libbfd/bfd.h projects/bmake/gnu/usr.bin/binutils/nm/Makefile projects/bmake/gnu/usr.bin/binutils/objcopy/Makefile projects/bmake/gnu/usr.bin/binutils/objdump/Makefile projects/bmake/gnu/usr.bin/binutils/readelf/Makefile projects/bmake/gnu/usr.bin/binutils/size/Makefile projects/bmake/gnu/usr.bin/binutils/strings/Makefile projects/bmake/gnu/usr.bin/binutils/strip/Makefile projects/bmake/gnu/usr.bin/cc/Makefile projects/bmake/gnu/usr.bin/cc/Makefile.tgt projects/bmake/gnu/usr.bin/cc/include/Makefile projects/bmake/gnu/usr.bin/dialog/Makefile projects/bmake/gnu/usr.bin/gdb/Makefile.inc projects/bmake/gnu/usr.bin/gdb/gdb/Makefile projects/bmake/gnu/usr.bin/gdb/gdb/Makefile.depend projects/bmake/gnu/usr.bin/gdb/gdbtui/Makefile projects/bmake/gnu/usr.bin/gdb/gdbtui/Makefile.depend projects/bmake/gnu/usr.bin/gdb/kgdb/Makefile projects/bmake/gnu/usr.bin/gdb/kgdb/Makefile.depend.amd64 projects/bmake/gnu/usr.bin/groff/contrib/mm/Makefile.depend projects/bmake/gnu/usr.bin/groff/font/devdvi/Makefile.depend projects/bmake/gnu/usr.bin/groff/font/devlbp/Makefile.depend projects/bmake/gnu/usr.bin/groff/font/devlj4/Makefile.depend projects/bmake/gnu/usr.bin/groff/font/devps/Makefile.depend projects/bmake/gnu/usr.bin/groff/man/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/devices/grodvi/Makefile projects/bmake/gnu/usr.bin/groff/src/devices/grodvi/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/devices/grohtml/Makefile projects/bmake/gnu/usr.bin/groff/src/devices/grolbp/Makefile projects/bmake/gnu/usr.bin/groff/src/devices/grolbp/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/devices/grolj4/Makefile projects/bmake/gnu/usr.bin/groff/src/devices/grolj4/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/devices/grops/Makefile projects/bmake/gnu/usr.bin/groff/src/devices/grops/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/devices/grotty/Makefile projects/bmake/gnu/usr.bin/groff/src/devices/grotty/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/libs/libgroff/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/preproc/eqn/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/eqn/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/preproc/grn/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/grn/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/preproc/html/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/pic/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/pic/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/preproc/refer/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/refer/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/preproc/soelim/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/soelim/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/preproc/tbl/Makefile projects/bmake/gnu/usr.bin/groff/src/preproc/tbl/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/roff/groff/Makefile projects/bmake/gnu/usr.bin/groff/src/roff/groff/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/roff/grog/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/roff/nroff/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/roff/troff/Makefile projects/bmake/gnu/usr.bin/groff/src/roff/troff/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/addftinfo/Makefile projects/bmake/gnu/usr.bin/groff/src/utils/addftinfo/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/afmtodit/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/hpftodit/Makefile projects/bmake/gnu/usr.bin/groff/src/utils/hpftodit/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/indxbib/Makefile projects/bmake/gnu/usr.bin/groff/src/utils/indxbib/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/lkbib/Makefile projects/bmake/gnu/usr.bin/groff/src/utils/lkbib/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/lookbib/Makefile projects/bmake/gnu/usr.bin/groff/src/utils/lookbib/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/pfbtops/Makefile.depend projects/bmake/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile projects/bmake/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile.depend projects/bmake/gnu/usr.bin/groff/tmac/Makefile.depend projects/bmake/gnu/usr.bin/groff/tmac/mdoc.local projects/bmake/gnu/usr.bin/rcs/Makefile.inc projects/bmake/gnu/usr.bin/texinfo/info/Makefile projects/bmake/gnu/usr.bin/texinfo/info/Makefile.depend projects/bmake/gnu/usr.bin/texinfo/infokey/Makefile projects/bmake/gnu/usr.bin/texinfo/install-info/Makefile projects/bmake/gnu/usr.bin/texinfo/makeinfo/Makefile projects/bmake/gnu/usr.bin/texinfo/texindex/Makefile projects/bmake/include/Makefile projects/bmake/include/Makefile.depend projects/bmake/include/dirent.h projects/bmake/include/grp.h projects/bmake/include/search.h projects/bmake/include/setjmp.h projects/bmake/include/signal.h projects/bmake/include/stdio.h projects/bmake/include/string.h projects/bmake/include/strings.h projects/bmake/include/termios.h projects/bmake/include/unistd.h projects/bmake/include/wchar.h projects/bmake/include/xlocale/Makefile projects/bmake/include/xlocale/_string.h projects/bmake/kerberos5/libexec/digest-service/Makefile projects/bmake/kerberos5/libexec/digest-service/Makefile.depend projects/bmake/kerberos5/libexec/hprop/Makefile projects/bmake/kerberos5/libexec/hpropd/Makefile projects/bmake/kerberos5/libexec/ipropd-master/Makefile projects/bmake/kerberos5/libexec/ipropd-slave/Makefile projects/bmake/kerberos5/libexec/kadmind/Makefile projects/bmake/kerberos5/libexec/kcm/Makefile projects/bmake/kerberos5/libexec/kcm/Makefile.depend projects/bmake/kerberos5/libexec/kdc/Makefile projects/bmake/kerberos5/libexec/kdigest/Makefile projects/bmake/kerberos5/libexec/kdigest/Makefile.depend projects/bmake/kerberos5/libexec/kfd/Makefile projects/bmake/kerberos5/libexec/kimpersonate/Makefile projects/bmake/kerberos5/libexec/kpasswdd/Makefile projects/bmake/kerberos5/tools/asn1_compile/Makefile projects/bmake/kerberos5/tools/slc/Makefile projects/bmake/kerberos5/usr.bin/hxtool/Makefile projects/bmake/kerberos5/usr.bin/hxtool/Makefile.depend projects/bmake/kerberos5/usr.bin/kadmin/Makefile projects/bmake/kerberos5/usr.bin/kadmin/Makefile.depend projects/bmake/kerberos5/usr.bin/kcc/Makefile projects/bmake/kerberos5/usr.bin/kcc/Makefile.depend projects/bmake/kerberos5/usr.bin/kdestroy/Makefile projects/bmake/kerberos5/usr.bin/kf/Makefile projects/bmake/kerberos5/usr.bin/kgetcred/Makefile projects/bmake/kerberos5/usr.bin/kinit/Makefile projects/bmake/kerberos5/usr.bin/kpasswd/Makefile projects/bmake/kerberos5/usr.bin/ksu/Makefile projects/bmake/kerberos5/usr.bin/string2key/Makefile projects/bmake/kerberos5/usr.bin/verify_krb5_conf/Makefile projects/bmake/kerberos5/usr.sbin/iprop-log/Makefile projects/bmake/kerberos5/usr.sbin/iprop-log/Makefile.depend projects/bmake/kerberos5/usr.sbin/kstash/Makefile projects/bmake/kerberos5/usr.sbin/ktutil/Makefile projects/bmake/kerberos5/usr.sbin/ktutil/Makefile.depend projects/bmake/lib/Makefile projects/bmake/lib/atf/libatf-c++/Makefile projects/bmake/lib/atf/libatf-c++/tests/Makefile (contents, props changed) projects/bmake/lib/atf/libatf-c/Makefile projects/bmake/lib/atf/libatf-c/tests/Makefile (contents, props changed) projects/bmake/lib/clang/Makefile projects/bmake/lib/clang/clang.build.mk projects/bmake/lib/clang/include/Makefile projects/bmake/lib/clang/include/clang/Basic/Version.inc projects/bmake/lib/clang/include/llvm/Config/config.h projects/bmake/lib/clang/include/llvm/Config/llvm-config.h projects/bmake/lib/clang/libllvmasmparser/Makefile.depend projects/bmake/lib/clang/libllvmbitwriter/Makefile.depend projects/bmake/lib/clang/libllvmdebuginfo/Makefile.depend projects/bmake/lib/clang/libllvmirreader/Makefile.depend projects/bmake/lib/clang/libllvmlinker/Makefile.depend projects/bmake/lib/clang/libllvmmcdisassembler/Makefile.depend projects/bmake/lib/clang/libllvmmcparser/Makefile.depend projects/bmake/lib/clang/libllvmobject/Makefile.depend projects/bmake/lib/clang/libllvmoption/Makefile.depend projects/bmake/lib/clang/libllvmruntimedyld/Makefile.depend projects/bmake/lib/clang/libllvmsparccodegen/Makefile.depend projects/bmake/lib/clang/libllvmsparcdesc/Makefile.depend projects/bmake/lib/clang/libllvmtarget/Makefile.depend projects/bmake/lib/clang/libllvmx86utils/Makefile.depend projects/bmake/lib/csu/amd64/Makefile projects/bmake/lib/csu/i386-elf/Makefile projects/bmake/lib/libarchive/Makefile projects/bmake/lib/libarchive/config_freebsd.h projects/bmake/lib/libbegemot/Makefile.depend projects/bmake/lib/libbluetooth/bluetooth.3 projects/bmake/lib/libc/Makefile projects/bmake/lib/libc/Makefile.depend projects/bmake/lib/libc/amd64/gen/sigsetjmp.S projects/bmake/lib/libc/arm/Symbol.map projects/bmake/lib/libc/arm/aeabi/Makefile.inc projects/bmake/lib/libc/capability/cap_rights_init.3 projects/bmake/lib/libc/gen/arc4random.c projects/bmake/lib/libc/gen/cap_rights_get.3 projects/bmake/lib/libc/gen/cap_sandboxed.3 projects/bmake/lib/libc/gen/check_utility_compat.3 projects/bmake/lib/libc/gen/clock_getcpuclockid.3 projects/bmake/lib/libc/gen/directory.3 projects/bmake/lib/libc/gen/dlinfo.3 projects/bmake/lib/libc/gen/ftok.3 projects/bmake/lib/libc/gen/gen-private.h projects/bmake/lib/libc/gen/getpagesizes.3 projects/bmake/lib/libc/gen/getutxent.3 projects/bmake/lib/libc/gen/opendir.c projects/bmake/lib/libc/gen/posix_spawn.3 projects/bmake/lib/libc/gen/posix_spawn_file_actions_addopen.3 projects/bmake/lib/libc/gen/posix_spawn_file_actions_init.3 projects/bmake/lib/libc/gen/posix_spawnattr_getflags.3 projects/bmake/lib/libc/gen/posix_spawnattr_getpgroup.3 projects/bmake/lib/libc/gen/posix_spawnattr_getschedparam.3 projects/bmake/lib/libc/gen/posix_spawnattr_getschedpolicy.3 projects/bmake/lib/libc/gen/posix_spawnattr_getsigdefault.3 projects/bmake/lib/libc/gen/posix_spawnattr_getsigmask.3 projects/bmake/lib/libc/gen/posix_spawnattr_init.3 projects/bmake/lib/libc/gen/readdir.c projects/bmake/lib/libc/gen/readpassphrase.c projects/bmake/lib/libc/gen/rewinddir.c projects/bmake/lib/libc/gen/sem_new.c projects/bmake/lib/libc/gen/sem_wait.3 projects/bmake/lib/libc/gen/setproctitle.3 projects/bmake/lib/libc/gen/statvfs.3 projects/bmake/lib/libc/gen/sysconf.c projects/bmake/lib/libc/gen/telldir.c projects/bmake/lib/libc/gen/telldir.h projects/bmake/lib/libc/gen/tls.c projects/bmake/lib/libc/gen/ttyname.3 projects/bmake/lib/libc/i386/gen/sigsetjmp.S projects/bmake/lib/libc/iconv/__iconv_get_list.3 projects/bmake/lib/libc/iconv/bsd_iconv.c projects/bmake/lib/libc/iconv/citrus_db_factory.c projects/bmake/lib/libc/iconv/citrus_iconv.c projects/bmake/lib/libc/iconv/iconv_canonicalize.3 projects/bmake/lib/libc/iconv/iconvctl.3 projects/bmake/lib/libc/iconv/iconvlist.3 projects/bmake/lib/libc/locale/utf8.c projects/bmake/lib/libc/mips/arith.h projects/bmake/lib/libc/net/Makefile.inc projects/bmake/lib/libc/net/getaddrinfo.c projects/bmake/lib/libc/net/nsdispatch.3 projects/bmake/lib/libc/net/sourcefilter.3 projects/bmake/lib/libc/net/sourcefilter.c projects/bmake/lib/libc/posix1e/acl_add_flag_np.3 projects/bmake/lib/libc/posix1e/acl_add_perm.3 projects/bmake/lib/libc/posix1e/acl_calc_mask.3 projects/bmake/lib/libc/posix1e/acl_clear_flags_np.3 projects/bmake/lib/libc/posix1e/acl_clear_perms.3 projects/bmake/lib/libc/posix1e/acl_copy_entry.3 projects/bmake/lib/libc/posix1e/acl_create_entry.3 projects/bmake/lib/libc/posix1e/acl_delete_entry.3 projects/bmake/lib/libc/posix1e/acl_delete_flag_np.3 projects/bmake/lib/libc/posix1e/acl_delete_perm.3 projects/bmake/lib/libc/posix1e/acl_get_brand_np.3 projects/bmake/lib/libc/posix1e/acl_get_entry.3 projects/bmake/lib/libc/posix1e/acl_get_entry_type_np.3 projects/bmake/lib/libc/posix1e/acl_get_flag_np.3 projects/bmake/lib/libc/posix1e/acl_get_flagset_np.3 projects/bmake/lib/libc/posix1e/acl_get_perm_np.3 projects/bmake/lib/libc/posix1e/acl_get_permset.3 projects/bmake/lib/libc/posix1e/acl_get_qualifier.3 projects/bmake/lib/libc/posix1e/acl_get_tag_type.3 projects/bmake/lib/libc/posix1e/acl_is_trivial_np.3 projects/bmake/lib/libc/posix1e/acl_set_entry_type_np.3 projects/bmake/lib/libc/posix1e/acl_set_flagset_np.3 projects/bmake/lib/libc/posix1e/acl_set_permset.3 projects/bmake/lib/libc/posix1e/acl_set_qualifier.3 projects/bmake/lib/libc/posix1e/acl_set_tag_type.3 projects/bmake/lib/libc/posix1e/acl_strip_np.3 projects/bmake/lib/libc/regex/re_format.7 projects/bmake/lib/libc/regex/regcomp.c projects/bmake/lib/libc/stdio/fflush.c projects/bmake/lib/libc/stdio/fmemopen.c projects/bmake/lib/libc/stdio/fopen.3 projects/bmake/lib/libc/stdio/fputs.c projects/bmake/lib/libc/stdio/fputws.c projects/bmake/lib/libc/stdio/freopen.c projects/bmake/lib/libc/stdio/ftell.c projects/bmake/lib/libc/stdio/gets.c projects/bmake/lib/libc/stdio/printf.3 projects/bmake/lib/libc/stdio/puts.c projects/bmake/lib/libc/stdio/putw.c projects/bmake/lib/libc/stdio/rewind.c projects/bmake/lib/libc/stdio/vfprintf.c projects/bmake/lib/libc/stdio/vfwprintf.c projects/bmake/lib/libc/stdio/wbuf.c projects/bmake/lib/libc/stdlib/Makefile.inc projects/bmake/lib/libc/stdlib/Symbol.map projects/bmake/lib/libc/stdlib/a64l.3 projects/bmake/lib/libc/stdlib/getopt.3 projects/bmake/lib/libc/stdlib/getopt.c projects/bmake/lib/libc/stdlib/getopt_long.c projects/bmake/lib/libc/stdlib/hcreate.3 projects/bmake/lib/libc/stdlib/hcreate.c projects/bmake/lib/libc/stdlib/strfmon.3 projects/bmake/lib/libc/stdlib/strfmon.c projects/bmake/lib/libc/stdlib/tsearch.c projects/bmake/lib/libc/stdlib/twalk.c projects/bmake/lib/libc/stdtime/strftime.3 projects/bmake/lib/libc/stdtime/strftime.c projects/bmake/lib/libc/stdtime/strptime.c projects/bmake/lib/libc/stdtime/timelocal.c projects/bmake/lib/libc/string/Makefile.inc projects/bmake/lib/libc/string/memmem.3 projects/bmake/lib/libc/string/strcasecmp.3 projects/bmake/lib/libc/string/strerror.3 projects/bmake/lib/libc/string/strspn.3 projects/bmake/lib/libc/string/strtok.3 projects/bmake/lib/libc/sys/abort2.2 projects/bmake/lib/libc/sys/aio_cancel.2 projects/bmake/lib/libc/sys/aio_error.2 projects/bmake/lib/libc/sys/aio_mlock.2 projects/bmake/lib/libc/sys/aio_read.2 projects/bmake/lib/libc/sys/aio_return.2 projects/bmake/lib/libc/sys/aio_suspend.2 projects/bmake/lib/libc/sys/aio_waitcomplete.2 projects/bmake/lib/libc/sys/aio_write.2 projects/bmake/lib/libc/sys/bind.2 projects/bmake/lib/libc/sys/bindat.2 projects/bmake/lib/libc/sys/cap_fcntls_limit.2 projects/bmake/lib/libc/sys/cap_ioctls_limit.2 projects/bmake/lib/libc/sys/cap_rights_limit.2 projects/bmake/lib/libc/sys/connect.2 projects/bmake/lib/libc/sys/connectat.2 projects/bmake/lib/libc/sys/cpuset.2 projects/bmake/lib/libc/sys/cpuset_getaffinity.2 projects/bmake/lib/libc/sys/ffclock.2 projects/bmake/lib/libc/sys/intro.2 projects/bmake/lib/libc/sys/kenv.2 projects/bmake/lib/libc/sys/kqueue.2 projects/bmake/lib/libc/sys/kse.2 projects/bmake/lib/libc/sys/listen.2 projects/bmake/lib/libc/sys/mlock.2 projects/bmake/lib/libc/sys/mmap.2 projects/bmake/lib/libc/sys/mmap.c projects/bmake/lib/libc/sys/pdfork.2 projects/bmake/lib/libc/sys/posix_fallocate.2 projects/bmake/lib/libc/sys/posix_openpt.2 projects/bmake/lib/libc/sys/procctl.2 projects/bmake/lib/libc/sys/pselect.2 projects/bmake/lib/libc/sys/rtprio.2 projects/bmake/lib/libc/sys/sendfile.2 projects/bmake/lib/libc/sys/shm_open.2 projects/bmake/lib/libc/sys/shutdown.2 projects/bmake/lib/libc/sys/socket.2 projects/bmake/lib/libc/sys/utimes.2 projects/bmake/lib/libc/xdr/xdr_float.c projects/bmake/lib/libcalendar/calendar.3 projects/bmake/lib/libcam/cam.3 projects/bmake/lib/libcapsicum/libcapsicum.3 projects/bmake/lib/libcrypt/crypt.3 projects/bmake/lib/libcrypt/crypt.c projects/bmake/lib/libdevinfo/devinfo.3 projects/bmake/lib/libdevstat/devstat.3 projects/bmake/lib/libedit/Makefile projects/bmake/lib/libedit/Makefile.depend projects/bmake/lib/libedit/common.c projects/bmake/lib/libedit/editline.3 projects/bmake/lib/libedit/emacs.c projects/bmake/lib/libedit/filecomplete.h projects/bmake/lib/libedit/hist.h projects/bmake/lib/libedit/histedit.h projects/bmake/lib/libedit/history.c projects/bmake/lib/libedit/prompt.c projects/bmake/lib/libedit/prompt.h projects/bmake/lib/libedit/read.h projects/bmake/lib/libedit/sys.h projects/bmake/lib/libedit/term.h projects/bmake/lib/libedit/tty.c projects/bmake/lib/libefi/libefi.3 projects/bmake/lib/libexpat/libbsdxml.3 projects/bmake/lib/libfetch/Makefile.depend projects/bmake/lib/libfetch/common.c projects/bmake/lib/libfetch/common.h projects/bmake/lib/libfetch/fetch.3 projects/bmake/lib/libfetch/fetch.h projects/bmake/lib/libfetch/http.c projects/bmake/lib/libgeom/libgeom.3 projects/bmake/lib/libgssapi/Makefile.depend projects/bmake/lib/libgssapi/mech.5 projects/bmake/lib/libiconv_modules/HZ/citrus_hz.c projects/bmake/lib/libkvm/kvm_amd64.c projects/bmake/lib/libkvm/kvm_i386.c projects/bmake/lib/libldns/Makefile projects/bmake/lib/liblzma/Makefile.depend projects/bmake/lib/libmagic/Makefile projects/bmake/lib/libmagic/Makefile.depend projects/bmake/lib/libmagic/config.h projects/bmake/lib/libmd/Makefile.depend projects/bmake/lib/libmd/mdX.3 projects/bmake/lib/libmemstat/libmemstat.3 projects/bmake/lib/libmp/Makefile.depend projects/bmake/lib/libnetgraph/netgraph.3 projects/bmake/lib/libnv/nv.3 (contents, props changed) projects/bmake/lib/libpam/modules/pam_group/pam_group.8 projects/bmake/lib/libpam/modules/pam_group/pam_group.c projects/bmake/lib/libpam/modules/pam_lastlog/pam_lastlog.c projects/bmake/lib/libpam/modules/pam_passwdqc/pam_passwdqc.8 projects/bmake/lib/libpam/modules/pam_radius/pam_radius.8 projects/bmake/lib/libpam/modules/pam_ssh/pam_ssh.8 projects/bmake/lib/libpam/modules/pam_tacplus/pam_tacplus.8 projects/bmake/lib/libpmc/libpmc.c projects/bmake/lib/libpmc/pmc.3 projects/bmake/lib/libpmc/pmc.atom.3 projects/bmake/lib/libpmc/pmc.atomsilvermont.3 projects/bmake/lib/libpmc/pmc.core.3 projects/bmake/lib/libpmc/pmc.core2.3 projects/bmake/lib/libpmc/pmc.corei7.3 projects/bmake/lib/libpmc/pmc.corei7uc.3 projects/bmake/lib/libpmc/pmc.haswell.3 projects/bmake/lib/libpmc/pmc.haswelluc.3 projects/bmake/lib/libpmc/pmc.iaf.3 projects/bmake/lib/libpmc/pmc.ivybridge.3 projects/bmake/lib/libpmc/pmc.ivybridgexeon.3 projects/bmake/lib/libpmc/pmc.k7.3 projects/bmake/lib/libpmc/pmc.k8.3 projects/bmake/lib/libpmc/pmc.mips24k.3 projects/bmake/lib/libpmc/pmc.octeon.3 projects/bmake/lib/libpmc/pmc.p4.3 projects/bmake/lib/libpmc/pmc.p5.3 projects/bmake/lib/libpmc/pmc.p6.3 projects/bmake/lib/libpmc/pmc.sandybridge.3 projects/bmake/lib/libpmc/pmc.sandybridgeuc.3 projects/bmake/lib/libpmc/pmc.sandybridgexeon.3 projects/bmake/lib/libpmc/pmc.soft.3 projects/bmake/lib/libpmc/pmc.tsc.3 projects/bmake/lib/libpmc/pmc.ucf.3 projects/bmake/lib/libpmc/pmc.westmere.3 projects/bmake/lib/libpmc/pmc.westmereuc.3 projects/bmake/lib/libpmc/pmc.xscale.3 projects/bmake/lib/libproc/Makefile projects/bmake/lib/libproc/proc_sym.c projects/bmake/lib/libprocstat/Makefile.depend projects/bmake/lib/libprocstat/libprocstat.3 projects/bmake/lib/libprocstat/zfs/Makefile.depend projects/bmake/lib/librpcsec_gss/Makefile.depend projects/bmake/lib/librpcsec_gss/rpc_gss_get_error.3 projects/bmake/lib/librpcsec_gss/rpc_gss_get_mech_info.3 projects/bmake/lib/librpcsec_gss/rpc_gss_get_mechanisms.3 projects/bmake/lib/librpcsec_gss/rpc_gss_get_principal_name.3 projects/bmake/lib/librpcsec_gss/rpc_gss_get_versions.3 projects/bmake/lib/librpcsec_gss/rpc_gss_getcred.3 projects/bmake/lib/librpcsec_gss/rpc_gss_is_installed.3 projects/bmake/lib/librpcsec_gss/rpc_gss_max_data_length.3 projects/bmake/lib/librpcsec_gss/rpc_gss_mech_to_oid.3 projects/bmake/lib/librpcsec_gss/rpc_gss_oid_to_mech.3 projects/bmake/lib/librpcsec_gss/rpc_gss_qop_to_num.3 projects/bmake/lib/librpcsec_gss/rpc_gss_seccreate.3 projects/bmake/lib/librpcsec_gss/rpc_gss_set_callback.3 projects/bmake/lib/librpcsec_gss/rpc_gss_set_defaults.3 projects/bmake/lib/librpcsec_gss/rpc_gss_set_svc_name.3 projects/bmake/lib/librpcsec_gss/rpc_gss_svc_max_data_length.3 projects/bmake/lib/librpcsec_gss/rpcsec_gss.3 projects/bmake/lib/librtld_db/librtld_db.3 projects/bmake/lib/libsbuf/Makefile.depend projects/bmake/lib/libsdp/sdp.3 projects/bmake/lib/libstand/Makefile projects/bmake/lib/libstand/Makefile.depend projects/bmake/lib/libstand/libstand.3 projects/bmake/lib/libstand/printf.c projects/bmake/lib/libstand/qdivrem.c projects/bmake/lib/libstand/quad.h projects/bmake/lib/libstand/stand.h projects/bmake/lib/libstdthreads/Makefile.depend projects/bmake/lib/libstdthreads/thrd_create.3 projects/bmake/lib/libtelnet/Makefile projects/bmake/lib/libthr/Makefile.depend projects/bmake/lib/libthr/libthr.3 projects/bmake/lib/libthr/thread/thr_fork.c projects/bmake/lib/libthr/thread/thr_rtld.c projects/bmake/lib/libthread_db/Makefile.depend projects/bmake/lib/libucl/Makefile (contents, props changed) projects/bmake/lib/libufs/bread.3 projects/bmake/lib/libufs/cgread.3 projects/bmake/lib/libufs/libufs.3 projects/bmake/lib/libufs/sbread.3 projects/bmake/lib/libufs/ufs_disk_close.3 projects/bmake/lib/libulog/Makefile.depend projects/bmake/lib/libunbound/Makefile projects/bmake/lib/libunbound/Makefile.depend projects/bmake/lib/libusb/libusb-1.0.pc projects/bmake/lib/libusb/libusb.h projects/bmake/lib/libutil/flopen.3 projects/bmake/lib/libutil/fparseln.3 projects/bmake/lib/libutil/fparseln.c projects/bmake/lib/libutil/kld.3 projects/bmake/lib/libutil/login_class.3 projects/bmake/lib/libutil/pidfile.3 projects/bmake/lib/libutil/pw_util.3 projects/bmake/lib/libutil/quotafile.3 projects/bmake/lib/libvgl/vgl.3 projects/bmake/lib/libvmmapi/vmmapi.c projects/bmake/lib/libvmmapi/vmmapi.h projects/bmake/lib/libz/Makefile projects/bmake/lib/libz/Makefile.depend projects/bmake/lib/msun/Makefile projects/bmake/lib/msun/Makefile.depend projects/bmake/lib/msun/Symbol.map projects/bmake/lib/msun/man/erf.3 projects/bmake/lib/msun/sparc64/fenv.h projects/bmake/lib/msun/src/e_pow.c projects/bmake/lib/msun/src/imprecise.c projects/bmake/lib/msun/src/math.h projects/bmake/lib/msun/src/s_erf.c projects/bmake/lib/msun/src/s_erff.c projects/bmake/lib/ncurses/Makefile projects/bmake/lib/ncurses/form/Makefile.depend projects/bmake/lib/ncurses/formw/Makefile.depend projects/bmake/lib/ncurses/menu/Makefile.depend projects/bmake/lib/ncurses/menuw/Makefile.depend projects/bmake/lib/ncurses/ncurses/Makefile projects/bmake/lib/ncurses/ncurses/Makefile.depend projects/bmake/lib/ncurses/ncursesw/Makefile.depend projects/bmake/lib/ncurses/panel/Makefile.depend projects/bmake/lib/ncurses/panelw/Makefile.depend projects/bmake/libexec/atf/Makefile projects/bmake/libexec/atf/Makefile.inc projects/bmake/libexec/atf/atf-check/Makefile projects/bmake/libexec/bootpd/bootpd.8 projects/bmake/libexec/bootpd/tools/bootptest/bootptest.8 projects/bmake/libexec/mail.local/Makefile projects/bmake/libexec/mknetid/mknetid.8 projects/bmake/libexec/mknetid/netid.5 projects/bmake/libexec/pppoed/pppoed.8 projects/bmake/libexec/revnetgroup/revnetgroup.8 projects/bmake/libexec/rtld-elf/Makefile projects/bmake/libexec/rtld-elf/Makefile.depend projects/bmake/libexec/rtld-elf/arm/rtld_start.S projects/bmake/libexec/rtld-elf/libmap.c projects/bmake/libexec/rtld-elf/rtld.1 projects/bmake/libexec/rtld-elf/rtld.c projects/bmake/libexec/rtld-elf/rtld_lock.c projects/bmake/libexec/rtld-elf/rtld_printf.c projects/bmake/libexec/rtld-elf/rtld_printf.h projects/bmake/libexec/save-entropy/save-entropy.sh projects/bmake/libexec/smrsh/Makefile projects/bmake/libexec/telnetd/Makefile projects/bmake/libexec/telnetd/Makefile.depend projects/bmake/libexec/ypxfr/ypxfr.8 projects/bmake/pkgs/pseudo/lib/Makefile.depend projects/bmake/pkgs/pseudo/libexec/Makefile.depend projects/bmake/pkgs/pseudo/the-lot/Makefile.depend projects/bmake/pkgs/pseudo/usr.bin/Makefile.depend projects/bmake/pkgs/pseudo/usr.sbin/Makefile.depend projects/bmake/release/Makefile projects/bmake/release/amd64/mkisoimages.sh projects/bmake/release/arm/release.sh projects/bmake/release/doc/README projects/bmake/release/doc/en_US.ISO8859-1/hardware/article.xml projects/bmake/release/doc/en_US.ISO8859-1/readme/article.xml projects/bmake/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/bmake/release/doc/share/examples/Makefile.relnotesng projects/bmake/release/doc/share/misc/dev.archlist.txt projects/bmake/release/doc/share/xml/release.ent projects/bmake/release/doc/share/xml/sponsor.ent projects/bmake/release/picobsd/bridge/crunch.conf projects/bmake/release/picobsd/build/picobsd projects/bmake/release/picobsd/floppy.tree/etc/ttys projects/bmake/release/picobsd/mfs_tree/etc/gettytab projects/bmake/release/picobsd/qemu/crunch.conf projects/bmake/release/scripts/FreeBSD_install_cdrom.conf projects/bmake/release/scripts/mm-mtree.sh projects/bmake/release/scripts/pkg-stage.sh projects/bmake/rescue/rescue/Makefile projects/bmake/sbin/adjkerntz/adjkerntz.8 projects/bmake/sbin/atm/atmconfig/Makefile.depend projects/bmake/sbin/atm/atmconfig/atmconfig.8 projects/bmake/sbin/bsdlabel/bsdlabel.8 projects/bmake/sbin/bsdlabel/bsdlabel.c projects/bmake/sbin/camcontrol/Makefile projects/bmake/sbin/camcontrol/camcontrol.8 projects/bmake/sbin/camcontrol/camcontrol.c projects/bmake/sbin/camcontrol/camcontrol.h projects/bmake/sbin/casperd/casperd.8 projects/bmake/sbin/dhclient/bpf.c projects/bmake/sbin/dhclient/dhclient-script.8 projects/bmake/sbin/dhclient/dhclient.8 projects/bmake/sbin/dhclient/dhclient.c projects/bmake/sbin/dhclient/dhclient.conf.5 projects/bmake/sbin/dhclient/dhclient.leases.5 projects/bmake/sbin/dhclient/dhcp-options.5 projects/bmake/sbin/etherswitchcfg/etherswitchcfg.c projects/bmake/sbin/fdisk/fdisk.c projects/bmake/sbin/ffsinfo/ffsinfo.8 projects/bmake/sbin/fsck/Makefile projects/bmake/sbin/fsck/fsck.8 projects/bmake/sbin/fsck_msdosfs/check.c projects/bmake/sbin/fsck_msdosfs/dir.c projects/bmake/sbin/fsck_msdosfs/ext.h projects/bmake/sbin/fsck_msdosfs/fat.c projects/bmake/sbin/fsdb/Makefile projects/bmake/sbin/fsdb/Makefile.depend projects/bmake/sbin/fsirand/fsirand.8 projects/bmake/sbin/gbde/gbde.8 projects/bmake/sbin/geom/class/cache/gcache.8 projects/bmake/sbin/geom/class/concat/gconcat.8 projects/bmake/sbin/geom/class/eli/geli.8 projects/bmake/sbin/geom/class/journal/gjournal.8 projects/bmake/sbin/geom/class/label/glabel.8 projects/bmake/sbin/geom/class/mirror/gmirror.8 projects/bmake/sbin/geom/class/mountver/gmountver.8 projects/bmake/sbin/geom/class/multipath/gmultipath.8 projects/bmake/sbin/geom/class/nop/gnop.8 projects/bmake/sbin/geom/class/part/gpart.8 projects/bmake/sbin/geom/class/raid/graid.8 projects/bmake/sbin/geom/class/raid3/graid3.8 projects/bmake/sbin/geom/class/sched/gsched.8 projects/bmake/sbin/geom/class/shsec/gshsec.8 projects/bmake/sbin/geom/class/stripe/geom_stripe.c projects/bmake/sbin/geom/class/stripe/gstripe.8 projects/bmake/sbin/geom/class/virstor/gvirstor.8 projects/bmake/sbin/geom/core/geom.8 projects/bmake/sbin/ggate/ggatec/ggatec.8 projects/bmake/sbin/ggate/ggated/ggated.8 projects/bmake/sbin/ggate/ggatel/ggatel.8 projects/bmake/sbin/growfs/growfs.8 projects/bmake/sbin/gvinum/Makefile projects/bmake/sbin/gvinum/Makefile.depend projects/bmake/sbin/gvinum/gvinum.8 projects/bmake/sbin/hastctl/hastctl.8 projects/bmake/sbin/hastd/hast.conf.5 projects/bmake/sbin/hastd/hastd.8 projects/bmake/sbin/ifconfig/af_inet6.c projects/bmake/sbin/ifconfig/ifconfig.8 projects/bmake/sbin/ipf/ipf/Makefile projects/bmake/sbin/ipf/ipfstat/Makefile projects/bmake/sbin/ipf/ipftest/Makefile projects/bmake/sbin/ipf/ipmon/Makefile projects/bmake/sbin/ipf/ipnat/Makefile projects/bmake/sbin/ipf/ippool/Makefile projects/bmake/sbin/ipf/ipresend/Makefile projects/bmake/sbin/ipfw/dummynet.c projects/bmake/sbin/ipfw/ipfw.8 projects/bmake/sbin/ipfw/ipfw2.c projects/bmake/sbin/ipfw/ipfw2.h projects/bmake/sbin/kldconfig/kldconfig.8 projects/bmake/sbin/kldload/kldload.8 projects/bmake/sbin/kldstat/kldstat.8 projects/bmake/sbin/kldunload/kldunload.8 projects/bmake/sbin/md5/md5.1 projects/bmake/sbin/mdconfig/mdconfig.8 projects/bmake/sbin/mount/mount.conf.8 projects/bmake/sbin/mount_cd9660/mount_cd9660.8 projects/bmake/sbin/mount_fusefs/mount_fusefs.8 projects/bmake/sbin/mount_msdosfs/mount_msdosfs.8 projects/bmake/sbin/mount_unionfs/mount_unionfs.8 projects/bmake/sbin/natd/natd.8 projects/bmake/sbin/newfs_msdos/newfs_msdos.8 projects/bmake/sbin/newfs_nandfs/newfs_nandfs.8 projects/bmake/sbin/nos-tun/nos-tun.8 projects/bmake/sbin/nvmecontrol/nvmecontrol.8 projects/bmake/sbin/pfctl/pfctl.8 projects/bmake/sbin/ping6/ping6.c projects/bmake/sbin/rcorder/Makefile projects/bmake/sbin/rcorder/rcorder.8 projects/bmake/sbin/reboot/boot_i386.8 projects/bmake/sbin/reboot/nextboot.8 projects/bmake/sbin/recoverdisk/recoverdisk.1 projects/bmake/sbin/sconfig/sconfig.8 projects/bmake/sbin/setkey/setkey.8 projects/bmake/sbin/sysctl/sysctl.c projects/bmake/secure/lib/libcrypt/crypt-blowfish.c projects/bmake/secure/lib/libcrypto/Makefile.inc projects/bmake/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 projects/bmake/secure/lib/libcrypto/man/ASN1_STRING_length.3 projects/bmake/secure/lib/libcrypto/man/ASN1_STRING_new.3 projects/bmake/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 projects/bmake/secure/lib/libcrypto/man/ASN1_generate_nconf.3 projects/bmake/secure/lib/libcrypto/man/BIO_ctrl.3 projects/bmake/secure/lib/libcrypto/man/BIO_f_base64.3 projects/bmake/secure/lib/libcrypto/man/BIO_f_buffer.3 projects/bmake/secure/lib/libcrypto/man/BIO_f_cipher.3 projects/bmake/secure/lib/libcrypto/man/BIO_f_md.3 projects/bmake/secure/lib/libcrypto/man/BIO_f_null.3 projects/bmake/secure/lib/libcrypto/man/BIO_f_ssl.3 projects/bmake/secure/lib/libcrypto/man/BIO_find_type.3 projects/bmake/secure/lib/libcrypto/man/BIO_new.3 projects/bmake/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/bmake/secure/lib/libcrypto/man/BIO_push.3 projects/bmake/secure/lib/libcrypto/man/BIO_read.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_accept.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_bio.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_connect.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_fd.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_file.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_mem.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_null.3 projects/bmake/secure/lib/libcrypto/man/BIO_s_socket.3 projects/bmake/secure/lib/libcrypto/man/BIO_set_callback.3 projects/bmake/secure/lib/libcrypto/man/BIO_should_retry.3 projects/bmake/secure/lib/libcrypto/man/BN_BLINDING_new.3 projects/bmake/secure/lib/libcrypto/man/BN_CTX_new.3 projects/bmake/secure/lib/libcrypto/man/BN_CTX_start.3 projects/bmake/secure/lib/libcrypto/man/BN_add.3 projects/bmake/secure/lib/libcrypto/man/BN_add_word.3 projects/bmake/secure/lib/libcrypto/man/BN_bn2bin.3 projects/bmake/secure/lib/libcrypto/man/BN_cmp.3 projects/bmake/secure/lib/libcrypto/man/BN_copy.3 projects/bmake/secure/lib/libcrypto/man/BN_generate_prime.3 projects/bmake/secure/lib/libcrypto/man/BN_mod_inverse.3 projects/bmake/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 projects/bmake/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 projects/bmake/secure/lib/libcrypto/man/BN_new.3 projects/bmake/secure/lib/libcrypto/man/BN_num_bytes.3 projects/bmake/secure/lib/libcrypto/man/BN_rand.3 projects/bmake/secure/lib/libcrypto/man/BN_set_bit.3 projects/bmake/secure/lib/libcrypto/man/BN_swap.3 projects/bmake/secure/lib/libcrypto/man/BN_zero.3 projects/bmake/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/bmake/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/bmake/secure/lib/libcrypto/man/CMS_compress.3 projects/bmake/secure/lib/libcrypto/man/CMS_decrypt.3 projects/bmake/secure/lib/libcrypto/man/CMS_encrypt.3 projects/bmake/secure/lib/libcrypto/man/CMS_final.3 projects/bmake/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/bmake/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/bmake/secure/lib/libcrypto/man/CMS_get0_type.3 projects/bmake/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/bmake/secure/lib/libcrypto/man/CMS_sign.3 projects/bmake/secure/lib/libcrypto/man/CMS_sign_add1_signer.3 projects/bmake/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/bmake/secure/lib/libcrypto/man/CMS_uncompress.3 projects/bmake/secure/lib/libcrypto/man/CMS_verify.3 projects/bmake/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/bmake/secure/lib/libcrypto/man/CONF_modules_free.3 projects/bmake/secure/lib/libcrypto/man/CONF_modules_load_file.3 projects/bmake/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 projects/bmake/secure/lib/libcrypto/man/DH_generate_key.3 projects/bmake/secure/lib/libcrypto/man/DH_generate_parameters.3 projects/bmake/secure/lib/libcrypto/man/DH_get_ex_new_index.3 projects/bmake/secure/lib/libcrypto/man/DH_new.3 projects/bmake/secure/lib/libcrypto/man/DH_set_method.3 projects/bmake/secure/lib/libcrypto/man/DH_size.3 projects/bmake/secure/lib/libcrypto/man/DSA_SIG_new.3 projects/bmake/secure/lib/libcrypto/man/DSA_do_sign.3 projects/bmake/secure/lib/libcrypto/man/DSA_dup_DH.3 projects/bmake/secure/lib/libcrypto/man/DSA_generate_key.3 projects/bmake/secure/lib/libcrypto/man/DSA_generate_parameters.3 projects/bmake/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 projects/bmake/secure/lib/libcrypto/man/DSA_new.3 projects/bmake/secure/lib/libcrypto/man/DSA_set_method.3 projects/bmake/secure/lib/libcrypto/man/DSA_sign.3 projects/bmake/secure/lib/libcrypto/man/DSA_size.3 projects/bmake/secure/lib/libcrypto/man/ERR_GET_LIB.3 projects/bmake/secure/lib/libcrypto/man/ERR_clear_error.3 projects/bmake/secure/lib/libcrypto/man/ERR_error_string.3 projects/bmake/secure/lib/libcrypto/man/ERR_get_error.3 projects/bmake/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 projects/bmake/secure/lib/libcrypto/man/ERR_load_strings.3 projects/bmake/secure/lib/libcrypto/man/ERR_print_errors.3 projects/bmake/secure/lib/libcrypto/man/ERR_put_error.3 projects/bmake/secure/lib/libcrypto/man/ERR_remove_state.3 projects/bmake/secure/lib/libcrypto/man/ERR_set_mark.3 projects/bmake/secure/lib/libcrypto/man/EVP_BytesToKey.3 projects/bmake/secure/lib/libcrypto/man/EVP_DigestInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_EncryptInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_OpenInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_new.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/bmake/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 projects/bmake/secure/lib/libcrypto/man/EVP_SealInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_SignInit.3 projects/bmake/secure/lib/libcrypto/man/EVP_VerifyInit.3 projects/bmake/secure/lib/libcrypto/man/OBJ_nid2obj.3 projects/bmake/secure/lib/libcrypto/man/OPENSSL_Applink.3 projects/bmake/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 projects/bmake/secure/lib/libcrypto/man/OPENSSL_config.3 projects/bmake/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 projects/bmake/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 projects/bmake/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 projects/bmake/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/bmake/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/bmake/secure/lib/libcrypto/man/PKCS12_create.3 projects/bmake/secure/lib/libcrypto/man/PKCS12_parse.3 projects/bmake/secure/lib/libcrypto/man/PKCS7_decrypt.3 projects/bmake/secure/lib/libcrypto/man/PKCS7_encrypt.3 projects/bmake/secure/lib/libcrypto/man/PKCS7_sign.3 projects/bmake/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/bmake/secure/lib/libcrypto/man/PKCS7_verify.3 projects/bmake/secure/lib/libcrypto/man/RAND_add.3 projects/bmake/secure/lib/libcrypto/man/RAND_bytes.3 projects/bmake/secure/lib/libcrypto/man/RAND_cleanup.3 projects/bmake/secure/lib/libcrypto/man/RAND_egd.3 projects/bmake/secure/lib/libcrypto/man/RAND_load_file.3 projects/bmake/secure/lib/libcrypto/man/RAND_set_rand_method.3 projects/bmake/secure/lib/libcrypto/man/RSA_blinding_on.3 projects/bmake/secure/lib/libcrypto/man/RSA_check_key.3 projects/bmake/secure/lib/libcrypto/man/RSA_generate_key.3 projects/bmake/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 projects/bmake/secure/lib/libcrypto/man/RSA_new.3 projects/bmake/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 projects/bmake/secure/lib/libcrypto/man/RSA_print.3 projects/bmake/secure/lib/libcrypto/man/RSA_private_encrypt.3 projects/bmake/secure/lib/libcrypto/man/RSA_public_encrypt.3 projects/bmake/secure/lib/libcrypto/man/RSA_set_method.3 projects/bmake/secure/lib/libcrypto/man/RSA_sign.3 projects/bmake/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 projects/bmake/secure/lib/libcrypto/man/RSA_size.3 projects/bmake/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/bmake/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 projects/bmake/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/bmake/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 projects/bmake/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 projects/bmake/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 projects/bmake/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 projects/bmake/secure/lib/libcrypto/man/X509_NAME_print_ex.3 projects/bmake/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/bmake/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/bmake/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/bmake/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/bmake/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/bmake/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/bmake/secure/lib/libcrypto/man/X509_new.3 projects/bmake/secure/lib/libcrypto/man/X509_verify_cert.3 projects/bmake/secure/lib/libcrypto/man/bio.3 projects/bmake/secure/lib/libcrypto/man/blowfish.3 projects/bmake/secure/lib/libcrypto/man/bn.3 projects/bmake/secure/lib/libcrypto/man/bn_internal.3 projects/bmake/secure/lib/libcrypto/man/buffer.3 projects/bmake/secure/lib/libcrypto/man/crypto.3 projects/bmake/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 projects/bmake/secure/lib/libcrypto/man/d2i_DHparams.3 projects/bmake/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 projects/bmake/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 projects/bmake/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 projects/bmake/secure/lib/libcrypto/man/d2i_X509.3 projects/bmake/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 projects/bmake/secure/lib/libcrypto/man/d2i_X509_CRL.3 projects/bmake/secure/lib/libcrypto/man/d2i_X509_NAME.3 projects/bmake/secure/lib/libcrypto/man/d2i_X509_REQ.3 projects/bmake/secure/lib/libcrypto/man/d2i_X509_SIG.3 projects/bmake/secure/lib/libcrypto/man/des.3 projects/bmake/secure/lib/libcrypto/man/dh.3 projects/bmake/secure/lib/libcrypto/man/dsa.3 projects/bmake/secure/lib/libcrypto/man/ecdsa.3 projects/bmake/secure/lib/libcrypto/man/engine.3 projects/bmake/secure/lib/libcrypto/man/err.3 projects/bmake/secure/lib/libcrypto/man/evp.3 projects/bmake/secure/lib/libcrypto/man/hmac.3 projects/bmake/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/bmake/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/bmake/secure/lib/libcrypto/man/lh_stats.3 projects/bmake/secure/lib/libcrypto/man/lhash.3 projects/bmake/secure/lib/libcrypto/man/md5.3 projects/bmake/secure/lib/libcrypto/man/mdc2.3 projects/bmake/secure/lib/libcrypto/man/pem.3 projects/bmake/secure/lib/libcrypto/man/rand.3 projects/bmake/secure/lib/libcrypto/man/rc4.3 projects/bmake/secure/lib/libcrypto/man/ripemd.3 projects/bmake/secure/lib/libcrypto/man/rsa.3 projects/bmake/secure/lib/libcrypto/man/sha.3 projects/bmake/secure/lib/libcrypto/man/threads.3 projects/bmake/secure/lib/libcrypto/man/ui.3 projects/bmake/secure/lib/libcrypto/man/ui_compat.3 projects/bmake/secure/lib/libcrypto/man/x509.3 projects/bmake/secure/lib/libssl/man/SSL_CIPHER_get_name.3 projects/bmake/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_add_session.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_ctrl.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_free.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_new.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_sess_number.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_sessions.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_mode.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_options.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_timeout.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_set_verify.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_use_certificate.3 projects/bmake/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 projects/bmake/secure/lib/libssl/man/SSL_SESSION_free.3 projects/bmake/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 projects/bmake/secure/lib/libssl/man/SSL_SESSION_get_time.3 projects/bmake/secure/lib/libssl/man/SSL_accept.3 projects/bmake/secure/lib/libssl/man/SSL_alert_type_string.3 projects/bmake/secure/lib/libssl/man/SSL_clear.3 projects/bmake/secure/lib/libssl/man/SSL_connect.3 projects/bmake/secure/lib/libssl/man/SSL_do_handshake.3 projects/bmake/secure/lib/libssl/man/SSL_free.3 projects/bmake/secure/lib/libssl/man/SSL_get_SSL_CTX.3 projects/bmake/secure/lib/libssl/man/SSL_get_ciphers.3 projects/bmake/secure/lib/libssl/man/SSL_get_client_CA_list.3 projects/bmake/secure/lib/libssl/man/SSL_get_current_cipher.3 projects/bmake/secure/lib/libssl/man/SSL_get_default_timeout.3 projects/bmake/secure/lib/libssl/man/SSL_get_error.3 projects/bmake/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 projects/bmake/secure/lib/libssl/man/SSL_get_ex_new_index.3 projects/bmake/secure/lib/libssl/man/SSL_get_fd.3 projects/bmake/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 projects/bmake/secure/lib/libssl/man/SSL_get_peer_certificate.3 projects/bmake/secure/lib/libssl/man/SSL_get_psk_identity.3 projects/bmake/secure/lib/libssl/man/SSL_get_rbio.3 projects/bmake/secure/lib/libssl/man/SSL_get_session.3 projects/bmake/secure/lib/libssl/man/SSL_get_verify_result.3 projects/bmake/secure/lib/libssl/man/SSL_get_version.3 projects/bmake/secure/lib/libssl/man/SSL_library_init.3 projects/bmake/secure/lib/libssl/man/SSL_load_client_CA_file.3 projects/bmake/secure/lib/libssl/man/SSL_new.3 projects/bmake/secure/lib/libssl/man/SSL_pending.3 projects/bmake/secure/lib/libssl/man/SSL_read.3 projects/bmake/secure/lib/libssl/man/SSL_rstate_string.3 projects/bmake/secure/lib/libssl/man/SSL_session_reused.3 projects/bmake/secure/lib/libssl/man/SSL_set_bio.3 projects/bmake/secure/lib/libssl/man/SSL_set_connect_state.3 projects/bmake/secure/lib/libssl/man/SSL_set_fd.3 projects/bmake/secure/lib/libssl/man/SSL_set_session.3 projects/bmake/secure/lib/libssl/man/SSL_set_shutdown.3 projects/bmake/secure/lib/libssl/man/SSL_set_verify_result.3 projects/bmake/secure/lib/libssl/man/SSL_shutdown.3 projects/bmake/secure/lib/libssl/man/SSL_state_string.3 projects/bmake/secure/lib/libssl/man/SSL_want.3 projects/bmake/secure/lib/libssl/man/SSL_write.3 projects/bmake/secure/lib/libssl/man/d2i_SSL_SESSION.3 projects/bmake/secure/lib/libssl/man/ssl.3 projects/bmake/secure/libexec/sftp-server/Makefile.depend projects/bmake/secure/libexec/ssh-keysign/Makefile.depend projects/bmake/secure/libexec/ssh-pkcs11-helper/Makefile.depend projects/bmake/secure/usr.bin/openssl/man/CA.pl.1 projects/bmake/secure/usr.bin/openssl/man/asn1parse.1 projects/bmake/secure/usr.bin/openssl/man/ca.1 projects/bmake/secure/usr.bin/openssl/man/ciphers.1 projects/bmake/secure/usr.bin/openssl/man/cms.1 projects/bmake/secure/usr.bin/openssl/man/crl.1 projects/bmake/secure/usr.bin/openssl/man/crl2pkcs7.1 projects/bmake/secure/usr.bin/openssl/man/dgst.1 projects/bmake/secure/usr.bin/openssl/man/dhparam.1 projects/bmake/secure/usr.bin/openssl/man/dsa.1 projects/bmake/secure/usr.bin/openssl/man/dsaparam.1 projects/bmake/secure/usr.bin/openssl/man/ec.1 projects/bmake/secure/usr.bin/openssl/man/ecparam.1 projects/bmake/secure/usr.bin/openssl/man/enc.1 projects/bmake/secure/usr.bin/openssl/man/errstr.1 projects/bmake/secure/usr.bin/openssl/man/gendsa.1 projects/bmake/secure/usr.bin/openssl/man/genpkey.1 projects/bmake/secure/usr.bin/openssl/man/genrsa.1 projects/bmake/secure/usr.bin/openssl/man/nseq.1 projects/bmake/secure/usr.bin/openssl/man/ocsp.1 projects/bmake/secure/usr.bin/openssl/man/openssl.1 projects/bmake/secure/usr.bin/openssl/man/passwd.1 projects/bmake/secure/usr.bin/openssl/man/pkcs12.1 projects/bmake/secure/usr.bin/openssl/man/pkcs7.1 projects/bmake/secure/usr.bin/openssl/man/pkcs8.1 projects/bmake/secure/usr.bin/openssl/man/pkey.1 projects/bmake/secure/usr.bin/openssl/man/pkeyparam.1 projects/bmake/secure/usr.bin/openssl/man/pkeyutl.1 projects/bmake/secure/usr.bin/openssl/man/rand.1 projects/bmake/secure/usr.bin/openssl/man/req.1 projects/bmake/secure/usr.bin/openssl/man/rsa.1 projects/bmake/secure/usr.bin/openssl/man/rsautl.1 projects/bmake/secure/usr.bin/openssl/man/s_client.1 projects/bmake/secure/usr.bin/openssl/man/s_server.1 projects/bmake/secure/usr.bin/openssl/man/s_time.1 projects/bmake/secure/usr.bin/openssl/man/sess_id.1 projects/bmake/secure/usr.bin/openssl/man/smime.1 projects/bmake/secure/usr.bin/openssl/man/speed.1 projects/bmake/secure/usr.bin/openssl/man/spkac.1 projects/bmake/secure/usr.bin/openssl/man/ts.1 projects/bmake/secure/usr.bin/openssl/man/tsget.1 projects/bmake/secure/usr.bin/openssl/man/verify.1 projects/bmake/secure/usr.bin/openssl/man/version.1 projects/bmake/secure/usr.bin/openssl/man/x509.1 projects/bmake/secure/usr.bin/openssl/man/x509v3_config.1 projects/bmake/secure/usr.bin/scp/Makefile.depend projects/bmake/secure/usr.bin/sftp/Makefile projects/bmake/secure/usr.bin/sftp/Makefile.depend projects/bmake/secure/usr.bin/ssh-add/Makefile.depend projects/bmake/secure/usr.bin/ssh-agent/Makefile.depend projects/bmake/secure/usr.bin/ssh-keygen/Makefile.depend projects/bmake/secure/usr.bin/ssh-keyscan/Makefile.depend projects/bmake/secure/usr.bin/ssh/Makefile.depend projects/bmake/secure/usr.sbin/sshd/Makefile.depend projects/bmake/share/Makefile projects/bmake/share/dict/freebsd projects/bmake/share/dtrace/hotopen projects/bmake/share/dtrace/nfsattrstats projects/bmake/share/dtrace/nfsclienttime projects/bmake/share/examples/Makefile projects/bmake/share/examples/bhyve/vmrun.sh projects/bmake/share/examples/etc/make.conf projects/bmake/share/examples/mdoc/example.1 projects/bmake/share/examples/mdoc/example.3 projects/bmake/share/examples/mdoc/example.4 projects/bmake/share/examples/mdoc/example.9 projects/bmake/share/examples/scsi_target/scsi_target.8 projects/bmake/share/i18n/csmapper/BIG5/Makefile.depend projects/bmake/share/i18n/csmapper/CNS/Makefile.depend projects/bmake/share/i18n/csmapper/CP/Makefile.depend projects/bmake/share/i18n/csmapper/GB/Makefile.depend projects/bmake/share/i18n/csmapper/JIS/Makefile.depend projects/bmake/share/i18n/csmapper/KAZAKH/Makefile.depend projects/bmake/share/i18n/csmapper/KOI/Makefile.depend projects/bmake/share/i18n/csmapper/KS/Makefile.depend projects/bmake/share/i18n/csmapper/MISC/Makefile.depend projects/bmake/share/i18n/csmapper/Makefile.depend projects/bmake/share/i18n/csmapper/TCVN/Makefile.depend projects/bmake/share/i18n/esdb/Makefile.depend projects/bmake/share/man/man1/builtin.1 projects/bmake/share/man/man3/ATOMIC_VAR_INIT.3 projects/bmake/share/man/man3/Makefile projects/bmake/share/man/man3/pthread_affinity_np.3 projects/bmake/share/man/man3/pthread_atfork.3 projects/bmake/share/man/man3/pthread_attr_affinity_np.3 projects/bmake/share/man/man3/pthread_attr_get_np.3 projects/bmake/share/man/man3/pthread_attr_setcreatesuspend_np.3 projects/bmake/share/man/man3/pthread_cancel.3 projects/bmake/share/man/man3/pthread_getcpuclockid.3 projects/bmake/share/man/man3/pthread_getthreadid_np.3 projects/bmake/share/man/man3/pthread_main_np.3 projects/bmake/share/man/man3/pthread_multi_np.3 projects/bmake/share/man/man3/pthread_resume_all_np.3 projects/bmake/share/man/man3/pthread_resume_np.3 projects/bmake/share/man/man3/pthread_set_name_np.3 projects/bmake/share/man/man3/pthread_suspend_all_np.3 projects/bmake/share/man/man3/pthread_suspend_np.3 projects/bmake/share/man/man3/pthread_switch_add_np.3 projects/bmake/share/man/man3/pthread_testcancel.3 projects/bmake/share/man/man3/siginfo.3 projects/bmake/share/man/man4/Makefile projects/bmake/share/man/man4/aac.4 projects/bmake/share/man/man4/aacraid.4 projects/bmake/share/man/man4/acpi.4 projects/bmake/share/man/man4/acpi_asus.4 projects/bmake/share/man/man4/acpi_asus_wmi.4 projects/bmake/share/man/man4/acpi_dock.4 projects/bmake/share/man/man4/acpi_fujitsu.4 projects/bmake/share/man/man4/acpi_hp.4 projects/bmake/share/man/man4/acpi_ibm.4 projects/bmake/share/man/man4/acpi_panasonic.4 projects/bmake/share/man/man4/acpi_rapidstart.4 projects/bmake/share/man/man4/acpi_sony.4 projects/bmake/share/man/man4/acpi_toshiba.4 projects/bmake/share/man/man4/acpi_video.4 projects/bmake/share/man/man4/acpi_wmi.4 projects/bmake/share/man/man4/ada.4 projects/bmake/share/man/man4/ae.4 projects/bmake/share/man/man4/aesni.4 projects/bmake/share/man/man4/age.4 projects/bmake/share/man/man4/ahci.4 projects/bmake/share/man/man4/aibs.4 projects/bmake/share/man/man4/alc.4 projects/bmake/share/man/man4/ale.4 projects/bmake/share/man/man4/alpm.4 projects/bmake/share/man/man4/amdpm.4 projects/bmake/share/man/man4/amdsbwd.4 projects/bmake/share/man/man4/amdsmb.4 projects/bmake/share/man/man4/amdtemp.4 projects/bmake/share/man/man4/amr.4 projects/bmake/share/man/man4/an.4 projects/bmake/share/man/man4/aout.4 projects/bmake/share/man/man4/arcmsr.4 projects/bmake/share/man/man4/asmc.4 projects/bmake/share/man/man4/asr.4 projects/bmake/share/man/man4/ata.4 projects/bmake/share/man/man4/atkbd.4 projects/bmake/share/man/man4/atkbdc.4 projects/bmake/share/man/man4/atp.4 projects/bmake/share/man/man4/attimer.4 projects/bmake/share/man/man4/audit.4 projects/bmake/share/man/man4/auditpipe.4 projects/bmake/share/man/man4/aue.4 projects/bmake/share/man/man4/axe.4 projects/bmake/share/man/man4/axge.4 projects/bmake/share/man/man4/bce.4 projects/bmake/share/man/man4/bge.4 projects/bmake/share/man/man4/bhyve.4 (contents, props changed) projects/bmake/share/man/man4/bktr.4 projects/bmake/share/man/man4/bridge.4 projects/bmake/share/man/man4/bwn.4 projects/bmake/share/man/man4/bxe.4 projects/bmake/share/man/man4/capsicum.4 projects/bmake/share/man/man4/carp.4 projects/bmake/share/man/man4/cas.4 projects/bmake/share/man/man4/cc_cdg.4 projects/bmake/share/man/man4/cc_chd.4 projects/bmake/share/man/man4/cc_cubic.4 projects/bmake/share/man/man4/cc_hd.4 projects/bmake/share/man/man4/cc_htcp.4 projects/bmake/share/man/man4/cc_newreno.4 projects/bmake/share/man/man4/cc_vegas.4 projects/bmake/share/man/man4/cdce.4 projects/bmake/share/man/man4/ch.4 projects/bmake/share/man/man4/ciss.4 projects/bmake/share/man/man4/cm.4 projects/bmake/share/man/man4/cmx.4 projects/bmake/share/man/man4/coretemp.4 projects/bmake/share/man/man4/cpuctl.4 projects/bmake/share/man/man4/ctl.4 projects/bmake/share/man/man4/cue.4 projects/bmake/share/man/man4/cxgb.4 projects/bmake/share/man/man4/cxgbe.4 projects/bmake/share/man/man4/dc.4 projects/bmake/share/man/man4/dcons.4 projects/bmake/share/man/man4/dcons_crom.4 projects/bmake/share/man/man4/ddb.4 projects/bmake/share/man/man4/divert.4 projects/bmake/share/man/man4/dummynet.4 projects/bmake/share/man/man4/em.4 projects/bmake/share/man/man4/esp.4 projects/bmake/share/man/man4/est.4 projects/bmake/share/man/man4/et.4 projects/bmake/share/man/man4/fatm.4 projects/bmake/share/man/man4/ffclock.4 projects/bmake/share/man/man4/full.4 projects/bmake/share/man/man4/gbde.4 projects/bmake/share/man/man4/gdb.4 projects/bmake/share/man/man4/gem.4 projects/bmake/share/man/man4/geom.4 projects/bmake/share/man/man4/geom_fox.4 projects/bmake/share/man/man4/geom_linux_lvm.4 projects/bmake/share/man/man4/geom_map.4 projects/bmake/share/man/man4/geom_uncompress.4 projects/bmake/share/man/man4/geom_uzip.4 projects/bmake/share/man/man4/gpio.4 projects/bmake/share/man/man4/gpioiic.4 projects/bmake/share/man/man4/gpioled.4 projects/bmake/share/man/man4/gre.4 projects/bmake/share/man/man4/h_ertt.4 projects/bmake/share/man/man4/hatm.4 projects/bmake/share/man/man4/hme.4 projects/bmake/share/man/man4/hpt27xx.4 projects/bmake/share/man/man4/hptnr.4 projects/bmake/share/man/man4/hv_ata_pci_disengage.4 projects/bmake/share/man/man4/hv_kvp.4 projects/bmake/share/man/man4/hv_netvsc.4 projects/bmake/share/man/man4/hv_storvsc.4 projects/bmake/share/man/man4/hv_utils.4 projects/bmake/share/man/man4/hv_vmbus.4 projects/bmake/share/man/man4/hwpmc.4 projects/bmake/share/man/man4/ichsmb.4 projects/bmake/share/man/man4/ichwd.4 projects/bmake/share/man/man4/ida.4 projects/bmake/share/man/man4/igb.4 projects/bmake/share/man/man4/iic.4 projects/bmake/share/man/man4/iicbus.4 projects/bmake/share/man/man4/iir.4 projects/bmake/share/man/man4/inet.4 projects/bmake/share/man/man4/intpm.4 projects/bmake/share/man/man4/ipmi.4 projects/bmake/share/man/man4/ips.4 projects/bmake/share/man/man4/ipw.4 projects/bmake/share/man/man4/isci.4 projects/bmake/share/man/man4/iwi.4 projects/bmake/share/man/man4/iwn.4 projects/bmake/share/man/man4/ixgb.4 projects/bmake/share/man/man4/ixgbe.4 projects/bmake/share/man/man4/jme.4 projects/bmake/share/man/man4/joy.4 projects/bmake/share/man/man4/kbdmux.4 projects/bmake/share/man/man4/keyboard.4 projects/bmake/share/man/man4/kld.4 projects/bmake/share/man/man4/ksyms.4 projects/bmake/share/man/man4/kue.4 projects/bmake/share/man/man4/lagg.4 projects/bmake/share/man/man4/le.4 projects/bmake/share/man/man4/led.4 projects/bmake/share/man/man4/lge.4 projects/bmake/share/man/man4/lmc.4 projects/bmake/share/man/man4/mac_bsdextended.4 projects/bmake/share/man/man4/man4.arm/ti_adc.4 projects/bmake/share/man/man4/man4.i386/CPU_ELAN.4 projects/bmake/share/man/man4/man4.i386/ct.4 projects/bmake/share/man/man4/man4.i386/fe.4 projects/bmake/share/man/man4/man4.i386/glxiic.4 projects/bmake/share/man/man4/man4.i386/glxsb.4 projects/bmake/share/man/man4/man4.i386/longrun.4 projects/bmake/share/man/man4/man4.i386/pae.4 projects/bmake/share/man/man4/man4.i386/pbio.4 projects/bmake/share/man/man4/man4.i386/smapi.4 projects/bmake/share/man/man4/man4.i386/snc.4 projects/bmake/share/man/man4/man4.i386/vpd.4 projects/bmake/share/man/man4/man4.i386/vx.4 projects/bmake/share/man/man4/man4.powerpc/adb.4 projects/bmake/share/man/man4/man4.powerpc/akbd.4 projects/bmake/share/man/man4/man4.powerpc/ams.4 projects/bmake/share/man/man4/man4.powerpc/bm.4 projects/bmake/share/man/man4/man4.powerpc/cuda.4 projects/bmake/share/man/man4/man4.powerpc/pmu.4 projects/bmake/share/man/man4/man4.powerpc/powermac_nvram.4 projects/bmake/share/man/man4/man4.powerpc/smu.4 projects/bmake/share/man/man4/man4.powerpc/snd_ai2s.4 projects/bmake/share/man/man4/man4.powerpc/snd_davbus.4 projects/bmake/share/man/man4/man4.sparc64/auxio.4 projects/bmake/share/man/man4/man4.sparc64/central.4 projects/bmake/share/man/man4/man4.sparc64/clkbrd.4 projects/bmake/share/man/man4/man4.sparc64/creator.4 projects/bmake/share/man/man4/man4.sparc64/ebus.4 projects/bmake/share/man/man4/man4.sparc64/eeprom.4 projects/bmake/share/man/man4/man4.sparc64/fhc.4 projects/bmake/share/man/man4/man4.sparc64/machfb.4 projects/bmake/share/man/man4/man4.sparc64/ofw_console.4 projects/bmake/share/man/man4/man4.sparc64/openfirm.4 projects/bmake/share/man/man4/man4.sparc64/openprom.4 projects/bmake/share/man/man4/man4.sparc64/rtc.4 projects/bmake/share/man/man4/man4.sparc64/sbus.4 projects/bmake/share/man/man4/man4.sparc64/snd_audiocs.4 projects/bmake/share/man/man4/md.4 projects/bmake/share/man/man4/meteor.4 projects/bmake/share/man/man4/mfi.4 projects/bmake/share/man/man4/miibus.4 projects/bmake/share/man/man4/mk48txx.4 projects/bmake/share/man/man4/mlx.4 projects/bmake/share/man/man4/mly.4 projects/bmake/share/man/man4/mn.4 projects/bmake/share/man/man4/mod_cc.4 projects/bmake/share/man/man4/mouse.4 projects/bmake/share/man/man4/mpr.4 projects/bmake/share/man/man4/mps.4 projects/bmake/share/man/man4/mpt.4 projects/bmake/share/man/man4/mrsas.4 projects/bmake/share/man/man4/msk.4 projects/bmake/share/man/man4/mvs.4 projects/bmake/share/man/man4/mxge.4 projects/bmake/share/man/man4/my.4 projects/bmake/share/man/man4/nand.4 projects/bmake/share/man/man4/nandsim.4 projects/bmake/share/man/man4/ncv.4 projects/bmake/share/man/man4/ndis.4 projects/bmake/share/man/man4/netgraph.4 projects/bmake/share/man/man4/netmap.4 projects/bmake/share/man/man4/nfe.4 projects/bmake/share/man/man4/nfsmb.4 projects/bmake/share/man/man4/ng_UI.4 projects/bmake/share/man/man4/ng_async.4 projects/bmake/share/man/man4/ng_atm.4 projects/bmake/share/man/man4/ng_atmllc.4 projects/bmake/share/man/man4/ng_bluetooth.4 projects/bmake/share/man/man4/ng_bpf.4 projects/bmake/share/man/man4/ng_bridge.4 projects/bmake/share/man/man4/ng_bt3c.4 projects/bmake/share/man/man4/ng_btsocket.4 projects/bmake/share/man/man4/ng_car.4 projects/bmake/share/man/man4/ng_ccatm.4 projects/bmake/share/man/man4/ng_cisco.4 projects/bmake/share/man/man4/ng_deflate.4 projects/bmake/share/man/man4/ng_device.4 projects/bmake/share/man/man4/ng_echo.4 projects/bmake/share/man/man4/ng_etf.4 projects/bmake/share/man/man4/ng_ether.4 projects/bmake/share/man/man4/ng_ether_echo.4 projects/bmake/share/man/man4/ng_frame_relay.4 projects/bmake/share/man/man4/ng_gif.4 projects/bmake/share/man/man4/ng_gif_demux.4 projects/bmake/share/man/man4/ng_h4.4 projects/bmake/share/man/man4/ng_hci.4 projects/bmake/share/man/man4/ng_hole.4 projects/bmake/share/man/man4/ng_hub.4 projects/bmake/share/man/man4/ng_iface.4 projects/bmake/share/man/man4/ng_ip_input.4 projects/bmake/share/man/man4/ng_ipfw.4 projects/bmake/share/man/man4/ng_ksocket.4 projects/bmake/share/man/man4/ng_l2cap.4 projects/bmake/share/man/man4/ng_l2tp.4 projects/bmake/share/man/man4/ng_lmi.4 projects/bmake/share/man/man4/ng_mppc.4 projects/bmake/share/man/man4/ng_nat.4 projects/bmake/share/man/man4/ng_netflow.4 projects/bmake/share/man/man4/ng_one2many.4 projects/bmake/share/man/man4/ng_patch.4 projects/bmake/share/man/man4/ng_ppp.4 projects/bmake/share/man/man4/ng_pppoe.4 projects/bmake/share/man/man4/ng_pptpgre.4 projects/bmake/share/man/man4/ng_pred1.4 projects/bmake/share/man/man4/ng_rfc1490.4 projects/bmake/share/man/man4/ng_socket.4 projects/bmake/share/man/man4/ng_split.4 projects/bmake/share/man/man4/ng_sppp.4 projects/bmake/share/man/man4/ng_sscfu.4 projects/bmake/share/man/man4/ng_sscop.4 projects/bmake/share/man/man4/ng_tag.4 projects/bmake/share/man/man4/ng_tcpmss.4 projects/bmake/share/man/man4/ng_tee.4 projects/bmake/share/man/man4/ng_tty.4 projects/bmake/share/man/man4/ng_ubt.4 projects/bmake/share/man/man4/ng_uni.4 projects/bmake/share/man/man4/ng_vjc.4 projects/bmake/share/man/man4/ng_vlan.4 projects/bmake/share/man/man4/ngatmbase.4 projects/bmake/share/man/man4/nge.4 projects/bmake/share/man/man4/nsp.4 projects/bmake/share/man/man4/ntb.4 projects/bmake/share/man/man4/nvd.4 projects/bmake/share/man/man4/nvme.4 projects/bmake/share/man/man4/nvram2env.4 projects/bmake/share/man/man4/nxge.4 projects/bmake/share/man/man4/ohci.4 projects/bmake/share/man/man4/orm.4 projects/bmake/share/man/man4/padlock.4 projects/bmake/share/man/man4/pass.4 projects/bmake/share/man/man4/patm.4 projects/bmake/share/man/man4/pci.4 projects/bmake/share/man/man4/pcm.4 projects/bmake/share/man/man4/pcn.4 projects/bmake/share/man/man4/polling.4 projects/bmake/share/man/man4/procdesc.4 projects/bmake/share/man/man4/proto.4 projects/bmake/share/man/man4/psm.4 projects/bmake/share/man/man4/pst.4 projects/bmake/share/man/man4/qlxgb.4 projects/bmake/share/man/man4/qlxgbe.4 projects/bmake/share/man/man4/qlxge.4 projects/bmake/share/man/man4/ral.4 projects/bmake/share/man/man4/rc.4 projects/bmake/share/man/man4/re.4 projects/bmake/share/man/man4/rights.4 projects/bmake/share/man/man4/rl.4 projects/bmake/share/man/man4/rp.4 projects/bmake/share/man/man4/rsu.4 projects/bmake/share/man/man4/rue.4 projects/bmake/share/man/man4/rum.4 projects/bmake/share/man/man4/run.4 projects/bmake/share/man/man4/scc.4 projects/bmake/share/man/man4/sched_ule.4 projects/bmake/share/man/man4/screen.4 projects/bmake/share/man/man4/scsi.4 projects/bmake/share/man/man4/sdhci.4 projects/bmake/share/man/man4/send.4 projects/bmake/share/man/man4/sf.4 projects/bmake/share/man/man4/sge.4 projects/bmake/share/man/man4/si.4 projects/bmake/share/man/man4/siba.4 projects/bmake/share/man/man4/siftr.4 projects/bmake/share/man/man4/siis.4 projects/bmake/share/man/man4/sis.4 projects/bmake/share/man/man4/sk.4 projects/bmake/share/man/man4/smp.4 projects/bmake/share/man/man4/snd_ad1816.4 projects/bmake/share/man/man4/snd_als4000.4 projects/bmake/share/man/man4/snd_atiixp.4 projects/bmake/share/man/man4/snd_cmi.4 projects/bmake/share/man/man4/snd_cs4281.4 projects/bmake/share/man/man4/snd_csa.4 projects/bmake/share/man/man4/snd_ds1.4 projects/bmake/share/man/man4/snd_emu10k1.4 projects/bmake/share/man/man4/snd_emu10kx.4 projects/bmake/share/man/man4/snd_envy24.4 projects/bmake/share/man/man4/snd_envy24ht.4 projects/bmake/share/man/man4/snd_es137x.4 projects/bmake/share/man/man4/snd_ess.4 projects/bmake/share/man/man4/snd_fm801.4 projects/bmake/share/man/man4/snd_gusc.4 projects/bmake/share/man/man4/snd_hda.4 projects/bmake/share/man/man4/snd_ich.4 projects/bmake/share/man/man4/snd_maestro.4 projects/bmake/share/man/man4/snd_maestro3.4 projects/bmake/share/man/man4/snd_mss.4 projects/bmake/share/man/man4/snd_neomagic.4 projects/bmake/share/man/man4/snd_sbc.4 projects/bmake/share/man/man4/snd_solo.4 projects/bmake/share/man/man4/snd_spicds.4 projects/bmake/share/man/man4/snd_t4dwave.4 projects/bmake/share/man/man4/snd_uaudio.4 projects/bmake/share/man/man4/snd_via8233.4 projects/bmake/share/man/man4/snd_via82c686.4 projects/bmake/share/man/man4/snd_vibes.4 projects/bmake/share/man/man4/snp.4 projects/bmake/share/man/man4/spic.4 projects/bmake/share/man/man4/spkr.4 projects/bmake/share/man/man4/splash.4 projects/bmake/share/man/man4/sppp.4 projects/bmake/share/man/man4/ste.4 projects/bmake/share/man/man4/stge.4 projects/bmake/share/man/man4/syncache.4 projects/bmake/share/man/man4/syscons.4 projects/bmake/share/man/man4/sysmouse.4 projects/bmake/share/man/man4/targ.4 projects/bmake/share/man/man4/tdfx.4 projects/bmake/share/man/man4/ti.4 projects/bmake/share/man/man4/tl.4 projects/bmake/share/man/man4/trm.4 projects/bmake/share/man/man4/tty.4 projects/bmake/share/man/man4/twa.4 projects/bmake/share/man/man4/twe.4 projects/bmake/share/man/man4/tws.4 projects/bmake/share/man/man4/u3g.4 projects/bmake/share/man/man4/uark.4 projects/bmake/share/man/man4/uart.4 projects/bmake/share/man/man4/uath.4 projects/bmake/share/man/man4/ubsa.4 projects/bmake/share/man/man4/ubtbcmfw.4 projects/bmake/share/man/man4/ucom.4 projects/bmake/share/man/man4/ucycom.4 projects/bmake/share/man/man4/udav.4 projects/bmake/share/man/man4/udbp.4 projects/bmake/share/man/man4/udplite.4 projects/bmake/share/man/man4/uep.4 projects/bmake/share/man/man4/ufm.4 projects/bmake/share/man/man4/ugen.4 projects/bmake/share/man/man4/uhci.4 projects/bmake/share/man/man4/uhid.4 projects/bmake/share/man/man4/uhso.4 projects/bmake/share/man/man4/ukbd.4 projects/bmake/share/man/man4/ulpt.4 projects/bmake/share/man/man4/umass.4 projects/bmake/share/man/man4/umcs.4 projects/bmake/share/man/man4/umct.4 projects/bmake/share/man/man4/umodem.4 projects/bmake/share/man/man4/ums.4 projects/bmake/share/man/man4/upgt.4 projects/bmake/share/man/man4/uplcom.4 projects/bmake/share/man/man4/ural.4 projects/bmake/share/man/man4/urio.4 projects/bmake/share/man/man4/urtw.4 projects/bmake/share/man/man4/urtwn.4 projects/bmake/share/man/man4/usb.4 projects/bmake/share/man/man4/usb_quirk.4 projects/bmake/share/man/man4/usb_template.4 projects/bmake/share/man/man4/uslcom.4 projects/bmake/share/man/man4/utopia.4 projects/bmake/share/man/man4/uvisor.4 projects/bmake/share/man/man4/uvscom.4 projects/bmake/share/man/man4/vale.4 projects/bmake/share/man/man4/vga.4 projects/bmake/share/man/man4/vge.4 projects/bmake/share/man/man4/viapm.4 projects/bmake/share/man/man4/viawd.4 projects/bmake/share/man/man4/virtio.4 projects/bmake/share/man/man4/virtio_balloon.4 projects/bmake/share/man/man4/virtio_blk.4 projects/bmake/share/man/man4/virtio_random.4 projects/bmake/share/man/man4/virtio_scsi.4 projects/bmake/share/man/man4/vkbd.4 projects/bmake/share/man/man4/vmx.4 projects/bmake/share/man/man4/vr.4 projects/bmake/share/man/man4/vte.4 projects/bmake/share/man/man4/vtnet.4 projects/bmake/share/man/man4/vxge.4 projects/bmake/share/man/man4/watchdog.4 projects/bmake/share/man/man4/wb.4 projects/bmake/share/man/man4/wbwd.4 projects/bmake/share/man/man4/wi.4 projects/bmake/share/man/man4/wlan.4 projects/bmake/share/man/man4/wpi.4 projects/bmake/share/man/man4/wsp.4 projects/bmake/share/man/man4/xe.4 projects/bmake/share/man/man4/xen.4 projects/bmake/share/man/man4/xl.4 projects/bmake/share/man/man4/xnb.4 projects/bmake/share/man/man4/xpt.4 projects/bmake/share/man/man4/zyd.4 projects/bmake/share/man/man5/bluetooth.device.conf.5 projects/bmake/share/man/man5/bluetooth.hosts.5 projects/bmake/share/man/man5/bluetooth.protocols.5 projects/bmake/share/man/man5/boot.config.5 projects/bmake/share/man/man5/devfs.5 projects/bmake/share/man/man5/devfs.conf.5 projects/bmake/share/man/man5/devfs.rules.5 projects/bmake/share/man/man5/elf.5 projects/bmake/share/man/man5/ext2fs.5 projects/bmake/share/man/man5/fdescfs.5 projects/bmake/share/man/man5/freebsd-update.conf.5 projects/bmake/share/man/man5/libmap.conf.5 projects/bmake/share/man/man5/mailer.conf.5 projects/bmake/share/man/man5/make.conf.5 projects/bmake/share/man/man5/mqueuefs.5 projects/bmake/share/man/man5/msdosfs.5 projects/bmake/share/man/man5/nandfs.5 projects/bmake/share/man/man5/nsmb.conf.5 projects/bmake/share/man/man5/nsswitch.conf.5 projects/bmake/share/man/man5/nullfs.5 projects/bmake/share/man/man5/passwd.5 projects/bmake/share/man/man5/periodic.conf.5 projects/bmake/share/man/man5/pf.conf.5 projects/bmake/share/man/man5/portindex.5 projects/bmake/share/man/man5/portsnap.conf.5 projects/bmake/share/man/man5/rc.conf.5 projects/bmake/share/man/man5/reiserfs.5 projects/bmake/share/man/man5/src.conf.5 projects/bmake/share/man/man5/tmpfs.5 projects/bmake/share/man/man7/build.7 projects/bmake/share/man/man7/c99.7 projects/bmake/share/man/man7/development.7 projects/bmake/share/man/man7/hier.7 projects/bmake/share/man/man7/ports.7 projects/bmake/share/man/man7/release.7 projects/bmake/share/man/man7/sdoc.7 projects/bmake/share/man/man7/sprog.7 projects/bmake/share/man/man7/tests.7 projects/bmake/share/man/man7/tuning.7 projects/bmake/share/man/man8/hv_kvp_daemon.8 projects/bmake/share/man/man8/nanobsd.8 projects/bmake/share/man/man8/picobsd.8 projects/bmake/share/man/man8/rescue.8 projects/bmake/share/man/man9/BUF_ISLOCKED.9 projects/bmake/share/man/man9/BUF_LOCK.9 projects/bmake/share/man/man9/BUF_LOCKFREE.9 projects/bmake/share/man/man9/BUF_LOCKINIT.9 projects/bmake/share/man/man9/BUF_RECURSED.9 projects/bmake/share/man/man9/BUF_TIMELOCK.9 projects/bmake/share/man/man9/BUF_UNLOCK.9 projects/bmake/share/man/man9/BUS_CONFIG_INTR.9 projects/bmake/share/man/man9/BUS_SETUP_INTR.9 projects/bmake/share/man/man9/CTASSERT.9 projects/bmake/share/man/man9/DB_COMMAND.9 projects/bmake/share/man/man9/DECLARE_GEOM_CLASS.9 projects/bmake/share/man/man9/DECLARE_MODULE.9 projects/bmake/share/man/man9/DEVICE_ATTACH.9 projects/bmake/share/man/man9/DEVICE_IDENTIFY.9 projects/bmake/share/man/man9/DEV_MODULE.9 projects/bmake/share/man/man9/DRIVER_MODULE.9 projects/bmake/share/man/man9/EVENTHANDLER.9 projects/bmake/share/man/man9/KASSERT.9 projects/bmake/share/man/man9/LOCK_PROFILING.9 projects/bmake/share/man/man9/MODULE_DEPEND.9 projects/bmake/share/man/man9/MODULE_VERSION.9 projects/bmake/share/man/man9/Makefile projects/bmake/share/man/man9/SDT.9 projects/bmake/share/man/man9/SYSCALL_MODULE.9 projects/bmake/share/man/man9/SYSINIT.9 projects/bmake/share/man/man9/VFS_SET.9 projects/bmake/share/man/man9/VOP_INACTIVE.9 projects/bmake/share/man/man9/alq.9 projects/bmake/share/man/man9/atomic.9 projects/bmake/share/man/man9/bus_activate_resource.9 projects/bmake/share/man/man9/bus_alloc_resource.9 projects/bmake/share/man/man9/bus_child_present.9 projects/bmake/share/man/man9/bus_release_resource.9 projects/bmake/share/man/man9/bus_set_resource.9 projects/bmake/share/man/man9/cd.9 projects/bmake/share/man/man9/config_intrhook.9 projects/bmake/share/man/man9/crypto.9 projects/bmake/share/man/man9/devstat.9 projects/bmake/share/man/man9/domain.9 projects/bmake/share/man/man9/eventtimers.9 projects/bmake/share/man/man9/fail.9 projects/bmake/share/man/man9/firmware.9 projects/bmake/share/man/man9/g_access.9 projects/bmake/share/man/man9/g_attach.9 projects/bmake/share/man/man9/g_bio.9 projects/bmake/share/man/man9/g_consumer.9 projects/bmake/share/man/man9/g_data.9 projects/bmake/share/man/man9/g_event.9 projects/bmake/share/man/man9/g_geom.9 projects/bmake/share/man/man9/g_provider.9 projects/bmake/share/man/man9/g_provider_by_name.9 projects/bmake/share/man/man9/g_wither_geom.9 projects/bmake/share/man/man9/get_cyclecount.9 projects/bmake/share/man/man9/getnewvnode.9 projects/bmake/share/man/man9/groupmember.9 projects/bmake/share/man/man9/hhook.9 projects/bmake/share/man/man9/ieee80211_radiotap.9 projects/bmake/share/man/man9/ifnet.9 projects/bmake/share/man/man9/insmntque.9 projects/bmake/share/man/man9/kernel_mount.9 projects/bmake/share/man/man9/khelp.9 projects/bmake/share/man/man9/kqueue.9 projects/bmake/share/man/man9/kthread.9 projects/bmake/share/man/man9/lock.9 projects/bmake/share/man/man9/mbchain.9 projects/bmake/share/man/man9/mbpool.9 projects/bmake/share/man/man9/mbuf.9 projects/bmake/share/man/man9/mbuf_tags.9 projects/bmake/share/man/man9/mdchain.9 projects/bmake/share/man/man9/memguard.9 projects/bmake/share/man/man9/microtime.9 projects/bmake/share/man/man9/microuptime.9 projects/bmake/share/man/man9/mod_cc.9 projects/bmake/share/man/man9/module.9 projects/bmake/share/man/man9/namei.9 projects/bmake/share/man/man9/osd.9 projects/bmake/share/man/man9/pbuf.9 projects/bmake/share/man/man9/pci.9 projects/bmake/share/man/man9/pfind.9 projects/bmake/share/man/man9/pgfind.9 projects/bmake/share/man/man9/pmap.9 projects/bmake/share/man/man9/pmap_activate.9 projects/bmake/share/man/man9/pmap_change_wiring.9 projects/bmake/share/man/man9/pmap_clear_modify.9 projects/bmake/share/man/man9/pmap_copy.9 projects/bmake/share/man/man9/pmap_enter.9 projects/bmake/share/man/man9/pmap_extract.9 projects/bmake/share/man/man9/pmap_growkernel.9 projects/bmake/share/man/man9/pmap_init.9 projects/bmake/share/man/man9/pmap_is_modified.9 projects/bmake/share/man/man9/pmap_is_prefaultable.9 projects/bmake/share/man/man9/pmap_map.9 projects/bmake/share/man/man9/pmap_mincore.9 projects/bmake/share/man/man9/pmap_object_init_pt.9 projects/bmake/share/man/man9/pmap_page_exists_quick.9 projects/bmake/share/man/man9/pmap_page_init.9 projects/bmake/share/man/man9/pmap_pinit.9 projects/bmake/share/man/man9/pmap_qenter.9 projects/bmake/share/man/man9/pmap_release.9 projects/bmake/share/man/man9/pmap_remove.9 projects/bmake/share/man/man9/pmap_resident_count.9 projects/bmake/share/man/man9/pmap_zero_page.9 projects/bmake/share/man/man9/pseudofs.9 projects/bmake/share/man/man9/redzone.9 projects/bmake/share/man/man9/resource_int_value.9 projects/bmake/share/man/man9/rman.9 projects/bmake/share/man/man9/sbuf.9 projects/bmake/share/man/man9/selrecord.9 projects/bmake/share/man/man9/signal.9 projects/bmake/share/man/man9/sleep.9 projects/bmake/share/man/man9/socket.9 projects/bmake/share/man/man9/sysctl_add_oid.9 projects/bmake/share/man/man9/sysctl_ctx_init.9 projects/bmake/share/man/man9/taskqueue.9 projects/bmake/share/man/man9/timeout.9 projects/bmake/share/man/man9/tvtohz.9 projects/bmake/share/man/man9/ucred.9 projects/bmake/share/man/man9/uidinfo.9 projects/bmake/share/man/man9/usbdi.9 projects/bmake/share/man/man9/utopia.9 projects/bmake/share/man/man9/vaccess_acl_nfs4.9 projects/bmake/share/man/man9/vflush.9 projects/bmake/share/man/man9/vfs_busy.9 projects/bmake/share/man/man9/vfs_getnewfsid.9 projects/bmake/share/man/man9/vfs_getopt.9 projects/bmake/share/man/man9/vfs_getvfs.9 projects/bmake/share/man/man9/vfs_mountedfrom.9 projects/bmake/share/man/man9/vfs_rootmountalloc.9 projects/bmake/share/man/man9/vfs_timestamp.9 projects/bmake/share/man/man9/vfs_unbusy.9 projects/bmake/share/man/man9/vfsconf.9 projects/bmake/share/man/man9/vgone.9 projects/bmake/share/man/man9/vhold.9 projects/bmake/share/man/man9/vinvalbuf.9 projects/bmake/share/man/man9/vm_fault_prefault.9 projects/bmake/share/man/man9/vm_map.9 projects/bmake/share/man/man9/vm_map_check_protection.9 projects/bmake/share/man/man9/vm_map_create.9 projects/bmake/share/man/man9/vm_map_delete.9 projects/bmake/share/man/man9/vm_map_entry_resize_free.9 projects/bmake/share/man/man9/vm_map_find.9 projects/bmake/share/man/man9/vm_map_findspace.9 projects/bmake/share/man/man9/vm_map_inherit.9 projects/bmake/share/man/man9/vm_map_init.9 projects/bmake/share/man/man9/vm_map_insert.9 projects/bmake/share/man/man9/vm_map_lock.9 projects/bmake/share/man/man9/vm_map_lookup.9 projects/bmake/share/man/man9/vm_map_madvise.9 projects/bmake/share/man/man9/vm_map_max.9 projects/bmake/share/man/man9/vm_map_protect.9 projects/bmake/share/man/man9/vm_map_remove.9 projects/bmake/share/man/man9/vm_map_simplify_entry.9 projects/bmake/share/man/man9/vm_map_stack.9 projects/bmake/share/man/man9/vm_map_submap.9 projects/bmake/share/man/man9/vm_map_sync.9 projects/bmake/share/man/man9/vm_map_wire.9 projects/bmake/share/man/man9/vm_page_aflag.9 projects/bmake/share/man/man9/vm_page_alloc.9 projects/bmake/share/man/man9/vm_page_bits.9 projects/bmake/share/man/man9/vm_page_cache.9 projects/bmake/share/man/man9/vm_page_deactivate.9 projects/bmake/share/man/man9/vm_page_dontneed.9 projects/bmake/share/man/man9/vm_page_free.9 projects/bmake/share/man/man9/vm_page_grab.9 projects/bmake/share/man/man9/vm_page_hold.9 projects/bmake/share/man/man9/vm_page_insert.9 projects/bmake/share/man/man9/vm_page_lookup.9 projects/bmake/share/man/man9/vm_page_rename.9 projects/bmake/share/man/man9/vm_page_wire.9 projects/bmake/share/man/man9/vm_set_page_size.9 projects/bmake/share/man/man9/vn_fullpath.9 projects/bmake/share/man/man9/vn_isdisk.9 projects/bmake/share/man/man9/watchdog.9 projects/bmake/share/man/man9/zone.9 projects/bmake/share/misc/bsd-family-tree projects/bmake/share/misc/committers-doc.dot projects/bmake/share/misc/committers-ports.dot projects/bmake/share/misc/committers-src.dot projects/bmake/share/misc/organization.dot projects/bmake/share/mk/Makefile projects/bmake/share/mk/atf.test.mk projects/bmake/share/mk/bsd.README projects/bmake/share/mk/bsd.compiler.mk projects/bmake/share/mk/bsd.cpu.mk projects/bmake/share/mk/bsd.crunchgen.mk projects/bmake/share/mk/bsd.dep.mk projects/bmake/share/mk/bsd.doc.mk projects/bmake/share/mk/bsd.endian.mk projects/bmake/share/mk/bsd.files.mk projects/bmake/share/mk/bsd.lib.mk projects/bmake/share/mk/bsd.libnames.mk projects/bmake/share/mk/bsd.mkopt.mk projects/bmake/share/mk/bsd.obj.mk projects/bmake/share/mk/bsd.opts.mk projects/bmake/share/mk/bsd.own.mk projects/bmake/share/mk/bsd.prog.mk projects/bmake/share/mk/bsd.subdir.mk projects/bmake/share/mk/bsd.sys.mk projects/bmake/share/mk/bsd.test.mk projects/bmake/share/mk/local.dirdeps.mk projects/bmake/share/mk/local.init.mk projects/bmake/share/mk/local.sys.mk projects/bmake/share/mk/meta.autodep.mk projects/bmake/share/mk/meta.sys.mk projects/bmake/share/mk/plain.test.mk projects/bmake/share/mk/src.opts.mk projects/bmake/share/mk/sys.dependfile.mk projects/bmake/share/mk/sys.mk projects/bmake/share/mk/tap.test.mk projects/bmake/share/termcap/termcap.src projects/bmake/sys/Makefile projects/bmake/sys/amd64/acpica/acpi_machdep.c projects/bmake/sys/amd64/acpica/acpi_wakecode.S projects/bmake/sys/amd64/amd64/amd64_mem.c projects/bmake/sys/amd64/amd64/db_disasm.c projects/bmake/sys/amd64/amd64/exception.S projects/bmake/sys/amd64/amd64/fpu.c projects/bmake/sys/amd64/amd64/identcpu.c projects/bmake/sys/amd64/amd64/machdep.c projects/bmake/sys/amd64/amd64/mp_machdep.c projects/bmake/sys/amd64/amd64/mp_watchdog.c projects/bmake/sys/amd64/amd64/mpboot.S projects/bmake/sys/amd64/amd64/pmap.c projects/bmake/sys/amd64/amd64/sys_machdep.c projects/bmake/sys/amd64/amd64/trap.c projects/bmake/sys/amd64/conf/GENERIC projects/bmake/sys/amd64/conf/NOTES projects/bmake/sys/amd64/include/cpu.h projects/bmake/sys/amd64/include/fpu.h projects/bmake/sys/amd64/include/param.h projects/bmake/sys/amd64/include/vmm.h (contents, props changed) projects/bmake/sys/amd64/include/vmm_dev.h (contents, props changed) projects/bmake/sys/amd64/include/vmm_instruction_emul.h (contents, props changed) projects/bmake/sys/amd64/pci/pci_cfgreg.c projects/bmake/sys/amd64/vmm/intel/vmcs.c projects/bmake/sys/amd64/vmm/intel/vmcs.h projects/bmake/sys/amd64/vmm/intel/vmx.c projects/bmake/sys/amd64/vmm/intel/vmx.h projects/bmake/sys/amd64/vmm/intel/vmx_support.S projects/bmake/sys/amd64/vmm/io/vatpic.c projects/bmake/sys/amd64/vmm/io/vatpic.h projects/bmake/sys/amd64/vmm/io/vlapic.c projects/bmake/sys/amd64/vmm/io/vlapic.h projects/bmake/sys/amd64/vmm/vmm.c projects/bmake/sys/amd64/vmm/vmm_dev.c projects/bmake/sys/amd64/vmm/vmm_host.c projects/bmake/sys/amd64/vmm/vmm_instruction_emul.c projects/bmake/sys/amd64/vmm/vmm_ioport.c projects/bmake/sys/amd64/vmm/vmm_ioport.h projects/bmake/sys/amd64/vmm/vmm_ktr.h projects/bmake/sys/amd64/vmm/vmm_stat.c projects/bmake/sys/amd64/vmm/vmm_stat.h projects/bmake/sys/amd64/vmm/x86.c projects/bmake/sys/arm/allwinner/a10_machdep.c projects/bmake/sys/arm/arm/bus_space_generic.c projects/bmake/sys/arm/arm/busdma_machdep-v6.c projects/bmake/sys/arm/arm/busdma_machdep.c projects/bmake/sys/arm/arm/cpufunc.c projects/bmake/sys/arm/arm/cpufunc_asm_armv7.S projects/bmake/sys/arm/arm/cpufunc_asm_pj4b.S projects/bmake/sys/arm/arm/dump_machdep.c projects/bmake/sys/arm/arm/gic.c projects/bmake/sys/arm/arm/intr.c projects/bmake/sys/arm/arm/locore.S projects/bmake/sys/arm/arm/machdep.c projects/bmake/sys/arm/arm/pl310.c projects/bmake/sys/arm/arm/pmap-v6.c projects/bmake/sys/arm/arm/pmap.c projects/bmake/sys/arm/at91/at91_machdep.c projects/bmake/sys/arm/at91/board_tsc4370.c projects/bmake/sys/arm/at91/if_ate.c projects/bmake/sys/arm/at91/if_macb.c projects/bmake/sys/arm/broadcom/bcm2835/bcm2835_bsc.c projects/bmake/sys/arm/broadcom/bcm2835/bcm2835_fbd.c projects/bmake/sys/arm/broadcom/bcm2835/bcm2835_intr.c projects/bmake/sys/arm/broadcom/bcm2835/bcm2835_machdep.c projects/bmake/sys/arm/broadcom/bcm2835/files.bcm2835 projects/bmake/sys/arm/cavium/cns11xx/econa_machdep.c projects/bmake/sys/arm/cavium/cns11xx/if_ece.c projects/bmake/sys/arm/conf/ARNDALE projects/bmake/sys/arm/conf/BEAGLEBONE projects/bmake/sys/arm/conf/CHROMEBOOK projects/bmake/sys/arm/conf/IMX6 projects/bmake/sys/arm/conf/PANDABOARD projects/bmake/sys/arm/conf/RADXA projects/bmake/sys/arm/conf/RPI-B projects/bmake/sys/arm/conf/VYBRID projects/bmake/sys/arm/conf/ZEDBOARD projects/bmake/sys/arm/freescale/imx/files.imx51 projects/bmake/sys/arm/freescale/imx/files.imx53 projects/bmake/sys/arm/freescale/imx/files.imx6 projects/bmake/sys/arm/freescale/imx/imx51_machdep.c projects/bmake/sys/arm/freescale/imx/imx53_machdep.c projects/bmake/sys/arm/freescale/imx/imx6_anatop.c projects/bmake/sys/arm/freescale/imx/imx6_machdep.c projects/bmake/sys/arm/freescale/imx/imx6_mp.c projects/bmake/sys/arm/freescale/imx/imx_sdhci.c projects/bmake/sys/arm/freescale/vybrid/files.vybrid projects/bmake/sys/arm/freescale/vybrid/vf_gpio.c projects/bmake/sys/arm/freescale/vybrid/vf_i2c.c projects/bmake/sys/arm/freescale/vybrid/vf_machdep.c projects/bmake/sys/arm/freescale/vybrid/vf_port.c projects/bmake/sys/arm/include/atomic.h projects/bmake/sys/arm/include/cpu.h projects/bmake/sys/arm/include/cpufunc.h projects/bmake/sys/arm/include/devmap.h projects/bmake/sys/arm/include/elf.h projects/bmake/sys/arm/include/intr.h projects/bmake/sys/arm/include/machdep.h projects/bmake/sys/arm/include/ucontext.h projects/bmake/sys/arm/lpc/lpc_gpio.c projects/bmake/sys/arm/lpc/lpc_machdep.c projects/bmake/sys/arm/lpc/lpcvar.h projects/bmake/sys/arm/mv/armadaxp/armadaxp_mp.c projects/bmake/sys/arm/mv/armadaxp/mptramp.S projects/bmake/sys/arm/mv/gpio.c projects/bmake/sys/arm/mv/mv_localbus.c projects/bmake/sys/arm/mv/mv_machdep.c projects/bmake/sys/arm/mv/mv_pci.c projects/bmake/sys/arm/mv/mvvar.h projects/bmake/sys/arm/mv/orion/db88f5xxx.c projects/bmake/sys/arm/rockchip/files.rk30xx projects/bmake/sys/arm/rockchip/rk30xx_gpio.c projects/bmake/sys/arm/rockchip/rk30xx_machdep.c projects/bmake/sys/arm/s3c2xx0/s3c24x0_machdep.c projects/bmake/sys/arm/samsung/exynos/chrome_ec.c projects/bmake/sys/arm/samsung/exynos/chrome_kb.c projects/bmake/sys/arm/samsung/exynos/chrome_kb.h projects/bmake/sys/arm/samsung/exynos/exynos5_combiner.c projects/bmake/sys/arm/samsung/exynos/exynos5_ehci.c projects/bmake/sys/arm/samsung/exynos/exynos5_i2c.c projects/bmake/sys/arm/samsung/exynos/exynos5_machdep.c projects/bmake/sys/arm/samsung/exynos/exynos5_mp.c projects/bmake/sys/arm/samsung/exynos/exynos5_pad.c projects/bmake/sys/arm/samsung/exynos/files.exynos5 projects/bmake/sys/arm/ti/aintc.c projects/bmake/sys/arm/ti/am335x/am335x_lcd.c projects/bmake/sys/arm/ti/am335x/am335x_prcm.c projects/bmake/sys/arm/ti/am335x/am335x_pwm.c projects/bmake/sys/arm/ti/am335x/am335x_scm_padconf.c projects/bmake/sys/arm/ti/omap4/omap4_prcm_clks.c projects/bmake/sys/arm/ti/omap4/omap4_scm_padconf.c projects/bmake/sys/arm/ti/ti_adc.c projects/bmake/sys/arm/ti/ti_adcreg.h projects/bmake/sys/arm/ti/ti_adcvar.h projects/bmake/sys/arm/ti/ti_gpio.c projects/bmake/sys/arm/ti/ti_i2c.c projects/bmake/sys/arm/ti/ti_machdep.c projects/bmake/sys/arm/ti/ti_prcm.c projects/bmake/sys/arm/versatile/versatile_clcd.c projects/bmake/sys/arm/versatile/versatile_machdep.c projects/bmake/sys/arm/xilinx/zy7_machdep.c projects/bmake/sys/arm/xilinx/zy7_slcr.c projects/bmake/sys/arm/xilinx/zy7_slcr.h projects/bmake/sys/arm/xscale/i80321/ep80219_machdep.c projects/bmake/sys/arm/xscale/i80321/iq31244_machdep.c projects/bmake/sys/arm/xscale/i8134x/crb_machdep.c projects/bmake/sys/arm/xscale/ixp425/avila_machdep.c projects/bmake/sys/arm/xscale/ixp425/if_npe.c projects/bmake/sys/arm/xscale/ixp425/ixp425_npe.c projects/bmake/sys/arm/xscale/ixp425/ixp425_qmgr.c projects/bmake/sys/arm/xscale/pxa/pxa_machdep.c projects/bmake/sys/boot/amd64/boot1.efi/Makefile projects/bmake/sys/boot/amd64/efi/bootinfo.c projects/bmake/sys/boot/amd64/efi/main.c projects/bmake/sys/boot/arm/at91/boot0/main.c projects/bmake/sys/boot/arm/at91/boot0iic/main.c projects/bmake/sys/boot/arm/at91/boot0spi/main.c projects/bmake/sys/boot/arm/at91/boot2/boot2.c projects/bmake/sys/boot/arm/at91/bootiic/main.c projects/bmake/sys/boot/arm/at91/bootspi/main.c projects/bmake/sys/boot/arm/at91/libat91/emac.c projects/bmake/sys/boot/arm/at91/libat91/mci_device.h projects/bmake/sys/boot/arm/at91/libat91/sd-card.c projects/bmake/sys/boot/arm/at91/libat91/sd-card.h projects/bmake/sys/boot/common/Makefile.inc projects/bmake/sys/boot/common/bootstrap.h projects/bmake/sys/boot/common/interp.c projects/bmake/sys/boot/common/interp_forth.c projects/bmake/sys/boot/efi/include/amd64/pe.h projects/bmake/sys/boot/efi/include/efiapi.h projects/bmake/sys/boot/efi/include/i386/pe.h projects/bmake/sys/boot/efi/libefi/Makefile projects/bmake/sys/boot/fdt/dts/arm/beaglebone-black.dts projects/bmake/sys/boot/fdt/dts/arm/beaglebone.dts projects/bmake/sys/boot/fdt/dts/arm/digi-ccwmx53.dts projects/bmake/sys/boot/fdt/dts/arm/efikamx.dts projects/bmake/sys/boot/fdt/dts/arm/exynos5250-arndale.dts projects/bmake/sys/boot/fdt/dts/arm/exynos5250.dtsi projects/bmake/sys/boot/fdt/dts/arm/imx6.dtsi projects/bmake/sys/boot/fdt/dts/arm/wandboard-dual.dts projects/bmake/sys/boot/fdt/dts/arm/wandboard-quad.dts projects/bmake/sys/boot/fdt/dts/arm/wandboard-solo.dts projects/bmake/sys/boot/fdt/dts/arm/zedboard.dts projects/bmake/sys/boot/fdt/dts/mips/beri-netfpga.dts projects/bmake/sys/boot/fdt/dts/mips/beripad-de4.dts projects/bmake/sys/boot/fdt/fdt_loader_cmd.c projects/bmake/sys/boot/ficl/loader.c projects/bmake/sys/boot/forth/brand.4th projects/bmake/sys/boot/forth/loader.conf projects/bmake/sys/boot/i386/boot2/Makefile projects/bmake/sys/boot/i386/boot2/boot2.c projects/bmake/sys/boot/i386/btx/btx/Makefile projects/bmake/sys/boot/i386/btx/btxldr/Makefile projects/bmake/sys/boot/i386/btx/lib/Makefile projects/bmake/sys/boot/i386/gptboot/gptboot.8 projects/bmake/sys/boot/i386/libi386/Makefile projects/bmake/sys/boot/i386/libi386/amd64_tramp.S projects/bmake/sys/boot/i386/libi386/libi386.h projects/bmake/sys/boot/i386/libi386/pxe.c projects/bmake/sys/boot/i386/loader/Makefile projects/bmake/sys/boot/i386/loader/main.c projects/bmake/sys/boot/libstand32/Makefile projects/bmake/sys/boot/mips/beri/boot2/Makefile projects/bmake/sys/boot/mips/beri/loader/Makefile projects/bmake/sys/boot/mips/beri/loader/loader.ldscript projects/bmake/sys/boot/mips/beri/loader/main.c projects/bmake/sys/boot/ofw/common/main.c projects/bmake/sys/boot/pc98/boot2/Makefile projects/bmake/sys/boot/pc98/boot2/boot2.c projects/bmake/sys/boot/pc98/btx/lib/Makefile projects/bmake/sys/boot/pc98/loader/Makefile projects/bmake/sys/boot/pc98/loader/main.c projects/bmake/sys/boot/powerpc/ps3/main.c projects/bmake/sys/boot/sparc64/boot1/Makefile projects/bmake/sys/boot/sparc64/loader/Makefile projects/bmake/sys/boot/sparc64/loader/main.c projects/bmake/sys/boot/uboot/common/main.c projects/bmake/sys/boot/usb/Makefile projects/bmake/sys/boot/usb/bsd_kernel.c projects/bmake/sys/boot/usb/bsd_kernel.h projects/bmake/sys/boot/usb/bsd_usbloader_test.c projects/bmake/sys/boot/usb/usb_busdma_loader.c projects/bmake/sys/boot/userboot/libstand/Makefile projects/bmake/sys/boot/userboot/test/test.c projects/bmake/sys/boot/userboot/userboot/main.c projects/bmake/sys/boot/zfs/zfsimpl.c projects/bmake/sys/cam/ata/ata_da.c projects/bmake/sys/cam/ata/ata_pmp.c projects/bmake/sys/cam/cam.c projects/bmake/sys/cam/cam_periph.c projects/bmake/sys/cam/cam_xpt.c projects/bmake/sys/cam/ctl/ctl.c projects/bmake/sys/cam/ctl/ctl.h projects/bmake/sys/cam/ctl/ctl_backend.c projects/bmake/sys/cam/ctl/ctl_backend.h projects/bmake/sys/cam/ctl/ctl_backend_block.c projects/bmake/sys/cam/ctl/ctl_backend_ramdisk.c projects/bmake/sys/cam/ctl/ctl_cmd_table.c projects/bmake/sys/cam/ctl/ctl_error.c projects/bmake/sys/cam/ctl/ctl_error.h projects/bmake/sys/cam/ctl/ctl_frontend.c projects/bmake/sys/cam/ctl/ctl_frontend.h projects/bmake/sys/cam/ctl/ctl_frontend_cam_sim.c projects/bmake/sys/cam/ctl/ctl_frontend_internal.c projects/bmake/sys/cam/ctl/ctl_frontend_iscsi.c projects/bmake/sys/cam/ctl/ctl_frontend_iscsi.h projects/bmake/sys/cam/ctl/ctl_io.h projects/bmake/sys/cam/ctl/ctl_ioctl.h projects/bmake/sys/cam/ctl/ctl_private.h projects/bmake/sys/cam/ctl/ctl_ser_table.c projects/bmake/sys/cam/ctl/ctl_util.c projects/bmake/sys/cam/ctl/scsi_ctl.c projects/bmake/sys/cam/scsi/scsi_all.c projects/bmake/sys/cam/scsi/scsi_all.h projects/bmake/sys/cam/scsi/scsi_cd.c projects/bmake/sys/cam/scsi/scsi_da.c projects/bmake/sys/cam/scsi/scsi_da.h projects/bmake/sys/cam/scsi/scsi_enc_safte.c projects/bmake/sys/cam/scsi/scsi_sa.c projects/bmake/sys/cam/scsi/scsi_sg.c projects/bmake/sys/cam/scsi/scsi_sg.h projects/bmake/sys/cam/scsi/scsi_xpt.c projects/bmake/sys/cddl/boot/zfs/README projects/bmake/sys/cddl/boot/zfs/zfsimpl.h projects/bmake/sys/cddl/boot/zfs/zfssubr.c projects/bmake/sys/cddl/compat/opensolaris/kern/opensolaris_kstat.c projects/bmake/sys/cddl/contrib/opensolaris/common/unicode/u8_textprep.c projects/bmake/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c projects/bmake/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h projects/bmake/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c projects/bmake/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h projects/bmake/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/bmake/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/Makefile.files projects/bmake/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/dtrace/sdt_subr.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_diff.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_bookmark.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/range_tree.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bptree.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_synctask.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/rrwlock.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/bmake/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/bmake/sys/cddl/contrib/opensolaris/uts/common/sys/isa_defs.h projects/bmake/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/bmake/sys/cddl/dev/dtrace/amd64/dtrace_subr.c projects/bmake/sys/cddl/dev/dtrace/dtrace_cddl.h projects/bmake/sys/cddl/dev/dtrace/dtrace_ioctl.c projects/bmake/sys/cddl/dev/dtrace/dtrace_load.c projects/bmake/sys/cddl/dev/dtrace/dtrace_sysctl.c projects/bmake/sys/cddl/dev/dtrace/dtrace_unload.c projects/bmake/sys/cddl/dev/dtrace/i386/dtrace_asm.S projects/bmake/sys/cddl/dev/dtrace/i386/dtrace_isa.c projects/bmake/sys/cddl/dev/dtrace/i386/dtrace_subr.c projects/bmake/sys/cddl/dev/dtrace/mips/dtrace_subr.c projects/bmake/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c projects/bmake/sys/cddl/dev/dtrace/x86/dis_tables.c projects/bmake/sys/cddl/dev/fbt/fbt.c projects/bmake/sys/cddl/dev/sdt/sdt.c projects/bmake/sys/compat/freebsd32/freebsd32_ioctl.c projects/bmake/sys/compat/freebsd32/freebsd32_ioctl.h projects/bmake/sys/compat/freebsd32/freebsd32_misc.c projects/bmake/sys/compat/freebsd32/freebsd32_util.h projects/bmake/sys/compat/ia32/ia32_sysvec.c projects/bmake/sys/compat/ia32/ia32_util.h projects/bmake/sys/compat/linux/linux_futex.c projects/bmake/sys/compat/linux/linux_ioctl.c projects/bmake/sys/compat/ndis/kern_ndis.c projects/bmake/sys/compat/ndis/ndis_var.h projects/bmake/sys/compat/ndis/pe_var.h projects/bmake/sys/compat/x86bios/x86bios.c projects/bmake/sys/conf/Makefile.arm projects/bmake/sys/conf/NOTES projects/bmake/sys/conf/files projects/bmake/sys/conf/files.amd64 projects/bmake/sys/conf/files.arm projects/bmake/sys/conf/files.i386 projects/bmake/sys/conf/files.powerpc projects/bmake/sys/conf/files.sparc64 projects/bmake/sys/conf/kern.mk projects/bmake/sys/conf/kern.pre.mk projects/bmake/sys/conf/kmod.mk projects/bmake/sys/conf/options projects/bmake/sys/conf/options.amd64 projects/bmake/sys/conf/options.arm projects/bmake/sys/conf/options.i386 projects/bmake/sys/conf/options.mips projects/bmake/sys/contrib/dev/acpica/acpica_prep.sh projects/bmake/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_interrupts.c projects/bmake/sys/contrib/ipfilter/netinet/ip_compat.h projects/bmake/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/bmake/sys/contrib/ipfilter/netinet/ip_log.c projects/bmake/sys/contrib/x86emu/x86emu.c projects/bmake/sys/crypto/aesni/aesni.c projects/bmake/sys/crypto/aesni/aesni.h projects/bmake/sys/crypto/aesni/aesni_wrap.c projects/bmake/sys/crypto/via/padlock.c projects/bmake/sys/crypto/via/padlock_cipher.c projects/bmake/sys/crypto/via/padlock_hash.c projects/bmake/sys/ddb/db_command.c projects/bmake/sys/dev/aac/aac.c projects/bmake/sys/dev/aac/aac_pci.c projects/bmake/sys/dev/acpica/Osd/OsdSchedule.c projects/bmake/sys/dev/acpica/acpi.c projects/bmake/sys/dev/acpica/acpi_cpu.c projects/bmake/sys/dev/acpica/acpi_ec.c projects/bmake/sys/dev/acpica/acpi_hpet.c projects/bmake/sys/dev/acpica/acpi_powerres.c projects/bmake/sys/dev/adb/adb_buttons.c projects/bmake/sys/dev/adb/adb_kbd.c projects/bmake/sys/dev/advansys/adwcam.c projects/bmake/sys/dev/ae/if_ae.c projects/bmake/sys/dev/age/if_age.c projects/bmake/sys/dev/agp/agp.c projects/bmake/sys/dev/agp/agp_i810.c projects/bmake/sys/dev/aha/aha.c projects/bmake/sys/dev/ahb/ahb.c projects/bmake/sys/dev/ahci/ahci.c projects/bmake/sys/dev/aic7xxx/aic79xx.c projects/bmake/sys/dev/aic7xxx/aic7xxx.c projects/bmake/sys/dev/alc/if_alc.c projects/bmake/sys/dev/ale/if_ale.c projects/bmake/sys/dev/amr/amr_pci.c projects/bmake/sys/dev/amr/amrio.h projects/bmake/sys/dev/an/if_an.c projects/bmake/sys/dev/asmc/asmc.c projects/bmake/sys/dev/asmc/asmcvar.h projects/bmake/sys/dev/ata/ata-all.c projects/bmake/sys/dev/ata/ata-dma.c projects/bmake/sys/dev/ata/chipsets/ata-ati.c projects/bmake/sys/dev/ath/ah_osdep.c projects/bmake/sys/dev/ath/if_ath.c projects/bmake/sys/dev/ath/if_ath_ahb.c projects/bmake/sys/dev/ath/if_ath_debug.c projects/bmake/sys/dev/ath/if_ath_pci.c projects/bmake/sys/dev/atkbdc/atkbdc.c projects/bmake/sys/dev/bce/if_bce.c projects/bmake/sys/dev/bfe/if_bfe.c projects/bmake/sys/dev/bge/if_bge.c projects/bmake/sys/dev/buslogic/bt.c projects/bmake/sys/dev/bwn/if_bwn.c projects/bmake/sys/dev/bxe/bxe.c projects/bmake/sys/dev/bxe/bxe.h projects/bmake/sys/dev/bxe/bxe_debug.c projects/bmake/sys/dev/bxe/bxe_stats.c projects/bmake/sys/dev/bxe/ecore_reg.h projects/bmake/sys/dev/bxe/ecore_sp.h projects/bmake/sys/dev/cadence/if_cgem.c projects/bmake/sys/dev/cardbus/cardbus.c projects/bmake/sys/dev/cas/if_cas.c projects/bmake/sys/dev/cfe/cfe_console.c projects/bmake/sys/dev/ciss/ciss.c projects/bmake/sys/dev/ciss/cissreg.h projects/bmake/sys/dev/cpuctl/cpuctl.c projects/bmake/sys/dev/cs/if_cs.c projects/bmake/sys/dev/cxgb/cxgb_include.h projects/bmake/sys/dev/cxgb/cxgb_main.c projects/bmake/sys/dev/cxgb/cxgb_sge.c projects/bmake/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c projects/bmake/sys/dev/cxgbe/adapter.h projects/bmake/sys/dev/cxgbe/common/common.h projects/bmake/sys/dev/cxgbe/common/t4_hw.c projects/bmake/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt projects/bmake/sys/dev/cxgbe/firmware/t4fw_interface.h projects/bmake/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt projects/bmake/sys/dev/cxgbe/iw_cxgbe/cm.c projects/bmake/sys/dev/cxgbe/offload.h projects/bmake/sys/dev/cxgbe/t4_main.c projects/bmake/sys/dev/cxgbe/t4_sge.c projects/bmake/sys/dev/cxgbe/t4_tracer.c projects/bmake/sys/dev/cxgbe/tom/t4_cpl_io.c projects/bmake/sys/dev/cxgbe/tom/t4_ddp.c projects/bmake/sys/dev/cxgbe/tom/t4_listen.c projects/bmake/sys/dev/cxgbe/tom/t4_tom.h projects/bmake/sys/dev/dc/dcphy.c projects/bmake/sys/dev/dc/if_dc.c projects/bmake/sys/dev/dc/pnphy.c projects/bmake/sys/dev/de/if_de.c projects/bmake/sys/dev/dpt/dpt_scsi.c projects/bmake/sys/dev/drm/ati_pcigart.c projects/bmake/sys/dev/drm/drm.h projects/bmake/sys/dev/drm/drm_drv.c projects/bmake/sys/dev/drm/drm_pci.c projects/bmake/sys/dev/drm/drm_sarea.h projects/bmake/sys/dev/drm/drm_sysctl.c projects/bmake/sys/dev/drm/via_dmablit.c projects/bmake/sys/dev/drm2/drm.h projects/bmake/sys/dev/drm2/drm_drv.c projects/bmake/sys/dev/drm2/drm_fb_helper.c projects/bmake/sys/dev/drm2/drm_pci.c projects/bmake/sys/dev/drm2/drm_sarea.h projects/bmake/sys/dev/drm2/drm_sysctl.c projects/bmake/sys/dev/drm2/i915/i915_gem.c projects/bmake/sys/dev/drm2/i915/i915_gem_gtt.c projects/bmake/sys/dev/drm2/i915/intel_fb.c projects/bmake/sys/dev/drm2/radeon/radeon_device.c projects/bmake/sys/dev/drm2/radeon/rs690.c projects/bmake/sys/dev/drm2/radeon/rv515.c projects/bmake/sys/dev/drm2/ttm/ttm_page_alloc.c projects/bmake/sys/dev/e1000/e1000_82542.c projects/bmake/sys/dev/e1000/e1000_82571.c projects/bmake/sys/dev/e1000/e1000_82575.c projects/bmake/sys/dev/e1000/e1000_82575.h projects/bmake/sys/dev/e1000/e1000_api.c projects/bmake/sys/dev/e1000/e1000_api.h projects/bmake/sys/dev/e1000/e1000_defines.h projects/bmake/sys/dev/e1000/e1000_hw.h projects/bmake/sys/dev/e1000/e1000_i210.c projects/bmake/sys/dev/e1000/e1000_i210.h projects/bmake/sys/dev/e1000/e1000_ich8lan.c projects/bmake/sys/dev/e1000/e1000_ich8lan.h projects/bmake/sys/dev/e1000/e1000_mac.c projects/bmake/sys/dev/e1000/e1000_mac.h projects/bmake/sys/dev/e1000/e1000_manage.c projects/bmake/sys/dev/e1000/e1000_mbx.c projects/bmake/sys/dev/e1000/e1000_mbx.h projects/bmake/sys/dev/e1000/e1000_nvm.c projects/bmake/sys/dev/e1000/e1000_osdep.h projects/bmake/sys/dev/e1000/e1000_phy.c projects/bmake/sys/dev/e1000/e1000_phy.h projects/bmake/sys/dev/e1000/e1000_regs.h projects/bmake/sys/dev/e1000/e1000_vf.c projects/bmake/sys/dev/e1000/e1000_vf.h projects/bmake/sys/dev/e1000/if_em.c projects/bmake/sys/dev/e1000/if_em.h projects/bmake/sys/dev/e1000/if_igb.c projects/bmake/sys/dev/e1000/if_lem.c projects/bmake/sys/dev/e1000/if_lem.h projects/bmake/sys/dev/et/if_et.c projects/bmake/sys/dev/etherswitch/arswitch/arswitch.c projects/bmake/sys/dev/etherswitch/ip17x/ip175c.c projects/bmake/sys/dev/etherswitch/ip17x/ip175d.c projects/bmake/sys/dev/etherswitch/ip17x/ip17x.c projects/bmake/sys/dev/etherswitch/ip17x/ip17x_var.h projects/bmake/sys/dev/etherswitch/rtl8366/rtl8366rb.c projects/bmake/sys/dev/etherswitch/rtl8366/rtl8366rbvar.h projects/bmake/sys/dev/fb/fbd.c projects/bmake/sys/dev/fb/fbreg.h projects/bmake/sys/dev/fb/vesa.c projects/bmake/sys/dev/firewire/fwohci.c projects/bmake/sys/dev/firewire/if_fwe.c projects/bmake/sys/dev/firewire/if_fwip.c projects/bmake/sys/dev/firewire/sbp.c projects/bmake/sys/dev/fxp/if_fxp.c projects/bmake/sys/dev/fxp/if_fxpvar.h projects/bmake/sys/dev/fxp/inphy.c projects/bmake/sys/dev/glxiic/glxiic.c projects/bmake/sys/dev/gpio/gpioiic.c projects/bmake/sys/dev/hatm/if_hatm_intr.c projects/bmake/sys/dev/hifn/hifn7751.c projects/bmake/sys/dev/hpt27xx/hpt27xx_os_bsd.c projects/bmake/sys/dev/hpt27xx/hpt27xx_osm_bsd.c projects/bmake/sys/dev/hpt27xx/os_bsd.h projects/bmake/sys/dev/hptmv/entry.c projects/bmake/sys/dev/hptmv/hptproc.c projects/bmake/sys/dev/hptrr/hptrr_os_bsd.c projects/bmake/sys/dev/hptrr/hptrr_osm_bsd.c projects/bmake/sys/dev/hwpmc/hwpmc_core.c projects/bmake/sys/dev/hwpmc/hwpmc_core.h projects/bmake/sys/dev/hwpmc/hwpmc_intel.c projects/bmake/sys/dev/hwpmc/hwpmc_logging.c projects/bmake/sys/dev/hwpmc/hwpmc_mod.c projects/bmake/sys/dev/hwpmc/hwpmc_powerpc.c projects/bmake/sys/dev/hwpmc/hwpmc_uncore.h projects/bmake/sys/dev/hwpmc/pmc_events.h projects/bmake/sys/dev/iicbus/iic.c projects/bmake/sys/dev/isci/isci.h projects/bmake/sys/dev/isci/isci_controller.c projects/bmake/sys/dev/isci/isci_sysctl.c projects/bmake/sys/dev/isci/isci_task_request.c projects/bmake/sys/dev/isci/scil/scic_sds_stp_request.c projects/bmake/sys/dev/iscsi/icl.c projects/bmake/sys/dev/iscsi/iscsi.c projects/bmake/sys/dev/iscsi/iscsi.h projects/bmake/sys/dev/iscsi/iscsi_ioctl.h projects/bmake/sys/dev/iscsi_initiator/isc_soc.c projects/bmake/sys/dev/iscsi_initiator/iscsi.c projects/bmake/sys/dev/isp/isp_freebsd.c projects/bmake/sys/dev/isp/isp_pci.c projects/bmake/sys/dev/iwn/if_iwn.c projects/bmake/sys/dev/iwn/if_iwn_chip_cfg.h projects/bmake/sys/dev/iwn/if_iwn_devid.h projects/bmake/sys/dev/iwn/if_iwnvar.h projects/bmake/sys/dev/ixgb/if_ixgb.c projects/bmake/sys/dev/ixgbe/ixgbe.c projects/bmake/sys/dev/ixgbe/ixv.c projects/bmake/sys/dev/jme/if_jme.c projects/bmake/sys/dev/lge/if_lge.c projects/bmake/sys/dev/malo/if_malo.c projects/bmake/sys/dev/malo/if_malo_pci.c projects/bmake/sys/dev/malo/if_malohal.c projects/bmake/sys/dev/md/md.c projects/bmake/sys/dev/mfi/mfi.c projects/bmake/sys/dev/mfi/mfi_cam.c projects/bmake/sys/dev/mfi/mfi_disk.c projects/bmake/sys/dev/mfi/mfi_pci.c projects/bmake/sys/dev/mfi/mfi_syspd.c projects/bmake/sys/dev/mfi/mfi_tbolt.c projects/bmake/sys/dev/mfi/mfivar.h projects/bmake/sys/dev/mge/if_mge.c projects/bmake/sys/dev/mii/brgphy.c projects/bmake/sys/dev/mii/e1000phy.c projects/bmake/sys/dev/mii/ip1000phy.c projects/bmake/sys/dev/mii/jmphy.c projects/bmake/sys/dev/mii/mii.c projects/bmake/sys/dev/mii/miivar.h projects/bmake/sys/dev/mii/nsphy.c projects/bmake/sys/dev/mii/rgephy.c projects/bmake/sys/dev/mii/truephy.c projects/bmake/sys/dev/mlx/mlx.c projects/bmake/sys/dev/mpr/mpr_sas.c projects/bmake/sys/dev/mps/mps.c projects/bmake/sys/dev/mps/mps_sas.c projects/bmake/sys/dev/mps/mps_sas.h projects/bmake/sys/dev/mps/mps_user.c projects/bmake/sys/dev/mps/mpsvar.h projects/bmake/sys/dev/mpt/mpt_cam.c projects/bmake/sys/dev/mrsas/mrsas_fp.c projects/bmake/sys/dev/msk/if_msk.c projects/bmake/sys/dev/mvs/mvs.c projects/bmake/sys/dev/mwl/if_mwl.c projects/bmake/sys/dev/mwl/mwlhal.c projects/bmake/sys/dev/my/if_my.c projects/bmake/sys/dev/nand/nand.c projects/bmake/sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c projects/bmake/sys/dev/netfpga10g/nf10bmac/if_nf10bmac_fdt.c projects/bmake/sys/dev/netfpga10g/nf10bmac/if_nf10bmacreg.h projects/bmake/sys/dev/netmap/netmap.c projects/bmake/sys/dev/netmap/netmap_freebsd.c projects/bmake/sys/dev/netmap/netmap_generic.c projects/bmake/sys/dev/netmap/netmap_kern.h projects/bmake/sys/dev/netmap/netmap_mbq.c projects/bmake/sys/dev/netmap/netmap_mbq.h projects/bmake/sys/dev/netmap/netmap_mem2.c projects/bmake/sys/dev/netmap/netmap_pipe.c projects/bmake/sys/dev/netmap/netmap_vale.c projects/bmake/sys/dev/nfe/if_nfe.c projects/bmake/sys/dev/nge/if_nge.c projects/bmake/sys/dev/nvme/nvme_ctrlr_cmd.c projects/bmake/sys/dev/nxge/xge-osdep.h projects/bmake/sys/dev/oce/oce_hw.c projects/bmake/sys/dev/oce/oce_hw.h projects/bmake/sys/dev/oce/oce_if.c projects/bmake/sys/dev/oce/oce_if.h projects/bmake/sys/dev/oce/oce_mbox.c projects/bmake/sys/dev/oce/oce_util.c projects/bmake/sys/dev/ofw/ofwbus.c projects/bmake/sys/dev/pccard/pccard.c projects/bmake/sys/dev/pccbb/pccbb.c projects/bmake/sys/dev/pccbb/pccbb_isa.c projects/bmake/sys/dev/pci/pci.c projects/bmake/sys/dev/pci/pci_pci.c projects/bmake/sys/dev/pci/pcireg.h projects/bmake/sys/dev/pci/vga_pci.c projects/bmake/sys/dev/puc/puc_pci.c projects/bmake/sys/dev/qlxgb/qla_os.c projects/bmake/sys/dev/qlxgbe/ql_os.c projects/bmake/sys/dev/qlxge/qls_os.c projects/bmake/sys/dev/random/ivy.c projects/bmake/sys/dev/re/if_re.c projects/bmake/sys/dev/rt/if_rt.c projects/bmake/sys/dev/safe/safe.c projects/bmake/sys/dev/sdhci/sdhci.c projects/bmake/sys/dev/sdhci/sdhci_pci.c projects/bmake/sys/dev/sf/if_sf.c projects/bmake/sys/dev/sge/if_sge.c projects/bmake/sys/dev/si/si.c projects/bmake/sys/dev/siba/siba_core.c projects/bmake/sys/dev/sio/sio.c projects/bmake/sys/dev/sis/if_sis.c projects/bmake/sys/dev/sk/if_sk.c projects/bmake/sys/dev/sound/pci/atiixp.c projects/bmake/sys/dev/sound/pci/emu10k1.c projects/bmake/sys/dev/sound/pci/emu10kx.c projects/bmake/sys/dev/sound/pci/envy24.c projects/bmake/sys/dev/sound/pci/envy24ht.c projects/bmake/sys/dev/sound/pci/hda/hdaa_patches.c projects/bmake/sys/dev/sound/pci/hda/hdac.c projects/bmake/sys/dev/sound/pci/hda/hdac.h projects/bmake/sys/dev/sound/pci/hdspe.c projects/bmake/sys/dev/sound/pci/maestro.c projects/bmake/sys/dev/sound/pci/via8233.c projects/bmake/sys/dev/sound/pci/via82c686.c projects/bmake/sys/dev/sound/pcm/buffer.c projects/bmake/sys/dev/sound/pcm/channel.c projects/bmake/sys/dev/sound/pcm/feeder_chain.c projects/bmake/sys/dev/sound/pcm/feeder_eq.c projects/bmake/sys/dev/sound/pcm/feeder_rate.c projects/bmake/sys/dev/sound/pcm/mixer.c projects/bmake/sys/dev/sound/pcm/pcm.h projects/bmake/sys/dev/sound/pcm/sound.c projects/bmake/sys/dev/sound/usb/uaudio.c projects/bmake/sys/dev/ste/if_ste.c projects/bmake/sys/dev/stge/if_stge.c projects/bmake/sys/dev/sym/sym_hipd.c projects/bmake/sys/dev/syscons/syscons.c projects/bmake/sys/dev/syscons/sysmouse.c projects/bmake/sys/dev/ti/if_ti.c projects/bmake/sys/dev/trm/trm.c projects/bmake/sys/dev/tsec/if_tsec_fdt.c projects/bmake/sys/dev/tws/tws.c projects/bmake/sys/dev/tx/if_tx.c projects/bmake/sys/dev/txp/if_txp.c projects/bmake/sys/dev/uart/uart_bus_pci.c projects/bmake/sys/dev/uart/uart_cpu_powerpc.c projects/bmake/sys/dev/uart/uart_dev_ns8250.c projects/bmake/sys/dev/ubsec/ubsec.c projects/bmake/sys/dev/usb/controller/at91dci.c projects/bmake/sys/dev/usb/controller/atmegadci.c projects/bmake/sys/dev/usb/controller/avr32dci.c projects/bmake/sys/dev/usb/controller/dwc_otg.c projects/bmake/sys/dev/usb/controller/dwc_otg.h projects/bmake/sys/dev/usb/controller/dwc_otg_fdt.c projects/bmake/sys/dev/usb/controller/dwc_otgreg.h projects/bmake/sys/dev/usb/controller/ehci.c projects/bmake/sys/dev/usb/controller/musb_otg.c projects/bmake/sys/dev/usb/controller/musb_otg.h projects/bmake/sys/dev/usb/controller/ohci.c projects/bmake/sys/dev/usb/controller/uhci.c projects/bmake/sys/dev/usb/controller/usb_controller.c projects/bmake/sys/dev/usb/controller/uss820dci.c projects/bmake/sys/dev/usb/controller/xhci.c projects/bmake/sys/dev/usb/controller/xhci.h projects/bmake/sys/dev/usb/controller/xhci_pci.c projects/bmake/sys/dev/usb/controller/xhcireg.h projects/bmake/sys/dev/usb/input/uhid.c projects/bmake/sys/dev/usb/input/ukbd.c projects/bmake/sys/dev/usb/net/if_axge.c projects/bmake/sys/dev/usb/net/if_axgereg.h projects/bmake/sys/dev/usb/net/uhso.c projects/bmake/sys/dev/usb/serial/u3g.c projects/bmake/sys/dev/usb/serial/uftdi.c projects/bmake/sys/dev/usb/serial/usb_serial.c projects/bmake/sys/dev/usb/serial/usb_serial.h projects/bmake/sys/dev/usb/storage/umass.c projects/bmake/sys/dev/usb/usb_bus.h projects/bmake/sys/dev/usb/usb_busdma.h projects/bmake/sys/dev/usb/usb_core.h projects/bmake/sys/dev/usb/usb_debug.c projects/bmake/sys/dev/usb/usb_dev.c projects/bmake/sys/dev/usb/usb_device.c projects/bmake/sys/dev/usb/usb_device.h projects/bmake/sys/dev/usb/usb_freebsd.h projects/bmake/sys/dev/usb/usb_freebsd_loader.h projects/bmake/sys/dev/usb/usb_generic.c projects/bmake/sys/dev/usb/usb_hub.c projects/bmake/sys/dev/usb/usb_hub.h projects/bmake/sys/dev/usb/usb_msctest.c projects/bmake/sys/dev/usb/usb_msctest.h projects/bmake/sys/dev/usb/usb_pf.c projects/bmake/sys/dev/usb/usb_process.c projects/bmake/sys/dev/usb/usbdevs projects/bmake/sys/dev/usb/usbdi.h projects/bmake/sys/dev/usb/wlan/if_rsu.c projects/bmake/sys/dev/usb/wlan/if_rsureg.h projects/bmake/sys/dev/usb/wlan/if_rum.c projects/bmake/sys/dev/usb/wlan/if_run.c projects/bmake/sys/dev/usb/wlan/if_uath.c projects/bmake/sys/dev/usb/wlan/if_upgt.c projects/bmake/sys/dev/usb/wlan/if_ural.c projects/bmake/sys/dev/usb/wlan/if_urtw.c projects/bmake/sys/dev/usb/wlan/if_urtwn.c projects/bmake/sys/dev/usb/wlan/if_zyd.c projects/bmake/sys/dev/usb/wlan/if_zydreg.h projects/bmake/sys/dev/vge/if_vge.c projects/bmake/sys/dev/virtio/balloon/virtio_balloon.c projects/bmake/sys/dev/virtio/block/virtio_blk.c projects/bmake/sys/dev/virtio/network/if_vtnet.c projects/bmake/sys/dev/virtio/network/if_vtnetvar.h projects/bmake/sys/dev/virtio/pci/virtio_pci.c projects/bmake/sys/dev/virtio/pci/virtio_pci.h projects/bmake/sys/dev/virtio/virtio.c projects/bmake/sys/dev/virtio/virtio.h projects/bmake/sys/dev/virtio/virtqueue.c projects/bmake/sys/dev/virtio/virtqueue.h projects/bmake/sys/dev/vmware/vmxnet3/if_vmx.c projects/bmake/sys/dev/vmware/vmxnet3/if_vmxvar.h projects/bmake/sys/dev/vr/if_vr.c projects/bmake/sys/dev/vt/font/vt_font_default.c projects/bmake/sys/dev/vt/hw/efifb/efifb.c projects/bmake/sys/dev/vt/hw/fb/vt_fb.c projects/bmake/sys/dev/vt/hw/fb/vt_fb.h projects/bmake/sys/dev/vt/hw/ofwfb/ofwfb.c projects/bmake/sys/dev/vt/vt.h projects/bmake/sys/dev/vt/vt_buf.c projects/bmake/sys/dev/vt/vt_consolectl.c projects/bmake/sys/dev/vt/vt_core.c projects/bmake/sys/dev/vt/vt_sysmouse.c projects/bmake/sys/dev/vte/if_vte.c projects/bmake/sys/dev/vxge/vxge-osdep.h projects/bmake/sys/dev/wb/if_wb.c projects/bmake/sys/dev/wpi/if_wpi.c projects/bmake/sys/dev/xen/balloon/balloon.c projects/bmake/sys/dev/xen/console/console.c projects/bmake/sys/dev/xen/control/control.c projects/bmake/sys/dev/xen/timer/timer.c projects/bmake/sys/dev/xen/xenpci/xenpci.c projects/bmake/sys/dev/xen/xenpci/xenpcivar.h projects/bmake/sys/fs/cd9660/cd9660_lookup.c projects/bmake/sys/fs/devfs/devfs_vnops.c projects/bmake/sys/fs/ext2fs/ext2_vnops.c projects/bmake/sys/fs/msdosfs/msdosfs_lookup.c projects/bmake/sys/fs/msdosfs/msdosfs_vnops.c projects/bmake/sys/fs/nandfs/nandfs.h projects/bmake/sys/fs/nandfs/nandfs_vnops.c projects/bmake/sys/fs/nfs/nfs.h projects/bmake/sys/fs/nfs/nfs_commonkrpc.c projects/bmake/sys/fs/nfs/nfs_commonport.c projects/bmake/sys/fs/nfs/nfs_commonsubs.c projects/bmake/sys/fs/nfs/nfs_var.h projects/bmake/sys/fs/nfs/nfsclstate.h projects/bmake/sys/fs/nfs/nfsdport.h projects/bmake/sys/fs/nfs/nfsport.h projects/bmake/sys/fs/nfs/nfsproto.h projects/bmake/sys/fs/nfs/nfsrvstate.h projects/bmake/sys/fs/nfsclient/nfs_clstate.c projects/bmake/sys/fs/nfsclient/nfs_clvnops.c projects/bmake/sys/fs/nfsserver/nfs_nfsdcache.c projects/bmake/sys/fs/nfsserver/nfs_nfsdkrpc.c projects/bmake/sys/fs/nfsserver/nfs_nfsdport.c projects/bmake/sys/fs/nfsserver/nfs_nfsdserv.c projects/bmake/sys/fs/nfsserver/nfs_nfsdsocket.c projects/bmake/sys/fs/nfsserver/nfs_nfsdstate.c projects/bmake/sys/fs/nfsserver/nfs_nfsdsubs.c projects/bmake/sys/fs/nullfs/null_vnops.c projects/bmake/sys/fs/tmpfs/tmpfs.h projects/bmake/sys/fs/tmpfs/tmpfs_fifoops.c projects/bmake/sys/fs/tmpfs/tmpfs_fifoops.h projects/bmake/sys/fs/tmpfs/tmpfs_subr.c projects/bmake/sys/fs/tmpfs/tmpfs_vfsops.c projects/bmake/sys/fs/tmpfs/tmpfs_vnops.c projects/bmake/sys/fs/tmpfs/tmpfs_vnops.h projects/bmake/sys/gdb/gdb_cons.c projects/bmake/sys/geom/concat/g_concat.c projects/bmake/sys/geom/eli/g_eli.c projects/bmake/sys/geom/eli/g_eli_key_cache.c projects/bmake/sys/geom/gate/g_gate.c projects/bmake/sys/geom/geom_disk.c projects/bmake/sys/geom/geom_event.c projects/bmake/sys/geom/geom_kern.c projects/bmake/sys/geom/geom_subr.c projects/bmake/sys/geom/journal/g_journal.c projects/bmake/sys/geom/label/g_label.c projects/bmake/sys/geom/label/g_label.h projects/bmake/sys/geom/linux_lvm/g_linux_lvm.c projects/bmake/sys/geom/mirror/g_mirror.c projects/bmake/sys/geom/part/g_part.c projects/bmake/sys/geom/part/g_part.h projects/bmake/sys/geom/part/g_part_apm.c projects/bmake/sys/geom/part/g_part_bsd.c projects/bmake/sys/geom/part/g_part_gpt.c projects/bmake/sys/geom/part/g_part_ldm.c projects/bmake/sys/geom/part/g_part_mbr.c projects/bmake/sys/geom/part/g_part_pc98.c projects/bmake/sys/geom/raid/g_raid.c projects/bmake/sys/geom/raid/g_raid.h projects/bmake/sys/geom/raid/tr_raid1.c projects/bmake/sys/geom/raid/tr_raid1e.c projects/bmake/sys/geom/raid3/g_raid3.c projects/bmake/sys/geom/shsec/g_shsec.c projects/bmake/sys/geom/stripe/g_stripe.c projects/bmake/sys/geom/uzip/g_uzip.c projects/bmake/sys/geom/vinum/geom_vinum.c projects/bmake/sys/geom/virstor/g_virstor.c projects/bmake/sys/i386/acpica/acpi_machdep.c projects/bmake/sys/i386/bios/apm.c projects/bmake/sys/i386/conf/GENERIC projects/bmake/sys/i386/conf/NOTES projects/bmake/sys/i386/conf/PAE projects/bmake/sys/i386/conf/XEN projects/bmake/sys/i386/i386/i686_mem.c projects/bmake/sys/i386/i386/machdep.c projects/bmake/sys/i386/i386/mp_machdep.c projects/bmake/sys/i386/i386/mp_watchdog.c projects/bmake/sys/i386/i386/pmap.c projects/bmake/sys/i386/i386/sys_machdep.c projects/bmake/sys/i386/i386/trap.c projects/bmake/sys/i386/include/cpu.h projects/bmake/sys/i386/include/npx.h projects/bmake/sys/i386/isa/npx.c projects/bmake/sys/i386/pci/pci_cfgreg.c projects/bmake/sys/i386/pci/pci_pir.c projects/bmake/sys/i386/xen/pmap.c projects/bmake/sys/kern/imgact_elf.c projects/bmake/sys/kern/kern_clocksource.c projects/bmake/sys/kern/kern_cons.c projects/bmake/sys/kern/kern_cpu.c projects/bmake/sys/kern/kern_cpuset.c projects/bmake/sys/kern/kern_descrip.c projects/bmake/sys/kern/kern_dtrace.c projects/bmake/sys/kern/kern_event.c projects/bmake/sys/kern/kern_exec.c projects/bmake/sys/kern/kern_exit.c projects/bmake/sys/kern/kern_fork.c projects/bmake/sys/kern/kern_intr.c projects/bmake/sys/kern/kern_ktr.c projects/bmake/sys/kern/kern_ktrace.c projects/bmake/sys/kern/kern_linker.c projects/bmake/sys/kern/kern_lockf.c projects/bmake/sys/kern/kern_loginclass.c projects/bmake/sys/kern/kern_malloc.c projects/bmake/sys/kern/kern_mbuf.c projects/bmake/sys/kern/kern_mib.c projects/bmake/sys/kern/kern_ntptime.c projects/bmake/sys/kern/kern_osd.c projects/bmake/sys/kern/kern_pmc.c projects/bmake/sys/kern/kern_poll.c projects/bmake/sys/kern/kern_priv.c projects/bmake/sys/kern/kern_proc.c projects/bmake/sys/kern/kern_shutdown.c projects/bmake/sys/kern/kern_sig.c projects/bmake/sys/kern/kern_sysctl.c projects/bmake/sys/kern/kern_tc.c projects/bmake/sys/kern/kern_thread.c projects/bmake/sys/kern/kern_timeout.c projects/bmake/sys/kern/link_elf.c projects/bmake/sys/kern/sched_ule.c projects/bmake/sys/kern/subr_bus.c projects/bmake/sys/kern/subr_capability.c projects/bmake/sys/kern/subr_kdb.c projects/bmake/sys/kern/subr_mbpool.c projects/bmake/sys/kern/subr_msgbuf.c projects/bmake/sys/kern/subr_param.c projects/bmake/sys/kern/subr_prf.c projects/bmake/sys/kern/subr_rman.c projects/bmake/sys/kern/subr_sleepqueue.c projects/bmake/sys/kern/subr_smp.c projects/bmake/sys/kern/subr_taskqueue.c projects/bmake/sys/kern/subr_terminal.c projects/bmake/sys/kern/subr_witness.c projects/bmake/sys/kern/sys_capability.c projects/bmake/sys/kern/sys_generic.c projects/bmake/sys/kern/sys_pipe.c projects/bmake/sys/kern/sysv_msg.c projects/bmake/sys/kern/sysv_sem.c projects/bmake/sys/kern/sysv_shm.c projects/bmake/sys/kern/tty.c projects/bmake/sys/kern/uipc_accf.c projects/bmake/sys/kern/uipc_mbuf.c projects/bmake/sys/kern/uipc_shm.c projects/bmake/sys/kern/uipc_sockbuf.c projects/bmake/sys/kern/uipc_socket.c projects/bmake/sys/kern/uipc_syscalls.c projects/bmake/sys/kern/uipc_usrreq.c projects/bmake/sys/kern/vfs_bio.c projects/bmake/sys/kern/vfs_init.c projects/bmake/sys/kern/vfs_lookup.c projects/bmake/sys/kern/vfs_mountroot.c projects/bmake/sys/kern/vfs_subr.c projects/bmake/sys/kern/vfs_syscalls.c projects/bmake/sys/kern/vfs_vnops.c projects/bmake/sys/libkern/iconv.c projects/bmake/sys/libkern/iconv_ucs.c projects/bmake/sys/mips/atheros/ar71xx_gpio.c projects/bmake/sys/mips/atheros/ar71xx_machdep.c projects/bmake/sys/mips/atheros/if_arge.c projects/bmake/sys/mips/atheros/uart_dev_ar933x.c projects/bmake/sys/mips/cavium/usb/octusb.c projects/bmake/sys/mips/conf/AP93.hints projects/bmake/sys/mips/conf/AR933X_BASE projects/bmake/sys/mips/conf/BERI_DE4_BASE projects/bmake/sys/mips/conf/BERI_NETFPGA_MDROOT projects/bmake/sys/mips/idt/if_kr.c projects/bmake/sys/mips/include/elf.h projects/bmake/sys/mips/mips/dump_machdep.c projects/bmake/sys/mips/mips/pmap.c projects/bmake/sys/mips/mips/trap.c projects/bmake/sys/mips/rmi/rootfs_list.txt projects/bmake/sys/mips/rt305x/uart_dev_rt305x.c projects/bmake/sys/modules/Makefile projects/bmake/sys/modules/acpi/acpi/Makefile projects/bmake/sys/modules/agp/Makefile projects/bmake/sys/modules/aic7xxx/ahd/Makefile projects/bmake/sys/modules/bios/smapi/Makefile projects/bmake/sys/modules/bxe/Makefile projects/bmake/sys/modules/ctl/Makefile projects/bmake/sys/modules/cxgbe/if_cxgbe/Makefile projects/bmake/sys/modules/cxgbe/t4_firmware/Makefile projects/bmake/sys/modules/cxgbe/t5_firmware/Makefile projects/bmake/sys/modules/dtrace/dtrace/Makefile projects/bmake/sys/modules/dtrace/fasttrap/Makefile projects/bmake/sys/modules/geom/Makefile projects/bmake/sys/modules/geom/geom_part/Makefile projects/bmake/sys/modules/hwpmc/Makefile projects/bmake/sys/modules/i2c/controllers/Makefile projects/bmake/sys/modules/krpc/Makefile projects/bmake/sys/modules/netfpga10g/nf10bmac/Makefile projects/bmake/sys/modules/ppc/Makefile projects/bmake/sys/modules/sound/driver/maestro/Makefile projects/bmake/sys/modules/sound/driver/uaudio/Makefile projects/bmake/sys/modules/sound/sound/Makefile projects/bmake/sys/modules/svr4/README projects/bmake/sys/modules/ufs/Makefile projects/bmake/sys/modules/usb/Makefile projects/bmake/sys/modules/usb/dwc_otg/Makefile projects/bmake/sys/modules/zfs/Makefile projects/bmake/sys/net/bpf.c projects/bmake/sys/net/bpf_zerocopy.c projects/bmake/sys/net/ieee8023ad_lacp.c projects/bmake/sys/net/ieee_oui.h projects/bmake/sys/net/if.c projects/bmake/sys/net/if_bridge.c projects/bmake/sys/net/if_lagg.c projects/bmake/sys/net/if_media.h projects/bmake/sys/net/if_spppsubr.c projects/bmake/sys/net/if_stf.c projects/bmake/sys/net/if_tap.c projects/bmake/sys/net/if_tun.c projects/bmake/sys/net/if_var.h projects/bmake/sys/net/ifq.h projects/bmake/sys/net/netisr.c projects/bmake/sys/net/netmap.h projects/bmake/sys/net/netmap_user.h projects/bmake/sys/net/route.c projects/bmake/sys/net/rtsock.c projects/bmake/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/bmake/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/bmake/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c projects/bmake/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c projects/bmake/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c projects/bmake/sys/netgraph/ng_base.c projects/bmake/sys/netgraph/ng_eiface.c projects/bmake/sys/netgraph/ng_mppc.c projects/bmake/sys/netgraph/ng_pipe.c projects/bmake/sys/netgraph/ng_socket.c projects/bmake/sys/netinet/in.h projects/bmake/sys/netinet/in_gif.c projects/bmake/sys/netinet/in_mcast.c projects/bmake/sys/netinet/in_pcb.c projects/bmake/sys/netinet/in_pcb.h projects/bmake/sys/netinet/in_pcbgroup.c projects/bmake/sys/netinet/in_proto.c projects/bmake/sys/netinet/in_rss.c projects/bmake/sys/netinet/in_rss.h projects/bmake/sys/netinet/ip_dummynet.h projects/bmake/sys/netinet/ip_fw.h projects/bmake/sys/netinet/ip_input.c projects/bmake/sys/netinet/ip_options.c projects/bmake/sys/netinet/ip_output.c projects/bmake/sys/netinet/sctp_asconf.c projects/bmake/sys/netinet/sctp_auth.c projects/bmake/sys/netinet/sctp_indata.c projects/bmake/sys/netinet/sctp_input.c projects/bmake/sys/netinet/sctp_os_bsd.h projects/bmake/sys/netinet/sctp_output.c projects/bmake/sys/netinet/sctp_pcb.c projects/bmake/sys/netinet/sctp_sysctl.c projects/bmake/sys/netinet/sctp_timer.c projects/bmake/sys/netinet/sctp_uio.h projects/bmake/sys/netinet/sctp_usrreq.c projects/bmake/sys/netinet/sctp_var.h projects/bmake/sys/netinet/sctputil.c projects/bmake/sys/netinet/sctputil.h projects/bmake/sys/netinet/tcp_input.c projects/bmake/sys/netinet/tcp_output.c projects/bmake/sys/netinet/tcp_subr.c projects/bmake/sys/netinet/tcp_syncache.c projects/bmake/sys/netinet/tcp_timer.c projects/bmake/sys/netinet/tcp_timewait.c projects/bmake/sys/netinet/tcp_var.h projects/bmake/sys/netinet/udp_usrreq.c projects/bmake/sys/netinet/udp_var.h projects/bmake/sys/netinet6/in6.h projects/bmake/sys/netinet6/in6_gif.c projects/bmake/sys/netinet6/in6_mcast.c projects/bmake/sys/netinet6/in6_pcb.c projects/bmake/sys/netinet6/in6_pcbgroup.c projects/bmake/sys/netinet6/ip6_forward.c projects/bmake/sys/netinet6/ip6_ipsec.c projects/bmake/sys/netinet6/ip6_ipsec.h projects/bmake/sys/netinet6/ip6_output.c projects/bmake/sys/netinet6/ip6_var.h projects/bmake/sys/netinet6/ip6protosw.h projects/bmake/sys/netinet6/mld6.c projects/bmake/sys/netinet6/nd6.c projects/bmake/sys/netinet6/nd6_nbr.c projects/bmake/sys/netipsec/ipsec6.h projects/bmake/sys/netipsec/ipsec_input.c projects/bmake/sys/netipsec/ipsec_output.c projects/bmake/sys/netipsec/key.c projects/bmake/sys/netipsec/key_debug.c projects/bmake/sys/netipsec/xform_ipip.c projects/bmake/sys/netpfil/ipfw/ip_dn_io.c projects/bmake/sys/netpfil/ipfw/ip_dummynet.c projects/bmake/sys/netpfil/ipfw/ip_fw2.c projects/bmake/sys/netpfil/ipfw/ip_fw_nat.c projects/bmake/sys/netpfil/ipfw/ip_fw_table.c projects/bmake/sys/netpfil/pf/if_pfsync.c projects/bmake/sys/netpfil/pf/pf.c projects/bmake/sys/netpfil/pf/pf_norm.c projects/bmake/sys/nfs/nfs_fha.c projects/bmake/sys/nfsserver/nfs_serv.c projects/bmake/sys/ofed/drivers/infiniband/hw/mlx4/main.c projects/bmake/sys/ofed/drivers/infiniband/hw/mlx4/mcg.c projects/bmake/sys/ofed/drivers/infiniband/hw/mlx4/qp.c projects/bmake/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/bmake/sys/ofed/drivers/net/mlx4/en_main.c projects/bmake/sys/ofed/drivers/net/mlx4/en_netdev.c projects/bmake/sys/ofed/drivers/net/mlx4/main.c projects/bmake/sys/ofed/include/linux/bitops.h projects/bmake/sys/ofed/include/linux/linux_compat.c projects/bmake/sys/ofed/include/linux/module.h projects/bmake/sys/pc98/cbus/sio.c projects/bmake/sys/pc98/pc98/canbus.c projects/bmake/sys/pc98/pc98/machdep.c projects/bmake/sys/pc98/pc98/pc98_machdep.c projects/bmake/sys/pci/if_rl.c projects/bmake/sys/powerpc/aim/mmu_oea.c projects/bmake/sys/powerpc/aim/mmu_oea64.c projects/bmake/sys/powerpc/aim/trap.c projects/bmake/sys/powerpc/aim/trap_subr32.S projects/bmake/sys/powerpc/aim/trap_subr64.S projects/bmake/sys/powerpc/booke/pmap.c projects/bmake/sys/powerpc/conf/GENERIC projects/bmake/sys/powerpc/conf/GENERIC64 projects/bmake/sys/powerpc/include/endian.h projects/bmake/sys/powerpc/include/spr.h projects/bmake/sys/powerpc/powerpc/cpu.c projects/bmake/sys/powerpc/powerpc/dump_machdep.c projects/bmake/sys/powerpc/powerpc/elf32_machdep.c projects/bmake/sys/powerpc/powerpc/intr_machdep.c projects/bmake/sys/powerpc/powerpc/mem.c projects/bmake/sys/powerpc/powerpc/mmu_if.m projects/bmake/sys/powerpc/powerpc/mp_machdep.c projects/bmake/sys/powerpc/powerpc/platform.c projects/bmake/sys/powerpc/powerpc/pmap_dispatch.c projects/bmake/sys/powerpc/powerpc/sigcode32.S projects/bmake/sys/powerpc/powerpc/sigcode64.S projects/bmake/sys/powerpc/ps3/platform_ps3.c projects/bmake/sys/powerpc/ps3/ps3_syscons.c projects/bmake/sys/powerpc/ps3/ps3bus.c projects/bmake/sys/powerpc/ps3/ps3pic.c projects/bmake/sys/rpc/krpc.h projects/bmake/sys/rpc/svc.c projects/bmake/sys/rpc/svc.h projects/bmake/sys/rpc/svc_generic.c projects/bmake/sys/rpc/svc_vc.c projects/bmake/sys/security/mac_biba/mac_biba.c projects/bmake/sys/security/mac_bsdextended/mac_bsdextended.c projects/bmake/sys/security/mac_ifoff/mac_ifoff.c projects/bmake/sys/security/mac_lomac/mac_lomac.c projects/bmake/sys/security/mac_mls/mac_mls.c projects/bmake/sys/security/mac_portacl/mac_portacl.c projects/bmake/sys/sparc64/conf/GENERIC projects/bmake/sys/sparc64/pci/psycho.c projects/bmake/sys/sparc64/sparc64/dump_machdep.c projects/bmake/sys/sparc64/sparc64/pmap.c projects/bmake/sys/sys/buf.h projects/bmake/sys/sys/bus.h projects/bmake/sys/sys/capsicum.h projects/bmake/sys/sys/cdefs.h projects/bmake/sys/sys/conf.h projects/bmake/sys/sys/cons.h projects/bmake/sys/sys/cpuctl.h projects/bmake/sys/sys/cpuset.h projects/bmake/sys/sys/disklabel.h projects/bmake/sys/sys/dtrace_bsd.h projects/bmake/sys/sys/efi.h projects/bmake/sys/sys/event.h projects/bmake/sys/sys/fbio.h projects/bmake/sys/sys/filedesc.h projects/bmake/sys/sys/fnv_hash.h projects/bmake/sys/sys/gpt.h projects/bmake/sys/sys/kerneldump.h projects/bmake/sys/sys/link_elf.h projects/bmake/sys/sys/linker_set.h projects/bmake/sys/sys/malloc.h projects/bmake/sys/sys/mbpool.h projects/bmake/sys/sys/mbuf.h projects/bmake/sys/sys/mman.h projects/bmake/sys/sys/param.h projects/bmake/sys/sys/pmc.h projects/bmake/sys/sys/proc.h projects/bmake/sys/sys/rman.h projects/bmake/sys/sys/sdt.h projects/bmake/sys/sys/sf_buf.h projects/bmake/sys/sys/signalvar.h projects/bmake/sys/sys/stat.h projects/bmake/sys/sys/sysctl.h projects/bmake/sys/sys/sysent.h projects/bmake/sys/sys/taskqueue.h projects/bmake/sys/sys/terminal.h projects/bmake/sys/sys/time.h projects/bmake/sys/sys/vnode.h projects/bmake/sys/tools/fdt/make_dtb.sh projects/bmake/sys/ufs/ffs/ffs_rawread.c projects/bmake/sys/ufs/ffs/ffs_vfsops.c projects/bmake/sys/ufs/ufs/ufs_vnops.c projects/bmake/sys/vm/memguard.c projects/bmake/sys/vm/pmap.h projects/bmake/sys/vm/redzone.c projects/bmake/sys/vm/uma_core.c projects/bmake/sys/vm/vm_extern.h projects/bmake/sys/vm/vm_fault.c projects/bmake/sys/vm/vm_glue.c projects/bmake/sys/vm/vm_init.c projects/bmake/sys/vm/vm_kern.c projects/bmake/sys/vm/vm_map.c projects/bmake/sys/vm/vm_map.h projects/bmake/sys/vm/vm_mmap.c projects/bmake/sys/vm/vm_object.c projects/bmake/sys/vm/vm_object.h projects/bmake/sys/vm/vm_page.c projects/bmake/sys/vm/vm_page.h projects/bmake/sys/vm/vm_pageout.c projects/bmake/sys/vm/vm_phys.c projects/bmake/sys/vm/vm_radix.c projects/bmake/sys/vm/vm_reserv.c projects/bmake/sys/vm/vm_unix.c projects/bmake/sys/vm/vm_zeroidle.c projects/bmake/sys/x86/acpica/madt.c projects/bmake/sys/x86/cpufreq/hwpstate.c projects/bmake/sys/x86/include/apicvar.h projects/bmake/sys/x86/include/segments.h projects/bmake/sys/x86/include/specialreg.h projects/bmake/sys/x86/iommu/intel_drv.c projects/bmake/sys/x86/iommu/intel_utils.c projects/bmake/sys/x86/isa/isa.c projects/bmake/sys/x86/pci/pci_bus.c projects/bmake/sys/x86/x86/busdma_bounce.c projects/bmake/sys/x86/x86/dump_machdep.c projects/bmake/sys/x86/x86/io_apic.c projects/bmake/sys/x86/x86/local_apic.c projects/bmake/sys/x86/x86/mca.c projects/bmake/sys/x86/x86/tsc.c projects/bmake/sys/x86/xen/hvm.c projects/bmake/sys/x86/xen/pv.c projects/bmake/sys/xen/gnttab.c projects/bmake/sys/xen/gnttab.h projects/bmake/sys/xen/xenstore/xenstore.c projects/bmake/tests/sys/netinet/Makefile projects/bmake/tests/sys/netinet/fibs_test.sh projects/bmake/tests/sys/netinet/udp_dontroute.c projects/bmake/tools/bsdbox/Makefile projects/bmake/tools/build/mk/OptionalObsoleteFiles.inc projects/bmake/tools/build/options/WITHOUT_BINUTILS projects/bmake/tools/regression/README projects/bmake/tools/regression/file/flock/flock.c projects/bmake/tools/regression/filemon/Makefile projects/bmake/tools/regression/lib/libc/stdio/test-fmemopen.c projects/bmake/tools/regression/net80211/ccmp/test_ccmp.c projects/bmake/tools/regression/net80211/wep/test_wep.c projects/bmake/tools/test/dtrace/Makefile projects/bmake/tools/test/netfibs/reflect.c projects/bmake/tools/tools/README projects/bmake/tools/tools/cxgbetool/cxgbetool.c projects/bmake/tools/tools/ether_reflect/ether_reflect.1 projects/bmake/tools/tools/fixwhite/fixwhite.1 projects/bmake/tools/tools/makeroot/makeroot.sh projects/bmake/tools/tools/mcgrab/mcgrab.1 projects/bmake/tools/tools/mctest/mctest.1 projects/bmake/tools/tools/nanobsd/nanobsd.sh projects/bmake/tools/tools/nanobsd/rescue/build.sh projects/bmake/tools/tools/nanobsd/rescue/common projects/bmake/tools/tools/nanobsd/rescue/merge.sh projects/bmake/tools/tools/nanobsd/rescue/rescue_amd64.conf projects/bmake/tools/tools/nanobsd/rescue/rescue_i386.conf projects/bmake/tools/tools/net80211/stumbler/Makefile projects/bmake/tools/tools/sysbuild/README projects/bmake/tools/tools/sysdoc/sysdoc.sh projects/bmake/tools/tools/vimage/vimage.8 projects/bmake/tools/tools/vt/fontcvt/terminus.sh projects/bmake/tools/tools/vt/mkkfont/mkkfont.c projects/bmake/usr.bin/Makefile projects/bmake/usr.bin/ar/ar.1 projects/bmake/usr.bin/at/at.man projects/bmake/usr.bin/bc/Makefile.depend projects/bmake/usr.bin/bluetooth/bthost/bthost.1 projects/bmake/usr.bin/bluetooth/btsockstat/btsockstat.1 projects/bmake/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.1 projects/bmake/usr.bin/bmake/Makefile projects/bmake/usr.bin/bmake/Makefile.inc projects/bmake/usr.bin/bmake/config.h projects/bmake/usr.bin/brandelf/brandelf.1 projects/bmake/usr.bin/bsdiff/bsdiff/bsdiff.1 projects/bmake/usr.bin/bsdiff/bspatch/bspatch.1 projects/bmake/usr.bin/calendar/Makefile projects/bmake/usr.bin/calendar/calendars/calendar.freebsd projects/bmake/usr.bin/calendar/calendars/calendar.holiday projects/bmake/usr.bin/clang/clang-tblgen/Makefile projects/bmake/usr.bin/clang/clang-tblgen/Makefile.depend projects/bmake/usr.bin/clang/clang.prog.mk projects/bmake/usr.bin/clang/clang/Makefile projects/bmake/usr.bin/clang/clang/Makefile.depend projects/bmake/usr.bin/clang/tblgen/Makefile projects/bmake/usr.bin/clang/tblgen/Makefile.depend projects/bmake/usr.bin/compile_et/Makefile projects/bmake/usr.bin/cpuset/cpuset.1 projects/bmake/usr.bin/ctlstat/ctlstat.8 projects/bmake/usr.bin/dtc/dtc.cc projects/bmake/usr.bin/dtc/fdt.cc projects/bmake/usr.bin/dtc/input_buffer.cc projects/bmake/usr.bin/ee/Makefile projects/bmake/usr.bin/ee/Makefile.depend projects/bmake/usr.bin/elf2aout/elf2aout.1 projects/bmake/usr.bin/elfdump/elfdump.1 projects/bmake/usr.bin/elfdump/elfdump.c projects/bmake/usr.bin/fetch/fetch.1 projects/bmake/usr.bin/file/Makefile projects/bmake/usr.bin/fstat/fuser.1 projects/bmake/usr.bin/ftp/Makefile projects/bmake/usr.bin/ftp/Makefile.depend projects/bmake/usr.bin/gcore/Makefile projects/bmake/usr.bin/gcore/elfcore.c projects/bmake/usr.bin/getconf/Makefile.depend projects/bmake/usr.bin/getconf/getconf.1 projects/bmake/usr.bin/gprof/gprof.h projects/bmake/usr.bin/grep/Makefile.depend projects/bmake/usr.bin/grep/grep.c projects/bmake/usr.bin/grep/queue.c projects/bmake/usr.bin/grep/util.c projects/bmake/usr.bin/gzip/gzip.1 projects/bmake/usr.bin/gzip/zuncompress.c projects/bmake/usr.bin/iconv/iconv.c projects/bmake/usr.bin/ipcs/ipcs.1 projects/bmake/usr.bin/iscsictl/iscsictl.8 projects/bmake/usr.bin/iscsictl/iscsictl.c projects/bmake/usr.bin/kdump/Makefile.depend projects/bmake/usr.bin/ktrdump/ktrdump.8 projects/bmake/usr.bin/ldd/ldd.1 projects/bmake/usr.bin/less/Makefile projects/bmake/usr.bin/less/Makefile.depend projects/bmake/usr.bin/lessecho/Makefile.depend projects/bmake/usr.bin/lesskey/Makefile.depend projects/bmake/usr.bin/lockf/lockf.1 projects/bmake/usr.bin/logins/logins.1 projects/bmake/usr.bin/look/look.1 projects/bmake/usr.bin/look/look.c projects/bmake/usr.bin/m4/Makefile projects/bmake/usr.bin/m4/eval.c projects/bmake/usr.bin/m4/extern.h projects/bmake/usr.bin/m4/gnum4.c projects/bmake/usr.bin/m4/lib/ohash.h projects/bmake/usr.bin/m4/lib/ohash_init.3 projects/bmake/usr.bin/m4/lib/ohash_interval.3 projects/bmake/usr.bin/m4/look.c projects/bmake/usr.bin/m4/m4.1 projects/bmake/usr.bin/m4/main.c projects/bmake/usr.bin/m4/misc.c projects/bmake/usr.bin/make/Makefile projects/bmake/usr.bin/mandoc/Makefile projects/bmake/usr.bin/mesg/mesg.c projects/bmake/usr.bin/mkcsmapper/mkcsmapper.1 projects/bmake/usr.bin/mkesdb/mkesdb.1 projects/bmake/usr.bin/mkimg/Makefile (contents, props changed) projects/bmake/usr.bin/mkimg/apm.c projects/bmake/usr.bin/mkimg/bsd.c projects/bmake/usr.bin/mkimg/ebr.c projects/bmake/usr.bin/mkimg/gpt.c projects/bmake/usr.bin/mkimg/mbr.c projects/bmake/usr.bin/mkimg/mkimg.1 (contents, props changed) projects/bmake/usr.bin/mkimg/mkimg.c projects/bmake/usr.bin/mkimg/mkimg.h projects/bmake/usr.bin/mkimg/pc98.c projects/bmake/usr.bin/mkimg/scheme.c (contents, props changed) projects/bmake/usr.bin/mkimg/scheme.h (contents, props changed) projects/bmake/usr.bin/mkimg/vtoc8.c projects/bmake/usr.bin/mkulzma/mkulzma.8 projects/bmake/usr.bin/mkuzip/mkuzip.8 projects/bmake/usr.bin/msgs/Makefile projects/bmake/usr.bin/msgs/Makefile.depend projects/bmake/usr.bin/ncal/Makefile projects/bmake/usr.bin/ncal/Makefile.depend projects/bmake/usr.bin/ncal/ncal.1 projects/bmake/usr.bin/netstat/inet.c projects/bmake/usr.bin/netstat/main.c projects/bmake/usr.bin/netstat/netstat.1 projects/bmake/usr.bin/netstat/netstat.h projects/bmake/usr.bin/netstat/route.c projects/bmake/usr.bin/patch/patch.1 projects/bmake/usr.bin/patch/patch.c projects/bmake/usr.bin/patch/pch.c projects/bmake/usr.bin/patch/pch.h projects/bmake/usr.bin/printf/printf.c projects/bmake/usr.bin/printf/tests/Makefile projects/bmake/usr.bin/printf/tests/regress.m2.out projects/bmake/usr.bin/printf/tests/regress.sh projects/bmake/usr.bin/procstat/Makefile projects/bmake/usr.bin/procstat/procstat.1 projects/bmake/usr.bin/procstat/procstat.c projects/bmake/usr.bin/procstat/procstat.h projects/bmake/usr.bin/procstat/procstat_files.c projects/bmake/usr.bin/procstat/procstat_vm.c projects/bmake/usr.bin/rctl/rctl.8 projects/bmake/usr.bin/revoke/revoke.1 projects/bmake/usr.bin/rpcgen/rpc_main.c projects/bmake/usr.bin/rpcgen/rpc_sample.c projects/bmake/usr.bin/sed/main.c projects/bmake/usr.bin/sed/sed.1 projects/bmake/usr.bin/showmount/showmount.8 projects/bmake/usr.bin/sockstat/sockstat.1 projects/bmake/usr.bin/sort/Makefile.depend projects/bmake/usr.bin/ssh-copy-id/ssh-copy-id.1 projects/bmake/usr.bin/stat/stat.1 projects/bmake/usr.bin/stat/stat.c projects/bmake/usr.bin/svn/lib/libapr/Makefile projects/bmake/usr.bin/svn/lib/libapr/apr.h projects/bmake/usr.bin/svn/lib/libapr/apr_private.h projects/bmake/usr.bin/svn/svn/Makefile projects/bmake/usr.bin/svn/svn_private_config.h projects/bmake/usr.bin/svn/svnadmin/Makefile projects/bmake/usr.bin/svn/svndumpfilter/Makefile projects/bmake/usr.bin/svn/svnlook/Makefile projects/bmake/usr.bin/svn/svnmucc/Makefile projects/bmake/usr.bin/svn/svnrdump/Makefile projects/bmake/usr.bin/svn/svnserve/Makefile projects/bmake/usr.bin/svn/svnsync/Makefile projects/bmake/usr.bin/svn/svnversion/Makefile projects/bmake/usr.bin/systat/Makefile projects/bmake/usr.bin/systat/ifstat.c projects/bmake/usr.bin/systat/main.c projects/bmake/usr.bin/systat/systat.1 projects/bmake/usr.bin/tabs/Makefile projects/bmake/usr.bin/tabs/Makefile.depend projects/bmake/usr.bin/telnet/Makefile projects/bmake/usr.bin/telnet/Makefile.depend projects/bmake/usr.bin/tftp/Makefile projects/bmake/usr.bin/tftp/Makefile.depend projects/bmake/usr.bin/top/Makefile.depend projects/bmake/usr.bin/top/machine.c projects/bmake/usr.bin/tput/Makefile projects/bmake/usr.bin/tput/Makefile.depend projects/bmake/usr.bin/truncate/Makefile projects/bmake/usr.bin/truncate/truncate.1 projects/bmake/usr.bin/truncate/truncate.c projects/bmake/usr.bin/truss/Makefile.depend.amd64 projects/bmake/usr.bin/truss/extern.h projects/bmake/usr.bin/truss/main.c projects/bmake/usr.bin/tset/Makefile projects/bmake/usr.bin/tset/Makefile.depend projects/bmake/usr.bin/ul/Makefile projects/bmake/usr.bin/ul/Makefile.depend projects/bmake/usr.bin/unifdef/unifdef.1 projects/bmake/usr.bin/units/Makefile projects/bmake/usr.bin/units/Makefile.depend projects/bmake/usr.bin/units/units.1 projects/bmake/usr.bin/units/units.c projects/bmake/usr.bin/units/units.lib projects/bmake/usr.bin/unzip/unzip.1 projects/bmake/usr.bin/users/Makefile (contents, props changed) projects/bmake/usr.bin/users/Makefile.depend projects/bmake/usr.bin/vacation/Makefile projects/bmake/usr.bin/vi/Makefile projects/bmake/usr.bin/vmstat/vmstat.c projects/bmake/usr.bin/which/which.1 projects/bmake/usr.bin/whois/whois.c projects/bmake/usr.bin/xlint/lint1/Makefile.depend projects/bmake/usr.bin/xlint/lint1/param.h projects/bmake/usr.bin/yacc/tests/Makefile projects/bmake/usr.bin/yes/yes.1 projects/bmake/usr.bin/ypcat/ypcat.1 projects/bmake/usr.bin/ypmatch/ypmatch.1 projects/bmake/usr.sbin/acpi/acpiconf/acpiconf.8 projects/bmake/usr.sbin/acpi/acpidb/acpidb.8 projects/bmake/usr.sbin/acpi/acpidump/acpidump.8 projects/bmake/usr.sbin/adduser/adduser.8 projects/bmake/usr.sbin/adduser/adduser.conf.5 projects/bmake/usr.sbin/amd/amd/Makefile projects/bmake/usr.sbin/amd/amq/Makefile projects/bmake/usr.sbin/amd/fixmount/Makefile projects/bmake/usr.sbin/amd/fsinfo/Makefile projects/bmake/usr.sbin/amd/hlfsd/Makefile projects/bmake/usr.sbin/amd/include/Makefile.depend projects/bmake/usr.sbin/amd/mk-amd-map/Makefile projects/bmake/usr.sbin/amd/pawd/Makefile projects/bmake/usr.sbin/amd/wire-test/Makefile projects/bmake/usr.sbin/ancontrol/ancontrol.8 projects/bmake/usr.sbin/apm/apm.8 projects/bmake/usr.sbin/apmd/apmd.8 projects/bmake/usr.sbin/asf/asf.8 projects/bmake/usr.sbin/bhyve/Makefile projects/bmake/usr.sbin/bhyve/acpi.c projects/bmake/usr.sbin/bhyve/acpi.h projects/bmake/usr.sbin/bhyve/atkbdc.c projects/bmake/usr.sbin/bhyve/bhyve.8 projects/bmake/usr.sbin/bhyve/bhyverun.c projects/bmake/usr.sbin/bhyve/bhyverun.h projects/bmake/usr.sbin/bhyve/block_if.c projects/bmake/usr.sbin/bhyve/block_if.h projects/bmake/usr.sbin/bhyve/inout.c projects/bmake/usr.sbin/bhyve/inout.h projects/bmake/usr.sbin/bhyve/mem.c projects/bmake/usr.sbin/bhyve/mem.h projects/bmake/usr.sbin/bhyve/mptbl.c projects/bmake/usr.sbin/bhyve/pci_ahci.c projects/bmake/usr.sbin/bhyve/pci_emul.c projects/bmake/usr.sbin/bhyve/pci_emul.h projects/bmake/usr.sbin/bhyve/pci_lpc.c projects/bmake/usr.sbin/bhyve/pci_lpc.h projects/bmake/usr.sbin/bhyve/pci_virtio_block.c projects/bmake/usr.sbin/bhyve/pm.c projects/bmake/usr.sbin/bhyve/rtc.c projects/bmake/usr.sbin/bhyve/smbiostbl.c projects/bmake/usr.sbin/bhyve/virtio.c projects/bmake/usr.sbin/bhyve/virtio.h projects/bmake/usr.sbin/bhyvectl/bhyvectl.c projects/bmake/usr.sbin/bhyveload/bhyveload.8 projects/bmake/usr.sbin/bhyveload/bhyveload.c projects/bmake/usr.sbin/binmiscctl/binmiscctl.8 projects/bmake/usr.sbin/bluetooth/ath3kfw/ath3kfw.8 projects/bmake/usr.sbin/bluetooth/bcmfw/bcmfw.8 projects/bmake/usr.sbin/bluetooth/bt3cfw/bt3cfw.8 projects/bmake/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.8 projects/bmake/usr.sbin/bluetooth/bthidd/bthidd.8 projects/bmake/usr.sbin/bluetooth/hccontrol/hccontrol.8 projects/bmake/usr.sbin/bluetooth/hcsecd/hcsecd.8 projects/bmake/usr.sbin/bluetooth/hcsecd/hcsecd.conf.5 projects/bmake/usr.sbin/bluetooth/hcseriald/hcseriald.8 projects/bmake/usr.sbin/bluetooth/l2control/l2control.8 projects/bmake/usr.sbin/bluetooth/l2ping/l2ping.8 projects/bmake/usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.8 projects/bmake/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.8 projects/bmake/usr.sbin/bluetooth/sdpd/sdpd.8 projects/bmake/usr.sbin/boot0cfg/boot0cfg.8 projects/bmake/usr.sbin/bootparamd/bootparamd/bootparamd.8 projects/bmake/usr.sbin/bsdconfig/bsdconfig.8 projects/bmake/usr.sbin/bsdconfig/dot/dot projects/bmake/usr.sbin/bsdconfig/dot/include/messages.subr projects/bmake/usr.sbin/bsdconfig/examples/Makefile projects/bmake/usr.sbin/bsdconfig/examples/browse_packages_http.sh projects/bmake/usr.sbin/bsdconfig/include/messages.subr projects/bmake/usr.sbin/bsdconfig/share/common.subr projects/bmake/usr.sbin/bsdconfig/share/media/common.subr projects/bmake/usr.sbin/bsdconfig/share/media/http.subr projects/bmake/usr.sbin/bsdconfig/share/media/httpproxy.subr projects/bmake/usr.sbin/bsdconfig/share/packages/Makefile projects/bmake/usr.sbin/bsdconfig/share/packages/index.subr (contents, props changed) projects/bmake/usr.sbin/bsdconfig/share/packages/packages.subr (contents, props changed) projects/bmake/usr.sbin/bsdinstall/bsdinstall.8 projects/bmake/usr.sbin/bsdinstall/distextract/Makefile projects/bmake/usr.sbin/bsdinstall/distfetch/Makefile projects/bmake/usr.sbin/bsdinstall/partedit/Makefile projects/bmake/usr.sbin/bsdinstall/partedit/partedit_powerpc.c projects/bmake/usr.sbin/bsdinstall/partedit/partedit_x86.c projects/bmake/usr.sbin/bsdinstall/partedit/sade.8 projects/bmake/usr.sbin/bsdinstall/scripts/mirrorselect projects/bmake/usr.sbin/bsdinstall/scripts/zfsboot projects/bmake/usr.sbin/bsnmpd/modules/Makefile projects/bmake/usr.sbin/bsnmpd/modules/snmp_atm/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c projects/bmake/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 projects/bmake/usr.sbin/bsnmpd/modules/snmp_hast/snmp_hast.3 projects/bmake/usr.sbin/bsnmpd/modules/snmp_hostres/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 projects/bmake/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_netgraph/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_netgraph/snmp_netgraph.3 projects/bmake/usr.sbin/bsnmpd/modules/snmp_pf/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_target/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_usm/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_vacm/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile.depend projects/bmake/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 projects/bmake/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 projects/bmake/usr.sbin/btxld/Makefile projects/bmake/usr.sbin/btxld/btxld.8 projects/bmake/usr.sbin/cdcontrol/Makefile projects/bmake/usr.sbin/cdcontrol/Makefile.depend projects/bmake/usr.sbin/chkgrp/chkgrp.8 projects/bmake/usr.sbin/chown/Makefile projects/bmake/usr.sbin/config/config.5 projects/bmake/usr.sbin/cpucontrol/cpucontrol.8 projects/bmake/usr.sbin/cpucontrol/cpucontrol.c projects/bmake/usr.sbin/cron/cron/Makefile projects/bmake/usr.sbin/cron/cron/cron.8 projects/bmake/usr.sbin/cron/crontab/Makefile projects/bmake/usr.sbin/cron/crontab/crontab.1 projects/bmake/usr.sbin/cron/crontab/crontab.5 projects/bmake/usr.sbin/crunch/crunchgen/Makefile projects/bmake/usr.sbin/crunch/crunchgen/Makefile.depend projects/bmake/usr.sbin/crunch/crunchgen/crunchgen.1 projects/bmake/usr.sbin/crunch/crunchide/Makefile projects/bmake/usr.sbin/crunch/crunchide/crunchide.1 projects/bmake/usr.sbin/crunch/crunchide/exec_elf32.c projects/bmake/usr.sbin/ctladm/ctladm.8 projects/bmake/usr.sbin/ctladm/ctladm.c projects/bmake/usr.sbin/ctld/ctl.conf.5 projects/bmake/usr.sbin/ctld/ctld.8 projects/bmake/usr.sbin/ctld/ctld.c projects/bmake/usr.sbin/ctld/ctld.h projects/bmake/usr.sbin/ctld/discovery.c projects/bmake/usr.sbin/ctld/kernel.c projects/bmake/usr.sbin/ctld/login.c projects/bmake/usr.sbin/ctld/parse.y projects/bmake/usr.sbin/ctld/token.l projects/bmake/usr.sbin/ctm/ctm/ctm.1 projects/bmake/usr.sbin/ctm/ctm/ctm.5 projects/bmake/usr.sbin/ctm/ctm_rmail/ctm_rmail.1 projects/bmake/usr.sbin/dconschat/dconschat.8 projects/bmake/usr.sbin/devinfo/devinfo.8 projects/bmake/usr.sbin/dumpcis/dumpcis.8 projects/bmake/usr.sbin/editmap/Makefile projects/bmake/usr.sbin/eeprom/eeprom.8 projects/bmake/usr.sbin/etcupdate/etcupdate.8 projects/bmake/usr.sbin/fdwrite/fdwrite.1 projects/bmake/usr.sbin/fifolog/fifolog_create/Makefile projects/bmake/usr.sbin/fifolog/fifolog_reader/Makefile projects/bmake/usr.sbin/fifolog/fifolog_writer/Makefile projects/bmake/usr.sbin/flowctl/flowctl.8 projects/bmake/usr.sbin/freebsd-update/freebsd-update.8 projects/bmake/usr.sbin/ftp-proxy/ftp-proxy/Makefile projects/bmake/usr.sbin/fwcontrol/fwcontrol.8 projects/bmake/usr.sbin/gpioctl/gpioctl.8 projects/bmake/usr.sbin/gssd/gssd.8 projects/bmake/usr.sbin/gstat/gstat.8 projects/bmake/usr.sbin/gstat/gstat.c projects/bmake/usr.sbin/i2c/i2c.8 projects/bmake/usr.sbin/iostat/iostat.8 projects/bmake/usr.sbin/ipfwpcap/ipfwpcap.8 projects/bmake/usr.sbin/iscsid/iscsid.8 projects/bmake/usr.sbin/iscsid/iscsid.c projects/bmake/usr.sbin/iscsid/iscsid.h projects/bmake/usr.sbin/iscsid/login.c projects/bmake/usr.sbin/jail/jail.8 projects/bmake/usr.sbin/kbdcontrol/kbdcontrol.1 projects/bmake/usr.sbin/kbdcontrol/kbdcontrol.c projects/bmake/usr.sbin/kbdcontrol/path.h projects/bmake/usr.sbin/kbdmap/kbdmap.1 projects/bmake/usr.sbin/kgzip/kgzip.8 projects/bmake/usr.sbin/kldxref/kldxref.8 projects/bmake/usr.sbin/lmcconfig/lmcconfig.8 projects/bmake/usr.sbin/lpr/chkprintcap/Makefile projects/bmake/usr.sbin/lpr/chkprintcap/chkprintcap.8 projects/bmake/usr.sbin/lpr/lpc/Makefile projects/bmake/usr.sbin/lpr/lpc/Makefile.depend projects/bmake/usr.sbin/lpr/lpd/Makefile projects/bmake/usr.sbin/lpr/lpq/Makefile projects/bmake/usr.sbin/lpr/lpr/Makefile projects/bmake/usr.sbin/lpr/lprm/Makefile projects/bmake/usr.sbin/lpr/pac/Makefile projects/bmake/usr.sbin/mailstats/Makefile projects/bmake/usr.sbin/mailwrapper/mailwrapper.8 projects/bmake/usr.sbin/makefs/Makefile projects/bmake/usr.sbin/makefs/ffs/mkfs.c projects/bmake/usr.sbin/makefs/makefs.8 projects/bmake/usr.sbin/makemap/Makefile projects/bmake/usr.sbin/mergemaster/mergemaster.8 projects/bmake/usr.sbin/mergemaster/mergemaster.sh projects/bmake/usr.sbin/mixer/mixer.8 projects/bmake/usr.sbin/mlxcontrol/mlxcontrol.8 projects/bmake/usr.sbin/moused/moused.8 projects/bmake/usr.sbin/mptable/mptable.1 projects/bmake/usr.sbin/nandsim/nandsim.8 projects/bmake/usr.sbin/ndiscvt/ndiscvt.8 projects/bmake/usr.sbin/ndiscvt/ndisgen.8 projects/bmake/usr.sbin/ndp/ndp.8 projects/bmake/usr.sbin/ndp/ndp.c projects/bmake/usr.sbin/newsyslog/newsyslog.8 projects/bmake/usr.sbin/nfsd/nfsd.8 projects/bmake/usr.sbin/ngctl/Makefile projects/bmake/usr.sbin/ngctl/Makefile.depend projects/bmake/usr.sbin/ngctl/ngctl.8 projects/bmake/usr.sbin/nghook/nghook.8 projects/bmake/usr.sbin/nmtree/Makefile projects/bmake/usr.sbin/nscd/nscd.8 projects/bmake/usr.sbin/nscd/nscd.conf.5 projects/bmake/usr.sbin/ntp/config.h projects/bmake/usr.sbin/ntp/ntp-keygen/Makefile projects/bmake/usr.sbin/ntp/ntpd/Makefile projects/bmake/usr.sbin/ntp/ntpd/Makefile.depend projects/bmake/usr.sbin/ntp/ntpdate/Makefile projects/bmake/usr.sbin/ntp/ntpdate/Makefile.depend projects/bmake/usr.sbin/ntp/ntpdc/Makefile projects/bmake/usr.sbin/ntp/ntpdc/Makefile.depend projects/bmake/usr.sbin/ntp/ntpq/Makefile projects/bmake/usr.sbin/ntp/ntpq/Makefile.depend projects/bmake/usr.sbin/ntp/ntptime/Makefile projects/bmake/usr.sbin/nvram/nvram.8 projects/bmake/usr.sbin/ofwdump/ofwdump.8 projects/bmake/usr.sbin/pc-sysinstall/pc-sysinstall/pc-sysinstall.8 projects/bmake/usr.sbin/pciconf/pciconf.c projects/bmake/usr.sbin/periodic/periodic.8 projects/bmake/usr.sbin/pkg/elf_tables.h projects/bmake/usr.sbin/pkg/pkg.c projects/bmake/usr.sbin/pmcannotate/pmcannotate.8 projects/bmake/usr.sbin/pmcannotate/pmcannotate.c projects/bmake/usr.sbin/pmccontrol/pmccontrol.8 projects/bmake/usr.sbin/pmcstat/Makefile projects/bmake/usr.sbin/pmcstat/Makefile.depend projects/bmake/usr.sbin/pmcstat/pmcstat.8 projects/bmake/usr.sbin/pmcstat/pmcstat.c projects/bmake/usr.sbin/pmcstat/pmcstat.h projects/bmake/usr.sbin/pmcstat/pmcstat_log.c projects/bmake/usr.sbin/portsnap/portsnap/portsnap.8 projects/bmake/usr.sbin/ppp/Makefile projects/bmake/usr.sbin/ppp/ppp.8 projects/bmake/usr.sbin/pppctl/Makefile projects/bmake/usr.sbin/pppctl/Makefile.depend projects/bmake/usr.sbin/praliases/Makefile projects/bmake/usr.sbin/pw/pw_user.c projects/bmake/usr.sbin/pw/pwupd.c projects/bmake/usr.sbin/rarpd/rarpd.8 projects/bmake/usr.sbin/rpc.umntall/rpc.umntall.8 projects/bmake/usr.sbin/rpc.yppasswdd/rpc.yppasswdd.8 projects/bmake/usr.sbin/rpc.ypxfrd/rpc.ypxfrd.8 projects/bmake/usr.sbin/rtadvctl/rtadvctl.8 projects/bmake/usr.sbin/rtprio/rtprio.1 projects/bmake/usr.sbin/rwhod/rwhod.c projects/bmake/usr.sbin/sa/sa.8 projects/bmake/usr.sbin/sendmail/Makefile projects/bmake/usr.sbin/service/service.8 projects/bmake/usr.sbin/service/service.sh projects/bmake/usr.sbin/sicontrol/sicontrol.8 projects/bmake/usr.sbin/snapinfo/snapinfo.8 projects/bmake/usr.sbin/sysrc/sysrc projects/bmake/usr.sbin/sysrc/sysrc.8 projects/bmake/usr.sbin/tcpdrop/tcpdrop.8 projects/bmake/usr.sbin/tcpdump/tcpdump/Makefile projects/bmake/usr.sbin/tzsetup/Makefile projects/bmake/usr.sbin/uhsoctl/uhsoctl.c projects/bmake/usr.sbin/unbound/local-setup/local-unbound-setup.sh projects/bmake/usr.sbin/usbdump/usbdump.8 projects/bmake/usr.sbin/usbdump/usbdump.c projects/bmake/usr.sbin/utx/utx.8 projects/bmake/usr.sbin/vidcontrol/path.h projects/bmake/usr.sbin/vidcontrol/vidcontrol.1 projects/bmake/usr.sbin/vidcontrol/vidcontrol.c projects/bmake/usr.sbin/wake/wake.8 projects/bmake/usr.sbin/watch/Makefile projects/bmake/usr.sbin/watch/Makefile.depend projects/bmake/usr.sbin/watch/watch.8 projects/bmake/usr.sbin/watchdogd/watchdog.8 projects/bmake/usr.sbin/watchdogd/watchdogd.8 projects/bmake/usr.sbin/wpa/hostapd/Makefile projects/bmake/usr.sbin/wpa/hostapd/Makefile.depend projects/bmake/usr.sbin/wpa/hostapd/hostapd.8 projects/bmake/usr.sbin/wpa/hostapd/hostapd.conf.5 projects/bmake/usr.sbin/wpa/hostapd_cli/Makefile projects/bmake/usr.sbin/wpa/hostapd_cli/Makefile.depend projects/bmake/usr.sbin/wpa/hostapd_cli/hostapd_cli.8 projects/bmake/usr.sbin/wpa/ndis_events/ndis_events.8 projects/bmake/usr.sbin/wpa/wpa_cli/Makefile projects/bmake/usr.sbin/wpa/wpa_cli/Makefile.depend projects/bmake/usr.sbin/wpa/wpa_cli/wpa_cli.8 projects/bmake/usr.sbin/wpa/wpa_passphrase/Makefile projects/bmake/usr.sbin/wpa/wpa_passphrase/Makefile.depend projects/bmake/usr.sbin/wpa/wpa_passphrase/wpa_passphrase.8 projects/bmake/usr.sbin/wpa/wpa_supplicant/Makefile projects/bmake/usr.sbin/wpa/wpa_supplicant/Makefile.depend projects/bmake/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8 projects/bmake/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 projects/bmake/usr.sbin/yp_mkdb/yp_mkdb.8 projects/bmake/usr.sbin/ypbind/ypbind.8 projects/bmake/usr.sbin/yppush/yppush.8 projects/bmake/usr.sbin/ypserv/ypinit.8 projects/bmake/usr.sbin/ypserv/ypserv.8 projects/bmake/usr.sbin/zzz/zzz.8 Directory Properties: projects/bmake/ (props changed) projects/bmake/cddl/ (props changed) projects/bmake/cddl/contrib/opensolaris/ (props changed) projects/bmake/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) projects/bmake/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/bmake/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/bmake/contrib/apr/ (props changed) projects/bmake/contrib/atf/ (props changed) projects/bmake/contrib/binutils/ (props changed) projects/bmake/contrib/bmake/ (props changed) projects/bmake/contrib/byacc/ (props changed) projects/bmake/contrib/file/ (props changed) projects/bmake/contrib/gcc/ (props changed) projects/bmake/contrib/ipfilter/ (props changed) projects/bmake/contrib/ldns/ (props changed) projects/bmake/contrib/ldns/drill/drill.1 (props changed) projects/bmake/contrib/libstdc++/ (props changed) projects/bmake/contrib/libucl/ (props changed) projects/bmake/contrib/llvm/ (props changed) projects/bmake/contrib/llvm/tools/clang/ (props changed) projects/bmake/contrib/llvm/tools/lldb/ (props changed) projects/bmake/contrib/openbsm/ (props changed) projects/bmake/contrib/openpam/ (props changed) projects/bmake/contrib/sendmail/ (props changed) projects/bmake/contrib/serf/ (props changed) projects/bmake/contrib/subversion/ (props changed) projects/bmake/contrib/tzcode/stdtime/ (props changed) projects/bmake/contrib/tzdata/ (props changed) projects/bmake/contrib/unbound/ (props changed) projects/bmake/contrib/wpa/ (props changed) projects/bmake/crypto/openssh/ (props changed) projects/bmake/crypto/openssl/ (props changed) projects/bmake/etc/ (props changed) projects/bmake/gnu/lib/ (props changed) projects/bmake/gnu/usr.bin/binutils/ (props changed) projects/bmake/gnu/usr.bin/gdb/ (props changed) projects/bmake/include/ (props changed) projects/bmake/lib/libc/ (props changed) projects/bmake/lib/libc/stdtime/ (props changed) projects/bmake/lib/libutil/ (props changed) projects/bmake/lib/libvmmapi/ (props changed) projects/bmake/lib/libz/ (props changed) projects/bmake/sbin/ (props changed) projects/bmake/sbin/ipfw/ (props changed) projects/bmake/share/ (props changed) projects/bmake/share/man/man4/ (props changed) projects/bmake/sys/ (props changed) projects/bmake/sys/amd64/vmm/ (props changed) projects/bmake/sys/boot/ (props changed) projects/bmake/sys/cddl/contrib/opensolaris/ (props changed) projects/bmake/sys/conf/ (props changed) projects/bmake/sys/contrib/dev/acpica/ (props changed) projects/bmake/sys/contrib/ipfilter/ (props changed) projects/bmake/sys/contrib/x86emu/ (props changed) projects/bmake/usr.bin/calendar/ (props changed) projects/bmake/usr.bin/mkimg/ (props changed) projects/bmake/usr.bin/procstat/ (props changed) projects/bmake/usr.sbin/bhyve/ (props changed) projects/bmake/usr.sbin/bhyvectl/ (props changed) projects/bmake/usr.sbin/bhyveload/ (props changed) projects/bmake/usr.sbin/bsdconfig/share/packages/categories.subr (props changed) projects/bmake/usr.sbin/jail/ (props changed) projects/bmake/usr.sbin/ndiscvt/ (props changed) projects/bmake/usr.sbin/rtadvctl/ (props changed) Copied: projects/bmake/.arcconfig (from r269221, head/.arcconfig) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bmake/.arcconfig Tue Aug 19 06:50:54 2014 (r270164, copy of r269221, head/.arcconfig) @@ -0,0 +1,5 @@ +{ + "project.name": "S", + "phabricator.uri" : "https://phabric.freebsd.org/", + "history.immutable" : true +} Copied: projects/bmake/.arclint (from r269221, head/.arclint) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bmake/.arclint Tue Aug 19 06:50:54 2014 (r270164, copy of r269221, head/.arclint) @@ -0,0 +1,9 @@ +{ + "linters": { + "python": { + "type": "pep8", + "exclude": "(contrib)", + "include": "(\\.py$)" + } + } +} Modified: projects/bmake/MAINTAINERS ============================================================================== --- projects/bmake/MAINTAINERS Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/MAINTAINERS Tue Aug 19 06:50:54 2014 (r270164) @@ -102,13 +102,12 @@ linux emul emulation Please discuss chan bs{diff,patch} cperciva Pre-commit review requested. portsnap cperciva Pre-commit review requested. freebsd-update cperciva Pre-commit review requested. -openssl benl Pre-commit review requested. +openssl benl,jkim Pre-commit review requested. sys/netgraph/bluetooth emax Pre-commit review preferred. lib/libbluetooth emax Pre-commit review preferred. lib/libsdp emax Pre-commit review preferred. usr.bin/bluetooth emax Pre-commit review preferred. usr.sbin/bluetooth emax Pre-commit review preferred. -gnu/usr.bin/send-pr bugmaster Pre-commit review requested. *env(3) secteam Due to the problematic security history of this code, please have patches reviewed by secteam. share/zoneinfo edwin Heads-up appreciated, since our data is coming Modified: projects/bmake/Makefile ============================================================================== --- projects/bmake/Makefile Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/Makefile Tue Aug 19 06:50:54 2014 (r270164) @@ -36,6 +36,7 @@ # specified with XDEV and XDEV_ARCH. # xdev-build - Build cross-development tools. # xdev-install - Install cross-development tools. +# xdev-links - Create traditional links in /usr/bin for cc, etc # # "quick" way to test all kernel builds: # _jflag=`sysctl -n hw.ncpu` @@ -82,7 +83,7 @@ # # See src/UPDATING `COMMON ITEMS' for more complete information. # -# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can +# If TARGET=machine (e.g. powerpc, sparc64, ...) is specified you can # cross build world for other machine types using the buildworld target, # and once the world is built you can cross build a kernel using the # buildkernel target. @@ -110,6 +111,7 @@ TGTS= all all-man buildenv buildenvvars _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ _build-tools _cross-tools _includes _libraries _depend \ build32 builddtb distribute32 install32 xdev xdev-build xdev-install \ + xdev-links \ TGTS+= ${SUBDIR_TARGETS} @@ -172,6 +174,13 @@ _TARGET=${TARGET} .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH) _TARGET_ARCH=${TARGET_ARCH} .endif +# for historical compatibility for xdev targets +.if defined(XDEV) +_TARGET= ${XDEV} +.endif +.if defined(XDEV_ARCH) +_TARGET_ARCH= ${XDEV_ARCH} +.endif # Otherwise, default to current machine type and architecture. _TARGET?= ${MACHINE} _TARGET_ARCH?= ${MACHINE_ARCH} @@ -316,13 +325,6 @@ kernel: buildkernel installkernel upgrade_checks: .if ${HAVE_MAKE} != ${WANT_MAKE} @(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,}) -.elif ${WANT_MAKE} == "fmake" - @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 # @@ -334,20 +336,21 @@ MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \ DESTDIR= \ INSTALL="sh ${.CURDIR}/tools/install.sh" MMAKE= ${MMAKEENV} ${MAKE} \ - -D_UPGRADING -DNO_MAN -DNO_SHARED \ + -DNO_MAN -DNO_SHARED \ -DNO_CPU_CFLAGS -DNO_WERROR \ - DESTDIR= MK_TESTS=no PROGNAME=${MYMAKE:T} + MK_TESTS=no \ + DESTDIR= PROGNAME=${MYMAKE:T} -make bmake: .PHONY +bmake: .PHONY @echo @echo "--------------------------------------------------------------" - @echo ">>> Building an up-to-date make(1)" + @echo ">>> Building an up-to-date ${.TARGET}(1)" @echo "--------------------------------------------------------------" ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ ${MMAKE} obj && \ ${MMAKE} depend && \ ${MMAKE} all && \ - ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= NO_MAN=t + ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= tinderbox toolchains kernel-toolchains: upgrade_checks @@ -368,7 +371,7 @@ kernel-toolchains: # existing system is. # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) -TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 +TARGETS?=amd64 arm i386 mips pc98 powerpc sparc64 TARGET_ARCHES_arm?= arm armeb armv6 armv6hf TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 @@ -457,7 +460,7 @@ TARGET!= uname -m .if defined(MAKE_ALL_KERNELS) _THINNER=cat .else -_THINNER=xargs grep -L "^.NO_UNIVERSE" +_THINNER=xargs grep -L "^.NO_UNIVERSE" || true .endif KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \ find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \ Modified: projects/bmake/Makefile.inc1 ============================================================================== --- projects/bmake/Makefile.inc1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/Makefile.inc1 Tue Aug 19 06:50:54 2014 (r270164) @@ -17,6 +17,7 @@ # -DNO_DOCUPDATE do not update doc in ${MAKE} update # -DWITHOUT_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_ITOOLS="list of tools" to add additional tools to the ITOOLS 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 @@ -139,7 +140,7 @@ SRCRELDATE!= awk '/^\#define[[:space:]]* VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -245,10 +246,11 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ - SSP_CFLAGS= \ + SSP_CFLAGS= MK_PIE=no \ MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ - -DNO_CPU_CFLAGS -DNO_WARNS MK_CTF=no -DEARLY_BUILD MK_TESTS=no + -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ + MK_CLANG_FULL=no MK_LLDB=no MK_TESTS=no # build-tools stage TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ @@ -256,9 +258,9 @@ TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ - SSP_CFLAGS= \ + SSP_CFLAGS= MK_PIE=no \ -DNO_LINT \ - -DNO_CPU_CFLAGS -DNO_WARNS MK_CTF=no -DEARLY_BUILD MK_TESTS=no + -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no MK_CLANG_FULL=no MK_LLDB=no MK_TESTS=no # cross-tools stage XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \ @@ -274,10 +276,10 @@ KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOB ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ - SSP_CFLAGS= \ + SSP_CFLAGS= MK_PIE=no \ MK_HTML=no MK_INFO=no -DNO_LINT MK_MAN=no \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ - -DNO_CPU_CFLAGS -DNO_WARNS MK_CTF=no -DEARLY_BUILD + -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no # world stage WMAKEENV= ${CROSSENV} \ @@ -609,8 +611,8 @@ build32: 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 MK_CTF=no \ - -DEARLY_BUILD build-tools + DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ + build-tools .endfor cd ${.CURDIR}; \ ${LIB32WMAKE} -f Makefile.inc1 libraries @@ -755,7 +757,8 @@ _zoneinfo= zic tzsetup ITOOLS= [ awk cap_mkdb cat chflags chmod chown \ date echo egrep find grep id install ${_install-info} \ ln lockf make mkdir mtree mv pwd_mkdb \ - rm sed services_mkdb sh sysctl test true uname wc ${_zoneinfo} + rm sed services_mkdb sh sysctl test true uname wc ${_zoneinfo} \ + ${LOCAL_ITOOLS} # # distributeworld @@ -775,6 +778,14 @@ EXTRA_DISTRIBUTIONS+= games .if defined(LIB32TMP) && ${MK_LIB32} != "no" EXTRA_DISTRIBUTIONS+= lib32 .endif +.if ${MK_TESTS} != "no" +EXTRA_DISTRIBUTIONS+= tests +.endif + +DEBUG_DISTRIBUTIONS= +.if ${MK_DEBUG_FILES} != "no" +DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,doc,,} +.endif MTREE_MAGIC?= mtree 2.0 @@ -816,6 +827,10 @@ distributeworld installworld: _installch mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null .endif +.if ${MK_TESTS} != "no" && ${dist} == "tests" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null +.endif .if defined(NO_ROOT) ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ sed -e 's#^\./#./${dist}/#' >> ${METALOG} @@ -848,8 +863,7 @@ distributeworld installworld: _installch awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ ${DESTDIR}/${DISTDIR}/${dist}.meta .endfor -.if ${MK_DEBUG_FILES} != "no" -. for dist in base ${EXTRA_DISTRIBUTIONS} +.for dist in ${DEBUG_DISTRIBUTIONS} @# For each file that exists in this dist, print the corresponding @# line from the METALOG. This relies on the fact that @# a line containing only the filename will sort immediatly before @@ -858,8 +872,7 @@ distributeworld installworld: _installch find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \ awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ ${DESTDIR}/${DISTDIR}/${dist}.debug.meta -. endfor -.endif +.endfor .endif .endif @@ -877,19 +890,17 @@ packageworld: .endif .endfor -.if ${MK_DEBUG_FILES} != "no" -. for dist in base ${EXTRA_DISTRIBUTIONS} -. if defined(NO_ROOT) +.for dist in ${DEBUG_DISTRIBUTIONS} +. if defined(NO_ROOT) ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ - tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \ + tar cvJf ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz \ @${DESTDIR}/${DISTDIR}/${dist}.debug.meta -. else +. else ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ - tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \ + tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz \ usr/lib/debug -. endif -. endfor -.endif +. endif +.endfor # # reinstall @@ -1188,6 +1199,10 @@ _gperf= gnu/usr.bin/gperf _groff= gnu/usr.bin/groff .endif +.if ${MK_VT} != "no" +_vtfontcvt= usr.bin/vtfontcvt +.endif + .if ${BOOTSTRAPPING} < 900002 _sed= usr.bin/sed .endif @@ -1237,9 +1252,8 @@ _clang_tblgen= \ .endif # dtrace tools are required for older bootstrap env and cross-build -.if ${MK_CDDL} != "no" && \ - ((${BOOTSTRAPPING} < 1000034 && \ - !(${BOOTSTRAPPING} >= 901505 && ${BOOTSTRAPPING} < 999999)) \ +# pre libdwarf +.if ${MK_CDDL} != "no" && (${BOOTSTRAPPING} < 1100006 \ || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH})) _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge @@ -1288,7 +1302,8 @@ bootstrap-tools: .MAKE ${_gensnmptree} \ usr.sbin/config \ ${_crunch} \ - ${_nmtree} + ${_nmtree} \ + ${_vtfontcvt} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ @@ -1351,9 +1366,6 @@ kernel-tools: .MAKE # # cross-tools: Build cross-building tools # -.if !defined(TARGET_ARCH) && defined(XDEV_ARCH) -TARGET_ARCH= ${XDEV_ARCH} -.endif .if ${TARGET_ARCH} != ${MACHINE_ARCH} .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" _btxld= usr.sbin/btxld @@ -1474,13 +1486,15 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 lib/libopie lib/libpam ${_lib_libthr} \ lib/libradius lib/libsbuf lib/libtacplus \ ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ + ${_cddl_lib_libavl} \ ${_cddl_lib_libzfs_core} \ lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ ${_secure_lib_libcrypto} ${_lib_libldns} \ ${_secure_lib_libssh} ${_secure_lib_libssl} -.if ${MK_GNUCXX} != "no" && ${MK_CXX} != "no" +.if ${MK_GNUCXX} != "no" _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++ gnu/lib/libstdc++__L: lib/msun__L +gnu/lib/libsupc++__L: gnu/lib/libstdc++__L .endif .if defined(WITH_ATF) || ${MK_TESTS} != "no" @@ -1519,6 +1533,7 @@ lib/libopie__L lib/libtacplus__L: lib/li .if ${MK_CDDL} != "no" _cddl_lib_libumem= cddl/lib/libumem _cddl_lib_libnvpair= cddl/lib/libnvpair +_cddl_lib_libavl= cddl/lib/libavl _cddl_lib_libzfs_core= cddl/lib/libzfs_core _cddl_lib= cddl/lib cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L @@ -1836,9 +1851,9 @@ builddtb: ############### -.if defined(XDEV) && defined(XDEV_ARCH) +.if defined(TARGET) && defined(TARGET_ARCH) -.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH} +.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} XDEV_CPUTYPE?=${CPUTYPE} .else XDEV_CPUTYPE?=${TARGET_CPUTYPE} @@ -1846,11 +1861,11 @@ XDEV_CPUTYPE?=${TARGET_CPUTYPE} NOFUN=-DNO_FSCHG MK_HTML=no MK_INFO=no -DNO_LINT \ MK_MAN=no MK_NLS=no MK_PROFILE=no \ - MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no -DNO_WARNS \ - TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \ + MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \ + TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ CPUTYPE=${XDEV_CPUTYPE} -XDDIR=${XDEV_ARCH}-freebsd +XDDIR=${TARGET_ARCH}-freebsd XDTP?=/usr/${XDDIR} .if ${XDTP:N/*} .error XDTP variable should be an absolute path @@ -1866,7 +1881,7 @@ CD2CFLAGS=-isystem ${XDDESTDIR}/usr/incl -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \ CPP="${CPP} ${CD2CFLAGS}" \ - MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH} + MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} CDTMP= ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN} @@ -1876,7 +1891,7 @@ XDDESTDIR=${DESTDIR}/${XDTP} OSREL!= uname -r | sed -e 's/[-(].*//' .endif -.ORDER: xdev-build xdev-install +.ORDER: xdev-build xdev-install xdev-links xdev: xdev-build xdev-install .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools @@ -1925,9 +1940,13 @@ _xi-mtree: -p ${XDDESTDIR}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${XDDESTDIR}/usr/include >/dev/null +.if ${MK_TESTS} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${XDDESTDIR}/usr >/dev/null +.endif -.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links -xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links +.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries +xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-cross-tools: @echo "_xi-cross-tools" @@ -1950,9 +1969,9 @@ _xi-libraries: ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ DESTDIR=${XDDESTDIR} -_xi-links: +xdev-links: ${_+_}cd ${XDDESTDIR}/usr/bin; \ - mkdir -p ../../../../usr/bin; \ + mkdir -p ../../../../usr/bin; \ for i in *; do \ ln -sf ../../${XDTP}/usr/bin/$$i \ ../../../../usr/bin/${XDDIR}-$$i; \ @@ -1960,6 +1979,6 @@ _xi-links: ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \ done .else -xdev xdev-build xdev-install: - @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target" +xdev xdev-build xdev-install xdev-links: + @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target" .endif Modified: projects/bmake/ObsoleteFiles.inc ============================================================================== --- projects/bmake/ObsoleteFiles.inc Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/ObsoleteFiles.inc Tue Aug 19 06:50:54 2014 (r270164) @@ -38,6 +38,92 @@ # xargs -n1 | sort | uniq -d; # done +# 20140723: renamed to PCBGROUP.9 +OLD_FILES+=usr/share/man/man9/PCBGROUPS.9.gz +# 20140718: Remove obsolete man pages +OLD_FILES+=usr/share/man/man9/zero_copy.9.gz +OLD_FILES+=usr/share/man/man9/zero_copy_sockets.9.gz +# 20140718: Remove an obsolete man page +OLD_FILES+=usr/share/man/man9/pmap_page_protect.9.gz +# 20140717: Remove an obsolete man page +OLD_FILES+=usr/share/man/man9/pmap_clear_reference.9.gz +# 20140716: Remove an incorrectly named man page +OLD_FILES+=usr/share/man/man9/pmap_ts_modified.9.gz +# 20140712: Removal of bsd.dtrace.mk +OLD_FILES+=usr/share/mk/bsd.dtrace.mk +# 20140705: turn libreadline into an internal lib +OLD_LIBS+=lib/libreadline.so.8 +OLD_FILES+=usr/lib/libreadline.a +OLD_FILES+=usr/lib/libreadline_p.a +OLD_FILES+=usr/lib/libreadline.so +OLD_FILES+=usr/lib/libhistory.a +OLD_FILES+=usr/lib/libhistory_p.a +OLD_FILES+=usr/lib/libhistory.so +OLD_LIBS+=usr/lib/libhistory.so.8 +OLD_FILES+=usr/include/readline/chardefs.h +OLD_FILES+=usr/include/readline/history.h +OLD_FILES+=usr/include/readline/keymaps.h +OLD_FILES+=usr/include/readline/readline.h +OLD_FILES+=usr/include/readline/rlconf.h +OLD_FILES+=usr/include/readline/rlstdc.h +OLD_FILES+=usr/include/readline/rltypedefs.h +OLD_FILES+=usr/include/readline/rltypedefs.h +OLD_FILES+=usr/share/info/readline.info.gz +OLD_FILES+=usr/share/man/man3/readline.3.gz +# 20140625: csup removal +OLD_FILES+=usr/bin/csup +OLD_FILES+=usr/bin/cpasswd +OLD_FILES+=usr/share/man/man1/csup.1.gz +OLD_FILES+=usr/share/man/man1/cpasswd.1.gz +OLD_FILES+=usr/share/examples/cvsup/README +OLD_FILES+=usr/share/examples/cvsup/cvs-supfile +OLD_FILES+=usr/share/examples/cvsup/stable-supfile +OLD_FILES+=usr/share/examples/cvsup/standard-supfile +OLD_DIRS+=usr/share/examples/cvsup +# 20140614: send-pr removal +OLD_FILES+=usr/bin/sendbug +OLD_FILES+=usr/share/info/send-pr.info.gz +OLD_FILES+=usr/share/man/man1/send-pr.1.gz +OLD_FILES+=usr/share/man/man1/sendbug.1.gz +OLD_FILES+=etc/gnats/freefall +OLD_DIRS+=etc/gnats +# 20140512: new clang import which bumps version from 3.4 to 3.4.1. +OLD_FILES+=usr/include/clang/3.4/__wmmintrin_aes.h +OLD_FILES+=usr/include/clang/3.4/__wmmintrin_pclmul.h +OLD_FILES+=usr/include/clang/3.4/altivec.h +OLD_FILES+=usr/include/clang/3.4/ammintrin.h +OLD_FILES+=usr/include/clang/3.4/avx2intrin.h +OLD_FILES+=usr/include/clang/3.4/avxintrin.h +OLD_FILES+=usr/include/clang/3.4/bmi2intrin.h +OLD_FILES+=usr/include/clang/3.4/bmiintrin.h +OLD_FILES+=usr/include/clang/3.4/cpuid.h +OLD_FILES+=usr/include/clang/3.4/emmintrin.h +OLD_FILES+=usr/include/clang/3.4/f16cintrin.h +OLD_FILES+=usr/include/clang/3.4/fma4intrin.h +OLD_FILES+=usr/include/clang/3.4/fmaintrin.h +OLD_FILES+=usr/include/clang/3.4/immintrin.h +OLD_FILES+=usr/include/clang/3.4/lzcntintrin.h +OLD_FILES+=usr/include/clang/3.4/mm3dnow.h +OLD_FILES+=usr/include/clang/3.4/mm_malloc.h +OLD_FILES+=usr/include/clang/3.4/mmintrin.h +OLD_FILES+=usr/include/clang/3.4/module.map +OLD_FILES+=usr/include/clang/3.4/nmmintrin.h +OLD_FILES+=usr/include/clang/3.4/pmmintrin.h +OLD_FILES+=usr/include/clang/3.4/popcntintrin.h +OLD_FILES+=usr/include/clang/3.4/prfchwintrin.h +OLD_FILES+=usr/include/clang/3.4/rdseedintrin.h +OLD_FILES+=usr/include/clang/3.4/rtmintrin.h +OLD_FILES+=usr/include/clang/3.4/shaintrin.h +OLD_FILES+=usr/include/clang/3.4/smmintrin.h +OLD_FILES+=usr/include/clang/3.4/tbmintrin.h +OLD_FILES+=usr/include/clang/3.4/tmmintrin.h +OLD_FILES+=usr/include/clang/3.4/wmmintrin.h +OLD_FILES+=usr/include/clang/3.4/x86intrin.h +OLD_FILES+=usr/include/clang/3.4/xmmintrin.h +OLD_FILES+=usr/include/clang/3.4/xopintrin.h +OLD_FILES+=usr/include/clang/3.4/arm_neon.h +OLD_FILES+=usr/include/clang/3.4/module.map +OLD_DIRS+=usr/include/clang/3.4 # 20140505: Bogusly installing src.opts.mk OLD_FILES+=usr/share/mk/src.opts.mk # 20140505: Reject PR kern/187551 @@ -507,6 +593,7 @@ OLD_FILES+=usr/share/man/man9/vfs_mount. OLD_FILES+=usr/bin/cvs OLD_FILES+=usr/bin/cvsbug OLD_FILES+=usr/share/doc/psd/28.cvs/paper.ascii.gz +OLD_FILES+=usr/share/doc/psd/28.cvs/paper.ps.gz OLD_DIRS+=usr/share/doc/psd/28.cvs OLD_FILES+=usr/share/examples/cvs/contrib/README OLD_FILES+=usr/share/examples/cvs/contrib/clmerge @@ -1127,9 +1214,6 @@ OLD_FILES+=usr/include/xmmintrin.h .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "arm" OLD_FILES+=usr/include/mmintrin.h .endif -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=usr/include/ia64intrin.h -.endif .if ${TARGET_ARCH} == "powerpc" OLD_FILES+=usr/include/altivec.h OLD_FILES+=usr/include/ppc-asm.h @@ -1147,10 +1231,6 @@ OLD_FILES+=usr/include/machine/rm7000.h OLD_FILES+=usr/include/machine/defs.h OLD_FILES+=usr/include/machine/queue.h .endif -# 20100326: [ia64] removed -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=usr/include/machine/nexusvar.h -.endif # 20100326: gcpio removal OLD_FILES+=usr/bin/gcpio OLD_FILES+=usr/share/info/cpio.info.gz @@ -1164,11 +1244,6 @@ OLD_FILES+=usr/share/man/man3/regexp.3.g OLD_FILES+=usr/share/man/man3/regsub.3.gz # 20100303: actual removal of utmp.h OLD_FILES+=usr/include/utmp.h -# 20100227: [ia64] removed and -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=usr/include/machine/sapicreg.h -OLD_FILES+=usr/include/machine/sapicvar.h -.endif # 20100208: man pages moved .if ${TARGET_ARCH} == "i386" OLD_FILES+=usr/share/man/man4/i386/alpm.4.gz @@ -1861,14 +1936,6 @@ OLD_FILES+=usr/share/man/man8/arlcontrol OLD_FILES+=sbin/sunlabel OLD_FILES+=usr/share/man/man8/sunlabel.8.gz .endif -# 20080703: bsdlabel & fdisk removed on ia64 -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=sbin/bsdlabel -OLD_FILES+=usr/share/man/man8/bsdlabel.8.gz -OLD_FILES+=usr/share/man/man8/disklabel.8.gz -OLD_FILES+=sbin/fdisk -OLD_FILES+=usr/share/man/man8/fdisk.8.gz -.endif # 20080701: wpa_supplicant.conf moved to share/examples/etc/ OLD_FILES+=usr/share/examples/wpa_supplicant/wpa_supplicant.conf OLD_DIRS+=usr/share/examples/wpa_supplicant @@ -2077,12 +2144,6 @@ OLD_FILES+=usr/include/sys/_elf_solaris. OLD_FILES+=usr/share/man/man3/pmc_x86_get_msr.3.gz # 20071108: Removed very crunch OLDCARD support file OLD_FILES+=etc/defaults/pccard.conf -# 20071104: Removed bsdlabel, fdisk and gpt from rescue on ia64. -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=rescue/bsdlabel -OLD_FILES+=rescue/fdisk -OLD_FILES+=rescue/gpt -.endif # 20071025: rc.d/nfslocking superceeded by rc.d/lockd and rc.d/statd OLD_FILES+=etc/rc.d/nfslocking # 20070930: rename of cached to nscd @@ -2743,10 +2804,6 @@ OLD_FILES+=usr/share/man/man8/mount_std. OLD_FILES+=usr/share/man/man4/uhidev.4.gz # 20061106: archive_write_prepare.3 removed OLD_FILES+=usr/share/man/man3/archive_write_prepare.3.gz -.if ${TARGET_ARCH} == "ia64" -# 20061104: skiload.help removed -OLD_FILES+=boot/skiload.help -.endif # 20061018: pccardc removed OLD_FILES+=usr/sbin/pccardc usr/share/man/man8/pccardc.8.gz # 20060930: demangle.h from contrib/libstdc++/include/ext/ @@ -2817,7 +2874,6 @@ OLD_DIRS+=usr/share/misc/pcvtfonts OLD_FILES+=usr/share/misc/keycap.pcvt OLD_FILES+=usr/share/man/man8/ispcvt.8.gz OLD_FILES+=usr/share/man/man5/keycap.5.gz -OLD_FILES+=usr/share/man/man4/vt.4.gz OLD_FILES+=usr/share/man/man4/pcvt.4.gz OLD_FILES+=usr/share/man/man3/kgetstr.3.gz OLD_FILES+=usr/share/man/man3/kgetnum.3.gz Modified: projects/bmake/UPDATING ============================================================================== --- projects/bmake/UPDATING Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/UPDATING Tue Aug 19 06:50:54 2014 (r270164) @@ -1,4 +1,4 @@ -Updating Information for FreeBSD current users +Updating Information for FreeBSD current users. This file is maintained and copyrighted by M. Warner Losh . See end of file for further details. For commonly done items, please see the @@ -31,6 +31,76 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20140723: + The xdev targets have been converted to using TARGET and + TARGET_ARCH instead of XDEV and XDEV_ARCH. + +20140719: + The default unbound configuration has been modified to address + issues with reverse lookups on networks that use private + address ranges. If you use the local_unbound service, run + "service local_unbound setup" as root to regenerate your + configuration, then "service local_unbound reload" to load the + new configuration. + +20140709: + The GNU texinfo and GNU info pages are not built and installed + anymore, WITH_INFO knob has been added to allow to built and install + them again. + +20140708: + The GNU readline library is now an INTERNALLIB - that is, it is + statically linked into consumers (GDB and variants) in the base + system, and the shared library is no longer installed. The + devel/readline port is available for third party software that + requires readline. + +20140702: + The Itanium architecture (ia64) has been removed from the list of + known architectures. This is the first step in the removal of the + architecture. + +20140701: + Commit r268115 has added NFSv4.1 server support, merged from + projects/nfsv4.1-server. Since this includes changes to the + internal interfaces between the NFS related modules, a full + build of the kernel and modules will be necessary. + __FreeBSD_version has been bumped. + +20140629: + The WITHOUT_VT_SUPPORT kernel config knob has been renamed + WITHOUT_VT. (The other _SUPPORT knobs have a consistent meaning + which differs from the behaviour controlled by this knob.) + +20140619: + Maximal length of the serial number in CTL was increased from 16 to + 64 chars, that breaks ABI. All CTL-related tools, such as ctladm + and ctld, need to be rebuilt to work with a new kernel. + +20140606: + The libatf-c and libatf-c++ major versions were downgraded to 0 and + 1 respectively to match the upstream numbers. They were out of + sync because, when they were originally added to FreeBSD, the + upstream versions were not respected. These libraries are private + and not yet built by default, so renumbering them should be a + non-issue. However, unclean source trees will yield broken test + programs once the operator executes "make delete-old-libs" after a + "make installworld". + + Additionally, the atf-sh binary was made private by moving it into + /usr/libexec/. Already-built shell test programs will keep the + path to the old binary so they will break after "make delete-old" + is run. + + If you are using WITH_TESTS=yes (not the default), wipe the object + tree and rebuild from scratch to prevent spurious test failures. + This is only needed once: the misnumbered libraries and misplaced + binaries have been added to OptionalObsoleteFiles.inc so they will + be removed during a clean upgrade. + +20140512: + Clang and llvm have been upgraded to 3.4.1 release. + 20140508: We bogusly installed src.opts.mk in /usr/share/mk. This file should be removed to avoid issues in the future (and has been added to @@ -47,7 +117,8 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 Although this has survived make universe and some upgrade scenarios, other upgrade scenarios may have broken. At least one form of temporary breakage was fixed with MAKESYSPATH settings for buildworld - as well... + as well... In cases where MAKESYSPATH isn't working with this + setting, you'll need to set it to the full path to your tree. One side effect of all this cleaning up is that bsd.compiler.mk is no longer implicitly included by bsd.own.mk. If you wish to Modified: projects/bmake/bin/chio/chio.1 ============================================================================== --- projects/bmake/bin/chio/chio.1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/chio/chio.1 Tue Aug 19 06:50:54 2014 (r270164) @@ -151,7 +151,6 @@ This command will query the status of th will move it to the element specified in its source attribute. This is a convenient way to return media from a drive or portal to its previous element in the changer. -.Pp .It Ic position Xo .Ar .Op Cm inv @@ -173,7 +172,6 @@ Report which picker unit the changer is .Xc Configure the changer to use picker .Ar . -.Pp .It Ic ielem Xo .Op Ar .Xc @@ -292,13 +290,11 @@ Configure the changer to use picker 2 (t The .Nm program and SCSI changer driver were written by -.An Jason R. Thorpe Aq thorpej@and.com +.An Jason R. Thorpe Aq Mt thorpej@and.com for And Communications, .Pa http://www.and.com/ . .Pp Additional work by -.An Hans Huebner -.Aq hans@artcom.de +.An Hans Huebner Aq Mt hans@artcom.de and -.An Steve Gunn -.Aq csg@waterspout.com . +.An Steve Gunn Aq Mt csg@waterspout.com . Modified: projects/bmake/bin/csh/Makefile ============================================================================== --- projects/bmake/bin/csh/Makefile Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/csh/Makefile Tue Aug 19 06:50:54 2014 (r270164) @@ -40,8 +40,8 @@ MLINKS= csh.1 tcsh.1 # utilities of the same name are handled with the associated manpage, # builtin.1 in share/man/man1/. -DPADD= ${LIBTERMCAP} ${LIBCRYPT} -LDADD= -ltermcap -lcrypt +DPADD= ${LIBTERMCAPW} ${LIBCRYPT} +LDADD= -ltermcapw -lcrypt LINKS= ${BINDIR}/csh ${BINDIR}/tcsh Modified: projects/bmake/bin/csh/Makefile.depend ============================================================================== --- projects/bmake/bin/csh/Makefile.depend Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/csh/Makefile.depend Tue Aug 19 06:50:54 2014 (r270164) @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + bin/cat.host \ gnu/lib/csu \ gnu/lib/libgcc \ include \ @@ -12,7 +13,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libcrypt \ - lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include Modified: projects/bmake/bin/ed/Makefile ============================================================================== --- projects/bmake/bin/ed/Makefile Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/ed/Makefile Tue Aug 19 06:50:54 2014 (r270164) @@ -7,9 +7,7 @@ SRCS= buf.c cbc.c glbl.c io.c main.c re. LINKS= ${BINDIR}/ed ${BINDIR}/red MLINKS= ed.1 red.1 -.if !defined(RELEASE_CRUNCH) && \ - ${MK_OPENSSL} != "no" && \ - ${MK_ED_CRYPTO} != "no" +.if ${MK_OPENSSL} != "no" && ${MK_ED_CRYPTO} != "no" CFLAGS+=-DDES DPADD= ${LIBCRYPTO} LDADD= -lcrypto Modified: projects/bmake/bin/freebsd-version/freebsd-version.1 ============================================================================== --- projects/bmake/bin/freebsd-version/freebsd-version.1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/freebsd-version/freebsd-version.1 Tue Aug 19 06:50:54 2014 (r270164) @@ -121,4 +121,4 @@ command appeared in The .Nm utility and this manual page were written by -.An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org . +.An Dag-Erling Sm\(/orgrav Aq Mt des@FreeBSD.org . Modified: projects/bmake/bin/ls/Makefile ============================================================================== --- projects/bmake/bin/ls/Makefile Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/ls/Makefile Tue Aug 19 06:50:54 2014 (r270164) @@ -11,8 +11,8 @@ LDADD= -lutil .if !defined(RELEASE_CRUNCH) && \ ${MK_LS_COLORS} != no CFLAGS+= -DCOLORLS -DPADD+= ${LIBTERMCAP} -LDADD+= -ltermcap +DPADD+= ${LIBTERMCAPW} +LDADD+= -ltermcapw .endif .include Modified: projects/bmake/bin/ls/Makefile.depend ============================================================================== --- projects/bmake/bin/ls/Makefile.depend Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/ls/Makefile.depend Tue Aug 19 06:50:54 2014 (r270164) @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libutil \ - lib/ncurses/ncurses \ lib/ncurses/ncursesw \ Modified: projects/bmake/bin/mv/mv.c ============================================================================== --- projects/bmake/bin/mv/mv.c Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/mv/mv.c Tue Aug 19 06:50:54 2014 (r270164) @@ -278,6 +278,7 @@ fastcopy(const char *from, const char *t static char *bp = NULL; mode_t oldmode; int nread, from_fd, to_fd; + struct stat tsb; if ((from_fd = open(from, O_RDONLY, 0)) < 0) { warn("fastcopy: open() failed (from): %s", from); @@ -336,10 +337,18 @@ err: if (unlink(to)) * if the server supports flags and we were trying to *remove* flags * on a file that we copied, i.e., that we didn't create.) */ - errno = 0; - if (fchflags(to_fd, sbp->st_flags)) - if (errno != EOPNOTSUPP || sbp->st_flags != 0) - warn("%s: set flags (was: 0%07o)", to, sbp->st_flags); + if (fstat(to_fd, &tsb) == 0) { + if ((sbp->st_flags & ~UF_ARCHIVE) != + (tsb.st_flags & ~UF_ARCHIVE)) { + if (fchflags(to_fd, + sbp->st_flags | (tsb.st_flags & UF_ARCHIVE))) + if (errno != EOPNOTSUPP || + ((sbp->st_flags & ~UF_ARCHIVE) != 0)) + warn("%s: set flags (was: 0%07o)", + to, sbp->st_flags); + } + } else + warn("%s: cannot stat", to); tval[0].tv_sec = sbp->st_atime; tval[1].tv_sec = sbp->st_mtime; Modified: projects/bmake/bin/pkill/pkill.1 ============================================================================== --- projects/bmake/bin/pkill/pkill.1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/pkill/pkill.1 Tue Aug 19 06:50:54 2014 (r270164) @@ -291,5 +291,4 @@ Solaris 7. They made their first appearance in .Fx 5.3 . .Sh AUTHORS -.An Andrew Doran -.Aq ad@NetBSD.org +.An Andrew Doran Aq Mt ad@NetBSD.org Modified: projects/bmake/bin/ps/keyword.c ============================================================================== --- projects/bmake/bin/ps/keyword.c Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/ps/keyword.c Tue Aug 19 06:50:54 2014 (r270164) @@ -87,8 +87,10 @@ static VAR var[] = { {"etimes", "ELAPSED", NULL, USER, elapseds, 0, CHAR, NULL, 0}, {"euid", "", "uid", 0, NULL, 0, CHAR, NULL, 0}, {"f", "F", NULL, 0, kvar, KOFF(ki_flag), INT, "x", 0}, + {"f2", "F2", NULL, 0, kvar, KOFF(ki_flag2), INT, "08x", 0}, {"fib", "FIB", NULL, 0, kvar, KOFF(ki_fibnum), INT, "d", 0}, {"flags", "", "f", 0, NULL, 0, CHAR, NULL, 0}, + {"flags2", "", "f2", 0, NULL, 0, CHAR, NULL, 0}, {"gid", "GID", NULL, 0, kvar, KOFF(ki_groups), UINT, UIDFMT, 0}, {"group", "GROUP", NULL, LJUST, egroupname, 0, CHAR, NULL, 0}, {"ignored", "", "sigignore", 0, NULL, 0, CHAR, NULL, 0}, Modified: projects/bmake/bin/ps/ps.1 ============================================================================== --- projects/bmake/bin/ps/ps.1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/ps/ps.1 Tue Aug 19 06:50:54 2014 (r270164) @@ -29,7 +29,7 @@ .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd May 2, 2014 +.Dd June 6, 2014 .Dt PS 1 .Os .Sh NAME @@ -340,6 +340,15 @@ the include file .It Dv "P_SWAPPINGIN" Ta No "0x40000000" Ta "Process is being swapped in" .It Dv "P_PPTRACE" Ta No "0x80000000" Ta "Vforked child issued ptrace(PT_TRACEME)" .El +.It Cm flags2 +The flags kept in +.Va p_flag2 +associated with the process as in +the include file +.In sys/proc.h : +.Bl -column P2_INHERIT_PROTECTED 0x00000001 +.It Dv "P2_INHERIT_PROTECTED" Ta No "0x00000001" Ta "New children get P_PROTECTED" +.El .It Cm label The MAC label of the process. .It Cm lim @@ -534,6 +543,9 @@ default FIB number, see .It Cm flags the process flags, in hexadecimal (alias .Cm f ) +.It Cm flags2 +the additional set of process flags, in hexadecimal (alias +.Cm f2 ) .It Cm gid effective group ID (alias .Cm egid ) Modified: projects/bmake/bin/rm/rm.1 ============================================================================== --- projects/bmake/bin/rm/rm.1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/rm/rm.1 Tue Aug 19 06:50:54 2014 (r270164) @@ -121,7 +121,6 @@ each directory's contents are processed is made to remove the directory). If the user does not respond affirmatively, the file hierarchy rooted in that directory is skipped. -.Pp .It Fl r Equivalent to .Fl R . Modified: projects/bmake/bin/rm/rm.c ============================================================================== --- projects/bmake/bin/rm/rm.c Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/rm/rm.c Tue Aug 19 06:50:54 2014 (r270164) @@ -335,7 +335,7 @@ err: warn("%s", p->fts_path); eval = 1; } - if (errno) + if (!fflag && errno) err(1, "fts_read"); fts_close(fts); } Modified: projects/bmake/bin/rmail/Makefile ============================================================================== --- projects/bmake/bin/rmail/Makefile Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/rmail/Makefile Tue Aug 19 06:50:54 2014 (r270164) @@ -14,6 +14,8 @@ MAN= rmail.8 WARNS?= 2 CFLAGS+=-I${SENDMAIL_DIR}/include -I. +NO_PIE= yes + LIBSMDIR= ${.OBJDIR}/../../lib/libsm LIBSM= ${LIBSMDIR}/libsm.a Modified: projects/bmake/bin/setfacl/setfacl.1 ============================================================================== --- projects/bmake/bin/setfacl/setfacl.1 Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/setfacl/setfacl.1 Tue Aug 19 06:50:54 2014 (r270164) @@ -485,6 +485,6 @@ NFSv4 ACL support was introduced in The .Nm utility was written by -.An Chris D. Faulhaber Aq jedgar@fxp.org . +.An Chris D. Faulhaber Aq Mt jedgar@fxp.org . NFSv4 ACL support was implemented by -.An Edward Tomasz Napierala Aq trasz@FreeBSD.org . +.An Edward Tomasz Napierala Aq Mt trasz@FreeBSD.org . Modified: projects/bmake/bin/sh/Makefile ============================================================================== --- projects/bmake/bin/sh/Makefile Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/sh/Makefile Tue Aug 19 06:50:54 2014 (r270164) @@ -18,8 +18,8 @@ SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} # utilities of the same name are handled with the associated manpage, # builtin.1 in share/man/man1/. -DPADD= ${LIBEDIT} ${LIBTERMCAP} -LDADD= -ledit -ltermcap +DPADD= ${LIBEDIT} ${LIBTERMCAPW} +LDADD= -ledit -ltermcapw CFLAGS+=-DSHELL -I. -I${.CURDIR} # for debug: Modified: projects/bmake/bin/sh/Makefile.depend ============================================================================== --- projects/bmake/bin/sh/Makefile.depend Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/sh/Makefile.depend Tue Aug 19 06:50:54 2014 (r270164) @@ -3,6 +3,7 @@ DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} DIRDEPS = \ + bin/cat.host \ gnu/lib/csu \ gnu/lib/libgcc \ include \ @@ -11,7 +12,7 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libedit \ - lib/ncurses/ncurses \ + lib/ncurses/ncursesw \ .include Modified: projects/bmake/bin/sh/arith_yacc.c ============================================================================== --- projects/bmake/bin/sh/arith_yacc.c Tue Aug 19 06:37:33 2014 (r270163) +++ projects/bmake/bin/sh/arith_yacc.c Tue Aug 19 06:50:54 2014 (r270164) @@ -139,7 +139,7 @@ static arith_t do_binop(int op, arith_t case ARITH_SUB: return (uintmax_t)a - (uintmax_t)b; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Aug 20 13:48:59 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D02147C; Wed, 20 Aug 2014 13:48:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F56230BB; Wed, 20 Aug 2014 13:48:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7KDmxQJ014629; Wed, 20 Aug 2014 13:48:59 GMT (envelope-from rrs@FreeBSD.org) Received: (from rrs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7KDmxQs014628; Wed, 20 Aug 2014 13:48:59 GMT (envelope-from rrs@FreeBSD.org) Message-Id: <201408201348.s7KDmxQs014628@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rrs set sender to rrs@FreeBSD.org using -f From: Randall Stewart Date: Wed, 20 Aug 2014 13:48:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270208 - projects/rrs_socrypto_tls 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.18-1 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, 20 Aug 2014 13:48:59 -0000 Author: rrs Date: Wed Aug 20 13:48:58 2014 New Revision: 270208 URL: http://svnweb.freebsd.org/changeset/base/270208 Log: Create a project branch to play with SO_CRYPT_TLS and capture John-Mark-Gurney's current AESNI changes that hopefully will be in head soon. A svn+ssh://svn.freebsd.org/base/projects/rrs_socrypto_tls Added: - copied from r270207, head/ Directory Properties: projects/rrs_socrypto_tls/ (props changed) From owner-svn-src-projects@FreeBSD.ORG Wed Aug 20 15:56:10 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9668C136; Wed, 20 Aug 2014 15:56:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8295C3015; Wed, 20 Aug 2014 15:56:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7KFuAde074635; Wed, 20 Aug 2014 15:56:10 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7KFuAfw074634; Wed, 20 Aug 2014 15:56:10 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408201556.s7KFuAfw074634@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Wed, 20 Aug 2014 15:56:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270217 - projects/arm64/sys/arm64/arm64 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.18-1 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, 20 Aug 2014 15:56:10 -0000 Author: andrew Date: Wed Aug 20 15:56:10 2014 New Revision: 270217 URL: http://svnweb.freebsd.org/changeset/base/270217 Log: Aslo set curthread in the pcpu area on cpu switch Modified: projects/arm64/sys/arm64/arm64/swtch.S Modified: projects/arm64/sys/arm64/arm64/swtch.S ============================================================================== --- projects/arm64/sys/arm64/arm64/swtch.S Wed Aug 20 15:43:26 2014 (r270216) +++ projects/arm64/sys/arm64/arm64/swtch.S Wed Aug 20 15:56:10 2014 (r270217) @@ -64,6 +64,7 @@ ENTRY(cpu_switch) ldr x3, .Lcurpcpu /* Store the new curthread */ + str x1, [x3, #PC_CURTHREAD] msr tpidr_el1, x1 /* And the new pcb */ ldr x4, [x1, #TD_PCB] From owner-svn-src-projects@FreeBSD.ORG Wed Aug 20 15:56:15 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71B5621D; Wed, 20 Aug 2014 15:56:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 480683019; Wed, 20 Aug 2014 15:56:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7KFuFJ2074686; Wed, 20 Aug 2014 15:56:15 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7KFuE3e074680; Wed, 20 Aug 2014 15:56:14 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408201556.s7KFuE3e074680@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Wed, 20 Aug 2014 15:56:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270218 - in projects/arm64/sys/arm64: arm64 include 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.18-1 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, 20 Aug 2014 15:56:15 -0000 Author: andrew Date: Wed Aug 20 15:56:13 2014 New Revision: 270218 URL: http://svnweb.freebsd.org/changeset/base/270218 Log: Use the l1 physical address to set ttbr0. This allows us to map user programs in in their address space. Modified: projects/arm64/sys/arm64/arm64/genassym.c projects/arm64/sys/arm64/arm64/pmap.c projects/arm64/sys/arm64/arm64/swtch.S projects/arm64/sys/arm64/arm64/vm_machdep.c projects/arm64/sys/arm64/include/pcb.h Modified: projects/arm64/sys/arm64/arm64/genassym.c ============================================================================== --- projects/arm64/sys/arm64/arm64/genassym.c Wed Aug 20 15:56:10 2014 (r270217) +++ projects/arm64/sys/arm64/arm64/genassym.c Wed Aug 20 15:56:13 2014 (r270218) @@ -44,6 +44,7 @@ ASSYM(PC_CURTHREAD, offsetof(struct pcpu ASSYM(PCB_REGS, offsetof(struct pcb, pcb_x)); ASSYM(PCB_SP, offsetof(struct pcb, pcb_sp)); +ASSYM(PCB_L1ADDR, offsetof(struct pcb, pcb_l1addr)); ASSYM(TD_PCB, offsetof(struct thread, td_pcb)); ASSYM(TD_LOCK, offsetof(struct thread, td_lock)); Modified: projects/arm64/sys/arm64/arm64/pmap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/pmap.c Wed Aug 20 15:56:10 2014 (r270217) +++ projects/arm64/sys/arm64/arm64/pmap.c Wed Aug 20 15:56:13 2014 (r270218) @@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include @@ -41,6 +42,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include /* @@ -1124,8 +1126,16 @@ pmap_mincore(pmap_t pmap, vm_offset_t ad void pmap_activate(struct thread *td) { + struct pcb *pcb; + pmap_t pmap; + + critical_enter(); + pmap = vmspace_pmap(td->td_proc->p_vmspace); + pcb = td->td_pcb; + + pcb->pcb_l1addr = vtophys(pmap->pm_l1); - panic("pmap_activate"); + critical_exit(); } void Modified: projects/arm64/sys/arm64/arm64/swtch.S ============================================================================== --- projects/arm64/sys/arm64/arm64/swtch.S Wed Aug 20 15:56:10 2014 (r270217) +++ projects/arm64/sys/arm64/arm64/swtch.S Wed Aug 20 15:56:13 2014 (r270218) @@ -104,6 +104,14 @@ ENTRY(cpu_switch) * to a user process. */ + /* Switch to the new pmap */ + ldr x5, [x4, #PCB_L1ADDR] + msr ttbr0_el1, x5 + isb + + /* Invalidate the TLB */ + tlbi vmalle1is + /* Release the old thread */ str x2, [x0, #TD_LOCK] #if defined(SCHED_ULE) && defined(SMP) Modified: projects/arm64/sys/arm64/arm64/vm_machdep.c ============================================================================== --- projects/arm64/sys/arm64/arm64/vm_machdep.c Wed Aug 20 15:56:10 2014 (r270217) +++ projects/arm64/sys/arm64/arm64/vm_machdep.c Wed Aug 20 15:56:13 2014 (r270218) @@ -63,6 +63,8 @@ cpu_fork(struct thread *td1, struct proc td2->td_pcb = pcb2; bcopy(td1->td_pcb, pcb2, sizeof(*pcb2)); + pmap_activate(td2); + /* Set the return value registers for fork() */ td2->td_pcb->pcb_x[8] = (uintptr_t)fork_return; td2->td_pcb->pcb_x[9] = (uintptr_t)td2; Modified: projects/arm64/sys/arm64/include/pcb.h ============================================================================== --- projects/arm64/sys/arm64/include/pcb.h Wed Aug 20 15:56:10 2014 (r270217) +++ projects/arm64/sys/arm64/include/pcb.h Wed Aug 20 15:56:13 2014 (r270218) @@ -37,6 +37,7 @@ struct trapframe; struct pcb { uint64_t pcb_x[31]; uint64_t pcb_sp; + vm_offset_t pcb_l1addr; } __aligned(64); #ifdef _KERNEL From owner-svn-src-projects@FreeBSD.ORG Wed Aug 20 15:56:18 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4862300; Wed, 20 Aug 2014 15:56:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D889301D; Wed, 20 Aug 2014 15:56:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7KFuIHL074735; Wed, 20 Aug 2014 15:56:18 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7KFuIgm074734; Wed, 20 Aug 2014 15:56:18 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408201556.s7KFuIgm074734@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Wed, 20 Aug 2014 15:56:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270219 - projects/arm64/sys/arm64/arm64 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.18-1 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, 20 Aug 2014 15:56:18 -0000 Author: andrew Date: Wed Aug 20 15:56:18 2014 New Revision: 270219 URL: http://svnweb.freebsd.org/changeset/base/270219 Log: Implement pmap_remove Modified: projects/arm64/sys/arm64/arm64/pmap.c Modified: projects/arm64/sys/arm64/arm64/pmap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/pmap.c Wed Aug 20 15:56:13 2014 (r270218) +++ projects/arm64/sys/arm64/arm64/pmap.c Wed Aug 20 15:56:18 2014 (r270219) @@ -746,8 +746,18 @@ pmap_growkernel(vm_offset_t addr) void pmap_remove(pmap_t pmap, vm_offset_t sva, vm_offset_t eva) { + pt_entry_t *l3; + vm_offset_t va_next; - panic("pmap_remove"); + KASSERT(pmap == pmap_kernel(), ("Only kernel mappings for now")); + PMAP_LOCK(pmap); + for (; sva < eva; sva = va_next) { + va_next = sva + L3_SIZE; + l3 = pmap_l3(pmap, sva); + if (l3 != NULL) + *l3 = 0; + } + PMAP_UNLOCK(pmap); } /* From owner-svn-src-projects@FreeBSD.ORG Wed Aug 20 15:57:53 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A2474FA; Wed, 20 Aug 2014 15:57:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C5553045; Wed, 20 Aug 2014 15:57:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7KFvqPf074983; Wed, 20 Aug 2014 15:57:52 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7KFvqCm074982; Wed, 20 Aug 2014 15:57:52 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408201557.s7KFvqCm074982@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Wed, 20 Aug 2014 15:57:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270220 - projects/arm64/sys/arm64/arm64 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.18-1 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, 20 Aug 2014 15:57:53 -0000 Author: andrew Date: Wed Aug 20 15:57:52 2014 New Revision: 270220 URL: http://svnweb.freebsd.org/changeset/base/270220 Log: Update pmap_enter to allocate l2 and l3 tables as needed. Modified: projects/arm64/sys/arm64/arm64/pmap.c Modified: projects/arm64/sys/arm64/arm64/pmap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/pmap.c Wed Aug 20 15:56:18 2014 (r270219) +++ projects/arm64/sys/arm64/arm64/pmap.c Wed Aug 20 15:57:52 2014 (r270220) @@ -843,17 +843,50 @@ void pmap_enter(pmap_t pmap, vm_offset_t va, vm_prot_t access, vm_page_t m, vm_prot_t prot, boolean_t wired) { - vm_paddr_t pa; - pt_entry_t *l3, opte; + pt_entry_t *l1, *l2, *l3, opte; + vm_paddr_t pa, pte_pa; + vm_page_t pte_m; PMAP_LOCK(pmap); - pa = VM_PAGE_TO_PHYS(m); l3 = pmap_l3(pmap, va); - KASSERT(l3 != NULL, ("TODO: grow va")); - KASSERT(pmap == pmap_kernel(), ("Only kernel mappings for now")); + + /* TODO: This is not optimal, but should mostly work */ + if (l3 == NULL) { + l2 = pmap_l2(pmap, va); + + if (l2 == NULL) { + pte_m = vm_page_alloc(NULL, 0, VM_ALLOC_NORMAL | + VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO); + if (pte_m == NULL) + panic("pmap_enter: l2 pte_m == NULL"); + if ((pte_m->flags & PG_ZERO) == 0) + pmap_zero_page(pte_m); + + pte_pa = VM_PAGE_TO_PHYS(pte_m); + l1 = pmap_l1(pmap, va); + *l1 = pte_pa | ATTR_AF | L1_TABLE; + l2 = pmap_l2(pmap, va); + } + KASSERT(l2 != NULL, ("TODO: grow l2 va")); + + pte_m = vm_page_alloc(NULL, 0, VM_ALLOC_NORMAL | + VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO); + if (pte_m == NULL) + panic("pmap_enter: l3 pte_m == NULL"); + if ((pte_m->flags & PG_ZERO) == 0) + pmap_zero_page(pte_m); + + pte_pa = VM_PAGE_TO_PHYS(pte_m); + *l2 = pte_pa | ATTR_AF | L2_TABLE; + l3 = pmap_l3(pmap, va); + } + + KASSERT(l3 != NULL, ("TODO: grow l3 va")); opte = *l3; + if (opte != 0) printf("%llx\n", opte); KASSERT(opte == 0, ("TODO: Update the entry")); + pa = VM_PAGE_TO_PHYS(m); *l3 = (pa & ~L3_OFFSET) | ATTR_AF | L3_PAGE; PMAP_UNLOCK(pmap); From owner-svn-src-projects@FreeBSD.ORG Thu Aug 21 20:36:26 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CD9176E; Thu, 21 Aug 2014 20:36:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E99E23469; Thu, 21 Aug 2014 20:36:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7LKaPuN073995; Thu, 21 Aug 2014 20:36:25 GMT (envelope-from rrs@FreeBSD.org) Received: (from rrs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7LKaNEu073980; Thu, 21 Aug 2014 20:36:23 GMT (envelope-from rrs@FreeBSD.org) Message-Id: <201408212036.s7LKaNEu073980@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rrs set sender to rrs@FreeBSD.org using -f From: Randall Stewart Date: Thu, 21 Aug 2014 20:36:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270302 - in projects/rrs_socrypto_tls: share/man/man4 share/man/man9 sys/amd64/conf sys/conf sys/crypto/aesni sys/crypto/via sys/modules/aesni sys/modules/crypto sys/opencrypto sys/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.18-1 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: Thu, 21 Aug 2014 20:36:26 -0000 Author: rrs Date: Thu Aug 21 20:36:22 2014 New Revision: 270302 URL: http://svnweb.freebsd.org/changeset/base/270302 Log: This sync's down to my play branch JMG's crypto changes. He will be committing these through other channels some day so this branch will have to wait (if it ever goes anywhere) until those are sync'd down. Modified: projects/rrs_socrypto_tls/share/man/man4/crypto.4 projects/rrs_socrypto_tls/share/man/man9/crypto.9 projects/rrs_socrypto_tls/sys/amd64/conf/GENERIC projects/rrs_socrypto_tls/sys/conf/files projects/rrs_socrypto_tls/sys/conf/files.amd64 projects/rrs_socrypto_tls/sys/conf/files.i386 projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.c projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.h projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_wrap.c projects/rrs_socrypto_tls/sys/crypto/via/padlock_hash.c projects/rrs_socrypto_tls/sys/modules/aesni/Makefile projects/rrs_socrypto_tls/sys/modules/crypto/Makefile projects/rrs_socrypto_tls/sys/opencrypto/crypto.c projects/rrs_socrypto_tls/sys/opencrypto/cryptodev.c projects/rrs_socrypto_tls/sys/opencrypto/cryptodev.h projects/rrs_socrypto_tls/sys/opencrypto/cryptosoft.c projects/rrs_socrypto_tls/sys/opencrypto/xform.c projects/rrs_socrypto_tls/sys/opencrypto/xform.h projects/rrs_socrypto_tls/sys/sys/systm.h Modified: projects/rrs_socrypto_tls/share/man/man4/crypto.4 ============================================================================== --- projects/rrs_socrypto_tls/share/man/man4/crypto.4 Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/share/man/man4/crypto.4 Thu Aug 21 20:36:22 2014 (r270302) @@ -1,8 +1,15 @@ -.\" $OpenBSD: crypto.4,v 1.4 2002/09/12 07:15:03 deraadt Exp $ +.\" $NetBSD: crypto.4,v 1.24 2014/01/27 21:23:59 pgoyette Exp $ .\" -.\" Copyright (c) 2001 Theo de Raadt +.\" Copyright (c) 2008 The NetBSD Foundation, Inc. +.\" Copyright (c) 2014 The FreeBSD Foundation .\" All rights reserved. .\" +.\" Portions of this documentation were writen by John-Mark Gurney +.\" under sponsorship from the FreeBSD Foundation. +.\" +.\" This code is derived from software contributed to The NetBSD Foundation +.\" by Coyote Point Systems, Inc. +.\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: @@ -123,3 +130,24 @@ The .Nm driver was imported to .Fx 5.0 . +.Sh BUGS +Error checking and reporting is weak. +.Pp +The values specified for symmetric-key key sizes to +.Dv CIOCGSESSION +must exactly match the values expected by +.Xr opencrypto 9 . +The output buffer and MAC buffers supplied to +.Dv CIOCCRYPT +must follow whether privacy or integrity algorithms were specified for +session: if you request a +.No non- Ns Dv NULL +algorithm, you must supply a suitably-sized buffer. +.Pp +The scheme for passing arguments for asymmetric requests is baroque. +.Pp +The naming inconsistency between +.Dv CRIOGET +and the various +.Dv CIOC Ns \&* +names is an unfortunate historical artifact. Modified: projects/rrs_socrypto_tls/share/man/man9/crypto.9 ============================================================================== --- projects/rrs_socrypto_tls/share/man/man9/crypto.9 Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/share/man/man9/crypto.9 Thu Aug 21 20:36:22 2014 (r270302) @@ -17,7 +17,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 18, 2014 +.Dd August 12, 2014 .Dt CRYPTO 9 .Os .Sh NAME @@ -175,17 +175,26 @@ Contains an algorithm identifier. Currently supported algorithms are: .Pp .Bl -tag -width ".Dv CRYPTO_RIPEMD160_HMAC" -compact +.It Dv CRYPTO_AES_128_NIST_GMAC +.It Dv CRYPTO_AES_192_NIST_GMAC +.It Dv CRYPTO_AES_256_NIST_GMAC .It Dv CRYPTO_AES_CBC +.It Dv CRYPTO_AES_ICM +.It Dv CRYPTO_AES_NIST_GCM_16 +.It Dv CRYPTO_AES_NIST_GMAC +.It Dv CRYPTO_AES_XTS .It Dv CRYPTO_ARC4 .It Dv CRYPTO_BLF_CBC .It Dv CRYPTO_CAMELLIA_CBC .It Dv CRYPTO_CAST_CBC +.It Dv CRYPTO_DEFLATE_COMP .It Dv CRYPTO_DES_CBC .It Dv CRYPTO_3DES_CBC -.It Dv CRYPTO_SKIPJACK_CBC .It Dv CRYPTO_MD5 .It Dv CRYPTO_MD5_HMAC .It Dv CRYPTO_MD5_KPDK +.It Dv CRYPTO_NULL_HMAC +.It Dv CRYPTO_NULL_CBC .It Dv CRYPTO_RIPEMD160_HMAC .It Dv CRYPTO_SHA1 .It Dv CRYPTO_SHA1_HMAC @@ -193,8 +202,7 @@ Currently supported algorithms are: .It Dv CRYPTO_SHA2_256_HMAC .It Dv CRYPTO_SHA2_384_HMAC .It Dv CRYPTO_SHA2_512_HMAC -.It Dv CRYPTO_NULL_HMAC -.It Dv CRYPTO_NULL_CBC +.It Dv CRYPTO_SKIPJACK_CBC .El .It Va cri_klen Specifies the length of the key in bits, for variable-size key Modified: projects/rrs_socrypto_tls/sys/amd64/conf/GENERIC ============================================================================== --- projects/rrs_socrypto_tls/sys/amd64/conf/GENERIC Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/amd64/conf/GENERIC Thu Aug 21 20:36:22 2014 (r270302) @@ -130,6 +130,11 @@ device aic # Adaptec 15[012]x SCSI ad device bt # Buslogic/Mylex MultiMaster SCSI adapters device isci # Intel C600 SAS controller +# crypto devices +device crypto +device cryptodev +device aesni + # ATA/SCSI peripherals device scbus # SCSI bus (required for ATA/SCSI) device ch # SCSI media changers Modified: projects/rrs_socrypto_tls/sys/conf/files ============================================================================== --- projects/rrs_socrypto_tls/sys/conf/files Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/conf/files Thu Aug 21 20:36:22 2014 (r270302) @@ -3141,6 +3141,7 @@ libkern/arc4random.c standard libkern/bcd.c standard libkern/bsearch.c standard libkern/crc32.c standard +libkern/explicit_bzero.c standard libkern/fnmatch.c standard libkern/iconv.c optional libiconv libkern/iconv_converter_if.m optional libiconv @@ -3833,6 +3834,8 @@ opencrypto/cryptodev.c optional cryptod opencrypto/cryptodev_if.m optional crypto opencrypto/cryptosoft.c optional crypto opencrypto/cryptodeflate.c optional crypto +opencrypto/gmac.c optional crypto +opencrypto/gfmult.c optional crypto opencrypto/rmd160.c optional crypto | ipsec opencrypto/skipjack.c optional crypto opencrypto/xform.c optional crypto Modified: projects/rrs_socrypto_tls/sys/conf/files.amd64 ============================================================================== --- projects/rrs_socrypto_tls/sys/conf/files.amd64 Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/conf/files.amd64 Thu Aug 21 20:36:22 2014 (r270302) @@ -130,6 +130,11 @@ amd64/pci/pci_cfgreg.c optional pci cddl/contrib/opensolaris/common/atomic/amd64/opensolaris_atomic.S optional zfs compile-with "${ZFS_S}" crypto/aesni/aeskeys_amd64.S optional aesni crypto/aesni/aesni.c optional aesni +aesni_ghash.o optional aesni \ + dependency "$S/crypto/aesni/aesni_ghash.c" \ + compile-with "${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${PROF} -mpclmul -msse4 -mmmx -msse -maes ${.IMPSRC}" \ + no-implicit-rule \ + clean "aesni_ghash.o" aesni_wrap.o optional aesni \ dependency "$S/crypto/aesni/aesni_wrap.c" \ compile-with "${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${PROF} -mmmx -msse -maes ${.IMPSRC}" \ Modified: projects/rrs_socrypto_tls/sys/conf/files.i386 ============================================================================== --- projects/rrs_socrypto_tls/sys/conf/files.i386 Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/conf/files.i386 Thu Aug 21 20:36:22 2014 (r270302) @@ -115,6 +115,11 @@ bf_enc.o optional crypto | ipsec \ no-implicit-rule crypto/aesni/aeskeys_i386.S optional aesni crypto/aesni/aesni.c optional aesni +aesni_ghash.o optional aesni \ + dependency "$S/crypto/aesni/aesni_ghash.c" \ + compile-with "${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${PROF} -mmmx -msse -maes ${.IMPSRC}" \ + no-implicit-rule \ + clean "aesni_ghash.o" aesni_wrap.o optional aesni \ dependency "$S/crypto/aesni/aesni_wrap.c" \ compile-with "${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${PROF} -mmmx -msse -maes ${.IMPSRC}" \ Modified: projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.c ============================================================================== --- projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.c Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.c Thu Aug 21 20:36:22 2014 (r270302) @@ -1,8 +1,12 @@ /*- * Copyright (c) 2005-2008 Pawel Jakub Dawidek * Copyright (c) 2010 Konstantin Belousov + * Copyright (c) 2014 The FreeBSD Foundation * All rights reserved. * + * Portions of this software were developed by John-Mark Gurney + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -41,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include struct aesni_softc { int32_t cid; @@ -56,7 +61,7 @@ static void aesni_freesession_locked(str static int aesni_cipher_setup(struct aesni_session *ses, struct cryptoini *encini); static int aesni_cipher_process(struct aesni_session *ses, - struct cryptodesc *enccrd, struct cryptop *crp); + struct cryptodesc *enccrd, struct cryptodesc *authcrd, struct cryptop *crp); MALLOC_DEFINE(M_AESNI, "aesni_data", "AESNI Data"); @@ -79,12 +84,12 @@ aesni_probe(device_t dev) return (EINVAL); } - if ((cpu_feature & CPUID_SSE2) == 0) { - device_printf(dev, "No SSE2 support but AESNI!?!\n"); + if ((cpu_feature & CPUID2_SSE41) == 0) { + device_printf(dev, "No SSE4.1 support.\n"); return (EINVAL); } - device_set_desc_copy(dev, "AES-CBC,AES-XTS"); + device_set_desc_copy(dev, "AES-CBC,AES-XTS,AES-GCM"); return (0); } @@ -106,6 +111,10 @@ aesni_attach(device_t dev) rw_init(&sc->lock, "aesni_lock"); crypto_register(sc->cid, CRYPTO_AES_CBC, 0, 0); crypto_register(sc->cid, CRYPTO_AES_XTS, 0, 0); + crypto_register(sc->cid, CRYPTO_AES_NIST_GCM_16, 0, 0); + crypto_register(sc->cid, CRYPTO_AES_128_NIST_GMAC, 0, 0); + crypto_register(sc->cid, CRYPTO_AES_192_NIST_GMAC, 0, 0); + crypto_register(sc->cid, CRYPTO_AES_256_NIST_GMAC, 0, 0); return (0); } @@ -144,8 +153,10 @@ aesni_newsession(device_t dev, uint32_t struct cryptoini *encini; int error; - if (sidp == NULL || cri == NULL) + if (sidp == NULL || cri == NULL) { + CRYPTDEB("no sidp or cri"); return (EINVAL); + } sc = device_get_softc(dev); ses = NULL; @@ -154,16 +165,30 @@ aesni_newsession(device_t dev, uint32_t switch (cri->cri_alg) { case CRYPTO_AES_CBC: case CRYPTO_AES_XTS: - if (encini != NULL) + case CRYPTO_AES_NIST_GCM_16: + if (encini != NULL) { + CRYPTDEB("encini already set"); return (EINVAL); + } encini = cri; break; + case CRYPTO_AES_128_NIST_GMAC: + case CRYPTO_AES_192_NIST_GMAC: + case CRYPTO_AES_256_NIST_GMAC: + /* + * nothing to do here, maybe in the future cache some + * values for GHASH + */ + break; default: + CRYPTDEB("unhandled algorithm"); return (EINVAL); } } - if (encini == NULL) + if (encini == NULL) { + CRYPTDEB("no cipher"); return (EINVAL); + } rw_wlock(&sc->lock); /* @@ -195,6 +220,7 @@ aesni_newsession(device_t dev, uint32_t error = aesni_cipher_setup(ses, encini); if (error != 0) { + CRYPTDEB("setup failed"); rw_wlock(&sc->lock); aesni_freesession_locked(sc, ses); rw_wunlock(&sc->lock); @@ -248,11 +274,13 @@ aesni_process(device_t dev, struct crypt { struct aesni_softc *sc = device_get_softc(dev); struct aesni_session *ses = NULL; - struct cryptodesc *crd, *enccrd; - int error; + struct cryptodesc *crd, *enccrd, *authcrd; + int error, needauth; error = 0; enccrd = NULL; + authcrd = NULL; + needauth = 0; /* Sanity check. */ if (crp == NULL) @@ -273,11 +301,40 @@ aesni_process(device_t dev, struct crypt } enccrd = crd; break; + + case CRYPTO_AES_NIST_GCM_16: + if (enccrd != NULL) { + error = EINVAL; + goto out; + } + enccrd = crd; + needauth = 1; + break; + + case CRYPTO_AES_128_NIST_GMAC: + case CRYPTO_AES_192_NIST_GMAC: + case CRYPTO_AES_256_NIST_GMAC: + if (authcrd != NULL) { + error = EINVAL; + goto out; + } + authcrd = crd; + needauth = 1; + break; + default: return (EINVAL); } } - if (enccrd == NULL || (enccrd->crd_len % AES_BLOCK_LEN) != 0) { + + /* CBC & XTS can only handle full blocks for now */ + if ((enccrd->crd_alg == CRYPTO_AES_CBC || enccrd->crd_alg == + CRYPTO_AES_XTS) && (enccrd->crd_len % AES_BLOCK_LEN) != 0) { + error = EINVAL; + goto out; + } + + if (enccrd == NULL || (needauth && authcrd == NULL)) { error = EINVAL; goto out; } @@ -293,7 +350,7 @@ aesni_process(device_t dev, struct crypt goto out; } - error = aesni_cipher_process(ses, enccrd, crp); + error = aesni_cipher_process(ses, enccrd, authcrd, crp); if (error != 0) goto out; @@ -376,22 +433,49 @@ aesni_cipher_setup(struct aesni_session return (error); } +static void +printhexstr(uint8_t *ptr, int len) +{ + int i; + + for (i = 0; i < len; i++) + printf("%02hhx", ptr[i]); +} + +/* + * authcrd contains the associated date. + */ static int aesni_cipher_process(struct aesni_session *ses, struct cryptodesc *enccrd, - struct cryptop *crp) + struct cryptodesc *authcrd, struct cryptop *crp) { + uint8_t tag[GMAC_DIGEST_LEN]; struct thread *td; - uint8_t *buf; - int error, allocated; + uint8_t *buf, *authbuf; + int error, allocated, authallocated; + int ivlen, encflag; + int r; + + encflag = (enccrd->crd_flags & CRD_F_ENCRYPT) == CRD_F_ENCRYPT; buf = aesni_cipher_alloc(enccrd, crp, &allocated); if (buf == NULL) return (ENOMEM); + authbuf = NULL; + authallocated = 0; + if (authcrd != NULL) { + authbuf = aesni_cipher_alloc(authcrd, crp, &authallocated); + if (authbuf == NULL) { + error = ENOMEM; + goto out1; + } + } + td = curthread; error = fpu_kern_enter(td, ses->fpu_ctx, FPU_KERN_NORMAL | FPU_KERN_KTHR); - if (error != 0) + if (error != 0) goto out1; if ((enccrd->crd_flags & CRD_F_KEY_EXPLICIT) != 0) { @@ -401,42 +485,109 @@ aesni_cipher_process(struct aesni_sessio goto out; } + /* XXX - validate that enccrd and authcrd have/use same key? */ + switch (enccrd->crd_alg) { + case CRYPTO_AES_CBC: + ivlen = 16; + break; + case CRYPTO_AES_XTS: + ivlen = 8; + break; + case CRYPTO_AES_NIST_GCM_16: + ivlen = 12; /* should support arbitarily larger */ + break; + } + + /* Setup ses->iv */ + bzero(ses->iv, sizeof ses->iv); + /*printf("crd_flags: %#x, ivlen: %d, iv: ", enccrd->crd_flags, ivlen);*/ if ((enccrd->crd_flags & CRD_F_ENCRYPT) != 0) { if ((enccrd->crd_flags & CRD_F_IV_EXPLICIT) != 0) - bcopy(enccrd->crd_iv, ses->iv, AES_BLOCK_LEN); + bcopy(enccrd->crd_iv, ses->iv, ivlen); if ((enccrd->crd_flags & CRD_F_IV_PRESENT) == 0) crypto_copyback(crp->crp_flags, crp->crp_buf, - enccrd->crd_inject, AES_BLOCK_LEN, ses->iv); - if (ses->algo == CRYPTO_AES_CBC) { - aesni_encrypt_cbc(ses->rounds, ses->enc_schedule, - enccrd->crd_len, buf, buf, ses->iv); - } else /* if (ses->algo == CRYPTO_AES_XTS) */ { - aesni_encrypt_xts(ses->rounds, ses->enc_schedule, - ses->xts_schedule, enccrd->crd_len, buf, buf, - ses->iv); - } + enccrd->crd_inject, ivlen, ses->iv); } else { if ((enccrd->crd_flags & CRD_F_IV_EXPLICIT) != 0) - bcopy(enccrd->crd_iv, ses->iv, AES_BLOCK_LEN); + bcopy(enccrd->crd_iv, ses->iv, ivlen); else crypto_copydata(crp->crp_flags, crp->crp_buf, - enccrd->crd_inject, AES_BLOCK_LEN, ses->iv); - if (ses->algo == CRYPTO_AES_CBC) { + enccrd->crd_inject, ivlen, ses->iv); + } + /*printhexstr(ses->iv, ivlen); + printf("\n");*/ + + if (authcrd != NULL && !encflag) { + crypto_copydata(crp->crp_flags, crp->crp_buf, + authcrd->crd_inject, GMAC_DIGEST_LEN, tag); + } else { + /*printf("ptag: "); + printhexstr(tag, sizeof tag); + printf("\n");*/ + bzero(tag, sizeof tag); + } + + /* Do work */ + switch (ses->algo) { + case CRYPTO_AES_CBC: + if (encflag) + aesni_encrypt_cbc(ses->rounds, ses->enc_schedule, + enccrd->crd_len, buf, buf, ses->iv); + else aesni_decrypt_cbc(ses->rounds, ses->dec_schedule, enccrd->crd_len, buf, ses->iv); - } else /* if (ses->algo == CRYPTO_AES_XTS) */ { + break; + case CRYPTO_AES_XTS: + if (encflag) + aesni_encrypt_xts(ses->rounds, ses->enc_schedule, + ses->xts_schedule, enccrd->crd_len, buf, buf, + ses->iv); + else aesni_decrypt_xts(ses->rounds, ses->dec_schedule, ses->xts_schedule, enccrd->crd_len, buf, buf, ses->iv); + break; + case CRYPTO_AES_NIST_GCM_16: + /*printf("GCM: %d\n", encflag); + printf("buf(%d): ", enccrd->crd_len); + printhexstr(buf, enccrd->crd_len); + printf("\nauthbuf(%d): ", authcrd->crd_len); + printhexstr(authbuf, authcrd->crd_len); + printf("\niv: "); + printhexstr(ses->iv, ivlen); + printf("\ntag: "); + printhexstr(tag, 16); + printf("\nsched: "); + printhexstr(ses->enc_schedule, 16 * (ses->rounds + 1)); + printf("\n");*/ + if (encflag) + AES_GCM_encrypt(buf, buf, authbuf, ses->iv, tag, + enccrd->crd_len, authcrd->crd_len, ivlen, + ses->enc_schedule, ses->rounds); + else { + r = AES_GCM_decrypt(buf, buf, authbuf, ses->iv, tag, + enccrd->crd_len, authcrd->crd_len, ivlen, + ses->enc_schedule, ses->rounds); + /*printf("dec r: %d\n", r);*/ } + break; } + if (allocated) crypto_copyback(crp->crp_flags, crp->crp_buf, enccrd->crd_skip, enccrd->crd_len, buf); + + /* OpenBSD doesn't copy this back. Why not? */ if ((enccrd->crd_flags & CRD_F_ENCRYPT) != 0) crypto_copydata(crp->crp_flags, crp->crp_buf, enccrd->crd_skip + enccrd->crd_len - AES_BLOCK_LEN, AES_BLOCK_LEN, ses->iv); + + if (authcrd != NULL) { + crypto_copyback(crp->crp_flags, crp->crp_buf, + authcrd->crd_inject, GMAC_DIGEST_LEN, tag); + } + out: fpu_kern_leave(td, ses->fpu_ctx); out1: @@ -444,5 +595,7 @@ out1: bzero(buf, enccrd->crd_len); free(buf, M_AESNI); } + if (authallocated) + free(authbuf, M_AESNI); return (error); } Modified: projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.h ============================================================================== --- projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.h Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/crypto/aesni/aesni.h Thu Aug 21 20:36:22 2014 (r270302) @@ -96,6 +96,16 @@ void aesni_decrypt_xts(int rounds, const const void *tweak_schedule /*__aligned(16)*/, size_t len, const uint8_t *from, uint8_t *to, const uint8_t iv[AES_BLOCK_LEN]); +/* GCM & GHASH functions */ +void AES_GCM_encrypt(const unsigned char *in, unsigned char *out, + const unsigned char *addt, const unsigned char *ivec, + unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, + const unsigned char *key, int nr); +int AES_GCM_decrypt(const unsigned char *in, unsigned char *out, + const unsigned char *addt, const unsigned char *ivec, + unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, + const unsigned char *key, int nr); + int aesni_cipher_setup_common(struct aesni_session *ses, const uint8_t *key, int keylen); uint8_t *aesni_cipher_alloc(struct cryptodesc *enccrd, struct cryptop *crp, Modified: projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_wrap.c ============================================================================== --- projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_wrap.c Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_wrap.c Thu Aug 21 20:36:22 2014 (r270302) @@ -3,8 +3,12 @@ * Copyright (c) 2010 Konstantin Belousov * Copyright (c) 2010-2011 Pawel Jakub Dawidek * Copyright 2012-2013 John-Mark Gurney + * Copyright (c) 2014 The FreeBSD Foundation * All rights reserved. * + * Portions of this software were developed by John-Mark Gurney + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -29,14 +33,15 @@ #include __FBSDID("$FreeBSD$"); - #include #include #include #include #include #include - + +#include + #include "aesencdec.h" MALLOC_DECLARE(M_AESNI); @@ -336,6 +341,7 @@ aesni_cipher_setup_common(struct aesni_s switch (ses->algo) { case CRYPTO_AES_CBC: + case CRYPTO_AES_NIST_GCM_16: switch (keylen) { case 128: ses->rounds = AES128_ROUNDS; @@ -347,6 +353,7 @@ aesni_cipher_setup_common(struct aesni_s ses->rounds = AES256_ROUNDS; break; default: + CRYPTDEB("invalid CBC/GCM key length"); return (EINVAL); } break; @@ -359,6 +366,7 @@ aesni_cipher_setup_common(struct aesni_s ses->rounds = AES256_ROUNDS; break; default: + CRYPTDEB("invalid XTS key length"); return (EINVAL); } break; @@ -368,7 +376,9 @@ aesni_cipher_setup_common(struct aesni_s aesni_set_enckey(key, ses->enc_schedule, ses->rounds); aesni_set_deckey(ses->enc_schedule, ses->dec_schedule, ses->rounds); - if (ses->algo == CRYPTO_AES_CBC) + + /* setup IV */ + if (ses->algo == CRYPTO_AES_CBC || ses->algo == CRYPTO_AES_NIST_GCM_16) arc4rand(ses->iv, sizeof(ses->iv), 0); else /* if (ses->algo == CRYPTO_AES_XTS) */ { aesni_set_enckey(key + keylen / 16, ses->xts_schedule, Modified: projects/rrs_socrypto_tls/sys/crypto/via/padlock_hash.c ============================================================================== --- projects/rrs_socrypto_tls/sys/crypto/via/padlock_hash.c Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/crypto/via/padlock_hash.c Thu Aug 21 20:36:22 2014 (r270302) @@ -75,7 +75,7 @@ struct padlock_sha_ctx { CTASSERT(sizeof(struct padlock_sha_ctx) <= sizeof(union authctx)); static void padlock_sha_init(struct padlock_sha_ctx *ctx); -static int padlock_sha_update(struct padlock_sha_ctx *ctx, uint8_t *buf, +static int padlock_sha_update(struct padlock_sha_ctx *ctx, const uint8_t *buf, uint16_t bufsize); static void padlock_sha1_final(uint8_t *hash, struct padlock_sha_ctx *ctx); static void padlock_sha256_final(uint8_t *hash, struct padlock_sha_ctx *ctx); @@ -83,16 +83,16 @@ static void padlock_sha256_final(uint8_t static struct auth_hash padlock_hmac_sha1 = { CRYPTO_SHA1_HMAC, "HMAC-SHA1", 20, SHA1_HASH_LEN, SHA1_HMAC_BLOCK_LEN, sizeof(struct padlock_sha_ctx), - (void (*)(void *))padlock_sha_init, - (int (*)(void *, uint8_t *, uint16_t))padlock_sha_update, + (void (*)(void *))padlock_sha_init, NULL, NULL, + (int (*)(void *, const uint8_t *, uint16_t))padlock_sha_update, (void (*)(uint8_t *, void *))padlock_sha1_final }; static struct auth_hash padlock_hmac_sha256 = { CRYPTO_SHA2_256_HMAC, "HMAC-SHA2-256", 32, SHA2_256_HASH_LEN, SHA2_256_HMAC_BLOCK_LEN, sizeof(struct padlock_sha_ctx), - (void (*)(void *))padlock_sha_init, - (int (*)(void *, uint8_t *, uint16_t))padlock_sha_update, + (void (*)(void *))padlock_sha_init, NULL, NULL, + (int (*)(void *, const uint8_t *, uint16_t))padlock_sha_update, (void (*)(uint8_t *, void *))padlock_sha256_final }; @@ -167,7 +167,7 @@ padlock_sha_init(struct padlock_sha_ctx } static int -padlock_sha_update(struct padlock_sha_ctx *ctx, uint8_t *buf, uint16_t bufsize) +padlock_sha_update(struct padlock_sha_ctx *ctx, const uint8_t *buf, uint16_t bufsize) { if (ctx->psc_size - ctx->psc_offset < bufsize) { Modified: projects/rrs_socrypto_tls/sys/modules/aesni/Makefile ============================================================================== --- projects/rrs_socrypto_tls/sys/modules/aesni/Makefile Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/modules/aesni/Makefile Thu Aug 21 20:36:22 2014 (r270302) @@ -7,13 +7,18 @@ SRCS= aesni.c SRCS+= aeskeys_${MACHINE_CPUARCH}.S SRCS+= device_if.h bus_if.h opt_bus.h cryptodev_if.h -OBJS+= aesni_wrap.o +OBJS+= aesni_ghash.o aesni_wrap.o # Remove -nostdinc so we can get the intrinsics. +aesni_ghash.o: aesni_ghash.c + # XXX - gcc won't understand -mpclmul + ${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${PROF} \ + -mmmx -msse -msse4 -maes -mpclmul ${.IMPSRC} + ${CTFCONVERT_CMD} + aesni_wrap.o: aesni_wrap.c ${CC} -c ${CFLAGS:C/^-O2$/-O3/:N-nostdinc} ${WERROR} ${PROF} \ -mmmx -msse -maes ${.IMPSRC} ${CTFCONVERT_CMD} .include - Modified: projects/rrs_socrypto_tls/sys/modules/crypto/Makefile ============================================================================== --- projects/rrs_socrypto_tls/sys/modules/crypto/Makefile Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/modules/crypto/Makefile Thu Aug 21 20:36:22 2014 (r270302) @@ -18,6 +18,7 @@ SRCS += camellia.c camellia-api.c SRCS += des_ecb.c des_enc.c des_setkey.c SRCS += sha1.c sha2.c sha256c.c SRCS += siphash.c +SRCS += gmac.c gfmult.c SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h SRCS += opt_ddb.h Modified: projects/rrs_socrypto_tls/sys/opencrypto/crypto.c ============================================================================== --- projects/rrs_socrypto_tls/sys/opencrypto/crypto.c Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/opencrypto/crypto.c Thu Aug 21 20:36:22 2014 (r270302) @@ -316,8 +316,12 @@ driver_suitable(const struct cryptocap * /* See if all the algorithms are supported. */ for (cr = cri; cr; cr = cr->cri_next) - if (cap->cc_alg[cr->cri_alg] == 0) + if (cap->cc_alg[cr->cri_alg] == 0) { +#ifdef DEBUG + printf("cr->cri_alg: %d\n", cr->cri_alg); +#endif return 0; + } return 1; } @@ -421,9 +425,12 @@ crypto_newsession(u_int64_t *sid, struct (*sid) <<= 32; (*sid) |= (lid & 0xffffffff); cap->cc_sessions++; - } - } else + } else + CRYPTDEB("dev newsession failed"); + } else { + CRYPTDEB("no driver"); err = EINVAL; + } CRYPTO_DRIVER_UNLOCK(); return err; } Modified: projects/rrs_socrypto_tls/sys/opencrypto/cryptodev.c ============================================================================== --- projects/rrs_socrypto_tls/sys/opencrypto/cryptodev.c Thu Aug 21 20:35:39 2014 (r270301) +++ projects/rrs_socrypto_tls/sys/opencrypto/cryptodev.c Thu Aug 21 20:36:22 2014 (r270302) @@ -3,6 +3,11 @@ /*- * Copyright (c) 2001 Theo de Raadt * Copyright (c) 2002-2006 Sam Leffler, Errno Consulting + * Copyright (c) 2014 The FreeBSD Foundation + * All rights reserved. + * + * Portions of this software were developed by John-Mark Gurney + * under sponsorship from the FreeBSD Foundation. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -36,6 +41,7 @@ __FBSDID("$FreeBSD$"); #include "opt_compat.h" +#include "opt_kdtrace.h" #include #include @@ -54,10 +60,15 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include +SDT_PROVIDER_DECLARE(opencrypto); + +SDT_PROBE_DEFINE1(opencrypto, dev, ioctl, error, "int"/*line number*/); + #ifdef COMPAT_FREEBSD32 #include #include @@ -317,6 +328,8 @@ static int csefree(struct csession *); static int cryptodev_op(struct csession *, struct crypt_op *, struct ucred *, struct thread *td); +static int cryptodev_aead(struct csession *, struct crypt_aead *, + struct ucred *, struct thread *); static int cryptodev_key(struct crypt_kop *); static int cryptodev_find(struct crypt_find_op *); @@ -377,6 +390,7 @@ cryptof_ioctl( struct csession *cse; struct session_op *sop; struct crypt_op *cop; + struct crypt_aead *caead; struct enc_xform *txform = NULL; struct auth_hash *thash = NULL; struct crypt_kop *kop; @@ -437,7 +451,15 @@ cryptof_ioctl( case CRYPTO_CAMELLIA_CBC: txform = &enc_xform_camellia; break; + case CRYPTO_AES_ICM: + txform = &enc_xform_aes_icm; + break; + case CRYPTO_AES_NIST_GCM_16: + txform = &enc_xform_aes_nist_gcm; + break; + default: + CRYPTDEB("invalid cipher"); return (EINVAL); } @@ -462,6 +484,16 @@ cryptof_ioctl( case CRYPTO_RIPEMD160_HMAC: thash = &auth_hash_hmac_ripemd_160; break; + case CRYPTO_AES_128_NIST_GMAC: + thash = &auth_hash_nist_gmac_aes_128; + break; + case CRYPTO_AES_192_NIST_GMAC: + thash = &auth_hash_nist_gmac_aes_192; + break; + case CRYPTO_AES_256_NIST_GMAC: + thash = &auth_hash_nist_gmac_aes_256; + break; + #ifdef notdef case CRYPTO_MD5: thash = &auth_hash_md5; @@ -474,6 +506,7 @@ cryptof_ioctl( thash = &auth_hash_null; break; default: + CRYPTDEB("invalid mac"); return (EINVAL); } @@ -485,6 +518,7 @@ cryptof_ioctl( crie.cri_klen = sop->keylen * 8; if (sop->keylen > txform->maxkey || sop->keylen < txform->minkey) { + CRYPTDEB("invalid cipher parameters"); error = EINVAL; goto bail; } @@ -492,8 +526,10 @@ cryptof_ioctl( crie.cri_key = malloc(crie.cri_klen / 8, M_XDATA, M_WAITOK); if ((error = copyin(sop->key, crie.cri_key, - crie.cri_klen / 8))) + crie.cri_klen / 8))) { + CRYPTDEB("invalid key"); goto bail; + } if (thash) crie.cri_next = &cria; } @@ -502,6 +538,7 @@ cryptof_ioctl( cria.cri_alg = thash->type; cria.cri_klen = sop->mackeylen * 8; if (sop->mackeylen != thash->keysize) { + CRYPTDEB("invalid mac key length"); error = EINVAL; goto bail; } @@ -510,8 +547,10 @@ cryptof_ioctl( cria.cri_key = malloc(cria.cri_klen / 8, M_XDATA, M_WAITOK); if ((error = copyin(sop->mackey, cria.cri_key, - cria.cri_klen / 8))) + cria.cri_klen / 8))) { + CRYPTDEB("invalid mac key"); goto bail; + } } } @@ -523,13 +562,17 @@ cryptof_ioctl( ) { crid = SES2(sop)->crid; error = checkforsoftware(crid); - if (error) + if (error) { + CRYPTDEB("checkforsoftware"); goto bail; + } } else crid = CRYPTOCAP_F_HARDWARE; error = crypto_newsession(&sid, (txform ? &crie : &cria), crid); - if (error) + if (error) { + CRYPTDEB("crypto_newsession"); goto bail; + } cse = csecreate(fcr, sid, crie.cri_key, crie.cri_klen, cria.cri_key, cria.cri_klen, sop->cipher, sop->mac, txform, @@ -538,6 +581,7 @@ cryptof_ioctl( if (cse == NULL) { crypto_freesession(sid); error = EINVAL; + CRYPTDEB("csecreate"); goto bail; } sop->ses = cse->ses; @@ -584,8 +628,10 @@ bail: #endif cop = (struct crypt_op *)data; cse = csefind(fcr, cop->ses); - if (cse == NULL) + if (cse == NULL) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); return (EINVAL); + } error = cryptodev_op(cse, cop, active_cred, td); #ifdef COMPAT_FREEBSD32 if (error == 0 && cmd == CIOCCRYPT32) @@ -639,6 +685,13 @@ bail: case CIOCFINDDEV: error = cryptodev_find((struct crypt_find_op *)data); break; + case CIOCCRYPTAEAD: + caead = (struct crypt_aead *)data; + cse = csefind(fcr, caead->ses); + if (cse == NULL) + return (EINVAL); + error = cryptodev_aead(cse, caead, active_cred, td); + break; default: error = EINVAL; break; @@ -661,12 +714,16 @@ cryptodev_op( struct cryptodesc *crde = NULL, *crda = NULL; int error; - if (cop->len > 256*1024-4) + if (cop->len > 256*1024-4) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); return (E2BIG); + } if (cse->txform) { - if (cop->len == 0 || (cop->len % cse->txform->blocksize) != 0) + if (cop->len == 0 || (cop->len % cse->txform->blocksize) != 0) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); return (EINVAL); + } } cse->uio.uio_iov = &cse->iovec; @@ -686,6 +743,7 @@ cryptodev_op( crp = crypto_getreq((cse->txform != NULL) + (cse->thash != NULL)); if (crp == NULL) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); error = ENOMEM; goto bail; } @@ -698,13 +756,17 @@ cryptodev_op( if (cse->txform) crde = crp->crp_desc; else { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); error = EINVAL; goto bail; } } - if ((error = copyin(cop->src, cse->uio.uio_iov[0].iov_base, cop->len))) + if ((error = copyin(cop->src, cse->uio.uio_iov[0].iov_base, + cop->len))) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); goto bail; + } if (crda) { crda->crd_skip = 0; @@ -739,15 +801,20 @@ cryptodev_op( if (cop->iv) { if (crde == NULL) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); error = EINVAL; goto bail; } if (cse->cipher == CRYPTO_ARC4) { /* XXX use flag? */ + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); error = EINVAL; goto bail; } - if ((error = copyin(cop->iv, cse->tmp_iv, cse->txform->blocksize))) + if ((error = copyin(cop->iv, cse->tmp_iv, + cse->txform->blocksize))) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); goto bail; + } bcopy(cse->tmp_iv, crde->crd_iv, cse->txform->blocksize); crde->crd_flags |= CRD_F_IV_EXPLICIT | CRD_F_IV_PRESENT; crde->crd_skip = 0; @@ -760,6 +827,7 @@ cryptodev_op( } if (cop->mac && crda == NULL) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); error = EINVAL; goto bail; } @@ -778,8 +846,10 @@ again: error = msleep(crp, &cse->lock, PWAIT, "crydev", 0); mtx_unlock(&cse->lock); - if (error != 0) + if (error != 0) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); goto bail; + } if (crp->crp_etype == EAGAIN) { crp->crp_etype = 0; @@ -788,23 +858,30 @@ again: } if (crp->crp_etype != 0) { + SDT_PROBE1(opencrypto, dev, ioctl, error, __LINE__); error = crp->crp_etype; goto bail; } if (cse->error) { *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Fri Aug 22 14:27:42 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F469B4C; Fri, 22 Aug 2014 14:27:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 195543844; Fri, 22 Aug 2014 14:27:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7MERgFO071699; Fri, 22 Aug 2014 14:27:42 GMT (envelope-from rrs@FreeBSD.org) Received: (from rrs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7MERf01071695; Fri, 22 Aug 2014 14:27:41 GMT (envelope-from rrs@FreeBSD.org) Message-Id: <201408221427.s7MERf01071695@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rrs set sender to rrs@FreeBSD.org using -f From: Randall Stewart Date: Fri, 22 Aug 2014 14:27:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270330 - in projects/rrs_socrypto_tls/sys: crypto/aesni libkern opencrypto 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.18-1 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: Fri, 22 Aug 2014 14:27:42 -0000 Author: rrs Date: Fri Aug 22 14:27:41 2014 New Revision: 270330 URL: http://svnweb.freebsd.org/changeset/base/270330 Log: We need to have these added too. Obtained from: jmg MFC after: never AM sys/crypto/aesni/aesni_ghash.c AM sys/libkern/explicit_bzero.c AM sys/opencrypto/gfmult.c AM sys/opencrypto/gfmult.h AM sys/opencrypto/gmac.c AM sys/opencrypto/gmac.h Added: projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_ghash.c (contents, props changed) projects/rrs_socrypto_tls/sys/libkern/explicit_bzero.c (contents, props changed) projects/rrs_socrypto_tls/sys/opencrypto/gfmult.c (contents, props changed) projects/rrs_socrypto_tls/sys/opencrypto/gfmult.h (contents, props changed) projects/rrs_socrypto_tls/sys/opencrypto/gmac.c (contents, props changed) projects/rrs_socrypto_tls/sys/opencrypto/gmac.h (contents, props changed) Added: projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_ghash.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/rrs_socrypto_tls/sys/crypto/aesni/aesni_ghash.c Fri Aug 22 14:27:41 2014 (r270330) @@ -0,0 +1,767 @@ +/*- + * Copyright (c) 2014 The FreeBSD Foundation + * All rights reserved. + * + * This software was developed by John-Mark Gurney under + * the sponsorship from the FreeBSD Foundation. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * + * $Id$ + * + */ + +/* + * Figure 5, 8 and 12 are copied from the Intel white paper: + * Intel® Carry-Less Multiplication Instruction and its Usage for + * Computing the GCM Mode + * + * and as such are: + * Copyright © 2010 Intel Corporation. All rights reserved. + * + * Please see white paper for complete license. + */ + +#ifdef _KERNEL +#include +#else +#include +#endif + +#include +#include +#include + +static inline int +m128icmp(__m128i a, __m128i b) +{ + __m128i cmp; + + cmp = _mm_cmpeq_epi32(a, b); + + return _mm_movemask_epi8(cmp) == 0xffff; +} + +/* some code from carry-less-multiplication-instruction-in-gcm-mode-paper.pdf */ + +/* Figure 5. Code Sample - Performing Ghash Using Algorithms 1 and 5 (C) */ +static void +gfmul(__m128i a, __m128i b, __m128i *res) +{ + __m128i tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8, tmp9; + + tmp3 = _mm_clmulepi64_si128(a, b, 0x00); + tmp4 = _mm_clmulepi64_si128(a, b, 0x10); + tmp5 = _mm_clmulepi64_si128(a, b, 0x01); + tmp6 = _mm_clmulepi64_si128(a, b, 0x11); + + tmp4 = _mm_xor_si128(tmp4, tmp5); + tmp5 = _mm_slli_si128(tmp4, 8); + tmp4 = _mm_srli_si128(tmp4, 8); + tmp3 = _mm_xor_si128(tmp3, tmp5); + tmp6 = _mm_xor_si128(tmp6, tmp4); + + tmp7 = _mm_srli_epi32(tmp3, 31); + tmp8 = _mm_srli_epi32(tmp6, 31); + tmp3 = _mm_slli_epi32(tmp3, 1); + tmp6 = _mm_slli_epi32(tmp6, 1); + + tmp9 = _mm_srli_si128(tmp7, 12); + tmp8 = _mm_slli_si128(tmp8, 4); + tmp7 = _mm_slli_si128(tmp7, 4); + tmp3 = _mm_or_si128(tmp3, tmp7); + tmp6 = _mm_or_si128(tmp6, tmp8); + tmp6 = _mm_or_si128(tmp6, tmp9); + + tmp7 = _mm_slli_epi32(tmp3, 31); + tmp8 = _mm_slli_epi32(tmp3, 30); + tmp9 = _mm_slli_epi32(tmp3, 25); + + tmp7 = _mm_xor_si128(tmp7, tmp8); + tmp7 = _mm_xor_si128(tmp7, tmp9); + tmp8 = _mm_srli_si128(tmp7, 4); + tmp7 = _mm_slli_si128(tmp7, 12); + tmp3 = _mm_xor_si128(tmp3, tmp7); + + tmp2 = _mm_srli_epi32(tmp3, 1); + tmp4 = _mm_srli_epi32(tmp3, 2); + tmp5 = _mm_srli_epi32(tmp3, 7); + tmp2 = _mm_xor_si128(tmp2, tmp4); + tmp2 = _mm_xor_si128(tmp2, tmp5); + tmp2 = _mm_xor_si128(tmp2, tmp8); + tmp3 = _mm_xor_si128(tmp3, tmp2); + tmp6 = _mm_xor_si128(tmp6, tmp3); + + *res = tmp6; +} + +/* + * Figure 8. Code Sample - Performing Ghash Using an Aggregated Reduction + * Method */ +static void +reduce4(__m128i H1, __m128i H2, __m128i H3, __m128i H4, + __m128i X1, __m128i X2, __m128i X3, __m128i X4, __m128i *res) +{ + /*algorithm by Krzysztof Jankowski, Pierre Laurent - Intel*/ + __m128i H1_X1_lo, H1_X1_hi, H2_X2_lo, H2_X2_hi, H3_X3_lo, + H3_X3_hi, H4_X4_lo, H4_X4_hi, lo, hi; + __m128i tmp0, tmp1, tmp2, tmp3; + __m128i tmp4, tmp5, tmp6, tmp7; + __m128i tmp8, tmp9; + + H1_X1_lo = _mm_clmulepi64_si128(H1, X1, 0x00); + H2_X2_lo = _mm_clmulepi64_si128(H2, X2, 0x00); + H3_X3_lo = _mm_clmulepi64_si128(H3, X3, 0x00); + H4_X4_lo = _mm_clmulepi64_si128(H4, X4, 0x00); + + lo = _mm_xor_si128(H1_X1_lo, H2_X2_lo); + lo = _mm_xor_si128(lo, H3_X3_lo); + lo = _mm_xor_si128(lo, H4_X4_lo); + + H1_X1_hi = _mm_clmulepi64_si128(H1, X1, 0x11); + H2_X2_hi = _mm_clmulepi64_si128(H2, X2, 0x11); + H3_X3_hi = _mm_clmulepi64_si128(H3, X3, 0x11); + H4_X4_hi = _mm_clmulepi64_si128(H4, X4, 0x11); + + hi = _mm_xor_si128(H1_X1_hi, H2_X2_hi); + hi = _mm_xor_si128(hi, H3_X3_hi); + hi = _mm_xor_si128(hi, H4_X4_hi); + + tmp0 = _mm_shuffle_epi32(H1, 78); + tmp4 = _mm_shuffle_epi32(X1, 78); + tmp0 = _mm_xor_si128(tmp0, H1); + tmp4 = _mm_xor_si128(tmp4, X1); + tmp1 = _mm_shuffle_epi32(H2, 78); + tmp5 = _mm_shuffle_epi32(X2, 78); + tmp1 = _mm_xor_si128(tmp1, H2); + tmp5 = _mm_xor_si128(tmp5, X2); + tmp2 = _mm_shuffle_epi32(H3, 78); + tmp6 = _mm_shuffle_epi32(X3, 78); + tmp2 = _mm_xor_si128(tmp2, H3); + tmp6 = _mm_xor_si128(tmp6, X3); + tmp3 = _mm_shuffle_epi32(H4, 78); + tmp7 = _mm_shuffle_epi32(X4, 78); + tmp3 = _mm_xor_si128(tmp3, H4); + tmp7 = _mm_xor_si128(tmp7, X4); + + tmp0 = _mm_clmulepi64_si128(tmp0, tmp4, 0x00); + tmp1 = _mm_clmulepi64_si128(tmp1, tmp5, 0x00); + tmp2 = _mm_clmulepi64_si128(tmp2, tmp6, 0x00); + tmp3 = _mm_clmulepi64_si128(tmp3, tmp7, 0x00); + + tmp0 = _mm_xor_si128(tmp0, lo); + tmp0 = _mm_xor_si128(tmp0, hi); + tmp0 = _mm_xor_si128(tmp1, tmp0); + tmp0 = _mm_xor_si128(tmp2, tmp0); + tmp0 = _mm_xor_si128(tmp3, tmp0); + + tmp4 = _mm_slli_si128(tmp0, 8); + tmp0 = _mm_srli_si128(tmp0, 8); + + lo = _mm_xor_si128(tmp4, lo); + hi = _mm_xor_si128(tmp0, hi); + + tmp3 = lo; + tmp6 = hi; + + tmp7 = _mm_srli_epi32(tmp3, 31); + tmp8 = _mm_srli_epi32(tmp6, 31); + tmp3 = _mm_slli_epi32(tmp3, 1); + tmp6 = _mm_slli_epi32(tmp6, 1); + + tmp9 = _mm_srli_si128(tmp7, 12); + tmp8 = _mm_slli_si128(tmp8, 4); + tmp7 = _mm_slli_si128(tmp7, 4); + tmp3 = _mm_or_si128(tmp3, tmp7); + tmp6 = _mm_or_si128(tmp6, tmp8); + tmp6 = _mm_or_si128(tmp6, tmp9); + + tmp7 = _mm_slli_epi32(tmp3, 31); + tmp8 = _mm_slli_epi32(tmp3, 30); + tmp9 = _mm_slli_epi32(tmp3, 25); + + tmp7 = _mm_xor_si128(tmp7, tmp8); + tmp7 = _mm_xor_si128(tmp7, tmp9); + tmp8 = _mm_srli_si128(tmp7, 4); + tmp7 = _mm_slli_si128(tmp7, 12); + tmp3 = _mm_xor_si128(tmp3, tmp7); + + tmp2 = _mm_srli_epi32(tmp3, 1); + tmp4 = _mm_srli_epi32(tmp3, 2); + tmp5 = _mm_srli_epi32(tmp3, 7); + tmp2 = _mm_xor_si128(tmp2, tmp4); + tmp2 = _mm_xor_si128(tmp2, tmp5); + tmp2 = _mm_xor_si128(tmp2, tmp8); + tmp3 = _mm_xor_si128(tmp3, tmp2); + tmp6 = _mm_xor_si128(tmp6, tmp3); + + *res = tmp6; +} + +/* + * Figure 12. AES-GCM: Processing Four Blocks in Parallel with Aggregated + * Every Four Blocks + */ +/* + * per NIST SP-800-38D, 5.2.1.1, len(p) <= 2^39-256 (in bits), or + * 2^32-256*8*16 bytes. + */ +void +AES_GCM_encrypt(const unsigned char *in, unsigned char *out, + const unsigned char *addt, const unsigned char *ivec, + unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, + const unsigned char *key, int nr) +{ + int i, j ,k; + __m128i tmp1, tmp2, tmp3, tmp4; + __m128i tmp5, tmp6, tmp7, tmp8; + __m128i H, H2, H3, H4, Y, T; + __m128i *KEY = (__m128i*)key; + __m128i ctr1, ctr2, ctr3, ctr4; + __m128i ctr5, ctr6, ctr7, ctr8; + __m128i last_block = _mm_setzero_si128(); + __m128i ONE = _mm_set_epi32(0, 1, 0, 0); + __m128i EIGHT = _mm_set_epi32(0, 8, 0, 0); + __m128i BSWAP_EPI64 = _mm_set_epi8(8,9,10,11,12,13,14,15,0,1,2,3,4,5,6, + 7); + __m128i BSWAP_MASK = _mm_set_epi8(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14, + 15); + __m128i X = _mm_setzero_si128(); + + if (ibytes == 96/8) { + Y = _mm_loadu_si128((__m128i*)ivec); + Y = _mm_insert_epi32(Y, 0x1000000, 3); + /*(Compute E[ZERO, KS] and E[Y0, KS] together*/ + tmp1 = _mm_xor_si128(X, KEY[0]); + tmp2 = _mm_xor_si128(Y, KEY[0]); + for (j=1; j < nr-1; j+=2) { + tmp1 = _mm_aesenc_si128(tmp1, KEY[j]); + tmp2 = _mm_aesenc_si128(tmp2, KEY[j]); + + tmp1 = _mm_aesenc_si128(tmp1, KEY[j+1]); + tmp2 = _mm_aesenc_si128(tmp2, KEY[j+1]); + } + tmp1 = _mm_aesenc_si128(tmp1, KEY[nr-1]); + tmp2 = _mm_aesenc_si128(tmp2, KEY[nr-1]); + + H = _mm_aesenclast_si128(tmp1, KEY[nr]); + T = _mm_aesenclast_si128(tmp2, KEY[nr]); + + H = _mm_shuffle_epi8(H, BSWAP_MASK); + } else { + tmp1 = _mm_xor_si128(X, KEY[0]); + for (j=1; j +#include + +/* + * explicit_bzero - don't let the compiler optimize away bzero + */ +void +explicit_bzero(void *p, size_t n) +{ + bzero(p, n); +} Added: projects/rrs_socrypto_tls/sys/opencrypto/gfmult.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/rrs_socrypto_tls/sys/opencrypto/gfmult.c Fri Aug 22 14:27:41 2014 (r270330) @@ -0,0 +1,274 @@ +/*- + * Copyright (c) 2014 The FreeBSD Foundation + * All rights reserved. + * + * This software was developed by John-Mark Gurney under + * the sponsorship from the FreeBSD Foundation. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + * + */ + +#include "gfmult.h" + +#define REV_POLY_REDUCT 0xe1 /* 0x87 bit reversed */ + +/* reverse the bits of a nibble */ +static const uint8_t nib_rev[] = { + 0x0, 0x8, 0x4, 0xc, 0x2, 0xa, 0x6, 0xe, + 0x1, 0x9, 0x5, 0xd, 0x3, 0xb, 0x7, 0xf, +}; + +/* calulate v * 2 */ +static inline struct gf128 +gf128_mulalpha(struct gf128 v) +{ + uint64_t mask; + + mask = !!(v.v[1] & 1); + mask = ~(mask - 1); + v.v[1] = (v.v[1] >> 1) | ((v.v[0] & 1) << 63); + v.v[0] = (v.v[0] >> 1) ^ ((mask & REV_POLY_REDUCT) << 56); + + return v; +} + +/* + * Generate a table for 0-16 * h. Store the results in the table w/ indexes + * bit reversed, and the words striped across the values. + */ +void +gf128_genmultable(struct gf128 h, struct gf128table *t) +{ + struct gf128 tbl[16]; + int i; + + tbl[0] = MAKE_GF128(0, 0); + tbl[1] = h; + + for (i = 2; i < 16; i += 2) { + tbl[i] = gf128_mulalpha(tbl[i / 2]); + tbl[i + 1] = gf128_add(tbl[i], h); + } + + for (i = 0; i < 16; i++) { + t->a[nib_rev[i]] = tbl[i].v[0] >> 32; + t->b[nib_rev[i]] = tbl[i].v[0]; + t->c[nib_rev[i]] = tbl[i].v[1] >> 32; + t->d[nib_rev[i]] = tbl[i].v[1]; + } +} + +/* + * Generate tables containing h, h^2, h^3 and h^4, starting at 0. + */ +void +gf128_genmultable4(struct gf128 h, struct gf128table4 *t) +{ + struct gf128 h2, h3, h4; + + gf128_genmultable(h, &t->tbls[0]); + + h2 = gf128_mul(h, &t->tbls[0]); + + gf128_genmultable(h2, &t->tbls[1]); + + h3 = gf128_mul(h, &t->tbls[1]); + gf128_genmultable(h3, &t->tbls[2]); + + h4 = gf128_mul(h2, &t->tbls[1]); + gf128_genmultable(h4, &t->tbls[3]); +} + +/* + * Read a row from the table. + */ +static inline struct gf128 +readrow(struct gf128table *tbl, unsigned bits) +{ + struct gf128 r; + + bits = bits % 16; + + r.v[0] = ((uint64_t)tbl->a[bits] << 32) | tbl->b[bits]; + r.v[1] = ((uint64_t)tbl->c[bits] << 32) | tbl->d[bits]; + + return r; +} + +/* + * These are the reduction values. Since we are dealing with bit reversed + * version, the values need to be bit reversed, AND the indexes are also + * bit reversed to make lookups quicker. + */ +static uint16_t reduction[] = { + 0x0000, 0x1c20, 0x3840, 0x2460, 0x7080, 0x6ca0, 0x48c0, 0x54e0, + 0xe100, 0xfd20, 0xd940, 0xc560, 0x9180, 0x8da0, 0xa9c0, 0xb5e0, +}; + +/* + * Calculate: + * (x*2^4 + word[3,0]*h) * + * 2^4 + word[7,4]*h) * + * ... + * 2^4 + word[63,60]*h + */ +static struct gf128 +gfmultword(uint64_t word, struct gf128 x, struct gf128table *tbl) +{ + struct gf128 row; + unsigned bits; + unsigned redbits; + int i; + + for (i = 0; i < 64; i += 4) { + bits = word % 16; + + /* fetch row */ + row = readrow(tbl, bits); + + /* x * 2^4 */ + redbits = x.v[1] % 16; + x.v[1] = (x.v[1] >> 4) | (x.v[0] % 16) << 60; + x.v[0] >>= 4; + x.v[0] ^= (uint64_t)reduction[redbits] << (64 - 16); + + word >>= 4; + + x = gf128_add(x, row); + } + + return x; +} + +/* + * Calculate + * (x*2^4 + worda[3,0]*h^4+wordb[3,0]*h^3+...+wordd[3,0]*h) * + * ... + * 2^4 + worda[63,60]*h^4+ ... + wordd[63,60]*h + * + * Passing/returning struct is .5% faster than passing in via pointer on + * amd64. + */ +static struct gf128 +gfmultword4(uint64_t worda, uint64_t wordb, uint64_t wordc, uint64_t wordd, + struct gf128 x, struct gf128table4 *tbl) +{ + struct gf128 rowa, rowb, rowc, rowd; + unsigned bitsa, bitsb, bitsc, bitsd; + unsigned redbits; + int i; + + /* + * XXX - nibble reverse words to save a shift? probably not as + * nibble reverse would take 20 ops (5 * 4) verse 16 + */ + + for (i = 0; i < 64; i += 4) { + bitsa = worda % 16; + bitsb = wordb % 16; + bitsc = wordc % 16; + bitsd = wordd % 16; + + /* fetch row */ + rowa = readrow(&tbl->tbls[3], bitsa); + rowb = readrow(&tbl->tbls[2], bitsb); + rowc = readrow(&tbl->tbls[1], bitsc); + rowd = readrow(&tbl->tbls[0], bitsd); + + /* x * 2^4 */ + redbits = x.v[1] % 16; + x.v[1] = (x.v[1] >> 4) | (x.v[0] % 16) << 60; + x.v[0] >>= 4; + x.v[0] ^= (uint64_t)reduction[redbits] << (64 - 16); + + worda >>= 4; + wordb >>= 4; + wordc >>= 4; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Fri Aug 22 15:13:09 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E6CBF98; Fri, 22 Aug 2014 15:13:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13DF43D87; Fri, 22 Aug 2014 15:13:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7MFD94O094785; Fri, 22 Aug 2014 15:13:09 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7MFD5cR094764; Fri, 22 Aug 2014 15:13:05 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201408221513.s7MFD5cR094764@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Fri, 22 Aug 2014 15:13:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270335 - in projects/zfsd/head: . bin/chio bin/csh bin/date/tests bin/ed bin/freebsd-version bin/ls bin/mv bin/pkill bin/pkill/tests bin/ps bin/rm bin/setfacl bin/sh bin/sh/tests bin/s... 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.18-1 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: Fri, 22 Aug 2014 15:13:09 -0000 Author: asomers Date: Fri Aug 22 15:12:56 2014 New Revision: 270335 URL: http://svnweb.freebsd.org/changeset/base/270335 Log: IFC @r270315 Added: projects/zfsd/head/.arclint - copied unchanged from r270315, head/.arclint projects/zfsd/head/bin/date/tests/format_string_test.sh - copied unchanged from r270315, head/bin/date/tests/format_string_test.sh projects/zfsd/head/bin/sh/tests/builtins/break6.0 - copied unchanged from r270315, head/bin/sh/tests/builtins/break6.0 projects/zfsd/head/bin/sh/tests/expansion/arith14.0 - copied unchanged from r270315, head/bin/sh/tests/expansion/arith14.0 projects/zfsd/head/bin/sh/tests/functional_test.sh - copied unchanged from r270315, head/bin/sh/tests/functional_test.sh projects/zfsd/head/bin/sh/tests/parameters/positional3.0 - copied unchanged from r270315, head/bin/sh/tests/parameters/positional3.0 projects/zfsd/head/bin/sh/tests/parameters/positional4.0 - copied unchanged from r270315, head/bin/sh/tests/parameters/positional4.0 projects/zfsd/head/bin/sh/tests/parameters/positional5.0 - copied unchanged from r270315, head/bin/sh/tests/parameters/positional5.0 projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggencoding.d.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.agghist.d.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpack.d.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackbanner.ksh.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggpackzoom.d.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.aggzoom.d.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ - copied from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.fds.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.fds.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.getf.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.getf.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.procpriv.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.procpriv.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.providers.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.providers.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/strtoll/ - copied from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/strtoll/ projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/uctf/ - copied from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/uctf/ projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh.out - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh.out projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh - copied unchanged from r270315, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh projects/zfsd/head/cddl/contrib/opensolaris/common/util/ - copied from r270315, head/cddl/contrib/opensolaris/common/util/ projects/zfsd/head/contrib/apr/CMakeLists.txt - copied unchanged from r270315, head/contrib/apr/CMakeLists.txt projects/zfsd/head/contrib/apr/README.cmake - copied unchanged from r270315, head/contrib/apr/README.cmake projects/zfsd/head/contrib/apr/encoding/ - copied from r270315, head/contrib/apr/encoding/ projects/zfsd/head/contrib/apr/include/apr.hwc - copied unchanged from r270315, head/contrib/apr/include/apr.hwc projects/zfsd/head/contrib/apr/include/apr_escape.h - copied unchanged from r270315, head/contrib/apr/include/apr_escape.h projects/zfsd/head/contrib/apr/include/apr_skiplist.h - copied unchanged from r270315, head/contrib/apr/include/apr_skiplist.h projects/zfsd/head/contrib/apr/include/private/ - copied from r270315, head/contrib/apr/include/private/ projects/zfsd/head/contrib/apr/poll/unix/z_asio.c - copied unchanged from r270315, head/contrib/apr/poll/unix/z_asio.c projects/zfsd/head/contrib/apr/tables/apr_skiplist.c - copied unchanged from r270315, head/contrib/apr/tables/apr_skiplist.c projects/zfsd/head/contrib/apr/tools/ - copied from r270315, head/contrib/apr/tools/ projects/zfsd/head/contrib/file/config.guess - copied unchanged from r270315, head/contrib/file/config.guess projects/zfsd/head/contrib/file/config.sub - copied unchanged from r270315, head/contrib/file/config.sub projects/zfsd/head/contrib/file/depcomp - copied unchanged from r270315, head/contrib/file/depcomp projects/zfsd/head/contrib/file/doc/ - copied from r270315, head/contrib/file/doc/ projects/zfsd/head/contrib/file/ltmain.sh - copied unchanged from r270315, head/contrib/file/ltmain.sh projects/zfsd/head/contrib/file/m4/ - copied from r270315, head/contrib/file/m4/ projects/zfsd/head/contrib/file/magic/ - copied from r270315, head/contrib/file/magic/ projects/zfsd/head/contrib/file/missing - copied unchanged from r270315, head/contrib/file/missing projects/zfsd/head/contrib/file/python/ - copied from r270315, head/contrib/file/python/ projects/zfsd/head/contrib/file/src/ - copied from r270315, head/contrib/file/src/ projects/zfsd/head/contrib/file/tests/escapevel.result - copied unchanged from r270315, head/contrib/file/tests/escapevel.result projects/zfsd/head/contrib/file/tests/escapevel.testfile - copied unchanged from r270315, head/contrib/file/tests/escapevel.testfile projects/zfsd/head/contrib/file/tests/issue311docx.result - copied unchanged from r270315, head/contrib/file/tests/issue311docx.result projects/zfsd/head/contrib/file/tests/issue311docx.testfile - copied unchanged from r270315, head/contrib/file/tests/issue311docx.testfile projects/zfsd/head/contrib/libucl/ChangeLog.md - copied unchanged from r270315, head/contrib/libucl/ChangeLog.md projects/zfsd/head/contrib/libucl/src/ucl_emitter_streamline.c - copied unchanged from r270315, head/contrib/libucl/src/ucl_emitter_streamline.c projects/zfsd/head/contrib/libucl/src/ucl_emitter_utils.c - copied unchanged from r270315, head/contrib/libucl/src/ucl_emitter_utils.c projects/zfsd/head/contrib/libucl/tests/basic/11.in - copied unchanged from r270315, head/contrib/libucl/tests/basic/11.in projects/zfsd/head/contrib/libucl/tests/basic/11.res - copied unchanged from r270315, head/contrib/libucl/tests/basic/11.res projects/zfsd/head/contrib/libucl/tests/streamline.res - copied unchanged from r270315, head/contrib/libucl/tests/streamline.res projects/zfsd/head/contrib/libucl/tests/streamline.test - copied unchanged from r270315, head/contrib/libucl/tests/streamline.test projects/zfsd/head/contrib/libucl/tests/test_streamline.c - copied unchanged from r270315, head/contrib/libucl/tests/test_streamline.c projects/zfsd/head/contrib/llvm/patches/patch-r265477-clang-r198655-standalone-debug.diff - copied unchanged from r270315, head/contrib/llvm/patches/patch-r265477-clang-r198655-standalone-debug.diff projects/zfsd/head/contrib/llvm/patches/patch-r266674-clang-r209489-fix-xmmintrin.diff - copied unchanged from r270315, head/contrib/llvm/patches/patch-r266674-clang-r209489-fix-xmmintrin.diff projects/zfsd/head/contrib/llvm/patches/patch-r267704-llvm-r211435-fix-avx-backend.diff - copied unchanged from r270315, head/contrib/llvm/patches/patch-r267704-llvm-r211435-fix-avx-backend.diff projects/zfsd/head/contrib/llvm/patches/patch-r267981-llvm-r211435-fix-ppc-fctiduz.diff - copied unchanged from r270315, head/contrib/llvm/patches/patch-r267981-llvm-r211435-fix-ppc-fctiduz.diff projects/zfsd/head/contrib/llvm/patches/patch-r270147-llvm-r197824-r213427-r213960.diff - copied unchanged from r270315, head/contrib/llvm/patches/patch-r270147-llvm-r197824-r213427-r213960.diff projects/zfsd/head/contrib/subversion/subversion/include/private/svn_cert.h - copied unchanged from r270315, head/contrib/subversion/subversion/include/private/svn_cert.h projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_tlsext_ticket_key_cb.pod - copied unchanged from r270315, head/crypto/openssl/doc/ssl/SSL_CTX_set_tlsext_ticket_key_cb.pod projects/zfsd/head/crypto/openssl/ssl/heartbeat_test.c - copied unchanged from r270315, head/crypto/openssl/ssl/heartbeat_test.c projects/zfsd/head/crypto/openssl/ssl/ssl_utst.c - copied unchanged from r270315, head/crypto/openssl/ssl/ssl_utst.c projects/zfsd/head/etc/auto_master - copied unchanged from r270315, head/etc/auto_master projects/zfsd/head/etc/autofs/ - copied from r270315, head/etc/autofs/ projects/zfsd/head/etc/rc.d/automount - copied unchanged from r270315, head/etc/rc.d/automount projects/zfsd/head/etc/rc.d/automountd - copied unchanged from r270315, head/etc/rc.d/automountd projects/zfsd/head/etc/rc.d/autounmountd - copied unchanged from r270315, head/etc/rc.d/autounmountd projects/zfsd/head/include/xlocale/_strings.h - copied unchanged from r270315, head/include/xlocale/_strings.h projects/zfsd/head/lib/libc/arm/aeabi/aeabi_unwind_exidx.c - copied unchanged from r270315, head/lib/libc/arm/aeabi/aeabi_unwind_exidx.c projects/zfsd/head/lib/libc/md/ - copied from r270315, head/lib/libc/md/ projects/zfsd/head/lib/libcuse/ - copied from r270315, head/lib/libcuse/ projects/zfsd/head/lib/libedit/TEST/tc1.c - copied unchanged from r270315, head/lib/libedit/TEST/tc1.c projects/zfsd/head/lib/libmp/tests/ - copied from r270315, head/lib/libmp/tests/ projects/zfsd/head/lib/libnv/tests/ - copied from r270315, head/lib/libnv/tests/ projects/zfsd/head/lib/libohash/ - copied from r270315, head/lib/libohash/ projects/zfsd/head/lib/libstand/pkgfs.c - copied unchanged from r270315, head/lib/libstand/pkgfs.c projects/zfsd/head/lib/libthr/plockstat.d - copied unchanged from r270315, head/lib/libthr/plockstat.d projects/zfsd/head/lib/libutil/tests/ - copied from r270315, head/lib/libutil/tests/ projects/zfsd/head/lib/libz/zlib.pc - copied unchanged from r270315, head/lib/libz/zlib.pc projects/zfsd/head/lib/msun/ld128/s_erfl.c - copied unchanged from r270315, head/lib/msun/ld128/s_erfl.c projects/zfsd/head/lib/msun/ld80/s_erfl.c - copied unchanged from r270315, head/lib/msun/ld80/s_erfl.c projects/zfsd/head/libexec/atf/atf-sh/ - copied from r270315, head/libexec/atf/atf-sh/ projects/zfsd/head/libexec/rtld-elf/tests/ - copied from r270315, head/libexec/rtld-elf/tests/ projects/zfsd/head/sbin/camcontrol/persist.c - copied unchanged from r270315, head/sbin/camcontrol/persist.c projects/zfsd/head/sbin/devd/tests/ - copied from r270315, head/sbin/devd/tests/ projects/zfsd/head/sbin/ifconfig/sfp.c - copied unchanged from r270315, head/sbin/ifconfig/sfp.c projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 - copied unchanged from r270315, head/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 projects/zfsd/head/share/dtrace/disklatency - copied unchanged from r270315, head/share/dtrace/disklatency projects/zfsd/head/share/dtrace/disklatencycmd - copied unchanged from r270315, head/share/dtrace/disklatencycmd projects/zfsd/head/share/examples/hwpmc/Makefile - copied unchanged from r270315, head/share/examples/hwpmc/Makefile projects/zfsd/head/share/examples/hwpmc/overhead.c - copied unchanged from r270315, head/share/examples/hwpmc/overhead.c projects/zfsd/head/share/man/man4/ismt.4 - copied unchanged from r270315, head/share/man/man4/ismt.4 projects/zfsd/head/share/man/man5/autofs.5 - copied unchanged from r270315, head/share/man/man5/autofs.5 projects/zfsd/head/share/man/man9/PCBGROUP.9 - copied unchanged from r270315, head/share/man/man9/PCBGROUP.9 projects/zfsd/head/share/man/man9/fpu_kern.9 - copied unchanged from r270315, head/share/man/man9/fpu_kern.9 projects/zfsd/head/share/man/man9/pmap_protect.9 - copied unchanged from r270315, head/share/man/man9/pmap_protect.9 projects/zfsd/head/share/man/man9/pmap_unwire.9 - copied unchanged from r270315, head/share/man/man9/pmap_unwire.9 projects/zfsd/head/share/mk/src.libnames.mk - copied unchanged from r270315, head/share/mk/src.libnames.mk projects/zfsd/head/share/vt/ - copied from r270315, head/share/vt/ projects/zfsd/head/sys/arm/at91/at91_common.c - copied unchanged from r270315, head/sys/arm/at91/at91_common.c projects/zfsd/head/sys/arm/at91/at91_pinctrl.c - copied unchanged from r270315, head/sys/arm/at91/at91_pinctrl.c projects/zfsd/head/sys/arm/conf/APALIS-IMX6 - copied unchanged from r270315, head/sys/arm/conf/APALIS-IMX6 projects/zfsd/head/sys/arm/conf/ARNDALE-OCTA - copied unchanged from r270315, head/sys/arm/conf/ARNDALE-OCTA projects/zfsd/head/sys/arm/conf/CHROMEBOOK-PEACH-PIT - copied unchanged from r270315, head/sys/arm/conf/CHROMEBOOK-PEACH-PIT projects/zfsd/head/sys/arm/conf/CHROMEBOOK-PEACH-PIT.hints - copied unchanged from r270315, head/sys/arm/conf/CHROMEBOOK-PEACH-PIT.hints projects/zfsd/head/sys/arm/conf/CHROMEBOOK-SNOW - copied unchanged from r270315, head/sys/arm/conf/CHROMEBOOK-SNOW projects/zfsd/head/sys/arm/conf/CHROMEBOOK-SPRING - copied unchanged from r270315, head/sys/arm/conf/CHROMEBOOK-SPRING projects/zfsd/head/sys/arm/conf/EXYNOS5.common - copied unchanged from r270315, head/sys/arm/conf/EXYNOS5.common projects/zfsd/head/sys/arm/conf/EXYNOS5250 - copied unchanged from r270315, head/sys/arm/conf/EXYNOS5250 projects/zfsd/head/sys/arm/conf/EXYNOS5420 - copied unchanged from r270315, head/sys/arm/conf/EXYNOS5420 projects/zfsd/head/sys/arm/conf/RADXA-LITE - copied unchanged from r270315, head/sys/arm/conf/RADXA-LITE projects/zfsd/head/sys/arm/conf/RK3188 - copied unchanged from r270315, head/sys/arm/conf/RK3188 projects/zfsd/head/sys/arm/freescale/imx/imx_gpio.c - copied unchanged from r270315, head/sys/arm/freescale/imx/imx_gpio.c projects/zfsd/head/sys/arm/freescale/imx/imx_i2c.c - copied unchanged from r270315, head/sys/arm/freescale/imx/imx_i2c.c projects/zfsd/head/sys/arm/freescale/vybrid/vf_adc.c - copied unchanged from r270315, head/sys/arm/freescale/vybrid/vf_adc.c projects/zfsd/head/sys/arm/freescale/vybrid/vf_adc.h - copied unchanged from r270315, head/sys/arm/freescale/vybrid/vf_adc.h projects/zfsd/head/sys/arm/freescale/vybrid/vf_spi.c - copied unchanged from r270315, head/sys/arm/freescale/vybrid/vf_spi.c projects/zfsd/head/sys/arm/include/acle-compat.h - copied unchanged from r270315, head/sys/arm/include/acle-compat.h projects/zfsd/head/sys/arm/samsung/exynos/chrome_ec_spi.c - copied unchanged from r270315, head/sys/arm/samsung/exynos/chrome_ec_spi.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_pmu.c - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos5_pmu.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_pmu.h - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos5_pmu.h projects/zfsd/head/sys/arm/samsung/exynos/exynos5_spi.c - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos5_spi.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_usb_phy.c - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos5_usb_phy.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_xhci.c - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos5_xhci.c projects/zfsd/head/sys/arm/samsung/exynos/exynos_uart.c - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos_uart.c projects/zfsd/head/sys/arm/samsung/exynos/exynos_uart.h - copied unchanged from r270315, head/sys/arm/samsung/exynos/exynos_uart.h projects/zfsd/head/sys/arm/samsung/exynos/std.exynos5250 - copied unchanged from r270315, head/sys/arm/samsung/exynos/std.exynos5250 projects/zfsd/head/sys/arm/samsung/exynos/std.exynos5420 - copied unchanged from r270315, head/sys/arm/samsung/exynos/std.exynos5420 projects/zfsd/head/sys/boot/common/install.c - copied unchanged from r270315, head/sys/boot/common/install.c projects/zfsd/head/sys/boot/fdt/dts/Makefile - copied unchanged from r270315, head/sys/boot/fdt/dts/Makefile projects/zfsd/head/sys/boot/fdt/dts/Makefile.inc - copied unchanged from r270315, head/sys/boot/fdt/dts/Makefile.inc projects/zfsd/head/sys/boot/fdt/dts/arm/Makefile - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/Makefile projects/zfsd/head/sys/boot/fdt/dts/arm/apalis-imx6.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/apalis-imx6.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5.dtsi - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/exynos5.dtsi projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5250-snow.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/exynos5250-snow.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5250-spring.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/exynos5250-spring.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5420-peach-pit.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/exynos5420-peach-pit.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5420.dtsi - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/exynos5420.dtsi projects/zfsd/head/sys/boot/fdt/dts/arm/rk3188-radxa-lite.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/rk3188-radxa-lite.dts projects/zfsd/head/sys/boot/fdt/dts/arm/sam9260ek.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/arm/sam9260ek.dts projects/zfsd/head/sys/boot/fdt/dts/mips/Makefile - copied unchanged from r270315, head/sys/boot/fdt/dts/mips/Makefile projects/zfsd/head/sys/boot/fdt/dts/powerpc/Makefile - copied unchanged from r270315, head/sys/boot/fdt/dts/powerpc/Makefile projects/zfsd/head/sys/boot/fdt/dts/powerpc/p2041rdb.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/powerpc/p2041rdb.dts projects/zfsd/head/sys/boot/fdt/dts/powerpc/p3041ds.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/powerpc/p3041ds.dts projects/zfsd/head/sys/boot/fdt/dts/powerpc/p5020ds.dts - copied unchanged from r270315, head/sys/boot/fdt/dts/powerpc/p5020ds.dts projects/zfsd/head/sys/boot/kshim/ - copied from r270315, head/sys/boot/kshim/ projects/zfsd/head/sys/boot/usb/storage/ - copied from r270315, head/sys/boot/usb/storage/ projects/zfsd/head/sys/boot/usb/tools/Makefile - copied unchanged from r270315, head/sys/boot/usb/tools/Makefile projects/zfsd/head/sys/boot/usb/usbcore.mk - copied unchanged from r270315, head/sys/boot/usb/usbcore.mk projects/zfsd/head/sys/cam/ctl/ctl_tpc.c - copied unchanged from r270315, head/sys/cam/ctl/ctl_tpc.c projects/zfsd/head/sys/cam/ctl/ctl_tpc.h - copied unchanged from r270315, head/sys/cam/ctl/ctl_tpc.h projects/zfsd/head/sys/cam/ctl/ctl_tpc_local.c - copied unchanged from r270315, head/sys/cam/ctl/ctl_tpc_local.c projects/zfsd/head/sys/cddl/boot/zfs/blkptr.c - copied unchanged from r270315, head/sys/cddl/boot/zfs/blkptr.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/util/ - copied from r270315, head/sys/cddl/contrib/opensolaris/common/util/ projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/blkptr.c - copied unchanged from r270315, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/blkptr.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/blkptr.h - copied unchanged from r270315, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/blkptr.h projects/zfsd/head/sys/cddl/dev/fbt/fbt.h - copied unchanged from r270315, head/sys/cddl/dev/fbt/fbt.h projects/zfsd/head/sys/cddl/dev/fbt/powerpc/ - copied from r270315, head/sys/cddl/dev/fbt/powerpc/ projects/zfsd/head/sys/cddl/dev/fbt/x86/ - copied from r270315, head/sys/cddl/dev/fbt/x86/ projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw-1.11.27.0.bin.uu - copied unchanged from r270315, head/sys/dev/cxgbe/firmware/t4fw-1.11.27.0.bin.uu projects/zfsd/head/sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu - copied unchanged from r270315, head/sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu projects/zfsd/head/sys/dev/cxgbe/t4_netmap.c - copied unchanged from r270315, head/sys/dev/cxgbe/t4_netmap.c projects/zfsd/head/sys/dev/fb/creator_vt.c - copied unchanged from r270315, head/sys/dev/fb/creator_vt.c projects/zfsd/head/sys/dev/i40e/README - copied unchanged from r270315, head/sys/dev/i40e/README projects/zfsd/head/sys/dev/ismt/ - copied from r270315, head/sys/dev/ismt/ projects/zfsd/head/sys/dev/netmap/if_vtnet_netmap.h - copied unchanged from r270315, head/sys/dev/netmap/if_vtnet_netmap.h projects/zfsd/head/sys/dev/netmap/netmap_monitor.c - copied unchanged from r270315, head/sys/dev/netmap/netmap_monitor.c projects/zfsd/head/sys/dev/usb/controller/saf1761_otg_boot.c - copied unchanged from r270315, head/sys/dev/usb/controller/saf1761_otg_boot.c projects/zfsd/head/sys/dev/usb/template/usb_template_phone.c - copied unchanged from r270315, head/sys/dev/usb/template/usb_template_phone.c projects/zfsd/head/sys/dev/virtio/virtio_config.h - copied unchanged from r270315, head/sys/dev/virtio/virtio_config.h projects/zfsd/head/sys/dev/virtio/virtio_ids.h - copied unchanged from r270315, head/sys/dev/virtio/virtio_ids.h projects/zfsd/head/sys/dev/vt/hw/vga/vt_vga.c - copied unchanged from r270315, head/sys/dev/vt/hw/vga/vt_vga.c projects/zfsd/head/sys/dev/vt/hw/vga/vt_vga_reg.h - copied unchanged from r270315, head/sys/dev/vt/hw/vga/vt_vga_reg.h projects/zfsd/head/sys/dev/xen/pvcpu/ - copied from r270315, head/sys/dev/xen/pvcpu/ projects/zfsd/head/sys/fs/autofs/ - copied from r270315, head/sys/fs/autofs/ projects/zfsd/head/sys/fs/cuse/ - copied from r270315, head/sys/fs/cuse/ projects/zfsd/head/sys/geom/part/g_part_bsd64.c - copied unchanged from r270315, head/sys/geom/part/g_part_bsd64.c projects/zfsd/head/sys/gnu/dts/arm/sam9260ek_common.dtsi - copied unchanged from r270315, head/sys/gnu/dts/arm/sam9260ek_common.dtsi projects/zfsd/head/sys/kern/subr_sfbuf.c - copied unchanged from r270315, head/sys/kern/subr_sfbuf.c projects/zfsd/head/sys/libkern/strndup.c - copied unchanged from r270315, head/sys/libkern/strndup.c projects/zfsd/head/sys/modules/autofs/ - copied from r270315, head/sys/modules/autofs/ projects/zfsd/head/sys/modules/cuse/ - copied from r270315, head/sys/modules/cuse/ projects/zfsd/head/sys/modules/geom/geom_part/geom_part_bsd64/ - copied from r270315, head/sys/modules/geom/geom_part/geom_part_bsd64/ projects/zfsd/head/sys/modules/i2c/controllers/ismt/ - copied from r270315, head/sys/modules/i2c/controllers/ismt/ projects/zfsd/head/sys/modules/si/ - copied from r270315, head/sys/modules/si/ projects/zfsd/head/sys/modules/tsec/ - copied from r270315, head/sys/modules/tsec/ projects/zfsd/head/sys/modules/usb/saf1761otg/ - copied from r270315, head/sys/modules/usb/saf1761otg/ projects/zfsd/head/sys/modules/wds/ - copied from r270315, head/sys/modules/wds/ projects/zfsd/head/sys/modules/wl/ - copied from r270315, head/sys/modules/wl/ projects/zfsd/head/sys/net/paravirt.h - copied unchanged from r270315, head/sys/net/paravirt.h projects/zfsd/head/sys/net/sff8436.h - copied unchanged from r270315, head/sys/net/sff8436.h projects/zfsd/head/sys/rpc/clnt_bck.c - copied unchanged from r270315, head/sys/rpc/clnt_bck.c projects/zfsd/head/sys/x86/xen/xen_apic.c - copied unchanged from r270315, head/sys/x86/xen/xen_apic.c projects/zfsd/head/sys/x86/xen/xen_nexus.c - copied unchanged from r270315, head/sys/x86/xen/xen_nexus.c projects/zfsd/head/sys/x86/xen/xenpv.c - copied unchanged from r270315, head/sys/x86/xen/xenpv.c projects/zfsd/head/sys/xen/xen_pv.h - copied unchanged from r270315, head/sys/xen/xen_pv.h projects/zfsd/head/tools/build/options/WITHOUT_CUSE - copied unchanged from r270315, head/tools/build/options/WITHOUT_CUSE projects/zfsd/head/tools/build/options/WITHOUT_VT - copied unchanged from r270315, head/tools/build/options/WITHOUT_VT projects/zfsd/head/tools/build/options/WITH_INFO - copied unchanged from r270315, head/tools/build/options/WITH_INFO projects/zfsd/head/tools/ifnet/ - copied from r270315, head/tools/ifnet/ projects/zfsd/head/tools/tools/nanobsd/rescue/R32 - copied unchanged from r270315, head/tools/tools/nanobsd/rescue/R32 projects/zfsd/head/tools/tools/nanobsd/rescue/R64 - copied unchanged from r270315, head/tools/tools/nanobsd/rescue/R64 projects/zfsd/head/tools/tools/vt/keymaps/ - copied from r270315, head/tools/tools/vt/keymaps/ projects/zfsd/head/usr.bin/gcore/elf32core.c - copied unchanged from r270315, head/usr.bin/gcore/elf32core.c projects/zfsd/head/usr.bin/mkimg/vhd.c - copied unchanged from r270315, head/usr.bin/mkimg/vhd.c projects/zfsd/head/usr.bin/printf/tests/regress.missingpos1.out - copied unchanged from r270315, head/usr.bin/printf/tests/regress.missingpos1.out projects/zfsd/head/usr.bin/send-pr/ - copied from r270315, head/usr.bin/send-pr/ projects/zfsd/head/usr.bin/timeout/ - copied from r270315, head/usr.bin/timeout/ projects/zfsd/head/usr.bin/truncate/tests/ - copied from r270315, head/usr.bin/truncate/tests/ projects/zfsd/head/usr.bin/units/tests/ - copied from r270315, head/usr.bin/units/tests/ projects/zfsd/head/usr.bin/users/users.cc - copied unchanged from r270315, head/usr.bin/users/users.cc projects/zfsd/head/usr.bin/vtfontcvt/ - copied from r270315, head/usr.bin/vtfontcvt/ projects/zfsd/head/usr.bin/yacc/tests/yacc_tests.sh - copied unchanged from r270315, head/usr.bin/yacc/tests/yacc_tests.sh projects/zfsd/head/usr.sbin/autofs/ - copied from r270315, head/usr.sbin/autofs/ projects/zfsd/head/usr.sbin/bhyve/task_switch.c - copied unchanged from r270315, head/usr.sbin/bhyve/task_switch.c projects/zfsd/head/usr.sbin/bsdconfig/examples/add_some_packages.sh - copied unchanged from r270315, head/usr.sbin/bsdconfig/examples/add_some_packages.sh projects/zfsd/head/usr.sbin/bsdconfig/share/packages/musthavepkg.subr - copied unchanged from r270315, head/usr.sbin/bsdconfig/share/packages/musthavepkg.subr projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_lm75/ - copied from r270315, head/usr.sbin/bsnmpd/modules/snmp_lm75/ projects/zfsd/head/usr.sbin/chown/tests/ - copied from r270315, head/usr.sbin/chown/tests/ Replaced: projects/zfsd/head/release/amd64/make-memstick.sh - copied unchanged from r270315, head/release/amd64/make-memstick.sh projects/zfsd/head/sys/dev/iicbus/iic.h - copied unchanged from r270315, head/sys/dev/iicbus/iic.h projects/zfsd/head/sys/sparc64/include/sf_buf.h - copied unchanged from r270315, head/sys/sparc64/include/sf_buf.h projects/zfsd/head/tools/build/options/WITHOUT_TESTS - copied unchanged from r270315, head/tools/build/options/WITHOUT_TESTS Deleted: projects/zfsd/head/bin/date/tests/legacy_test.sh projects/zfsd/head/bin/sh/tests/legacy_test.sh projects/zfsd/head/contrib/atf/atf-c++/atf-c++.m4 projects/zfsd/head/contrib/atf/atf-c++/atf-c++.pc.in projects/zfsd/head/contrib/atf/atf-c/atf-c.m4 projects/zfsd/head/contrib/atf/atf-c/atf-c.pc.in projects/zfsd/head/contrib/atf/atf-c/atf-common.m4 projects/zfsd/head/contrib/atf/atf-sh/atf-sh.m4 projects/zfsd/head/contrib/atf/atf-sh/atf-sh.pc.in projects/zfsd/head/contrib/byacc/NOTES-btyacc-Changes projects/zfsd/head/contrib/byacc/NOTES-btyacc-Disposition projects/zfsd/head/contrib/file/Header projects/zfsd/head/contrib/file/Localstuff projects/zfsd/head/contrib/file/Magdir/ projects/zfsd/head/contrib/file/Makefile.am-src projects/zfsd/head/contrib/file/apprentice.c projects/zfsd/head/contrib/file/apptype.c projects/zfsd/head/contrib/file/ascmagic.c projects/zfsd/head/contrib/file/asprintf.c projects/zfsd/head/contrib/file/cdf.c projects/zfsd/head/contrib/file/cdf.h projects/zfsd/head/contrib/file/cdf_time.c projects/zfsd/head/contrib/file/compress.c projects/zfsd/head/contrib/file/elfclass.h projects/zfsd/head/contrib/file/encoding.c projects/zfsd/head/contrib/file/file.c projects/zfsd/head/contrib/file/file.h projects/zfsd/head/contrib/file/file.man projects/zfsd/head/contrib/file/file_opts.h projects/zfsd/head/contrib/file/fsmagic.c projects/zfsd/head/contrib/file/funcs.c projects/zfsd/head/contrib/file/getline.c projects/zfsd/head/contrib/file/getopt_long.c projects/zfsd/head/contrib/file/is_tar.c projects/zfsd/head/contrib/file/libmagic.man projects/zfsd/head/contrib/file/magic.c projects/zfsd/head/contrib/file/magic.h projects/zfsd/head/contrib/file/magic.man projects/zfsd/head/contrib/file/magic2mime projects/zfsd/head/contrib/file/mygetopt.h projects/zfsd/head/contrib/file/names.h projects/zfsd/head/contrib/file/print.c projects/zfsd/head/contrib/file/readcdf.c projects/zfsd/head/contrib/file/readelf.c projects/zfsd/head/contrib/file/readelf.h projects/zfsd/head/contrib/file/softmagic.c projects/zfsd/head/contrib/file/strlcat.c projects/zfsd/head/contrib/file/strlcpy.c projects/zfsd/head/contrib/file/tar.h projects/zfsd/head/contrib/file/tests/gedcom.magic projects/zfsd/head/contrib/file/vasprintf.c projects/zfsd/head/contrib/unbound/util/configlexer.c projects/zfsd/head/contrib/unbound/util/configparser.c projects/zfsd/head/contrib/unbound/util/configparser.h projects/zfsd/head/crypto/openssl/crypto/pkcs7/bio_ber.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/dec.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/des.pem projects/zfsd/head/crypto/openssl/crypto/pkcs7/doc projects/zfsd/head/crypto/openssl/crypto/pkcs7/enc.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/es1.pem projects/zfsd/head/crypto/openssl/crypto/pkcs7/example.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/example.h projects/zfsd/head/crypto/openssl/crypto/pkcs7/info.pem projects/zfsd/head/crypto/openssl/crypto/pkcs7/infokey.pem projects/zfsd/head/crypto/openssl/crypto/pkcs7/p7/ projects/zfsd/head/crypto/openssl/crypto/pkcs7/server.pem projects/zfsd/head/crypto/openssl/crypto/pkcs7/sign.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/t/ projects/zfsd/head/crypto/openssl/crypto/pkcs7/verify.c projects/zfsd/head/etc/etc.ia64/ projects/zfsd/head/gnu/lib/libreadline/history/ projects/zfsd/head/gnu/lib/libreadline/readline/doc/ projects/zfsd/head/gnu/usr.bin/binutils/as/ia64-freebsd/ projects/zfsd/head/gnu/usr.bin/binutils/ld/Makefile.ia64 projects/zfsd/head/gnu/usr.bin/binutils/ld/elf64_ia64_fbsd.sh projects/zfsd/head/gnu/usr.bin/binutils/libbfd/Makefile.ia64 projects/zfsd/head/gnu/usr.bin/binutils/libopcodes/Makefile.ia64 projects/zfsd/head/gnu/usr.bin/gdb/arch/ia64/ projects/zfsd/head/gnu/usr.bin/gdb/kgdb/trgt_ia64.c projects/zfsd/head/gnu/usr.bin/send-pr/ projects/zfsd/head/lib/clang/include/IA64GenAsmWriter.inc projects/zfsd/head/lib/clang/include/IA64GenDAGISel.inc projects/zfsd/head/lib/clang/include/IA64GenInstrInfo.inc projects/zfsd/head/lib/clang/include/IA64GenRegisterInfo.inc projects/zfsd/head/lib/csu/ia64/ projects/zfsd/head/lib/libc/ia64/ projects/zfsd/head/lib/libc/string/strcspn.3 projects/zfsd/head/lib/libedit/TEST/test.c projects/zfsd/head/lib/libkvm/kvm_ia64.c projects/zfsd/head/lib/libthr/arch/ia64/ projects/zfsd/head/lib/libthread_db/arch/ia64/ projects/zfsd/head/lib/msun/ia64/ projects/zfsd/head/libexec/rtld-elf/ia64/ projects/zfsd/head/release/amd64/make-uefi-memstick.sh projects/zfsd/head/release/amd64/mkisoimages-uefi.sh projects/zfsd/head/release/ia64/ projects/zfsd/head/sbin/Makefile.ia64 projects/zfsd/head/sbin/mca/ projects/zfsd/head/secure/lib/libcrypto/opensslconf-ia64.h projects/zfsd/head/share/examples/autofs/ projects/zfsd/head/share/examples/cvsup/ projects/zfsd/head/share/man/man9/VOP_GETVOBJECT.9 projects/zfsd/head/share/man/man9/pmap_change_wiring.9 projects/zfsd/head/share/man/man9/pmap_page_protect.9 projects/zfsd/head/share/man/man9/zero_copy.9 projects/zfsd/head/share/mk/bsd.dtrace.mk projects/zfsd/head/sys/amd64/conf/VT projects/zfsd/head/sys/arm/conf/AC100 projects/zfsd/head/sys/arm/conf/EXYNOS5250.common projects/zfsd/head/sys/arm/freescale/imx/i2c.c projects/zfsd/head/sys/arm/freescale/imx/imx51_gpio.c projects/zfsd/head/sys/arm/samsung/exynos/std.exynos5 projects/zfsd/head/sys/arm/samsung/exynos/uart.c projects/zfsd/head/sys/arm/samsung/exynos/uart.h projects/zfsd/head/sys/arm/tegra/ projects/zfsd/head/sys/boot/Makefile.ia64 projects/zfsd/head/sys/boot/efi/include/ia64/ projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5250-chromebook.dts projects/zfsd/head/sys/boot/fdt/dts/arm/p2041rdb.dts projects/zfsd/head/sys/boot/fdt/dts/arm/p3041ds.dts projects/zfsd/head/sys/boot/fdt/dts/arm/p5020ds.dts projects/zfsd/head/sys/boot/ficl/ia64/ projects/zfsd/head/sys/boot/ia64/ projects/zfsd/head/sys/boot/usb/bsd_busspace.c projects/zfsd/head/sys/boot/usb/bsd_global.h projects/zfsd/head/sys/boot/usb/bsd_kernel.c projects/zfsd/head/sys/boot/usb/bsd_kernel.h projects/zfsd/head/sys/boot/usb/tools/sysinit.h projects/zfsd/head/sys/cddl/contrib/opensolaris/common/atomic/ia64/ projects/zfsd/head/sys/cddl/dev/dtrace/dtrace_clone.c projects/zfsd/head/sys/cddl/dev/fbt/fbt_powerpc.c projects/zfsd/head/sys/conf/Makefile.ia64 projects/zfsd/head/sys/conf/files.ia64 projects/zfsd/head/sys/conf/ldscript.ia64 projects/zfsd/head/sys/conf/options.ia64 projects/zfsd/head/sys/contrib/ia64/ projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw-1.9.12.0.bin.uu projects/zfsd/head/sys/dev/cxgbe/firmware/t5fw-1.9.12.0.bin.uu projects/zfsd/head/sys/dev/hwpmc/hwpmc_ia64.c projects/zfsd/head/sys/dev/uart/uart_cpu_ia64.c projects/zfsd/head/sys/dev/vt/hw/vga/vga.c projects/zfsd/head/sys/dev/vt/hw/vga/vga_reg.h projects/zfsd/head/sys/dev/vt/hw/xboxfb/ projects/zfsd/head/sys/i386/conf/VT projects/zfsd/head/sys/ia64/ projects/zfsd/head/sys/libkern/ia64/ projects/zfsd/head/sys/modules/usb/saf1761/ projects/zfsd/head/sys/powerpc/include/sf_buf.h projects/zfsd/head/sys/xen/interface/arch-ia64/ projects/zfsd/head/sys/xen/interface/arch-ia64.h projects/zfsd/head/tools/build/options/WITH_TESTS projects/zfsd/head/tools/regression/ia64/ projects/zfsd/head/tools/regression/lib/libmp/ projects/zfsd/head/tools/regression/lib/libnv/ projects/zfsd/head/tools/regression/lib/libutil/ projects/zfsd/head/tools/tools/gdb_regofs/ia64.c projects/zfsd/head/tools/tools/prstats/ projects/zfsd/head/tools/tools/vt/fontcvt/Makefile projects/zfsd/head/tools/tools/vt/fontcvt/fontcvt.c projects/zfsd/head/usr.bin/Makefile.ia64 projects/zfsd/head/usr.bin/atf/ projects/zfsd/head/usr.bin/csup/ projects/zfsd/head/usr.bin/gprof/ia64.h projects/zfsd/head/usr.bin/m4/lib/ projects/zfsd/head/usr.bin/truss/ia64-fbsd.c projects/zfsd/head/usr.bin/users/users.c projects/zfsd/head/usr.bin/xlint/arch/ia64/ projects/zfsd/head/usr.bin/yacc/tests/calc.y projects/zfsd/head/usr.bin/yacc/tests/calc1.y projects/zfsd/head/usr.bin/yacc/tests/calc2.y projects/zfsd/head/usr.bin/yacc/tests/calc3.y projects/zfsd/head/usr.bin/yacc/tests/code_calc.y projects/zfsd/head/usr.bin/yacc/tests/code_error.y projects/zfsd/head/usr.bin/yacc/tests/error.y projects/zfsd/head/usr.bin/yacc/tests/ftp.y projects/zfsd/head/usr.bin/yacc/tests/grammar.y projects/zfsd/head/usr.bin/yacc/tests/legacy_test.sh projects/zfsd/head/usr.bin/yacc/tests/pure_calc.y projects/zfsd/head/usr.bin/yacc/tests/pure_error.y projects/zfsd/head/usr.bin/yacc/tests/quote_calc.y projects/zfsd/head/usr.bin/yacc/tests/quote_calc2.y projects/zfsd/head/usr.bin/yacc/tests/quote_calc3.y projects/zfsd/head/usr.bin/yacc/tests/quote_calc4.y projects/zfsd/head/usr.bin/yacc/tests/regress.00.out projects/zfsd/head/usr.bin/yacc/tests/regress.01.out projects/zfsd/head/usr.bin/yacc/tests/regress.02.out projects/zfsd/head/usr.bin/yacc/tests/regress.03.out projects/zfsd/head/usr.bin/yacc/tests/regress.04.out projects/zfsd/head/usr.bin/yacc/tests/regress.05.out projects/zfsd/head/usr.bin/yacc/tests/regress.06.out projects/zfsd/head/usr.bin/yacc/tests/regress.07.out projects/zfsd/head/usr.bin/yacc/tests/regress.08.out projects/zfsd/head/usr.bin/yacc/tests/regress.09.out projects/zfsd/head/usr.bin/yacc/tests/regress.10.out projects/zfsd/head/usr.bin/yacc/tests/regress.11.out projects/zfsd/head/usr.bin/yacc/tests/regress.12.out projects/zfsd/head/usr.bin/yacc/tests/regress.13.out projects/zfsd/head/usr.bin/yacc/tests/regress.14.out projects/zfsd/head/usr.bin/yacc/tests/regress.sh projects/zfsd/head/usr.bin/yacc/tests/undefined.y projects/zfsd/head/usr.sbin/Makefile.ia64 projects/zfsd/head/usr.sbin/bsdconfig/examples/browse_packages_ftp.sh projects/zfsd/head/usr.sbin/ctm/mkCTM/ctm_conf.gnats Modified: projects/zfsd/head/MAINTAINERS (contents, props changed) projects/zfsd/head/Makefile projects/zfsd/head/Makefile.inc1 projects/zfsd/head/ObsoleteFiles.inc projects/zfsd/head/UPDATING projects/zfsd/head/bin/chio/chio.1 projects/zfsd/head/bin/csh/Makefile projects/zfsd/head/bin/date/tests/Makefile projects/zfsd/head/bin/ed/Makefile projects/zfsd/head/bin/ed/cbc.c projects/zfsd/head/bin/freebsd-version/freebsd-version.1 projects/zfsd/head/bin/ls/Makefile projects/zfsd/head/bin/mv/mv.c projects/zfsd/head/bin/pkill/pkill.1 projects/zfsd/head/bin/pkill/tests/Makefile projects/zfsd/head/bin/ps/keyword.c projects/zfsd/head/bin/ps/ps.1 projects/zfsd/head/bin/rm/rm.1 projects/zfsd/head/bin/rm/rm.c projects/zfsd/head/bin/setfacl/setfacl.1 projects/zfsd/head/bin/sh/Makefile projects/zfsd/head/bin/sh/arith_yacc.c projects/zfsd/head/bin/sh/eval.c projects/zfsd/head/bin/sh/exec.c projects/zfsd/head/bin/sh/expand.c projects/zfsd/head/bin/sh/histedit.c projects/zfsd/head/bin/sh/jobs.c projects/zfsd/head/bin/sh/miscbltin.c projects/zfsd/head/bin/sh/mystring.c projects/zfsd/head/bin/sh/mystring.h projects/zfsd/head/bin/sh/tests/Makefile projects/zfsd/head/bin/sh/tests/builtins/Makefile projects/zfsd/head/bin/sh/tests/errors/Makefile projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp2.2 projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp2.2.stderr projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp3.2 projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp3.2.stderr projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp4.2 projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp4.2.stderr projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp5.2 projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp5.2.stderr projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp6.2 projects/zfsd/head/bin/sh/tests/errors/bad-parm-exp6.2.stderr projects/zfsd/head/bin/sh/tests/execution/Makefile projects/zfsd/head/bin/sh/tests/expansion/Makefile projects/zfsd/head/bin/sh/tests/parameters/Makefile projects/zfsd/head/bin/sh/tests/parser/Makefile projects/zfsd/head/bin/sh/tests/set-e/Makefile projects/zfsd/head/cddl/contrib/dtracetoolkit/Apps/shellsnoop projects/zfsd/head/cddl/contrib/dtracetoolkit/rwsnoop projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.subr.d projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.func_access.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/lockstat/sym.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zdb/zdb.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zdb/zdb_il.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zhack/zhack.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/zfsd/head/cddl/contrib/opensolaris/common/avl/avl.c projects/zfsd/head/cddl/contrib/opensolaris/common/ctf/ctf_open.c projects/zfsd/head/cddl/contrib/opensolaris/common/ctf/ctf_types.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_aggregate.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_as.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_decl.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_decl.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_dis.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_error.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_grammar.y projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_ident.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_lex.l projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_map.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_options.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_print.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_provider.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_work.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_xlator.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dtrace.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_mount.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/zfsd/head/cddl/lib/libdtrace/libproc_compat.h projects/zfsd/head/cddl/lib/libzfs/Makefile projects/zfsd/head/cddl/lib/libzpool/Makefile projects/zfsd/head/cddl/sbin/zfsd/Makefile.common projects/zfsd/head/cddl/sbin/zpool/Makefile projects/zfsd/head/cddl/usr.bin/zinject/Makefile projects/zfsd/head/cddl/usr.sbin/zdb/Makefile projects/zfsd/head/cddl/usr.sbin/zhack/Makefile projects/zfsd/head/contrib/apr/CHANGES projects/zfsd/head/contrib/apr/LICENSE projects/zfsd/head/contrib/apr/Makefile.in projects/zfsd/head/contrib/apr/Makefile.win projects/zfsd/head/contrib/apr/NOTICE projects/zfsd/head/contrib/apr/apr.dep projects/zfsd/head/contrib/apr/apr.dsp projects/zfsd/head/contrib/apr/apr.mak projects/zfsd/head/contrib/apr/apr.spec projects/zfsd/head/contrib/apr/build-outputs.mk projects/zfsd/head/contrib/apr/build.conf projects/zfsd/head/contrib/apr/configure projects/zfsd/head/contrib/apr/configure.in projects/zfsd/head/contrib/apr/docs/canonical_filenames.html projects/zfsd/head/contrib/apr/file_io/unix/filedup.c projects/zfsd/head/contrib/apr/file_io/unix/filestat.c projects/zfsd/head/contrib/apr/file_io/unix/mktemp.c projects/zfsd/head/contrib/apr/file_io/unix/open.c projects/zfsd/head/contrib/apr/file_io/unix/pipe.c projects/zfsd/head/contrib/apr/file_io/unix/readwrite.c projects/zfsd/head/contrib/apr/include/apr.h.in projects/zfsd/head/contrib/apr/include/apr_allocator.h projects/zfsd/head/contrib/apr/include/apr_errno.h projects/zfsd/head/contrib/apr/include/apr_file_info.h projects/zfsd/head/contrib/apr/include/apr_file_io.h projects/zfsd/head/contrib/apr/include/apr_fnmatch.h projects/zfsd/head/contrib/apr/include/apr_hash.h projects/zfsd/head/contrib/apr/include/apr_inherit.h projects/zfsd/head/contrib/apr/include/apr_lib.h projects/zfsd/head/contrib/apr/include/apr_mmap.h projects/zfsd/head/contrib/apr/include/apr_network_io.h projects/zfsd/head/contrib/apr/include/apr_poll.h projects/zfsd/head/contrib/apr/include/apr_pools.h projects/zfsd/head/contrib/apr/include/apr_shm.h projects/zfsd/head/contrib/apr/include/apr_strings.h projects/zfsd/head/contrib/apr/include/apr_tables.h projects/zfsd/head/contrib/apr/include/apr_thread_mutex.h projects/zfsd/head/contrib/apr/include/apr_thread_proc.h projects/zfsd/head/contrib/apr/include/apr_time.h projects/zfsd/head/contrib/apr/include/apr_user.h projects/zfsd/head/contrib/apr/include/apr_version.h projects/zfsd/head/contrib/apr/include/arch/unix/apr_arch_poll_private.h projects/zfsd/head/contrib/apr/include/arch/unix/apr_arch_threadproc.h projects/zfsd/head/contrib/apr/include/arch/unix/apr_private.h.in projects/zfsd/head/contrib/apr/libapr.dep projects/zfsd/head/contrib/apr/libapr.dsp projects/zfsd/head/contrib/apr/libapr.mak projects/zfsd/head/contrib/apr/locks/unix/proc_mutex.c projects/zfsd/head/contrib/apr/network_io/unix/sendrecv.c projects/zfsd/head/contrib/apr/network_io/unix/sockaddr.c projects/zfsd/head/contrib/apr/network_io/unix/socket_util.c projects/zfsd/head/contrib/apr/network_io/unix/sockets.c projects/zfsd/head/contrib/apr/network_io/unix/sockopt.c projects/zfsd/head/contrib/apr/passwd/apr_getpass.c projects/zfsd/head/contrib/apr/poll/unix/pollcb.c projects/zfsd/head/contrib/apr/poll/unix/pollset.c projects/zfsd/head/contrib/apr/shmem/unix/shm.c projects/zfsd/head/contrib/apr/strings/apr_cpystrn.c projects/zfsd/head/contrib/apr/strings/apr_strings.c projects/zfsd/head/contrib/apr/support/unix/waitio.c projects/zfsd/head/contrib/apr/tables/apr_hash.c projects/zfsd/head/contrib/apr/tables/apr_tables.c projects/zfsd/head/contrib/atf/FREEBSD-Xlist projects/zfsd/head/contrib/binutils/gas/config/tc-arm.c projects/zfsd/head/contrib/bmake/ChangeLog projects/zfsd/head/contrib/bmake/Makefile projects/zfsd/head/contrib/bmake/README projects/zfsd/head/contrib/bmake/bmake.1 projects/zfsd/head/contrib/bmake/bmake.cat1 projects/zfsd/head/contrib/bmake/boot-strap projects/zfsd/head/contrib/bmake/bsd.after-import.mk projects/zfsd/head/contrib/bmake/config.h.in projects/zfsd/head/contrib/bmake/configure projects/zfsd/head/contrib/bmake/configure.in projects/zfsd/head/contrib/bmake/main.c projects/zfsd/head/contrib/bmake/make.1 projects/zfsd/head/contrib/bmake/mk/ChangeLog projects/zfsd/head/contrib/bmake/mk/autodep.mk projects/zfsd/head/contrib/bmake/mk/dirdeps.mk projects/zfsd/head/contrib/bmake/mk/dpadd.mk projects/zfsd/head/contrib/bmake/mk/gendirdeps.mk projects/zfsd/head/contrib/bmake/mk/host-target.mk projects/zfsd/head/contrib/bmake/mk/install-mk projects/zfsd/head/contrib/bmake/mk/lib.mk projects/zfsd/head/contrib/bmake/mk/meta.autodep.mk projects/zfsd/head/contrib/bmake/mk/meta2deps.py projects/zfsd/head/contrib/bmake/mk/meta2deps.sh projects/zfsd/head/contrib/bmake/mk/options.mk projects/zfsd/head/contrib/bmake/mk/rst2htm.mk projects/zfsd/head/contrib/bmake/mk/sys.mk projects/zfsd/head/contrib/bmake/mk/sys/SunOS.mk projects/zfsd/head/contrib/bmake/mk/target-flags.mk projects/zfsd/head/contrib/bmake/mk/warnings.mk projects/zfsd/head/contrib/bmake/os.sh projects/zfsd/head/contrib/bmake/parse.c projects/zfsd/head/contrib/bmake/str.c projects/zfsd/head/contrib/bmake/var.c projects/zfsd/head/contrib/byacc/CHANGES projects/zfsd/head/contrib/byacc/MANIFEST projects/zfsd/head/contrib/byacc/README.BTYACC projects/zfsd/head/contrib/byacc/VERSION projects/zfsd/head/contrib/byacc/aclocal.m4 projects/zfsd/head/contrib/byacc/config.guess projects/zfsd/head/contrib/byacc/config.sub projects/zfsd/head/contrib/byacc/config_h.in projects/zfsd/head/contrib/byacc/configure projects/zfsd/head/contrib/byacc/configure.in projects/zfsd/head/contrib/byacc/defs.h projects/zfsd/head/contrib/byacc/main.c projects/zfsd/head/contrib/byacc/mstring.c projects/zfsd/head/contrib/byacc/output.c projects/zfsd/head/contrib/byacc/package/byacc.spec projects/zfsd/head/contrib/byacc/package/debian/changelog projects/zfsd/head/contrib/byacc/package/mingw-byacc.spec projects/zfsd/head/contrib/byacc/package/pkgsrc/Makefile projects/zfsd/head/contrib/byacc/test/btyacc/big_b.output projects/zfsd/head/contrib/byacc/test/btyacc/big_l.output projects/zfsd/head/contrib/byacc/test/btyacc/err_inherit1.error projects/zfsd/head/contrib/byacc/test/btyacc/err_inherit2.error projects/zfsd/head/contrib/byacc/test/btyacc/err_inherit3.error projects/zfsd/head/contrib/byacc/test/btyacc/err_inherit4.error projects/zfsd/head/contrib/byacc/test/btyacc/err_inherit5.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax1.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax10.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax11.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax12.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax13.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax14.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax15.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax16.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax17.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax18.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax19.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax2.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax21.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax22.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax23.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax24.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax25.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax26.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax27.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax3.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax4.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax5.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax6.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax7.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax7a.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax7b.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax8.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax8a.error projects/zfsd/head/contrib/byacc/test/btyacc/err_syntax9.error projects/zfsd/head/contrib/byacc/test/btyacc/help.output projects/zfsd/head/contrib/byacc/test/btyacc/no_b_opt.output projects/zfsd/head/contrib/byacc/test/btyacc/no_output2.output projects/zfsd/head/contrib/byacc/test/btyacc/no_p_opt.output projects/zfsd/head/contrib/byacc/test/btyacc/nostdin.output projects/zfsd/head/contrib/byacc/test/run_test.sh projects/zfsd/head/contrib/byacc/test/yacc/big_b.output projects/zfsd/head/contrib/byacc/test/yacc/big_l.output projects/zfsd/head/contrib/byacc/test/yacc/err_syntax1.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax10.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax11.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax12.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax13.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax14.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax15.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax16.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax17.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax18.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax19.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax2.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax21.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax22.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax23.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax24.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax25.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax26.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax27.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax3.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax4.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax5.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax6.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax7.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax7a.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax7b.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax8.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax8a.error projects/zfsd/head/contrib/byacc/test/yacc/err_syntax9.error projects/zfsd/head/contrib/byacc/test/yacc/help.output projects/zfsd/head/contrib/byacc/test/yacc/no_b_opt.output projects/zfsd/head/contrib/byacc/test/yacc/no_output2.output projects/zfsd/head/contrib/byacc/test/yacc/no_p_opt.output projects/zfsd/head/contrib/byacc/test/yacc/nostdin.output projects/zfsd/head/contrib/file/ChangeLog projects/zfsd/head/contrib/file/Makefile.am projects/zfsd/head/contrib/file/Makefile.in projects/zfsd/head/contrib/file/README projects/zfsd/head/contrib/file/TODO projects/zfsd/head/contrib/file/aclocal.m4 projects/zfsd/head/contrib/file/compile projects/zfsd/head/contrib/file/config.h.in projects/zfsd/head/contrib/file/configure projects/zfsd/head/contrib/file/configure.ac projects/zfsd/head/contrib/file/install-sh projects/zfsd/head/contrib/file/tests/Makefile.am projects/zfsd/head/contrib/file/tests/Makefile.in projects/zfsd/head/contrib/file/tests/README projects/zfsd/head/contrib/file/tests/gedcom.result projects/zfsd/head/contrib/gcc/config/arm/unwind-arm.h projects/zfsd/head/contrib/gcc/config/i386/emmintrin.h projects/zfsd/head/contrib/gcc/version.c projects/zfsd/head/contrib/ipfilter/lib/printhost.c projects/zfsd/head/contrib/ipfilter/lib/printhostmask.c projects/zfsd/head/contrib/ipfilter/lib/printipfexpr.c projects/zfsd/head/contrib/ipfilter/lib/save_v1trap.c projects/zfsd/head/contrib/ipfilter/lib/save_v2trap.c projects/zfsd/head/contrib/libc++/include/list projects/zfsd/head/contrib/libstdc++/libsupc++/unwind-cxx.h projects/zfsd/head/contrib/libucl/configure.ac projects/zfsd/head/contrib/libucl/doc/api.md projects/zfsd/head/contrib/libucl/doc/libucl.3 projects/zfsd/head/contrib/libucl/doc/pandoc.template projects/zfsd/head/contrib/libucl/include/ucl.h projects/zfsd/head/contrib/libucl/src/Makefile.am projects/zfsd/head/contrib/libucl/src/ucl_emitter.c projects/zfsd/head/contrib/libucl/src/ucl_internal.h projects/zfsd/head/contrib/libucl/src/ucl_parser.c projects/zfsd/head/contrib/libucl/src/ucl_util.c projects/zfsd/head/contrib/libucl/tests/Makefile.am projects/zfsd/head/contrib/libucl/tests/test_basic.c projects/zfsd/head/contrib/libucl/tests/test_generate.c projects/zfsd/head/contrib/libucl/uthash/utstring.h projects/zfsd/head/contrib/llvm/include/llvm/Support/ELF.h projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/zfsd/head/contrib/llvm/lib/Object/ELF.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPC.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/zfsd/head/contrib/llvm/patches/patch-r208961-clang-version-include.diff projects/zfsd/head/contrib/llvm/patches/patch-r208987-format-extensions.diff projects/zfsd/head/contrib/llvm/patches/patch-r209107-clang-vendor-suffix.diff projects/zfsd/head/contrib/llvm/patches/patch-r213492-amd64-multi-os-dot.diff projects/zfsd/head/contrib/llvm/patches/patch-r221503-default-target-triple.diff projects/zfsd/head/contrib/llvm/patches/patch-r243830-arm-disable-clear-cache.diff projects/zfsd/head/contrib/llvm/patches/patch-r252503-arm-transient-stack-alignment.diff projects/zfsd/head/contrib/llvm/patches/patch-r257109-add-CC-aliases.diff projects/zfsd/head/contrib/llvm/patches/patch-r259053-gcc-installation-detector.diff projects/zfsd/head/contrib/llvm/patches/patch-r259498-add-fxsave.diff projects/zfsd/head/contrib/llvm/patches/patch-r261680-clang-r200899-fix-security-quantis.diff projects/zfsd/head/contrib/llvm/patches/patch-r261991-llvm-r195391-fix-dwarf2.diff projects/zfsd/head/contrib/llvm/patches/patch-r261991-llvm-r198385-fix-dwarf2.diff projects/zfsd/head/contrib/llvm/patches/patch-r261991-llvm-r198389-fix-dwarf2.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198028-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198029-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198030-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198145-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198149-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198157-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198280-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198281-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198286-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198480-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198484-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198533-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198565-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198567-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198580-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198591-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198592-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198658-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198681-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198738-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198739-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198740-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198893-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198909-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r198910-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199014-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199024-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199028-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199031-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199033-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199061-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199186-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199187-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199775-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199781-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199786-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199940-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199974-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199975-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r199977-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200103-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200104-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200112-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200130-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200131-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200141-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200282-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200368-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200373-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200376-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200509-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200617-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200960-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200961-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200962-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200963-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262261-llvm-r200965-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r198311-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r198312-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r198911-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r198912-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r198918-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r198923-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r199012-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r199034-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r199037-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r199188-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r199399-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262262-clang-r200452-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262264-llvm-r200453-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262265-llvm-r201718-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262303-enable-ppc-integrated-as.diff projects/zfsd/head/contrib/llvm/patches/patch-r262415-llvm-r201994-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262460-llvm-r202059-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262535-clang-r202177-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262536-clang-r202179-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262582-llvm-r202422-sparc.diff projects/zfsd/head/contrib/llvm/patches/patch-r262611-llvm-r196874-fix-invalid-pwd-crash.diff projects/zfsd/head/contrib/llvm/patches/patch-r263048-clang-r203624-fix-CC-aliases.diff projects/zfsd/head/contrib/llvm/patches/patch-r263312-llvm-r169939-inline-asm-with-realign.diff projects/zfsd/head/contrib/llvm/patches/patch-r263312-llvm-r196940-update-inline-asm-test.diff projects/zfsd/head/contrib/llvm/patches/patch-r263312-llvm-r196986-allow-realign-alloca.diff projects/zfsd/head/contrib/llvm/patches/patch-r263312-llvm-r202930-fix-alloca-esi-clobber.diff projects/zfsd/head/contrib/llvm/patches/patch-r263313-llvm-r203311-fix-sse1-oom.diff projects/zfsd/head/contrib/llvm/patches/patch-r263619-clang-r201662-arm-gnueabihf.diff projects/zfsd/head/contrib/llvm/patches/patch-r264826-llvm-r202188-variadic-fn-debug-info.diff projects/zfsd/head/contrib/llvm/patches/patch-r264827-clang-r202185-variadic-fn-debug-info.diff projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/zfsd/head/contrib/llvm/tools/lldb/tools/driver/Platform.h projects/zfsd/head/contrib/openbsm/libbsm/bsm_io.c projects/zfsd/head/contrib/openpam/lib/libpam/openpam_configure.c projects/zfsd/head/contrib/opie/libopie/challenge.c projects/zfsd/head/contrib/opie/opie.h projects/zfsd/head/contrib/opie/opiekey.c projects/zfsd/head/contrib/sendmail/CACerts projects/zfsd/head/contrib/sendmail/FAQ projects/zfsd/head/contrib/sendmail/FREEBSD-upgrade projects/zfsd/head/contrib/sendmail/INSTALL projects/zfsd/head/contrib/sendmail/KNOWNBUGS projects/zfsd/head/contrib/sendmail/LICENSE projects/zfsd/head/contrib/sendmail/Makefile projects/zfsd/head/contrib/sendmail/PGPKEYS projects/zfsd/head/contrib/sendmail/README projects/zfsd/head/contrib/sendmail/RELEASE_NOTES projects/zfsd/head/contrib/sendmail/cf/README projects/zfsd/head/contrib/sendmail/cf/cf/Makefile projects/zfsd/head/contrib/sendmail/cf/cf/README projects/zfsd/head/contrib/sendmail/cf/cf/chez.cs.mc projects/zfsd/head/contrib/sendmail/cf/cf/clientproto.mc projects/zfsd/head/contrib/sendmail/cf/cf/cs-hpux10.mc projects/zfsd/head/contrib/sendmail/cf/cf/cs-hpux9.mc projects/zfsd/head/contrib/sendmail/cf/cf/cs-osf1.mc projects/zfsd/head/contrib/sendmail/cf/cf/cs-solaris2.mc projects/zfsd/head/contrib/sendmail/cf/cf/cs-sunos4.1.mc projects/zfsd/head/contrib/sendmail/cf/cf/cs-ultrix4.mc projects/zfsd/head/contrib/sendmail/cf/cf/cyrusproto.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-bsd4.4.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-hpux10.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-hpux9.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-linux.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-mpeix.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-nextstep3.3.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-osf1.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-solaris.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-sunos4.1.mc projects/zfsd/head/contrib/sendmail/cf/cf/generic-ultrix4.mc projects/zfsd/head/contrib/sendmail/cf/cf/huginn.cs.mc projects/zfsd/head/contrib/sendmail/cf/cf/knecht.mc projects/zfsd/head/contrib/sendmail/cf/cf/mail.cs.mc projects/zfsd/head/contrib/sendmail/cf/cf/mail.eecs.mc projects/zfsd/head/contrib/sendmail/cf/cf/mailspool.cs.mc projects/zfsd/head/contrib/sendmail/cf/cf/python.cs.mc projects/zfsd/head/contrib/sendmail/cf/cf/s2k-osf1.mc projects/zfsd/head/contrib/sendmail/cf/cf/s2k-ultrix4.mc projects/zfsd/head/contrib/sendmail/cf/cf/submit.cf projects/zfsd/head/contrib/sendmail/cf/cf/submit.mc projects/zfsd/head/contrib/sendmail/cf/cf/tcpproto.mc projects/zfsd/head/contrib/sendmail/cf/cf/ucbarpa.mc projects/zfsd/head/contrib/sendmail/cf/cf/ucbvax.mc projects/zfsd/head/contrib/sendmail/cf/cf/uucpproto.mc projects/zfsd/head/contrib/sendmail/cf/cf/vangogh.cs.mc projects/zfsd/head/contrib/sendmail/cf/domain/Berkeley.EDU.m4 projects/zfsd/head/contrib/sendmail/cf/domain/CS.Berkeley.EDU.m4 projects/zfsd/head/contrib/sendmail/cf/domain/EECS.Berkeley.EDU.m4 projects/zfsd/head/contrib/sendmail/cf/domain/S2K.Berkeley.EDU.m4 projects/zfsd/head/contrib/sendmail/cf/domain/berkeley-only.m4 projects/zfsd/head/contrib/sendmail/cf/domain/generic.m4 projects/zfsd/head/contrib/sendmail/cf/feature/accept_unqualified_senders.m4 projects/zfsd/head/contrib/sendmail/cf/feature/accept_unresolvable_domains.m4 projects/zfsd/head/contrib/sendmail/cf/feature/access_db.m4 projects/zfsd/head/contrib/sendmail/cf/feature/allmasquerade.m4 projects/zfsd/head/contrib/sendmail/cf/feature/always_add_domain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/authinfo.m4 projects/zfsd/head/contrib/sendmail/cf/feature/badmx.m4 projects/zfsd/head/contrib/sendmail/cf/feature/bestmx_is_local.m4 projects/zfsd/head/contrib/sendmail/cf/feature/bitdomain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/blacklist_recipients.m4 projects/zfsd/head/contrib/sendmail/cf/feature/block_bad_helo.m4 projects/zfsd/head/contrib/sendmail/cf/feature/compat_check.m4 projects/zfsd/head/contrib/sendmail/cf/feature/conncontrol.m4 projects/zfsd/head/contrib/sendmail/cf/feature/delay_checks.m4 projects/zfsd/head/contrib/sendmail/cf/feature/dnsbl.m4 projects/zfsd/head/contrib/sendmail/cf/feature/domaintable.m4 projects/zfsd/head/contrib/sendmail/cf/feature/enhdnsbl.m4 projects/zfsd/head/contrib/sendmail/cf/feature/generics_entire_domain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/genericstable.m4 projects/zfsd/head/contrib/sendmail/cf/feature/greet_pause.m4 projects/zfsd/head/contrib/sendmail/cf/feature/ldap_routing.m4 projects/zfsd/head/contrib/sendmail/cf/feature/limited_masquerade.m4 projects/zfsd/head/contrib/sendmail/cf/feature/local_lmtp.m4 projects/zfsd/head/contrib/sendmail/cf/feature/local_no_masquerade.m4 projects/zfsd/head/contrib/sendmail/cf/feature/local_procmail.m4 projects/zfsd/head/contrib/sendmail/cf/feature/lookupdotdomain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/loose_relay_check.m4 projects/zfsd/head/contrib/sendmail/cf/feature/mailertable.m4 projects/zfsd/head/contrib/sendmail/cf/feature/masquerade_entire_domain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/masquerade_envelope.m4 projects/zfsd/head/contrib/sendmail/cf/feature/msp.m4 projects/zfsd/head/contrib/sendmail/cf/feature/mtamark.m4 projects/zfsd/head/contrib/sendmail/cf/feature/no_default_msa.m4 projects/zfsd/head/contrib/sendmail/cf/feature/nocanonify.m4 projects/zfsd/head/contrib/sendmail/cf/feature/notsticky.m4 projects/zfsd/head/contrib/sendmail/cf/feature/nouucp.m4 projects/zfsd/head/contrib/sendmail/cf/feature/nullclient.m4 projects/zfsd/head/contrib/sendmail/cf/feature/preserve_local_plus_detail.m4 projects/zfsd/head/contrib/sendmail/cf/feature/preserve_luser_host.m4 projects/zfsd/head/contrib/sendmail/cf/feature/promiscuous_relay.m4 projects/zfsd/head/contrib/sendmail/cf/feature/queuegroup.m4 projects/zfsd/head/contrib/sendmail/cf/feature/ratecontrol.m4 projects/zfsd/head/contrib/sendmail/cf/feature/redirect.m4 projects/zfsd/head/contrib/sendmail/cf/feature/relay_based_on_MX.m4 projects/zfsd/head/contrib/sendmail/cf/feature/relay_entire_domain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/relay_hosts_only.m4 projects/zfsd/head/contrib/sendmail/cf/feature/relay_local_from.m4 projects/zfsd/head/contrib/sendmail/cf/feature/relay_mail_from.m4 projects/zfsd/head/contrib/sendmail/cf/feature/require_rdns.m4 projects/zfsd/head/contrib/sendmail/cf/feature/smrsh.m4 projects/zfsd/head/contrib/sendmail/cf/feature/stickyhost.m4 projects/zfsd/head/contrib/sendmail/cf/feature/use_client_ptr.m4 projects/zfsd/head/contrib/sendmail/cf/feature/use_ct_file.m4 projects/zfsd/head/contrib/sendmail/cf/feature/use_cw_file.m4 projects/zfsd/head/contrib/sendmail/cf/feature/uucpdomain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/virtuser_entire_domain.m4 projects/zfsd/head/contrib/sendmail/cf/feature/virtusertable.m4 projects/zfsd/head/contrib/sendmail/cf/hack/cssubdomain.m4 projects/zfsd/head/contrib/sendmail/cf/m4/cf.m4 projects/zfsd/head/contrib/sendmail/cf/m4/cfhead.m4 projects/zfsd/head/contrib/sendmail/cf/m4/proto.m4 projects/zfsd/head/contrib/sendmail/cf/m4/version.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/cyrus.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/cyrusv2.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/fax.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/local.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/mail11.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/phquery.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/pop.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/procmail.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/qpage.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/smtp.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/usenet.m4 projects/zfsd/head/contrib/sendmail/cf/mailer/uucp.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/a-ux.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/aix3.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/aix4.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/aix5.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/altos.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/amdahl-uts.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/bsd4.3.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/bsd4.4.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/bsdi.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/bsdi1.0.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/bsdi2.0.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/darwin.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/dgux.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/domainos.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/dragonfly.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/dynix3.2.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/freebsd4.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/freebsd5.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/freebsd6.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/gnu.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/hpux10.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/hpux11.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/hpux9.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/irix4.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/irix5.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/irix6.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/isc4.1.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/linux.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/maxion.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/mklinux.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/mpeix.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/nextstep.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/openbsd.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/osf1.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/powerux.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/ptx2.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/qnx.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/riscos4.5.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/sco-uw-2.1.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/sco3.2.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/sinix.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/solaris11.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/solaris2.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/solaris2.ml.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/solaris2.pre5.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/solaris8.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/sunos3.5.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/sunos4.1.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/svr4.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/ultrix4.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/unicos.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/unicosmk.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/unicosmp.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/unixware7.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/unknown.m4 projects/zfsd/head/contrib/sendmail/cf/ostype/uxpds.m4 projects/zfsd/head/contrib/sendmail/cf/sendmail.schema projects/zfsd/head/contrib/sendmail/cf/sh/makeinfo.sh projects/zfsd/head/contrib/sendmail/contrib/README projects/zfsd/head/contrib/sendmail/contrib/bsdi.mc projects/zfsd/head/contrib/sendmail/contrib/buildvirtuser projects/zfsd/head/contrib/sendmail/contrib/cidrexpand projects/zfsd/head/contrib/sendmail/contrib/dnsblaccess.m4 projects/zfsd/head/contrib/sendmail/contrib/link_hash.sh projects/zfsd/head/contrib/sendmail/contrib/qtool.8 projects/zfsd/head/contrib/sendmail/contrib/qtool.pl projects/zfsd/head/contrib/sendmail/contrib/smcontrol.pl projects/zfsd/head/contrib/sendmail/contrib/socketmapClient.pl projects/zfsd/head/contrib/sendmail/contrib/socketmapServer.pl projects/zfsd/head/contrib/sendmail/doc/op/Makefile projects/zfsd/head/contrib/sendmail/doc/op/README projects/zfsd/head/contrib/sendmail/doc/op/op.me projects/zfsd/head/contrib/sendmail/editmap/Makefile projects/zfsd/head/contrib/sendmail/editmap/Makefile.m4 projects/zfsd/head/contrib/sendmail/editmap/editmap.8 projects/zfsd/head/contrib/sendmail/editmap/editmap.c projects/zfsd/head/contrib/sendmail/include/libmilter/mfapi.h projects/zfsd/head/contrib/sendmail/include/libmilter/mfdef.h projects/zfsd/head/contrib/sendmail/include/libmilter/milter.h projects/zfsd/head/contrib/sendmail/include/libsmdb/smdb.h projects/zfsd/head/contrib/sendmail/include/sendmail/mailstats.h projects/zfsd/head/contrib/sendmail/include/sendmail/pathnames.h projects/zfsd/head/contrib/sendmail/include/sendmail/sendmail.h projects/zfsd/head/contrib/sendmail/include/sm/assert.h projects/zfsd/head/contrib/sendmail/include/sm/bdb.h projects/zfsd/head/contrib/sendmail/include/sm/bitops.h projects/zfsd/head/contrib/sendmail/include/sm/cdefs.h projects/zfsd/head/contrib/sendmail/include/sm/cf.h projects/zfsd/head/contrib/sendmail/include/sm/clock.h projects/zfsd/head/contrib/sendmail/include/sm/conf.h projects/zfsd/head/contrib/sendmail/include/sm/config.h projects/zfsd/head/contrib/sendmail/include/sm/debug.h projects/zfsd/head/contrib/sendmail/include/sm/errstring.h projects/zfsd/head/contrib/sendmail/include/sm/exc.h projects/zfsd/head/contrib/sendmail/include/sm/fdset.h projects/zfsd/head/contrib/sendmail/include/sm/gen.h projects/zfsd/head/contrib/sendmail/include/sm/heap.h projects/zfsd/head/contrib/sendmail/include/sm/io.h projects/zfsd/head/contrib/sendmail/include/sm/ldap.h projects/zfsd/head/contrib/sendmail/include/sm/limits.h projects/zfsd/head/contrib/sendmail/include/sm/mbdb.h projects/zfsd/head/contrib/sendmail/include/sm/misc.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_aix.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_dragonfly.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_freebsd.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_hp.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_irix.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_linux.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_mpeix.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_next.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_openbsd.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_openunix.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_osf1.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_qnx.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_sunos.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_ultrix.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_unicos.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_unicosmk.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_unicosmp.h projects/zfsd/head/contrib/sendmail/include/sm/os/sm_os_unixware.h projects/zfsd/head/contrib/sendmail/include/sm/path.h projects/zfsd/head/contrib/sendmail/include/sm/rpool.h projects/zfsd/head/contrib/sendmail/include/sm/sem.h projects/zfsd/head/contrib/sendmail/include/sm/setjmp.h projects/zfsd/head/contrib/sendmail/include/sm/shm.h projects/zfsd/head/contrib/sendmail/include/sm/signal.h projects/zfsd/head/contrib/sendmail/include/sm/string.h projects/zfsd/head/contrib/sendmail/include/sm/sysexits.h projects/zfsd/head/contrib/sendmail/include/sm/tailq.h projects/zfsd/head/contrib/sendmail/include/sm/test.h projects/zfsd/head/contrib/sendmail/include/sm/time.h projects/zfsd/head/contrib/sendmail/include/sm/types.h projects/zfsd/head/contrib/sendmail/include/sm/varargs.h projects/zfsd/head/contrib/sendmail/include/sm/xtrap.h projects/zfsd/head/contrib/sendmail/libmilter/Makefile projects/zfsd/head/contrib/sendmail/libmilter/Makefile.m4 projects/zfsd/head/contrib/sendmail/libmilter/README projects/zfsd/head/contrib/sendmail/libmilter/comm.c projects/zfsd/head/contrib/sendmail/libmilter/docs/api.html projects/zfsd/head/contrib/sendmail/libmilter/docs/design.html projects/zfsd/head/contrib/sendmail/libmilter/docs/index.html projects/zfsd/head/contrib/sendmail/libmilter/docs/installation.html projects/zfsd/head/contrib/sendmail/libmilter/docs/other.html projects/zfsd/head/contrib/sendmail/libmilter/docs/overview.html projects/zfsd/head/contrib/sendmail/libmilter/docs/sample.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_addheader.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_addrcpt.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_addrcpt_par.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_chgfrom.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_chgheader.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_delrcpt.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_getpriv.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_getsymval.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_insheader.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_main.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_opensocket.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_progress.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_quarantine.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_register.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_replacebody.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setbacklog.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setconn.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setdbg.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setmlreply.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setpriv.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setreply.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_setsymlist.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_settimeout.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_stop.html projects/zfsd/head/contrib/sendmail/libmilter/docs/smfi_version.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_abort.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_body.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_close.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_connect.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_data.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_envfrom.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_eoh.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_eom.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_header.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_helo.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_negotiate.html projects/zfsd/head/contrib/sendmail/libmilter/docs/xxfi_unknown.html projects/zfsd/head/contrib/sendmail/libmilter/engine.c projects/zfsd/head/contrib/sendmail/libmilter/example.c projects/zfsd/head/contrib/sendmail/libmilter/handler.c projects/zfsd/head/contrib/sendmail/libmilter/libmilter.h projects/zfsd/head/contrib/sendmail/libmilter/listener.c projects/zfsd/head/contrib/sendmail/libmilter/main.c projects/zfsd/head/contrib/sendmail/libmilter/monitor.c projects/zfsd/head/contrib/sendmail/libmilter/signal.c projects/zfsd/head/contrib/sendmail/libmilter/sm_gethost.c projects/zfsd/head/contrib/sendmail/libmilter/smfi.c projects/zfsd/head/contrib/sendmail/libmilter/worker.c projects/zfsd/head/contrib/sendmail/libsm/Makefile projects/zfsd/head/contrib/sendmail/libsm/Makefile.m4 projects/zfsd/head/contrib/sendmail/libsm/README projects/zfsd/head/contrib/sendmail/libsm/assert.c projects/zfsd/head/contrib/sendmail/libsm/assert.html projects/zfsd/head/contrib/sendmail/libsm/b-strcmp.c projects/zfsd/head/contrib/sendmail/libsm/b-strl.c projects/zfsd/head/contrib/sendmail/libsm/cdefs.html projects/zfsd/head/contrib/sendmail/libsm/cf.c projects/zfsd/head/contrib/sendmail/libsm/clock.c projects/zfsd/head/contrib/sendmail/libsm/clrerr.c projects/zfsd/head/contrib/sendmail/libsm/config.c projects/zfsd/head/contrib/sendmail/libsm/debug.c projects/zfsd/head/contrib/sendmail/libsm/debug.html projects/zfsd/head/contrib/sendmail/libsm/errstring.c projects/zfsd/head/contrib/sendmail/libsm/exc.c projects/zfsd/head/contrib/sendmail/libsm/exc.html projects/zfsd/head/contrib/sendmail/libsm/fclose.c projects/zfsd/head/contrib/sendmail/libsm/feof.c projects/zfsd/head/contrib/sendmail/libsm/ferror.c projects/zfsd/head/contrib/sendmail/libsm/fflush.c projects/zfsd/head/contrib/sendmail/libsm/fget.c projects/zfsd/head/contrib/sendmail/libsm/findfp.c projects/zfsd/head/contrib/sendmail/libsm/flags.c projects/zfsd/head/contrib/sendmail/libsm/fopen.c projects/zfsd/head/contrib/sendmail/libsm/fpos.c projects/zfsd/head/contrib/sendmail/libsm/fprintf.c projects/zfsd/head/contrib/sendmail/libsm/fpurge.c projects/zfsd/head/contrib/sendmail/libsm/fput.c projects/zfsd/head/contrib/sendmail/libsm/fread.c projects/zfsd/head/contrib/sendmail/libsm/fscanf.c projects/zfsd/head/contrib/sendmail/libsm/fseek.c projects/zfsd/head/contrib/sendmail/libsm/fvwrite.c projects/zfsd/head/contrib/sendmail/libsm/fvwrite.h projects/zfsd/head/contrib/sendmail/libsm/fwalk.c projects/zfsd/head/contrib/sendmail/libsm/fwrite.c projects/zfsd/head/contrib/sendmail/libsm/gen.html projects/zfsd/head/contrib/sendmail/libsm/get.c projects/zfsd/head/contrib/sendmail/libsm/glue.h projects/zfsd/head/contrib/sendmail/libsm/heap.c projects/zfsd/head/contrib/sendmail/libsm/heap.html projects/zfsd/head/contrib/sendmail/libsm/index.html projects/zfsd/head/contrib/sendmail/libsm/inet6_ntop.c projects/zfsd/head/contrib/sendmail/libsm/io.html projects/zfsd/head/contrib/sendmail/libsm/ldap.c projects/zfsd/head/contrib/sendmail/libsm/local.h projects/zfsd/head/contrib/sendmail/libsm/makebuf.c projects/zfsd/head/contrib/sendmail/libsm/match.c projects/zfsd/head/contrib/sendmail/libsm/mbdb.c projects/zfsd/head/contrib/sendmail/libsm/memstat.c projects/zfsd/head/contrib/sendmail/libsm/mpeix.c projects/zfsd/head/contrib/sendmail/libsm/niprop.c projects/zfsd/head/contrib/sendmail/libsm/path.c projects/zfsd/head/contrib/sendmail/libsm/put.c projects/zfsd/head/contrib/sendmail/libsm/refill.c projects/zfsd/head/contrib/sendmail/libsm/rewind.c projects/zfsd/head/contrib/sendmail/libsm/rpool.c projects/zfsd/head/contrib/sendmail/libsm/rpool.html projects/zfsd/head/contrib/sendmail/libsm/sem.c projects/zfsd/head/contrib/sendmail/libsm/setvbuf.c projects/zfsd/head/contrib/sendmail/libsm/shm.c projects/zfsd/head/contrib/sendmail/libsm/signal.c projects/zfsd/head/contrib/sendmail/libsm/smstdio.c projects/zfsd/head/contrib/sendmail/libsm/snprintf.c projects/zfsd/head/contrib/sendmail/libsm/sscanf.c projects/zfsd/head/contrib/sendmail/libsm/stdio.c projects/zfsd/head/contrib/sendmail/libsm/strcasecmp.c projects/zfsd/head/contrib/sendmail/libsm/strdup.c projects/zfsd/head/contrib/sendmail/libsm/strerror.c projects/zfsd/head/contrib/sendmail/libsm/strexit.c projects/zfsd/head/contrib/sendmail/libsm/string.c projects/zfsd/head/contrib/sendmail/libsm/stringf.c projects/zfsd/head/contrib/sendmail/libsm/strio.c projects/zfsd/head/contrib/sendmail/libsm/strl.c projects/zfsd/head/contrib/sendmail/libsm/strrevcmp.c projects/zfsd/head/contrib/sendmail/libsm/strto.c projects/zfsd/head/contrib/sendmail/libsm/syslogio.c projects/zfsd/head/contrib/sendmail/libsm/t-cf.c projects/zfsd/head/contrib/sendmail/libsm/t-event.c projects/zfsd/head/contrib/sendmail/libsm/t-exc.c projects/zfsd/head/contrib/sendmail/libsm/t-fget.c projects/zfsd/head/contrib/sendmail/libsm/t-float.c projects/zfsd/head/contrib/sendmail/libsm/t-fopen.c projects/zfsd/head/contrib/sendmail/libsm/t-heap.c projects/zfsd/head/contrib/sendmail/libsm/t-inet6_ntop.c projects/zfsd/head/contrib/sendmail/libsm/t-match.c projects/zfsd/head/contrib/sendmail/libsm/t-memstat.c projects/zfsd/head/contrib/sendmail/libsm/t-path.c projects/zfsd/head/contrib/sendmail/libsm/t-qic.c projects/zfsd/head/contrib/sendmail/libsm/t-rpool.c projects/zfsd/head/contrib/sendmail/libsm/t-scanf.c projects/zfsd/head/contrib/sendmail/libsm/t-sem.c projects/zfsd/head/contrib/sendmail/libsm/t-shm.c projects/zfsd/head/contrib/sendmail/libsm/t-smstdio.c projects/zfsd/head/contrib/sendmail/libsm/t-string.c projects/zfsd/head/contrib/sendmail/libsm/t-strio.c projects/zfsd/head/contrib/sendmail/libsm/t-strl.c projects/zfsd/head/contrib/sendmail/libsm/t-strrevcmp.c projects/zfsd/head/contrib/sendmail/libsm/t-types.c projects/zfsd/head/contrib/sendmail/libsm/test.c projects/zfsd/head/contrib/sendmail/libsm/ungetc.c projects/zfsd/head/contrib/sendmail/libsm/util.c projects/zfsd/head/contrib/sendmail/libsm/vasprintf.c projects/zfsd/head/contrib/sendmail/libsm/vfprintf.c projects/zfsd/head/contrib/sendmail/libsm/vfscanf.c projects/zfsd/head/contrib/sendmail/libsm/vprintf.c projects/zfsd/head/contrib/sendmail/libsm/vsnprintf.c projects/zfsd/head/contrib/sendmail/libsm/wbuf.c projects/zfsd/head/contrib/sendmail/libsm/wsetup.c projects/zfsd/head/contrib/sendmail/libsm/xtrap.c projects/zfsd/head/contrib/sendmail/libsmdb/Makefile projects/zfsd/head/contrib/sendmail/libsmdb/Makefile.m4 projects/zfsd/head/contrib/sendmail/libsmdb/smdb.c projects/zfsd/head/contrib/sendmail/libsmdb/smdb1.c projects/zfsd/head/contrib/sendmail/libsmdb/smdb2.c projects/zfsd/head/contrib/sendmail/libsmdb/smndbm.c projects/zfsd/head/contrib/sendmail/libsmutil/Makefile projects/zfsd/head/contrib/sendmail/libsmutil/Makefile.m4 projects/zfsd/head/contrib/sendmail/libsmutil/cf.c projects/zfsd/head/contrib/sendmail/libsmutil/debug.c projects/zfsd/head/contrib/sendmail/libsmutil/err.c projects/zfsd/head/contrib/sendmail/libsmutil/lockfile.c projects/zfsd/head/contrib/sendmail/libsmutil/safefile.c projects/zfsd/head/contrib/sendmail/libsmutil/snprintf.c projects/zfsd/head/contrib/sendmail/mail.local/Makefile projects/zfsd/head/contrib/sendmail/mail.local/Makefile.m4 projects/zfsd/head/contrib/sendmail/mail.local/README projects/zfsd/head/contrib/sendmail/mail.local/mail.local.8 projects/zfsd/head/contrib/sendmail/mail.local/mail.local.c projects/zfsd/head/contrib/sendmail/mailstats/Makefile projects/zfsd/head/contrib/sendmail/mailstats/Makefile.m4 projects/zfsd/head/contrib/sendmail/mailstats/mailstats.8 projects/zfsd/head/contrib/sendmail/mailstats/mailstats.c projects/zfsd/head/contrib/sendmail/makemap/Makefile projects/zfsd/head/contrib/sendmail/makemap/Makefile.m4 projects/zfsd/head/contrib/sendmail/makemap/makemap.8 projects/zfsd/head/contrib/sendmail/makemap/makemap.c projects/zfsd/head/contrib/sendmail/praliases/Makefile projects/zfsd/head/contrib/sendmail/praliases/Makefile.m4 projects/zfsd/head/contrib/sendmail/praliases/praliases.8 projects/zfsd/head/contrib/sendmail/praliases/praliases.c projects/zfsd/head/contrib/sendmail/rmail/Makefile projects/zfsd/head/contrib/sendmail/rmail/Makefile.m4 projects/zfsd/head/contrib/sendmail/rmail/rmail.8 projects/zfsd/head/contrib/sendmail/rmail/rmail.c projects/zfsd/head/contrib/sendmail/smrsh/Makefile projects/zfsd/head/contrib/sendmail/smrsh/Makefile.m4 projects/zfsd/head/contrib/sendmail/smrsh/README projects/zfsd/head/contrib/sendmail/smrsh/smrsh.8 projects/zfsd/head/contrib/sendmail/smrsh/smrsh.c projects/zfsd/head/contrib/sendmail/src/Makefile projects/zfsd/head/contrib/sendmail/src/Makefile.m4 projects/zfsd/head/contrib/sendmail/src/README projects/zfsd/head/contrib/sendmail/src/SECURITY projects/zfsd/head/contrib/sendmail/src/TRACEFLAGS projects/zfsd/head/contrib/sendmail/src/TUNING projects/zfsd/head/contrib/sendmail/src/alias.c projects/zfsd/head/contrib/sendmail/src/aliases projects/zfsd/head/contrib/sendmail/src/aliases.5 projects/zfsd/head/contrib/sendmail/src/arpadate.c projects/zfsd/head/contrib/sendmail/src/bf.c projects/zfsd/head/contrib/sendmail/src/bf.h projects/zfsd/head/contrib/sendmail/src/collect.c projects/zfsd/head/contrib/sendmail/src/conf.c projects/zfsd/head/contrib/sendmail/src/conf.h projects/zfsd/head/contrib/sendmail/src/control.c projects/zfsd/head/contrib/sendmail/src/convtime.c projects/zfsd/head/contrib/sendmail/src/daemon.c projects/zfsd/head/contrib/sendmail/src/daemon.h projects/zfsd/head/contrib/sendmail/src/deliver.c projects/zfsd/head/contrib/sendmail/src/domain.c projects/zfsd/head/contrib/sendmail/src/envelope.c projects/zfsd/head/contrib/sendmail/src/err.c projects/zfsd/head/contrib/sendmail/src/headers.c projects/zfsd/head/contrib/sendmail/src/helpfile projects/zfsd/head/contrib/sendmail/src/macro.c projects/zfsd/head/contrib/sendmail/src/mailq.1 projects/zfsd/head/contrib/sendmail/src/main.c projects/zfsd/head/contrib/sendmail/src/map.c projects/zfsd/head/contrib/sendmail/src/map.h projects/zfsd/head/contrib/sendmail/src/mci.c projects/zfsd/head/contrib/sendmail/src/milter.c projects/zfsd/head/contrib/sendmail/src/mime.c projects/zfsd/head/contrib/sendmail/src/newaliases.1 projects/zfsd/head/contrib/sendmail/src/parseaddr.c projects/zfsd/head/contrib/sendmail/src/queue.c projects/zfsd/head/contrib/sendmail/src/ratectrl.c projects/zfsd/head/contrib/sendmail/src/readcf.c projects/zfsd/head/contrib/sendmail/src/recipient.c projects/zfsd/head/contrib/sendmail/src/sasl.c projects/zfsd/head/contrib/sendmail/src/savemail.c projects/zfsd/head/contrib/sendmail/src/sendmail.8 projects/zfsd/head/contrib/sendmail/src/sendmail.h projects/zfsd/head/contrib/sendmail/src/sfsasl.c projects/zfsd/head/contrib/sendmail/src/sfsasl.h projects/zfsd/head/contrib/sendmail/src/shmticklib.c projects/zfsd/head/contrib/sendmail/src/sm_resolve.c projects/zfsd/head/contrib/sendmail/src/sm_resolve.h projects/zfsd/head/contrib/sendmail/src/srvrsmtp.c projects/zfsd/head/contrib/sendmail/src/stab.c projects/zfsd/head/contrib/sendmail/src/stats.c projects/zfsd/head/contrib/sendmail/src/statusd_shm.h projects/zfsd/head/contrib/sendmail/src/sysexits.c projects/zfsd/head/contrib/sendmail/src/timers.c projects/zfsd/head/contrib/sendmail/src/timers.h projects/zfsd/head/contrib/sendmail/src/tls.c projects/zfsd/head/contrib/sendmail/src/trace.c projects/zfsd/head/contrib/sendmail/src/udb.c projects/zfsd/head/contrib/sendmail/src/usersmtp.c projects/zfsd/head/contrib/sendmail/src/util.c projects/zfsd/head/contrib/sendmail/src/version.c projects/zfsd/head/contrib/sendmail/test/Makefile projects/zfsd/head/contrib/sendmail/test/Makefile.m4 projects/zfsd/head/contrib/sendmail/test/README projects/zfsd/head/contrib/sendmail/test/Results projects/zfsd/head/contrib/sendmail/test/t_dropgid.c projects/zfsd/head/contrib/sendmail/test/t_exclopen.c projects/zfsd/head/contrib/sendmail/test/t_pathconf.c projects/zfsd/head/contrib/sendmail/test/t_seteuid.c projects/zfsd/head/contrib/sendmail/test/t_setgid.c projects/zfsd/head/contrib/sendmail/test/t_setreuid.c projects/zfsd/head/contrib/sendmail/test/t_setuid.c projects/zfsd/head/contrib/sendmail/test/t_snprintf.c projects/zfsd/head/contrib/sendmail/vacation/Makefile projects/zfsd/head/contrib/sendmail/vacation/Makefile.m4 projects/zfsd/head/contrib/sendmail/vacation/vacation.1 projects/zfsd/head/contrib/sendmail/vacation/vacation.c projects/zfsd/head/contrib/serf/CHANGES projects/zfsd/head/contrib/serf/auth/auth_spnego.c projects/zfsd/head/contrib/serf/buckets/ssl_buckets.c projects/zfsd/head/contrib/serf/serf.h projects/zfsd/head/contrib/serf/ssltunnel.c projects/zfsd/head/contrib/sqlite3/INSTALL projects/zfsd/head/contrib/sqlite3/Makefile.in projects/zfsd/head/contrib/sqlite3/aclocal.m4 projects/zfsd/head/contrib/sqlite3/config.guess projects/zfsd/head/contrib/sqlite3/config.sub projects/zfsd/head/contrib/sqlite3/configure projects/zfsd/head/contrib/sqlite3/configure.ac projects/zfsd/head/contrib/sqlite3/depcomp projects/zfsd/head/contrib/sqlite3/install-sh projects/zfsd/head/contrib/sqlite3/ltmain.sh projects/zfsd/head/contrib/sqlite3/missing projects/zfsd/head/contrib/sqlite3/shell.c projects/zfsd/head/contrib/sqlite3/sqlite3.1 projects/zfsd/head/contrib/sqlite3/sqlite3.c projects/zfsd/head/contrib/sqlite3/sqlite3.h projects/zfsd/head/contrib/sqlite3/sqlite3ext.h projects/zfsd/head/contrib/subversion/CHANGES projects/zfsd/head/contrib/subversion/NOTICE projects/zfsd/head/contrib/subversion/build-outputs.mk projects/zfsd/head/contrib/subversion/build.conf projects/zfsd/head/contrib/subversion/configure projects/zfsd/head/contrib/subversion/configure.ac projects/zfsd/head/contrib/subversion/get-deps.sh projects/zfsd/head/contrib/subversion/subversion/include/private/svn_cache.h projects/zfsd/head/contrib/subversion/subversion/include/private/svn_dep_compat.h projects/zfsd/head/contrib/subversion/subversion/include/svn_version.h projects/zfsd/head/contrib/subversion/subversion/libsvn_client/commit_util.c projects/zfsd/head/contrib/subversion/subversion/libsvn_client/delete.c projects/zfsd/head/contrib/subversion/subversion/libsvn_client/export.c projects/zfsd/head/contrib/subversion/subversion/libsvn_client/externals.c projects/zfsd/head/contrib/subversion/subversion/libsvn_client/merge.c projects/zfsd/head/contrib/subversion/subversion/libsvn_client/prop_commands.c projects/zfsd/head/contrib/subversion/subversion/libsvn_delta/svndiff.c projects/zfsd/head/contrib/subversion/subversion/libsvn_fs_fs/fs.c projects/zfsd/head/contrib/subversion/subversion/libsvn_fs_fs/fs.h projects/zfsd/head/contrib/subversion/subversion/libsvn_fs_fs/fs_fs.c projects/zfsd/head/contrib/subversion/subversion/libsvn_fs_fs/rep-cache-db.h projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/commit.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/getlocks.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/inherited_props.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/locks.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/log.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/options.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/update.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_serf/util.c projects/zfsd/head/contrib/subversion/subversion/libsvn_ra_svn/protocol projects/zfsd/head/contrib/subversion/subversion/libsvn_repos/dump.c projects/zfsd/head/contrib/subversion/subversion/libsvn_repos/fs-wrap.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/cache-memcache.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/config_auth.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/config_file.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/dirent_uri.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/internal_statements.h projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/io.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/opt.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/prompt.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/sysinfo.c projects/zfsd/head/contrib/subversion/subversion/libsvn_subr/version.c projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/status.c projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc-checks.h projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc-metadata.h projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc-metadata.sql projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc-queries.h projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc-queries.sql projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc_db.c projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc_db.h projects/zfsd/head/contrib/subversion/subversion/libsvn_wc/wc_db_wcroot.c projects/zfsd/head/contrib/subversion/subversion/svn/conflict-callbacks.c projects/zfsd/head/contrib/subversion/subversion/svn/util.c projects/zfsd/head/contrib/subversion/subversion/svndumpfilter/svndumpfilter.c projects/zfsd/head/contrib/subversion/subversion/svnrdump/util.c projects/zfsd/head/contrib/subversion/subversion/svnserve/serve.c projects/zfsd/head/contrib/tzdata/africa projects/zfsd/head/contrib/tzdata/australasia projects/zfsd/head/contrib/tzdata/europe projects/zfsd/head/contrib/tzdata/northamerica projects/zfsd/head/contrib/unbound/doc/example.conf.in projects/zfsd/head/contrib/unbound/doc/unbound.conf.5 projects/zfsd/head/contrib/unbound/doc/unbound.conf.5.in projects/zfsd/head/contrib/unbound/freebsd-configure.sh projects/zfsd/head/contrib/unbound/libunbound/libworker.h projects/zfsd/head/contrib/unbound/libunbound/worker.h projects/zfsd/head/contrib/unbound/services/localzone.c projects/zfsd/head/contrib/unbound/util/config_file.c projects/zfsd/head/contrib/unbound/util/config_file.h projects/zfsd/head/contrib/unbound/util/configlexer.lex projects/zfsd/head/contrib/unbound/util/configparser.y projects/zfsd/head/contrib/wpa/src/utils/os_unix.c projects/zfsd/head/crypto/openssl/ACKNOWLEDGMENTS projects/zfsd/head/crypto/openssl/CHANGES projects/zfsd/head/crypto/openssl/Configure projects/zfsd/head/crypto/openssl/FAQ projects/zfsd/head/crypto/openssl/Makefile projects/zfsd/head/crypto/openssl/NEWS projects/zfsd/head/crypto/openssl/README projects/zfsd/head/crypto/openssl/apps/apps.c projects/zfsd/head/crypto/openssl/apps/ca.c projects/zfsd/head/crypto/openssl/apps/ciphers.c projects/zfsd/head/crypto/openssl/apps/crl2p7.c projects/zfsd/head/crypto/openssl/apps/enc.c projects/zfsd/head/crypto/openssl/apps/ocsp.c projects/zfsd/head/crypto/openssl/apps/progs.h projects/zfsd/head/crypto/openssl/apps/progs.pl projects/zfsd/head/crypto/openssl/apps/req.c projects/zfsd/head/crypto/openssl/apps/s_cb.c projects/zfsd/head/crypto/openssl/apps/s_client.c projects/zfsd/head/crypto/openssl/apps/s_server.c projects/zfsd/head/crypto/openssl/apps/s_socket.c projects/zfsd/head/crypto/openssl/apps/smime.c projects/zfsd/head/crypto/openssl/crypto/asn1/a_object.c projects/zfsd/head/crypto/openssl/crypto/asn1/a_strnid.c projects/zfsd/head/crypto/openssl/crypto/asn1/a_utctm.c projects/zfsd/head/crypto/openssl/crypto/asn1/ameth_lib.c projects/zfsd/head/crypto/openssl/crypto/asn1/asn1_lib.c projects/zfsd/head/crypto/openssl/crypto/asn1/asn_mime.c projects/zfsd/head/crypto/openssl/crypto/asn1/asn_pack.c projects/zfsd/head/crypto/openssl/crypto/asn1/bio_asn1.c projects/zfsd/head/crypto/openssl/crypto/asn1/charmap.pl projects/zfsd/head/crypto/openssl/crypto/asn1/evp_asn1.c projects/zfsd/head/crypto/openssl/crypto/asn1/t_x509.c projects/zfsd/head/crypto/openssl/crypto/asn1/tasn_enc.c projects/zfsd/head/crypto/openssl/crypto/asn1/x_crl.c projects/zfsd/head/crypto/openssl/crypto/bio/bio_lib.c projects/zfsd/head/crypto/openssl/crypto/bio/bss_dgram.c projects/zfsd/head/crypto/openssl/crypto/bn/bn_exp.c projects/zfsd/head/crypto/openssl/crypto/bn/bn_lib.c projects/zfsd/head/crypto/openssl/crypto/bn/bn_mont.c projects/zfsd/head/crypto/openssl/crypto/bn/bn_sqr.c projects/zfsd/head/crypto/openssl/crypto/cms/cms_env.c projects/zfsd/head/crypto/openssl/crypto/cms/cms_pwri.c projects/zfsd/head/crypto/openssl/crypto/cms/cms_sd.c projects/zfsd/head/crypto/openssl/crypto/cms/cms_smime.c projects/zfsd/head/crypto/openssl/crypto/conf/conf_def.c projects/zfsd/head/crypto/openssl/crypto/dso/dso_dlfcn.c projects/zfsd/head/crypto/openssl/crypto/ec/ec_ameth.c projects/zfsd/head/crypto/openssl/crypto/ec/ec_asn1.c projects/zfsd/head/crypto/openssl/crypto/ec/ec_lcl.h projects/zfsd/head/crypto/openssl/crypto/ec/ec_lib.c projects/zfsd/head/crypto/openssl/crypto/ec/ecp_smpl.c projects/zfsd/head/crypto/openssl/crypto/ec/ectest.c projects/zfsd/head/crypto/openssl/crypto/evp/bio_b64.c projects/zfsd/head/crypto/openssl/crypto/evp/e_aes.c projects/zfsd/head/crypto/openssl/crypto/evp/encode.c projects/zfsd/head/crypto/openssl/crypto/evp/evp_pbe.c projects/zfsd/head/crypto/openssl/crypto/idea/ideatest.c projects/zfsd/head/crypto/openssl/crypto/objects/obj_dat.c projects/zfsd/head/crypto/openssl/crypto/objects/obj_dat.h projects/zfsd/head/crypto/openssl/crypto/objects/obj_dat.pl projects/zfsd/head/crypto/openssl/crypto/ocsp/ocsp_ht.c projects/zfsd/head/crypto/openssl/crypto/ocsp/ocsp_lib.c projects/zfsd/head/crypto/openssl/crypto/opensslconf.h projects/zfsd/head/crypto/openssl/crypto/opensslv.h projects/zfsd/head/crypto/openssl/crypto/pem/pvkfmt.c projects/zfsd/head/crypto/openssl/crypto/pkcs12/p12_crt.c projects/zfsd/head/crypto/openssl/crypto/pkcs12/p12_kiss.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/Makefile projects/zfsd/head/crypto/openssl/crypto/pkcs7/pk7_doit.c projects/zfsd/head/crypto/openssl/crypto/pkcs7/pkcs7.h projects/zfsd/head/crypto/openssl/crypto/pkcs7/pkcs7err.c projects/zfsd/head/crypto/openssl/crypto/rand/md_rand.c projects/zfsd/head/crypto/openssl/crypto/rand/rand_lcl.h projects/zfsd/head/crypto/openssl/crypto/rand/rand_lib.c projects/zfsd/head/crypto/openssl/crypto/rand/randfile.c projects/zfsd/head/crypto/openssl/crypto/rsa/rsa_ameth.c projects/zfsd/head/crypto/openssl/crypto/rsa/rsa_eay.c projects/zfsd/head/crypto/openssl/crypto/srp/srp_lib.c projects/zfsd/head/crypto/openssl/crypto/srp/srp_vfy.c projects/zfsd/head/crypto/openssl/crypto/ts/ts_rsp_verify.c projects/zfsd/head/crypto/openssl/crypto/ui/ui_lib.c projects/zfsd/head/crypto/openssl/crypto/x509v3/v3_purp.c projects/zfsd/head/crypto/openssl/doc/apps/asn1parse.pod projects/zfsd/head/crypto/openssl/doc/apps/ca.pod projects/zfsd/head/crypto/openssl/doc/apps/ciphers.pod projects/zfsd/head/crypto/openssl/doc/apps/cms.pod projects/zfsd/head/crypto/openssl/doc/apps/crl.pod projects/zfsd/head/crypto/openssl/doc/apps/dhparam.pod projects/zfsd/head/crypto/openssl/doc/apps/dsa.pod projects/zfsd/head/crypto/openssl/doc/apps/ecparam.pod projects/zfsd/head/crypto/openssl/doc/apps/enc.pod projects/zfsd/head/crypto/openssl/doc/apps/gendsa.pod projects/zfsd/head/crypto/openssl/doc/apps/genrsa.pod projects/zfsd/head/crypto/openssl/doc/apps/rsa.pod projects/zfsd/head/crypto/openssl/doc/apps/s_client.pod projects/zfsd/head/crypto/openssl/doc/apps/s_server.pod projects/zfsd/head/crypto/openssl/doc/apps/smime.pod projects/zfsd/head/crypto/openssl/doc/apps/verify.pod projects/zfsd/head/crypto/openssl/doc/apps/version.pod projects/zfsd/head/crypto/openssl/doc/apps/x509.pod projects/zfsd/head/crypto/openssl/doc/apps/x509v3_config.pod projects/zfsd/head/crypto/openssl/doc/crypto/ASN1_generate_nconf.pod projects/zfsd/head/crypto/openssl/doc/crypto/BIO_f_base64.pod projects/zfsd/head/crypto/openssl/doc/crypto/BIO_push.pod projects/zfsd/head/crypto/openssl/doc/crypto/CMS_decrypt.pod projects/zfsd/head/crypto/openssl/doc/crypto/CONF_modules_free.pod projects/zfsd/head/crypto/openssl/doc/crypto/CONF_modules_load_file.pod projects/zfsd/head/crypto/openssl/doc/crypto/ERR_get_error.pod projects/zfsd/head/crypto/openssl/doc/crypto/EVP_DigestInit.pod projects/zfsd/head/crypto/openssl/doc/crypto/EVP_EncryptInit.pod projects/zfsd/head/crypto/openssl/doc/crypto/EVP_SignInit.pod projects/zfsd/head/crypto/openssl/doc/crypto/OPENSSL_config.pod projects/zfsd/head/crypto/openssl/doc/crypto/RSA_set_method.pod projects/zfsd/head/crypto/openssl/doc/crypto/RSA_sign.pod projects/zfsd/head/crypto/openssl/doc/crypto/X509_NAME_ENTRY_get_object.pod projects/zfsd/head/crypto/openssl/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod projects/zfsd/head/crypto/openssl/doc/crypto/des.pod projects/zfsd/head/crypto/openssl/doc/crypto/err.pod projects/zfsd/head/crypto/openssl/doc/crypto/pem.pod projects/zfsd/head/crypto/openssl/doc/crypto/ui.pod projects/zfsd/head/crypto/openssl/doc/fingerprints.txt projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CIPHER_get_name.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_add_session.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_new.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_client_cert_cb.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_msg_callback.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_get_peer_cert_chain.pod projects/zfsd/head/crypto/openssl/doc/ssl/SSL_get_version.pod projects/zfsd/head/crypto/openssl/doc/ssl/d2i_SSL_SESSION.pod projects/zfsd/head/crypto/openssl/engines/ccgost/gost_ameth.c projects/zfsd/head/crypto/openssl/ssl/Makefile projects/zfsd/head/crypto/openssl/ssl/d1_both.c projects/zfsd/head/crypto/openssl/ssl/d1_clnt.c projects/zfsd/head/crypto/openssl/ssl/d1_lib.c projects/zfsd/head/crypto/openssl/ssl/d1_pkt.c projects/zfsd/head/crypto/openssl/ssl/d1_srvr.c projects/zfsd/head/crypto/openssl/ssl/s23_lib.c projects/zfsd/head/crypto/openssl/ssl/s23_srvr.c projects/zfsd/head/crypto/openssl/ssl/s2_lib.c projects/zfsd/head/crypto/openssl/ssl/s3_clnt.c projects/zfsd/head/crypto/openssl/ssl/s3_enc.c projects/zfsd/head/crypto/openssl/ssl/s3_lib.c projects/zfsd/head/crypto/openssl/ssl/s3_pkt.c projects/zfsd/head/crypto/openssl/ssl/s3_srvr.c projects/zfsd/head/crypto/openssl/ssl/ssl.h projects/zfsd/head/crypto/openssl/ssl/ssl3.h projects/zfsd/head/crypto/openssl/ssl/ssl_asn1.c projects/zfsd/head/crypto/openssl/ssl/ssl_ciph.c projects/zfsd/head/crypto/openssl/ssl/ssl_err.c projects/zfsd/head/crypto/openssl/ssl/ssl_lib.c projects/zfsd/head/crypto/openssl/ssl/ssl_locl.h projects/zfsd/head/crypto/openssl/ssl/ssl_stat.c projects/zfsd/head/crypto/openssl/ssl/t1_enc.c projects/zfsd/head/crypto/openssl/ssl/t1_lib.c projects/zfsd/head/crypto/openssl/ssl/tls_srp.c projects/zfsd/head/crypto/openssl/util/mk1mf.pl projects/zfsd/head/crypto/openssl/util/mkdef.pl projects/zfsd/head/crypto/openssl/util/mkerr.pl projects/zfsd/head/crypto/openssl/util/ssleay.num projects/zfsd/head/etc/Makefile projects/zfsd/head/etc/defaults/rc.conf projects/zfsd/head/etc/devd/Makefile projects/zfsd/head/etc/etc.amd64/ttys projects/zfsd/head/etc/etc.i386/ttys projects/zfsd/head/etc/mtree/BSD.include.dist projects/zfsd/head/etc/mtree/BSD.root.dist projects/zfsd/head/etc/mtree/BSD.tests.dist projects/zfsd/head/etc/mtree/BSD.usr.dist projects/zfsd/head/etc/mtree/BSD.var.dist projects/zfsd/head/etc/network.subr projects/zfsd/head/etc/rc.d/Makefile projects/zfsd/head/etc/sendmail/freebsd.mc projects/zfsd/head/etc/sendmail/freebsd.submit.mc projects/zfsd/head/etc/snmpd.config projects/zfsd/head/games/fortune/datfiles/fortunes projects/zfsd/head/games/fortune/datfiles/freebsd-tips projects/zfsd/head/games/fortune/fortune/pathnames.h projects/zfsd/head/games/grdc/Makefile projects/zfsd/head/games/morse/morse.6 projects/zfsd/head/games/random/random.6 projects/zfsd/head/gnu/lib/Makefile projects/zfsd/head/gnu/lib/csu/Makefile projects/zfsd/head/gnu/lib/libgcc/Makefile projects/zfsd/head/gnu/lib/libgcov/Makefile projects/zfsd/head/gnu/lib/libreadline/Makefile projects/zfsd/head/gnu/lib/libreadline/readline/Makefile projects/zfsd/head/gnu/usr.bin/Makefile projects/zfsd/head/gnu/usr.bin/binutils/ld/Makefile projects/zfsd/head/gnu/usr.bin/binutils/libbfd/Makefile projects/zfsd/head/gnu/usr.bin/binutils/libbfd/bfd.h projects/zfsd/head/gnu/usr.bin/cc/Makefile projects/zfsd/head/gnu/usr.bin/cc/Makefile.tgt projects/zfsd/head/gnu/usr.bin/cc/include/Makefile projects/zfsd/head/gnu/usr.bin/gdb/Makefile.inc projects/zfsd/head/gnu/usr.bin/gdb/gdb/Makefile projects/zfsd/head/gnu/usr.bin/gdb/gdbtui/Makefile projects/zfsd/head/gnu/usr.bin/gdb/kgdb/Makefile projects/zfsd/head/gnu/usr.bin/groff/tmac/mdoc.local projects/zfsd/head/gnu/usr.bin/texinfo/info/Makefile projects/zfsd/head/include/Makefile projects/zfsd/head/include/arpa/inet.h projects/zfsd/head/include/arpa/nameser.h projects/zfsd/head/include/arpa/nameser_compat.h projects/zfsd/head/include/dirent.h projects/zfsd/head/include/res_update.h projects/zfsd/head/include/resolv.h projects/zfsd/head/include/search.h projects/zfsd/head/include/stddef.h projects/zfsd/head/include/strings.h projects/zfsd/head/include/xlocale/Makefile projects/zfsd/head/include/xlocale/_string.h projects/zfsd/head/kerberos5/lib/libkrb5/Makefile projects/zfsd/head/kerberos5/libexec/digest-service/Makefile projects/zfsd/head/kerberos5/libexec/kcm/Makefile projects/zfsd/head/kerberos5/usr.bin/kadmin/Makefile projects/zfsd/head/lib/Makefile projects/zfsd/head/lib/atf/libatf-c++/Makefile projects/zfsd/head/lib/atf/libatf-c++/tests/Makefile projects/zfsd/head/lib/atf/libatf-c/Makefile projects/zfsd/head/lib/atf/libatf-c/tests/Makefile projects/zfsd/head/lib/clang/clang.build.mk projects/zfsd/head/lib/clang/include/clang/Config/config.h projects/zfsd/head/lib/clang/include/llvm/Config/config.h projects/zfsd/head/lib/csu/i386-elf/Makefile projects/zfsd/head/lib/libarchive/Makefile projects/zfsd/head/lib/libarchive/config_freebsd.h projects/zfsd/head/lib/libbluetooth/bluetooth.3 projects/zfsd/head/lib/libc/Makefile projects/zfsd/head/lib/libc/amd64/gen/sigsetjmp.S projects/zfsd/head/lib/libc/arm/Symbol.map projects/zfsd/head/lib/libc/arm/aeabi/Makefile.inc projects/zfsd/head/lib/libc/arm/aeabi/aeabi_vfp.h projects/zfsd/head/lib/libc/capability/cap_rights_init.3 projects/zfsd/head/lib/libc/gen/arc4random.c projects/zfsd/head/lib/libc/gen/cap_rights_get.3 projects/zfsd/head/lib/libc/gen/cap_sandboxed.3 projects/zfsd/head/lib/libc/gen/check_utility_compat.3 projects/zfsd/head/lib/libc/gen/clock_getcpuclockid.3 projects/zfsd/head/lib/libc/gen/directory.3 projects/zfsd/head/lib/libc/gen/dlinfo.3 projects/zfsd/head/lib/libc/gen/ftok.3 projects/zfsd/head/lib/libc/gen/gen-private.h projects/zfsd/head/lib/libc/gen/getpagesizes.3 projects/zfsd/head/lib/libc/gen/getutxent.3 projects/zfsd/head/lib/libc/gen/opendir.c projects/zfsd/head/lib/libc/gen/posix_spawn.3 projects/zfsd/head/lib/libc/gen/posix_spawn_file_actions_addopen.3 projects/zfsd/head/lib/libc/gen/posix_spawn_file_actions_init.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_getflags.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_getpgroup.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_getschedparam.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_getschedpolicy.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_getsigdefault.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_getsigmask.3 projects/zfsd/head/lib/libc/gen/posix_spawnattr_init.3 projects/zfsd/head/lib/libc/gen/readdir.c projects/zfsd/head/lib/libc/gen/readpassphrase.c projects/zfsd/head/lib/libc/gen/rewinddir.c projects/zfsd/head/lib/libc/gen/sem_wait.3 projects/zfsd/head/lib/libc/gen/setproctitle.3 projects/zfsd/head/lib/libc/gen/statvfs.3 projects/zfsd/head/lib/libc/gen/sysconf.c projects/zfsd/head/lib/libc/gen/telldir.c projects/zfsd/head/lib/libc/gen/telldir.h projects/zfsd/head/lib/libc/gen/tls.c projects/zfsd/head/lib/libc/gen/ttyname.3 projects/zfsd/head/lib/libc/i386/gen/sigsetjmp.S projects/zfsd/head/lib/libc/iconv/__iconv_get_list.3 projects/zfsd/head/lib/libc/iconv/bsd_iconv.c projects/zfsd/head/lib/libc/iconv/citrus_db_factory.c projects/zfsd/head/lib/libc/iconv/citrus_iconv.c projects/zfsd/head/lib/libc/iconv/iconv.3 projects/zfsd/head/lib/libc/iconv/iconv_canonicalize.3 projects/zfsd/head/lib/libc/iconv/iconvctl.3 projects/zfsd/head/lib/libc/iconv/iconvlist.3 projects/zfsd/head/lib/libc/include/isc/eventlib.h projects/zfsd/head/lib/libc/include/isc/list.h projects/zfsd/head/lib/libc/include/port_before.h projects/zfsd/head/lib/libc/inet/inet_addr.c projects/zfsd/head/lib/libc/inet/inet_cidr_ntop.c projects/zfsd/head/lib/libc/inet/inet_cidr_pton.c projects/zfsd/head/lib/libc/inet/inet_net_ntop.c projects/zfsd/head/lib/libc/inet/inet_net_pton.c projects/zfsd/head/lib/libc/inet/inet_neta.c projects/zfsd/head/lib/libc/inet/inet_ntoa.c projects/zfsd/head/lib/libc/inet/inet_ntop.c projects/zfsd/head/lib/libc/inet/inet_pton.c projects/zfsd/head/lib/libc/inet/nsap_addr.c projects/zfsd/head/lib/libc/isc/ev_streams.c projects/zfsd/head/lib/libc/isc/ev_timers.c projects/zfsd/head/lib/libc/isc/eventlib_p.h projects/zfsd/head/lib/libc/locale/utf8.c projects/zfsd/head/lib/libc/mips/arith.h projects/zfsd/head/lib/libc/nameser/Symbol.map projects/zfsd/head/lib/libc/nameser/ns_name.c projects/zfsd/head/lib/libc/nameser/ns_netint.c projects/zfsd/head/lib/libc/nameser/ns_parse.c projects/zfsd/head/lib/libc/nameser/ns_print.c projects/zfsd/head/lib/libc/nameser/ns_samedomain.c projects/zfsd/head/lib/libc/nameser/ns_ttl.c projects/zfsd/head/lib/libc/net/Makefile.inc projects/zfsd/head/lib/libc/net/getaddrinfo.c projects/zfsd/head/lib/libc/net/linkaddr.c projects/zfsd/head/lib/libc/net/nsdispatch.3 projects/zfsd/head/lib/libc/net/sctp_sys_calls.c projects/zfsd/head/lib/libc/net/sourcefilter.3 projects/zfsd/head/lib/libc/net/sourcefilter.c projects/zfsd/head/lib/libc/posix1e/acl_add_flag_np.3 projects/zfsd/head/lib/libc/posix1e/acl_add_perm.3 projects/zfsd/head/lib/libc/posix1e/acl_calc_mask.3 projects/zfsd/head/lib/libc/posix1e/acl_clear_flags_np.3 projects/zfsd/head/lib/libc/posix1e/acl_clear_perms.3 projects/zfsd/head/lib/libc/posix1e/acl_copy_entry.3 projects/zfsd/head/lib/libc/posix1e/acl_create_entry.3 projects/zfsd/head/lib/libc/posix1e/acl_delete_entry.3 projects/zfsd/head/lib/libc/posix1e/acl_delete_flag_np.3 projects/zfsd/head/lib/libc/posix1e/acl_delete_perm.3 projects/zfsd/head/lib/libc/posix1e/acl_get_brand_np.3 projects/zfsd/head/lib/libc/posix1e/acl_get_entry.3 projects/zfsd/head/lib/libc/posix1e/acl_get_entry_type_np.3 projects/zfsd/head/lib/libc/posix1e/acl_get_flag_np.3 projects/zfsd/head/lib/libc/posix1e/acl_get_flagset_np.3 projects/zfsd/head/lib/libc/posix1e/acl_get_perm_np.3 projects/zfsd/head/lib/libc/posix1e/acl_get_permset.3 projects/zfsd/head/lib/libc/posix1e/acl_get_qualifier.3 projects/zfsd/head/lib/libc/posix1e/acl_get_tag_type.3 projects/zfsd/head/lib/libc/posix1e/acl_is_trivial_np.3 projects/zfsd/head/lib/libc/posix1e/acl_set_entry_type_np.3 projects/zfsd/head/lib/libc/posix1e/acl_set_flagset_np.3 projects/zfsd/head/lib/libc/posix1e/acl_set_permset.3 projects/zfsd/head/lib/libc/posix1e/acl_set_qualifier.3 projects/zfsd/head/lib/libc/posix1e/acl_set_tag_type.3 projects/zfsd/head/lib/libc/posix1e/acl_strip_np.3 projects/zfsd/head/lib/libc/regex/re_format.7 projects/zfsd/head/lib/libc/regex/regcomp.c projects/zfsd/head/lib/libc/resolv/Makefile.inc projects/zfsd/head/lib/libc/resolv/Symbol.map projects/zfsd/head/lib/libc/resolv/herror.c projects/zfsd/head/lib/libc/resolv/res_comp.c projects/zfsd/head/lib/libc/resolv/res_data.c projects/zfsd/head/lib/libc/resolv/res_debug.c projects/zfsd/head/lib/libc/resolv/res_findzonecut.c projects/zfsd/head/lib/libc/resolv/res_init.c projects/zfsd/head/lib/libc/resolv/res_mkquery.c projects/zfsd/head/lib/libc/resolv/res_mkupdate.c projects/zfsd/head/lib/libc/resolv/res_query.c projects/zfsd/head/lib/libc/resolv/res_send.c projects/zfsd/head/lib/libc/resolv/res_update.c projects/zfsd/head/lib/libc/stdio/fflush.c projects/zfsd/head/lib/libc/stdio/fmemopen.c projects/zfsd/head/lib/libc/stdio/fopen.3 projects/zfsd/head/lib/libc/stdio/fputs.c projects/zfsd/head/lib/libc/stdio/fputws.c projects/zfsd/head/lib/libc/stdio/freopen.c projects/zfsd/head/lib/libc/stdio/ftell.c projects/zfsd/head/lib/libc/stdio/getline.3 projects/zfsd/head/lib/libc/stdio/gets.c projects/zfsd/head/lib/libc/stdio/printf.3 projects/zfsd/head/lib/libc/stdio/puts.c projects/zfsd/head/lib/libc/stdio/putw.c projects/zfsd/head/lib/libc/stdio/rewind.c projects/zfsd/head/lib/libc/stdio/vfprintf.c projects/zfsd/head/lib/libc/stdio/vfwprintf.c projects/zfsd/head/lib/libc/stdio/wbuf.c projects/zfsd/head/lib/libc/stdlib/Makefile.inc projects/zfsd/head/lib/libc/stdlib/Symbol.map projects/zfsd/head/lib/libc/stdlib/a64l.3 projects/zfsd/head/lib/libc/stdlib/getopt.3 projects/zfsd/head/lib/libc/stdlib/getopt.c projects/zfsd/head/lib/libc/stdlib/getopt_long.c projects/zfsd/head/lib/libc/stdlib/hcreate.3 projects/zfsd/head/lib/libc/stdlib/hcreate.c projects/zfsd/head/lib/libc/stdlib/strfmon.3 projects/zfsd/head/lib/libc/stdlib/strfmon.c projects/zfsd/head/lib/libc/stdlib/strtonum.c projects/zfsd/head/lib/libc/stdlib/tsearch.c projects/zfsd/head/lib/libc/stdlib/twalk.c projects/zfsd/head/lib/libc/stdtime/strftime.3 projects/zfsd/head/lib/libc/stdtime/strftime.c projects/zfsd/head/lib/libc/stdtime/strptime.c projects/zfsd/head/lib/libc/stdtime/timelocal.c projects/zfsd/head/lib/libc/string/Makefile.inc projects/zfsd/head/lib/libc/string/memmem.3 projects/zfsd/head/lib/libc/string/strcasecmp.3 projects/zfsd/head/lib/libc/string/strerror.3 projects/zfsd/head/lib/libc/string/strspn.3 projects/zfsd/head/lib/libc/string/strtok.3 projects/zfsd/head/lib/libc/sys/abort2.2 projects/zfsd/head/lib/libc/sys/aio_cancel.2 projects/zfsd/head/lib/libc/sys/aio_error.2 projects/zfsd/head/lib/libc/sys/aio_mlock.2 projects/zfsd/head/lib/libc/sys/aio_read.2 projects/zfsd/head/lib/libc/sys/aio_return.2 projects/zfsd/head/lib/libc/sys/aio_suspend.2 projects/zfsd/head/lib/libc/sys/aio_waitcomplete.2 projects/zfsd/head/lib/libc/sys/aio_write.2 projects/zfsd/head/lib/libc/sys/bind.2 projects/zfsd/head/lib/libc/sys/bindat.2 projects/zfsd/head/lib/libc/sys/cap_fcntls_limit.2 projects/zfsd/head/lib/libc/sys/cap_ioctls_limit.2 projects/zfsd/head/lib/libc/sys/cap_rights_limit.2 projects/zfsd/head/lib/libc/sys/connect.2 projects/zfsd/head/lib/libc/sys/connectat.2 projects/zfsd/head/lib/libc/sys/cpuset.2 projects/zfsd/head/lib/libc/sys/cpuset_getaffinity.2 projects/zfsd/head/lib/libc/sys/ffclock.2 projects/zfsd/head/lib/libc/sys/intro.2 projects/zfsd/head/lib/libc/sys/kenv.2 projects/zfsd/head/lib/libc/sys/kqueue.2 projects/zfsd/head/lib/libc/sys/kse.2 projects/zfsd/head/lib/libc/sys/listen.2 projects/zfsd/head/lib/libc/sys/mlock.2 projects/zfsd/head/lib/libc/sys/mmap.2 projects/zfsd/head/lib/libc/sys/mmap.c projects/zfsd/head/lib/libc/sys/pdfork.2 projects/zfsd/head/lib/libc/sys/posix_fallocate.2 projects/zfsd/head/lib/libc/sys/posix_openpt.2 projects/zfsd/head/lib/libc/sys/procctl.2 projects/zfsd/head/lib/libc/sys/pselect.2 projects/zfsd/head/lib/libc/sys/rtprio.2 projects/zfsd/head/lib/libc/sys/sendfile.2 projects/zfsd/head/lib/libc/sys/shm_open.2 projects/zfsd/head/lib/libc/sys/shutdown.2 projects/zfsd/head/lib/libc/sys/socket.2 projects/zfsd/head/lib/libc/sys/utimes.2 projects/zfsd/head/lib/libc/xdr/xdr_float.c projects/zfsd/head/lib/libcalendar/calendar.3 projects/zfsd/head/lib/libcam/cam.3 projects/zfsd/head/lib/libcapsicum/libcapsicum.3 projects/zfsd/head/lib/libcrypt/crypt.3 projects/zfsd/head/lib/libcrypt/crypt.c projects/zfsd/head/lib/libcrypt/tests/Makefile projects/zfsd/head/lib/libdevinfo/devinfo.3 projects/zfsd/head/lib/libdevstat/devstat.3 projects/zfsd/head/lib/libedit/Makefile projects/zfsd/head/lib/libedit/common.c projects/zfsd/head/lib/libedit/emacs.c projects/zfsd/head/lib/libedit/filecomplete.h projects/zfsd/head/lib/libedit/histedit.h projects/zfsd/head/lib/libedit/prompt.c projects/zfsd/head/lib/libedit/prompt.h projects/zfsd/head/lib/libedit/read.h projects/zfsd/head/lib/libedit/sys.h projects/zfsd/head/lib/libedit/term.h projects/zfsd/head/lib/libedit/tty.c projects/zfsd/head/lib/libefi/libefi.3 projects/zfsd/head/lib/libexpat/libbsdxml.3 projects/zfsd/head/lib/libfetch/common.c projects/zfsd/head/lib/libfetch/common.h projects/zfsd/head/lib/libfetch/fetch.3 projects/zfsd/head/lib/libfetch/fetch.h projects/zfsd/head/lib/libfetch/http.c projects/zfsd/head/lib/libgeom/libgeom.3 projects/zfsd/head/lib/libgssapi/mech.5 projects/zfsd/head/lib/libiconv_modules/HZ/citrus_hz.c projects/zfsd/head/lib/libkvm/kvm_amd64.c projects/zfsd/head/lib/libkvm/kvm_i386.c projects/zfsd/head/lib/libmagic/Makefile projects/zfsd/head/lib/libmagic/config.h projects/zfsd/head/lib/libmd/mdX.3 projects/zfsd/head/lib/libmemstat/libmemstat.3 projects/zfsd/head/lib/libmp/Makefile projects/zfsd/head/lib/libnetgraph/netgraph.3 projects/zfsd/head/lib/libnv/Makefile projects/zfsd/head/lib/libnv/nv.3 projects/zfsd/head/lib/libopie/Makefile projects/zfsd/head/lib/libpam/modules/pam_group/pam_group.8 projects/zfsd/head/lib/libpam/modules/pam_group/pam_group.c projects/zfsd/head/lib/libpam/modules/pam_lastlog/pam_lastlog.c projects/zfsd/head/lib/libpam/modules/pam_opie/pam_opie.c projects/zfsd/head/lib/libpam/modules/pam_passwdqc/pam_passwdqc.8 projects/zfsd/head/lib/libpam/modules/pam_radius/pam_radius.8 projects/zfsd/head/lib/libpam/modules/pam_ssh/Makefile projects/zfsd/head/lib/libpam/modules/pam_ssh/pam_ssh.8 projects/zfsd/head/lib/libpam/modules/pam_tacplus/pam_tacplus.8 projects/zfsd/head/lib/libpmc/libpmc.c projects/zfsd/head/lib/libpmc/pmc.3 projects/zfsd/head/lib/libpmc/pmc.atom.3 projects/zfsd/head/lib/libpmc/pmc.atomsilvermont.3 projects/zfsd/head/lib/libpmc/pmc.core.3 projects/zfsd/head/lib/libpmc/pmc.core2.3 projects/zfsd/head/lib/libpmc/pmc.corei7.3 projects/zfsd/head/lib/libpmc/pmc.corei7uc.3 projects/zfsd/head/lib/libpmc/pmc.haswell.3 projects/zfsd/head/lib/libpmc/pmc.haswelluc.3 projects/zfsd/head/lib/libpmc/pmc.iaf.3 projects/zfsd/head/lib/libpmc/pmc.ivybridge.3 projects/zfsd/head/lib/libpmc/pmc.ivybridgexeon.3 projects/zfsd/head/lib/libpmc/pmc.k7.3 projects/zfsd/head/lib/libpmc/pmc.k8.3 projects/zfsd/head/lib/libpmc/pmc.mips24k.3 projects/zfsd/head/lib/libpmc/pmc.octeon.3 projects/zfsd/head/lib/libpmc/pmc.p4.3 projects/zfsd/head/lib/libpmc/pmc.p5.3 projects/zfsd/head/lib/libpmc/pmc.p6.3 projects/zfsd/head/lib/libpmc/pmc.sandybridge.3 projects/zfsd/head/lib/libpmc/pmc.sandybridgeuc.3 projects/zfsd/head/lib/libpmc/pmc.sandybridgexeon.3 projects/zfsd/head/lib/libpmc/pmc.soft.3 projects/zfsd/head/lib/libpmc/pmc.tsc.3 projects/zfsd/head/lib/libpmc/pmc.ucf.3 projects/zfsd/head/lib/libpmc/pmc.westmere.3 projects/zfsd/head/lib/libpmc/pmc.westmereuc.3 projects/zfsd/head/lib/libpmc/pmc.xscale.3 projects/zfsd/head/lib/libproc/Makefile projects/zfsd/head/lib/libproc/proc_sym.c projects/zfsd/head/lib/libprocstat/libprocstat.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_get_error.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_get_mech_info.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_get_mechanisms.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_get_principal_name.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_get_versions.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_getcred.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_is_installed.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_max_data_length.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_mech_to_oid.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_oid_to_mech.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_qop_to_num.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_seccreate.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_set_callback.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_set_defaults.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_set_svc_name.3 projects/zfsd/head/lib/librpcsec_gss/rpc_gss_svc_max_data_length.3 projects/zfsd/head/lib/librpcsec_gss/rpcsec_gss.3 projects/zfsd/head/lib/librtld_db/librtld_db.3 projects/zfsd/head/lib/libsdp/sdp.3 projects/zfsd/head/lib/libstand/Makefile projects/zfsd/head/lib/libstand/libstand.3 projects/zfsd/head/lib/libstand/open.c projects/zfsd/head/lib/libstand/printf.c projects/zfsd/head/lib/libstand/qdivrem.c projects/zfsd/head/lib/libstand/quad.h projects/zfsd/head/lib/libstand/stand.h projects/zfsd/head/lib/libstdthreads/thrd_create.3 projects/zfsd/head/lib/libtelnet/Makefile projects/zfsd/head/lib/libthr/libthr.3 projects/zfsd/head/lib/libthr/thread/thr_fork.c projects/zfsd/head/lib/libthr/thread/thr_init.c projects/zfsd/head/lib/libthr/thread/thr_rtld.c projects/zfsd/head/lib/libthr/thread/thr_stack.c projects/zfsd/head/lib/libucl/Makefile projects/zfsd/head/lib/libufs/bread.3 projects/zfsd/head/lib/libufs/cgread.3 projects/zfsd/head/lib/libufs/libufs.3 projects/zfsd/head/lib/libufs/sbread.3 projects/zfsd/head/lib/libufs/ufs_disk_close.3 projects/zfsd/head/lib/libunbound/Makefile projects/zfsd/head/lib/libusb/libusb-1.0.pc projects/zfsd/head/lib/libusb/libusb.h projects/zfsd/head/lib/libutil/Makefile projects/zfsd/head/lib/libutil/flopen.3 projects/zfsd/head/lib/libutil/fparseln.3 projects/zfsd/head/lib/libutil/fparseln.c projects/zfsd/head/lib/libutil/kld.3 projects/zfsd/head/lib/libutil/login_class.3 projects/zfsd/head/lib/libutil/pidfile.3 projects/zfsd/head/lib/libutil/pw_util.3 projects/zfsd/head/lib/libutil/quotafile.3 projects/zfsd/head/lib/libvgl/vgl.3 projects/zfsd/head/lib/libvmmapi/vmmapi.c projects/zfsd/head/lib/libvmmapi/vmmapi.h projects/zfsd/head/lib/libz/Makefile projects/zfsd/head/lib/msun/Makefile projects/zfsd/head/lib/msun/Symbol.map projects/zfsd/head/lib/msun/arm/fenv.c projects/zfsd/head/lib/msun/man/erf.3 projects/zfsd/head/lib/msun/sparc64/fenv.h projects/zfsd/head/lib/msun/src/e_pow.c projects/zfsd/head/lib/msun/src/imprecise.c projects/zfsd/head/lib/msun/src/math.h projects/zfsd/head/lib/msun/src/s_erf.c projects/zfsd/head/lib/msun/src/s_erff.c projects/zfsd/head/lib/ncurses/ncurses/Makefile projects/zfsd/head/libexec/atf/Makefile projects/zfsd/head/libexec/atf/Makefile.inc projects/zfsd/head/libexec/atf/atf-check/Makefile projects/zfsd/head/libexec/bootpd/bootpd.8 projects/zfsd/head/libexec/bootpd/tools/bootptest/bootptest.8 projects/zfsd/head/libexec/getty/main.c projects/zfsd/head/libexec/mknetid/mknetid.8 projects/zfsd/head/libexec/mknetid/netid.5 projects/zfsd/head/libexec/pppoed/pppoed.8 projects/zfsd/head/libexec/revnetgroup/revnetgroup.8 projects/zfsd/head/libexec/rshd/rshd.c projects/zfsd/head/libexec/rtld-elf/Makefile projects/zfsd/head/libexec/rtld-elf/arm/rtld_start.S projects/zfsd/head/libexec/rtld-elf/libmap.c projects/zfsd/head/libexec/rtld-elf/rtld.1 projects/zfsd/head/libexec/rtld-elf/rtld.c projects/zfsd/head/libexec/rtld-elf/rtld_lock.c projects/zfsd/head/libexec/rtld-elf/rtld_printf.c projects/zfsd/head/libexec/rtld-elf/rtld_printf.h projects/zfsd/head/libexec/save-entropy/save-entropy.sh projects/zfsd/head/libexec/telnetd/Makefile projects/zfsd/head/libexec/ypxfr/ypxfr.8 projects/zfsd/head/release/Makefile projects/zfsd/head/release/amd64/mkisoimages.sh projects/zfsd/head/release/arm/BEAGLEBONE.conf projects/zfsd/head/release/arm/PANDABOARD.conf projects/zfsd/head/release/arm/RPI-B.conf projects/zfsd/head/release/arm/WANDBOARD-QUAD.conf projects/zfsd/head/release/arm/ZEDBOARD.conf projects/zfsd/head/release/arm/release.sh projects/zfsd/head/release/doc/README projects/zfsd/head/release/doc/en_US.ISO8859-1/hardware/article.xml projects/zfsd/head/release/doc/en_US.ISO8859-1/readme/article.xml projects/zfsd/head/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/zfsd/head/release/doc/share/examples/Makefile.relnotesng projects/zfsd/head/release/doc/share/misc/dev.archlist.txt projects/zfsd/head/release/doc/share/xml/release.ent projects/zfsd/head/release/doc/share/xml/sponsor.ent projects/zfsd/head/release/picobsd/bridge/crunch.conf projects/zfsd/head/release/picobsd/build/picobsd projects/zfsd/head/release/picobsd/floppy.tree/etc/ttys projects/zfsd/head/release/picobsd/mfs_tree/etc/gettytab projects/zfsd/head/release/picobsd/qemu/crunch.conf projects/zfsd/head/release/release.conf.sample projects/zfsd/head/release/release.sh projects/zfsd/head/release/scripts/FreeBSD_install_cdrom.conf projects/zfsd/head/release/scripts/mm-mtree.sh projects/zfsd/head/release/scripts/pkg-stage.sh projects/zfsd/head/rescue/rescue/Makefile projects/zfsd/head/sbin/adjkerntz/adjkerntz.8 projects/zfsd/head/sbin/atm/atmconfig/Makefile projects/zfsd/head/sbin/atm/atmconfig/atmconfig.8 projects/zfsd/head/sbin/atm/atmconfig/main.c projects/zfsd/head/sbin/bsdlabel/bsdlabel.8 projects/zfsd/head/sbin/bsdlabel/bsdlabel.c projects/zfsd/head/sbin/camcontrol/Makefile projects/zfsd/head/sbin/camcontrol/camcontrol.8 projects/zfsd/head/sbin/camcontrol/camcontrol.c projects/zfsd/head/sbin/camcontrol/camcontrol.h projects/zfsd/head/sbin/casperd/casperd.8 projects/zfsd/head/sbin/devd/Makefile projects/zfsd/head/sbin/devd/devd.8 projects/zfsd/head/sbin/dhclient/bpf.c projects/zfsd/head/sbin/dhclient/dhclient-script.8 projects/zfsd/head/sbin/dhclient/dhclient.8 projects/zfsd/head/sbin/dhclient/dhclient.c projects/zfsd/head/sbin/dhclient/dhclient.conf.5 projects/zfsd/head/sbin/dhclient/dhclient.leases.5 projects/zfsd/head/sbin/dhclient/dhcp-options.5 projects/zfsd/head/sbin/dhclient/tests/Makefile projects/zfsd/head/sbin/etherswitchcfg/etherswitchcfg.c projects/zfsd/head/sbin/fdisk/fdisk.c projects/zfsd/head/sbin/ffsinfo/ffsinfo.8 projects/zfsd/head/sbin/fsck/fsck.8 projects/zfsd/head/sbin/fsck_msdosfs/check.c projects/zfsd/head/sbin/fsck_msdosfs/dir.c projects/zfsd/head/sbin/fsck_msdosfs/ext.h projects/zfsd/head/sbin/fsck_msdosfs/fat.c projects/zfsd/head/sbin/fsdb/Makefile projects/zfsd/head/sbin/fsirand/fsirand.8 projects/zfsd/head/sbin/gbde/gbde.8 projects/zfsd/head/sbin/geom/class/cache/gcache.8 projects/zfsd/head/sbin/geom/class/concat/gconcat.8 projects/zfsd/head/sbin/geom/class/eli/geli.8 projects/zfsd/head/sbin/geom/class/journal/gjournal.8 projects/zfsd/head/sbin/geom/class/label/glabel.8 projects/zfsd/head/sbin/geom/class/mirror/gmirror.8 projects/zfsd/head/sbin/geom/class/mountver/gmountver.8 projects/zfsd/head/sbin/geom/class/multipath/gmultipath.8 projects/zfsd/head/sbin/geom/class/nop/gnop.8 projects/zfsd/head/sbin/geom/class/part/gpart.8 projects/zfsd/head/sbin/geom/class/raid/graid.8 projects/zfsd/head/sbin/geom/class/raid3/graid3.8 projects/zfsd/head/sbin/geom/class/sched/gsched.8 projects/zfsd/head/sbin/geom/class/shsec/gshsec.8 projects/zfsd/head/sbin/geom/class/stripe/geom_stripe.c projects/zfsd/head/sbin/geom/class/stripe/gstripe.8 projects/zfsd/head/sbin/geom/class/virstor/gvirstor.8 projects/zfsd/head/sbin/geom/core/geom.8 projects/zfsd/head/sbin/ggate/ggatec/ggatec.8 projects/zfsd/head/sbin/ggate/ggated/ggated.8 projects/zfsd/head/sbin/ggate/ggatel/ggatel.8 projects/zfsd/head/sbin/growfs/growfs.8 projects/zfsd/head/sbin/gvinum/Makefile projects/zfsd/head/sbin/gvinum/gvinum.8 projects/zfsd/head/sbin/hastctl/hastctl.8 projects/zfsd/head/sbin/hastd/Makefile projects/zfsd/head/sbin/hastd/hast.conf.5 projects/zfsd/head/sbin/hastd/hastd.8 projects/zfsd/head/sbin/ifconfig/Makefile projects/zfsd/head/sbin/ifconfig/af_inet6.c projects/zfsd/head/sbin/ifconfig/ifconfig.8 projects/zfsd/head/sbin/ifconfig/ifconfig.c projects/zfsd/head/sbin/ifconfig/ifconfig.h projects/zfsd/head/sbin/init/init.c projects/zfsd/head/sbin/ipf/Makefile.inc projects/zfsd/head/sbin/ipfw/dummynet.c projects/zfsd/head/sbin/ipfw/ipfw.8 projects/zfsd/head/sbin/ipfw/ipfw2.h projects/zfsd/head/sbin/kldconfig/kldconfig.8 projects/zfsd/head/sbin/kldload/kldload.8 projects/zfsd/head/sbin/kldstat/kldstat.8 projects/zfsd/head/sbin/kldunload/kldunload.8 projects/zfsd/head/sbin/md5/md5.1 projects/zfsd/head/sbin/mdconfig/mdconfig.8 projects/zfsd/head/sbin/mksnap_ffs/Makefile projects/zfsd/head/sbin/mount/mntopts.h projects/zfsd/head/sbin/mount/mount.8 projects/zfsd/head/sbin/mount/mount.c projects/zfsd/head/sbin/mount/mount.conf.8 projects/zfsd/head/sbin/mount_cd9660/mount_cd9660.8 projects/zfsd/head/sbin/mount_fusefs/mount_fusefs.8 projects/zfsd/head/sbin/mount_msdosfs/mount_msdosfs.8 projects/zfsd/head/sbin/mount_nfs/mount_nfs.8 projects/zfsd/head/sbin/mount_nfs/mount_nfs.c projects/zfsd/head/sbin/mount_unionfs/mount_unionfs.8 projects/zfsd/head/sbin/natd/natd.8 projects/zfsd/head/sbin/newfs_msdos/newfs_msdos.8 projects/zfsd/head/sbin/newfs_msdos/newfs_msdos.c projects/zfsd/head/sbin/newfs_nandfs/newfs_nandfs.8 projects/zfsd/head/sbin/nos-tun/nos-tun.8 projects/zfsd/head/sbin/nvmecontrol/nvmecontrol.8 projects/zfsd/head/sbin/pfctl/pfctl.8 projects/zfsd/head/sbin/ping6/ping6.c projects/zfsd/head/sbin/rcorder/rcorder.8 projects/zfsd/head/sbin/reboot/boot_i386.8 projects/zfsd/head/sbin/reboot/nextboot.8 projects/zfsd/head/sbin/recoverdisk/recoverdisk.1 projects/zfsd/head/sbin/restore/tape.c projects/zfsd/head/sbin/sconfig/sconfig.8 projects/zfsd/head/sbin/setkey/setkey.8 projects/zfsd/head/sbin/shutdown/Makefile projects/zfsd/head/sbin/sysctl/sysctl.c projects/zfsd/head/sbin/umount/umount.c projects/zfsd/head/secure/lib/libcrypto/Makefile.inc projects/zfsd/head/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 projects/zfsd/head/secure/lib/libcrypto/man/ASN1_STRING_length.3 projects/zfsd/head/secure/lib/libcrypto/man/ASN1_STRING_new.3 projects/zfsd/head/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 projects/zfsd/head/secure/lib/libcrypto/man/ASN1_generate_nconf.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_ctrl.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_f_base64.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_f_buffer.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_f_cipher.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_f_md.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_f_null.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_f_ssl.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_find_type.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_new.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_push.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_read.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_accept.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_bio.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_connect.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_fd.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_file.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_mem.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_null.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_s_socket.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_set_callback.3 projects/zfsd/head/secure/lib/libcrypto/man/BIO_should_retry.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_BLINDING_new.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_CTX_new.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_CTX_start.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_add.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_add_word.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_bn2bin.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_cmp.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_copy.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_generate_prime.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_mod_inverse.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_new.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_num_bytes.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_rand.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_set_bit.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_swap.3 projects/zfsd/head/secure/lib/libcrypto/man/BN_zero.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_compress.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_decrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_encrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_final.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_get0_type.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_sign.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_sign_add1_signer.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_uncompress.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_verify.3 projects/zfsd/head/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/zfsd/head/secure/lib/libcrypto/man/CONF_modules_free.3 projects/zfsd/head/secure/lib/libcrypto/man/CONF_modules_load_file.3 projects/zfsd/head/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 projects/zfsd/head/secure/lib/libcrypto/man/DH_generate_key.3 projects/zfsd/head/secure/lib/libcrypto/man/DH_generate_parameters.3 projects/zfsd/head/secure/lib/libcrypto/man/DH_get_ex_new_index.3 projects/zfsd/head/secure/lib/libcrypto/man/DH_new.3 projects/zfsd/head/secure/lib/libcrypto/man/DH_set_method.3 projects/zfsd/head/secure/lib/libcrypto/man/DH_size.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_SIG_new.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_do_sign.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_dup_DH.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_generate_key.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_generate_parameters.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_new.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_set_method.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_sign.3 projects/zfsd/head/secure/lib/libcrypto/man/DSA_size.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_GET_LIB.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_clear_error.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_error_string.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_get_error.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_load_strings.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_print_errors.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_put_error.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_remove_state.3 projects/zfsd/head/secure/lib/libcrypto/man/ERR_set_mark.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_BytesToKey.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_DigestInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_EncryptInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_OpenInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_new.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_SealInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_SignInit.3 projects/zfsd/head/secure/lib/libcrypto/man/EVP_VerifyInit.3 projects/zfsd/head/secure/lib/libcrypto/man/OBJ_nid2obj.3 projects/zfsd/head/secure/lib/libcrypto/man/OPENSSL_Applink.3 projects/zfsd/head/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 projects/zfsd/head/secure/lib/libcrypto/man/OPENSSL_config.3 projects/zfsd/head/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 projects/zfsd/head/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 projects/zfsd/head/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 projects/zfsd/head/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/zfsd/head/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS12_create.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS12_parse.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS7_decrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS7_encrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS7_sign.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/zfsd/head/secure/lib/libcrypto/man/PKCS7_verify.3 projects/zfsd/head/secure/lib/libcrypto/man/RAND_add.3 projects/zfsd/head/secure/lib/libcrypto/man/RAND_bytes.3 projects/zfsd/head/secure/lib/libcrypto/man/RAND_cleanup.3 projects/zfsd/head/secure/lib/libcrypto/man/RAND_egd.3 projects/zfsd/head/secure/lib/libcrypto/man/RAND_load_file.3 projects/zfsd/head/secure/lib/libcrypto/man/RAND_set_rand_method.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_blinding_on.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_check_key.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_generate_key.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_new.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_print.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_private_encrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_public_encrypt.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_set_method.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_sign.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 projects/zfsd/head/secure/lib/libcrypto/man/RSA_size.3 projects/zfsd/head/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/zfsd/head/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 projects/zfsd/head/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/zfsd/head/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_NAME_print_ex.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_new.3 projects/zfsd/head/secure/lib/libcrypto/man/X509_verify_cert.3 projects/zfsd/head/secure/lib/libcrypto/man/bio.3 projects/zfsd/head/secure/lib/libcrypto/man/blowfish.3 projects/zfsd/head/secure/lib/libcrypto/man/bn.3 projects/zfsd/head/secure/lib/libcrypto/man/bn_internal.3 projects/zfsd/head/secure/lib/libcrypto/man/buffer.3 projects/zfsd/head/secure/lib/libcrypto/man/crypto.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_DHparams.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_X509.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_X509_CRL.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_X509_NAME.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_X509_REQ.3 projects/zfsd/head/secure/lib/libcrypto/man/d2i_X509_SIG.3 projects/zfsd/head/secure/lib/libcrypto/man/des.3 projects/zfsd/head/secure/lib/libcrypto/man/dh.3 projects/zfsd/head/secure/lib/libcrypto/man/dsa.3 projects/zfsd/head/secure/lib/libcrypto/man/ecdsa.3 projects/zfsd/head/secure/lib/libcrypto/man/engine.3 projects/zfsd/head/secure/lib/libcrypto/man/err.3 projects/zfsd/head/secure/lib/libcrypto/man/evp.3 projects/zfsd/head/secure/lib/libcrypto/man/hmac.3 projects/zfsd/head/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/zfsd/head/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/zfsd/head/secure/lib/libcrypto/man/lh_stats.3 projects/zfsd/head/secure/lib/libcrypto/man/lhash.3 projects/zfsd/head/secure/lib/libcrypto/man/md5.3 projects/zfsd/head/secure/lib/libcrypto/man/mdc2.3 projects/zfsd/head/secure/lib/libcrypto/man/pem.3 projects/zfsd/head/secure/lib/libcrypto/man/rand.3 projects/zfsd/head/secure/lib/libcrypto/man/rc4.3 projects/zfsd/head/secure/lib/libcrypto/man/ripemd.3 projects/zfsd/head/secure/lib/libcrypto/man/rsa.3 projects/zfsd/head/secure/lib/libcrypto/man/sha.3 projects/zfsd/head/secure/lib/libcrypto/man/threads.3 projects/zfsd/head/secure/lib/libcrypto/man/ui.3 projects/zfsd/head/secure/lib/libcrypto/man/ui_compat.3 projects/zfsd/head/secure/lib/libcrypto/man/x509.3 projects/zfsd/head/secure/lib/libssh/Makefile projects/zfsd/head/secure/lib/libssl/Makefile.man projects/zfsd/head/secure/lib/libssl/man/SSL_CIPHER_get_name.3 projects/zfsd/head/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_add_session.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_ctrl.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_free.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_new.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_sess_number.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_sessions.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_mode.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_options.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_timeout.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_set_verify.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_use_certificate.3 projects/zfsd/head/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 projects/zfsd/head/secure/lib/libssl/man/SSL_SESSION_free.3 projects/zfsd/head/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 projects/zfsd/head/secure/lib/libssl/man/SSL_SESSION_get_time.3 projects/zfsd/head/secure/lib/libssl/man/SSL_accept.3 projects/zfsd/head/secure/lib/libssl/man/SSL_alert_type_string.3 projects/zfsd/head/secure/lib/libssl/man/SSL_clear.3 projects/zfsd/head/secure/lib/libssl/man/SSL_connect.3 projects/zfsd/head/secure/lib/libssl/man/SSL_do_handshake.3 projects/zfsd/head/secure/lib/libssl/man/SSL_free.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_SSL_CTX.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_ciphers.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_client_CA_list.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_current_cipher.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_default_timeout.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_error.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_ex_new_index.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_fd.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_peer_certificate.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_psk_identity.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_rbio.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_session.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_verify_result.3 projects/zfsd/head/secure/lib/libssl/man/SSL_get_version.3 projects/zfsd/head/secure/lib/libssl/man/SSL_library_init.3 projects/zfsd/head/secure/lib/libssl/man/SSL_load_client_CA_file.3 projects/zfsd/head/secure/lib/libssl/man/SSL_new.3 projects/zfsd/head/secure/lib/libssl/man/SSL_pending.3 projects/zfsd/head/secure/lib/libssl/man/SSL_read.3 projects/zfsd/head/secure/lib/libssl/man/SSL_rstate_string.3 projects/zfsd/head/secure/lib/libssl/man/SSL_session_reused.3 projects/zfsd/head/secure/lib/libssl/man/SSL_set_bio.3 projects/zfsd/head/secure/lib/libssl/man/SSL_set_connect_state.3 projects/zfsd/head/secure/lib/libssl/man/SSL_set_fd.3 projects/zfsd/head/secure/lib/libssl/man/SSL_set_session.3 projects/zfsd/head/secure/lib/libssl/man/SSL_set_shutdown.3 projects/zfsd/head/secure/lib/libssl/man/SSL_set_verify_result.3 projects/zfsd/head/secure/lib/libssl/man/SSL_shutdown.3 projects/zfsd/head/secure/lib/libssl/man/SSL_state_string.3 projects/zfsd/head/secure/lib/libssl/man/SSL_want.3 projects/zfsd/head/secure/lib/libssl/man/SSL_write.3 projects/zfsd/head/secure/lib/libssl/man/d2i_SSL_SESSION.3 projects/zfsd/head/secure/lib/libssl/man/ssl.3 projects/zfsd/head/secure/libexec/sftp-server/Makefile projects/zfsd/head/secure/libexec/ssh-keysign/Makefile projects/zfsd/head/secure/libexec/ssh-pkcs11-helper/Makefile projects/zfsd/head/secure/usr.bin/openssl/man/CA.pl.1 projects/zfsd/head/secure/usr.bin/openssl/man/asn1parse.1 projects/zfsd/head/secure/usr.bin/openssl/man/ca.1 projects/zfsd/head/secure/usr.bin/openssl/man/ciphers.1 projects/zfsd/head/secure/usr.bin/openssl/man/cms.1 projects/zfsd/head/secure/usr.bin/openssl/man/crl.1 projects/zfsd/head/secure/usr.bin/openssl/man/crl2pkcs7.1 projects/zfsd/head/secure/usr.bin/openssl/man/dgst.1 projects/zfsd/head/secure/usr.bin/openssl/man/dhparam.1 projects/zfsd/head/secure/usr.bin/openssl/man/dsa.1 projects/zfsd/head/secure/usr.bin/openssl/man/dsaparam.1 projects/zfsd/head/secure/usr.bin/openssl/man/ec.1 projects/zfsd/head/secure/usr.bin/openssl/man/ecparam.1 projects/zfsd/head/secure/usr.bin/openssl/man/enc.1 projects/zfsd/head/secure/usr.bin/openssl/man/errstr.1 projects/zfsd/head/secure/usr.bin/openssl/man/gendsa.1 projects/zfsd/head/secure/usr.bin/openssl/man/genpkey.1 projects/zfsd/head/secure/usr.bin/openssl/man/genrsa.1 projects/zfsd/head/secure/usr.bin/openssl/man/nseq.1 projects/zfsd/head/secure/usr.bin/openssl/man/ocsp.1 projects/zfsd/head/secure/usr.bin/openssl/man/openssl.1 projects/zfsd/head/secure/usr.bin/openssl/man/passwd.1 projects/zfsd/head/secure/usr.bin/openssl/man/pkcs12.1 projects/zfsd/head/secure/usr.bin/openssl/man/pkcs7.1 projects/zfsd/head/secure/usr.bin/openssl/man/pkcs8.1 projects/zfsd/head/secure/usr.bin/openssl/man/pkey.1 projects/zfsd/head/secure/usr.bin/openssl/man/pkeyparam.1 projects/zfsd/head/secure/usr.bin/openssl/man/pkeyutl.1 projects/zfsd/head/secure/usr.bin/openssl/man/rand.1 projects/zfsd/head/secure/usr.bin/openssl/man/req.1 projects/zfsd/head/secure/usr.bin/openssl/man/rsa.1 projects/zfsd/head/secure/usr.bin/openssl/man/rsautl.1 projects/zfsd/head/secure/usr.bin/openssl/man/s_client.1 projects/zfsd/head/secure/usr.bin/openssl/man/s_server.1 projects/zfsd/head/secure/usr.bin/openssl/man/s_time.1 projects/zfsd/head/secure/usr.bin/openssl/man/sess_id.1 projects/zfsd/head/secure/usr.bin/openssl/man/smime.1 projects/zfsd/head/secure/usr.bin/openssl/man/speed.1 projects/zfsd/head/secure/usr.bin/openssl/man/spkac.1 projects/zfsd/head/secure/usr.bin/openssl/man/ts.1 projects/zfsd/head/secure/usr.bin/openssl/man/tsget.1 projects/zfsd/head/secure/usr.bin/openssl/man/verify.1 projects/zfsd/head/secure/usr.bin/openssl/man/version.1 projects/zfsd/head/secure/usr.bin/openssl/man/x509.1 projects/zfsd/head/secure/usr.bin/openssl/man/x509v3_config.1 projects/zfsd/head/secure/usr.bin/scp/Makefile projects/zfsd/head/secure/usr.bin/sftp/Makefile projects/zfsd/head/secure/usr.bin/ssh-add/Makefile projects/zfsd/head/secure/usr.bin/ssh-agent/Makefile projects/zfsd/head/secure/usr.bin/ssh-keygen/Makefile projects/zfsd/head/secure/usr.bin/ssh-keyscan/Makefile projects/zfsd/head/secure/usr.bin/ssh/Makefile projects/zfsd/head/secure/usr.sbin/sshd/Makefile projects/zfsd/head/share/Makefile projects/zfsd/head/share/dict/freebsd projects/zfsd/head/share/dtrace/Makefile projects/zfsd/head/share/dtrace/README projects/zfsd/head/share/dtrace/hotopen projects/zfsd/head/share/dtrace/nfsattrstats projects/zfsd/head/share/dtrace/nfsclienttime projects/zfsd/head/share/dtrace/toolkit/Makefile projects/zfsd/head/share/examples/Makefile projects/zfsd/head/share/examples/bhyve/vmrun.sh projects/zfsd/head/share/examples/etc/make.conf projects/zfsd/head/share/examples/hwpmc/README projects/zfsd/head/share/examples/mdoc/example.1 projects/zfsd/head/share/examples/mdoc/example.3 projects/zfsd/head/share/examples/mdoc/example.4 projects/zfsd/head/share/examples/mdoc/example.9 projects/zfsd/head/share/examples/scsi_target/scsi_target.8 projects/zfsd/head/share/man/man1/builtin.1 projects/zfsd/head/share/man/man3/ATOMIC_VAR_INIT.3 projects/zfsd/head/share/man/man3/Makefile projects/zfsd/head/share/man/man3/offsetof.3 projects/zfsd/head/share/man/man3/pthread.3 projects/zfsd/head/share/man/man3/pthread_affinity_np.3 projects/zfsd/head/share/man/man3/pthread_atfork.3 projects/zfsd/head/share/man/man3/pthread_attr_affinity_np.3 projects/zfsd/head/share/man/man3/pthread_attr_get_np.3 projects/zfsd/head/share/man/man3/pthread_attr_setcreatesuspend_np.3 projects/zfsd/head/share/man/man3/pthread_cancel.3 projects/zfsd/head/share/man/man3/pthread_getcpuclockid.3 projects/zfsd/head/share/man/man3/pthread_getthreadid_np.3 projects/zfsd/head/share/man/man3/pthread_main_np.3 projects/zfsd/head/share/man/man3/pthread_multi_np.3 projects/zfsd/head/share/man/man3/pthread_resume_all_np.3 projects/zfsd/head/share/man/man3/pthread_resume_np.3 projects/zfsd/head/share/man/man3/pthread_set_name_np.3 projects/zfsd/head/share/man/man3/pthread_suspend_all_np.3 projects/zfsd/head/share/man/man3/pthread_suspend_np.3 projects/zfsd/head/share/man/man3/pthread_switch_add_np.3 projects/zfsd/head/share/man/man3/pthread_testcancel.3 projects/zfsd/head/share/man/man3/siginfo.3 projects/zfsd/head/share/man/man4/Makefile projects/zfsd/head/share/man/man4/aac.4 projects/zfsd/head/share/man/man4/aacraid.4 projects/zfsd/head/share/man/man4/acpi.4 projects/zfsd/head/share/man/man4/acpi_asus.4 projects/zfsd/head/share/man/man4/acpi_asus_wmi.4 projects/zfsd/head/share/man/man4/acpi_dock.4 projects/zfsd/head/share/man/man4/acpi_fujitsu.4 projects/zfsd/head/share/man/man4/acpi_hp.4 projects/zfsd/head/share/man/man4/acpi_ibm.4 projects/zfsd/head/share/man/man4/acpi_panasonic.4 projects/zfsd/head/share/man/man4/acpi_rapidstart.4 projects/zfsd/head/share/man/man4/acpi_sony.4 projects/zfsd/head/share/man/man4/acpi_toshiba.4 projects/zfsd/head/share/man/man4/acpi_video.4 projects/zfsd/head/share/man/man4/acpi_wmi.4 projects/zfsd/head/share/man/man4/ada.4 projects/zfsd/head/share/man/man4/ae.4 projects/zfsd/head/share/man/man4/aesni.4 projects/zfsd/head/share/man/man4/age.4 projects/zfsd/head/share/man/man4/ahci.4 projects/zfsd/head/share/man/man4/aibs.4 projects/zfsd/head/share/man/man4/alc.4 projects/zfsd/head/share/man/man4/ale.4 projects/zfsd/head/share/man/man4/alpm.4 projects/zfsd/head/share/man/man4/altera_atse.4 projects/zfsd/head/share/man/man4/amdpm.4 projects/zfsd/head/share/man/man4/amdsbwd.4 projects/zfsd/head/share/man/man4/amdsmb.4 projects/zfsd/head/share/man/man4/amdtemp.4 projects/zfsd/head/share/man/man4/amr.4 projects/zfsd/head/share/man/man4/an.4 projects/zfsd/head/share/man/man4/aout.4 projects/zfsd/head/share/man/man4/arcmsr.4 projects/zfsd/head/share/man/man4/asmc.4 projects/zfsd/head/share/man/man4/asr.4 projects/zfsd/head/share/man/man4/ata.4 projects/zfsd/head/share/man/man4/atkbd.4 projects/zfsd/head/share/man/man4/atkbdc.4 projects/zfsd/head/share/man/man4/atp.4 projects/zfsd/head/share/man/man4/attimer.4 projects/zfsd/head/share/man/man4/audit.4 projects/zfsd/head/share/man/man4/auditpipe.4 projects/zfsd/head/share/man/man4/aue.4 projects/zfsd/head/share/man/man4/axe.4 projects/zfsd/head/share/man/man4/axge.4 projects/zfsd/head/share/man/man4/bce.4 projects/zfsd/head/share/man/man4/bge.4 projects/zfsd/head/share/man/man4/bhyve.4 (contents, props changed) projects/zfsd/head/share/man/man4/bktr.4 projects/zfsd/head/share/man/man4/bridge.4 projects/zfsd/head/share/man/man4/bwn.4 projects/zfsd/head/share/man/man4/bxe.4 projects/zfsd/head/share/man/man4/capsicum.4 projects/zfsd/head/share/man/man4/carp.4 projects/zfsd/head/share/man/man4/cas.4 projects/zfsd/head/share/man/man4/cc_cdg.4 projects/zfsd/head/share/man/man4/cc_chd.4 projects/zfsd/head/share/man/man4/cc_cubic.4 projects/zfsd/head/share/man/man4/cc_hd.4 projects/zfsd/head/share/man/man4/cc_htcp.4 projects/zfsd/head/share/man/man4/cc_newreno.4 projects/zfsd/head/share/man/man4/cc_vegas.4 projects/zfsd/head/share/man/man4/cdce.4 projects/zfsd/head/share/man/man4/ch.4 projects/zfsd/head/share/man/man4/ciss.4 projects/zfsd/head/share/man/man4/cm.4 projects/zfsd/head/share/man/man4/cmx.4 projects/zfsd/head/share/man/man4/coretemp.4 projects/zfsd/head/share/man/man4/cpuctl.4 projects/zfsd/head/share/man/man4/ctl.4 projects/zfsd/head/share/man/man4/cue.4 projects/zfsd/head/share/man/man4/cxgb.4 projects/zfsd/head/share/man/man4/cxgbe.4 projects/zfsd/head/share/man/man4/dc.4 projects/zfsd/head/share/man/man4/dcons.4 projects/zfsd/head/share/man/man4/dcons_crom.4 projects/zfsd/head/share/man/man4/ddb.4 projects/zfsd/head/share/man/man4/divert.4 projects/zfsd/head/share/man/man4/dummynet.4 projects/zfsd/head/share/man/man4/em.4 projects/zfsd/head/share/man/man4/esp.4 projects/zfsd/head/share/man/man4/est.4 projects/zfsd/head/share/man/man4/et.4 projects/zfsd/head/share/man/man4/fatm.4 projects/zfsd/head/share/man/man4/ffclock.4 projects/zfsd/head/share/man/man4/full.4 projects/zfsd/head/share/man/man4/gbde.4 projects/zfsd/head/share/man/man4/gdb.4 projects/zfsd/head/share/man/man4/gem.4 projects/zfsd/head/share/man/man4/geom.4 projects/zfsd/head/share/man/man4/geom_fox.4 projects/zfsd/head/share/man/man4/geom_linux_lvm.4 projects/zfsd/head/share/man/man4/geom_map.4 projects/zfsd/head/share/man/man4/geom_uncompress.4 projects/zfsd/head/share/man/man4/geom_uzip.4 projects/zfsd/head/share/man/man4/gpio.4 projects/zfsd/head/share/man/man4/gre.4 projects/zfsd/head/share/man/man4/h_ertt.4 projects/zfsd/head/share/man/man4/hatm.4 projects/zfsd/head/share/man/man4/hme.4 projects/zfsd/head/share/man/man4/hpt27xx.4 projects/zfsd/head/share/man/man4/hptiop.4 projects/zfsd/head/share/man/man4/hptnr.4 projects/zfsd/head/share/man/man4/hv_ata_pci_disengage.4 projects/zfsd/head/share/man/man4/hv_kvp.4 projects/zfsd/head/share/man/man4/hv_netvsc.4 projects/zfsd/head/share/man/man4/hv_storvsc.4 projects/zfsd/head/share/man/man4/hv_utils.4 projects/zfsd/head/share/man/man4/hv_vmbus.4 projects/zfsd/head/share/man/man4/hwpmc.4 projects/zfsd/head/share/man/man4/ichsmb.4 projects/zfsd/head/share/man/man4/ichwd.4 projects/zfsd/head/share/man/man4/ida.4 projects/zfsd/head/share/man/man4/igb.4 projects/zfsd/head/share/man/man4/iic.4 projects/zfsd/head/share/man/man4/iicbus.4 projects/zfsd/head/share/man/man4/iir.4 projects/zfsd/head/share/man/man4/inet.4 projects/zfsd/head/share/man/man4/intpm.4 projects/zfsd/head/share/man/man4/ipmi.4 projects/zfsd/head/share/man/man4/ips.4 projects/zfsd/head/share/man/man4/ipw.4 projects/zfsd/head/share/man/man4/isci.4 projects/zfsd/head/share/man/man4/iwi.4 projects/zfsd/head/share/man/man4/iwn.4 projects/zfsd/head/share/man/man4/iwnfw.4 projects/zfsd/head/share/man/man4/ixgb.4 projects/zfsd/head/share/man/man4/ixgbe.4 projects/zfsd/head/share/man/man4/jme.4 projects/zfsd/head/share/man/man4/joy.4 projects/zfsd/head/share/man/man4/kbdmux.4 projects/zfsd/head/share/man/man4/keyboard.4 projects/zfsd/head/share/man/man4/kld.4 projects/zfsd/head/share/man/man4/ksyms.4 projects/zfsd/head/share/man/man4/kue.4 projects/zfsd/head/share/man/man4/lagg.4 projects/zfsd/head/share/man/man4/le.4 projects/zfsd/head/share/man/man4/led.4 projects/zfsd/head/share/man/man4/lge.4 projects/zfsd/head/share/man/man4/lm75.4 projects/zfsd/head/share/man/man4/lmc.4 projects/zfsd/head/share/man/man4/mac_bsdextended.4 projects/zfsd/head/share/man/man4/man4.arm/ti_adc.4 projects/zfsd/head/share/man/man4/man4.i386/CPU_ELAN.4 projects/zfsd/head/share/man/man4/man4.i386/ct.4 projects/zfsd/head/share/man/man4/man4.i386/fe.4 projects/zfsd/head/share/man/man4/man4.i386/glxiic.4 projects/zfsd/head/share/man/man4/man4.i386/glxsb.4 projects/zfsd/head/share/man/man4/man4.i386/longrun.4 projects/zfsd/head/share/man/man4/man4.i386/pae.4 projects/zfsd/head/share/man/man4/man4.i386/pbio.4 projects/zfsd/head/share/man/man4/man4.i386/smapi.4 projects/zfsd/head/share/man/man4/man4.i386/snc.4 projects/zfsd/head/share/man/man4/man4.i386/vpd.4 projects/zfsd/head/share/man/man4/man4.i386/vx.4 projects/zfsd/head/share/man/man4/man4.powerpc/adb.4 projects/zfsd/head/share/man/man4/man4.powerpc/akbd.4 projects/zfsd/head/share/man/man4/man4.powerpc/ams.4 projects/zfsd/head/share/man/man4/man4.powerpc/bm.4 projects/zfsd/head/share/man/man4/man4.powerpc/cuda.4 projects/zfsd/head/share/man/man4/man4.powerpc/pmu.4 projects/zfsd/head/share/man/man4/man4.powerpc/powermac_nvram.4 projects/zfsd/head/share/man/man4/man4.powerpc/smu.4 projects/zfsd/head/share/man/man4/man4.powerpc/snd_ai2s.4 projects/zfsd/head/share/man/man4/man4.powerpc/snd_davbus.4 projects/zfsd/head/share/man/man4/man4.sparc64/auxio.4 projects/zfsd/head/share/man/man4/man4.sparc64/central.4 projects/zfsd/head/share/man/man4/man4.sparc64/clkbrd.4 projects/zfsd/head/share/man/man4/man4.sparc64/creator.4 projects/zfsd/head/share/man/man4/man4.sparc64/ebus.4 projects/zfsd/head/share/man/man4/man4.sparc64/eeprom.4 projects/zfsd/head/share/man/man4/man4.sparc64/fhc.4 projects/zfsd/head/share/man/man4/man4.sparc64/machfb.4 projects/zfsd/head/share/man/man4/man4.sparc64/ofw_console.4 projects/zfsd/head/share/man/man4/man4.sparc64/openfirm.4 projects/zfsd/head/share/man/man4/man4.sparc64/openprom.4 projects/zfsd/head/share/man/man4/man4.sparc64/rtc.4 projects/zfsd/head/share/man/man4/man4.sparc64/sbus.4 projects/zfsd/head/share/man/man4/man4.sparc64/snd_audiocs.4 projects/zfsd/head/share/man/man4/md.4 projects/zfsd/head/share/man/man4/meteor.4 projects/zfsd/head/share/man/man4/mfi.4 projects/zfsd/head/share/man/man4/miibus.4 projects/zfsd/head/share/man/man4/mk48txx.4 projects/zfsd/head/share/man/man4/mlx.4 projects/zfsd/head/share/man/man4/mly.4 projects/zfsd/head/share/man/man4/mn.4 projects/zfsd/head/share/man/man4/mod_cc.4 projects/zfsd/head/share/man/man4/mouse.4 projects/zfsd/head/share/man/man4/mpr.4 projects/zfsd/head/share/man/man4/mps.4 projects/zfsd/head/share/man/man4/mpt.4 projects/zfsd/head/share/man/man4/mrsas.4 projects/zfsd/head/share/man/man4/msk.4 projects/zfsd/head/share/man/man4/mvs.4 projects/zfsd/head/share/man/man4/mxge.4 projects/zfsd/head/share/man/man4/my.4 projects/zfsd/head/share/man/man4/nand.4 projects/zfsd/head/share/man/man4/nandsim.4 projects/zfsd/head/share/man/man4/ncv.4 projects/zfsd/head/share/man/man4/ndis.4 projects/zfsd/head/share/man/man4/netgraph.4 projects/zfsd/head/share/man/man4/netmap.4 projects/zfsd/head/share/man/man4/nfe.4 projects/zfsd/head/share/man/man4/nfsmb.4 projects/zfsd/head/share/man/man4/ng_UI.4 projects/zfsd/head/share/man/man4/ng_async.4 projects/zfsd/head/share/man/man4/ng_atm.4 projects/zfsd/head/share/man/man4/ng_atmllc.4 projects/zfsd/head/share/man/man4/ng_bluetooth.4 projects/zfsd/head/share/man/man4/ng_bpf.4 projects/zfsd/head/share/man/man4/ng_bridge.4 projects/zfsd/head/share/man/man4/ng_bt3c.4 projects/zfsd/head/share/man/man4/ng_btsocket.4 projects/zfsd/head/share/man/man4/ng_car.4 projects/zfsd/head/share/man/man4/ng_ccatm.4 projects/zfsd/head/share/man/man4/ng_cisco.4 projects/zfsd/head/share/man/man4/ng_deflate.4 projects/zfsd/head/share/man/man4/ng_device.4 projects/zfsd/head/share/man/man4/ng_echo.4 projects/zfsd/head/share/man/man4/ng_etf.4 projects/zfsd/head/share/man/man4/ng_ether.4 projects/zfsd/head/share/man/man4/ng_ether_echo.4 projects/zfsd/head/share/man/man4/ng_frame_relay.4 projects/zfsd/head/share/man/man4/ng_gif.4 projects/zfsd/head/share/man/man4/ng_gif_demux.4 projects/zfsd/head/share/man/man4/ng_h4.4 projects/zfsd/head/share/man/man4/ng_hci.4 projects/zfsd/head/share/man/man4/ng_hole.4 projects/zfsd/head/share/man/man4/ng_hub.4 projects/zfsd/head/share/man/man4/ng_iface.4 projects/zfsd/head/share/man/man4/ng_ip_input.4 projects/zfsd/head/share/man/man4/ng_ipfw.4 projects/zfsd/head/share/man/man4/ng_ksocket.4 projects/zfsd/head/share/man/man4/ng_l2cap.4 projects/zfsd/head/share/man/man4/ng_l2tp.4 projects/zfsd/head/share/man/man4/ng_lmi.4 projects/zfsd/head/share/man/man4/ng_mppc.4 projects/zfsd/head/share/man/man4/ng_nat.4 projects/zfsd/head/share/man/man4/ng_netflow.4 projects/zfsd/head/share/man/man4/ng_one2many.4 projects/zfsd/head/share/man/man4/ng_patch.4 projects/zfsd/head/share/man/man4/ng_ppp.4 projects/zfsd/head/share/man/man4/ng_pppoe.4 projects/zfsd/head/share/man/man4/ng_pptpgre.4 projects/zfsd/head/share/man/man4/ng_pred1.4 projects/zfsd/head/share/man/man4/ng_rfc1490.4 projects/zfsd/head/share/man/man4/ng_socket.4 projects/zfsd/head/share/man/man4/ng_split.4 projects/zfsd/head/share/man/man4/ng_sppp.4 projects/zfsd/head/share/man/man4/ng_sscfu.4 projects/zfsd/head/share/man/man4/ng_sscop.4 projects/zfsd/head/share/man/man4/ng_tag.4 projects/zfsd/head/share/man/man4/ng_tcpmss.4 projects/zfsd/head/share/man/man4/ng_tee.4 projects/zfsd/head/share/man/man4/ng_tty.4 projects/zfsd/head/share/man/man4/ng_ubt.4 projects/zfsd/head/share/man/man4/ng_uni.4 projects/zfsd/head/share/man/man4/ng_vjc.4 projects/zfsd/head/share/man/man4/ng_vlan.4 projects/zfsd/head/share/man/man4/ngatmbase.4 projects/zfsd/head/share/man/man4/nge.4 projects/zfsd/head/share/man/man4/nsp.4 projects/zfsd/head/share/man/man4/ntb.4 projects/zfsd/head/share/man/man4/nvd.4 projects/zfsd/head/share/man/man4/nvme.4 projects/zfsd/head/share/man/man4/nvram2env.4 projects/zfsd/head/share/man/man4/nxge.4 projects/zfsd/head/share/man/man4/ohci.4 projects/zfsd/head/share/man/man4/orm.4 projects/zfsd/head/share/man/man4/padlock.4 projects/zfsd/head/share/man/man4/pass.4 projects/zfsd/head/share/man/man4/patm.4 projects/zfsd/head/share/man/man4/pci.4 projects/zfsd/head/share/man/man4/pcm.4 projects/zfsd/head/share/man/man4/pcn.4 projects/zfsd/head/share/man/man4/polling.4 projects/zfsd/head/share/man/man4/procdesc.4 projects/zfsd/head/share/man/man4/proto.4 projects/zfsd/head/share/man/man4/psm.4 projects/zfsd/head/share/man/man4/pst.4 projects/zfsd/head/share/man/man4/qlxgb.4 projects/zfsd/head/share/man/man4/qlxgbe.4 projects/zfsd/head/share/man/man4/qlxge.4 projects/zfsd/head/share/man/man4/ral.4 projects/zfsd/head/share/man/man4/rc.4 projects/zfsd/head/share/man/man4/re.4 projects/zfsd/head/share/man/man4/rights.4 projects/zfsd/head/share/man/man4/rl.4 projects/zfsd/head/share/man/man4/rp.4 projects/zfsd/head/share/man/man4/rsu.4 projects/zfsd/head/share/man/man4/rue.4 projects/zfsd/head/share/man/man4/rum.4 projects/zfsd/head/share/man/man4/run.4 projects/zfsd/head/share/man/man4/scc.4 projects/zfsd/head/share/man/man4/sched_ule.4 projects/zfsd/head/share/man/man4/screen.4 projects/zfsd/head/share/man/man4/scsi.4 projects/zfsd/head/share/man/man4/sdhci.4 projects/zfsd/head/share/man/man4/send.4 projects/zfsd/head/share/man/man4/sf.4 projects/zfsd/head/share/man/man4/sge.4 projects/zfsd/head/share/man/man4/si.4 projects/zfsd/head/share/man/man4/siba.4 projects/zfsd/head/share/man/man4/siftr.4 projects/zfsd/head/share/man/man4/siis.4 projects/zfsd/head/share/man/man4/sis.4 projects/zfsd/head/share/man/man4/sk.4 projects/zfsd/head/share/man/man4/smp.4 projects/zfsd/head/share/man/man4/snd_ad1816.4 projects/zfsd/head/share/man/man4/snd_als4000.4 projects/zfsd/head/share/man/man4/snd_atiixp.4 projects/zfsd/head/share/man/man4/snd_cmi.4 projects/zfsd/head/share/man/man4/snd_cs4281.4 projects/zfsd/head/share/man/man4/snd_csa.4 projects/zfsd/head/share/man/man4/snd_ds1.4 projects/zfsd/head/share/man/man4/snd_emu10k1.4 projects/zfsd/head/share/man/man4/snd_emu10kx.4 projects/zfsd/head/share/man/man4/snd_envy24.4 projects/zfsd/head/share/man/man4/snd_envy24ht.4 projects/zfsd/head/share/man/man4/snd_es137x.4 projects/zfsd/head/share/man/man4/snd_ess.4 projects/zfsd/head/share/man/man4/snd_fm801.4 projects/zfsd/head/share/man/man4/snd_gusc.4 projects/zfsd/head/share/man/man4/snd_hda.4 projects/zfsd/head/share/man/man4/snd_ich.4 projects/zfsd/head/share/man/man4/snd_maestro.4 projects/zfsd/head/share/man/man4/snd_maestro3.4 projects/zfsd/head/share/man/man4/snd_mss.4 projects/zfsd/head/share/man/man4/snd_neomagic.4 projects/zfsd/head/share/man/man4/snd_sbc.4 projects/zfsd/head/share/man/man4/snd_solo.4 projects/zfsd/head/share/man/man4/snd_spicds.4 projects/zfsd/head/share/man/man4/snd_t4dwave.4 projects/zfsd/head/share/man/man4/snd_uaudio.4 projects/zfsd/head/share/man/man4/snd_via8233.4 projects/zfsd/head/share/man/man4/snd_via82c686.4 projects/zfsd/head/share/man/man4/snd_vibes.4 projects/zfsd/head/share/man/man4/snp.4 projects/zfsd/head/share/man/man4/spic.4 projects/zfsd/head/share/man/man4/spkr.4 projects/zfsd/head/share/man/man4/splash.4 projects/zfsd/head/share/man/man4/sppp.4 projects/zfsd/head/share/man/man4/ste.4 projects/zfsd/head/share/man/man4/stge.4 projects/zfsd/head/share/man/man4/syncache.4 projects/zfsd/head/share/man/man4/syscons.4 projects/zfsd/head/share/man/man4/sysmouse.4 projects/zfsd/head/share/man/man4/targ.4 projects/zfsd/head/share/man/man4/tdfx.4 projects/zfsd/head/share/man/man4/ti.4 projects/zfsd/head/share/man/man4/tl.4 projects/zfsd/head/share/man/man4/trm.4 projects/zfsd/head/share/man/man4/tty.4 projects/zfsd/head/share/man/man4/twa.4 projects/zfsd/head/share/man/man4/twe.4 projects/zfsd/head/share/man/man4/tws.4 projects/zfsd/head/share/man/man4/u3g.4 projects/zfsd/head/share/man/man4/uark.4 projects/zfsd/head/share/man/man4/uart.4 projects/zfsd/head/share/man/man4/uath.4 projects/zfsd/head/share/man/man4/ubsa.4 projects/zfsd/head/share/man/man4/ubtbcmfw.4 projects/zfsd/head/share/man/man4/ucom.4 projects/zfsd/head/share/man/man4/ucycom.4 projects/zfsd/head/share/man/man4/udav.4 projects/zfsd/head/share/man/man4/udbp.4 projects/zfsd/head/share/man/man4/uep.4 projects/zfsd/head/share/man/man4/ufm.4 projects/zfsd/head/share/man/man4/uhci.4 projects/zfsd/head/share/man/man4/uhid.4 projects/zfsd/head/share/man/man4/uhso.4 projects/zfsd/head/share/man/man4/ukbd.4 projects/zfsd/head/share/man/man4/ulpt.4 projects/zfsd/head/share/man/man4/umass.4 projects/zfsd/head/share/man/man4/umcs.4 projects/zfsd/head/share/man/man4/umct.4 projects/zfsd/head/share/man/man4/umodem.4 projects/zfsd/head/share/man/man4/ums.4 projects/zfsd/head/share/man/man4/upgt.4 projects/zfsd/head/share/man/man4/uplcom.4 projects/zfsd/head/share/man/man4/ural.4 projects/zfsd/head/share/man/man4/urio.4 projects/zfsd/head/share/man/man4/urtw.4 projects/zfsd/head/share/man/man4/urtwn.4 projects/zfsd/head/share/man/man4/usb.4 projects/zfsd/head/share/man/man4/usb_quirk.4 projects/zfsd/head/share/man/man4/usb_template.4 projects/zfsd/head/share/man/man4/uslcom.4 projects/zfsd/head/share/man/man4/utopia.4 projects/zfsd/head/share/man/man4/uvisor.4 projects/zfsd/head/share/man/man4/uvscom.4 projects/zfsd/head/share/man/man4/vale.4 projects/zfsd/head/share/man/man4/vga.4 projects/zfsd/head/share/man/man4/vge.4 projects/zfsd/head/share/man/man4/viapm.4 projects/zfsd/head/share/man/man4/viawd.4 projects/zfsd/head/share/man/man4/virtio.4 projects/zfsd/head/share/man/man4/virtio_balloon.4 projects/zfsd/head/share/man/man4/virtio_blk.4 projects/zfsd/head/share/man/man4/virtio_random.4 projects/zfsd/head/share/man/man4/virtio_scsi.4 projects/zfsd/head/share/man/man4/vkbd.4 projects/zfsd/head/share/man/man4/vmx.4 projects/zfsd/head/share/man/man4/vr.4 projects/zfsd/head/share/man/man4/vt.4 projects/zfsd/head/share/man/man4/vte.4 projects/zfsd/head/share/man/man4/vtnet.4 projects/zfsd/head/share/man/man4/vxge.4 projects/zfsd/head/share/man/man4/watchdog.4 projects/zfsd/head/share/man/man4/wb.4 projects/zfsd/head/share/man/man4/wbwd.4 projects/zfsd/head/share/man/man4/wi.4 projects/zfsd/head/share/man/man4/wlan.4 projects/zfsd/head/share/man/man4/wpi.4 projects/zfsd/head/share/man/man4/wsp.4 projects/zfsd/head/share/man/man4/xe.4 projects/zfsd/head/share/man/man4/xen.4 projects/zfsd/head/share/man/man4/xl.4 projects/zfsd/head/share/man/man4/xnb.4 projects/zfsd/head/share/man/man4/xpt.4 projects/zfsd/head/share/man/man4/zyd.4 projects/zfsd/head/share/man/man5/Makefile projects/zfsd/head/share/man/man5/bluetooth.device.conf.5 projects/zfsd/head/share/man/man5/bluetooth.hosts.5 projects/zfsd/head/share/man/man5/bluetooth.protocols.5 projects/zfsd/head/share/man/man5/boot.config.5 projects/zfsd/head/share/man/man5/devfs.5 projects/zfsd/head/share/man/man5/devfs.conf.5 projects/zfsd/head/share/man/man5/devfs.rules.5 projects/zfsd/head/share/man/man5/elf.5 projects/zfsd/head/share/man/man5/ext2fs.5 projects/zfsd/head/share/man/man5/fdescfs.5 projects/zfsd/head/share/man/man5/freebsd-update.conf.5 projects/zfsd/head/share/man/man5/libmap.conf.5 projects/zfsd/head/share/man/man5/mailer.conf.5 projects/zfsd/head/share/man/man5/make.conf.5 projects/zfsd/head/share/man/man5/mqueuefs.5 projects/zfsd/head/share/man/man5/msdosfs.5 projects/zfsd/head/share/man/man5/nandfs.5 projects/zfsd/head/share/man/man5/nsmb.conf.5 projects/zfsd/head/share/man/man5/nsswitch.conf.5 projects/zfsd/head/share/man/man5/nullfs.5 projects/zfsd/head/share/man/man5/passwd.5 projects/zfsd/head/share/man/man5/periodic.conf.5 projects/zfsd/head/share/man/man5/pf.conf.5 projects/zfsd/head/share/man/man5/portindex.5 projects/zfsd/head/share/man/man5/portsnap.conf.5 projects/zfsd/head/share/man/man5/rc.conf.5 projects/zfsd/head/share/man/man5/reiserfs.5 projects/zfsd/head/share/man/man5/src.conf.5 projects/zfsd/head/share/man/man5/tmpfs.5 projects/zfsd/head/share/man/man7/build.7 projects/zfsd/head/share/man/man7/c99.7 projects/zfsd/head/share/man/man7/development.7 projects/zfsd/head/share/man/man7/hier.7 projects/zfsd/head/share/man/man7/ports.7 projects/zfsd/head/share/man/man7/release.7 projects/zfsd/head/share/man/man7/sdoc.7 projects/zfsd/head/share/man/man7/sprog.7 projects/zfsd/head/share/man/man7/tests.7 projects/zfsd/head/share/man/man7/tuning.7 projects/zfsd/head/share/man/man8/hv_kvp_daemon.8 projects/zfsd/head/share/man/man8/nanobsd.8 projects/zfsd/head/share/man/man8/picobsd.8 projects/zfsd/head/share/man/man8/rescue.8 projects/zfsd/head/share/man/man9/BUF_ISLOCKED.9 projects/zfsd/head/share/man/man9/BUF_LOCK.9 projects/zfsd/head/share/man/man9/BUF_LOCKFREE.9 projects/zfsd/head/share/man/man9/BUF_LOCKINIT.9 projects/zfsd/head/share/man/man9/BUF_RECURSED.9 projects/zfsd/head/share/man/man9/BUF_TIMELOCK.9 projects/zfsd/head/share/man/man9/BUF_UNLOCK.9 projects/zfsd/head/share/man/man9/BUS_CONFIG_INTR.9 projects/zfsd/head/share/man/man9/BUS_SETUP_INTR.9 projects/zfsd/head/share/man/man9/CTASSERT.9 projects/zfsd/head/share/man/man9/DB_COMMAND.9 projects/zfsd/head/share/man/man9/DECLARE_GEOM_CLASS.9 projects/zfsd/head/share/man/man9/DECLARE_MODULE.9 projects/zfsd/head/share/man/man9/DEVICE_ATTACH.9 projects/zfsd/head/share/man/man9/DEVICE_IDENTIFY.9 projects/zfsd/head/share/man/man9/DEV_MODULE.9 projects/zfsd/head/share/man/man9/DRIVER_MODULE.9 projects/zfsd/head/share/man/man9/EVENTHANDLER.9 projects/zfsd/head/share/man/man9/KASSERT.9 projects/zfsd/head/share/man/man9/LOCK_PROFILING.9 projects/zfsd/head/share/man/man9/MODULE_DEPEND.9 projects/zfsd/head/share/man/man9/MODULE_VERSION.9 projects/zfsd/head/share/man/man9/Makefile projects/zfsd/head/share/man/man9/SDT.9 projects/zfsd/head/share/man/man9/SYSCALL_MODULE.9 projects/zfsd/head/share/man/man9/SYSINIT.9 projects/zfsd/head/share/man/man9/VFS_SET.9 projects/zfsd/head/share/man/man9/VOP_INACTIVE.9 projects/zfsd/head/share/man/man9/alq.9 projects/zfsd/head/share/man/man9/atomic.9 projects/zfsd/head/share/man/man9/bus_activate_resource.9 projects/zfsd/head/share/man/man9/bus_alloc_resource.9 projects/zfsd/head/share/man/man9/bus_child_present.9 projects/zfsd/head/share/man/man9/bus_release_resource.9 projects/zfsd/head/share/man/man9/bus_set_resource.9 projects/zfsd/head/share/man/man9/cd.9 projects/zfsd/head/share/man/man9/config_intrhook.9 projects/zfsd/head/share/man/man9/crypto.9 projects/zfsd/head/share/man/man9/devstat.9 projects/zfsd/head/share/man/man9/domain.9 projects/zfsd/head/share/man/man9/eventtimers.9 projects/zfsd/head/share/man/man9/fail.9 projects/zfsd/head/share/man/man9/firmware.9 projects/zfsd/head/share/man/man9/g_access.9 projects/zfsd/head/share/man/man9/g_attach.9 projects/zfsd/head/share/man/man9/g_bio.9 projects/zfsd/head/share/man/man9/g_consumer.9 projects/zfsd/head/share/man/man9/g_data.9 projects/zfsd/head/share/man/man9/g_event.9 projects/zfsd/head/share/man/man9/g_geom.9 projects/zfsd/head/share/man/man9/g_provider.9 projects/zfsd/head/share/man/man9/g_provider_by_name.9 projects/zfsd/head/share/man/man9/g_wither_geom.9 projects/zfsd/head/share/man/man9/get_cyclecount.9 projects/zfsd/head/share/man/man9/getnewvnode.9 projects/zfsd/head/share/man/man9/groupmember.9 projects/zfsd/head/share/man/man9/hhook.9 projects/zfsd/head/share/man/man9/ieee80211_radiotap.9 projects/zfsd/head/share/man/man9/ifnet.9 projects/zfsd/head/share/man/man9/insmntque.9 projects/zfsd/head/share/man/man9/kernel_mount.9 projects/zfsd/head/share/man/man9/khelp.9 projects/zfsd/head/share/man/man9/kqueue.9 projects/zfsd/head/share/man/man9/kthread.9 projects/zfsd/head/share/man/man9/lock.9 projects/zfsd/head/share/man/man9/mbchain.9 projects/zfsd/head/share/man/man9/mbpool.9 projects/zfsd/head/share/man/man9/mbuf.9 projects/zfsd/head/share/man/man9/mbuf_tags.9 projects/zfsd/head/share/man/man9/mdchain.9 projects/zfsd/head/share/man/man9/memguard.9 projects/zfsd/head/share/man/man9/microtime.9 projects/zfsd/head/share/man/man9/microuptime.9 projects/zfsd/head/share/man/man9/mod_cc.9 projects/zfsd/head/share/man/man9/module.9 projects/zfsd/head/share/man/man9/namei.9 projects/zfsd/head/share/man/man9/osd.9 projects/zfsd/head/share/man/man9/pbuf.9 projects/zfsd/head/share/man/man9/pci.9 projects/zfsd/head/share/man/man9/pfind.9 projects/zfsd/head/share/man/man9/pgfind.9 projects/zfsd/head/share/man/man9/pmap.9 projects/zfsd/head/share/man/man9/pmap_activate.9 projects/zfsd/head/share/man/man9/pmap_clear_modify.9 projects/zfsd/head/share/man/man9/pmap_copy.9 projects/zfsd/head/share/man/man9/pmap_enter.9 projects/zfsd/head/share/man/man9/pmap_extract.9 projects/zfsd/head/share/man/man9/pmap_growkernel.9 projects/zfsd/head/share/man/man9/pmap_init.9 projects/zfsd/head/share/man/man9/pmap_is_modified.9 projects/zfsd/head/share/man/man9/pmap_is_prefaultable.9 projects/zfsd/head/share/man/man9/pmap_map.9 projects/zfsd/head/share/man/man9/pmap_mincore.9 projects/zfsd/head/share/man/man9/pmap_object_init_pt.9 projects/zfsd/head/share/man/man9/pmap_page_exists_quick.9 projects/zfsd/head/share/man/man9/pmap_page_init.9 projects/zfsd/head/share/man/man9/pmap_pinit.9 projects/zfsd/head/share/man/man9/pmap_qenter.9 projects/zfsd/head/share/man/man9/pmap_release.9 projects/zfsd/head/share/man/man9/pmap_remove.9 projects/zfsd/head/share/man/man9/pmap_resident_count.9 projects/zfsd/head/share/man/man9/pmap_zero_page.9 projects/zfsd/head/share/man/man9/pseudofs.9 projects/zfsd/head/share/man/man9/redzone.9 projects/zfsd/head/share/man/man9/resource_int_value.9 projects/zfsd/head/share/man/man9/rman.9 projects/zfsd/head/share/man/man9/sbuf.9 projects/zfsd/head/share/man/man9/selrecord.9 projects/zfsd/head/share/man/man9/signal.9 projects/zfsd/head/share/man/man9/sleep.9 projects/zfsd/head/share/man/man9/socket.9 projects/zfsd/head/share/man/man9/sysctl.9 projects/zfsd/head/share/man/man9/sysctl_add_oid.9 projects/zfsd/head/share/man/man9/sysctl_ctx_init.9 projects/zfsd/head/share/man/man9/taskqueue.9 projects/zfsd/head/share/man/man9/timeout.9 projects/zfsd/head/share/man/man9/tvtohz.9 projects/zfsd/head/share/man/man9/ucred.9 projects/zfsd/head/share/man/man9/uidinfo.9 projects/zfsd/head/share/man/man9/usbdi.9 projects/zfsd/head/share/man/man9/utopia.9 projects/zfsd/head/share/man/man9/vaccess_acl_nfs4.9 projects/zfsd/head/share/man/man9/vflush.9 projects/zfsd/head/share/man/man9/vfs_busy.9 projects/zfsd/head/share/man/man9/vfs_getnewfsid.9 projects/zfsd/head/share/man/man9/vfs_getopt.9 projects/zfsd/head/share/man/man9/vfs_getvfs.9 projects/zfsd/head/share/man/man9/vfs_mountedfrom.9 projects/zfsd/head/share/man/man9/vfs_rootmountalloc.9 projects/zfsd/head/share/man/man9/vfs_timestamp.9 projects/zfsd/head/share/man/man9/vfs_unbusy.9 projects/zfsd/head/share/man/man9/vfsconf.9 projects/zfsd/head/share/man/man9/vgone.9 projects/zfsd/head/share/man/man9/vhold.9 projects/zfsd/head/share/man/man9/vinvalbuf.9 projects/zfsd/head/share/man/man9/vm_fault_prefault.9 projects/zfsd/head/share/man/man9/vm_map.9 projects/zfsd/head/share/man/man9/vm_map_check_protection.9 projects/zfsd/head/share/man/man9/vm_map_create.9 projects/zfsd/head/share/man/man9/vm_map_delete.9 projects/zfsd/head/share/man/man9/vm_map_entry_resize_free.9 projects/zfsd/head/share/man/man9/vm_map_find.9 projects/zfsd/head/share/man/man9/vm_map_findspace.9 projects/zfsd/head/share/man/man9/vm_map_inherit.9 projects/zfsd/head/share/man/man9/vm_map_init.9 projects/zfsd/head/share/man/man9/vm_map_insert.9 projects/zfsd/head/share/man/man9/vm_map_lock.9 projects/zfsd/head/share/man/man9/vm_map_lookup.9 projects/zfsd/head/share/man/man9/vm_map_madvise.9 projects/zfsd/head/share/man/man9/vm_map_max.9 projects/zfsd/head/share/man/man9/vm_map_protect.9 projects/zfsd/head/share/man/man9/vm_map_remove.9 projects/zfsd/head/share/man/man9/vm_map_simplify_entry.9 projects/zfsd/head/share/man/man9/vm_map_stack.9 projects/zfsd/head/share/man/man9/vm_map_submap.9 projects/zfsd/head/share/man/man9/vm_map_sync.9 projects/zfsd/head/share/man/man9/vm_map_wire.9 projects/zfsd/head/share/man/man9/vm_page_aflag.9 projects/zfsd/head/share/man/man9/vm_page_alloc.9 projects/zfsd/head/share/man/man9/vm_page_bits.9 projects/zfsd/head/share/man/man9/vm_page_busy.9 projects/zfsd/head/share/man/man9/vm_page_cache.9 projects/zfsd/head/share/man/man9/vm_page_deactivate.9 projects/zfsd/head/share/man/man9/vm_page_dontneed.9 projects/zfsd/head/share/man/man9/vm_page_free.9 projects/zfsd/head/share/man/man9/vm_page_grab.9 projects/zfsd/head/share/man/man9/vm_page_hold.9 projects/zfsd/head/share/man/man9/vm_page_insert.9 projects/zfsd/head/share/man/man9/vm_page_lookup.9 projects/zfsd/head/share/man/man9/vm_page_rename.9 projects/zfsd/head/share/man/man9/vm_page_wire.9 projects/zfsd/head/share/man/man9/vm_set_page_size.9 projects/zfsd/head/share/man/man9/vn_fullpath.9 projects/zfsd/head/share/man/man9/vn_isdisk.9 projects/zfsd/head/share/man/man9/vnode.9 projects/zfsd/head/share/man/man9/watchdog.9 projects/zfsd/head/share/man/man9/zone.9 projects/zfsd/head/share/misc/bsd-family-tree projects/zfsd/head/share/misc/committers-ports.dot projects/zfsd/head/share/misc/committers-src.dot projects/zfsd/head/share/misc/organization.dot projects/zfsd/head/share/mk/Makefile projects/zfsd/head/share/mk/atf.test.mk projects/zfsd/head/share/mk/bsd.README projects/zfsd/head/share/mk/bsd.compiler.mk projects/zfsd/head/share/mk/bsd.cpu.mk projects/zfsd/head/share/mk/bsd.dep.mk projects/zfsd/head/share/mk/bsd.endian.mk projects/zfsd/head/share/mk/bsd.files.mk projects/zfsd/head/share/mk/bsd.lib.mk projects/zfsd/head/share/mk/bsd.libnames.mk projects/zfsd/head/share/mk/bsd.obj.mk projects/zfsd/head/share/mk/bsd.opts.mk projects/zfsd/head/share/mk/bsd.own.mk projects/zfsd/head/share/mk/bsd.prog.mk projects/zfsd/head/share/mk/bsd.subdir.mk projects/zfsd/head/share/mk/bsd.sys.mk projects/zfsd/head/share/mk/bsd.test.mk projects/zfsd/head/share/mk/plain.test.mk projects/zfsd/head/share/mk/src.opts.mk projects/zfsd/head/share/mk/src.sys.mk projects/zfsd/head/share/mk/sys.mk projects/zfsd/head/share/mk/tap.test.mk projects/zfsd/head/share/syscons/keymaps/INDEX.keymaps projects/zfsd/head/share/syscons/keymaps/be.iso.acc.kbd projects/zfsd/head/share/syscons/keymaps/cs.latin2.qwertz.kbd projects/zfsd/head/share/syscons/keymaps/uk.iso-ctrl.kbd projects/zfsd/head/share/syscons/keymaps/uk.iso.kbd projects/zfsd/head/share/termcap/termcap.src projects/zfsd/head/sys/Makefile projects/zfsd/head/sys/amd64/acpica/acpi_machdep.c projects/zfsd/head/sys/amd64/acpica/acpi_wakecode.S projects/zfsd/head/sys/amd64/amd64/amd64_mem.c projects/zfsd/head/sys/amd64/amd64/exception.S projects/zfsd/head/sys/amd64/amd64/fpu.c projects/zfsd/head/sys/amd64/amd64/identcpu.c projects/zfsd/head/sys/amd64/amd64/machdep.c projects/zfsd/head/sys/amd64/amd64/mp_machdep.c projects/zfsd/head/sys/amd64/amd64/mp_watchdog.c projects/zfsd/head/sys/amd64/amd64/mpboot.S projects/zfsd/head/sys/amd64/amd64/pmap.c projects/zfsd/head/sys/amd64/amd64/sys_machdep.c projects/zfsd/head/sys/amd64/amd64/trap.c projects/zfsd/head/sys/amd64/conf/GENERIC projects/zfsd/head/sys/amd64/conf/NOTES projects/zfsd/head/sys/amd64/include/cpu.h projects/zfsd/head/sys/amd64/include/fpu.h projects/zfsd/head/sys/amd64/include/param.h projects/zfsd/head/sys/amd64/include/sf_buf.h projects/zfsd/head/sys/amd64/include/vmm.h (contents, props changed) projects/zfsd/head/sys/amd64/include/vmm_dev.h (contents, props changed) projects/zfsd/head/sys/amd64/include/vmm_instruction_emul.h (contents, props changed) projects/zfsd/head/sys/amd64/include/vmparam.h projects/zfsd/head/sys/amd64/pci/pci_cfgreg.c projects/zfsd/head/sys/amd64/vmm/intel/vmcs.c projects/zfsd/head/sys/amd64/vmm/intel/vmcs.h projects/zfsd/head/sys/amd64/vmm/intel/vmx.c projects/zfsd/head/sys/amd64/vmm/intel/vmx_msr.c projects/zfsd/head/sys/amd64/vmm/intel/vmx_msr.h projects/zfsd/head/sys/amd64/vmm/intel/vtd.c projects/zfsd/head/sys/amd64/vmm/io/vatpic.c projects/zfsd/head/sys/amd64/vmm/io/vlapic.c projects/zfsd/head/sys/amd64/vmm/io/vlapic.h projects/zfsd/head/sys/amd64/vmm/vmm.c projects/zfsd/head/sys/amd64/vmm/vmm_dev.c projects/zfsd/head/sys/amd64/vmm/vmm_host.c projects/zfsd/head/sys/amd64/vmm/vmm_instruction_emul.c projects/zfsd/head/sys/amd64/vmm/vmm_ioport.c projects/zfsd/head/sys/amd64/vmm/vmm_ioport.h projects/zfsd/head/sys/amd64/vmm/vmm_ktr.h projects/zfsd/head/sys/amd64/vmm/vmm_stat.c projects/zfsd/head/sys/amd64/vmm/vmm_stat.h projects/zfsd/head/sys/amd64/vmm/x86.c projects/zfsd/head/sys/arm/arm/busdma_machdep-v6.c projects/zfsd/head/sys/arm/arm/busdma_machdep.c projects/zfsd/head/sys/arm/arm/cpufunc.c projects/zfsd/head/sys/arm/arm/cpufunc_asm_arm10.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_arm9.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_armv5.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_armv6.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_armv7.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_pj4b.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_xscale.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_xscale_c3.S projects/zfsd/head/sys/arm/arm/disassem.c projects/zfsd/head/sys/arm/arm/dump_machdep.c projects/zfsd/head/sys/arm/arm/elf_machdep.c projects/zfsd/head/sys/arm/arm/exception.S projects/zfsd/head/sys/arm/arm/fusu.S projects/zfsd/head/sys/arm/arm/generic_timer.c projects/zfsd/head/sys/arm/arm/gic.c projects/zfsd/head/sys/arm/arm/intr.c projects/zfsd/head/sys/arm/arm/locore.S projects/zfsd/head/sys/arm/arm/machdep.c projects/zfsd/head/sys/arm/arm/mpcore_timer.c projects/zfsd/head/sys/arm/arm/nexus.c projects/zfsd/head/sys/arm/arm/pl190.c projects/zfsd/head/sys/arm/arm/pl310.c projects/zfsd/head/sys/arm/arm/platform.c projects/zfsd/head/sys/arm/arm/pmap-v6.c projects/zfsd/head/sys/arm/arm/pmap.c projects/zfsd/head/sys/arm/arm/setstack.s projects/zfsd/head/sys/arm/arm/support.S projects/zfsd/head/sys/arm/arm/vm_machdep.c projects/zfsd/head/sys/arm/at91/at91.c projects/zfsd/head/sys/arm/at91/at91_aic.c projects/zfsd/head/sys/arm/at91/at91_machdep.c projects/zfsd/head/sys/arm/at91/at91_mci.c projects/zfsd/head/sys/arm/at91/at91_mcireg.h projects/zfsd/head/sys/arm/at91/at91_pio.c projects/zfsd/head/sys/arm/at91/at91_piovar.h projects/zfsd/head/sys/arm/at91/at91_pit.c projects/zfsd/head/sys/arm/at91/at91_pmc.c projects/zfsd/head/sys/arm/at91/at91sam9260.c projects/zfsd/head/sys/arm/at91/at91sam9260reg.h projects/zfsd/head/sys/arm/at91/board_tsc4370.c projects/zfsd/head/sys/arm/at91/files.at91 projects/zfsd/head/sys/arm/at91/if_ate.c projects/zfsd/head/sys/arm/at91/if_macb.c projects/zfsd/head/sys/arm/at91/std.atmel projects/zfsd/head/sys/arm/broadcom/bcm2835/bcm2835_bsc.c projects/zfsd/head/sys/arm/broadcom/bcm2835/files.bcm2835 projects/zfsd/head/sys/arm/cavium/cns11xx/if_ece.c projects/zfsd/head/sys/arm/conf/ARNDALE projects/zfsd/head/sys/arm/conf/BEAGLEBONE projects/zfsd/head/sys/arm/conf/CHROMEBOOK projects/zfsd/head/sys/arm/conf/HL201 projects/zfsd/head/sys/arm/conf/IMX6 projects/zfsd/head/sys/arm/conf/PANDABOARD projects/zfsd/head/sys/arm/conf/RADXA projects/zfsd/head/sys/arm/conf/RPI-B projects/zfsd/head/sys/arm/conf/VYBRID projects/zfsd/head/sys/arm/conf/ZEDBOARD projects/zfsd/head/sys/arm/freescale/imx/files.imx51 projects/zfsd/head/sys/arm/freescale/imx/files.imx53 projects/zfsd/head/sys/arm/freescale/imx/files.imx6 projects/zfsd/head/sys/arm/freescale/imx/imx51_ipuv3_fbd.c projects/zfsd/head/sys/arm/freescale/imx/imx6_anatop.c projects/zfsd/head/sys/arm/freescale/imx/imx6_ccmreg.h projects/zfsd/head/sys/arm/freescale/imx/imx6_machdep.c projects/zfsd/head/sys/arm/freescale/imx/imx6_mp.c projects/zfsd/head/sys/arm/freescale/imx/imx_sdhci.c projects/zfsd/head/sys/arm/freescale/vybrid/files.vybrid projects/zfsd/head/sys/arm/freescale/vybrid/vf_i2c.c projects/zfsd/head/sys/arm/include/asm.h projects/zfsd/head/sys/arm/include/atomic.h projects/zfsd/head/sys/arm/include/counter.h projects/zfsd/head/sys/arm/include/cpu.h projects/zfsd/head/sys/arm/include/cpufunc.h projects/zfsd/head/sys/arm/include/elf.h projects/zfsd/head/sys/arm/include/intr.h projects/zfsd/head/sys/arm/include/param.h projects/zfsd/head/sys/arm/include/pl310.h projects/zfsd/head/sys/arm/include/platform.h projects/zfsd/head/sys/arm/include/sf_buf.h projects/zfsd/head/sys/arm/include/ucontext.h projects/zfsd/head/sys/arm/include/vmparam.h projects/zfsd/head/sys/arm/mv/armadaxp/armadaxp_mp.c projects/zfsd/head/sys/arm/mv/armadaxp/mptramp.S projects/zfsd/head/sys/arm/rockchip/files.rk30xx projects/zfsd/head/sys/arm/samsung/exynos/chrome_ec.c projects/zfsd/head/sys/arm/samsung/exynos/chrome_ec.h projects/zfsd/head/sys/arm/samsung/exynos/chrome_kb.c projects/zfsd/head/sys/arm/samsung/exynos/chrome_kb.h projects/zfsd/head/sys/arm/samsung/exynos/exynos5_combiner.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_ehci.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_fimd.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_i2c.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_machdep.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_mct.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_mp.c projects/zfsd/head/sys/arm/samsung/exynos/exynos5_pad.c projects/zfsd/head/sys/arm/samsung/exynos/files.exynos5 projects/zfsd/head/sys/arm/ti/aintc.c projects/zfsd/head/sys/arm/ti/am335x/am335x_lcd.c projects/zfsd/head/sys/arm/ti/am335x/am335x_prcm.c projects/zfsd/head/sys/arm/ti/am335x/am335x_pwm.c projects/zfsd/head/sys/arm/ti/am335x/am335x_scm_padconf.c projects/zfsd/head/sys/arm/ti/omap4/omap4_prcm_clks.c projects/zfsd/head/sys/arm/ti/omap4/omap4_scm_padconf.c projects/zfsd/head/sys/arm/ti/ti_adc.c projects/zfsd/head/sys/arm/ti/ti_adcreg.h projects/zfsd/head/sys/arm/ti/ti_adcvar.h projects/zfsd/head/sys/arm/ti/ti_gpio.c projects/zfsd/head/sys/arm/ti/ti_i2c.c projects/zfsd/head/sys/arm/ti/ti_i2c.h projects/zfsd/head/sys/arm/ti/ti_prcm.c projects/zfsd/head/sys/arm/ti/ti_smc.S projects/zfsd/head/sys/arm/versatile/versatile_clcd.c projects/zfsd/head/sys/arm/xilinx/zy7_slcr.c projects/zfsd/head/sys/arm/xilinx/zy7_slcr.h projects/zfsd/head/sys/arm/xscale/i80321/ep80219_machdep.c projects/zfsd/head/sys/arm/xscale/i80321/iq31244_machdep.c projects/zfsd/head/sys/arm/xscale/i8134x/crb_machdep.c projects/zfsd/head/sys/arm/xscale/ixp425/avila_machdep.c projects/zfsd/head/sys/arm/xscale/ixp425/if_npe.c projects/zfsd/head/sys/arm/xscale/ixp425/ixp425_npe.c projects/zfsd/head/sys/arm/xscale/ixp425/ixp425_qmgr.c projects/zfsd/head/sys/arm/xscale/pxa/pxa_machdep.c projects/zfsd/head/sys/boot/amd64/boot1.efi/Makefile projects/zfsd/head/sys/boot/amd64/efi/bootinfo.c projects/zfsd/head/sys/boot/amd64/efi/main.c projects/zfsd/head/sys/boot/arm/at91/boot0/main.c projects/zfsd/head/sys/boot/arm/at91/boot0iic/main.c projects/zfsd/head/sys/boot/arm/at91/boot0spi/main.c projects/zfsd/head/sys/boot/arm/at91/boot2/boot2.c projects/zfsd/head/sys/boot/arm/at91/bootiic/main.c projects/zfsd/head/sys/boot/arm/at91/bootspi/main.c projects/zfsd/head/sys/boot/arm/at91/libat91/emac.c projects/zfsd/head/sys/boot/arm/at91/libat91/mci_device.h projects/zfsd/head/sys/boot/arm/at91/libat91/sd-card.c projects/zfsd/head/sys/boot/arm/at91/libat91/sd-card.h projects/zfsd/head/sys/boot/common/Makefile.inc projects/zfsd/head/sys/boot/common/bootstrap.h projects/zfsd/head/sys/boot/common/interp.c projects/zfsd/head/sys/boot/common/interp_forth.c projects/zfsd/head/sys/boot/common/module.c projects/zfsd/head/sys/boot/efi/include/amd64/pe.h projects/zfsd/head/sys/boot/efi/include/efiapi.h projects/zfsd/head/sys/boot/efi/include/i386/pe.h projects/zfsd/head/sys/boot/efi/libefi/Makefile projects/zfsd/head/sys/boot/fdt/dts/arm/beaglebone-black.dts projects/zfsd/head/sys/boot/fdt/dts/arm/beaglebone.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5250-arndale.dts projects/zfsd/head/sys/boot/fdt/dts/arm/exynos5250.dtsi projects/zfsd/head/sys/boot/fdt/dts/arm/imx6.dtsi projects/zfsd/head/sys/boot/fdt/dts/arm/wandboard-dual.dts projects/zfsd/head/sys/boot/fdt/dts/arm/wandboard-quad.dts projects/zfsd/head/sys/boot/fdt/dts/arm/wandboard-solo.dts projects/zfsd/head/sys/boot/fdt/dts/arm/zedboard.dts projects/zfsd/head/sys/boot/fdt/dts/mips/beripad-de4.dts projects/zfsd/head/sys/boot/fdt/fdt_loader_cmd.c projects/zfsd/head/sys/boot/ficl/loader.c projects/zfsd/head/sys/boot/forth/brand.4th projects/zfsd/head/sys/boot/forth/loader.conf projects/zfsd/head/sys/boot/i386/boot2/boot2.c projects/zfsd/head/sys/boot/i386/gptboot/gptboot.8 projects/zfsd/head/sys/boot/i386/libi386/Makefile projects/zfsd/head/sys/boot/i386/libi386/amd64_tramp.S projects/zfsd/head/sys/boot/i386/libi386/libi386.h projects/zfsd/head/sys/boot/i386/libi386/pxe.c projects/zfsd/head/sys/boot/i386/loader/Makefile projects/zfsd/head/sys/boot/i386/loader/main.c projects/zfsd/head/sys/boot/libstand32/Makefile projects/zfsd/head/sys/boot/mips/beri/boot2/Makefile projects/zfsd/head/sys/boot/mips/beri/loader/Makefile projects/zfsd/head/sys/boot/mips/beri/loader/loader.ldscript projects/zfsd/head/sys/boot/mips/beri/loader/main.c projects/zfsd/head/sys/boot/ofw/common/main.c projects/zfsd/head/sys/boot/pc98/boot2/Makefile projects/zfsd/head/sys/boot/pc98/boot2/boot2.c projects/zfsd/head/sys/boot/pc98/loader/main.c projects/zfsd/head/sys/boot/powerpc/ps3/main.c projects/zfsd/head/sys/boot/sparc64/loader/main.c projects/zfsd/head/sys/boot/uboot/common/main.c projects/zfsd/head/sys/boot/usb/Makefile projects/zfsd/head/sys/boot/usb/bsd_usbloader_test.c projects/zfsd/head/sys/boot/usb/usb_busdma_loader.c projects/zfsd/head/sys/boot/userboot/libstand/Makefile projects/zfsd/head/sys/boot/userboot/test/test.c projects/zfsd/head/sys/boot/userboot/userboot/devicename.c projects/zfsd/head/sys/boot/userboot/userboot/main.c projects/zfsd/head/sys/boot/zfs/zfsimpl.c projects/zfsd/head/sys/cam/ata/ata_da.c projects/zfsd/head/sys/cam/ata/ata_pmp.c projects/zfsd/head/sys/cam/ata/ata_xpt.c projects/zfsd/head/sys/cam/cam.c projects/zfsd/head/sys/cam/cam_periph.c projects/zfsd/head/sys/cam/cam_xpt.c projects/zfsd/head/sys/cam/ctl/ctl.c projects/zfsd/head/sys/cam/ctl/ctl.h projects/zfsd/head/sys/cam/ctl/ctl_backend.c projects/zfsd/head/sys/cam/ctl/ctl_backend.h projects/zfsd/head/sys/cam/ctl/ctl_backend_block.c projects/zfsd/head/sys/cam/ctl/ctl_backend_ramdisk.c projects/zfsd/head/sys/cam/ctl/ctl_cmd_table.c projects/zfsd/head/sys/cam/ctl/ctl_error.c projects/zfsd/head/sys/cam/ctl/ctl_error.h projects/zfsd/head/sys/cam/ctl/ctl_frontend.c projects/zfsd/head/sys/cam/ctl/ctl_frontend.h projects/zfsd/head/sys/cam/ctl/ctl_frontend_cam_sim.c projects/zfsd/head/sys/cam/ctl/ctl_frontend_internal.c projects/zfsd/head/sys/cam/ctl/ctl_frontend_iscsi.c projects/zfsd/head/sys/cam/ctl/ctl_frontend_iscsi.h projects/zfsd/head/sys/cam/ctl/ctl_io.h projects/zfsd/head/sys/cam/ctl/ctl_ioctl.h projects/zfsd/head/sys/cam/ctl/ctl_private.h projects/zfsd/head/sys/cam/ctl/ctl_ser_table.c projects/zfsd/head/sys/cam/ctl/ctl_util.c projects/zfsd/head/sys/cam/ctl/ctl_util.h projects/zfsd/head/sys/cam/ctl/scsi_ctl.c projects/zfsd/head/sys/cam/scsi/scsi_all.c projects/zfsd/head/sys/cam/scsi/scsi_all.h projects/zfsd/head/sys/cam/scsi/scsi_cd.c projects/zfsd/head/sys/cam/scsi/scsi_da.c projects/zfsd/head/sys/cam/scsi/scsi_da.h projects/zfsd/head/sys/cam/scsi/scsi_enc_safte.c projects/zfsd/head/sys/cam/scsi/scsi_low.c projects/zfsd/head/sys/cam/scsi/scsi_sa.c projects/zfsd/head/sys/cam/scsi/scsi_sg.c projects/zfsd/head/sys/cam/scsi/scsi_sg.h projects/zfsd/head/sys/cam/scsi/scsi_xpt.c projects/zfsd/head/sys/cddl/boot/zfs/README projects/zfsd/head/sys/cddl/boot/zfs/zfsimpl.h projects/zfsd/head/sys/cddl/boot/zfs/zfssubr.c projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_kstat.c projects/zfsd/head/sys/cddl/compat/opensolaris/sys/atomic.h projects/zfsd/head/sys/cddl/contrib/opensolaris/common/avl/avl.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/unicode/u8_textprep.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/Makefile.files projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/profile.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/sdt_subr.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/systrace.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_diff.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_bookmark.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/range_tree.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bptree.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_synctask.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/refcount.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/rrwlock.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/os/fm.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/avl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/bitmap.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/cpuvar.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/isa_defs.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/fasttrap_isa.c projects/zfsd/head/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/zfsd/head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c projects/zfsd/head/sys/cddl/dev/dtrace/dtrace_cddl.h projects/zfsd/head/sys/cddl/dev/dtrace/dtrace_ioctl.c projects/zfsd/head/sys/cddl/dev/dtrace/dtrace_load.c projects/zfsd/head/sys/cddl/dev/dtrace/dtrace_sysctl.c projects/zfsd/head/sys/cddl/dev/dtrace/dtrace_unload.c projects/zfsd/head/sys/cddl/dev/dtrace/i386/dtrace_asm.S projects/zfsd/head/sys/cddl/dev/dtrace/i386/dtrace_isa.c projects/zfsd/head/sys/cddl/dev/dtrace/i386/dtrace_subr.c projects/zfsd/head/sys/cddl/dev/dtrace/mips/dtrace_subr.c projects/zfsd/head/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c projects/zfsd/head/sys/cddl/dev/fbt/fbt.c projects/zfsd/head/sys/cddl/dev/sdt/sdt.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_ioctl.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_ioctl.h projects/zfsd/head/sys/compat/freebsd32/freebsd32_misc.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_util.h projects/zfsd/head/sys/compat/ia32/ia32_sysvec.c projects/zfsd/head/sys/compat/ia32/ia32_util.h projects/zfsd/head/sys/compat/linux/linux_futex.c projects/zfsd/head/sys/compat/linux/linux_ioctl.c projects/zfsd/head/sys/compat/ndis/kern_ndis.c projects/zfsd/head/sys/compat/ndis/ndis_var.h projects/zfsd/head/sys/compat/ndis/pe_var.h projects/zfsd/head/sys/compat/x86bios/x86bios.c projects/zfsd/head/sys/conf/Makefile.arm projects/zfsd/head/sys/conf/NOTES projects/zfsd/head/sys/conf/files projects/zfsd/head/sys/conf/files.amd64 projects/zfsd/head/sys/conf/files.arm projects/zfsd/head/sys/conf/files.i386 projects/zfsd/head/sys/conf/files.mips projects/zfsd/head/sys/conf/files.pc98 projects/zfsd/head/sys/conf/files.powerpc projects/zfsd/head/sys/conf/files.sparc64 projects/zfsd/head/sys/conf/kern.mk projects/zfsd/head/sys/conf/kern.opts.mk projects/zfsd/head/sys/conf/kern.post.mk projects/zfsd/head/sys/conf/kern.pre.mk projects/zfsd/head/sys/conf/kmod.mk projects/zfsd/head/sys/conf/options projects/zfsd/head/sys/conf/options.amd64 projects/zfsd/head/sys/conf/options.arm projects/zfsd/head/sys/conf/options.i386 projects/zfsd/head/sys/conf/options.mips projects/zfsd/head/sys/contrib/dev/acpica/acpica_prep.sh projects/zfsd/head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_interrupts.c projects/zfsd/head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_power.c projects/zfsd/head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_recv.c projects/zfsd/head/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c projects/zfsd/head/sys/contrib/ipfilter/netinet/ip_compat.h projects/zfsd/head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/zfsd/head/sys/contrib/ipfilter/netinet/ip_log.c projects/zfsd/head/sys/contrib/x86emu/x86emu.c projects/zfsd/head/sys/crypto/aesni/aesni.c projects/zfsd/head/sys/crypto/aesni/aesni.h projects/zfsd/head/sys/crypto/aesni/aesni_wrap.c projects/zfsd/head/sys/crypto/via/padlock.c projects/zfsd/head/sys/crypto/via/padlock_cipher.c projects/zfsd/head/sys/crypto/via/padlock_hash.c projects/zfsd/head/sys/ddb/db_command.c projects/zfsd/head/sys/ddb/db_run.c projects/zfsd/head/sys/dev/aac/aac_pci.c projects/zfsd/head/sys/dev/acpica/Osd/OsdSchedule.c projects/zfsd/head/sys/dev/acpica/acpi.c projects/zfsd/head/sys/dev/acpica/acpi_cpu.c projects/zfsd/head/sys/dev/acpica/acpi_ec.c projects/zfsd/head/sys/dev/acpica/acpi_hpet.c projects/zfsd/head/sys/dev/acpica/acpi_powerres.c projects/zfsd/head/sys/dev/acpica/acpi_timer.c projects/zfsd/head/sys/dev/adb/adb_buttons.c projects/zfsd/head/sys/dev/adb/adb_kbd.c projects/zfsd/head/sys/dev/advansys/adwcam.c projects/zfsd/head/sys/dev/ae/if_ae.c projects/zfsd/head/sys/dev/age/if_age.c projects/zfsd/head/sys/dev/agp/agp.c projects/zfsd/head/sys/dev/agp/agp_i810.c projects/zfsd/head/sys/dev/aha/aha.c projects/zfsd/head/sys/dev/ahb/ahb.c projects/zfsd/head/sys/dev/ahci/ahci.c projects/zfsd/head/sys/dev/aic7xxx/aic79xx.c projects/zfsd/head/sys/dev/aic7xxx/aic79xx_pci.c projects/zfsd/head/sys/dev/aic7xxx/aic7xxx.c projects/zfsd/head/sys/dev/alc/if_alc.c projects/zfsd/head/sys/dev/ale/if_ale.c projects/zfsd/head/sys/dev/amr/amr.c projects/zfsd/head/sys/dev/amr/amr_pci.c projects/zfsd/head/sys/dev/amr/amrio.h projects/zfsd/head/sys/dev/an/if_an.c projects/zfsd/head/sys/dev/asmc/asmc.c projects/zfsd/head/sys/dev/asmc/asmcvar.h projects/zfsd/head/sys/dev/ata/ata-all.c projects/zfsd/head/sys/dev/ata/ata-dma.c projects/zfsd/head/sys/dev/ata/chipsets/ata-ati.c projects/zfsd/head/sys/dev/ata/chipsets/ata-promise.c projects/zfsd/head/sys/dev/ath/ah_osdep.c projects/zfsd/head/sys/dev/ath/ath_hal/ah.c projects/zfsd/head/sys/dev/ath/ath_hal/ah_decode.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_internal.h projects/zfsd/head/sys/dev/ath/if_ath.c projects/zfsd/head/sys/dev/ath/if_ath_ahb.c projects/zfsd/head/sys/dev/ath/if_ath_debug.c projects/zfsd/head/sys/dev/ath/if_ath_pci.c projects/zfsd/head/sys/dev/atkbdc/atkbdc.c projects/zfsd/head/sys/dev/bce/if_bce.c projects/zfsd/head/sys/dev/bfe/if_bfe.c projects/zfsd/head/sys/dev/bge/if_bge.c projects/zfsd/head/sys/dev/buslogic/bt.c projects/zfsd/head/sys/dev/bwn/if_bwn.c projects/zfsd/head/sys/dev/bxe/bxe.c projects/zfsd/head/sys/dev/bxe/bxe.h projects/zfsd/head/sys/dev/bxe/bxe_debug.c projects/zfsd/head/sys/dev/bxe/bxe_stats.c projects/zfsd/head/sys/dev/bxe/ecore_reg.h projects/zfsd/head/sys/dev/bxe/ecore_sp.h projects/zfsd/head/sys/dev/cadence/if_cgem.c projects/zfsd/head/sys/dev/cardbus/cardbus.c projects/zfsd/head/sys/dev/cas/if_cas.c projects/zfsd/head/sys/dev/cfe/cfe_console.c projects/zfsd/head/sys/dev/ciss/ciss.c projects/zfsd/head/sys/dev/ciss/cissreg.h projects/zfsd/head/sys/dev/cpuctl/cpuctl.c projects/zfsd/head/sys/dev/cs/if_cs.c projects/zfsd/head/sys/dev/cxgb/cxgb_include.h projects/zfsd/head/sys/dev/cxgb/cxgb_main.c projects/zfsd/head/sys/dev/cxgb/cxgb_sge.c projects/zfsd/head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c projects/zfsd/head/sys/dev/cxgbe/adapter.h projects/zfsd/head/sys/dev/cxgbe/common/common.h projects/zfsd/head/sys/dev/cxgbe/common/t4_hw.c projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw_interface.h projects/zfsd/head/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt projects/zfsd/head/sys/dev/cxgbe/iw_cxgbe/cm.c projects/zfsd/head/sys/dev/cxgbe/offload.h projects/zfsd/head/sys/dev/cxgbe/t4_main.c projects/zfsd/head/sys/dev/cxgbe/t4_sge.c projects/zfsd/head/sys/dev/cxgbe/t4_tracer.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_cpl_io.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_ddp.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_listen.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_tom.h projects/zfsd/head/sys/dev/dc/dcphy.c projects/zfsd/head/sys/dev/dc/if_dc.c projects/zfsd/head/sys/dev/dc/pnphy.c projects/zfsd/head/sys/dev/de/if_de.c projects/zfsd/head/sys/dev/dpt/dpt_scsi.c projects/zfsd/head/sys/dev/drm/ati_pcigart.c projects/zfsd/head/sys/dev/drm/drm.h projects/zfsd/head/sys/dev/drm/drm_drv.c projects/zfsd/head/sys/dev/drm/drm_pci.c projects/zfsd/head/sys/dev/drm/drm_sarea.h projects/zfsd/head/sys/dev/drm/drm_sysctl.c projects/zfsd/head/sys/dev/drm/via_dmablit.c projects/zfsd/head/sys/dev/drm2/drm.h projects/zfsd/head/sys/dev/drm2/drm_drv.c projects/zfsd/head/sys/dev/drm2/drm_fb_helper.c projects/zfsd/head/sys/dev/drm2/drm_pci.c projects/zfsd/head/sys/dev/drm2/drm_sarea.h projects/zfsd/head/sys/dev/drm2/drm_sysctl.c projects/zfsd/head/sys/dev/drm2/i915/i915_gem.c projects/zfsd/head/sys/dev/drm2/i915/i915_gem_gtt.c projects/zfsd/head/sys/dev/drm2/i915/intel_fb.c projects/zfsd/head/sys/dev/drm2/radeon/radeon_device.c projects/zfsd/head/sys/dev/drm2/radeon/rs690.c projects/zfsd/head/sys/dev/drm2/radeon/rv515.c projects/zfsd/head/sys/dev/drm2/ttm/ttm_bo_vm.c projects/zfsd/head/sys/dev/drm2/ttm/ttm_page_alloc.c projects/zfsd/head/sys/dev/e1000/e1000_82542.c projects/zfsd/head/sys/dev/e1000/e1000_82571.c projects/zfsd/head/sys/dev/e1000/e1000_82575.c projects/zfsd/head/sys/dev/e1000/e1000_82575.h projects/zfsd/head/sys/dev/e1000/e1000_api.c projects/zfsd/head/sys/dev/e1000/e1000_api.h projects/zfsd/head/sys/dev/e1000/e1000_defines.h projects/zfsd/head/sys/dev/e1000/e1000_hw.h projects/zfsd/head/sys/dev/e1000/e1000_i210.c projects/zfsd/head/sys/dev/e1000/e1000_i210.h projects/zfsd/head/sys/dev/e1000/e1000_ich8lan.c projects/zfsd/head/sys/dev/e1000/e1000_ich8lan.h projects/zfsd/head/sys/dev/e1000/e1000_mac.c projects/zfsd/head/sys/dev/e1000/e1000_mac.h projects/zfsd/head/sys/dev/e1000/e1000_manage.c projects/zfsd/head/sys/dev/e1000/e1000_mbx.c projects/zfsd/head/sys/dev/e1000/e1000_mbx.h projects/zfsd/head/sys/dev/e1000/e1000_nvm.c projects/zfsd/head/sys/dev/e1000/e1000_osdep.h projects/zfsd/head/sys/dev/e1000/e1000_phy.c projects/zfsd/head/sys/dev/e1000/e1000_phy.h projects/zfsd/head/sys/dev/e1000/e1000_regs.h projects/zfsd/head/sys/dev/e1000/e1000_vf.c projects/zfsd/head/sys/dev/e1000/e1000_vf.h projects/zfsd/head/sys/dev/e1000/if_em.c projects/zfsd/head/sys/dev/e1000/if_em.h projects/zfsd/head/sys/dev/e1000/if_igb.c projects/zfsd/head/sys/dev/e1000/if_lem.c projects/zfsd/head/sys/dev/e1000/if_lem.h projects/zfsd/head/sys/dev/ep/if_ep.c projects/zfsd/head/sys/dev/esp/ncr53c9x.c projects/zfsd/head/sys/dev/et/if_et.c projects/zfsd/head/sys/dev/etherswitch/arswitch/arswitch.c projects/zfsd/head/sys/dev/etherswitch/rtl8366/rtl8366rb.c projects/zfsd/head/sys/dev/etherswitch/rtl8366/rtl8366rbvar.h projects/zfsd/head/sys/dev/fb/fbd.c projects/zfsd/head/sys/dev/fb/fbreg.h projects/zfsd/head/sys/dev/fb/vesa.c projects/zfsd/head/sys/dev/fdt/simplebus.c projects/zfsd/head/sys/dev/firewire/fwohci.c projects/zfsd/head/sys/dev/firewire/if_fwe.c projects/zfsd/head/sys/dev/firewire/if_fwip.c projects/zfsd/head/sys/dev/firewire/sbp.c projects/zfsd/head/sys/dev/fxp/if_fxp.c projects/zfsd/head/sys/dev/fxp/if_fxpvar.h projects/zfsd/head/sys/dev/fxp/inphy.c projects/zfsd/head/sys/dev/glxiic/glxiic.c projects/zfsd/head/sys/dev/gpio/gpioiic.c projects/zfsd/head/sys/dev/hatm/if_hatm_intr.c projects/zfsd/head/sys/dev/hifn/hifn7751.c projects/zfsd/head/sys/dev/hpt27xx/hpt27xx_os_bsd.c projects/zfsd/head/sys/dev/hpt27xx/hpt27xx_osm_bsd.c projects/zfsd/head/sys/dev/hpt27xx/os_bsd.h projects/zfsd/head/sys/dev/hptiop/hptiop.c projects/zfsd/head/sys/dev/hptiop/hptiop.h projects/zfsd/head/sys/dev/hptmv/entry.c projects/zfsd/head/sys/dev/hptmv/global.h projects/zfsd/head/sys/dev/hptmv/hptproc.c projects/zfsd/head/sys/dev/hptmv/ioctl.c projects/zfsd/head/sys/dev/hptmv/mv.c projects/zfsd/head/sys/dev/hptmv/osbsd.h projects/zfsd/head/sys/dev/hptnr/hptnr_os_bsd.c projects/zfsd/head/sys/dev/hptnr/hptnr_osm_bsd.c projects/zfsd/head/sys/dev/hptnr/os_bsd.h projects/zfsd/head/sys/dev/hptrr/hptrr_os_bsd.c projects/zfsd/head/sys/dev/hptrr/hptrr_osm_bsd.c projects/zfsd/head/sys/dev/hptrr/os_bsd.h projects/zfsd/head/sys/dev/hwpmc/hwpmc_core.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_intel.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_logging.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_mod.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_powerpc.c projects/zfsd/head/sys/dev/hwpmc/pmc_events.h projects/zfsd/head/sys/dev/i40e/i40e.h projects/zfsd/head/sys/dev/i40e/i40e_adminq.c projects/zfsd/head/sys/dev/i40e/i40e_adminq.h projects/zfsd/head/sys/dev/i40e/i40e_adminq_cmd.h projects/zfsd/head/sys/dev/i40e/i40e_common.c projects/zfsd/head/sys/dev/i40e/i40e_hmc.h projects/zfsd/head/sys/dev/i40e/i40e_lan_hmc.c projects/zfsd/head/sys/dev/i40e/i40e_lan_hmc.h projects/zfsd/head/sys/dev/i40e/i40e_nvm.c projects/zfsd/head/sys/dev/i40e/i40e_osdep.c projects/zfsd/head/sys/dev/i40e/i40e_prototype.h projects/zfsd/head/sys/dev/i40e/i40e_register.h projects/zfsd/head/sys/dev/i40e/i40e_register_x710_int.h projects/zfsd/head/sys/dev/i40e/i40e_txrx.c projects/zfsd/head/sys/dev/i40e/i40e_type.h projects/zfsd/head/sys/dev/i40e/if_i40e.c projects/zfsd/head/sys/dev/iicbus/iic.c projects/zfsd/head/sys/dev/isci/isci.h projects/zfsd/head/sys/dev/isci/isci_controller.c projects/zfsd/head/sys/dev/isci/isci_sysctl.c projects/zfsd/head/sys/dev/isci/isci_task_request.c projects/zfsd/head/sys/dev/isci/scil/scic_sds_stp_request.c projects/zfsd/head/sys/dev/iscsi/icl.c projects/zfsd/head/sys/dev/iscsi/icl_proxy.c projects/zfsd/head/sys/dev/iscsi/iscsi.c projects/zfsd/head/sys/dev/iscsi/iscsi.h projects/zfsd/head/sys/dev/iscsi/iscsi_ioctl.h projects/zfsd/head/sys/dev/iscsi_initiator/isc_soc.c projects/zfsd/head/sys/dev/iscsi_initiator/iscsi.c projects/zfsd/head/sys/dev/isp/isp_freebsd.c projects/zfsd/head/sys/dev/isp/isp_pci.c projects/zfsd/head/sys/dev/iwn/if_iwn.c projects/zfsd/head/sys/dev/iwn/if_iwn_chip_cfg.h projects/zfsd/head/sys/dev/iwn/if_iwn_devid.h projects/zfsd/head/sys/dev/iwn/if_iwnvar.h projects/zfsd/head/sys/dev/ixgb/if_ixgb.c projects/zfsd/head/sys/dev/ixgbe/ixgbe.c projects/zfsd/head/sys/dev/ixgbe/ixv.c projects/zfsd/head/sys/dev/jme/if_jme.c projects/zfsd/head/sys/dev/lge/if_lge.c projects/zfsd/head/sys/dev/malo/if_malo.c projects/zfsd/head/sys/dev/malo/if_malo_pci.c projects/zfsd/head/sys/dev/malo/if_malohal.c projects/zfsd/head/sys/dev/md/md.c projects/zfsd/head/sys/dev/mfi/mfi.c projects/zfsd/head/sys/dev/mfi/mfi_cam.c projects/zfsd/head/sys/dev/mfi/mfi_disk.c projects/zfsd/head/sys/dev/mfi/mfi_pci.c projects/zfsd/head/sys/dev/mfi/mfi_syspd.c projects/zfsd/head/sys/dev/mfi/mfi_tbolt.c projects/zfsd/head/sys/dev/mfi/mfivar.h projects/zfsd/head/sys/dev/mge/if_mge.c projects/zfsd/head/sys/dev/mii/brgphy.c projects/zfsd/head/sys/dev/mii/e1000phy.c projects/zfsd/head/sys/dev/mii/ip1000phy.c projects/zfsd/head/sys/dev/mii/jmphy.c projects/zfsd/head/sys/dev/mii/mii.c projects/zfsd/head/sys/dev/mii/miivar.h projects/zfsd/head/sys/dev/mii/nsphy.c projects/zfsd/head/sys/dev/mii/rgephy.c projects/zfsd/head/sys/dev/mii/truephy.c projects/zfsd/head/sys/dev/mlx/mlx.c projects/zfsd/head/sys/dev/mmc/mmc.c projects/zfsd/head/sys/dev/mmc/mmcsd.c projects/zfsd/head/sys/dev/mmc/mmcvar.h projects/zfsd/head/sys/dev/mpr/mpr_sas.c projects/zfsd/head/sys/dev/mps/mps.c projects/zfsd/head/sys/dev/mps/mps_mapping.c projects/zfsd/head/sys/dev/mps/mps_sas.c projects/zfsd/head/sys/dev/mps/mps_sas.h projects/zfsd/head/sys/dev/mps/mps_sas_lsi.c projects/zfsd/head/sys/dev/mps/mps_user.c projects/zfsd/head/sys/dev/mps/mpsvar.h projects/zfsd/head/sys/dev/mpt/mpt_cam.c projects/zfsd/head/sys/dev/mrsas/mrsas_fp.c projects/zfsd/head/sys/dev/msk/if_msk.c projects/zfsd/head/sys/dev/mvs/mvs.c projects/zfsd/head/sys/dev/mwl/if_mwl.c projects/zfsd/head/sys/dev/mwl/mwlhal.c projects/zfsd/head/sys/dev/nand/nand.c projects/zfsd/head/sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c projects/zfsd/head/sys/dev/netfpga10g/nf10bmac/if_nf10bmac_fdt.c projects/zfsd/head/sys/dev/netmap/if_em_netmap.h projects/zfsd/head/sys/dev/netmap/if_igb_netmap.h projects/zfsd/head/sys/dev/netmap/if_lem_netmap.h projects/zfsd/head/sys/dev/netmap/if_re_netmap.h projects/zfsd/head/sys/dev/netmap/ixgbe_netmap.h projects/zfsd/head/sys/dev/netmap/netmap.c projects/zfsd/head/sys/dev/netmap/netmap_freebsd.c projects/zfsd/head/sys/dev/netmap/netmap_generic.c projects/zfsd/head/sys/dev/netmap/netmap_kern.h projects/zfsd/head/sys/dev/netmap/netmap_mbq.c projects/zfsd/head/sys/dev/netmap/netmap_mbq.h projects/zfsd/head/sys/dev/netmap/netmap_mem2.c projects/zfsd/head/sys/dev/netmap/netmap_mem2.h projects/zfsd/head/sys/dev/netmap/netmap_offloadings.c projects/zfsd/head/sys/dev/netmap/netmap_pipe.c projects/zfsd/head/sys/dev/netmap/netmap_vale.c projects/zfsd/head/sys/dev/nfe/if_nfe.c projects/zfsd/head/sys/dev/nge/if_nge.c projects/zfsd/head/sys/dev/nvme/nvme_ctrlr_cmd.c projects/zfsd/head/sys/dev/nxge/xge-osdep.h projects/zfsd/head/sys/dev/oce/oce_hw.c projects/zfsd/head/sys/dev/oce/oce_hw.h projects/zfsd/head/sys/dev/oce/oce_if.c projects/zfsd/head/sys/dev/oce/oce_if.h projects/zfsd/head/sys/dev/oce/oce_mbox.c projects/zfsd/head/sys/dev/oce/oce_util.c projects/zfsd/head/sys/dev/ofw/ofwbus.c projects/zfsd/head/sys/dev/pccard/pccard.c projects/zfsd/head/sys/dev/pccbb/pccbb.c projects/zfsd/head/sys/dev/pccbb/pccbb_isa.c projects/zfsd/head/sys/dev/pccbb/pccbb_pci.c projects/zfsd/head/sys/dev/pci/pci.c projects/zfsd/head/sys/dev/pci/pci_if.m projects/zfsd/head/sys/dev/pci/pci_pci.c projects/zfsd/head/sys/dev/pci/pci_private.h projects/zfsd/head/sys/dev/pci/pcivar.h projects/zfsd/head/sys/dev/pci/vga_pci.c projects/zfsd/head/sys/dev/puc/puc_pci.c projects/zfsd/head/sys/dev/qlxgb/qla_os.c projects/zfsd/head/sys/dev/qlxgbe/ql_os.c projects/zfsd/head/sys/dev/qlxge/qls_os.c projects/zfsd/head/sys/dev/random/ivy.c projects/zfsd/head/sys/dev/re/if_re.c projects/zfsd/head/sys/dev/rt/if_rt.c projects/zfsd/head/sys/dev/safe/safe.c projects/zfsd/head/sys/dev/sdhci/sdhci.c projects/zfsd/head/sys/dev/sdhci/sdhci_pci.c projects/zfsd/head/sys/dev/sf/if_sf.c projects/zfsd/head/sys/dev/sge/if_sge.c projects/zfsd/head/sys/dev/si/si.c projects/zfsd/head/sys/dev/sio/sio.c projects/zfsd/head/sys/dev/sis/if_sis.c projects/zfsd/head/sys/dev/sk/if_sk.c projects/zfsd/head/sys/dev/sound/pci/atiixp.c projects/zfsd/head/sys/dev/sound/pci/emu10k1.c projects/zfsd/head/sys/dev/sound/pci/emu10kx.c projects/zfsd/head/sys/dev/sound/pci/envy24.c projects/zfsd/head/sys/dev/sound/pci/envy24ht.c projects/zfsd/head/sys/dev/sound/pci/hda/hdaa_patches.c projects/zfsd/head/sys/dev/sound/pci/hda/hdac.c projects/zfsd/head/sys/dev/sound/pci/hda/hdac.h projects/zfsd/head/sys/dev/sound/pci/hdspe.c projects/zfsd/head/sys/dev/sound/pci/maestro.c projects/zfsd/head/sys/dev/sound/pci/via8233.c projects/zfsd/head/sys/dev/sound/pci/via82c686.c projects/zfsd/head/sys/dev/sound/pcm/buffer.c projects/zfsd/head/sys/dev/sound/pcm/channel.c projects/zfsd/head/sys/dev/sound/pcm/feeder_chain.c projects/zfsd/head/sys/dev/sound/pcm/feeder_eq.c projects/zfsd/head/sys/dev/sound/pcm/feeder_rate.c projects/zfsd/head/sys/dev/sound/pcm/mixer.c projects/zfsd/head/sys/dev/sound/pcm/pcm.h projects/zfsd/head/sys/dev/sound/pcm/sound.c projects/zfsd/head/sys/dev/sound/usb/uaudio.c projects/zfsd/head/sys/dev/ste/if_ste.c projects/zfsd/head/sys/dev/stge/if_stge.c projects/zfsd/head/sys/dev/sym/sym_hipd.c projects/zfsd/head/sys/dev/syscons/syscons.c projects/zfsd/head/sys/dev/syscons/sysmouse.c projects/zfsd/head/sys/dev/terasic/mtl/terasic_mtl.h projects/zfsd/head/sys/dev/ti/if_ti.c projects/zfsd/head/sys/dev/trm/trm.c projects/zfsd/head/sys/dev/tsec/if_tsec_fdt.c projects/zfsd/head/sys/dev/tws/tws.c projects/zfsd/head/sys/dev/tx/if_tx.c projects/zfsd/head/sys/dev/txp/if_txp.c projects/zfsd/head/sys/dev/uart/uart_bus_pci.c projects/zfsd/head/sys/dev/uart/uart_cpu_powerpc.c projects/zfsd/head/sys/dev/uart/uart_dev_ns8250.c projects/zfsd/head/sys/dev/ubsec/ubsec.c projects/zfsd/head/sys/dev/usb/controller/at91dci.c projects/zfsd/head/sys/dev/usb/controller/at91dci.h projects/zfsd/head/sys/dev/usb/controller/at91dci_atmelarm.c projects/zfsd/head/sys/dev/usb/controller/at91dci_fdt.c projects/zfsd/head/sys/dev/usb/controller/dwc_otg.c projects/zfsd/head/sys/dev/usb/controller/dwc_otg.h projects/zfsd/head/sys/dev/usb/controller/ehci.c projects/zfsd/head/sys/dev/usb/controller/musb_otg.c projects/zfsd/head/sys/dev/usb/controller/musb_otg.h projects/zfsd/head/sys/dev/usb/controller/ohci.c projects/zfsd/head/sys/dev/usb/controller/saf1761_otg.c projects/zfsd/head/sys/dev/usb/controller/saf1761_otg.h projects/zfsd/head/sys/dev/usb/controller/saf1761_otg_fdt.c projects/zfsd/head/sys/dev/usb/controller/saf1761_otg_reg.h projects/zfsd/head/sys/dev/usb/controller/uhci.c projects/zfsd/head/sys/dev/usb/controller/usb_controller.c projects/zfsd/head/sys/dev/usb/controller/uss820dci.c projects/zfsd/head/sys/dev/usb/controller/uss820dci.h projects/zfsd/head/sys/dev/usb/controller/uss820dci_atmelarm.c projects/zfsd/head/sys/dev/usb/controller/xhci.c projects/zfsd/head/sys/dev/usb/controller/xhci.h projects/zfsd/head/sys/dev/usb/controller/xhci_pci.c projects/zfsd/head/sys/dev/usb/controller/xhcireg.h projects/zfsd/head/sys/dev/usb/gadget/g_audio.c projects/zfsd/head/sys/dev/usb/input/uhid.c projects/zfsd/head/sys/dev/usb/input/ukbd.c projects/zfsd/head/sys/dev/usb/net/if_axge.c projects/zfsd/head/sys/dev/usb/net/if_axgereg.h projects/zfsd/head/sys/dev/usb/net/if_cdce.c projects/zfsd/head/sys/dev/usb/net/uhso.c projects/zfsd/head/sys/dev/usb/quirk/usb_quirk.c projects/zfsd/head/sys/dev/usb/quirk/usb_quirk.h projects/zfsd/head/sys/dev/usb/serial/u3g.c projects/zfsd/head/sys/dev/usb/serial/uftdi.c projects/zfsd/head/sys/dev/usb/serial/umcs.c projects/zfsd/head/sys/dev/usb/serial/usb_serial.c projects/zfsd/head/sys/dev/usb/serial/usb_serial.h projects/zfsd/head/sys/dev/usb/storage/umass.c projects/zfsd/head/sys/dev/usb/template/usb_template.c projects/zfsd/head/sys/dev/usb/template/usb_template.h projects/zfsd/head/sys/dev/usb/usb_busdma.h projects/zfsd/head/sys/dev/usb/usb_debug.c projects/zfsd/head/sys/dev/usb/usb_dev.c projects/zfsd/head/sys/dev/usb/usb_device.c projects/zfsd/head/sys/dev/usb/usb_device.h projects/zfsd/head/sys/dev/usb/usb_freebsd.h projects/zfsd/head/sys/dev/usb/usb_freebsd_loader.h projects/zfsd/head/sys/dev/usb/usb_generic.c projects/zfsd/head/sys/dev/usb/usb_hub.c projects/zfsd/head/sys/dev/usb/usb_hub.h projects/zfsd/head/sys/dev/usb/usb_ioctl.h projects/zfsd/head/sys/dev/usb/usb_msctest.c projects/zfsd/head/sys/dev/usb/usb_msctest.h projects/zfsd/head/sys/dev/usb/usb_process.c projects/zfsd/head/sys/dev/usb/usbdevs projects/zfsd/head/sys/dev/usb/usbdi.h projects/zfsd/head/sys/dev/usb/wlan/if_rsu.c projects/zfsd/head/sys/dev/usb/wlan/if_rsureg.h projects/zfsd/head/sys/dev/usb/wlan/if_rum.c projects/zfsd/head/sys/dev/usb/wlan/if_run.c projects/zfsd/head/sys/dev/usb/wlan/if_uath.c projects/zfsd/head/sys/dev/usb/wlan/if_upgt.c projects/zfsd/head/sys/dev/usb/wlan/if_ural.c projects/zfsd/head/sys/dev/usb/wlan/if_urtw.c projects/zfsd/head/sys/dev/usb/wlan/if_urtwn.c projects/zfsd/head/sys/dev/usb/wlan/if_zyd.c projects/zfsd/head/sys/dev/usb/wlan/if_zydreg.h projects/zfsd/head/sys/dev/vge/if_vge.c projects/zfsd/head/sys/dev/virtio/balloon/virtio_balloon.c projects/zfsd/head/sys/dev/virtio/block/virtio_blk.c projects/zfsd/head/sys/dev/virtio/network/if_vtnet.c projects/zfsd/head/sys/dev/virtio/network/if_vtnetvar.h projects/zfsd/head/sys/dev/virtio/pci/virtio_pci.c projects/zfsd/head/sys/dev/virtio/pci/virtio_pci.h projects/zfsd/head/sys/dev/virtio/virtio.c projects/zfsd/head/sys/dev/virtio/virtio.h projects/zfsd/head/sys/dev/virtio/virtqueue.c projects/zfsd/head/sys/dev/virtio/virtqueue.h projects/zfsd/head/sys/dev/vmware/vmxnet3/if_vmx.c projects/zfsd/head/sys/dev/vmware/vmxnet3/if_vmxvar.h projects/zfsd/head/sys/dev/vr/if_vr.c projects/zfsd/head/sys/dev/vt/colors/vt_termcolors.c projects/zfsd/head/sys/dev/vt/colors/vt_termcolors.h projects/zfsd/head/sys/dev/vt/font/vt_font_default.c projects/zfsd/head/sys/dev/vt/font/vt_mouse_cursor.c projects/zfsd/head/sys/dev/vt/hw/efifb/efifb.c projects/zfsd/head/sys/dev/vt/hw/fb/vt_early_fb.c projects/zfsd/head/sys/dev/vt/hw/fb/vt_fb.c projects/zfsd/head/sys/dev/vt/hw/fb/vt_fb.h projects/zfsd/head/sys/dev/vt/hw/ofwfb/ofwfb.c projects/zfsd/head/sys/dev/vt/vt.h projects/zfsd/head/sys/dev/vt/vt_buf.c projects/zfsd/head/sys/dev/vt/vt_consolectl.c projects/zfsd/head/sys/dev/vt/vt_core.c projects/zfsd/head/sys/dev/vt/vt_sysmouse.c projects/zfsd/head/sys/dev/vte/if_vte.c projects/zfsd/head/sys/dev/vxge/vxge-osdep.h projects/zfsd/head/sys/dev/wb/if_wb.c projects/zfsd/head/sys/dev/wpi/if_wpi.c projects/zfsd/head/sys/dev/xen/balloon/balloon.c projects/zfsd/head/sys/dev/xen/blkfront/blkfront.c projects/zfsd/head/sys/dev/xen/console/console.c projects/zfsd/head/sys/dev/xen/console/xencons_ring.c projects/zfsd/head/sys/dev/xen/control/control.c projects/zfsd/head/sys/dev/xen/timer/timer.c projects/zfsd/head/sys/dev/xen/xenpci/xenpci.c projects/zfsd/head/sys/dev/xen/xenpci/xenpcivar.h projects/zfsd/head/sys/fs/cd9660/cd9660_lookup.c projects/zfsd/head/sys/fs/devfs/devfs_vnops.c projects/zfsd/head/sys/fs/ext2fs/ext2_vnops.c projects/zfsd/head/sys/fs/msdosfs/msdosfs_lookup.c projects/zfsd/head/sys/fs/msdosfs/msdosfs_vnops.c projects/zfsd/head/sys/fs/nandfs/nandfs.h projects/zfsd/head/sys/fs/nandfs/nandfs_subr.c projects/zfsd/head/sys/fs/nandfs/nandfs_vfsops.c projects/zfsd/head/sys/fs/nandfs/nandfs_vnops.c projects/zfsd/head/sys/fs/nfs/nfs.h projects/zfsd/head/sys/fs/nfs/nfs_commonkrpc.c projects/zfsd/head/sys/fs/nfs/nfs_commonport.c projects/zfsd/head/sys/fs/nfs/nfs_commonsubs.c projects/zfsd/head/sys/fs/nfs/nfs_var.h projects/zfsd/head/sys/fs/nfs/nfsclstate.h projects/zfsd/head/sys/fs/nfs/nfsdport.h projects/zfsd/head/sys/fs/nfs/nfsport.h projects/zfsd/head/sys/fs/nfs/nfsproto.h projects/zfsd/head/sys/fs/nfs/nfsrvcache.h projects/zfsd/head/sys/fs/nfs/nfsrvstate.h projects/zfsd/head/sys/fs/nfsclient/nfs_clstate.c projects/zfsd/head/sys/fs/nfsclient/nfs_clvnops.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdcache.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdkrpc.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdport.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdserv.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdsocket.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdstate.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdsubs.c projects/zfsd/head/sys/fs/nullfs/null_vnops.c projects/zfsd/head/sys/fs/tmpfs/tmpfs.h projects/zfsd/head/sys/fs/tmpfs/tmpfs_fifoops.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_fifoops.h projects/zfsd/head/sys/fs/tmpfs/tmpfs_subr.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_vfsops.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_vnops.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_vnops.h projects/zfsd/head/sys/gdb/gdb_cons.c projects/zfsd/head/sys/geom/cache/g_cache.c projects/zfsd/head/sys/geom/concat/g_concat.c projects/zfsd/head/sys/geom/eli/g_eli.c projects/zfsd/head/sys/geom/eli/g_eli_key_cache.c projects/zfsd/head/sys/geom/gate/g_gate.c projects/zfsd/head/sys/geom/geom_dev.c projects/zfsd/head/sys/geom/geom_disk.c projects/zfsd/head/sys/geom/geom_kern.c projects/zfsd/head/sys/geom/journal/g_journal.c projects/zfsd/head/sys/geom/label/g_label.c projects/zfsd/head/sys/geom/label/g_label.h projects/zfsd/head/sys/geom/linux_lvm/g_linux_lvm.c projects/zfsd/head/sys/geom/mirror/g_mirror.c projects/zfsd/head/sys/geom/part/g_part.c projects/zfsd/head/sys/geom/part/g_part.h projects/zfsd/head/sys/geom/part/g_part_apm.c projects/zfsd/head/sys/geom/part/g_part_bsd.c projects/zfsd/head/sys/geom/part/g_part_gpt.c projects/zfsd/head/sys/geom/part/g_part_ldm.c projects/zfsd/head/sys/geom/part/g_part_mbr.c projects/zfsd/head/sys/geom/part/g_part_pc98.c projects/zfsd/head/sys/geom/raid/g_raid.c projects/zfsd/head/sys/geom/raid/g_raid.h projects/zfsd/head/sys/geom/raid/tr_raid1.c projects/zfsd/head/sys/geom/raid/tr_raid1e.c projects/zfsd/head/sys/geom/raid3/g_raid3.c projects/zfsd/head/sys/geom/shsec/g_shsec.c projects/zfsd/head/sys/geom/stripe/g_stripe.c projects/zfsd/head/sys/geom/uzip/g_uzip.c projects/zfsd/head/sys/geom/vinum/geom_vinum.c projects/zfsd/head/sys/geom/virstor/g_virstor.c projects/zfsd/head/sys/i386/acpica/acpi_machdep.c projects/zfsd/head/sys/i386/acpica/acpi_wakecode.S projects/zfsd/head/sys/i386/bios/apm.c projects/zfsd/head/sys/i386/conf/GENERIC projects/zfsd/head/sys/i386/conf/NOTES projects/zfsd/head/sys/i386/conf/PAE projects/zfsd/head/sys/i386/conf/XEN projects/zfsd/head/sys/i386/i386/i686_mem.c projects/zfsd/head/sys/i386/i386/machdep.c projects/zfsd/head/sys/i386/i386/mp_machdep.c projects/zfsd/head/sys/i386/i386/mp_watchdog.c projects/zfsd/head/sys/i386/i386/pmap.c projects/zfsd/head/sys/i386/i386/sys_machdep.c projects/zfsd/head/sys/i386/i386/trap.c projects/zfsd/head/sys/i386/i386/vm_machdep.c projects/zfsd/head/sys/i386/include/cpu.h projects/zfsd/head/sys/i386/include/npx.h projects/zfsd/head/sys/i386/include/sf_buf.h projects/zfsd/head/sys/i386/include/vmparam.h projects/zfsd/head/sys/i386/isa/npx.c projects/zfsd/head/sys/i386/pci/pci_cfgreg.c projects/zfsd/head/sys/i386/pci/pci_pir.c projects/zfsd/head/sys/i386/xen/pmap.c projects/zfsd/head/sys/kern/imgact_elf.c projects/zfsd/head/sys/kern/kern_clocksource.c projects/zfsd/head/sys/kern/kern_cons.c projects/zfsd/head/sys/kern/kern_cpu.c projects/zfsd/head/sys/kern/kern_cpuset.c projects/zfsd/head/sys/kern/kern_descrip.c projects/zfsd/head/sys/kern/kern_dtrace.c projects/zfsd/head/sys/kern/kern_event.c projects/zfsd/head/sys/kern/kern_exec.c projects/zfsd/head/sys/kern/kern_exit.c projects/zfsd/head/sys/kern/kern_fork.c projects/zfsd/head/sys/kern/kern_intr.c projects/zfsd/head/sys/kern/kern_ktr.c projects/zfsd/head/sys/kern/kern_ktrace.c projects/zfsd/head/sys/kern/kern_linker.c projects/zfsd/head/sys/kern/kern_lockf.c projects/zfsd/head/sys/kern/kern_malloc.c projects/zfsd/head/sys/kern/kern_mbuf.c projects/zfsd/head/sys/kern/kern_mib.c projects/zfsd/head/sys/kern/kern_ntptime.c projects/zfsd/head/sys/kern/kern_osd.c projects/zfsd/head/sys/kern/kern_pmc.c projects/zfsd/head/sys/kern/kern_poll.c projects/zfsd/head/sys/kern/kern_priv.c projects/zfsd/head/sys/kern/kern_proc.c projects/zfsd/head/sys/kern/kern_shutdown.c projects/zfsd/head/sys/kern/kern_sig.c projects/zfsd/head/sys/kern/kern_sysctl.c projects/zfsd/head/sys/kern/kern_tc.c projects/zfsd/head/sys/kern/kern_thread.c projects/zfsd/head/sys/kern/kern_time.c projects/zfsd/head/sys/kern/kern_timeout.c projects/zfsd/head/sys/kern/link_elf.c projects/zfsd/head/sys/kern/sched_ule.c projects/zfsd/head/sys/kern/subr_bus.c projects/zfsd/head/sys/kern/subr_capability.c projects/zfsd/head/sys/kern/subr_kdb.c projects/zfsd/head/sys/kern/subr_mbpool.c projects/zfsd/head/sys/kern/subr_msgbuf.c projects/zfsd/head/sys/kern/subr_param.c projects/zfsd/head/sys/kern/subr_prf.c projects/zfsd/head/sys/kern/subr_rman.c projects/zfsd/head/sys/kern/subr_sleepqueue.c projects/zfsd/head/sys/kern/subr_smp.c projects/zfsd/head/sys/kern/subr_taskqueue.c projects/zfsd/head/sys/kern/subr_terminal.c projects/zfsd/head/sys/kern/subr_witness.c projects/zfsd/head/sys/kern/sys_capability.c projects/zfsd/head/sys/kern/sys_generic.c projects/zfsd/head/sys/kern/sys_pipe.c projects/zfsd/head/sys/kern/sys_process.c projects/zfsd/head/sys/kern/sysv_msg.c projects/zfsd/head/sys/kern/sysv_sem.c projects/zfsd/head/sys/kern/sysv_shm.c projects/zfsd/head/sys/kern/tty.c projects/zfsd/head/sys/kern/uipc_accf.c projects/zfsd/head/sys/kern/uipc_mbuf.c projects/zfsd/head/sys/kern/uipc_shm.c projects/zfsd/head/sys/kern/uipc_sockbuf.c projects/zfsd/head/sys/kern/uipc_socket.c projects/zfsd/head/sys/kern/uipc_syscalls.c projects/zfsd/head/sys/kern/uipc_usrreq.c projects/zfsd/head/sys/kern/vfs_bio.c projects/zfsd/head/sys/kern/vfs_cache.c projects/zfsd/head/sys/kern/vfs_init.c projects/zfsd/head/sys/kern/vfs_lookup.c projects/zfsd/head/sys/kern/vfs_mount.c projects/zfsd/head/sys/kern/vfs_mountroot.c projects/zfsd/head/sys/kern/vfs_subr.c projects/zfsd/head/sys/kern/vfs_syscalls.c projects/zfsd/head/sys/kern/vfs_vnops.c projects/zfsd/head/sys/libkern/arm/divsi3.S projects/zfsd/head/sys/libkern/iconv.c projects/zfsd/head/sys/libkern/iconv_ucs.c projects/zfsd/head/sys/mips/atheros/if_arge.c projects/zfsd/head/sys/mips/atheros/uart_dev_ar933x.c projects/zfsd/head/sys/mips/cavium/usb/octusb.c projects/zfsd/head/sys/mips/conf/AR933X_BASE projects/zfsd/head/sys/mips/conf/BERI_DE4_BASE projects/zfsd/head/sys/mips/conf/BERI_NETFPGA_MDROOT projects/zfsd/head/sys/mips/idt/if_kr.c projects/zfsd/head/sys/mips/include/elf.h projects/zfsd/head/sys/mips/include/sf_buf.h projects/zfsd/head/sys/mips/include/vmparam.h projects/zfsd/head/sys/mips/mips/dump_machdep.c projects/zfsd/head/sys/mips/mips/pmap.c projects/zfsd/head/sys/mips/mips/trap.c projects/zfsd/head/sys/mips/mips/vm_machdep.c projects/zfsd/head/sys/mips/rmi/rootfs_list.txt projects/zfsd/head/sys/mips/rt305x/uart_dev_rt305x.c projects/zfsd/head/sys/modules/Makefile projects/zfsd/head/sys/modules/acl_nfs4/Makefile projects/zfsd/head/sys/modules/acl_posix1e/Makefile projects/zfsd/head/sys/modules/acpi/acpi/Makefile projects/zfsd/head/sys/modules/agp/Makefile projects/zfsd/head/sys/modules/aic7xxx/ahc/Makefile projects/zfsd/head/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile projects/zfsd/head/sys/modules/aic7xxx/ahd/Makefile projects/zfsd/head/sys/modules/alq/Makefile projects/zfsd/head/sys/modules/an/Makefile projects/zfsd/head/sys/modules/arcnet/Makefile projects/zfsd/head/sys/modules/bios/smapi/Makefile projects/zfsd/head/sys/modules/bxe/Makefile projects/zfsd/head/sys/modules/cam/Makefile projects/zfsd/head/sys/modules/carp/Makefile projects/zfsd/head/sys/modules/cc/cc_cdg/Makefile projects/zfsd/head/sys/modules/cc/cc_chd/Makefile projects/zfsd/head/sys/modules/cc/cc_cubic/Makefile projects/zfsd/head/sys/modules/cc/cc_hd/Makefile projects/zfsd/head/sys/modules/cc/cc_htcp/Makefile projects/zfsd/head/sys/modules/cc/cc_vegas/Makefile projects/zfsd/head/sys/modules/ctl/Makefile projects/zfsd/head/sys/modules/cxgb/Makefile projects/zfsd/head/sys/modules/cxgb/cxgb/Makefile projects/zfsd/head/sys/modules/cxgb/iw_cxgb/Makefile projects/zfsd/head/sys/modules/cxgb/tom/Makefile projects/zfsd/head/sys/modules/cxgbe/Makefile projects/zfsd/head/sys/modules/cxgbe/if_cxgbe/Makefile projects/zfsd/head/sys/modules/cxgbe/iw_cxgbe/Makefile projects/zfsd/head/sys/modules/cxgbe/t4_firmware/Makefile projects/zfsd/head/sys/modules/cxgbe/t5_firmware/Makefile projects/zfsd/head/sys/modules/cxgbe/tom/Makefile projects/zfsd/head/sys/modules/dpt/Makefile projects/zfsd/head/sys/modules/drm/Makefile projects/zfsd/head/sys/modules/drm2/Makefile projects/zfsd/head/sys/modules/drm2/radeonkms/Makefile projects/zfsd/head/sys/modules/dtrace/Makefile projects/zfsd/head/sys/modules/dtrace/dtrace/Makefile projects/zfsd/head/sys/modules/dtrace/fasttrap/Makefile projects/zfsd/head/sys/modules/dtrace/fbt/Makefile projects/zfsd/head/sys/modules/dummynet/Makefile projects/zfsd/head/sys/modules/em/Makefile projects/zfsd/head/sys/modules/en/Makefile projects/zfsd/head/sys/modules/ep/Makefile projects/zfsd/head/sys/modules/fatm/Makefile projects/zfsd/head/sys/modules/firewire/fwip/Makefile projects/zfsd/head/sys/modules/geom/Makefile projects/zfsd/head/sys/modules/geom/geom_part/Makefile projects/zfsd/head/sys/modules/hatm/Makefile projects/zfsd/head/sys/modules/hwpmc/Makefile projects/zfsd/head/sys/modules/i2c/controllers/Makefile projects/zfsd/head/sys/modules/i40e/Makefile projects/zfsd/head/sys/modules/ibcore/Makefile projects/zfsd/head/sys/modules/if_bridge/Makefile projects/zfsd/head/sys/modules/if_disc/Makefile projects/zfsd/head/sys/modules/if_faith/Makefile projects/zfsd/head/sys/modules/if_gif/Makefile projects/zfsd/head/sys/modules/if_gre/Makefile projects/zfsd/head/sys/modules/if_lagg/Makefile projects/zfsd/head/sys/modules/if_stf/Makefile projects/zfsd/head/sys/modules/if_tap/Makefile projects/zfsd/head/sys/modules/if_tun/Makefile projects/zfsd/head/sys/modules/igb/Makefile projects/zfsd/head/sys/modules/ip6_mroute_mod/Makefile projects/zfsd/head/sys/modules/ip_mroute_mod/Makefile projects/zfsd/head/sys/modules/ipdivert/Makefile projects/zfsd/head/sys/modules/ipfilter/Makefile projects/zfsd/head/sys/modules/ipfw/Makefile projects/zfsd/head/sys/modules/ipoib/Makefile projects/zfsd/head/sys/modules/ixgbe/Makefile projects/zfsd/head/sys/modules/khelp/h_ertt/Makefile projects/zfsd/head/sys/modules/krpc/Makefile projects/zfsd/head/sys/modules/linux/Makefile projects/zfsd/head/sys/modules/lmc/Makefile projects/zfsd/head/sys/modules/mlx4/Makefile projects/zfsd/head/sys/modules/mlx4ib/Makefile projects/zfsd/head/sys/modules/mlxen/Makefile projects/zfsd/head/sys/modules/mthca/Makefile projects/zfsd/head/sys/modules/netfpga10g/nf10bmac/Makefile projects/zfsd/head/sys/modules/netgraph/Makefile projects/zfsd/head/sys/modules/netgraph/gif/Makefile projects/zfsd/head/sys/modules/netgraph/iface/Makefile projects/zfsd/head/sys/modules/netgraph/ipfw/Makefile projects/zfsd/head/sys/modules/netgraph/netflow/Makefile projects/zfsd/head/sys/modules/nfscl/Makefile projects/zfsd/head/sys/modules/nfsclient/Makefile projects/zfsd/head/sys/modules/nfslockd/Makefile projects/zfsd/head/sys/modules/nfsserver/Makefile projects/zfsd/head/sys/modules/patm/Makefile projects/zfsd/head/sys/modules/pf/Makefile projects/zfsd/head/sys/modules/pflog/Makefile projects/zfsd/head/sys/modules/pfsync/Makefile projects/zfsd/head/sys/modules/ppc/Makefile projects/zfsd/head/sys/modules/siftr/Makefile projects/zfsd/head/sys/modules/smbfs/Makefile projects/zfsd/head/sys/modules/snc/Makefile projects/zfsd/head/sys/modules/sound/driver/Makefile projects/zfsd/head/sys/modules/sound/driver/maestro/Makefile projects/zfsd/head/sys/modules/sound/sound/Makefile projects/zfsd/head/sys/modules/sppp/Makefile projects/zfsd/head/sys/modules/svr4/README projects/zfsd/head/sys/modules/trm/Makefile projects/zfsd/head/sys/modules/ufs/Makefile projects/zfsd/head/sys/modules/usb/Makefile projects/zfsd/head/sys/modules/usb/template/Makefile projects/zfsd/head/sys/modules/virtio/network/Makefile projects/zfsd/head/sys/modules/vmware/vmxnet3/Makefile projects/zfsd/head/sys/modules/vx/Makefile projects/zfsd/head/sys/modules/wlan/Makefile projects/zfsd/head/sys/modules/wlan_acl/Makefile projects/zfsd/head/sys/modules/wlan_amrr/Makefile projects/zfsd/head/sys/modules/wlan_ccmp/Makefile projects/zfsd/head/sys/modules/wlan_rssadapt/Makefile projects/zfsd/head/sys/modules/wlan_tkip/Makefile projects/zfsd/head/sys/modules/wlan_wep/Makefile projects/zfsd/head/sys/modules/wlan_xauth/Makefile projects/zfsd/head/sys/modules/zfs/Makefile projects/zfsd/head/sys/net/bpf.c projects/zfsd/head/sys/net/bpf_zerocopy.c projects/zfsd/head/sys/net/ieee8023ad_lacp.c projects/zfsd/head/sys/net/if.c projects/zfsd/head/sys/net/if.h projects/zfsd/head/sys/net/if_bridge.c projects/zfsd/head/sys/net/if_gre.c projects/zfsd/head/sys/net/if_lagg.c projects/zfsd/head/sys/net/if_lagg.h projects/zfsd/head/sys/net/if_media.h projects/zfsd/head/sys/net/if_spppsubr.c projects/zfsd/head/sys/net/if_stf.c projects/zfsd/head/sys/net/if_stf.h projects/zfsd/head/sys/net/if_tap.c projects/zfsd/head/sys/net/if_tun.c projects/zfsd/head/sys/net/if_var.h projects/zfsd/head/sys/net/if_vlan.c projects/zfsd/head/sys/net/ifq.h projects/zfsd/head/sys/net/netisr.c projects/zfsd/head/sys/net/netmap.h projects/zfsd/head/sys/net/netmap_user.h projects/zfsd/head/sys/net/pfvar.h projects/zfsd/head/sys/net/route.c projects/zfsd/head/sys/net/rtsock.c projects/zfsd/head/sys/net/sff8472.h projects/zfsd/head/sys/net80211/ieee80211.c projects/zfsd/head/sys/net80211/ieee80211_amrr.c projects/zfsd/head/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/zfsd/head/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/zfsd/head/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c projects/zfsd/head/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c projects/zfsd/head/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c projects/zfsd/head/sys/netgraph/ng_base.c projects/zfsd/head/sys/netgraph/ng_eiface.c projects/zfsd/head/sys/netgraph/ng_mppc.c projects/zfsd/head/sys/netgraph/ng_pipe.c projects/zfsd/head/sys/netgraph/ng_socket.c projects/zfsd/head/sys/netinet/cc/cc.c projects/zfsd/head/sys/netinet/cc/cc_cdg.c projects/zfsd/head/sys/netinet/igmp.c projects/zfsd/head/sys/netinet/igmp_var.h projects/zfsd/head/sys/netinet/in.c projects/zfsd/head/sys/netinet/in.h projects/zfsd/head/sys/netinet/in_gif.c projects/zfsd/head/sys/netinet/in_gif.h projects/zfsd/head/sys/netinet/in_mcast.c projects/zfsd/head/sys/netinet/in_pcb.c projects/zfsd/head/sys/netinet/in_pcb.h projects/zfsd/head/sys/netinet/in_pcbgroup.c projects/zfsd/head/sys/netinet/in_proto.c projects/zfsd/head/sys/netinet/in_rss.c projects/zfsd/head/sys/netinet/in_rss.h projects/zfsd/head/sys/netinet/ip_carp.c projects/zfsd/head/sys/netinet/ip_carp.h projects/zfsd/head/sys/netinet/ip_divert.c projects/zfsd/head/sys/netinet/ip_dummynet.h projects/zfsd/head/sys/netinet/ip_encap.c projects/zfsd/head/sys/netinet/ip_encap.h projects/zfsd/head/sys/netinet/ip_gre.c projects/zfsd/head/sys/netinet/ip_gre.h projects/zfsd/head/sys/netinet/ip_icmp.c projects/zfsd/head/sys/netinet/ip_icmp.h projects/zfsd/head/sys/netinet/ip_input.c projects/zfsd/head/sys/netinet/ip_mroute.c projects/zfsd/head/sys/netinet/ip_options.c projects/zfsd/head/sys/netinet/ip_output.c projects/zfsd/head/sys/netinet/ip_var.h projects/zfsd/head/sys/netinet/pim_var.h projects/zfsd/head/sys/netinet/raw_ip.c projects/zfsd/head/sys/netinet/sctp.h projects/zfsd/head/sys/netinet/sctp_asconf.c projects/zfsd/head/sys/netinet/sctp_auth.c projects/zfsd/head/sys/netinet/sctp_auth.h projects/zfsd/head/sys/netinet/sctp_header.h projects/zfsd/head/sys/netinet/sctp_indata.c projects/zfsd/head/sys/netinet/sctp_input.c projects/zfsd/head/sys/netinet/sctp_os_bsd.h projects/zfsd/head/sys/netinet/sctp_output.c projects/zfsd/head/sys/netinet/sctp_pcb.c projects/zfsd/head/sys/netinet/sctp_pcb.h projects/zfsd/head/sys/netinet/sctp_peeloff.c projects/zfsd/head/sys/netinet/sctp_structs.h projects/zfsd/head/sys/netinet/sctp_sysctl.c projects/zfsd/head/sys/netinet/sctp_sysctl.h projects/zfsd/head/sys/netinet/sctp_timer.c projects/zfsd/head/sys/netinet/sctp_uio.h projects/zfsd/head/sys/netinet/sctp_usrreq.c projects/zfsd/head/sys/netinet/sctp_var.h projects/zfsd/head/sys/netinet/sctputil.c projects/zfsd/head/sys/netinet/sctputil.h projects/zfsd/head/sys/netinet/tcp_input.c projects/zfsd/head/sys/netinet/tcp_output.c projects/zfsd/head/sys/netinet/tcp_subr.c projects/zfsd/head/sys/netinet/tcp_syncache.c projects/zfsd/head/sys/netinet/tcp_timer.c projects/zfsd/head/sys/netinet/tcp_timewait.c projects/zfsd/head/sys/netinet/tcp_var.h projects/zfsd/head/sys/netinet/udp_usrreq.c projects/zfsd/head/sys/netinet/udp_var.h projects/zfsd/head/sys/netinet6/in6.c projects/zfsd/head/sys/netinet6/in6.h projects/zfsd/head/sys/netinet6/in6_gif.c projects/zfsd/head/sys/netinet6/in6_mcast.c projects/zfsd/head/sys/netinet6/in6_pcb.c projects/zfsd/head/sys/netinet6/in6_pcbgroup.c projects/zfsd/head/sys/netinet6/in6_proto.c projects/zfsd/head/sys/netinet6/in6_src.c projects/zfsd/head/sys/netinet6/ip6_forward.c projects/zfsd/head/sys/netinet6/ip6_input.c projects/zfsd/head/sys/netinet6/ip6_ipsec.c projects/zfsd/head/sys/netinet6/ip6_ipsec.h projects/zfsd/head/sys/netinet6/ip6_mroute.c projects/zfsd/head/sys/netinet6/ip6_output.c projects/zfsd/head/sys/netinet6/ip6_var.h projects/zfsd/head/sys/netinet6/ip6protosw.h projects/zfsd/head/sys/netinet6/mld6.c projects/zfsd/head/sys/netinet6/nd6.c projects/zfsd/head/sys/netinet6/nd6_nbr.c projects/zfsd/head/sys/netinet6/raw_ip6.c projects/zfsd/head/sys/netipsec/ipsec.h projects/zfsd/head/sys/netipsec/ipsec6.h projects/zfsd/head/sys/netipsec/ipsec_input.c projects/zfsd/head/sys/netipsec/ipsec_output.c projects/zfsd/head/sys/netipsec/key.c projects/zfsd/head/sys/netipsec/key_debug.c projects/zfsd/head/sys/netipsec/keysock.c projects/zfsd/head/sys/netipsec/keysock.h projects/zfsd/head/sys/netipsec/xform.h projects/zfsd/head/sys/netipsec/xform_ipip.c projects/zfsd/head/sys/netpfil/ipfw/ip_dn_io.c projects/zfsd/head/sys/netpfil/ipfw/ip_dummynet.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw2.c projects/zfsd/head/sys/netpfil/pf/if_pfsync.c projects/zfsd/head/sys/netpfil/pf/pf.c projects/zfsd/head/sys/netpfil/pf/pf.h projects/zfsd/head/sys/netpfil/pf/pf_ioctl.c projects/zfsd/head/sys/netpfil/pf/pf_lb.c projects/zfsd/head/sys/nfs/nfs_fha.c projects/zfsd/head/sys/nfsserver/nfs_serv.c projects/zfsd/head/sys/ofed/drivers/infiniband/hw/mlx4/main.c projects/zfsd/head/sys/ofed/drivers/infiniband/hw/mlx4/mcg.c projects/zfsd/head/sys/ofed/drivers/infiniband/hw/mlx4/qp.c projects/zfsd/head/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/zfsd/head/sys/ofed/drivers/net/mlx4/en_main.c projects/zfsd/head/sys/ofed/drivers/net/mlx4/en_netdev.c projects/zfsd/head/sys/ofed/drivers/net/mlx4/main.c projects/zfsd/head/sys/ofed/include/linux/bitops.h projects/zfsd/head/sys/ofed/include/linux/linux_compat.c projects/zfsd/head/sys/ofed/include/linux/linux_radix.c projects/zfsd/head/sys/ofed/include/linux/module.h projects/zfsd/head/sys/ofed/include/linux/pci.h projects/zfsd/head/sys/pc98/cbus/sio.c projects/zfsd/head/sys/pc98/pc98/canbus.c projects/zfsd/head/sys/pc98/pc98/machdep.c projects/zfsd/head/sys/pc98/pc98/pc98_machdep.c projects/zfsd/head/sys/pci/if_rl.c projects/zfsd/head/sys/powerpc/aim/mmu_oea.c projects/zfsd/head/sys/powerpc/aim/mmu_oea64.c projects/zfsd/head/sys/powerpc/aim/trap.c projects/zfsd/head/sys/powerpc/booke/pmap.c projects/zfsd/head/sys/powerpc/include/endian.h projects/zfsd/head/sys/powerpc/include/pmap.h projects/zfsd/head/sys/powerpc/include/spr.h projects/zfsd/head/sys/powerpc/include/vmparam.h projects/zfsd/head/sys/powerpc/powerpc/cpu.c projects/zfsd/head/sys/powerpc/powerpc/dump_machdep.c projects/zfsd/head/sys/powerpc/powerpc/elf32_machdep.c projects/zfsd/head/sys/powerpc/powerpc/mem.c projects/zfsd/head/sys/powerpc/powerpc/mmu_if.m projects/zfsd/head/sys/powerpc/powerpc/pmap_dispatch.c projects/zfsd/head/sys/powerpc/powerpc/sigcode32.S projects/zfsd/head/sys/powerpc/powerpc/sigcode64.S projects/zfsd/head/sys/powerpc/powerpc/vm_machdep.c projects/zfsd/head/sys/powerpc/ps3/platform_ps3.c projects/zfsd/head/sys/powerpc/ps3/ps3_syscons.c projects/zfsd/head/sys/rpc/krpc.h projects/zfsd/head/sys/rpc/svc.c projects/zfsd/head/sys/rpc/svc.h projects/zfsd/head/sys/rpc/svc_generic.c projects/zfsd/head/sys/rpc/svc_vc.c projects/zfsd/head/sys/security/audit/audit_pipe.c projects/zfsd/head/sys/security/mac_biba/mac_biba.c projects/zfsd/head/sys/security/mac_bsdextended/mac_bsdextended.c projects/zfsd/head/sys/security/mac_ifoff/mac_ifoff.c projects/zfsd/head/sys/security/mac_lomac/mac_lomac.c projects/zfsd/head/sys/security/mac_mls/mac_mls.c projects/zfsd/head/sys/security/mac_portacl/mac_portacl.c projects/zfsd/head/sys/sparc64/conf/GENERIC projects/zfsd/head/sys/sparc64/include/vmparam.h projects/zfsd/head/sys/sparc64/pci/psycho.c projects/zfsd/head/sys/sparc64/sparc64/dump_machdep.c projects/zfsd/head/sys/sparc64/sparc64/pmap.c projects/zfsd/head/sys/sparc64/sparc64/vm_machdep.c projects/zfsd/head/sys/sys/_cpuset.h projects/zfsd/head/sys/sys/buf.h projects/zfsd/head/sys/sys/bus.h projects/zfsd/head/sys/sys/callout.h projects/zfsd/head/sys/sys/capsicum.h projects/zfsd/head/sys/sys/cdefs.h projects/zfsd/head/sys/sys/conf.h projects/zfsd/head/sys/sys/cons.h projects/zfsd/head/sys/sys/cpuctl.h projects/zfsd/head/sys/sys/cpuset.h projects/zfsd/head/sys/sys/disklabel.h projects/zfsd/head/sys/sys/dtrace_bsd.h projects/zfsd/head/sys/sys/efi.h projects/zfsd/head/sys/sys/elf_common.h projects/zfsd/head/sys/sys/event.h projects/zfsd/head/sys/sys/exec.h projects/zfsd/head/sys/sys/fbio.h projects/zfsd/head/sys/sys/filedesc.h projects/zfsd/head/sys/sys/fnv_hash.h projects/zfsd/head/sys/sys/gpt.h projects/zfsd/head/sys/sys/hhook.h projects/zfsd/head/sys/sys/imgact_elf.h projects/zfsd/head/sys/sys/kerneldump.h projects/zfsd/head/sys/sys/khelp.h projects/zfsd/head/sys/sys/libkern.h projects/zfsd/head/sys/sys/link_elf.h projects/zfsd/head/sys/sys/linker_set.h projects/zfsd/head/sys/sys/malloc.h projects/zfsd/head/sys/sys/mbpool.h projects/zfsd/head/sys/sys/mbuf.h projects/zfsd/head/sys/sys/mman.h projects/zfsd/head/sys/sys/mount.h projects/zfsd/head/sys/sys/param.h projects/zfsd/head/sys/sys/pmc.h projects/zfsd/head/sys/sys/proc.h projects/zfsd/head/sys/sys/procdesc.h projects/zfsd/head/sys/sys/protosw.h projects/zfsd/head/sys/sys/rman.h projects/zfsd/head/sys/sys/sdt.h projects/zfsd/head/sys/sys/sf_buf.h projects/zfsd/head/sys/sys/signalvar.h projects/zfsd/head/sys/sys/socketvar.h projects/zfsd/head/sys/sys/syscallsubr.h projects/zfsd/head/sys/sys/sysctl.h projects/zfsd/head/sys/sys/sysent.h projects/zfsd/head/sys/sys/taskqueue.h projects/zfsd/head/sys/sys/terminal.h projects/zfsd/head/sys/sys/time.h projects/zfsd/head/sys/sys/vnode.h projects/zfsd/head/sys/tools/fdt/make_dtb.sh projects/zfsd/head/sys/ufs/ffs/ffs_rawread.c projects/zfsd/head/sys/ufs/ffs/ffs_softdep.c projects/zfsd/head/sys/ufs/ffs/ffs_vfsops.c projects/zfsd/head/sys/ufs/ffs/softdep.h projects/zfsd/head/sys/ufs/ufs/ufs_vnops.c projects/zfsd/head/sys/vm/memguard.c projects/zfsd/head/sys/vm/pmap.h projects/zfsd/head/sys/vm/redzone.c projects/zfsd/head/sys/vm/uma_core.c projects/zfsd/head/sys/vm/vm_extern.h projects/zfsd/head/sys/vm/vm_fault.c projects/zfsd/head/sys/vm/vm_glue.c projects/zfsd/head/sys/vm/vm_init.c projects/zfsd/head/sys/vm/vm_kern.c projects/zfsd/head/sys/vm/vm_map.c projects/zfsd/head/sys/vm/vm_map.h projects/zfsd/head/sys/vm/vm_mmap.c projects/zfsd/head/sys/vm/vm_object.c projects/zfsd/head/sys/vm/vm_object.h projects/zfsd/head/sys/vm/vm_page.c projects/zfsd/head/sys/vm/vm_page.h projects/zfsd/head/sys/vm/vm_pageout.c projects/zfsd/head/sys/vm/vm_pager.h projects/zfsd/head/sys/vm/vm_phys.c projects/zfsd/head/sys/vm/vm_radix.c projects/zfsd/head/sys/vm/vm_reserv.c projects/zfsd/head/sys/vm/vm_unix.c projects/zfsd/head/sys/vm/vm_zeroidle.c projects/zfsd/head/sys/x86/acpica/madt.c projects/zfsd/head/sys/x86/cpufreq/hwpstate.c projects/zfsd/head/sys/x86/include/acpica_machdep.h (contents, props changed) projects/zfsd/head/sys/x86/include/apicvar.h projects/zfsd/head/sys/x86/include/init.h projects/zfsd/head/sys/x86/include/segments.h projects/zfsd/head/sys/x86/include/specialreg.h projects/zfsd/head/sys/x86/iommu/intel_drv.c projects/zfsd/head/sys/x86/iommu/intel_utils.c projects/zfsd/head/sys/x86/isa/atpic.c projects/zfsd/head/sys/x86/isa/isa.c projects/zfsd/head/sys/x86/pci/pci_bus.c projects/zfsd/head/sys/x86/x86/busdma_bounce.c projects/zfsd/head/sys/x86/x86/dump_machdep.c projects/zfsd/head/sys/x86/x86/io_apic.c projects/zfsd/head/sys/x86/x86/local_apic.c projects/zfsd/head/sys/x86/x86/mca.c projects/zfsd/head/sys/x86/x86/tsc.c projects/zfsd/head/sys/x86/xen/hvm.c projects/zfsd/head/sys/x86/xen/pv.c projects/zfsd/head/sys/x86/xen/pvcpu_enum.c projects/zfsd/head/sys/x86/xen/xen_intr.c projects/zfsd/head/sys/xen/gnttab.c projects/zfsd/head/sys/xen/gnttab.h projects/zfsd/head/sys/xen/xen_intr.h projects/zfsd/head/sys/xen/xenstore/xenstore.c projects/zfsd/head/tests/sys/kern/unix_seqpacket_test.c projects/zfsd/head/tests/sys/netinet/fibs_test.sh projects/zfsd/head/tests/sys/netinet/udp_dontroute.c projects/zfsd/head/tools/bsdbox/Makefile projects/zfsd/head/tools/build/make_check/Makefile projects/zfsd/head/tools/build/mk/OptionalObsoleteFiles.inc projects/zfsd/head/tools/build/options/WITHOUT_DOCCOMPRESS projects/zfsd/head/tools/build/options/WITHOUT_GNU_GREP_COMPAT projects/zfsd/head/tools/build/options/WITHOUT_MANCOMPRESS projects/zfsd/head/tools/build/options/WITH_FMAKE projects/zfsd/head/tools/regression/README projects/zfsd/head/tools/regression/file/flock/flock.c projects/zfsd/head/tools/regression/filemon/Makefile projects/zfsd/head/tools/regression/lib/libc/stdio/test-fmemopen.c projects/zfsd/head/tools/regression/net80211/ccmp/test_ccmp.c projects/zfsd/head/tools/regression/net80211/wep/test_wep.c projects/zfsd/head/tools/test/dtrace/Makefile projects/zfsd/head/tools/test/netfibs/reflect.c projects/zfsd/head/tools/tools/README projects/zfsd/head/tools/tools/ath/Makefile projects/zfsd/head/tools/tools/ath/athaggrstats/Makefile projects/zfsd/head/tools/tools/ath/athalq/ar9300_ds.c projects/zfsd/head/tools/tools/ath/athdecode/main.c projects/zfsd/head/tools/tools/ath/athpoke/athpoke.c projects/zfsd/head/tools/tools/ath/athregs/dumpregs.c projects/zfsd/head/tools/tools/ath/athstats/Makefile projects/zfsd/head/tools/tools/cxgbetool/cxgbetool.c projects/zfsd/head/tools/tools/ether_reflect/ether_reflect.1 projects/zfsd/head/tools/tools/fixwhite/fixwhite.1 projects/zfsd/head/tools/tools/mcgrab/mcgrab.1 projects/zfsd/head/tools/tools/mctest/mctest.1 projects/zfsd/head/tools/tools/nanobsd/dhcpd/README projects/zfsd/head/tools/tools/nanobsd/dhcpd/common projects/zfsd/head/tools/tools/nanobsd/nanobsd.sh projects/zfsd/head/tools/tools/nanobsd/rescue/build.sh projects/zfsd/head/tools/tools/nanobsd/rescue/common projects/zfsd/head/tools/tools/nanobsd/rescue/merge.sh projects/zfsd/head/tools/tools/nanobsd/rescue/rescue_amd64.conf projects/zfsd/head/tools/tools/nanobsd/rescue/rescue_i386.conf projects/zfsd/head/tools/tools/net80211/stumbler/Makefile projects/zfsd/head/tools/tools/netmap/pkt-gen.c projects/zfsd/head/tools/tools/netmap/vale-ctl.c projects/zfsd/head/tools/tools/sysbuild/README projects/zfsd/head/tools/tools/sysdoc/sysdoc.sh projects/zfsd/head/tools/tools/vimage/vimage.8 projects/zfsd/head/tools/tools/vt/fontcvt/terminus.sh projects/zfsd/head/tools/tools/vt/mkkfont/mkkfont.c projects/zfsd/head/usr.bin/Makefile projects/zfsd/head/usr.bin/ar/ar.1 projects/zfsd/head/usr.bin/at/at.man projects/zfsd/head/usr.bin/bluetooth/bthost/bthost.1 projects/zfsd/head/usr.bin/bluetooth/btsockstat/btsockstat.1 projects/zfsd/head/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.1 projects/zfsd/head/usr.bin/bmake/Makefile projects/zfsd/head/usr.bin/bmake/config.h projects/zfsd/head/usr.bin/brandelf/brandelf.1 projects/zfsd/head/usr.bin/bsdiff/bsdiff/bsdiff.1 projects/zfsd/head/usr.bin/bsdiff/bspatch/bspatch.1 projects/zfsd/head/usr.bin/calendar/Makefile projects/zfsd/head/usr.bin/calendar/calendars/calendar.freebsd projects/zfsd/head/usr.bin/calendar/calendars/calendar.holiday projects/zfsd/head/usr.bin/clang/clang.prog.mk projects/zfsd/head/usr.bin/cpuset/cpuset.1 projects/zfsd/head/usr.bin/ctlstat/ctlstat.8 projects/zfsd/head/usr.bin/drill/Makefile projects/zfsd/head/usr.bin/dtc/dtc.cc projects/zfsd/head/usr.bin/dtc/fdt.cc projects/zfsd/head/usr.bin/dtc/input_buffer.cc projects/zfsd/head/usr.bin/ee/Makefile projects/zfsd/head/usr.bin/elf2aout/elf2aout.1 projects/zfsd/head/usr.bin/elfdump/elfdump.1 projects/zfsd/head/usr.bin/elfdump/elfdump.c projects/zfsd/head/usr.bin/fetch/fetch.1 projects/zfsd/head/usr.bin/file/Makefile projects/zfsd/head/usr.bin/fstat/fuser.1 projects/zfsd/head/usr.bin/ftp/Makefile projects/zfsd/head/usr.bin/gcore/Makefile projects/zfsd/head/usr.bin/gcore/elfcore.c projects/zfsd/head/usr.bin/getconf/getconf.1 projects/zfsd/head/usr.bin/gprof/gprof.h projects/zfsd/head/usr.bin/grep/grep.c projects/zfsd/head/usr.bin/grep/queue.c projects/zfsd/head/usr.bin/grep/util.c projects/zfsd/head/usr.bin/gzip/gzip.1 projects/zfsd/head/usr.bin/gzip/zuncompress.c projects/zfsd/head/usr.bin/host/Makefile projects/zfsd/head/usr.bin/iconv/iconv.c projects/zfsd/head/usr.bin/ipcs/ipcs.1 projects/zfsd/head/usr.bin/iscsictl/iscsictl.8 projects/zfsd/head/usr.bin/iscsictl/iscsictl.c projects/zfsd/head/usr.bin/kdump/kdump.c projects/zfsd/head/usr.bin/ktrdump/ktrdump.8 projects/zfsd/head/usr.bin/ldd/ldd.1 projects/zfsd/head/usr.bin/less/Makefile projects/zfsd/head/usr.bin/lock/lock.c projects/zfsd/head/usr.bin/lockf/lockf.1 projects/zfsd/head/usr.bin/login/login.c projects/zfsd/head/usr.bin/logins/logins.1 projects/zfsd/head/usr.bin/look/look.1 projects/zfsd/head/usr.bin/look/look.c projects/zfsd/head/usr.bin/m4/Makefile projects/zfsd/head/usr.bin/m4/eval.c projects/zfsd/head/usr.bin/m4/extern.h projects/zfsd/head/usr.bin/m4/gnum4.c projects/zfsd/head/usr.bin/m4/look.c projects/zfsd/head/usr.bin/m4/m4.1 projects/zfsd/head/usr.bin/m4/main.c projects/zfsd/head/usr.bin/m4/misc.c projects/zfsd/head/usr.bin/mail/edit.c projects/zfsd/head/usr.bin/make/Makefile projects/zfsd/head/usr.bin/mkcsmapper/mkcsmapper.1 projects/zfsd/head/usr.bin/mkesdb/mkesdb.1 projects/zfsd/head/usr.bin/mkimg/Makefile projects/zfsd/head/usr.bin/mkimg/apm.c projects/zfsd/head/usr.bin/mkimg/bsd.c projects/zfsd/head/usr.bin/mkimg/gpt.c projects/zfsd/head/usr.bin/mkimg/image.c projects/zfsd/head/usr.bin/mkimg/image.h projects/zfsd/head/usr.bin/mkimg/mkimg.1 projects/zfsd/head/usr.bin/mkimg/mkimg.c projects/zfsd/head/usr.bin/mkimg/mkimg.h projects/zfsd/head/usr.bin/mkimg/raw.c projects/zfsd/head/usr.bin/mkimg/scheme.c projects/zfsd/head/usr.bin/mkimg/vmdk.c projects/zfsd/head/usr.bin/mkimg/vtoc8.c projects/zfsd/head/usr.bin/mkulzma/mkulzma.8 projects/zfsd/head/usr.bin/mkuzip/mkuzip.8 projects/zfsd/head/usr.bin/msgs/Makefile projects/zfsd/head/usr.bin/ncal/Makefile projects/zfsd/head/usr.bin/ncal/ncal.1 projects/zfsd/head/usr.bin/netstat/main.c projects/zfsd/head/usr.bin/netstat/netstat.1 projects/zfsd/head/usr.bin/netstat/route.c projects/zfsd/head/usr.bin/opiekey/Makefile projects/zfsd/head/usr.bin/patch/patch.1 projects/zfsd/head/usr.bin/patch/patch.c projects/zfsd/head/usr.bin/patch/pch.c projects/zfsd/head/usr.bin/patch/pch.h projects/zfsd/head/usr.bin/printf/printf.c projects/zfsd/head/usr.bin/printf/tests/Makefile projects/zfsd/head/usr.bin/printf/tests/regress.m2.out projects/zfsd/head/usr.bin/printf/tests/regress.sh projects/zfsd/head/usr.bin/procstat/procstat.1 projects/zfsd/head/usr.bin/procstat/procstat_files.c projects/zfsd/head/usr.bin/procstat/procstat_vm.c projects/zfsd/head/usr.bin/rctl/rctl.8 projects/zfsd/head/usr.bin/revoke/revoke.1 projects/zfsd/head/usr.bin/rpcgen/rpc_main.c projects/zfsd/head/usr.bin/rpcgen/rpc_sample.c projects/zfsd/head/usr.bin/sed/defs.h projects/zfsd/head/usr.bin/sed/main.c projects/zfsd/head/usr.bin/sed/process.c projects/zfsd/head/usr.bin/sed/sed.1 projects/zfsd/head/usr.bin/sed/tests/regress.y.out projects/zfsd/head/usr.bin/showmount/showmount.8 projects/zfsd/head/usr.bin/showmount/showmount.c projects/zfsd/head/usr.bin/sockstat/sockstat.1 projects/zfsd/head/usr.bin/sort/sort.1.in projects/zfsd/head/usr.bin/ssh-copy-id/ssh-copy-id.1 projects/zfsd/head/usr.bin/stat/stat.1 projects/zfsd/head/usr.bin/svn/lib/libapr/Makefile projects/zfsd/head/usr.bin/svn/lib/libapr/apr.h projects/zfsd/head/usr.bin/svn/lib/libapr/apr_private.h projects/zfsd/head/usr.bin/svn/svn/Makefile projects/zfsd/head/usr.bin/svn/svn_private_config.h projects/zfsd/head/usr.bin/systat/systat.1 projects/zfsd/head/usr.bin/tabs/Makefile projects/zfsd/head/usr.bin/telnet/Makefile projects/zfsd/head/usr.bin/tftp/Makefile projects/zfsd/head/usr.bin/top/machine.c projects/zfsd/head/usr.bin/tput/Makefile projects/zfsd/head/usr.bin/truncate/Makefile projects/zfsd/head/usr.bin/truncate/truncate.1 projects/zfsd/head/usr.bin/truncate/truncate.c projects/zfsd/head/usr.bin/truss/extern.h projects/zfsd/head/usr.bin/truss/main.c projects/zfsd/head/usr.bin/tset/Makefile projects/zfsd/head/usr.bin/ul/Makefile projects/zfsd/head/usr.bin/unifdef/unifdef.1 projects/zfsd/head/usr.bin/units/Makefile projects/zfsd/head/usr.bin/units/units.1 projects/zfsd/head/usr.bin/units/units.c projects/zfsd/head/usr.bin/units/units.lib projects/zfsd/head/usr.bin/unzip/unzip.1 projects/zfsd/head/usr.bin/users/Makefile (contents, props changed) projects/zfsd/head/usr.bin/vi/Makefile projects/zfsd/head/usr.bin/vmstat/vmstat.8 projects/zfsd/head/usr.bin/vmstat/vmstat.c projects/zfsd/head/usr.bin/which/which.1 projects/zfsd/head/usr.bin/whois/whois.c projects/zfsd/head/usr.bin/xlint/lint1/param.h projects/zfsd/head/usr.bin/yacc/tests/Makefile projects/zfsd/head/usr.bin/yes/yes.1 projects/zfsd/head/usr.bin/ypcat/ypcat.1 projects/zfsd/head/usr.bin/ypmatch/ypmatch.1 projects/zfsd/head/usr.sbin/Makefile projects/zfsd/head/usr.sbin/acpi/acpiconf/acpiconf.8 projects/zfsd/head/usr.sbin/acpi/acpidb/acpidb.8 projects/zfsd/head/usr.sbin/acpi/acpidump/acpidump.8 projects/zfsd/head/usr.sbin/adduser/adduser.8 projects/zfsd/head/usr.sbin/adduser/adduser.conf.5 projects/zfsd/head/usr.sbin/ancontrol/ancontrol.8 projects/zfsd/head/usr.sbin/apm/apm.8 projects/zfsd/head/usr.sbin/apmd/apmd.8 projects/zfsd/head/usr.sbin/asf/asf.8 projects/zfsd/head/usr.sbin/bhyve/Makefile projects/zfsd/head/usr.sbin/bhyve/acpi.c projects/zfsd/head/usr.sbin/bhyve/atkbdc.c projects/zfsd/head/usr.sbin/bhyve/bhyve.8 projects/zfsd/head/usr.sbin/bhyve/bhyverun.c projects/zfsd/head/usr.sbin/bhyve/bhyverun.h projects/zfsd/head/usr.sbin/bhyve/block_if.c projects/zfsd/head/usr.sbin/bhyve/block_if.h projects/zfsd/head/usr.sbin/bhyve/inout.c projects/zfsd/head/usr.sbin/bhyve/inout.h projects/zfsd/head/usr.sbin/bhyve/mem.c projects/zfsd/head/usr.sbin/bhyve/mem.h projects/zfsd/head/usr.sbin/bhyve/pci_ahci.c projects/zfsd/head/usr.sbin/bhyve/pci_emul.c projects/zfsd/head/usr.sbin/bhyve/pci_emul.h projects/zfsd/head/usr.sbin/bhyve/pci_irq.c projects/zfsd/head/usr.sbin/bhyve/pci_lpc.c projects/zfsd/head/usr.sbin/bhyve/pci_virtio_block.c projects/zfsd/head/usr.sbin/bhyve/pm.c projects/zfsd/head/usr.sbin/bhyve/rtc.c projects/zfsd/head/usr.sbin/bhyve/smbiostbl.c projects/zfsd/head/usr.sbin/bhyve/virtio.c projects/zfsd/head/usr.sbin/bhyve/virtio.h projects/zfsd/head/usr.sbin/bhyvectl/bhyvectl.c projects/zfsd/head/usr.sbin/bhyveload/bhyveload.8 projects/zfsd/head/usr.sbin/bhyveload/bhyveload.c projects/zfsd/head/usr.sbin/binmiscctl/binmiscctl.8 projects/zfsd/head/usr.sbin/bluetooth/ath3kfw/ath3kfw.8 projects/zfsd/head/usr.sbin/bluetooth/bcmfw/bcmfw.8 projects/zfsd/head/usr.sbin/bluetooth/bt3cfw/bt3cfw.8 projects/zfsd/head/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.8 projects/zfsd/head/usr.sbin/bluetooth/bthidd/bthidd.8 projects/zfsd/head/usr.sbin/bluetooth/hccontrol/hccontrol.8 projects/zfsd/head/usr.sbin/bluetooth/hcsecd/hcsecd.8 projects/zfsd/head/usr.sbin/bluetooth/hcsecd/hcsecd.conf.5 projects/zfsd/head/usr.sbin/bluetooth/hcseriald/hcseriald.8 projects/zfsd/head/usr.sbin/bluetooth/l2control/l2control.8 projects/zfsd/head/usr.sbin/bluetooth/l2ping/l2ping.8 projects/zfsd/head/usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.8 projects/zfsd/head/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.8 projects/zfsd/head/usr.sbin/bluetooth/sdpd/sdpd.8 projects/zfsd/head/usr.sbin/boot0cfg/boot0cfg.8 projects/zfsd/head/usr.sbin/bootparamd/bootparamd/bootparamd.8 projects/zfsd/head/usr.sbin/bsdconfig/bsdconfig.8 projects/zfsd/head/usr.sbin/bsdconfig/dot/dot projects/zfsd/head/usr.sbin/bsdconfig/dot/include/messages.subr projects/zfsd/head/usr.sbin/bsdconfig/examples/Makefile projects/zfsd/head/usr.sbin/bsdconfig/examples/browse_packages_http.sh projects/zfsd/head/usr.sbin/bsdconfig/include/messages.subr projects/zfsd/head/usr.sbin/bsdconfig/share/common.subr projects/zfsd/head/usr.sbin/bsdconfig/share/dialog.subr projects/zfsd/head/usr.sbin/bsdconfig/share/media/http.subr projects/zfsd/head/usr.sbin/bsdconfig/share/media/httpproxy.subr projects/zfsd/head/usr.sbin/bsdconfig/share/packages/Makefile projects/zfsd/head/usr.sbin/bsdconfig/share/packages/index.subr (contents, props changed) projects/zfsd/head/usr.sbin/bsdconfig/share/packages/packages.subr (contents, props changed) projects/zfsd/head/usr.sbin/bsdinstall/bsdinstall.8 projects/zfsd/head/usr.sbin/bsdinstall/partedit/partedit_powerpc.c projects/zfsd/head/usr.sbin/bsdinstall/partedit/partedit_x86.c projects/zfsd/head/usr.sbin/bsdinstall/partedit/sade.8 projects/zfsd/head/usr.sbin/bsdinstall/scripts/auto projects/zfsd/head/usr.sbin/bsdinstall/scripts/jail projects/zfsd/head/usr.sbin/bsdinstall/scripts/mirrorselect projects/zfsd/head/usr.sbin/bsdinstall/scripts/zfsboot projects/zfsd/head/usr.sbin/bsnmpd/modules/Makefile projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_hast/snmp_hast.3 projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_netgraph/snmp_netgraph.3 projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 projects/zfsd/head/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 projects/zfsd/head/usr.sbin/btxld/btxld.8 projects/zfsd/head/usr.sbin/cdcontrol/Makefile projects/zfsd/head/usr.sbin/chkgrp/chkgrp.8 projects/zfsd/head/usr.sbin/chown/Makefile projects/zfsd/head/usr.sbin/config/config.5 projects/zfsd/head/usr.sbin/config/config.8 projects/zfsd/head/usr.sbin/cpucontrol/cpucontrol.8 projects/zfsd/head/usr.sbin/cpucontrol/cpucontrol.c projects/zfsd/head/usr.sbin/cron/cron/cron.8 projects/zfsd/head/usr.sbin/cron/cron/do_command.c projects/zfsd/head/usr.sbin/cron/crontab/crontab.1 projects/zfsd/head/usr.sbin/cron/crontab/crontab.5 projects/zfsd/head/usr.sbin/crunch/crunchgen/crunchgen.1 projects/zfsd/head/usr.sbin/crunch/crunchide/Makefile projects/zfsd/head/usr.sbin/crunch/crunchide/crunchide.1 projects/zfsd/head/usr.sbin/crunch/crunchide/exec_elf32.c projects/zfsd/head/usr.sbin/ctladm/ctladm.8 projects/zfsd/head/usr.sbin/ctladm/ctladm.c projects/zfsd/head/usr.sbin/ctld/Makefile projects/zfsd/head/usr.sbin/ctld/ctl.conf.5 projects/zfsd/head/usr.sbin/ctld/ctld.8 projects/zfsd/head/usr.sbin/ctld/ctld.c projects/zfsd/head/usr.sbin/ctld/ctld.h projects/zfsd/head/usr.sbin/ctld/discovery.c projects/zfsd/head/usr.sbin/ctld/kernel.c projects/zfsd/head/usr.sbin/ctld/keys.c projects/zfsd/head/usr.sbin/ctld/log.c projects/zfsd/head/usr.sbin/ctld/login.c projects/zfsd/head/usr.sbin/ctld/parse.y projects/zfsd/head/usr.sbin/ctld/pdu.c projects/zfsd/head/usr.sbin/ctld/token.l projects/zfsd/head/usr.sbin/ctm/ctm/ctm.1 projects/zfsd/head/usr.sbin/ctm/ctm/ctm.5 projects/zfsd/head/usr.sbin/ctm/ctm_rmail/ctm_rmail.1 projects/zfsd/head/usr.sbin/dconschat/dconschat.8 projects/zfsd/head/usr.sbin/devinfo/devinfo.8 projects/zfsd/head/usr.sbin/dumpcis/dumpcis.8 projects/zfsd/head/usr.sbin/eeprom/eeprom.8 projects/zfsd/head/usr.sbin/etcupdate/etcupdate.8 projects/zfsd/head/usr.sbin/fdwrite/fdwrite.1 projects/zfsd/head/usr.sbin/flowctl/flowctl.8 projects/zfsd/head/usr.sbin/freebsd-update/freebsd-update.8 projects/zfsd/head/usr.sbin/fwcontrol/fwcontrol.8 projects/zfsd/head/usr.sbin/gpioctl/gpioctl.8 projects/zfsd/head/usr.sbin/gssd/gssd.8 projects/zfsd/head/usr.sbin/gstat/gstat.8 projects/zfsd/head/usr.sbin/gstat/gstat.c projects/zfsd/head/usr.sbin/i2c/i2c.8 projects/zfsd/head/usr.sbin/iostat/iostat.8 projects/zfsd/head/usr.sbin/ipfwpcap/ipfwpcap.8 projects/zfsd/head/usr.sbin/iscsid/Makefile projects/zfsd/head/usr.sbin/iscsid/discovery.c projects/zfsd/head/usr.sbin/iscsid/iscsid.8 projects/zfsd/head/usr.sbin/iscsid/iscsid.c projects/zfsd/head/usr.sbin/iscsid/iscsid.h projects/zfsd/head/usr.sbin/iscsid/keys.c projects/zfsd/head/usr.sbin/iscsid/log.c projects/zfsd/head/usr.sbin/iscsid/login.c projects/zfsd/head/usr.sbin/iscsid/pdu.c projects/zfsd/head/usr.sbin/jail/command.c projects/zfsd/head/usr.sbin/jail/config.c projects/zfsd/head/usr.sbin/jail/jail.8 projects/zfsd/head/usr.sbin/kbdcontrol/kbdcontrol.1 projects/zfsd/head/usr.sbin/kbdcontrol/kbdcontrol.c projects/zfsd/head/usr.sbin/kbdcontrol/path.h projects/zfsd/head/usr.sbin/kbdmap/kbdmap.1 projects/zfsd/head/usr.sbin/kbdmap/kbdmap.c projects/zfsd/head/usr.sbin/kbdmap/kbdmap.h projects/zfsd/head/usr.sbin/kgzip/kgzip.8 projects/zfsd/head/usr.sbin/kldxref/kldxref.8 projects/zfsd/head/usr.sbin/lmcconfig/lmcconfig.8 projects/zfsd/head/usr.sbin/lpr/chkprintcap/chkprintcap.8 projects/zfsd/head/usr.sbin/lpr/lpc/Makefile projects/zfsd/head/usr.sbin/mailwrapper/mailwrapper.8 projects/zfsd/head/usr.sbin/makefs/ffs/mkfs.c projects/zfsd/head/usr.sbin/makefs/makefs.8 projects/zfsd/head/usr.sbin/mergemaster/mergemaster.8 projects/zfsd/head/usr.sbin/mergemaster/mergemaster.sh projects/zfsd/head/usr.sbin/mixer/mixer.8 projects/zfsd/head/usr.sbin/mlxcontrol/mlxcontrol.8 projects/zfsd/head/usr.sbin/mountd/exports.5 projects/zfsd/head/usr.sbin/mountd/mountd.c projects/zfsd/head/usr.sbin/moused/moused.8 projects/zfsd/head/usr.sbin/mptable/mptable.1 projects/zfsd/head/usr.sbin/nandsim/nandsim.8 projects/zfsd/head/usr.sbin/ndiscvt/ndiscvt.8 projects/zfsd/head/usr.sbin/ndiscvt/ndisgen.8 projects/zfsd/head/usr.sbin/ndp/ndp.c projects/zfsd/head/usr.sbin/nfsd/nfsd.8 projects/zfsd/head/usr.sbin/ngctl/Makefile projects/zfsd/head/usr.sbin/ngctl/ngctl.8 projects/zfsd/head/usr.sbin/nghook/nghook.8 projects/zfsd/head/usr.sbin/nmtree/Makefile projects/zfsd/head/usr.sbin/nscd/nscd.8 projects/zfsd/head/usr.sbin/nscd/nscd.conf.5 projects/zfsd/head/usr.sbin/ntp/config.h projects/zfsd/head/usr.sbin/ntp/ntp-keygen/Makefile projects/zfsd/head/usr.sbin/ntp/ntpd/Makefile projects/zfsd/head/usr.sbin/ntp/ntpdc/Makefile projects/zfsd/head/usr.sbin/ntp/ntpq/Makefile projects/zfsd/head/usr.sbin/nvram/nvram.8 projects/zfsd/head/usr.sbin/ofwdump/ofwdump.8 projects/zfsd/head/usr.sbin/pc-sysinstall/pc-sysinstall/pc-sysinstall.8 projects/zfsd/head/usr.sbin/periodic/periodic.8 projects/zfsd/head/usr.sbin/pkg/Makefile projects/zfsd/head/usr.sbin/pkg/elf_tables.h projects/zfsd/head/usr.sbin/pkg/pkg.c projects/zfsd/head/usr.sbin/pmcannotate/pmcannotate.8 projects/zfsd/head/usr.sbin/pmccontrol/pmccontrol.8 projects/zfsd/head/usr.sbin/pmcstat/Makefile projects/zfsd/head/usr.sbin/pmcstat/pmcstat.8 projects/zfsd/head/usr.sbin/pmcstat/pmcstat.h projects/zfsd/head/usr.sbin/portsnap/portsnap/portsnap.8 projects/zfsd/head/usr.sbin/ppp/Makefile projects/zfsd/head/usr.sbin/ppp/ppp.8 projects/zfsd/head/usr.sbin/pppctl/Makefile projects/zfsd/head/usr.sbin/pw/pw_user.c projects/zfsd/head/usr.sbin/pw/pwupd.c projects/zfsd/head/usr.sbin/rarpd/rarpd.8 projects/zfsd/head/usr.sbin/route6d/route6d.c projects/zfsd/head/usr.sbin/rpc.umntall/rpc.umntall.8 projects/zfsd/head/usr.sbin/rpc.yppasswdd/rpc.yppasswdd.8 projects/zfsd/head/usr.sbin/rpc.ypxfrd/rpc.ypxfrd.8 projects/zfsd/head/usr.sbin/rtadvctl/rtadvctl.8 projects/zfsd/head/usr.sbin/rtprio/rtprio.1 projects/zfsd/head/usr.sbin/rwhod/rwhod.c projects/zfsd/head/usr.sbin/sa/sa.8 projects/zfsd/head/usr.sbin/sendmail/Makefile projects/zfsd/head/usr.sbin/service/service.8 projects/zfsd/head/usr.sbin/service/service.sh projects/zfsd/head/usr.sbin/sicontrol/sicontrol.8 projects/zfsd/head/usr.sbin/snapinfo/snapinfo.8 projects/zfsd/head/usr.sbin/sysrc/sysrc projects/zfsd/head/usr.sbin/sysrc/sysrc.8 projects/zfsd/head/usr.sbin/tcpdrop/tcpdrop.8 projects/zfsd/head/usr.sbin/tcpdump/tcpdump/Makefile projects/zfsd/head/usr.sbin/timed/timedc/timedc.c projects/zfsd/head/usr.sbin/uhsoctl/uhsoctl.c projects/zfsd/head/usr.sbin/unbound/anchor/Makefile projects/zfsd/head/usr.sbin/unbound/checkconf/Makefile projects/zfsd/head/usr.sbin/unbound/control/Makefile projects/zfsd/head/usr.sbin/unbound/daemon/Makefile projects/zfsd/head/usr.sbin/unbound/local-setup/local-unbound-setup.sh projects/zfsd/head/usr.sbin/usbdump/usbdump.8 projects/zfsd/head/usr.sbin/usbdump/usbdump.c projects/zfsd/head/usr.sbin/utx/utx.8 projects/zfsd/head/usr.sbin/vidcontrol/path.h projects/zfsd/head/usr.sbin/vidcontrol/vidcontrol.1 projects/zfsd/head/usr.sbin/vidcontrol/vidcontrol.c projects/zfsd/head/usr.sbin/wake/wake.8 projects/zfsd/head/usr.sbin/watch/Makefile projects/zfsd/head/usr.sbin/watch/watch.8 projects/zfsd/head/usr.sbin/watchdogd/watchdog.8 projects/zfsd/head/usr.sbin/watchdogd/watchdogd.8 projects/zfsd/head/usr.sbin/wpa/hostapd/Makefile projects/zfsd/head/usr.sbin/wpa/hostapd/hostapd.8 projects/zfsd/head/usr.sbin/wpa/hostapd/hostapd.conf.5 projects/zfsd/head/usr.sbin/wpa/hostapd_cli/Makefile projects/zfsd/head/usr.sbin/wpa/hostapd_cli/hostapd_cli.8 projects/zfsd/head/usr.sbin/wpa/ndis_events/ndis_events.8 projects/zfsd/head/usr.sbin/wpa/wpa_cli/Makefile projects/zfsd/head/usr.sbin/wpa/wpa_cli/wpa_cli.8 projects/zfsd/head/usr.sbin/wpa/wpa_passphrase/Makefile projects/zfsd/head/usr.sbin/wpa/wpa_passphrase/wpa_passphrase.8 projects/zfsd/head/usr.sbin/wpa/wpa_supplicant/Makefile projects/zfsd/head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8 projects/zfsd/head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 projects/zfsd/head/usr.sbin/yp_mkdb/yp_mkdb.8 projects/zfsd/head/usr.sbin/ypbind/ypbind.8 projects/zfsd/head/usr.sbin/yppush/yppush.8 projects/zfsd/head/usr.sbin/ypserv/ypinit.8 projects/zfsd/head/usr.sbin/ypserv/ypserv.8 projects/zfsd/head/usr.sbin/zzz/zzz.8 Directory Properties: projects/zfsd/head/ (props changed) projects/zfsd/head/cddl/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/zfsd/head/contrib/apr/ (props changed) projects/zfsd/head/contrib/atf/ (props changed) projects/zfsd/head/contrib/binutils/ (props changed) projects/zfsd/head/contrib/bmake/ (props changed) projects/zfsd/head/contrib/byacc/ (props changed) projects/zfsd/head/contrib/file/ (props changed) projects/zfsd/head/contrib/gcc/ (props changed) projects/zfsd/head/contrib/ipfilter/ (props changed) projects/zfsd/head/contrib/libc++/ (props changed) projects/zfsd/head/contrib/libstdc++/ (props changed) projects/zfsd/head/contrib/libucl/ (props changed) projects/zfsd/head/contrib/llvm/ (props changed) projects/zfsd/head/contrib/llvm/tools/clang/ (props changed) projects/zfsd/head/contrib/llvm/tools/lldb/ (props changed) projects/zfsd/head/contrib/openbsm/ (props changed) projects/zfsd/head/contrib/openpam/ (props changed) projects/zfsd/head/contrib/sendmail/ (props changed) projects/zfsd/head/contrib/serf/ (props changed) projects/zfsd/head/contrib/sqlite3/ (props changed) projects/zfsd/head/contrib/subversion/ (props changed) projects/zfsd/head/contrib/tzdata/ (props changed) projects/zfsd/head/contrib/unbound/ (props changed) projects/zfsd/head/contrib/wpa/ (props changed) projects/zfsd/head/crypto/openssl/ (props changed) projects/zfsd/head/etc/ (props changed) projects/zfsd/head/gnu/lib/ (props changed) projects/zfsd/head/gnu/usr.bin/binutils/ (props changed) projects/zfsd/head/gnu/usr.bin/gdb/ (props changed) projects/zfsd/head/include/ (props changed) projects/zfsd/head/lib/libc/ (props changed) projects/zfsd/head/lib/libc/stdtime/ (props changed) projects/zfsd/head/lib/libutil/ (props changed) projects/zfsd/head/lib/libvmmapi/ (props changed) projects/zfsd/head/lib/libz/ (props changed) projects/zfsd/head/sbin/ (props changed) projects/zfsd/head/sbin/ipfw/ (props changed) projects/zfsd/head/share/ (props changed) projects/zfsd/head/share/man/man4/ (props changed) projects/zfsd/head/sys/ (props changed) projects/zfsd/head/sys/amd64/vmm/ (props changed) projects/zfsd/head/sys/boot/ (props changed) projects/zfsd/head/sys/cddl/contrib/opensolaris/ (props changed) projects/zfsd/head/sys/conf/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/ (props changed) projects/zfsd/head/sys/contrib/ipfilter/ (props changed) projects/zfsd/head/sys/contrib/x86emu/ (props changed) projects/zfsd/head/sys/dev/usb/controller/ (props changed) projects/zfsd/head/sys/gnu/dts/ (props changed) projects/zfsd/head/sys/gnu/dts/include/dt-bindings/clock/imx6sl-clock.h (props changed) projects/zfsd/head/usr.bin/calendar/ (props changed) projects/zfsd/head/usr.bin/mkimg/ (props changed) projects/zfsd/head/usr.bin/procstat/ (props changed) projects/zfsd/head/usr.sbin/bhyve/ (props changed) projects/zfsd/head/usr.sbin/bhyvectl/ (props changed) projects/zfsd/head/usr.sbin/bhyveload/ (props changed) projects/zfsd/head/usr.sbin/bsdconfig/share/packages/categories.subr (props changed) projects/zfsd/head/usr.sbin/jail/ (props changed) projects/zfsd/head/usr.sbin/ndiscvt/ (props changed) projects/zfsd/head/usr.sbin/rtadvctl/ (props changed) Copied: projects/zfsd/head/.arclint (from r270315, head/.arclint) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/zfsd/head/.arclint Fri Aug 22 15:12:56 2014 (r270335, copy of r270315, head/.arclint) @@ -0,0 +1,9 @@ +{ + "linters": { + "python": { + "type": "pep8", + "exclude": "(contrib)", + "include": "(\\.py$)" + } + } +} Modified: projects/zfsd/head/MAINTAINERS ============================================================================== --- projects/zfsd/head/MAINTAINERS Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/MAINTAINERS Fri Aug 22 15:12:56 2014 (r270335) @@ -20,7 +20,7 @@ It is not a registry of 'turf' or privat subsystem login notes ----------------------------- -kqueue jmg Pre-commit review requested. +kqueue jmg Pre-commit review requested. Documentation Required. libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -102,13 +102,12 @@ linux emul emulation Please discuss chan bs{diff,patch} cperciva Pre-commit review requested. portsnap cperciva Pre-commit review requested. freebsd-update cperciva Pre-commit review requested. -openssl benl Pre-commit review requested. +openssl benl,jkim Pre-commit review requested. sys/netgraph/bluetooth emax Pre-commit review preferred. lib/libbluetooth emax Pre-commit review preferred. lib/libsdp emax Pre-commit review preferred. usr.bin/bluetooth emax Pre-commit review preferred. usr.sbin/bluetooth emax Pre-commit review preferred. -gnu/usr.bin/send-pr bugmaster Pre-commit review requested. *env(3) secteam Due to the problematic security history of this code, please have patches reviewed by secteam. share/zoneinfo edwin Heads-up appreciated, since our data is coming @@ -133,3 +132,4 @@ release/release.sh gjb Pre-commit review requested. nanobsd imp Pre-commit review requested for coordination. vmm(4) neel,grehan Pre-commit review requested. +opencrypto jmg Pre-commit review requested. Documentation Required. Modified: projects/zfsd/head/Makefile ============================================================================== --- projects/zfsd/head/Makefile Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/Makefile Fri Aug 22 15:12:56 2014 (r270335) @@ -36,6 +36,9 @@ # specified with XDEV and XDEV_ARCH. # xdev-build - Build cross-development tools. # xdev-install - Install cross-development tools. +# xdev-links - Create traditional links in /usr/bin for cc, etc +# native-xtools - Create host binaries that produce target objects +# for use in qemu user-mode jails. # # "quick" way to test all kernel builds: # _jflag=`sysctl -n hw.ncpu` @@ -82,7 +85,7 @@ # # See src/UPDATING `COMMON ITEMS' for more complete information. # -# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can +# If TARGET=machine (e.g. powerpc, sparc64, ...) is specified you can # cross build world for other machine types using the buildworld target, # and once the world is built you can cross build a kernel using the # buildkernel target. @@ -110,6 +113,7 @@ TGTS= all all-man buildenv buildenvvars _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ _build-tools _cross-tools _includes _libraries _depend \ build32 builddtb distribute32 install32 xdev xdev-build xdev-install \ + xdev-links native-xtools \ TGTS+= ${SUBDIR_TARGETS} @@ -172,6 +176,13 @@ _TARGET=${TARGET} .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH) _TARGET_ARCH=${TARGET_ARCH} .endif +# for historical compatibility for xdev targets +.if defined(XDEV) +_TARGET= ${XDEV} +.endif +.if defined(XDEV_ARCH) +_TARGET_ARCH= ${XDEV_ARCH} +.endif # Otherwise, default to current machine type and architecture. _TARGET?= ${MACHINE} _TARGET_ARCH?= ${MACHINE_ARCH} @@ -329,6 +340,7 @@ MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \ MMAKE= ${MMAKEENV} ${MAKE} \ -DNO_MAN -DNO_SHARED \ -DNO_CPU_CFLAGS -DNO_WERROR \ + MK_TESTS=no \ DESTDIR= PROGNAME=${MYMAKE:T} bmake: .PHONY @@ -361,7 +373,7 @@ kernel-toolchains: # existing system is. # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) -TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 +TARGETS?=amd64 arm i386 mips pc98 powerpc sparc64 TARGET_ARCHES_arm?= arm armeb armv6 armv6hf TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 Modified: projects/zfsd/head/Makefile.inc1 ============================================================================== --- projects/zfsd/head/Makefile.inc1 Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/Makefile.inc1 Fri Aug 22 15:12:56 2014 (r270335) @@ -17,6 +17,7 @@ # -DNO_DOCUPDATE do not update doc in ${MAKE} update # -DWITHOUT_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_ITOOLS="list of tools" to add additional tools to the ITOOLS 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 @@ -139,7 +140,7 @@ SRCRELDATE!= awk '/^\#define[[:space:]]* VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -394,7 +395,8 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ - LIBPRIVATEDIR=/usr/lib32/private + LIBPRIVATEDIR=/usr/lib32/private \ + DTRACE="${DTRACE} -32" LIB32WMAKEFLAGS+= CC="${XCC} ${LIB32FLAGS}" \ CXX="${XCXX} ${LIB32FLAGS}" \ DESTDIR=${LIB32TMP} \ @@ -756,7 +758,8 @@ _zoneinfo= zic tzsetup ITOOLS= [ awk cap_mkdb cat chflags chmod chown \ date echo egrep find grep id install ${_install-info} \ ln lockf make mkdir mtree mv pwd_mkdb \ - rm sed services_mkdb sh sysctl test true uname wc ${_zoneinfo} + rm sed services_mkdb sh sysctl test true uname wc ${_zoneinfo} \ + ${LOCAL_ITOOLS} # # distributeworld @@ -776,6 +779,14 @@ EXTRA_DISTRIBUTIONS+= games .if defined(LIB32TMP) && ${MK_LIB32} != "no" EXTRA_DISTRIBUTIONS+= lib32 .endif +.if ${MK_TESTS} != "no" +EXTRA_DISTRIBUTIONS+= tests +.endif + +DEBUG_DISTRIBUTIONS= +.if ${MK_DEBUG_FILES} != "no" +DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,doc,,} +.endif MTREE_MAGIC?= mtree 2.0 @@ -817,6 +828,10 @@ distributeworld installworld: _installch mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null .endif +.if ${MK_TESTS} != "no" && ${dist} == "tests" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null +.endif .if defined(NO_ROOT) ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ sed -e 's#^\./#./${dist}/#' >> ${METALOG} @@ -849,8 +864,7 @@ distributeworld installworld: _installch awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ ${DESTDIR}/${DISTDIR}/${dist}.meta .endfor -.if ${MK_DEBUG_FILES} != "no" -. for dist in base ${EXTRA_DISTRIBUTIONS} +.for dist in ${DEBUG_DISTRIBUTIONS} @# For each file that exists in this dist, print the corresponding @# line from the METALOG. This relies on the fact that @# a line containing only the filename will sort immediatly before @@ -859,8 +873,7 @@ distributeworld installworld: _installch find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \ awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ ${DESTDIR}/${DISTDIR}/${dist}.debug.meta -. endfor -.endif +.endfor .endif .endif @@ -878,19 +891,17 @@ packageworld: .endif .endfor -.if ${MK_DEBUG_FILES} != "no" -. for dist in base ${EXTRA_DISTRIBUTIONS} -. if defined(NO_ROOT) +.for dist in ${DEBUG_DISTRIBUTIONS} +. if defined(NO_ROOT) ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ - tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \ + tar cvJf ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz \ @${DESTDIR}/${DISTDIR}/${dist}.debug.meta -. else +. else ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ - tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \ + tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz \ usr/lib/debug -. endif -. endfor -.endif +. endif +.endfor # # reinstall @@ -1189,16 +1200,17 @@ _gperf= gnu/usr.bin/gperf _groff= gnu/usr.bin/groff .endif -.if ${BOOTSTRAPPING} < 900002 -_sed= usr.bin/sed +.if ${MK_VT} != "no" +_vtfontcvt= usr.bin/vtfontcvt .endif -.if ${BOOTSTRAPPING} < 900006 -_lex= usr.bin/lex +.if ${BOOTSTRAPPING} < 900002 +_sed= usr.bin/sed .endif .if ${BOOTSTRAPPING} < 1000002 -_m4= usr.bin/m4 +_m4= lib/libohash \ + usr.bin/m4 .endif .if ${BOOTSTRAPPING} < 1000013 @@ -1219,15 +1231,19 @@ _nmtree= lib/libnetbsd \ _cat= bin/cat .endif +.if ${BOOTSTRAPPING} < 1000033 +_lex= usr.bin/lex +.endif + .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 _awk= usr.bin/awk .endif -.if ${MK_BSNMP} != "no" && !exists(/usr/sbin/gensnmptree) +.if ${MK_BSNMP} != "no" _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif -# We need to build tlbgen when we're building clang either as +# We need to build tblgen when we're building clang either as # the bootstrap compiler, or as the part of the normal build. .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" _clang_tblgen= \ @@ -1238,9 +1254,8 @@ _clang_tblgen= \ .endif # dtrace tools are required for older bootstrap env and cross-build -.if ${MK_CDDL} != "no" && \ - ((${BOOTSTRAPPING} < 1000034 && \ - !(${BOOTSTRAPPING} >= 901505 && ${BOOTSTRAPPING} < 999999)) \ +# pre libdwarf +.if ${MK_CDDL} != "no" && (${BOOTSTRAPPING} < 1100006 \ || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH})) _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge @@ -1289,7 +1304,8 @@ bootstrap-tools: .MAKE ${_gensnmptree} \ usr.sbin/config \ ${_crunch} \ - ${_nmtree} + ${_nmtree} \ + ${_vtfontcvt} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ @@ -1352,9 +1368,6 @@ kernel-tools: .MAKE # # cross-tools: Build cross-building tools # -.if !defined(TARGET_ARCH) && defined(XDEV_ARCH) -TARGET_ARCH= ${XDEV_ARCH} -.endif .if ${TARGET_ARCH} != ${MACHINE_ARCH} .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" _btxld= usr.sbin/btxld @@ -1395,7 +1408,8 @@ cross-tools: .MAKE usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \ ${_btxld} \ ${_crunchide} \ - ${_kgzip} + ${_kgzip} \ + sys/boot/usb/tools ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ @@ -1404,6 +1418,48 @@ cross-tools: .MAKE ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install .endfor +NXBENV= MAKEOBJDIRPREFIX=${OBJTREE}/nxb \ + INSTALL="sh ${.CURDIR}/tools/install.sh" \ + VERSION="${VERSION}" +NXBMAKE= ${NXBENV} ${MAKE} \ + TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \ + CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \ + MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \ + MK_GDB=no MK_TESTS=no \ + SSP_CFLAGS= \ + MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ + -DNO_PIC MK_PROFILE=no -DNO_SHARED \ + -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ + MK_CLANG_FULL=no MK_LLDB=no + +native-xtools: .MAKE + mkdir -p ${OBJTREE}/nxb-bin/usr + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ + -p ${OBJTREE}/nxb-bin/usr >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ + -p ${OBJTREE}/nxb-bin/usr/include >/dev/null +.for _tool in \ + ${_clang_tblgen} \ + usr.bin/ar \ + ${_binutils} \ + ${_cc} \ + ${_gcc_tools} \ + ${_clang_libs} \ + ${_clang} \ + usr.bin/awk \ + usr.bin/bmake \ + usr.bin/lex \ + usr.bin/lorder \ + usr.bin/sed \ + usr.bin/yacc + ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ + cd ${.CURDIR}/${_tool} && \ + ${NXBMAKE} DIRPRFX=${_tool}/ obj && \ + ${NXBMAKE} DIRPRFX=${_tool}/ depend && \ + ${NXBMAKE} DIRPRFX=${_tool}/ all && \ + ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install +.endfor + # # hierarchy - ensure that all the needed directories are present # @@ -1475,13 +1531,15 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 lib/libopie lib/libpam ${_lib_libthr} \ lib/libradius lib/libsbuf lib/libtacplus \ ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ + ${_cddl_lib_libavl} \ ${_cddl_lib_libzfs_core} \ lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ ${_secure_lib_libcrypto} ${_lib_libldns} \ ${_secure_lib_libssh} ${_secure_lib_libssl} -.if ${MK_GNUCXX} != "no" && ${MK_CXX} != "no" +.if ${MK_GNUCXX} != "no" _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++ gnu/lib/libstdc++__L: lib/msun__L +gnu/lib/libsupc++__L: gnu/lib/libstdc++__L .endif .if defined(WITH_ATF) || ${MK_TESTS} != "no" @@ -1520,6 +1578,7 @@ lib/libopie__L lib/libtacplus__L: lib/li .if ${MK_CDDL} != "no" _cddl_lib_libumem= cddl/lib/libumem _cddl_lib_libnvpair= cddl/lib/libnvpair +_cddl_lib_libavl= cddl/lib/libavl _cddl_lib_libzfs_core= cddl/lib/libzfs_core _cddl_lib= cddl/lib cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L @@ -1837,9 +1896,9 @@ builddtb: ############### -.if defined(XDEV) && defined(XDEV_ARCH) +.if defined(TARGET) && defined(TARGET_ARCH) -.if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH} +.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} XDEV_CPUTYPE?=${CPUTYPE} .else XDEV_CPUTYPE?=${TARGET_CPUTYPE} @@ -1848,10 +1907,10 @@ XDEV_CPUTYPE?=${TARGET_CPUTYPE} NOFUN=-DNO_FSCHG MK_HTML=no MK_INFO=no -DNO_LINT \ MK_MAN=no MK_NLS=no MK_PROFILE=no \ MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \ - TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \ + TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ CPUTYPE=${XDEV_CPUTYPE} -XDDIR=${XDEV_ARCH}-freebsd +XDDIR=${TARGET_ARCH}-freebsd XDTP?=/usr/${XDDIR} .if ${XDTP:N/*} .error XDTP variable should be an absolute path @@ -1867,7 +1926,7 @@ CD2CFLAGS=-isystem ${XDDESTDIR}/usr/incl -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \ CPP="${CPP} ${CD2CFLAGS}" \ - MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH} + MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} CDTMP= ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN} @@ -1877,7 +1936,7 @@ XDDESTDIR=${DESTDIR}/${XDTP} OSREL!= uname -r | sed -e 's/[-(].*//' .endif -.ORDER: xdev-build xdev-install +.ORDER: xdev-build xdev-install xdev-links xdev: xdev-build xdev-install .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools @@ -1926,9 +1985,13 @@ _xi-mtree: -p ${XDDESTDIR}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${XDDESTDIR}/usr/include >/dev/null +.if ${MK_TESTS} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${XDDESTDIR}/usr >/dev/null +.endif -.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links -xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links +.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries +xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-cross-tools: @echo "_xi-cross-tools" @@ -1951,9 +2014,9 @@ _xi-libraries: ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ DESTDIR=${XDDESTDIR} -_xi-links: +xdev-links: ${_+_}cd ${XDDESTDIR}/usr/bin; \ - mkdir -p ../../../../usr/bin; \ + mkdir -p ../../../../usr/bin; \ for i in *; do \ ln -sf ../../${XDTP}/usr/bin/$$i \ ../../../../usr/bin/${XDDIR}-$$i; \ @@ -1961,6 +2024,6 @@ _xi-links: ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \ done .else -xdev xdev-build xdev-install: - @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target" +xdev xdev-build xdev-install xdev-links: + @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target" .endif Modified: projects/zfsd/head/ObsoleteFiles.inc ============================================================================== --- projects/zfsd/head/ObsoleteFiles.inc Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/ObsoleteFiles.inc Fri Aug 22 15:12:56 2014 (r270335) @@ -38,6 +38,97 @@ # xargs -n1 | sort | uniq -d; # done +# 20140814: libopie version bump +OLD_LIBS+=usr/lib/libopie.so.7 +OLD_LIBS+=usr/lib32/libopie.so.7 +# 20140811: otp-sha renamed to otp-sha1 +OLD_FILES+=usr/bin/otp-sha +OLD_FILES+=usr/share/man/man1/otp-sha.1.gz +# 20140807: Remove private lib files that should not be installed. +OLD_FILES+=usr/lib/private/libatf-c.a +OLD_FILES+=usr/lib/private/libatf-c.so +OLD_FILES+=usr/lib/private/libatf-c_p.a +OLD_FILES+=usr/lib/private/libatf-c++.a +OLD_FILES+=usr/lib/private/libatf-c++.so +OLD_FILES+=usr/lib/private/libatf-c++_p.a +OLD_FILES+=usr/lib/private/libbsdstat.a +OLD_FILES+=usr/lib/private/libbsdstat.so +OLD_FILES+=usr/lib/private/libbsdstat_p.a +OLD_FILES+=usr/lib/private/libheimipcc.a +OLD_FILES+=usr/lib/private/libheimipcc.so +OLD_FILES+=usr/lib/private/libheimipcc_p.a +OLD_FILES+=usr/lib/private/libheimipcs.a +OLD_FILES+=usr/lib/private/libheimipcs.so +OLD_FILES+=usr/lib/private/libheimipcs_p.a +OLD_FILES+=usr/lib/private/libldns.a +OLD_FILES+=usr/lib/private/libldns.so +OLD_FILES+=usr/lib/private/libldns_p.a +OLD_FILES+=usr/lib/private/libssh.a +OLD_FILES+=usr/lib/private/libssh.so +OLD_FILES+=usr/lib/private/libssh.p.a +OLD_FILES+=usr/lib/private/libunbound.a +OLD_FILES+=usr/lib/private/libunbound.so +OLD_FILES+=usr/lib/private/libunbound_p.a +OLD_FILES+=usr/lib/private/libucl.a +OLD_FILES+=usr/lib/private/libucl.so +OLD_FILES+=usr/lib/private/libucl_p.a +# 20140803: Remove an obsolete man page +OLD_FILES+=usr/share/man/man9/pmap_change_wiring.9.gz +# 20140728: libsbuf restored to old version. +OLD_LIBS+=lib/libsbuf.so.7 +# 20140728: Remove an obsolete man page +OLD_FILES+=usr/share/man/man9/VOP_GETVOBJECT.9.gz +OLD_FILES+=usr/share/man/man9/VOP_CREATEVOBJECT.9.gz +OLD_FILES+=usr/share/man/man9/VOP_DESTROYVOBJECT.9.gz +# 20140723: renamed to PCBGROUP.9 +OLD_FILES+=usr/share/man/man9/PCBGROUPS.9.gz +# 20140718: Remove obsolete man pages +OLD_FILES+=usr/share/man/man9/zero_copy.9.gz +OLD_FILES+=usr/share/man/man9/zero_copy_sockets.9.gz +# 20140718: Remove an obsolete man page +OLD_FILES+=usr/share/man/man9/pmap_page_protect.9.gz +# 20140717: Remove an obsolete man page +OLD_FILES+=usr/share/man/man9/pmap_clear_reference.9.gz +# 20140716: Remove an incorrectly named man page +OLD_FILES+=usr/share/man/man9/pmap_ts_modified.9.gz +# 20140712: Removal of bsd.dtrace.mk +OLD_FILES+=usr/share/mk/bsd.dtrace.mk +# 20140705: turn libreadline into an internal lib +OLD_LIBS+=lib/libreadline.so.8 +OLD_FILES+=usr/lib/libreadline.a +OLD_FILES+=usr/lib/libreadline_p.a +OLD_FILES+=usr/lib/libreadline.so +OLD_FILES+=usr/lib/libhistory.a +OLD_FILES+=usr/lib/libhistory_p.a +OLD_FILES+=usr/lib/libhistory.so +OLD_LIBS+=usr/lib/libhistory.so.8 +OLD_FILES+=usr/include/readline/chardefs.h +OLD_FILES+=usr/include/readline/history.h +OLD_FILES+=usr/include/readline/keymaps.h +OLD_FILES+=usr/include/readline/readline.h +OLD_FILES+=usr/include/readline/rlconf.h +OLD_FILES+=usr/include/readline/rlstdc.h +OLD_FILES+=usr/include/readline/rltypedefs.h +OLD_FILES+=usr/include/readline/rltypedefs.h +OLD_FILES+=usr/share/info/readline.info.gz +OLD_FILES+=usr/share/man/man3/readline.3.gz +# 20140625: csup removal +OLD_FILES+=usr/bin/csup +OLD_FILES+=usr/bin/cpasswd +OLD_FILES+=usr/share/man/man1/csup.1.gz +OLD_FILES+=usr/share/man/man1/cpasswd.1.gz +OLD_FILES+=usr/share/examples/cvsup/README +OLD_FILES+=usr/share/examples/cvsup/cvs-supfile +OLD_FILES+=usr/share/examples/cvsup/stable-supfile +OLD_FILES+=usr/share/examples/cvsup/standard-supfile +OLD_DIRS+=usr/share/examples/cvsup +# 20140614: send-pr removal +OLD_FILES+=usr/bin/sendbug +OLD_FILES+=usr/share/info/send-pr.info.gz +OLD_FILES+=usr/share/man/man1/send-pr.1.gz +OLD_FILES+=usr/share/man/man1/sendbug.1.gz +OLD_FILES+=etc/gnats/freefall +OLD_DIRS+=etc/gnats # 20140512: new clang import which bumps version from 3.4 to 3.4.1. OLD_FILES+=usr/include/clang/3.4/__wmmintrin_aes.h OLD_FILES+=usr/include/clang/3.4/__wmmintrin_pclmul.h @@ -544,6 +635,7 @@ OLD_FILES+=usr/share/man/man9/vfs_mount. OLD_FILES+=usr/bin/cvs OLD_FILES+=usr/bin/cvsbug OLD_FILES+=usr/share/doc/psd/28.cvs/paper.ascii.gz +OLD_FILES+=usr/share/doc/psd/28.cvs/paper.ps.gz OLD_DIRS+=usr/share/doc/psd/28.cvs OLD_FILES+=usr/share/examples/cvs/contrib/README OLD_FILES+=usr/share/examples/cvs/contrib/clmerge @@ -1164,9 +1256,6 @@ OLD_FILES+=usr/include/xmmintrin.h .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "arm" OLD_FILES+=usr/include/mmintrin.h .endif -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=usr/include/ia64intrin.h -.endif .if ${TARGET_ARCH} == "powerpc" OLD_FILES+=usr/include/altivec.h OLD_FILES+=usr/include/ppc-asm.h @@ -1184,10 +1273,6 @@ OLD_FILES+=usr/include/machine/rm7000.h OLD_FILES+=usr/include/machine/defs.h OLD_FILES+=usr/include/machine/queue.h .endif -# 20100326: [ia64] removed -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=usr/include/machine/nexusvar.h -.endif # 20100326: gcpio removal OLD_FILES+=usr/bin/gcpio OLD_FILES+=usr/share/info/cpio.info.gz @@ -1201,11 +1286,6 @@ OLD_FILES+=usr/share/man/man3/regexp.3.g OLD_FILES+=usr/share/man/man3/regsub.3.gz # 20100303: actual removal of utmp.h OLD_FILES+=usr/include/utmp.h -# 20100227: [ia64] removed and -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=usr/include/machine/sapicreg.h -OLD_FILES+=usr/include/machine/sapicvar.h -.endif # 20100208: man pages moved .if ${TARGET_ARCH} == "i386" OLD_FILES+=usr/share/man/man4/i386/alpm.4.gz @@ -1898,14 +1978,6 @@ OLD_FILES+=usr/share/man/man8/arlcontrol OLD_FILES+=sbin/sunlabel OLD_FILES+=usr/share/man/man8/sunlabel.8.gz .endif -# 20080703: bsdlabel & fdisk removed on ia64 -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=sbin/bsdlabel -OLD_FILES+=usr/share/man/man8/bsdlabel.8.gz -OLD_FILES+=usr/share/man/man8/disklabel.8.gz -OLD_FILES+=sbin/fdisk -OLD_FILES+=usr/share/man/man8/fdisk.8.gz -.endif # 20080701: wpa_supplicant.conf moved to share/examples/etc/ OLD_FILES+=usr/share/examples/wpa_supplicant/wpa_supplicant.conf OLD_DIRS+=usr/share/examples/wpa_supplicant @@ -2114,12 +2186,6 @@ OLD_FILES+=usr/include/sys/_elf_solaris. OLD_FILES+=usr/share/man/man3/pmc_x86_get_msr.3.gz # 20071108: Removed very crunch OLDCARD support file OLD_FILES+=etc/defaults/pccard.conf -# 20071104: Removed bsdlabel, fdisk and gpt from rescue on ia64. -.if ${TARGET_ARCH} == "ia64" -OLD_FILES+=rescue/bsdlabel -OLD_FILES+=rescue/fdisk -OLD_FILES+=rescue/gpt -.endif # 20071025: rc.d/nfslocking superceeded by rc.d/lockd and rc.d/statd OLD_FILES+=etc/rc.d/nfslocking # 20070930: rename of cached to nscd @@ -2780,10 +2846,6 @@ OLD_FILES+=usr/share/man/man8/mount_std. OLD_FILES+=usr/share/man/man4/uhidev.4.gz # 20061106: archive_write_prepare.3 removed OLD_FILES+=usr/share/man/man3/archive_write_prepare.3.gz -.if ${TARGET_ARCH} == "ia64" -# 20061104: skiload.help removed -OLD_FILES+=boot/skiload.help -.endif # 20061018: pccardc removed OLD_FILES+=usr/sbin/pccardc usr/share/man/man8/pccardc.8.gz # 20060930: demangle.h from contrib/libstdc++/include/ext/ @@ -2854,7 +2916,6 @@ OLD_DIRS+=usr/share/misc/pcvtfonts OLD_FILES+=usr/share/misc/keycap.pcvt OLD_FILES+=usr/share/man/man8/ispcvt.8.gz OLD_FILES+=usr/share/man/man5/keycap.5.gz -OLD_FILES+=usr/share/man/man4/vt.4.gz OLD_FILES+=usr/share/man/man4/pcvt.4.gz OLD_FILES+=usr/share/man/man3/kgetstr.3.gz OLD_FILES+=usr/share/man/man3/kgetnum.3.gz Modified: projects/zfsd/head/UPDATING ============================================================================== --- projects/zfsd/head/UPDATING Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/UPDATING Fri Aug 22 15:12:56 2014 (r270335) @@ -1,4 +1,4 @@ -Updating Information for FreeBSD current users +Updating Information for FreeBSD current users. This file is maintained and copyrighted by M. Warner Losh . See end of file for further details. For commonly done items, please see the @@ -31,6 +31,80 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20140729: + The ofwfb driver, used to provide a graphics console on PowerPC when + using vt(4), no longer allows mmap() of all of physical memory. This + will prevent Xorg on PowerPC with some ATI graphics cards from + initializing properly unless x11-servers/xorg-server is updated to + 1.12.4_8 or newer. + +20140723: + The xdev targets have been converted to using TARGET and + TARGET_ARCH instead of XDEV and XDEV_ARCH. + +20140719: + The default unbound configuration has been modified to address + issues with reverse lookups on networks that use private + address ranges. If you use the local_unbound service, run + "service local_unbound setup" as root to regenerate your + configuration, then "service local_unbound reload" to load the + new configuration. + +20140709: + The GNU texinfo and GNU info pages are not built and installed + anymore, WITH_INFO knob has been added to allow to built and install + them again. + +20140708: + The GNU readline library is now an INTERNALLIB - that is, it is + statically linked into consumers (GDB and variants) in the base + system, and the shared library is no longer installed. The + devel/readline port is available for third party software that + requires readline. + +20140702: + The Itanium architecture (ia64) has been removed from the list of + known architectures. This is the first step in the removal of the + architecture. + +20140701: + Commit r268115 has added NFSv4.1 server support, merged from + projects/nfsv4.1-server. Since this includes changes to the + internal interfaces between the NFS related modules, a full + build of the kernel and modules will be necessary. + __FreeBSD_version has been bumped. + +20140629: + The WITHOUT_VT_SUPPORT kernel config knob has been renamed + WITHOUT_VT. (The other _SUPPORT knobs have a consistent meaning + which differs from the behaviour controlled by this knob.) + +20140619: + Maximal length of the serial number in CTL was increased from 16 to + 64 chars, that breaks ABI. All CTL-related tools, such as ctladm + and ctld, need to be rebuilt to work with a new kernel. + +20140606: + The libatf-c and libatf-c++ major versions were downgraded to 0 and + 1 respectively to match the upstream numbers. They were out of + sync because, when they were originally added to FreeBSD, the + upstream versions were not respected. These libraries are private + and not yet built by default, so renumbering them should be a + non-issue. However, unclean source trees will yield broken test + programs once the operator executes "make delete-old-libs" after a + "make installworld". + + Additionally, the atf-sh binary was made private by moving it into + /usr/libexec/. Already-built shell test programs will keep the + path to the old binary so they will break after "make delete-old" + is run. + + If you are using WITH_TESTS=yes (not the default), wipe the object + tree and rebuild from scratch to prevent spurious test failures. + This is only needed once: the misnumbered libraries and misplaced + binaries have been added to OptionalObsoleteFiles.inc so they will + be removed during a clean upgrade. + 20140512: Clang and llvm have been upgraded to 3.4.1 release. @@ -50,7 +124,8 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 Although this has survived make universe and some upgrade scenarios, other upgrade scenarios may have broken. At least one form of temporary breakage was fixed with MAKESYSPATH settings for buildworld - as well... + as well... In cases where MAKESYSPATH isn't working with this + setting, you'll need to set it to the full path to your tree. One side effect of all this cleaning up is that bsd.compiler.mk is no longer implicitly included by bsd.own.mk. If you wish to Modified: projects/zfsd/head/bin/chio/chio.1 ============================================================================== --- projects/zfsd/head/bin/chio/chio.1 Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/chio/chio.1 Fri Aug 22 15:12:56 2014 (r270335) @@ -151,7 +151,6 @@ This command will query the status of th will move it to the element specified in its source attribute. This is a convenient way to return media from a drive or portal to its previous element in the changer. -.Pp .It Ic position Xo .Ar .Op Cm inv @@ -173,7 +172,6 @@ Report which picker unit the changer is .Xc Configure the changer to use picker .Ar . -.Pp .It Ic ielem Xo .Op Ar .Xc @@ -292,13 +290,11 @@ Configure the changer to use picker 2 (t The .Nm program and SCSI changer driver were written by -.An Jason R. Thorpe Aq thorpej@and.com +.An Jason R. Thorpe Aq Mt thorpej@and.com for And Communications, .Pa http://www.and.com/ . .Pp Additional work by -.An Hans Huebner -.Aq hans@artcom.de +.An Hans Huebner Aq Mt hans@artcom.de and -.An Steve Gunn -.Aq csg@waterspout.com . +.An Steve Gunn Aq Mt csg@waterspout.com . Modified: projects/zfsd/head/bin/csh/Makefile ============================================================================== --- projects/zfsd/head/bin/csh/Makefile Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/csh/Makefile Fri Aug 22 15:12:56 2014 (r270335) @@ -40,8 +40,8 @@ MLINKS= csh.1 tcsh.1 # utilities of the same name are handled with the associated manpage, # builtin.1 in share/man/man1/. -DPADD= ${LIBTERMCAP} ${LIBCRYPT} -LDADD= -ltermcap -lcrypt +DPADD= ${LIBTERMCAPW} ${LIBCRYPT} +LDADD= -ltermcapw -lcrypt LINKS= ${BINDIR}/csh ${BINDIR}/tcsh Modified: projects/zfsd/head/bin/date/tests/Makefile ============================================================================== --- projects/zfsd/head/bin/date/tests/Makefile Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/date/tests/Makefile Fri Aug 22 15:12:56 2014 (r270335) @@ -4,6 +4,6 @@ TESTSDIR= ${TESTSBASE}/bin/date -TAP_TESTS_SH= legacy_test +ATF_TESTS_SH= format_string_test .include Copied: projects/zfsd/head/bin/date/tests/format_string_test.sh (from r270315, head/bin/date/tests/format_string_test.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/zfsd/head/bin/date/tests/format_string_test.sh Fri Aug 22 15:12:56 2014 (r270335, copy of r270315, head/bin/date/tests/format_string_test.sh) @@ -0,0 +1,92 @@ +# +# Regression tests for date(1) +# +# Submitted by Edwin Groothuis +# +# $FreeBSD$ +# + +# +# These two date/times have been chosen carefully -- they +# create both the single digit and double/multidigit version of +# the values. +# +# To create a new one, make sure you are using the UTC timezone! +# + +TEST1=3222243 # 1970-02-07 07:04:03 +TEST2=1005600000 # 2001-11-12 21:11:12 + +check() +{ + local format_string exp_output_1 exp_output_2 + + format_string=${1} + exp_output_1=${2} + exp_output_2=${3} + + atf_check -o "inline:${exp_output_1}\n" \ + date -r ${TEST1} +%${format_string} + atf_check -o "inline:${exp_output_2}\n" \ + date -r ${TEST2} +%${format_string} +} + +format_string_test() +{ + local desc exp_output_1 exp_output_2 flag + + desc=${1} + flag=${2} + exp_output_1=${3} + exp_output_2=${4} + + atf_test_case ${desc}_test + eval " +${desc}_test_body() { + check ${flag} '${exp_output_1}' '${exp_output_2}'; +}" + atf_add_test_case ${desc}_test +} + +atf_init_test_cases() +{ + format_string_test A A Saturday Monday + format_string_test a a Sat Mon + format_string_test B B February November + format_string_test b b Feb Nov + format_string_test C C 19 20 + format_string_test c c "Sat Feb 7 07:04:03 1970" "Mon Nov 12 21:20:00 2001" + format_string_test D D 02/07/70 11/12/01 + format_string_test d d 07 12 + format_string_test e e " 7" 12 + format_string_test F F "1970-02-07" "2001-11-12" + format_string_test G G 1970 2001 + format_string_test g g 70 01 + format_string_test H H 07 21 + format_string_test h h Feb Nov + format_string_test I I 07 09 + format_string_test j j 038 316 + format_string_test k k " 7" 21 + format_string_test l l " 7" " 9" + format_string_test M M 04 20 + format_string_test m m 02 11 + format_string_test p p AM PM + format_string_test R R 07:04 21:20 + format_string_test r r "07:04:03 AM" "09:20:00 PM" + format_string_test S S 03 00 + format_string_test s s ${TEST1} ${TEST2} + format_string_test U U 05 45 + format_string_test u u 6 1 + format_string_test V V 06 46 + format_string_test v v " 7-Feb-1970" "12-Nov-2001" + format_string_test W W 05 46 + format_string_test w w 6 1 + format_string_test X X "07:04:03" "21:20:00" + format_string_test x x "02/07/70" "11/12/01" + format_string_test Y Y 1970 2001 + format_string_test y y 70 01 + format_string_test Z Z UTC UTC + format_string_test z z +0000 +0000 + format_string_test percent % % % + format_string_test plus + "Sat Feb 7 07:04:03 UTC 1970" "Mon Nov 12 21:20:00 UTC 2001" +} Modified: projects/zfsd/head/bin/ed/Makefile ============================================================================== --- projects/zfsd/head/bin/ed/Makefile Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/ed/Makefile Fri Aug 22 15:12:56 2014 (r270335) @@ -7,9 +7,7 @@ SRCS= buf.c cbc.c glbl.c io.c main.c re. LINKS= ${BINDIR}/ed ${BINDIR}/red MLINKS= ed.1 red.1 -.if !defined(RELEASE_CRUNCH) && \ - ${MK_OPENSSL} != "no" && \ - ${MK_ED_CRYPTO} != "no" +.if ${MK_OPENSSL} != "no" && ${MK_ED_CRYPTO} != "no" CFLAGS+=-DDES DPADD= ${LIBCRYPTO} LDADD= -lcrypto Modified: projects/zfsd/head/bin/ed/cbc.c ============================================================================== --- projects/zfsd/head/bin/ed/cbc.c Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/ed/cbc.c Fri Aug 22 15:12:56 2014 (r270335) @@ -237,7 +237,7 @@ expand_des_key(char *obuf, char *kbuf) /* * now translate it, bombing on any illegal hex digit */ - for (i = 0; kbuf[i] && i < 16; i++) + for (i = 0; i < 16 && kbuf[i]; i++) if ((nbuf[i] = hex_to_binary((int) kbuf[i], 16)) == -1) des_error("bad hex digit in key"); while (i < 16) Modified: projects/zfsd/head/bin/freebsd-version/freebsd-version.1 ============================================================================== --- projects/zfsd/head/bin/freebsd-version/freebsd-version.1 Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/freebsd-version/freebsd-version.1 Fri Aug 22 15:12:56 2014 (r270335) @@ -121,4 +121,4 @@ command appeared in The .Nm utility and this manual page were written by -.An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org . +.An Dag-Erling Sm\(/orgrav Aq Mt des@FreeBSD.org . Modified: projects/zfsd/head/bin/ls/Makefile ============================================================================== --- projects/zfsd/head/bin/ls/Makefile Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/ls/Makefile Fri Aug 22 15:12:56 2014 (r270335) @@ -11,8 +11,8 @@ LDADD= -lutil .if !defined(RELEASE_CRUNCH) && \ ${MK_LS_COLORS} != no CFLAGS+= -DCOLORLS -DPADD+= ${LIBTERMCAP} -LDADD+= -ltermcap +DPADD+= ${LIBTERMCAPW} +LDADD+= -ltermcapw .endif .include Modified: projects/zfsd/head/bin/mv/mv.c ============================================================================== --- projects/zfsd/head/bin/mv/mv.c Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/mv/mv.c Fri Aug 22 15:12:56 2014 (r270335) @@ -278,6 +278,7 @@ fastcopy(const char *from, const char *t static char *bp = NULL; mode_t oldmode; int nread, from_fd, to_fd; + struct stat tsb; if ((from_fd = open(from, O_RDONLY, 0)) < 0) { warn("fastcopy: open() failed (from): %s", from); @@ -336,10 +337,18 @@ err: if (unlink(to)) * if the server supports flags and we were trying to *remove* flags * on a file that we copied, i.e., that we didn't create.) */ - errno = 0; - if (fchflags(to_fd, sbp->st_flags)) - if (errno != EOPNOTSUPP || sbp->st_flags != 0) - warn("%s: set flags (was: 0%07o)", to, sbp->st_flags); + if (fstat(to_fd, &tsb) == 0) { + if ((sbp->st_flags & ~UF_ARCHIVE) != + (tsb.st_flags & ~UF_ARCHIVE)) { + if (fchflags(to_fd, + sbp->st_flags | (tsb.st_flags & UF_ARCHIVE))) + if (errno != EOPNOTSUPP || + ((sbp->st_flags & ~UF_ARCHIVE) != 0)) + warn("%s: set flags (was: 0%07o)", + to, sbp->st_flags); + } + } else + warn("%s: cannot stat", to); tval[0].tv_sec = sbp->st_atime; tval[1].tv_sec = sbp->st_mtime; Modified: projects/zfsd/head/bin/pkill/pkill.1 ============================================================================== --- projects/zfsd/head/bin/pkill/pkill.1 Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/pkill/pkill.1 Fri Aug 22 15:12:56 2014 (r270335) @@ -291,5 +291,4 @@ Solaris 7. They made their first appearance in .Fx 5.3 . .Sh AUTHORS -.An Andrew Doran -.Aq ad@NetBSD.org +.An Andrew Doran Aq Mt ad@NetBSD.org Modified: projects/zfsd/head/bin/pkill/tests/Makefile ============================================================================== --- projects/zfsd/head/bin/pkill/tests/Makefile Fri Aug 22 15:12:20 2014 (r270334) +++ projects/zfsd/head/bin/pkill/tests/Makefile Fri Aug 22 15:12:56 2014 (r270335) @@ -14,6 +14,7 @@ TAP_TESTS_SH+= pgrep-g_test TAP_TESTS_SH+= pgrep-i_test TAP_TESTS_SH+= pgrep-j_test TEST_METADATA.pgrep-j_test+= required_user="root" +TEST_METADATA.pgrep-j_test+= required_programs="jail jls" TAP_TESTS_SH+= pgrep-l_test TAP_TESTS_SH+= pgrep-n_test TAP_TESTS_SH+= pgrep-o_test @@ -31,6 +32,7 @@ TAP_TESTS_SH+= pkill-g_test TAP_TESTS_SH+= pkill-i_test TAP_TESTS_SH+= pkill-j_test TEST_METADATA.pkill-j_test+= required_user="root" +TEST_METADATA.pkill-j_test+= required_programs="jail jls" TAP_TESTS_SH+= pkill-s_test TAP_TESTS_SH+= pkill-t_test *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 11:27:50 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3FFF0D26; Sat, 23 Aug 2014 11:27:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B35A3A3C; Sat, 23 Aug 2014 11:27:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NBRogw054941; Sat, 23 Aug 2014 11:27:50 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NBRn9n054939; Sat, 23 Aug 2014 11:27:49 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201408231127.s7NBRn9n054939@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Sat, 23 Aug 2014 11:27:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270394 - projects/ipfw/sys/netpfil/ipfw 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.18-1 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: Sat, 23 Aug 2014 11:27:50 -0000 Author: melifaro Date: Sat Aug 23 11:27:49 2014 New Revision: 270394 URL: http://svnweb.freebsd.org/changeset/base/270394 Log: * Use OP_ADD/OP_DEL macro instead of plain integers. * ipfw_foreach_table_tentry() to permit listing arbitrary ipfw table using standart format. Modified: projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c projects/ipfw/sys/netpfil/ipfw/ip_fw_table.h Modified: projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c ============================================================================== --- projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c Sat Aug 23 10:58:16 2014 (r270393) +++ projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c Sat Aug 23 11:27:49 2014 (r270394) @@ -107,6 +107,11 @@ static int create_table_internal(struct struct table_algo **pta, uint16_t *pkidx, int ref); static void link_table(struct ip_fw_chain *ch, struct table_config *tc); static void unlink_table(struct ip_fw_chain *ch, struct table_config *tc); +static int find_ref_table(struct ip_fw_chain *ch, struct tid_info *ti, + struct tentry_info *tei, uint32_t count, int op, + struct table_config **ptc, struct table_algo **pta); +#define OP_ADD 1 +#define OP_DEL 0 static int export_tables(struct ip_fw_chain *ch, ipfw_obj_lheader *olh, struct sockopt_data *sd); static void export_table_info(struct ip_fw_chain *ch, struct table_config *tc, @@ -239,7 +244,7 @@ create_table_compat(struct ip_fw_chain * */ static int find_ref_table(struct ip_fw_chain *ch, struct tid_info *ti, - struct tentry_info *tei, uint32_t count, int do_add, + struct tentry_info *tei, uint32_t count, int op, struct table_config **ptc, struct table_algo **pta) { struct namedobj_instance *ni; @@ -265,7 +270,7 @@ find_ref_table(struct ip_fw_chain *ch, s } /* Try to exit early on limit hit */ - if (do_add != 0 && count == 1 && + if (op == OP_ADD && count == 1 && check_table_limit(tc, tei) != 0) { IPFW_UH_WUNLOCK(ch); return (EFBIG); @@ -278,7 +283,7 @@ find_ref_table(struct ip_fw_chain *ch, s IPFW_UH_WUNLOCK(ch); if (tc == NULL) { - if (do_add == 0) + if (op == OP_DEL) return (ESRCH); /* Compability mode: create new table for old clients */ @@ -354,7 +359,7 @@ rollback_added_entries(struct ip_fw_chai */ static int prepare_batch_buffer(struct ip_fw_chain *ch, struct table_algo *ta, - struct tentry_info *tei, uint32_t count, int do_add, caddr_t *ta_buf) + struct tentry_info *tei, uint32_t count, int op, caddr_t *ta_buf) { caddr_t ta_buf_m, v; size_t ta_buf_sz, sz; @@ -378,14 +383,14 @@ prepare_batch_buffer(struct ip_fw_chain * if we need to rollback all changes) */ sz = count * ta_buf_sz; - ta_buf_m = malloc((do_add != 0) ? sz * 2 : sz, M_TEMP, + ta_buf_m = malloc((op == OP_ADD) ? sz * 2 : sz, M_TEMP, M_WAITOK | M_ZERO); } v = ta_buf_m; for (i = 0; i < count; i++, v += ta_buf_sz) { ptei = &tei[i]; - error = (do_add != 0) ? + error = (op == OP_ADD) ? ta->prepare_add(ch, ptei, v) : ta->prepare_del(ch, ptei, v); /* @@ -460,14 +465,15 @@ add_table_entry(struct ip_fw_chain *ch, /* * Find and reference existing table. */ - if ((error = find_ref_table(ch, ti, tei, count, 1, &tc, &ta)) != 0) + error = find_ref_table(ch, ti, tei, count, OP_ADD, &tc, &ta); + if (error != 0) return (error); /* Allocate memory and prepare record(s) */ rollback = 0; /* Pass stack buffer by default */ ta_buf_m = ta_buf; - error = prepare_batch_buffer(ch, ta, tei, count, 1, &ta_buf_m); + error = prepare_batch_buffer(ch, ta, tei, count, OP_ADD, &ta_buf_m); if (error != 0) goto cleanup; @@ -579,13 +585,14 @@ del_table_entry(struct ip_fw_chain *ch, /* * Find and reference existing table. */ - if ((error = find_ref_table(ch, ti, tei, count, 0, &tc, &ta)) != 0) + error = find_ref_table(ch, ti, tei, count, OP_DEL, &tc, &ta); + if (error != 0) return (error); /* Allocate memory and prepare record(s) */ /* Pass stack buffer by default */ ta_buf_m = ta_buf; - error = prepare_batch_buffer(ch, ta, tei, count, 0, &ta_buf_m); + error = prepare_batch_buffer(ch, ta, tei, count, OP_DEL, &ta_buf_m); if (error != 0) goto cleanup; @@ -1892,8 +1899,10 @@ struct dump_args { uint32_t cnt; uint16_t uidx; int error; - ipfw_table_entry *ent; uint32_t size; + ipfw_table_entry *ent; + ta_foreach_f *f; + void *farg; ipfw_obj_tentry tent; }; @@ -2357,6 +2366,65 @@ dump_table_xentry(void *e, void *arg) } /* + * Helper function to export table algo data + * to tentry format before calling user function. + * + * Returns 0 on success. + */ +static int +prepare_table_tentry(void *e, void *arg) +{ + struct dump_args *da; + struct table_config *tc; + struct table_algo *ta; + int error; + + da = (struct dump_args *)arg; + + tc = da->tc; + ta = tc->ta; + + error = ta->dump_tentry(tc->astate, da->ti, e, &da->tent); + if (error != 0) + return (error); + + da->f(&da->tent, da->farg); + + return (0); +} + +/* + * Allow external consumers to read table entries in standard format. + */ +int +ipfw_foreach_table_tentry(struct ip_fw_chain *ch, uint16_t kidx, + ta_foreach_f *f, void *arg) +{ + struct namedobj_instance *ni; + struct table_config *tc; + struct table_algo *ta; + struct dump_args da; + + ni = CHAIN_TO_NI(ch); + + tc = (struct table_config *)ipfw_objhash_lookup_kidx(ni, kidx); + if (tc == NULL) + return (ESRCH); + + ta = tc->ta; + + memset(&da, 0, sizeof(da)); + da.ti = KIDX_TO_TI(ch, tc->no.kidx); + da.tc = tc; + da.f = f; + da.farg = arg; + + ta->foreach(tc->astate, da.ti, prepare_table_tentry, &da); + + return (0); +} + +/* * Table algorithms */ Modified: projects/ipfw/sys/netpfil/ipfw/ip_fw_table.h ============================================================================== --- projects/ipfw/sys/netpfil/ipfw/ip_fw_table.h Sat Aug 23 10:58:16 2014 (r270393) +++ projects/ipfw/sys/netpfil/ipfw/ip_fw_table.h Sat Aug 23 11:27:49 2014 (r270394) @@ -188,6 +188,8 @@ int ipfw_move_tables_sets(struct ip_fw_c uint32_t new_set); void ipfw_swap_tables_sets(struct ip_fw_chain *ch, uint32_t old_set, uint32_t new_set, int mv); +int ipfw_foreach_table_tentry(struct ip_fw_chain *ch, uint16_t kidx, + ta_foreach_f f, void *arg); /* Legacy interfaces */ int ipfw_count_table(struct ip_fw_chain *ch, struct tid_info *ti, From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 12:41:40 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C6049D; Sat, 23 Aug 2014 12:41:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67DC630E3; Sat, 23 Aug 2014 12:41:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NCfeQI099427; Sat, 23 Aug 2014 12:41:40 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NCfe7J099426; Sat, 23 Aug 2014 12:41:40 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201408231241.s7NCfe7J099426@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Sat, 23 Aug 2014 12:41:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270407 - projects/ipfw/sys/netpfil/ipfw 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.18-1 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: Sat, 23 Aug 2014 12:41:40 -0000 Author: melifaro Date: Sat Aug 23 12:41:39 2014 New Revision: 270407 URL: http://svnweb.freebsd.org/changeset/base/270407 Log: Simplify table reference/create chain. Modified: projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c Modified: projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c ============================================================================== --- projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c Sat Aug 23 12:00:45 2014 (r270406) +++ projects/ipfw/sys/netpfil/ipfw/ip_fw_table.c Sat Aug 23 12:41:39 2014 (r270407) @@ -103,13 +103,11 @@ static struct table_config *alloc_table_ static void free_table_config(struct namedobj_instance *ni, struct table_config *tc); static int create_table_internal(struct ip_fw_chain *ch, struct tid_info *ti, - char *aname, ipfw_xtable_info *i, struct table_config **ptc, - struct table_algo **pta, uint16_t *pkidx, int ref); + char *aname, ipfw_xtable_info *i, uint16_t *pkidx, int ref); static void link_table(struct ip_fw_chain *ch, struct table_config *tc); static void unlink_table(struct ip_fw_chain *ch, struct table_config *tc); static int find_ref_table(struct ip_fw_chain *ch, struct tid_info *ti, - struct tentry_info *tei, uint32_t count, int op, - struct table_config **ptc, struct table_algo **pta); + struct tentry_info *tei, uint32_t count, int op, struct table_config **ptc); #define OP_ADD 1 #define OP_DEL 0 static int export_tables(struct ip_fw_chain *ch, ipfw_obj_lheader *olh, @@ -182,7 +180,7 @@ check_table_limit(struct table_config *t * one of pre-defined states known by userland. */ static void -store_tei_result(struct tentry_info *tei, int do_add, int error, uint32_t num) +store_tei_result(struct tentry_info *tei, int op, int error, uint32_t num) { int flag; @@ -190,9 +188,9 @@ store_tei_result(struct tentry_info *tei switch (error) { case 0: - if (do_add && num != 0) + if (op == OP_ADD && num != 0) flag = TEI_FLAGS_ADDED; - if (do_add == 0) + if (op == OP_DEL) flag = TEI_FLAGS_DELETED; break; case ENOENT: @@ -218,7 +216,7 @@ store_tei_result(struct tentry_info *tei */ static int create_table_compat(struct ip_fw_chain *ch, struct tid_info *ti, - struct table_config **ptc, struct table_algo **pta, uint16_t *pkidx) + uint16_t *pkidx) { ipfw_xtable_info xi; int error; @@ -227,7 +225,7 @@ create_table_compat(struct ip_fw_chain * /* Set u32 as default value type for legacy clients */ xi.vtype = IPFW_VTYPE_U32; - error = create_table_internal(ch, ti, NULL, &xi, ptc, pta, pkidx, 1); + error = create_table_internal(ch, ti, NULL, &xi, pkidx, 1); if (error != 0) return (error); @@ -238,72 +236,68 @@ create_table_compat(struct ip_fw_chain * * Find and reference existing table optionally * creating new one. * - * Saves found table config/table algo into @ptc / @pta. + * Saves found table config into @ptc. + * Note function may drop/acquire UH_WLOCK. * Returns 0 if table was found/created and referenced * or non-zero return code. */ static int find_ref_table(struct ip_fw_chain *ch, struct tid_info *ti, struct tentry_info *tei, uint32_t count, int op, - struct table_config **ptc, struct table_algo **pta) + struct table_config **ptc) { struct namedobj_instance *ni; struct table_config *tc; - struct table_algo *ta; + uint16_t kidx; int error; - IPFW_UH_WLOCK(ch); + IPFW_UH_WLOCK_ASSERT(ch); ni = CHAIN_TO_NI(ch); tc = NULL; - ta = NULL; if ((tc = find_table(ni, ti)) != NULL) { /* check table type */ - if (tc->no.type != ti->type) { - IPFW_UH_WUNLOCK(ch); + if (tc->no.type != ti->type) return (EINVAL); - } - if (tc->locked != 0) { - IPFW_UH_WUNLOCK(ch); + if (tc->locked != 0) return (EACCES); - } /* Try to exit early on limit hit */ if (op == OP_ADD && count == 1 && - check_table_limit(tc, tei) != 0) { - IPFW_UH_WUNLOCK(ch); + check_table_limit(tc, tei) != 0) return (EFBIG); - } - /* Reference and unlock */ + /* Reference and return */ tc->no.refcnt++; - ta = tc->ta; + *ptc = tc; + return (0); } - IPFW_UH_WUNLOCK(ch); - if (tc == NULL) { - if (op == OP_DEL) - return (ESRCH); + if (op == OP_DEL) + return (ESRCH); - /* Compability mode: create new table for old clients */ - if ((tei->flags & TEI_FLAGS_COMPAT) == 0) - return (ESRCH); + /* Compability mode: create new table for old clients */ + if ((tei->flags & TEI_FLAGS_COMPAT) == 0) + return (ESRCH); - error = create_table_compat(ch, ti, &tc, &ta, NULL); - if (error != 0) - return (error); + IPFW_UH_WUNLOCK(ch); + error = create_table_compat(ch, ti, &kidx); + IPFW_UH_WLOCK(ch); + + if (error != 0) + return (error); - /* OK, now we've got referenced table. */ - } + tc = (struct table_config *)ipfw_objhash_lookup_kidx(ni, kidx); + KASSERT(tc != NULL, ("create_table_compat returned bad idx %d", kidx)); + /* OK, now we've got referenced table. */ *ptc = tc; - *pta = ta; return (0); } /* - * Rolls back already @added to @tc entries using state arrat @ta_buf_m. + * Rolls back already @added to @tc entries using state array @ta_buf_m. * Assume the following layout: * 1) ADD state (ta_buf_m[0] ... t_buf_m[added - 1]) for handling update cases * 2) DEL state (ta_buf_m[count[ ... t_buf_m[count + added - 1]) @@ -412,7 +406,7 @@ prepare_batch_buffer(struct ip_fw_chain */ static void flush_batch_buffer(struct ip_fw_chain *ch, struct table_algo *ta, - struct tentry_info *tei, uint32_t count, int do_add, int rollback, + struct tentry_info *tei, uint32_t count, int rollback, caddr_t ta_buf_m, caddr_t ta_buf) { caddr_t v; @@ -465,9 +459,14 @@ add_table_entry(struct ip_fw_chain *ch, /* * Find and reference existing table. */ - error = find_ref_table(ch, ti, tei, count, OP_ADD, &tc, &ta); - if (error != 0) + IPFW_UH_WLOCK(ch); + error = find_ref_table(ch, ti, tei, count, OP_ADD, &tc); + if (error != 0) { + IPFW_UH_WUNLOCK(ch); return (error); + } + ta = tc->ta; + IPFW_UH_WUNLOCK(ch); /* Allocate memory and prepare record(s) */ rollback = 0; @@ -522,7 +521,7 @@ add_table_entry(struct ip_fw_chain *ch, error = ta->add(tc->astate, KIDX_TO_TI(ch, kidx), ptei, v, &num); /* Set status flag to inform userland */ - store_tei_result(ptei, 1, error, num); + store_tei_result(ptei, OP_ADD, error, num); } if (error == 0) { /* Update number of records to ease limit checking */ @@ -559,7 +558,7 @@ add_table_entry(struct ip_fw_chain *ch, error = first_error; cleanup: - flush_batch_buffer(ch, ta, tei, count, 1, rollback, ta_buf_m, ta_buf); + flush_batch_buffer(ch, ta, tei, count, rollback, ta_buf_m, ta_buf); return (error); } @@ -585,9 +584,14 @@ del_table_entry(struct ip_fw_chain *ch, /* * Find and reference existing table. */ - error = find_ref_table(ch, ti, tei, count, OP_DEL, &tc, &ta); - if (error != 0) + IPFW_UH_WLOCK(ch); + error = find_ref_table(ch, ti, tei, count, OP_DEL, &tc); + if (error != 0) { + IPFW_UH_WUNLOCK(ch); return (error); + } + ta = tc->ta; + IPFW_UH_WUNLOCK(ch); /* Allocate memory and prepare record(s) */ /* Pass stack buffer by default */ @@ -623,7 +627,7 @@ del_table_entry(struct ip_fw_chain *ch, error = ta->del(tc->astate, KIDX_TO_TI(ch, kidx), ptei, v, &num); /* Save state for userland */ - store_tei_result(ptei, 0, error, num); + store_tei_result(ptei, OP_DEL, error, num); if (error != 0 && first_error == 0) first_error = error; tc->count -= num; @@ -642,7 +646,7 @@ del_table_entry(struct ip_fw_chain *ch, error = first_error; cleanup: - flush_batch_buffer(ch, ta, tei, count, 0, 0, ta_buf_m, ta_buf); + flush_batch_buffer(ch, ta, tei, count, 0, ta_buf_m, ta_buf); return (error); } @@ -1712,7 +1716,7 @@ ipfw_create_table(struct ip_fw_chain *ch } IPFW_UH_RUNLOCK(ch); - return (create_table_internal(ch, &ti, aname, i, NULL, NULL, NULL, 0)); + return (create_table_internal(ch, &ti, aname, i, NULL, 0)); } /* @@ -1720,16 +1724,14 @@ ipfw_create_table(struct ip_fw_chain *ch * * Relies on table name checking inside find_name_tlv() * Assume @aname to be checked and valid. - * Stores allocated table config, used algo and kidx - * inside @ptc, @pta and @pkidx (if non-NULL). + * Stores allocated table kidx inside @pkidx (if non-NULL). * Reference created table if @compat is non-zero. * * Returns 0 on success. */ static int create_table_internal(struct ip_fw_chain *ch, struct tid_info *ti, - char *aname, ipfw_xtable_info *i, struct table_config **ptc, - struct table_algo **pta, uint16_t *pkidx, int compat) + char *aname, ipfw_xtable_info *i, uint16_t *pkidx, int compat) { struct namedobj_instance *ni; struct table_config *tc, *tc_new, *tmp; @@ -1793,10 +1795,6 @@ create_table_internal(struct ip_fw_chain if (compat != 0) tc->no.refcnt++; - if (ptc != NULL) - *ptc = tc; - if (pta != NULL) - *pta = ta; if (pkidx != NULL) *pkidx = tc->no.kidx; @@ -3230,7 +3228,7 @@ find_ref_rule_tables(struct ip_fw_chain ti->type = p->type; ti->atype = 0; - error = create_table_compat(ch, ti, NULL, NULL, &kidx); + error = create_table_compat(ch, ti, &kidx); if (error == 0) { p->kidx = kidx; continue; From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 14:58:41 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 893DCC00; Sat, 23 Aug 2014 14:58:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F7163BC2; Sat, 23 Aug 2014 14:58:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NEwfoQ060391; Sat, 23 Aug 2014 14:58:41 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NEwWm2060339; Sat, 23 Aug 2014 14:58:32 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201408231458.s7NEwWm2060339@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Sat, 23 Aug 2014 14:58:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270410 - in projects/ipfw: . bin/ed bin/pkill/tests bin/rmail bin/sh bin/sh/tests bin/sh/tests/errors bin/sh/tests/expansion cddl cddl/contrib/opensolaris/cmd/lockstat 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.18-1 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: Sat, 23 Aug 2014 14:58:41 -0000 Author: melifaro Date: Sat Aug 23 14:58:31 2014 New Revision: 270410 URL: http://svnweb.freebsd.org/changeset/base/270410 Log: Sync to HEAD@r270409. Added: projects/ipfw/bin/sh/tests/expansion/arith14.0 - copied unchanged from r270409, head/bin/sh/tests/expansion/arith14.0 projects/ipfw/contrib/llvm/patches/patch-r270147-llvm-r197824-r213427-r213960.diff - copied unchanged from r270409, head/contrib/llvm/patches/patch-r270147-llvm-r197824-r213427-r213960.diff projects/ipfw/etc/auto_master - copied unchanged from r270409, head/etc/auto_master projects/ipfw/etc/autofs/ - copied from r270409, head/etc/autofs/ projects/ipfw/etc/rc.d/automount - copied unchanged from r270409, head/etc/rc.d/automount projects/ipfw/etc/rc.d/automountd - copied unchanged from r270409, head/etc/rc.d/automountd projects/ipfw/etc/rc.d/autounmountd - copied unchanged from r270409, head/etc/rc.d/autounmountd projects/ipfw/sbin/devd/tests/ - copied from r270409, head/sbin/devd/tests/ projects/ipfw/sbin/ifconfig/sfp.c - copied unchanged from r270409, head/sbin/ifconfig/sfp.c projects/ipfw/share/man/man5/autofs.5 - copied unchanged from r270409, head/share/man/man5/autofs.5 projects/ipfw/share/vt/keymaps/INDEX.keymaps - copied unchanged from r270409, head/share/vt/keymaps/INDEX.keymaps projects/ipfw/share/vt/keymaps/am.kbd - copied unchanged from r270409, head/share/vt/keymaps/am.kbd projects/ipfw/share/vt/keymaps/be.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/be.acc.kbd projects/ipfw/share/vt/keymaps/be.kbd - copied unchanged from r270409, head/share/vt/keymaps/be.kbd projects/ipfw/share/vt/keymaps/bg.bds.kbd - copied unchanged from r270409, head/share/vt/keymaps/bg.bds.kbd projects/ipfw/share/vt/keymaps/bg.phonetic.kbd - copied unchanged from r270409, head/share/vt/keymaps/bg.phonetic.kbd projects/ipfw/share/vt/keymaps/br.kbd - copied unchanged from r270409, head/share/vt/keymaps/br.kbd projects/ipfw/share/vt/keymaps/br.noacc.kbd - copied unchanged from r270409, head/share/vt/keymaps/br.noacc.kbd projects/ipfw/share/vt/keymaps/by.kbd - copied unchanged from r270409, head/share/vt/keymaps/by.kbd projects/ipfw/share/vt/keymaps/ca-fr.kbd - copied unchanged from r270409, head/share/vt/keymaps/ca-fr.kbd projects/ipfw/share/vt/keymaps/ca.kbd - copied unchanged from r270409, head/share/vt/keymaps/ca.kbd projects/ipfw/share/vt/keymaps/centraleuropean.kbd - copied unchanged from r270409, head/share/vt/keymaps/centraleuropean.kbd projects/ipfw/share/vt/keymaps/centraleuropean.qwerty.kbd - copied unchanged from r270409, head/share/vt/keymaps/centraleuropean.qwerty.kbd projects/ipfw/share/vt/keymaps/ch-fr.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/ch-fr.acc.kbd projects/ipfw/share/vt/keymaps/ch-fr.kbd - copied unchanged from r270409, head/share/vt/keymaps/ch-fr.kbd projects/ipfw/share/vt/keymaps/ch.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/ch.acc.kbd projects/ipfw/share/vt/keymaps/ch.kbd - copied unchanged from r270409, head/share/vt/keymaps/ch.kbd projects/ipfw/share/vt/keymaps/ch.macbook.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/ch.macbook.acc.kbd projects/ipfw/share/vt/keymaps/colemak.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/colemak.acc.kbd projects/ipfw/share/vt/keymaps/cz.kbd - copied unchanged from r270409, head/share/vt/keymaps/cz.kbd projects/ipfw/share/vt/keymaps/de.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/de.acc.kbd projects/ipfw/share/vt/keymaps/de.kbd - copied unchanged from r270409, head/share/vt/keymaps/de.kbd projects/ipfw/share/vt/keymaps/de.noacc.kbd - copied unchanged from r270409, head/share/vt/keymaps/de.noacc.kbd projects/ipfw/share/vt/keymaps/dk.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/dk.acc.kbd projects/ipfw/share/vt/keymaps/dk.kbd - copied unchanged from r270409, head/share/vt/keymaps/dk.kbd projects/ipfw/share/vt/keymaps/dk.macbook.kbd - copied unchanged from r270409, head/share/vt/keymaps/dk.macbook.kbd projects/ipfw/share/vt/keymaps/ee.kbd - copied unchanged from r270409, head/share/vt/keymaps/ee.kbd projects/ipfw/share/vt/keymaps/es.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/es.acc.kbd projects/ipfw/share/vt/keymaps/es.dvorak.kbd - copied unchanged from r270409, head/share/vt/keymaps/es.dvorak.kbd projects/ipfw/share/vt/keymaps/es.kbd - copied unchanged from r270409, head/share/vt/keymaps/es.kbd projects/ipfw/share/vt/keymaps/fi.kbd - copied unchanged from r270409, head/share/vt/keymaps/fi.kbd projects/ipfw/share/vt/keymaps/fr.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/fr.acc.kbd projects/ipfw/share/vt/keymaps/fr.dvorak.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/fr.dvorak.acc.kbd projects/ipfw/share/vt/keymaps/fr.dvorak.kbd - copied unchanged from r270409, head/share/vt/keymaps/fr.dvorak.kbd projects/ipfw/share/vt/keymaps/fr.kbd - copied unchanged from r270409, head/share/vt/keymaps/fr.kbd projects/ipfw/share/vt/keymaps/fr.macbook.kbd - copied unchanged from r270409, head/share/vt/keymaps/fr.macbook.kbd projects/ipfw/share/vt/keymaps/gr.101.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/gr.101.acc.kbd projects/ipfw/share/vt/keymaps/gr.elot.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/gr.elot.acc.kbd projects/ipfw/share/vt/keymaps/gr.kbd - copied unchanged from r270409, head/share/vt/keymaps/gr.kbd projects/ipfw/share/vt/keymaps/hr.kbd - copied unchanged from r270409, head/share/vt/keymaps/hr.kbd projects/ipfw/share/vt/keymaps/hu.101.kbd - copied unchanged from r270409, head/share/vt/keymaps/hu.101.kbd projects/ipfw/share/vt/keymaps/hu.102.kbd - copied unchanged from r270409, head/share/vt/keymaps/hu.102.kbd projects/ipfw/share/vt/keymaps/il.kbd - copied unchanged from r270409, head/share/vt/keymaps/il.kbd projects/ipfw/share/vt/keymaps/is.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/is.acc.kbd projects/ipfw/share/vt/keymaps/is.kbd - copied unchanged from r270409, head/share/vt/keymaps/is.kbd projects/ipfw/share/vt/keymaps/it.kbd - copied unchanged from r270409, head/share/vt/keymaps/it.kbd projects/ipfw/share/vt/keymaps/jp.capsctrl.kbd - copied unchanged from r270409, head/share/vt/keymaps/jp.capsctrl.kbd projects/ipfw/share/vt/keymaps/jp.kbd - copied unchanged from r270409, head/share/vt/keymaps/jp.kbd projects/ipfw/share/vt/keymaps/jp.pc98.iso.kbd - copied unchanged from r270409, head/share/vt/keymaps/jp.pc98.iso.kbd projects/ipfw/share/vt/keymaps/jp.pc98.kbd - copied unchanged from r270409, head/share/vt/keymaps/jp.pc98.kbd projects/ipfw/share/vt/keymaps/kz.io.kbd - copied unchanged from r270409, head/share/vt/keymaps/kz.io.kbd projects/ipfw/share/vt/keymaps/kz.kst.kbd - copied unchanged from r270409, head/share/vt/keymaps/kz.kst.kbd projects/ipfw/share/vt/keymaps/latinamerican.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/latinamerican.acc.kbd projects/ipfw/share/vt/keymaps/latinamerican.kbd - copied unchanged from r270409, head/share/vt/keymaps/latinamerican.kbd projects/ipfw/share/vt/keymaps/lt.kbd - copied unchanged from r270409, head/share/vt/keymaps/lt.kbd projects/ipfw/share/vt/keymaps/nl.kbd - copied unchanged from r270409, head/share/vt/keymaps/nl.kbd projects/ipfw/share/vt/keymaps/no.dvorak.kbd - copied unchanged from r270409, head/share/vt/keymaps/no.dvorak.kbd projects/ipfw/share/vt/keymaps/no.kbd - copied unchanged from r270409, head/share/vt/keymaps/no.kbd projects/ipfw/share/vt/keymaps/nordic.asus-eee.kbd - copied unchanged from r270409, head/share/vt/keymaps/nordic.asus-eee.kbd projects/ipfw/share/vt/keymaps/pl.dvorak.kbd - copied unchanged from r270409, head/share/vt/keymaps/pl.dvorak.kbd projects/ipfw/share/vt/keymaps/pt.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/pt.acc.kbd projects/ipfw/share/vt/keymaps/pt.kbd - copied unchanged from r270409, head/share/vt/keymaps/pt.kbd projects/ipfw/share/vt/keymaps/ru.kbd - copied unchanged from r270409, head/share/vt/keymaps/ru.kbd projects/ipfw/share/vt/keymaps/ru.shift.kbd - copied unchanged from r270409, head/share/vt/keymaps/ru.shift.kbd projects/ipfw/share/vt/keymaps/ru.win.kbd - copied unchanged from r270409, head/share/vt/keymaps/ru.win.kbd projects/ipfw/share/vt/keymaps/se.kbd - copied unchanged from r270409, head/share/vt/keymaps/se.kbd projects/ipfw/share/vt/keymaps/si.kbd - copied unchanged from r270409, head/share/vt/keymaps/si.kbd projects/ipfw/share/vt/keymaps/sk.kbd - copied unchanged from r270409, head/share/vt/keymaps/sk.kbd projects/ipfw/share/vt/keymaps/tr.kbd - copied unchanged from r270409, head/share/vt/keymaps/tr.kbd projects/ipfw/share/vt/keymaps/uk.capsctrl.kbd - copied unchanged from r270409, head/share/vt/keymaps/uk.capsctrl.kbd projects/ipfw/share/vt/keymaps/uk.dvorak.kbd - copied unchanged from r270409, head/share/vt/keymaps/uk.dvorak.kbd projects/ipfw/share/vt/keymaps/uk.kbd - copied unchanged from r270409, head/share/vt/keymaps/uk.kbd projects/ipfw/share/vt/keymaps/us.acc.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.acc.kbd projects/ipfw/share/vt/keymaps/us.ctrl.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.ctrl.kbd projects/ipfw/share/vt/keymaps/us.dvorak.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.dvorak.kbd projects/ipfw/share/vt/keymaps/us.dvorakl.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.dvorakl.kbd projects/ipfw/share/vt/keymaps/us.dvorakp.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.dvorakp.kbd projects/ipfw/share/vt/keymaps/us.dvorakr.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.dvorakr.kbd projects/ipfw/share/vt/keymaps/us.dvorakx.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.dvorakx.kbd projects/ipfw/share/vt/keymaps/us.emacs.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.emacs.kbd projects/ipfw/share/vt/keymaps/us.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.kbd projects/ipfw/share/vt/keymaps/us.unix.kbd - copied unchanged from r270409, head/share/vt/keymaps/us.unix.kbd projects/ipfw/sys/arm/at91/at91_common.c - copied unchanged from r270409, head/sys/arm/at91/at91_common.c projects/ipfw/sys/arm/at91/at91_pinctrl.c - copied unchanged from r270409, head/sys/arm/at91/at91_pinctrl.c projects/ipfw/sys/arm/include/acle-compat.h - copied unchanged from r270409, head/sys/arm/include/acle-compat.h projects/ipfw/sys/boot/fdt/dts/arm/sam9260ek.dts - copied unchanged from r270409, head/sys/boot/fdt/dts/arm/sam9260ek.dts projects/ipfw/sys/cddl/dev/fbt/fbt.h - copied unchanged from r270409, head/sys/cddl/dev/fbt/fbt.h projects/ipfw/sys/cddl/dev/fbt/powerpc/ - copied from r270409, head/sys/cddl/dev/fbt/powerpc/ projects/ipfw/sys/cddl/dev/fbt/x86/ - copied from r270409, head/sys/cddl/dev/fbt/x86/ projects/ipfw/sys/dev/ixl/ - copied from r270409, head/sys/dev/ixl/ projects/ipfw/sys/dev/netmap/if_vtnet_netmap.h - copied unchanged from r270409, head/sys/dev/netmap/if_vtnet_netmap.h projects/ipfw/sys/dev/netmap/netmap_monitor.c - copied unchanged from r270409, head/sys/dev/netmap/netmap_monitor.c projects/ipfw/sys/fs/autofs/ - copied from r270409, head/sys/fs/autofs/ projects/ipfw/sys/gnu/dts/arm/sam9260ek_common.dtsi - copied unchanged from r270409, head/sys/gnu/dts/arm/sam9260ek_common.dtsi projects/ipfw/sys/libkern/strndup.c - copied unchanged from r270409, head/sys/libkern/strndup.c projects/ipfw/sys/modules/autofs/ - copied from r270409, head/sys/modules/autofs/ projects/ipfw/sys/modules/ixl/ - copied from r270409, head/sys/modules/ixl/ projects/ipfw/sys/modules/ixlv/ - copied from r270409, head/sys/modules/ixlv/ projects/ipfw/sys/modules/si/ - copied from r270409, head/sys/modules/si/ projects/ipfw/sys/modules/wds/ - copied from r270409, head/sys/modules/wds/ projects/ipfw/sys/modules/wl/ - copied from r270409, head/sys/modules/wl/ projects/ipfw/sys/net/paravirt.h - copied unchanged from r270409, head/sys/net/paravirt.h projects/ipfw/sys/net/sff8436.h - copied unchanged from r270409, head/sys/net/sff8436.h projects/ipfw/tools/build/options/WITHOUT_CUSE - copied unchanged from r270409, head/tools/build/options/WITHOUT_CUSE projects/ipfw/tools/tools/vt/keymaps/ - copied from r270409, head/tools/tools/vt/keymaps/ projects/ipfw/usr.sbin/autofs/ - copied from r270409, head/usr.sbin/autofs/ Deleted: projects/ipfw/share/examples/autofs/ projects/ipfw/sys/cddl/dev/fbt/fbt_powerpc.c projects/ipfw/sys/dev/i40e/ projects/ipfw/sys/modules/i40e/ projects/ipfw/tools/build/options/WITH_PIE Modified: projects/ipfw/.arcconfig projects/ipfw/Makefile projects/ipfw/Makefile.inc1 projects/ipfw/ObsoleteFiles.inc projects/ipfw/bin/ed/cbc.c projects/ipfw/bin/pkill/tests/Makefile projects/ipfw/bin/rmail/Makefile projects/ipfw/bin/sh/arith_yacc.c projects/ipfw/bin/sh/histedit.c projects/ipfw/bin/sh/mystring.c projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2 projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2.stderr projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2 projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2.stderr projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2 projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2.stderr projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2 projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2.stderr projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2 projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2.stderr projects/ipfw/bin/sh/tests/expansion/Makefile projects/ipfw/bin/sh/tests/functional_test.sh projects/ipfw/cddl/Makefile.inc projects/ipfw/cddl/contrib/opensolaris/cmd/lockstat/sym.c projects/ipfw/cddl/contrib/opensolaris/head/libintl.h projects/ipfw/cddl/contrib/opensolaris/head/nlist.h projects/ipfw/cddl/contrib/opensolaris/head/synch.h projects/ipfw/cddl/contrib/opensolaris/head/thread.h projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c projects/ipfw/cddl/contrib/opensolaris/lib/libgen/common/gmatch.c projects/ipfw/cddl/lib/libdtrace/libproc_compat.h projects/ipfw/contrib/gcc/config/i386/emmintrin.h projects/ipfw/contrib/llvm/include/llvm/Support/ELF.h projects/ipfw/contrib/llvm/lib/Object/ELF.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPC.h projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/ipfw/etc/Makefile projects/ipfw/etc/defaults/rc.conf projects/ipfw/etc/devd/Makefile projects/ipfw/etc/mtree/BSD.root.dist projects/ipfw/etc/mtree/BSD.tests.dist projects/ipfw/etc/rc.d/Makefile projects/ipfw/etc/rc.subr projects/ipfw/gnu/lib/libgcc/Makefile projects/ipfw/gnu/usr.bin/binutils/addr2line/Makefile projects/ipfw/gnu/usr.bin/binutils/nm/Makefile projects/ipfw/gnu/usr.bin/binutils/objcopy/Makefile projects/ipfw/gnu/usr.bin/binutils/objdump/Makefile projects/ipfw/gnu/usr.bin/binutils/readelf/Makefile projects/ipfw/gnu/usr.bin/binutils/size/Makefile projects/ipfw/gnu/usr.bin/binutils/strings/Makefile projects/ipfw/gnu/usr.bin/binutils/strip/Makefile projects/ipfw/gnu/usr.bin/gdb/gdb/Makefile projects/ipfw/gnu/usr.bin/gdb/gdbtui/Makefile projects/ipfw/gnu/usr.bin/gdb/kgdb/Makefile projects/ipfw/gnu/usr.bin/groff/src/devices/grodvi/Makefile projects/ipfw/gnu/usr.bin/groff/src/devices/grohtml/Makefile projects/ipfw/gnu/usr.bin/groff/src/devices/grolbp/Makefile projects/ipfw/gnu/usr.bin/groff/src/devices/grolj4/Makefile projects/ipfw/gnu/usr.bin/groff/src/devices/grops/Makefile projects/ipfw/gnu/usr.bin/groff/src/devices/grotty/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/eqn/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/grn/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/html/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/pic/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/refer/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/soelim/Makefile projects/ipfw/gnu/usr.bin/groff/src/preproc/tbl/Makefile projects/ipfw/gnu/usr.bin/groff/src/roff/groff/Makefile projects/ipfw/gnu/usr.bin/groff/src/roff/troff/Makefile projects/ipfw/gnu/usr.bin/groff/src/utils/addftinfo/Makefile projects/ipfw/gnu/usr.bin/groff/src/utils/hpftodit/Makefile projects/ipfw/gnu/usr.bin/groff/src/utils/indxbib/Makefile projects/ipfw/gnu/usr.bin/groff/src/utils/lkbib/Makefile projects/ipfw/gnu/usr.bin/groff/src/utils/lookbib/Makefile projects/ipfw/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile projects/ipfw/gnu/usr.bin/rcs/Makefile.inc projects/ipfw/gnu/usr.bin/texinfo/info/Makefile projects/ipfw/gnu/usr.bin/texinfo/infokey/Makefile projects/ipfw/gnu/usr.bin/texinfo/install-info/Makefile projects/ipfw/gnu/usr.bin/texinfo/makeinfo/Makefile projects/ipfw/gnu/usr.bin/texinfo/texindex/Makefile projects/ipfw/include/stddef.h projects/ipfw/kerberos5/libexec/digest-service/Makefile projects/ipfw/kerberos5/libexec/hprop/Makefile projects/ipfw/kerberos5/libexec/hpropd/Makefile projects/ipfw/kerberos5/libexec/ipropd-master/Makefile projects/ipfw/kerberos5/libexec/ipropd-slave/Makefile projects/ipfw/kerberos5/libexec/kadmind/Makefile projects/ipfw/kerberos5/libexec/kcm/Makefile projects/ipfw/kerberos5/libexec/kdc/Makefile projects/ipfw/kerberos5/libexec/kdigest/Makefile projects/ipfw/kerberos5/libexec/kfd/Makefile projects/ipfw/kerberos5/libexec/kimpersonate/Makefile projects/ipfw/kerberos5/libexec/kpasswdd/Makefile projects/ipfw/kerberos5/tools/asn1_compile/Makefile projects/ipfw/kerberos5/tools/slc/Makefile projects/ipfw/kerberos5/usr.bin/hxtool/Makefile projects/ipfw/kerberos5/usr.bin/kadmin/Makefile projects/ipfw/kerberos5/usr.bin/kcc/Makefile projects/ipfw/kerberos5/usr.bin/kdestroy/Makefile projects/ipfw/kerberos5/usr.bin/kf/Makefile projects/ipfw/kerberos5/usr.bin/kgetcred/Makefile projects/ipfw/kerberos5/usr.bin/kinit/Makefile projects/ipfw/kerberos5/usr.bin/kpasswd/Makefile projects/ipfw/kerberos5/usr.bin/ksu/Makefile projects/ipfw/kerberos5/usr.bin/string2key/Makefile projects/ipfw/kerberos5/usr.bin/verify_krb5_conf/Makefile projects/ipfw/kerberos5/usr.sbin/iprop-log/Makefile projects/ipfw/kerberos5/usr.sbin/kstash/Makefile projects/ipfw/kerberos5/usr.sbin/ktutil/Makefile projects/ipfw/lib/atf/libatf-c++/Makefile projects/ipfw/lib/clang/clang.build.mk projects/ipfw/lib/clang/include/clang/Config/config.h projects/ipfw/lib/clang/include/llvm/Config/config.h projects/ipfw/lib/csu/amd64/Makefile projects/ipfw/lib/csu/i386-elf/Makefile projects/ipfw/lib/libc/arm/aeabi/aeabi_vfp.h projects/ipfw/lib/libc/nameser/ns_print.c projects/ipfw/lib/libc/net/sctp_sys_calls.c projects/ipfw/lib/libcrypt/tests/Makefile projects/ipfw/lib/libcuse/Makefile projects/ipfw/lib/libopie/Makefile projects/ipfw/lib/libusb/libusb.h projects/ipfw/lib/msun/arm/fenv.c projects/ipfw/libexec/getty/main.c projects/ipfw/libexec/mail.local/Makefile projects/ipfw/libexec/rshd/rshd.c projects/ipfw/libexec/rtld-elf/Makefile projects/ipfw/libexec/rtld-elf/libmap.c projects/ipfw/libexec/smrsh/Makefile projects/ipfw/libexec/telnetd/Makefile projects/ipfw/rescue/rescue/Makefile projects/ipfw/sbin/atm/atmconfig/Makefile projects/ipfw/sbin/atm/atmconfig/main.c projects/ipfw/sbin/devd/Makefile projects/ipfw/sbin/devd/devd.8 projects/ipfw/sbin/devd/devd.cc projects/ipfw/sbin/dhclient/tests/Makefile projects/ipfw/sbin/fsck/Makefile projects/ipfw/sbin/hastd/Makefile projects/ipfw/sbin/ifconfig/Makefile projects/ipfw/sbin/ifconfig/ifconfig.c projects/ipfw/sbin/ifconfig/ifconfig.h projects/ipfw/sbin/init/init.c projects/ipfw/sbin/ipf/ipf/Makefile projects/ipfw/sbin/ipf/ipfstat/Makefile projects/ipfw/sbin/ipf/ipftest/Makefile projects/ipfw/sbin/ipf/ipmon/Makefile projects/ipfw/sbin/ipf/ipnat/Makefile projects/ipfw/sbin/ipf/ippool/Makefile projects/ipfw/sbin/ipf/ipresend/Makefile projects/ipfw/sbin/mksnap_ffs/Makefile projects/ipfw/sbin/mount/mntopts.h projects/ipfw/sbin/mount/mount.8 projects/ipfw/sbin/mount/mount.c projects/ipfw/sbin/newfs_msdos/newfs_msdos.c projects/ipfw/sbin/rcorder/Makefile projects/ipfw/sbin/shutdown/Makefile projects/ipfw/sbin/umount/umount.c projects/ipfw/secure/usr.bin/ssh/Makefile projects/ipfw/share/man/man4/altera_atse.4 projects/ipfw/share/man/man4/iwn.4 projects/ipfw/share/man/man4/iwnfw.4 projects/ipfw/share/man/man4/urtwn.4 projects/ipfw/share/man/man5/Makefile projects/ipfw/share/man/man5/src.conf.5 projects/ipfw/share/man/man9/timeout.9 projects/ipfw/share/misc/bsd-family-tree projects/ipfw/share/mk/bsd.opts.mk projects/ipfw/share/mk/bsd.prog.mk projects/ipfw/share/mk/src.libnames.mk projects/ipfw/share/syscons/keymaps/INDEX.keymaps projects/ipfw/share/syscons/keymaps/be.iso.acc.kbd projects/ipfw/share/syscons/keymaps/cs.latin2.qwertz.kbd projects/ipfw/share/syscons/keymaps/uk.iso-ctrl.kbd projects/ipfw/share/syscons/keymaps/uk.iso.kbd projects/ipfw/share/vt/keymaps/Makefile projects/ipfw/share/vt/keymaps/pl.kbd (contents, props changed) projects/ipfw/share/vt/keymaps/ua.kbd (contents, props changed) projects/ipfw/share/vt/keymaps/ua.shift.alt.kbd (contents, props changed) projects/ipfw/sys/amd64/amd64/pmap.c projects/ipfw/sys/amd64/conf/NOTES projects/ipfw/sys/amd64/include/param.h projects/ipfw/sys/amd64/include/vmparam.h projects/ipfw/sys/amd64/vmm/intel/vtd.c projects/ipfw/sys/amd64/vmm/io/vatpic.c projects/ipfw/sys/amd64/vmm/vmm.c projects/ipfw/sys/arm/arm/disassem.c projects/ipfw/sys/arm/arm/elf_machdep.c projects/ipfw/sys/arm/arm/nexus.c projects/ipfw/sys/arm/at91/at91.c projects/ipfw/sys/arm/at91/at91_aic.c projects/ipfw/sys/arm/at91/at91_machdep.c projects/ipfw/sys/arm/at91/at91_mci.c projects/ipfw/sys/arm/at91/at91_mcireg.h projects/ipfw/sys/arm/at91/at91_pio.c projects/ipfw/sys/arm/at91/at91_piovar.h projects/ipfw/sys/arm/at91/at91_pit.c projects/ipfw/sys/arm/at91/at91_pmc.c projects/ipfw/sys/arm/at91/at91sam9260.c projects/ipfw/sys/arm/at91/at91sam9260reg.h projects/ipfw/sys/arm/at91/files.at91 projects/ipfw/sys/arm/at91/std.atmel projects/ipfw/sys/arm/conf/HL201 projects/ipfw/sys/arm/freescale/imx/imx6_anatop.c projects/ipfw/sys/arm/include/elf.h projects/ipfw/sys/arm/include/param.h projects/ipfw/sys/arm/include/platform.h projects/ipfw/sys/arm/ti/ti_i2c.c projects/ipfw/sys/arm/ti/ti_i2c.h projects/ipfw/sys/boot/i386/boot2/Makefile projects/ipfw/sys/boot/i386/btx/btx/Makefile projects/ipfw/sys/boot/i386/btx/btxldr/Makefile projects/ipfw/sys/boot/i386/btx/lib/Makefile projects/ipfw/sys/boot/i386/loader/Makefile projects/ipfw/sys/boot/mips/beri/boot2/Makefile projects/ipfw/sys/boot/mips/beri/loader/Makefile projects/ipfw/sys/boot/pc98/boot2/Makefile projects/ipfw/sys/boot/pc98/btx/lib/Makefile projects/ipfw/sys/boot/pc98/loader/Makefile projects/ipfw/sys/boot/sparc64/boot1/Makefile projects/ipfw/sys/boot/sparc64/loader/Makefile projects/ipfw/sys/cam/ata/ata_da.c projects/ipfw/sys/cam/ata/ata_xpt.c projects/ipfw/sys/cam/ctl/ctl_frontend_iscsi.c projects/ipfw/sys/cam/ctl/ctl_tpc.c projects/ipfw/sys/cam/scsi/scsi_da.c projects/ipfw/sys/cam/scsi/scsi_low.c projects/ipfw/sys/cddl/compat/opensolaris/sys/atomic.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/dtrace/profile.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/dtrace/systrace.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/refcount.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/os/fm.c projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/sys/acl.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/sys/bitmap.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/sys/cpuvar.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/sys/feature_tests.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/common/sys/processor.h projects/ipfw/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/fasttrap_isa.c projects/ipfw/sys/cddl/dev/fbt/fbt.c projects/ipfw/sys/conf/Makefile.arm projects/ipfw/sys/conf/NOTES projects/ipfw/sys/conf/files projects/ipfw/sys/conf/kern.mk projects/ipfw/sys/conf/options projects/ipfw/sys/ddb/db_run.c projects/ipfw/sys/dev/cs/if_cs.c projects/ipfw/sys/dev/cxgbe/t4_netmap.c projects/ipfw/sys/dev/e1000/if_em.c projects/ipfw/sys/dev/e1000/if_igb.c projects/ipfw/sys/dev/e1000/if_lem.c projects/ipfw/sys/dev/ep/if_ep.c projects/ipfw/sys/dev/hptnr/README projects/ipfw/sys/dev/hptnr/amd64-elf.hptnr_lib.o.uu projects/ipfw/sys/dev/hptnr/hptnr_config.c projects/ipfw/sys/dev/hptnr/hptnr_os_bsd.c projects/ipfw/sys/dev/hptnr/hptnr_osm_bsd.c projects/ipfw/sys/dev/hptnr/i386-elf.hptnr_lib.o.uu projects/ipfw/sys/dev/iscsi/icl.c projects/ipfw/sys/dev/iscsi/icl_proxy.c projects/ipfw/sys/dev/iscsi/iscsi.c projects/ipfw/sys/dev/ixgbe/ixgbe.c projects/ipfw/sys/dev/netmap/if_em_netmap.h projects/ipfw/sys/dev/netmap/if_igb_netmap.h projects/ipfw/sys/dev/netmap/if_lem_netmap.h projects/ipfw/sys/dev/netmap/if_re_netmap.h projects/ipfw/sys/dev/netmap/ixgbe_netmap.h projects/ipfw/sys/dev/netmap/netmap.c projects/ipfw/sys/dev/netmap/netmap_freebsd.c projects/ipfw/sys/dev/netmap/netmap_generic.c projects/ipfw/sys/dev/netmap/netmap_kern.h projects/ipfw/sys/dev/netmap/netmap_mbq.h projects/ipfw/sys/dev/netmap/netmap_mem2.c projects/ipfw/sys/dev/netmap/netmap_mem2.h projects/ipfw/sys/dev/netmap/netmap_offloadings.c projects/ipfw/sys/dev/netmap/netmap_pipe.c projects/ipfw/sys/dev/netmap/netmap_vale.c projects/ipfw/sys/dev/pci/pci.c projects/ipfw/sys/dev/pci/pci_if.m projects/ipfw/sys/dev/pci/pci_private.h projects/ipfw/sys/dev/pci/pcivar.h projects/ipfw/sys/dev/si/si.c projects/ipfw/sys/dev/sound/usb/uaudio.c projects/ipfw/sys/dev/usb/usbdevs projects/ipfw/sys/dev/usb/wlan/if_run.c projects/ipfw/sys/dev/usb/wlan/if_urtwn.c projects/ipfw/sys/dev/virtio/network/if_vtnet.c projects/ipfw/sys/dev/virtio/virtqueue.c projects/ipfw/sys/dev/vt/font/vt_mouse_cursor.c projects/ipfw/sys/dev/vt/hw/vga/vt_vga.c projects/ipfw/sys/dev/vt/vt.h projects/ipfw/sys/dev/vt/vt_buf.c projects/ipfw/sys/dev/vt/vt_core.c projects/ipfw/sys/dev/vt/vt_sysmouse.c projects/ipfw/sys/dev/xen/blkback/blkback.c projects/ipfw/sys/dev/xen/netback/netback.c projects/ipfw/sys/geom/geom_dev.c projects/ipfw/sys/i386/conf/NOTES projects/ipfw/sys/i386/i386/pmap.c projects/ipfw/sys/i386/xen/pmap.c projects/ipfw/sys/kern/imgact_elf.c projects/ipfw/sys/kern/kern_exit.c projects/ipfw/sys/kern/kern_malloc.c projects/ipfw/sys/kern/kern_sig.c projects/ipfw/sys/kern/kern_umtx.c projects/ipfw/sys/kern/uipc_socket.c projects/ipfw/sys/kern/vfs_mount.c projects/ipfw/sys/modules/Makefile projects/ipfw/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile projects/ipfw/sys/modules/dtrace/fbt/Makefile projects/ipfw/sys/net/if.c projects/ipfw/sys/net/if_gre.c projects/ipfw/sys/net/if_stf.c projects/ipfw/sys/net/netmap.h projects/ipfw/sys/net/netmap_user.h projects/ipfw/sys/net/pfvar.h projects/ipfw/sys/net/rtsock.c projects/ipfw/sys/net/sff8472.h projects/ipfw/sys/net80211/ieee80211_amrr.c projects/ipfw/sys/netinet/cc/cc_cdg.c projects/ipfw/sys/netinet/in.c projects/ipfw/sys/netinet/in_gif.c projects/ipfw/sys/netinet/ip_carp.c projects/ipfw/sys/netinet/ip_mroute.c projects/ipfw/sys/netinet/ip_var.h projects/ipfw/sys/netinet/raw_ip.c projects/ipfw/sys/netinet/sctp.h projects/ipfw/sys/netinet/sctp_input.c projects/ipfw/sys/netinet/sctp_output.c projects/ipfw/sys/netinet/sctp_structs.h projects/ipfw/sys/netinet/sctp_uio.h projects/ipfw/sys/netinet/sctp_usrreq.c projects/ipfw/sys/netinet/sctputil.c projects/ipfw/sys/netinet6/in6.c projects/ipfw/sys/netinet6/in6_gif.c projects/ipfw/sys/netinet6/in6_proto.c projects/ipfw/sys/netinet6/ip6_mroute.c projects/ipfw/sys/netinet6/scope6.c projects/ipfw/sys/netinet6/scope6_var.h projects/ipfw/sys/netipsec/keysock.c projects/ipfw/sys/netipsec/keysock.h projects/ipfw/sys/netpfil/pf/if_pfsync.c projects/ipfw/sys/netpfil/pf/pf.c projects/ipfw/sys/netpfil/pf/pf.h projects/ipfw/sys/netpfil/pf/pf_ioctl.c projects/ipfw/sys/netpfil/pf/pf_lb.c projects/ipfw/sys/ofed/include/linux/pci.h projects/ipfw/sys/powerpc/include/vmparam.h projects/ipfw/sys/security/audit/audit_pipe.c projects/ipfw/sys/sparc64/sparc64/pmap.c projects/ipfw/sys/sys/_cpuset.h projects/ipfw/sys/sys/callout.h projects/ipfw/sys/sys/elf_common.h projects/ipfw/sys/sys/hhook.h projects/ipfw/sys/sys/imgact_elf.h projects/ipfw/sys/sys/khelp.h projects/ipfw/sys/sys/libkern.h projects/ipfw/sys/sys/mount.h projects/ipfw/sys/sys/param.h projects/ipfw/sys/sys/protosw.h projects/ipfw/sys/sys/sf_buf.h projects/ipfw/sys/sys/socketvar.h projects/ipfw/sys/ufs/ffs/ffs_vfsops.c projects/ipfw/sys/ufs/ufs/ufs_vnops.c projects/ipfw/sys/vm/vm_fault.c projects/ipfw/tests/sys/kern/unix_seqpacket_test.c projects/ipfw/tools/build/make_check/Makefile projects/ipfw/tools/build/mk/OptionalObsoleteFiles.inc projects/ipfw/tools/tools/ath/athaggrstats/Makefile projects/ipfw/tools/tools/ath/athstats/Makefile projects/ipfw/tools/tools/nanobsd/dhcpd/common projects/ipfw/tools/tools/nanobsd/nanobsd.sh projects/ipfw/tools/tools/nanobsd/rescue/common projects/ipfw/tools/tools/netmap/pkt-gen.c projects/ipfw/tools/tools/netmap/vale-ctl.c projects/ipfw/usr.bin/clang/clang-tblgen/Makefile projects/ipfw/usr.bin/clang/clang.prog.mk projects/ipfw/usr.bin/clang/tblgen/Makefile projects/ipfw/usr.bin/compile_et/Makefile projects/ipfw/usr.bin/elfdump/elfdump.c projects/ipfw/usr.bin/grep/util.c projects/ipfw/usr.bin/iscsictl/iscsictl.c projects/ipfw/usr.bin/lock/lock.c projects/ipfw/usr.bin/login/login.c projects/ipfw/usr.bin/mail/edit.c projects/ipfw/usr.bin/mandoc/Makefile projects/ipfw/usr.bin/netstat/inet6.c projects/ipfw/usr.bin/showmount/showmount.8 projects/ipfw/usr.bin/showmount/showmount.c projects/ipfw/usr.bin/svn/svn/Makefile projects/ipfw/usr.bin/svn/svnadmin/Makefile projects/ipfw/usr.bin/svn/svndumpfilter/Makefile projects/ipfw/usr.bin/svn/svnlook/Makefile projects/ipfw/usr.bin/svn/svnmucc/Makefile projects/ipfw/usr.bin/svn/svnrdump/Makefile projects/ipfw/usr.bin/svn/svnserve/Makefile projects/ipfw/usr.bin/svn/svnsync/Makefile projects/ipfw/usr.bin/svn/svnversion/Makefile projects/ipfw/usr.bin/telnet/Makefile projects/ipfw/usr.bin/vacation/Makefile projects/ipfw/usr.sbin/Makefile projects/ipfw/usr.sbin/amd/amd/Makefile projects/ipfw/usr.sbin/amd/amq/Makefile projects/ipfw/usr.sbin/amd/fixmount/Makefile projects/ipfw/usr.sbin/amd/fsinfo/Makefile projects/ipfw/usr.sbin/amd/hlfsd/Makefile projects/ipfw/usr.sbin/amd/mk-amd-map/Makefile projects/ipfw/usr.sbin/amd/pawd/Makefile projects/ipfw/usr.sbin/amd/wire-test/Makefile projects/ipfw/usr.sbin/bhyve/virtio.c projects/ipfw/usr.sbin/bsdconfig/share/packages/packages.subr projects/ipfw/usr.sbin/btxld/Makefile projects/ipfw/usr.sbin/cron/cron/Makefile projects/ipfw/usr.sbin/cron/crontab/Makefile projects/ipfw/usr.sbin/crunch/crunchgen/Makefile projects/ipfw/usr.sbin/crunch/crunchide/Makefile projects/ipfw/usr.sbin/ctld/Makefile projects/ipfw/usr.sbin/ctld/ctld.c projects/ipfw/usr.sbin/ctld/discovery.c projects/ipfw/usr.sbin/ctld/kernel.c projects/ipfw/usr.sbin/ctld/keys.c projects/ipfw/usr.sbin/ctld/log.c projects/ipfw/usr.sbin/ctld/login.c projects/ipfw/usr.sbin/ctld/pdu.c projects/ipfw/usr.sbin/editmap/Makefile projects/ipfw/usr.sbin/fifolog/fifolog_create/Makefile projects/ipfw/usr.sbin/fifolog/fifolog_reader/Makefile projects/ipfw/usr.sbin/fifolog/fifolog_writer/Makefile projects/ipfw/usr.sbin/ftp-proxy/ftp-proxy/Makefile projects/ipfw/usr.sbin/iscsid/Makefile projects/ipfw/usr.sbin/iscsid/discovery.c projects/ipfw/usr.sbin/iscsid/iscsid.c projects/ipfw/usr.sbin/iscsid/keys.c projects/ipfw/usr.sbin/iscsid/log.c projects/ipfw/usr.sbin/iscsid/login.c projects/ipfw/usr.sbin/iscsid/pdu.c projects/ipfw/usr.sbin/kbdmap/kbdmap.c projects/ipfw/usr.sbin/kbdmap/kbdmap.h projects/ipfw/usr.sbin/lpr/chkprintcap/Makefile projects/ipfw/usr.sbin/lpr/lpc/Makefile projects/ipfw/usr.sbin/lpr/lpd/Makefile projects/ipfw/usr.sbin/lpr/lpq/Makefile projects/ipfw/usr.sbin/lpr/lpr/Makefile projects/ipfw/usr.sbin/lpr/lprm/Makefile projects/ipfw/usr.sbin/lpr/pac/Makefile projects/ipfw/usr.sbin/mailstats/Makefile projects/ipfw/usr.sbin/makefs/Makefile projects/ipfw/usr.sbin/makemap/Makefile projects/ipfw/usr.sbin/mountd/exports.5 projects/ipfw/usr.sbin/mountd/mountd.c projects/ipfw/usr.sbin/nmtree/Makefile projects/ipfw/usr.sbin/ntp/ntp-keygen/Makefile projects/ipfw/usr.sbin/ntp/ntpd/Makefile projects/ipfw/usr.sbin/ntp/ntpdate/Makefile projects/ipfw/usr.sbin/ntp/ntpdc/Makefile projects/ipfw/usr.sbin/ntp/ntpq/Makefile projects/ipfw/usr.sbin/ntp/ntptime/Makefile projects/ipfw/usr.sbin/ppp/Makefile projects/ipfw/usr.sbin/praliases/Makefile projects/ipfw/usr.sbin/route6d/route6d.c projects/ipfw/usr.sbin/sendmail/Makefile projects/ipfw/usr.sbin/timed/timedc/timedc.c Directory Properties: projects/ipfw/ (props changed) projects/ipfw/cddl/ (props changed) projects/ipfw/cddl/contrib/opensolaris/ (props changed) projects/ipfw/contrib/gcc/ (props changed) projects/ipfw/contrib/llvm/ (props changed) projects/ipfw/etc/ (props changed) projects/ipfw/gnu/lib/ (props changed) projects/ipfw/gnu/usr.bin/binutils/ (props changed) projects/ipfw/gnu/usr.bin/gdb/ (props changed) projects/ipfw/include/ (props changed) projects/ipfw/lib/libc/ (props changed) projects/ipfw/sbin/ (props changed) projects/ipfw/share/ (props changed) projects/ipfw/share/man/man4/ (props changed) projects/ipfw/sys/ (props changed) projects/ipfw/sys/amd64/vmm/ (props changed) projects/ipfw/sys/boot/ (props changed) projects/ipfw/sys/cddl/contrib/opensolaris/ (props changed) projects/ipfw/sys/conf/ (props changed) projects/ipfw/sys/gnu/dts/ (props changed) projects/ipfw/usr.sbin/bhyve/ (props changed) Modified: projects/ipfw/.arcconfig ============================================================================== --- projects/ipfw/.arcconfig Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/.arcconfig Sat Aug 23 14:58:31 2014 (r270410) @@ -1,5 +1,5 @@ { "project.name": "S", - "phabricator.uri" : "https://phabric.freebsd.org/", + "phabricator.uri" : "https://reviews.freebsd.org/", "history.immutable" : true } Modified: projects/ipfw/Makefile ============================================================================== --- projects/ipfw/Makefile Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/Makefile Sat Aug 23 14:58:31 2014 (r270410) @@ -37,6 +37,8 @@ # xdev-build - Build cross-development tools. # xdev-install - Install cross-development tools. # xdev-links - Create traditional links in /usr/bin for cc, etc +# native-xtools - Create host binaries that produce target objects +# for use in qemu user-mode jails. # # "quick" way to test all kernel builds: # _jflag=`sysctl -n hw.ncpu` @@ -111,7 +113,7 @@ TGTS= all all-man buildenv buildenvvars _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ _build-tools _cross-tools _includes _libraries _depend \ build32 builddtb distribute32 install32 xdev xdev-build xdev-install \ - xdev-links \ + xdev-links native-xtools \ TGTS+= ${SUBDIR_TARGETS} Modified: projects/ipfw/Makefile.inc1 ============================================================================== --- projects/ipfw/Makefile.inc1 Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/Makefile.inc1 Sat Aug 23 14:58:31 2014 (r270410) @@ -246,7 +246,7 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ - SSP_CFLAGS= MK_PIE=no \ + SSP_CFLAGS= \ MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ @@ -258,7 +258,7 @@ TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ - SSP_CFLAGS= MK_PIE=no \ + SSP_CFLAGS= \ -DNO_LINT \ -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no MK_CLANG_FULL=no MK_LLDB=no MK_TESTS=no @@ -276,7 +276,7 @@ KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOB ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ - SSP_CFLAGS= MK_PIE=no \ + SSP_CFLAGS= \ MK_HTML=no MK_INFO=no -DNO_LINT MK_MAN=no \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no @@ -1239,11 +1239,11 @@ _lex= usr.bin/lex _awk= usr.bin/awk .endif -.if ${MK_BSNMP} != "no" && !exists(/usr/sbin/gensnmptree) +.if ${MK_BSNMP} != "no" _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif -# We need to build tlbgen when we're building clang either as +# We need to build tblgen when we're building clang either as # the bootstrap compiler, or as the part of the normal build. .if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" _clang_tblgen= \ @@ -1418,6 +1418,48 @@ cross-tools: .MAKE ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install .endfor +NXBENV= MAKEOBJDIRPREFIX=${OBJTREE}/nxb \ + INSTALL="sh ${.CURDIR}/tools/install.sh" \ + VERSION="${VERSION}" +NXBMAKE= ${NXBENV} ${MAKE} \ + TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \ + CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \ + MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \ + MK_GDB=no MK_TESTS=no \ + SSP_CFLAGS= \ + MK_HTML=no MK_INFO=no NO_LINT=yes MK_MAN=no \ + -DNO_PIC MK_PROFILE=no -DNO_SHARED \ + -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ + MK_CLANG_FULL=no MK_LLDB=no + +native-xtools: .MAKE + mkdir -p ${OBJTREE}/nxb-bin/usr + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ + -p ${OBJTREE}/nxb-bin/usr >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ + -p ${OBJTREE}/nxb-bin/usr/include >/dev/null +.for _tool in \ + ${_clang_tblgen} \ + usr.bin/ar \ + ${_binutils} \ + ${_cc} \ + ${_gcc_tools} \ + ${_clang_libs} \ + ${_clang} \ + usr.bin/awk \ + usr.bin/bmake \ + usr.bin/lex \ + usr.bin/lorder \ + usr.bin/sed \ + usr.bin/yacc + ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ + cd ${.CURDIR}/${_tool} && \ + ${NXBMAKE} DIRPRFX=${_tool}/ obj && \ + ${NXBMAKE} DIRPRFX=${_tool}/ depend && \ + ${NXBMAKE} DIRPRFX=${_tool}/ all && \ + ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install +.endfor + # # hierarchy - ensure that all the needed directories are present # Modified: projects/ipfw/ObsoleteFiles.inc ============================================================================== --- projects/ipfw/ObsoleteFiles.inc Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/ObsoleteFiles.inc Sat Aug 23 14:58:31 2014 (r270410) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20140814: libopie version bump +OLD_LIBS+=usr/lib/libopie.so.7 +OLD_LIBS+=usr/lib32/libopie.so.7 # 20140811: otp-sha renamed to otp-sha1 OLD_FILES+=usr/bin/otp-sha OLD_FILES+=usr/share/man/man1/otp-sha.1.gz Modified: projects/ipfw/bin/ed/cbc.c ============================================================================== --- projects/ipfw/bin/ed/cbc.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/ed/cbc.c Sat Aug 23 14:58:31 2014 (r270410) @@ -237,7 +237,7 @@ expand_des_key(char *obuf, char *kbuf) /* * now translate it, bombing on any illegal hex digit */ - for (i = 0; kbuf[i] && i < 16; i++) + for (i = 0; i < 16 && kbuf[i]; i++) if ((nbuf[i] = hex_to_binary((int) kbuf[i], 16)) == -1) des_error("bad hex digit in key"); while (i < 16) Modified: projects/ipfw/bin/pkill/tests/Makefile ============================================================================== --- projects/ipfw/bin/pkill/tests/Makefile Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/pkill/tests/Makefile Sat Aug 23 14:58:31 2014 (r270410) @@ -14,6 +14,7 @@ TAP_TESTS_SH+= pgrep-g_test TAP_TESTS_SH+= pgrep-i_test TAP_TESTS_SH+= pgrep-j_test TEST_METADATA.pgrep-j_test+= required_user="root" +TEST_METADATA.pgrep-j_test+= required_programs="jail jls" TAP_TESTS_SH+= pgrep-l_test TAP_TESTS_SH+= pgrep-n_test TAP_TESTS_SH+= pgrep-o_test @@ -31,6 +32,7 @@ TAP_TESTS_SH+= pkill-g_test TAP_TESTS_SH+= pkill-i_test TAP_TESTS_SH+= pkill-j_test TEST_METADATA.pkill-j_test+= required_user="root" +TEST_METADATA.pkill-j_test+= required_programs="jail jls" TAP_TESTS_SH+= pkill-s_test TAP_TESTS_SH+= pkill-t_test TAP_TESTS_SH+= pkill-x_test Modified: projects/ipfw/bin/rmail/Makefile ============================================================================== --- projects/ipfw/bin/rmail/Makefile Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/rmail/Makefile Sat Aug 23 14:58:31 2014 (r270410) @@ -14,8 +14,6 @@ MAN= rmail.8 WARNS?= 2 CFLAGS+=-I${SENDMAIL_DIR}/include -I. -NO_PIE= yes - LIBSMDIR= ${.OBJDIR}/../../lib/libsm LIBSM= ${LIBSMDIR}/libsm.a Modified: projects/ipfw/bin/sh/arith_yacc.c ============================================================================== --- projects/ipfw/bin/sh/arith_yacc.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/arith_yacc.c Sat Aug 23 14:58:31 2014 (r270410) @@ -139,9 +139,9 @@ static arith_t do_binop(int op, arith_t case ARITH_SUB: return (uintmax_t)a - (uintmax_t)b; case ARITH_LSHIFT: - return (uintmax_t)a << b; + return (uintmax_t)a << (b & (sizeof(uintmax_t) * CHAR_BIT - 1)); case ARITH_RSHIFT: - return a >> b; + return a >> (b & (sizeof(uintmax_t) * CHAR_BIT - 1)); case ARITH_LT: return a < b; case ARITH_LE: Modified: projects/ipfw/bin/sh/histedit.c ============================================================================== --- projects/ipfw/bin/sh/histedit.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/histedit.c Sat Aug 23 14:58:31 2014 (r270410) @@ -166,9 +166,10 @@ sethistsize(const char *hs) HistEvent he; if (hist != NULL) { - if (hs == NULL || *hs == '\0' || - (histsize = atoi(hs)) < 0) + if (hs == NULL || !is_number(hs)) histsize = 100; + else + histsize = atoi(hs); history(hist, &he, H_SETSIZE, histsize); history(hist, &he, H_SETUNIQUE, 1); } Modified: projects/ipfw/bin/sh/mystring.c ============================================================================== --- projects/ipfw/bin/sh/mystring.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/mystring.c Sat Aug 23 14:58:31 2014 (r270410) @@ -82,9 +82,17 @@ number(const char *s) int is_number(const char *p) { - do { - if (! is_digit(*p)) + const char *q; + + if (*p == '\0') + return 0; + while (*p == '0') + p++; + for (q = p; *q != '\0'; q++) + if (! is_digit(*q)) return 0; - } while (*++p != '\0'); + if (q - p > 10 || + (q - p == 10 && memcmp(p, "2147483647", 10) > 0)) + return 0; return 1; } Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2 ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2 Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2 Sat Aug 23 14:58:31 2014 (r270410) @@ -1,2 +1,2 @@ # $FreeBSD$ -${} +eval '${}' Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2.stderr ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2.stderr Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp2.2.stderr Sat Aug 23 14:58:31 2014 (r270410) @@ -1 +1 @@ -./bad-parm-exp2.2: ${}: Bad substitution +eval: ${}: Bad substitution Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2 ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2 Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2 Sat Aug 23 14:58:31 2014 (r270410) @@ -1,2 +1,2 @@ # $FreeBSD$ -${foo/} +eval '${foo/}' Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2.stderr ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2.stderr Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp3.2.stderr Sat Aug 23 14:58:31 2014 (r270410) @@ -1 +1 @@ -./bad-parm-exp3.2: ${foo/}: Bad substitution +eval: ${foo/}: Bad substitution Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2 ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2 Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2 Sat Aug 23 14:58:31 2014 (r270410) @@ -1,2 +1,2 @@ # $FreeBSD$ -${foo:@abc} +eval '${foo:@abc}' Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2.stderr ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2.stderr Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp4.2.stderr Sat Aug 23 14:58:31 2014 (r270410) @@ -1 +1 @@ -./bad-parm-exp4.2: ${foo:@...}: Bad substitution +eval: ${foo:@...}: Bad substitution Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2 ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2 Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2 Sat Aug 23 14:58:31 2014 (r270410) @@ -1,2 +1,2 @@ # $FreeBSD$ -${/} +eval '${/}' Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2.stderr ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2.stderr Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp5.2.stderr Sat Aug 23 14:58:31 2014 (r270410) @@ -1 +1 @@ -./bad-parm-exp5.2: ${/}: Bad substitution +eval: ${/}: Bad substitution Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2 ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2 Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2 Sat Aug 23 14:58:31 2014 (r270410) @@ -1,2 +1,2 @@ # $FreeBSD$ -${#foo^} +eval '${#foo^}' Modified: projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2.stderr ============================================================================== --- projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2.stderr Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/errors/bad-parm-exp6.2.stderr Sat Aug 23 14:58:31 2014 (r270410) @@ -1 +1 @@ -./bad-parm-exp6.2: ${foo...}: Bad substitution +eval: ${foo...}: Bad substitution Modified: projects/ipfw/bin/sh/tests/expansion/Makefile ============================================================================== --- projects/ipfw/bin/sh/tests/expansion/Makefile Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/expansion/Makefile Sat Aug 23 14:58:31 2014 (r270410) @@ -20,6 +20,7 @@ FILES+= arith10.0 FILES+= arith11.0 FILES+= arith12.0 FILES+= arith13.0 +FILES+= arith14.0 FILES+= assign1.0 FILES+= cmdsubst1.0 FILES+= cmdsubst2.0 Copied: projects/ipfw/bin/sh/tests/expansion/arith14.0 (from r270409, head/bin/sh/tests/expansion/arith14.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/ipfw/bin/sh/tests/expansion/arith14.0 Sat Aug 23 14:58:31 2014 (r270410, copy of r270409, head/bin/sh/tests/expansion/arith14.0) @@ -0,0 +1,40 @@ +# $FreeBSD$ +# Check that <> use the low bits of the shift count. + +if [ $((1<<16<<16)) = 0 ]; then + width=32 +elif [ $((1<<32<<32)) = 0 ]; then + width=64 +elif [ $((1<<64<<64)) = 0 ]; then + width=128 +elif [ $((1<<64>>64)) = 1 ]; then + # Integers are wider than 128 bits; assume arbitrary precision. + # Nothing to test here. + exit 0 +else + echo "Cannot determine integer width" + exit 2 +fi + +twowidth=$((width * 2)) +j=43 k=$((1 << (width - 2))) r=0 + +i=0 +while [ $i -lt $twowidth ]; do + if [ "$((j << i))" != "$((j << (i + width)))" ]; then + echo "Problem with $j << $i" + r=2 + fi + i=$((i + 1)) +done + +i=0 +while [ $i -lt $twowidth ]; do + if [ "$((k >> i))" != "$((k >> (i + width)))" ]; then + echo "Problem with $k >> $i" + r=2 + fi + i=$((i + 1)) +done + +exit $r Modified: projects/ipfw/bin/sh/tests/functional_test.sh ============================================================================== --- projects/ipfw/bin/sh/tests/functional_test.sh Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/bin/sh/tests/functional_test.sh Sat Aug 23 14:58:31 2014 (r270410) @@ -39,13 +39,7 @@ check() local out_file="${SRCDIR}/${tc}.stdout" [ -f "${out_file}" ] && out_flag="-o file:${out_file}" - # We need to copy the testcase scenario file because some of the - # testcases hardcode relative paths in the stderr/stdout. - # - # TODO: we might be able to generate this path at build time - cp ${SRCDIR}/${tc} . - - atf_check -s exit:${tc##*.} ${err_flag} ${out_flag} ${SH} "./${tc}" + atf_check -s exit:${tc##*.} ${err_flag} ${out_flag} ${SH} "${SRCDIR}/${tc}" } add_testcase() Modified: projects/ipfw/cddl/Makefile.inc ============================================================================== --- projects/ipfw/cddl/Makefile.inc Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/Makefile.inc Sat Aug 23 14:58:31 2014 (r270410) @@ -8,7 +8,6 @@ IGNORE_PRAGMA= YES CFLAGS+= -DNEED_SOLARIS_BOOLEAN WARNS?= 6 -CSTD?= gnu89 # Do not lint the CDDL stuff. It is all externally maintained and # lint output is wasteful noise here. Modified: projects/ipfw/cddl/contrib/opensolaris/cmd/lockstat/sym.c ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/cmd/lockstat/sym.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/cmd/lockstat/sym.c Sat Aug 23 14:58:31 2014 (r270410) @@ -50,6 +50,9 @@ /* FreeBSD */ #include #include +#include +#include +#include #endif #include Modified: projects/ipfw/cddl/contrib/opensolaris/head/libintl.h ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/head/libintl.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/head/libintl.h Sat Aug 23 14:58:31 2014 (r270410) @@ -19,6 +19,8 @@ * CDDL HEADER END */ /* + * Copyright 2014 Garrett D'Amore + * * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -27,8 +29,6 @@ #ifndef _LIBINTL_H #define _LIBINTL_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include #ifdef __cplusplus @@ -64,7 +64,6 @@ typedef long wchar_t; #define __GNU_GETTEXT_SUPPORTED_REVISION(m) \ ((((m) == 0) || ((m) == 1)) ? 1 : -1) -#ifdef __STDC__ extern char *dcgettext(const char *, const char *, const int); extern char *dgettext(const char *, const char *); extern char *gettext(const char *); @@ -91,33 +90,6 @@ extern wchar_t *wddelim(wchar_t, wchar_t extern wchar_t mcfiller(void); extern int mcwrap(void); -#else -extern char *dcgettext(); -extern char *dgettext(); -extern char *gettext(); -extern char *textdomain(); -extern char *bindtextdomain(); - -/* - * LI18NUX 2000 Globalization Specification Version 1.0 - * with Amendment 2 - */ -extern char *dcngettext(); -extern char *dngettext(); -extern char *ngettext(); -extern char *bind_textdomain_codeset(); - -/* Word handling functions --- requires dynamic linking */ -/* Warning: these are experimental and subject to change. */ -extern int wdinit(); -extern int wdchkind(); -extern int wdbindf(); -extern wchar_t *wddelim(); -extern wchar_t mcfiller(); -extern int mcwrap(); - -#endif - #ifdef __cplusplus } #endif Modified: projects/ipfw/cddl/contrib/opensolaris/head/nlist.h ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/head/nlist.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/head/nlist.h Sat Aug 23 14:58:31 2014 (r270410) @@ -19,6 +19,9 @@ * * CDDL HEADER END */ +/* + * Copyright 2014 Garrett D'Amore + */ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ @@ -26,8 +29,6 @@ #ifndef _NLIST_H #define _NLIST_H -#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.8.2.4 */ - #ifdef __cplusplus extern "C" { #endif @@ -41,11 +42,7 @@ struct nlist { char n_numaux; /* number of aux. entries */ }; -#if defined(__STDC__) extern int nlist(const char *, struct nlist *); -#else /* __STDC__ */ -extern int nlist(); -#endif /* __STDC__ */ #ifdef __cplusplus } Modified: projects/ipfw/cddl/contrib/opensolaris/head/synch.h ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/head/synch.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/head/synch.h Sat Aug 23 14:58:31 2014 (r270410) @@ -20,6 +20,7 @@ */ /* + * Copyright 2014 Garrett D'Amore * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ @@ -86,7 +87,6 @@ typedef struct _rwlock { cond_t writercv; /* used only to indicate ownership */ } rwlock_t; -#ifdef __STDC__ int _lwp_mutex_lock(lwp_mutex_t *); int _lwp_mutex_unlock(lwp_mutex_t *); int _lwp_mutex_trylock(lwp_mutex_t *); @@ -127,50 +127,6 @@ int sema_reltimedwait(sema_t *, const ti int sema_post(sema_t *); int sema_trywait(sema_t *); -#else /* __STDC__ */ - -int _lwp_mutex_lock(); -int _lwp_mutex_unlock(); -int _lwp_mutex_trylock(); -int _lwp_cond_wait(); -int _lwp_cond_timedwait(); -int _lwp_cond_reltimedwait(); -int _lwp_cond_signal(); -int _lwp_cond_broadcast(); -int _lwp_sema_init(); -int _lwp_sema_wait(); -int _lwp_sema_trywait(); -int _lwp_sema_post(); -int cond_init(); -int cond_destroy(); -int cond_wait(); -int cond_timedwait(); -int cond_reltimedwait(); -int cond_signal(); -int cond_broadcast(); -int mutex_init(); -int mutex_destroy(); -int mutex_consistent(); -int mutex_lock(); -int mutex_trylock(); -int mutex_unlock(); -int rwlock_init(); -int rwlock_destroy(); -int rw_rdlock(); -int rw_wrlock(); -int rw_unlock(); -int rw_tryrdlock(); -int rw_trywrlock(); -int sema_init(); -int sema_destroy(); -int sema_wait(); -int sema_timedwait(); -int sema_reltimedwait(); -int sema_post(); -int sema_trywait(); - -#endif /* __STDC__ */ - #endif /* _ASM */ /* "Magic numbers" tagging synchronization object types */ @@ -238,8 +194,6 @@ int sema_trywait(); #ifndef _ASM -#ifdef __STDC__ - /* * The *_held() functions apply equally well to Solaris threads * and to Posix threads synchronization objects, but the formal @@ -252,21 +206,8 @@ int _rw_read_held(void *); /* rwlock_t int _rw_write_held(void *); /* rwlock_t or pthread_rwlock_t */ int _mutex_held(void *); /* mutex_t or pthread_mutex_t */ -#else /* __STDC__ */ - -int _sema_held(); -int _rw_read_held(); -int _rw_write_held(); -int _mutex_held(); - -#endif /* __STDC__ */ - /* Pause API */ -#ifdef __STDC__ void smt_pause(void); -#else /* __STDC__ */ -void smt_pause(); -#endif /* __STDC__ */ #endif /* _ASM */ Modified: projects/ipfw/cddl/contrib/opensolaris/head/thread.h ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/head/thread.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/head/thread.h Sat Aug 23 14:58:31 2014 (r270410) @@ -20,6 +20,8 @@ */ /* + * Copyright 2014 Garrett D'Amore + * * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -27,8 +29,6 @@ #ifndef _THREAD_H #define _THREAD_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include #include #include Modified: projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h Sat Aug 23 14:58:31 2014 (r270410) @@ -723,6 +723,11 @@ extern int _dtrace_argmax; /* default m extern const char *_dtrace_libdir; /* default library directory */ extern const char *_dtrace_moddir; /* default kernel module directory */ +#ifdef __FreeBSD__ +extern int gmatch(const char *, const char *); +extern int yylex(void); +#endif + #ifdef __cplusplus } #endif Modified: projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c Sat Aug 23 14:58:31 2014 (r270410) @@ -29,6 +29,11 @@ #if defined(sun) #include #include +#else +/* FreeBSD */ +#include +#include +#include #endif #include Modified: projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c Sat Aug 23 14:58:31 2014 (r270410) @@ -36,6 +36,7 @@ #include #include +#include #include #include Modified: projects/ipfw/cddl/contrib/opensolaris/lib/libgen/common/gmatch.c ============================================================================== --- projects/ipfw/cddl/contrib/opensolaris/lib/libgen/common/gmatch.c Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/contrib/opensolaris/lib/libgen/common/gmatch.c Sat Aug 23 14:58:31 2014 (r270410) @@ -42,6 +42,7 @@ #include #include "_range.h" #else +#include /* DOODAD */ static int multibyte = 0; #define WCHAR_CSMASK 0x30000000 #define valid_range(c1, c2) \ Modified: projects/ipfw/cddl/lib/libdtrace/libproc_compat.h ============================================================================== --- projects/ipfw/cddl/lib/libdtrace/libproc_compat.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/cddl/lib/libdtrace/libproc_compat.h Sat Aug 23 14:58:31 2014 (r270410) @@ -43,6 +43,7 @@ #define Pcreate_error strerror #define Pdelbkpt proc_bkptdel #define Pgrab_error strerror +#define Plmid(p, a, l) (-1) #define Plmid_to_map(p, l, o) proc_obj2map((p), (o)) #define Plookup_by_addr proc_addr2sym #define Pname_to_ctf(p, obj) NULL Modified: projects/ipfw/contrib/gcc/config/i386/emmintrin.h ============================================================================== --- projects/ipfw/contrib/gcc/config/i386/emmintrin.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/gcc/config/i386/emmintrin.h Sat Aug 23 14:58:31 2014 (r270410) @@ -1193,7 +1193,7 @@ _mm_srli_epi64 (__m128i __A, int __B) #define _mm_srli_epi32(__A, __B) \ ((__m128i)__builtin_ia32_psrldi128 ((__v4si)(__A), __B)) #define _mm_srli_epi64(__A, __B) \ - ((__m128i)__builtin_ia32_psrlqi128 ((__v4si)(__A), __B)) + ((__m128i)__builtin_ia32_psrlqi128 ((__v2di)(__A), __B)) #endif static __inline __m128i __attribute__((__always_inline__)) Modified: projects/ipfw/contrib/llvm/include/llvm/Support/ELF.h ============================================================================== --- projects/ipfw/contrib/llvm/include/llvm/Support/ELF.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/llvm/include/llvm/Support/ELF.h Sat Aug 23 14:58:31 2014 (r270410) @@ -437,6 +437,7 @@ enum { R_PPC_GOT16_LO = 15, R_PPC_GOT16_HI = 16, R_PPC_GOT16_HA = 17, + R_PPC_PLTREL24 = 18, R_PPC_REL32 = 26, R_PPC_TLS = 67, R_PPC_DTPMOD32 = 68, Modified: projects/ipfw/contrib/llvm/lib/Object/ELF.cpp ============================================================================== --- projects/ipfw/contrib/llvm/lib/Object/ELF.cpp Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/llvm/lib/Object/ELF.cpp Sat Aug 23 14:58:31 2014 (r270410) @@ -507,6 +507,7 @@ StringRef getELFRelocationTypeName(uint3 LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_GOT16_LO); LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_GOT16_HI); LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_GOT16_HA); + LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_PLTREL24); LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_REL32); LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_TLS); LLVM_ELF_SWITCH_RELOC_TYPE_NAME(R_PPC_DTPMOD32); Modified: projects/ipfw/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp ============================================================================== --- projects/ipfw/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp Sat Aug 23 14:58:31 2014 (r270410) @@ -18,6 +18,7 @@ #include "llvm/MC/MCExpr.h" #include "llvm/MC/MCInst.h" #include "llvm/MC/MCInstrInfo.h" +#include "llvm/MC/MCSymbol.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetOpcodes.h" @@ -294,10 +295,16 @@ void PPCInstPrinter::printMemRegReg(cons void PPCInstPrinter::printTLSCall(const MCInst *MI, unsigned OpNo, raw_ostream &O) { - printBranchOperand(MI, OpNo, O); + // On PPC64, VariantKind is VK_None, but on PPC32, it's VK_PLT, and it must + // come at the _end_ of the expression. + const MCOperand &Op = MI->getOperand(OpNo); + const MCSymbolRefExpr &refExp = cast(*Op.getExpr()); + O << refExp.getSymbol().getName(); O << '('; printOperand(MI, OpNo+1, O); O << ')'; + if (refExp.getKind() != MCSymbolRefExpr::VK_None) + O << '@' << MCSymbolRefExpr::getVariantKindName(refExp.getKind()); } Modified: projects/ipfw/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp ============================================================================== --- projects/ipfw/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp Sat Aug 23 14:58:31 2014 (r270410) @@ -64,7 +64,15 @@ unsigned PPCELFObjectWriter::getRelocTyp llvm_unreachable("Unimplemented"); case PPC::fixup_ppc_br24: case PPC::fixup_ppc_br24abs: - Type = ELF::R_PPC_REL24; + switch (Modifier) { + default: llvm_unreachable("Unsupported Modifier"); + case MCSymbolRefExpr::VK_None: + Type = ELF::R_PPC_REL24; + break; + case MCSymbolRefExpr::VK_PLT: + Type = ELF::R_PPC_PLTREL24; + break; + } break; case PPC::fixup_ppc_brcond14: case PPC::fixup_ppc_brcond14abs: @@ -205,7 +213,10 @@ unsigned PPCELFObjectWriter::getRelocTyp Type = ELF::R_PPC64_DTPREL16_HIGHESTA; break; case MCSymbolRefExpr::VK_PPC_GOT_TLSGD: - Type = ELF::R_PPC64_GOT_TLSGD16; + if (is64Bit()) + Type = ELF::R_PPC64_GOT_TLSGD16; + else + Type = ELF::R_PPC_GOT_TLSGD16; break; case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_LO: Type = ELF::R_PPC64_GOT_TLSGD16_LO; @@ -217,7 +228,10 @@ unsigned PPCELFObjectWriter::getRelocTyp Type = ELF::R_PPC64_GOT_TLSGD16_HA; break; case MCSymbolRefExpr::VK_PPC_GOT_TLSLD: - Type = ELF::R_PPC64_GOT_TLSLD16; + if (is64Bit()) + Type = ELF::R_PPC64_GOT_TLSLD16; + else + Type = ELF::R_PPC_GOT_TLSLD16; break; case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_LO: Type = ELF::R_PPC64_GOT_TLSLD16_LO; @@ -313,13 +327,22 @@ unsigned PPCELFObjectWriter::getRelocTyp switch (Modifier) { default: llvm_unreachable("Unsupported Modifier"); case MCSymbolRefExpr::VK_PPC_TLSGD: - Type = ELF::R_PPC64_TLSGD; + if (is64Bit()) + Type = ELF::R_PPC64_TLSGD; + else + Type = ELF::R_PPC_TLSGD; break; case MCSymbolRefExpr::VK_PPC_TLSLD: - Type = ELF::R_PPC64_TLSLD; + if (is64Bit()) + Type = ELF::R_PPC64_TLSLD; + else + Type = ELF::R_PPC_TLSLD; break; case MCSymbolRefExpr::VK_PPC_TLS: - Type = ELF::R_PPC64_TLS; + if (is64Bit()) + Type = ELF::R_PPC64_TLS; + else + Type = ELF::R_PPC_TLS; break; } break; Modified: projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPC.h ============================================================================== --- projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPC.h Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPC.h Sat Aug 23 14:58:31 2014 (r270410) @@ -53,10 +53,11 @@ namespace llvm { // PPC Specific MachineOperand flags. MO_NO_FLAG, - /// MO_DARWIN_STUB - On a symbol operand "FOO", this indicates that the - /// reference is actually to the "FOO$stub" symbol. This is used for calls - /// and jumps to external functions on Tiger and earlier. - MO_DARWIN_STUB = 1, + /// MO_PLT_OR_STUB - On a symbol operand "FOO", this indicates that the + /// reference is actually to the "FOO$stub" or "FOO@plt" symbol. This is + /// used for calls and jumps to external functions on Tiger and earlier, and + /// for PIC calls on Linux and ELF systems. + MO_PLT_OR_STUB = 1, /// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to /// the function's picbase, e.g. lo16(symbol-picbase). Modified: projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp ============================================================================== --- projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp Sat Aug 23 14:42:53 2014 (r270409) +++ projects/ipfw/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp Sat Aug 23 14:58:31 2014 (r270410) @@ -19,6 +19,7 @@ #define DEBUG_TYPE "asmprinter" #include "PPC.h" #include "InstPrinter/PPCInstPrinter.h" +#include "PPCMachineFunctionInfo.h" #include "MCTargetDesc/PPCPredicates.h" #include "MCTargetDesc/PPCMCExpr.h" #include "PPCSubtarget.h" @@ -29,6 +30,7 @@ #include "llvm/ADT/StringExtras.h" #include "llvm/Assembly/Writer.h" #include "llvm/CodeGen/AsmPrinter.h" +#include "llvm/CodeGen/MachineConstantPool.h" #include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineInstrBuilder.h" @@ -100,6 +102,7 @@ namespace { } bool doFinalization(Module &M); + void EmitStartOfAsmFile(Module &M); virtual void EmitFunctionEntryLabel(); @@ -325,6 +328,7 @@ MCSymbol *PPCAsmPrinter::lookUpOrCreateT /// void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) { MCInst TmpInst; + bool isPPC64 = Subtarget.isPPC64(); // Lower multi-instruction pseudo operations. switch (MI->getOpcode()) { @@ -349,6 +353,66 @@ void PPCAsmPrinter::EmitInstruction(cons OutStreamer.EmitLabel(PICBase); return; } + case PPC::GetGBRO: { + // Get the offset from the GOT Base Register to the GOT + LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin()); + MCSymbol *PICOffset = MF->getInfo()->getPICOffsetSymbol(); + TmpInst.setOpcode(PPC::LWZ); + const MCExpr *Exp = + MCSymbolRefExpr::Create(PICOffset, MCSymbolRefExpr::VK_None, OutContext); + const MCExpr *PB = + MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), + MCSymbolRefExpr::VK_None, + OutContext); + const MCOperand MO = TmpInst.getOperand(1); + TmpInst.getOperand(1) = MCOperand::CreateExpr(MCBinaryExpr::CreateSub(Exp, + PB, + OutContext)); + TmpInst.addOperand(MO); + OutStreamer.EmitInstruction(TmpInst); + return; + } + case PPC::UpdateGBR: { + // Update the GOT Base Register to point to the GOT. It may be possible to + // merge this with the PPC::GetGBRO, doing it all in one step. + LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin()); + TmpInst.setOpcode(PPC::ADD4); + TmpInst.addOperand(TmpInst.getOperand(0)); + OutStreamer.EmitInstruction(TmpInst); + return; + } + case PPC::LWZtoc: { + // Transform %X3 = LWZtoc , %X2 + LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin()); + + // Change the opcode to LWZ, and the global address operand to be a + // reference to the GOT entry we will synthesize later. + TmpInst.setOpcode(PPC::LWZ); + const MachineOperand &MO = MI->getOperand(1); + + // Map symbol -> label of TOC entry + assert(MO.isGlobal() || MO.isCPI() || MO.isJTI()); + MCSymbol *MOSymbol = NULL; + if (MO.isGlobal()) + MOSymbol = getSymbol(MO.getGlobal()); + else if (MO.isCPI()) + MOSymbol = GetCPISymbol(MO.getIndex()); + else if (MO.isJTI()) + MOSymbol = GetJTISymbol(MO.getIndex()); + + MCSymbol *TOCEntry = lookUpOrCreateTOCEntry(MOSymbol); + + const MCExpr *Exp = + MCSymbolRefExpr::Create(TOCEntry, MCSymbolRefExpr::VK_None, + OutContext); + const MCExpr *PB = + MCSymbolRefExpr::Create(OutContext.GetOrCreateSymbol(Twine(".L.TOC.")), + OutContext); + Exp = MCBinaryExpr::CreateSub(Exp, PB, OutContext); + TmpInst.getOperand(1) = MCOperand::CreateExpr(Exp); + OutStreamer.EmitInstruction(TmpInst); + return; + } case PPC::LDtocJTI: case PPC::LDtocCPT: case PPC::LDtoc: { @@ -518,12 +582,13 @@ void PPCAsmPrinter::EmitInstruction(cons .addExpr(SymGotTprel)); return; } - case PPC::LDgotTprelL: { + case PPC::LDgotTprelL: + case PPC::LDgotTprelL32: { // Transform %Xd = LDgotTprelL , %Xs LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin()); // Change the opcode to LD. - TmpInst.setOpcode(PPC::LD); + TmpInst.setOpcode(isPPC64 ? PPC::LD : PPC::LWZ); const MachineOperand &MO = MI->getOperand(1); const GlobalValue *GValue = MO.getGlobal(); MCSymbol *MOSymbol = getSymbol(GValue); @@ -534,6 +599,52 @@ void PPCAsmPrinter::EmitInstruction(cons OutStreamer.EmitInstruction(TmpInst); return; } + + case PPC::PPC32PICGOT: { + MCSymbol *GOTSymbol = OutContext.GetOrCreateSymbol(StringRef("_GLOBAL_OFFSET_TABLE_")); + MCSymbol *GOTRef = OutContext.CreateTempSymbol(); + MCSymbol *NextInstr = OutContext.CreateTempSymbol(); + + OutStreamer.EmitInstruction(MCInstBuilder(PPC::BL) + // FIXME: We would like an efficient form for this, so we don't have to do + // a lot of extra uniquing. + .addExpr(MCSymbolRefExpr::Create(NextInstr, OutContext))); + const MCExpr *OffsExpr = + MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(GOTSymbol, OutContext), + MCSymbolRefExpr::Create(GOTRef, OutContext), + OutContext); + OutStreamer.EmitLabel(GOTRef); + OutStreamer.EmitValue(OffsExpr, 4); + OutStreamer.EmitLabel(NextInstr); + OutStreamer.EmitInstruction(MCInstBuilder(PPC::MFLR) + .addReg(MI->getOperand(0).getReg())); + OutStreamer.EmitInstruction(MCInstBuilder(PPC::LWZ) + .addReg(MI->getOperand(1).getReg()) + .addImm(0) + .addReg(MI->getOperand(0).getReg())); + OutStreamer.EmitInstruction(MCInstBuilder(PPC::ADD4) + .addReg(MI->getOperand(0).getReg()) + .addReg(MI->getOperand(1).getReg()) + .addReg(MI->getOperand(0).getReg())); + return; + } + case PPC::PPC32GOT: { + MCSymbol *GOTSymbol = OutContext.GetOrCreateSymbol(StringRef("_GLOBAL_OFFSET_TABLE_")); + const MCExpr *SymGotTlsL = + MCSymbolRefExpr::Create(GOTSymbol, MCSymbolRefExpr::VK_PPC_LO, + OutContext); + const MCExpr *SymGotTlsHA = + MCSymbolRefExpr::Create(GOTSymbol, MCSymbolRefExpr::VK_PPC_HA, + OutContext); + OutStreamer.EmitInstruction(MCInstBuilder(PPC::LI) + .addReg(MI->getOperand(0).getReg()) + .addExpr(SymGotTlsL)); + OutStreamer.EmitInstruction(MCInstBuilder(PPC::ADDIS) + .addReg(MI->getOperand(0).getReg()) + .addReg(MI->getOperand(0).getReg()) + .addExpr(SymGotTlsHA)); + return; + } case PPC::ADDIStlsgdHA: { // Transform: %Xd = ADDIStlsgdHA %X2, // Into: %Xd = ADDIS8 %X2, sym@got@tlsgd@ha @@ -550,38 +661,50 @@ void PPCAsmPrinter::EmitInstruction(cons .addExpr(SymGotTlsGD)); return; } - case PPC::ADDItlsgdL: { + case PPC::ADDItlsgdL: // Transform: %Xd = ADDItlsgdL %Xs, // Into: %Xd = ADDI8 %Xs, sym@got@tlsgd@l - assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC"); + case PPC::ADDItlsgdL32: { + // Transform: %Rd = ADDItlsgdL32 %Rs, + // Into: %Rd = ADDI %Rs, sym@got@tlsgd const MachineOperand &MO = MI->getOperand(2); const GlobalValue *GValue = MO.getGlobal(); MCSymbol *MOSymbol = getSymbol(GValue); const MCExpr *SymGotTlsGD = - MCSymbolRefExpr::Create(MOSymbol, MCSymbolRefExpr::VK_PPC_GOT_TLSGD_LO, + MCSymbolRefExpr::Create(MOSymbol, Subtarget.isPPC64() ? + MCSymbolRefExpr::VK_PPC_GOT_TLSGD_LO : + MCSymbolRefExpr::VK_PPC_GOT_TLSGD, OutContext); - OutStreamer.EmitInstruction(MCInstBuilder(PPC::ADDI8) - .addReg(MI->getOperand(0).getReg()) - .addReg(MI->getOperand(1).getReg()) - .addExpr(SymGotTlsGD)); + OutStreamer.EmitInstruction(MCInstBuilder(Subtarget.isPPC64() ? PPC::ADDI8 : PPC::ADDI) + .addReg(MI->getOperand(0).getReg()) + .addReg(MI->getOperand(1).getReg()) + .addExpr(SymGotTlsGD)); return; } - case PPC::GETtlsADDR: { + case PPC::GETtlsADDR: // Transform: %X3 = GETtlsADDR %X3, // Into: BL8_NOP_TLS __tls_get_addr(sym@tlsgd) - assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC"); + case PPC::GETtlsADDR32: { + // Transform: %R3 = GETtlsADDR32 %R3, + // Into: BL_TLS __tls_get_addr(sym@tlsgd)@PLT *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 17:19:12 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E62AAB20; Sat, 23 Aug 2014 17:19:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1BE338BD; Sat, 23 Aug 2014 17:19:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NHJCED032197; Sat, 23 Aug 2014 17:19:12 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NHJCW8032196; Sat, 23 Aug 2014 17:19:12 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231719.s7NHJCW8032196@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 17:19:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270419 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 17:19:13 -0000 Author: andrew Date: Sat Aug 23 17:19:12 2014 New Revision: 270419 URL: http://svnweb.freebsd.org/changeset/base/270419 Log: Print all registers and align them Modified: projects/arm64/sys/arm64/arm64/trap.c Modified: projects/arm64/sys/arm64/arm64/trap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 16:15:16 2014 (r270418) +++ projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:12 2014 (r270419) @@ -58,8 +58,12 @@ void do_el1h_sync(struct trapframe *fram printf("In do_el1h_sync %llx %llx %x\n", frame->tf_elr, esr, exception); for (reg = 0; reg < 31; reg++) { - printf("x%d: %llx\n", reg, frame->tf_x[reg]); + printf(" %sx%d: %llx\n", (reg < 10) ? " " : "", reg, frame->tf_x[reg]); } + printf(" sp: %llx\n", frame->tf_sp); + printf(" lr: %llx\n", frame->tf_lr); + printf(" elr: %llx\n", frame->tf_elr); + printf("spsr: %llx\n", frame->tf_spsr); switch(exception) { case 0x25: panic("Data abort at %#llx", frame->tf_elr); From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 17:19:16 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55EDFBFF; Sat, 23 Aug 2014 17:19:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 418D038BE; Sat, 23 Aug 2014 17:19:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NHJGri032245; Sat, 23 Aug 2014 17:19:16 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NHJG8t032244; Sat, 23 Aug 2014 17:19:16 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231719.s7NHJG8t032244@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 17:19:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270420 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 17:19:16 -0000 Author: andrew Date: Sat Aug 23 17:19:15 2014 New Revision: 270420 URL: http://svnweb.freebsd.org/changeset/base/270420 Log: Make the breakpoint exception handler panic Modified: projects/arm64/sys/arm64/arm64/trap.c Modified: projects/arm64/sys/arm64/arm64/trap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:12 2014 (r270419) +++ projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:15 2014 (r270420) @@ -69,7 +69,8 @@ void do_el1h_sync(struct trapframe *fram panic("Data abort at %#llx", frame->tf_elr); break; case 0x3c: - printf("Breakpoint %u\n", (uint32_t)(esr & 0xffffff)); + printf("Breakpoint %x\n", (uint32_t)(esr & 0xffffff)); + panic("breakpoint"); break; default: panic("Unknown exception %x\n", exception); From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 17:19:19 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36FB2CE2; Sat, 23 Aug 2014 17:19:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 192B038C0; Sat, 23 Aug 2014 17:19:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NHJIeu032294; Sat, 23 Aug 2014 17:19:18 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NHJIIT032293; Sat, 23 Aug 2014 17:19:18 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231719.s7NHJIIT032293@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 17:19:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270421 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 17:19:19 -0000 Author: andrew Date: Sat Aug 23 17:19:18 2014 New Revision: 270421 URL: http://svnweb.freebsd.org/changeset/base/270421 Log: Start to handle data/instruction aborts Modified: projects/arm64/sys/arm64/arm64/trap.c Modified: projects/arm64/sys/arm64/arm64/trap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:15 2014 (r270420) +++ projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:18 2014 (r270421) @@ -30,10 +30,21 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include #include +#include +#include +#include +#include +#include + #include +/* Called from exception.S */ +void do_el1h_sync(struct trapframe *); + int cpu_fetch_syscall_args(struct thread *td, struct syscall_args *sa) { @@ -41,8 +52,64 @@ cpu_fetch_syscall_args(struct thread *td panic("cpu_fetch_syscall_args"); } -void do_el1h_sync(struct trapframe *frame); -void do_el1h_sync(struct trapframe *frame) +static void +data_abort(struct trapframe *frame, uint64_t esr, int lower) +{ + struct vm_map *map; + struct thread *td; + struct proc *p; + vm_prot_t ftype; + vm_offset_t va; + uint64_t far; + int error; + + __asm __volatile("mrs %x0, far_el1" : "=r"(far)); + + td = curthread; + p = td->td_proc; + + if (lower) + map = &td->td_proc->p_vmspace->vm_map; + else { + /* The top bit tells us which range to use */ + if ((far >> 63) == 1) + map = kernel_map; + else + map = &td->td_proc->p_vmspace->vm_map; + } + + va = trunc_page(far); + ftype = ((esr >> 6) & 1) ? VM_PROT_READ | VM_PROT_WRITE : VM_PROT_READ; + + if (map != kernel_map) { + /* + * Keep swapout from messing with us during this + * critical time. + */ + PROC_LOCK(p); + ++p->p_lock; + PROC_UNLOCK(p); + + /* Fault in the user page: */ + error = vm_fault(map, va, ftype, VM_FAULT_NORMAL); + + PROC_LOCK(p); + --p->p_lock; + PROC_UNLOCK(p); + } else { + /* + * Don't have to worry about process locking or stacks in the + * kernel. + */ + error = vm_fault(map, va, ftype, VM_FAULT_NORMAL); + } + + if (error != 0) + panic("vm_fault failed"); +} + +void +do_el1h_sync(struct trapframe *frame) { uint32_t exception; uint64_t esr; @@ -66,7 +133,7 @@ void do_el1h_sync(struct trapframe *fram printf("spsr: %llx\n", frame->tf_spsr); switch(exception) { case 0x25: - panic("Data abort at %#llx", frame->tf_elr); + data_abort(frame, esr, 0); break; case 0x3c: printf("Breakpoint %x\n", (uint32_t)(esr & 0xffffff)); @@ -75,6 +142,6 @@ void do_el1h_sync(struct trapframe *fram default: panic("Unknown exception %x\n", exception); } - frame->tf_elr += 4; + printf("Done do_el1h_sync\n"); } From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 17:19:22 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32202DC6; Sat, 23 Aug 2014 17:19:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E15338C3; Sat, 23 Aug 2014 17:19:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NHJL9Y032340; Sat, 23 Aug 2014 17:19:21 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NHJLNU032338; Sat, 23 Aug 2014 17:19:21 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231719.s7NHJLNU032338@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 17:19:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270422 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 17:19:22 -0000 Author: andrew Date: Sat Aug 23 17:19:21 2014 New Revision: 270422 URL: http://svnweb.freebsd.org/changeset/base/270422 Log: Handle more exceptions. While here clean up the vector macros to only use one as they were identical other than the location to branch to. Modified: projects/arm64/sys/arm64/arm64/exception.S projects/arm64/sys/arm64/arm64/trap.c Modified: projects/arm64/sys/arm64/arm64/exception.S ============================================================================== --- projects/arm64/sys/arm64/arm64/exception.S Sat Aug 23 17:19:18 2014 (r270421) +++ projects/arm64/sys/arm64/arm64/exception.S Sat Aug 23 17:19:21 2014 (r270422) @@ -110,48 +110,61 @@ handle_el1h_irq: restore_registers eret -.macro vempty - .align 7 - EMIT('Z'); - 1: b 1b -.endm +handle_el1h_error: + brk 0xf13 -.macro el1h_sync - .align 7 - b handle_el1h_sync -.endm +handle_el0_sync: + save_registers + mov x0, sp + bl do_el0_sync + restore_registers + eret -.macro el1h_irq +handle_el0_irq: + save_registers + mov x0, sp + bl cpu_intr + restore_registers + eret + +handle_el0_error: + save_registers + mov x0, sp + bl do_el0_error + brk 0xf23 + 1: b 1b + +.macro vempty .align 7 - b handle_el1h_irq + brk 0xfff + 1: b 1b .endm -.macro el1h_error +.macro vector name .align 7 - EMIT('C'); - 1: b 1b + b handle_\name .endm .align 11 .globl exception_vectors exception_vectors: - vempty /* Synchronous EL1t */ - vempty /* IRQ EL1t */ - vempty /* FIQ EL1t */ - vempty /* Error EL1t */ - - el1h_sync /* Synchronous EL1h */ - el1h_irq /* IRQ EL1h */ - vempty /* FIQ EL1h */ - el1h_error /* Error EL1h */ - - vempty /* Synchronous 64-bit EL0 */ - vempty /* IRQ 64-bit EL0 */ - vempty /* FIQ 64-bit EL0 */ - vempty /* Error 64-bit EL0 */ - - vempty /* Synchronous 32-bit EL0 */ - vempty /* IRQ 32-bit EL0 */ - vempty /* FIQ 32-bit EL0 */ - vempty /* Error 32-bit EL0 */ + vempty /* Synchronous EL1t */ + vempty /* IRQ EL1t */ + vempty /* FIQ EL1t */ + vempty /* Error EL1t */ + + vector el1h_sync /* Synchronous EL1h */ + vector el1h_irq /* IRQ EL1h */ + vempty /* FIQ EL1h */ + vector el1h_error /* Error EL1h */ + + vector el0_sync /* Synchronous 64-bit EL0 */ + vector el0_irq /* IRQ 64-bit EL0 */ + vempty /* FIQ 64-bit EL0 */ + vector el0_error /* Error 64-bit EL0 */ + + vempty /* Synchronous 32-bit EL0 */ + vempty /* IRQ 32-bit EL0 */ + vempty /* FIQ 32-bit EL0 */ + vempty /* Error 32-bit EL0 */ Modified: projects/arm64/sys/arm64/arm64/trap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:18 2014 (r270421) +++ projects/arm64/sys/arm64/arm64/trap.c Sat Aug 23 17:19:21 2014 (r270422) @@ -44,6 +44,8 @@ __FBSDID("$FreeBSD$"); /* Called from exception.S */ void do_el1h_sync(struct trapframe *); +void do_el0_sync(struct trapframe *); +void do_el0_error(struct trapframe *); int cpu_fetch_syscall_args(struct thread *td, struct syscall_args *sa) @@ -145,3 +147,47 @@ do_el1h_sync(struct trapframe *frame) printf("Done do_el1h_sync\n"); } +void +do_el0_sync(struct trapframe *frame) +{ + uint32_t exception; + uint64_t esr; + u_int reg; + + __asm __volatile("mrs %x0, esr_el1" : "=&r"(esr)); + exception = (esr >> 26) & 0x3f; + printf("In do_el0_sync %llx %llx %x\n", frame->tf_elr, esr, exception); + + for (reg = 0; reg < 31; reg++) { + printf(" %sx%d: %llx\n", (reg < 10) ? " " : "", reg, frame->tf_x[reg]); + } + printf(" sp: %llx\n", frame->tf_sp); + printf(" lr: %llx\n", frame->tf_lr); + printf(" elr: %llx\n", frame->tf_elr); + printf("spsr: %llx\n", frame->tf_spsr); + + switch(exception) { + case 0x20: + case 0x24: + data_abort(frame, esr, 1); + break; + default: + panic("Unknown exception %x\n", exception); + } +} + +void +do_el0_error(struct trapframe *frame) +{ + u_int reg; + + for (reg = 0; reg < 31; reg++) { + printf(" %sx%d: %llx\n", (reg < 10) ? " " : "", reg, frame->tf_x[reg]); + } + printf(" sp: %llx\n", frame->tf_sp); + printf(" lr: %llx\n", frame->tf_lr); + printf(" elr: %llx\n", frame->tf_elr); + printf("spsr: %llx\n", frame->tf_spsr); + panic("do_el0_error"); +} + From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 18:07:37 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2E0B32D; Sat, 23 Aug 2014 18:07:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E90C3CB3; Sat, 23 Aug 2014 18:07:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NI7bjk058098; Sat, 23 Aug 2014 18:07:37 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NI7bv9058097; Sat, 23 Aug 2014 18:07:37 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231807.s7NI7bv9058097@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 18:07:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270426 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 18:07:37 -0000 Author: andrew Date: Sat Aug 23 18:07:37 2014 New Revision: 270426 URL: http://svnweb.freebsd.org/changeset/base/270426 Log: pmap_remove works with userland mappings Modified: projects/arm64/sys/arm64/arm64/pmap.c Modified: projects/arm64/sys/arm64/arm64/pmap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/pmap.c Sat Aug 23 17:57:06 2014 (r270425) +++ projects/arm64/sys/arm64/arm64/pmap.c Sat Aug 23 18:07:37 2014 (r270426) @@ -749,7 +749,6 @@ pmap_remove(pmap_t pmap, vm_offset_t sva pt_entry_t *l3; vm_offset_t va_next; - KASSERT(pmap == pmap_kernel(), ("Only kernel mappings for now")); PMAP_LOCK(pmap); for (; sva < eva; sva = va_next) { va_next = sva + L3_SIZE; From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 18:07:41 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 662C440D; Sat, 23 Aug 2014 18:07:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E49F3CB5; Sat, 23 Aug 2014 18:07:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NI7e9n058154; Sat, 23 Aug 2014 18:07:40 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NI7e7A058153; Sat, 23 Aug 2014 18:07:40 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231807.s7NI7e7A058153@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 18:07:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270427 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 18:07:41 -0000 Author: andrew Date: Sat Aug 23 18:07:40 2014 New Revision: 270427 URL: http://svnweb.freebsd.org/changeset/base/270427 Log: Set the new ttbr0_el1 in pmap_activate Modified: projects/arm64/sys/arm64/arm64/pmap.c Modified: projects/arm64/sys/arm64/arm64/pmap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/pmap.c Sat Aug 23 18:07:37 2014 (r270426) +++ projects/arm64/sys/arm64/arm64/pmap.c Sat Aug 23 18:07:40 2014 (r270427) @@ -1176,6 +1176,7 @@ pmap_activate(struct thread *td) pcb = td->td_pcb; pcb->pcb_l1addr = vtophys(pmap->pm_l1); + __asm __volatile("msr ttbr0_el1, %0" : : "r"(pcb->pcb_l1addr)); critical_exit(); } From owner-svn-src-projects@FreeBSD.ORG Sat Aug 23 18:07:44 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 975714EC; Sat, 23 Aug 2014 18:07:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D7273CB7; Sat, 23 Aug 2014 18:07:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NI7irW058208; Sat, 23 Aug 2014 18:07:44 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NI7iHg058207; Sat, 23 Aug 2014 18:07:44 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201408231807.s7NI7iHg058207@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sat, 23 Aug 2014 18:07:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r270428 - projects/arm64/sys/arm64/arm64 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.18-1 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: Sat, 23 Aug 2014 18:07:44 -0000 Author: andrew Date: Sat Aug 23 18:07:43 2014 New Revision: 270428 URL: http://svnweb.freebsd.org/changeset/base/270428 Log: Lock the pmap in pmap_protect Modified: projects/arm64/sys/arm64/arm64/pmap.c Modified: projects/arm64/sys/arm64/arm64/pmap.c ============================================================================== --- projects/arm64/sys/arm64/arm64/pmap.c Sat Aug 23 18:07:40 2014 (r270427) +++ projects/arm64/sys/arm64/arm64/pmap.c Sat Aug 23 18:07:43 2014 (r270428) @@ -800,6 +800,7 @@ pmap_protect(pmap_t pmap, vm_offset_t sv if ((prot & VM_PROT_WRITE) != 0) mask |= ATTR_AP(ATTR_AP_RW); + PMAP_LOCK(pmap); for (; sva < eva; sva = va_next) { l1 = pmap_l1(pmap, sva); if ((*l1 & ATTR_DESCR_MASK) == L1_BLOCK) { @@ -824,6 +825,7 @@ pmap_protect(pmap_t pmap, vm_offset_t sv } va_next = sva + L3_SIZE; } + PMAP_UNLOCK(pmap); } /*