History log of /freebsd-11-stable/sys/arm/include/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
360659 05-May-2020 dim

Fix-up for arm, armeb and armv6 builds erroring after r360658, with:

In file included from /usr/src/contrib/compiler-rt/lib/builtins/clear_cache.c:26:
/usr/obj/arm.armv6/usr/src/tmp/usr/include/machine/sysarch.h:95:22: error: unknown type name 'u_int'
int arm_sync_icache (u_int addr, int len);
^

MFC r349887 (by ian):

De-pollute arm's sysarch.h.

Instead of including stdint.h for uintptr_t, include sys/_types.h and use
__types for everything that isn't a native C keyword type.

Remove the #include of cdefs.h. It appears after the include of armreg.h
which has a precondition of cdefs.h being included before it, so everyone
including sysarch.h is already including cdefs.h. (When armv5 support
goes away, there will be no need include armreg.h here either.)

Unfortunately, the unprefixed struct member names "addr" and "len" cannot
be changed, because 3rd-party software is relying on them (libcompiler_rt
is one known consumer).

342078 14-Dec-2018 mmel

MFC r341679:

Fix cut&paste typo in atomic_fetchadd_64().

340556 18-Nov-2018 kib

MFC r340136:
Move the fixed base for PIE loading on arm.

340270 08-Nov-2018 jhb

MFC 340164,340168,340170: Add custom cpu_lock_delay() for x86.

340164:
Add a KPI for the delay while spinning on a spin lock.

Replace a call to DELAY(1) with a new cpu_lock_delay() KPI. Currently
cpu_lock_delay() is defined to DELAY(1) on all platforms. However,
platforms with a DELAY() implementation that uses spin locks should
implement a custom cpu_lock_delay() doesn't use locks.

340168:
Add a delay_tsc() static function for when DELAY() uses the TSC.

This uses slightly simpler logic than the existing code by using the
full 64-bit counter and thus not having to worry about counter
overflow.

340170:
Add a custom implementation of cpu_lock_delay() for x86.

Avoid using DELAY() since it can try to use spin locks on CPUs without
a P-state invariant TSC. For cpu_lock_delay(), always use the TSC if
it exists (even if it is not P-state invariant) to delay for a
microsecond. If the TSC does not exist, read from I/O port 0x84 to
delay instead.

PR: 228768

338514 06-Sep-2018 jhb

MFC 332906,332907,332976,333679,336053: Expand testing of breakpoints.

332906:
Extend support for ptrace() tests using breakpoints.

- Use a single list of platforms to define HAVE_BREAKPOINT for platforms
that expose a functional breakpoint() inline to userland. Replace
existing lists of platform tests with HAVE_BREAKPOINT instead.
- Add support for advancing PC past a breakpoint inserted via breakpoint()
to support the existing ptrace__PT_CONTINUE_different_thread test on
non-x86 platforms (x86 advances the PC past the breakpoint instruction,
but other platforms do not). This is implemented by defining a new
SKIP_BREAK macro which accepts a pointer to a 'struct reg' as its sole
argument and modifies the contents to advance the PC. The intention is
to use it in between PT_GETREGS and PT_SETREGS.

332907:
Expose breakpoint() to userland from <machine/cpufunc.h> on MIPS.

Enable ptrace() tests using breakpoint on MIPS as well.

332976:
Shorten some recently-added lines that are an extra indent over 80 columns.

333679:
Export a breakpoint() function to userland for riscv.

As a result, enable tests using breakpoint() on riscv.

336053:
Export a breakpoint() function to userland for arm and arm64.

Enable ptrace() tests using breakpoint() on these architectures.

333687 16-May-2018 jhb

MFC 332891,332892: Fixes for atomic_*cmpset() on arm.

332891:
Fix some harmless type mismatches in the ARM atomic_cmpset implementations.

The return value of atomic_cmpset() and atomic_fcmpset() is an int (which
is really a bool) that has the values 0 or 1. Some of the inlines were
using the type being operated on (e.g. uint32_t) as either the return type
of the function, or the type of a local 'ret' variable used to hold the
return value. Fix all of these to just use plain 'int'. Due to C promotion
rules and the fact that the value can only be 0 or 1, these should all be
harmless.

332892:
Implement 32-bit atomic_fcmpset() in userland for armv4/v5.

- Add an implementation of atomic_fcmpset_32() using RAS for armv4/v5.
This fixes recent world breakage due to use of atomic_fcmpset() in
userland.
- While here, be more careful to not expose wrapper macros for 64-bit
atomic_*cmpset to userland for armv4/v5 as only 32-bit cmpset is
implemented.

This has been reviewed, but not runtime-tested, but should fix the arm.arm
and arm.armeb worlds that have been broken for a while.

Approved by: re (kib)

332135 06-Apr-2018 kevans

MFC r329859,r329860: Float protection in stand

r329859: Do not include float interfaces when using libsa.

We don't support float in the boot loaders, so don't include
interfaces for float or double in systems headers. In addition, take
the unusual step of spiking double and float to prevent any more
accidental seepage.

r329860: Floaty McFloatface is funnier...

331988 04-Apr-2018 mmel

MFC r328467:

Implement mitigation for Spectre version 2 attacks on ARMv7.

331971 04-Apr-2018 mmel

MFC r309531,r309553,r309604:

r309531:
Implement fake pmap_mapdev_attr() for ARMv6. This function is referenced,
but never called from DRM2 code. Also, real behavior of pmap_mapdev_attr()
in ARM world is unclear as we don't have any additional attribute for a
device memory type.
r309553:
Fix build breakage caused by r309531.
r309604:
Fix the armv6 build after r309553.

331968 04-Apr-2018 mmel

MFC r319896,r320054:

r319896:
Implement tunable CPU quirks. These quirks are intended for optimizing CPU
performance, not for applying errata workarounds. Nobody can expect that
CPU with unfixed errata is stable enough to execute the kernel until quirks
are applied.
r320054:
Manually load tunable CPU quirks. These are needed too early, far before
SYSINIT is processed.

331907 03-Apr-2018 gonzo

MFC r307943-r307944, r308698

r307943 by andrew:
Remove the need for the delay to be zero when MULTIDELAY is undefined,
it may be useful to only enable this in some configs.

Sponsored by: ABT Systems Ltd

r307944 by andrew:
Add MULTIDELAY support to the am335x dmtimer. This will be useful for
testing Cortex-A8 support in GENERIC.

Sponsored by: ABT Systems Ltd

r308698 by loos:
After r308533, the platform compatible string must be an exact match.

Use "ti,am33xx" instead of "ti,am335x", which gives an exact match in every
DTS we support.

This fixes the boot on TI SoCs after r308533.

Suggested by: gonzo
Sponsored by: Rubicon Communications, LLC (Netgate)

331722 29-Mar-2018 eadler

Revert r330897:

This was intended to be a non-functional change. It wasn't. The commit
message was thus wrong. In addition it broke arm, and merged crypto
related code.

Revert with prejudice.

This revert skips files touched in r316370 since that commit was since
MFCed. This revert also skips files that require $FreeBSD$ property
changes.

Thank you to those who helped me get out of this mess including but not
limited to gonzo, kevans, rgrimes.

Requested by: gjb (re)


/freebsd-11-stable/bin/cat/cat.c
/freebsd-11-stable/bin/chflags/chflags.c
/freebsd-11-stable/bin/chmod/chmod.c
/freebsd-11-stable/bin/cp/cp.c
/freebsd-11-stable/bin/cp/extern.h
/freebsd-11-stable/bin/cp/utils.c
/freebsd-11-stable/bin/date/date.c
/freebsd-11-stable/bin/date/extern.h
/freebsd-11-stable/bin/date/netdate.c
/freebsd-11-stable/bin/dd/args.c
/freebsd-11-stable/bin/dd/conv.c
/freebsd-11-stable/bin/dd/conv_tab.c
/freebsd-11-stable/bin/dd/dd.c
/freebsd-11-stable/bin/dd/dd.h
/freebsd-11-stable/bin/dd/extern.h
/freebsd-11-stable/bin/dd/misc.c
/freebsd-11-stable/bin/dd/position.c
/freebsd-11-stable/bin/df/df.c
/freebsd-11-stable/bin/domainname/domainname.c
/freebsd-11-stable/bin/echo/echo.c
/freebsd-11-stable/bin/ed/cbc.c
/freebsd-11-stable/bin/hostname/hostname.c
/freebsd-11-stable/bin/kill/kill.c
/freebsd-11-stable/bin/ln/ln.c
/freebsd-11-stable/bin/ls/cmp.c
/freebsd-11-stable/bin/ls/extern.h
/freebsd-11-stable/bin/ls/ls.c
/freebsd-11-stable/bin/ls/ls.h
/freebsd-11-stable/bin/ls/print.c
/freebsd-11-stable/bin/ls/util.c
/freebsd-11-stable/bin/mkdir/mkdir.c
/freebsd-11-stable/bin/mv/mv.c
/freebsd-11-stable/bin/pax/ar_io.c
/freebsd-11-stable/bin/pax/ar_subs.c
/freebsd-11-stable/bin/pax/buf_subs.c
/freebsd-11-stable/bin/pax/cache.c
/freebsd-11-stable/bin/pax/cache.h
/freebsd-11-stable/bin/pax/cpio.c
/freebsd-11-stable/bin/pax/cpio.h
/freebsd-11-stable/bin/pax/extern.h
/freebsd-11-stable/bin/pax/file_subs.c
/freebsd-11-stable/bin/pax/ftree.c
/freebsd-11-stable/bin/pax/ftree.h
/freebsd-11-stable/bin/pax/gen_subs.c
/freebsd-11-stable/bin/pax/options.c
/freebsd-11-stable/bin/pax/options.h
/freebsd-11-stable/bin/pax/pat_rep.c
/freebsd-11-stable/bin/pax/pat_rep.h
/freebsd-11-stable/bin/pax/pax.c
/freebsd-11-stable/bin/pax/pax.h
/freebsd-11-stable/bin/pax/sel_subs.c
/freebsd-11-stable/bin/pax/sel_subs.h
/freebsd-11-stable/bin/pax/tables.c
/freebsd-11-stable/bin/pax/tables.h
/freebsd-11-stable/bin/pax/tar.c
/freebsd-11-stable/bin/pax/tar.h
/freebsd-11-stable/bin/pax/tty_subs.c
/freebsd-11-stable/bin/ps/extern.h
/freebsd-11-stable/bin/ps/fmt.c
/freebsd-11-stable/bin/ps/keyword.c
/freebsd-11-stable/bin/ps/nlist.c
/freebsd-11-stable/bin/ps/print.c
/freebsd-11-stable/bin/ps/ps.c
/freebsd-11-stable/bin/ps/ps.h
/freebsd-11-stable/bin/pwd/pwd.c
/freebsd-11-stable/bin/realpath/realpath.c
/freebsd-11-stable/bin/rm/rm.c
/freebsd-11-stable/bin/rmdir/rmdir.c
/freebsd-11-stable/bin/sh/bltin/bltin.h
/freebsd-11-stable/bin/sh/bltin/echo.c
/freebsd-11-stable/bin/sh/mail.h
/freebsd-11-stable/bin/sh/main.c
/freebsd-11-stable/bin/sh/main.h
/freebsd-11-stable/bin/sh/memalloc.c
/freebsd-11-stable/bin/sh/memalloc.h
/freebsd-11-stable/bin/sh/miscbltin.c
/freebsd-11-stable/bin/sh/mknodes.c
/freebsd-11-stable/bin/sh/mksyntax.c
/freebsd-11-stable/bin/sh/myhistedit.h
/freebsd-11-stable/bin/sh/mystring.c
/freebsd-11-stable/bin/sh/mystring.h
/freebsd-11-stable/bin/sh/options.c
/freebsd-11-stable/bin/sh/options.h
/freebsd-11-stable/bin/sh/output.c
/freebsd-11-stable/bin/sh/output.h
/freebsd-11-stable/bin/sh/parser.c
/freebsd-11-stable/bin/sh/parser.h
/freebsd-11-stable/bin/sh/redir.c
/freebsd-11-stable/bin/sh/redir.h
/freebsd-11-stable/bin/sh/shell.h
/freebsd-11-stable/bin/sh/show.c
/freebsd-11-stable/bin/sh/show.h
/freebsd-11-stable/bin/sh/trap.c
/freebsd-11-stable/bin/sh/trap.h
/freebsd-11-stable/bin/sh/var.c
/freebsd-11-stable/bin/sh/var.h
/freebsd-11-stable/include/_ctype.h
/freebsd-11-stable/include/a.out.h
/freebsd-11-stable/include/ar.h
/freebsd-11-stable/include/arpa/ftp.h
/freebsd-11-stable/include/arpa/inet.h
/freebsd-11-stable/include/arpa/nameser.h
/freebsd-11-stable/include/arpa/nameser_compat.h
/freebsd-11-stable/include/arpa/telnet.h
/freebsd-11-stable/include/arpa/tftp.h
/freebsd-11-stable/include/assert.h
/freebsd-11-stable/include/bitstring.h
/freebsd-11-stable/include/complex.h
/freebsd-11-stable/include/cpio.h
/freebsd-11-stable/include/ctype.h
/freebsd-11-stable/include/db.h
/freebsd-11-stable/include/dirent.h
/freebsd-11-stable/include/dlfcn.h
/freebsd-11-stable/include/elf-hints.h
/freebsd-11-stable/include/elf.h
/freebsd-11-stable/include/err.h
/freebsd-11-stable/include/fmtmsg.h
/freebsd-11-stable/include/fnmatch.h
/freebsd-11-stable/include/fstab.h
/freebsd-11-stable/include/fts.h
/freebsd-11-stable/include/getopt.h
/freebsd-11-stable/include/glob.h
/freebsd-11-stable/include/grp.h
/freebsd-11-stable/include/hesiod.h
/freebsd-11-stable/include/iconv.h
/freebsd-11-stable/include/inttypes.h
/freebsd-11-stable/include/iso646.h
/freebsd-11-stable/include/kenv.h
/freebsd-11-stable/include/langinfo.h
/freebsd-11-stable/include/libgen.h
/freebsd-11-stable/include/limits.h
/freebsd-11-stable/include/link.h
/freebsd-11-stable/include/locale.h
/freebsd-11-stable/include/malloc_np.h
/freebsd-11-stable/include/memory.h
/freebsd-11-stable/include/mk-osreldate.sh
/freebsd-11-stable/include/monetary.h
/freebsd-11-stable/include/mpool.h
/freebsd-11-stable/include/mqueue.h
/freebsd-11-stable/include/ndbm.h
/freebsd-11-stable/include/netdb.h
/freebsd-11-stable/include/nl_types.h
/freebsd-11-stable/include/nlist.h
/freebsd-11-stable/include/nss.h
/freebsd-11-stable/include/nsswitch.h
/freebsd-11-stable/include/paths.h
/freebsd-11-stable/include/printf.h
/freebsd-11-stable/include/proc_service.h
/freebsd-11-stable/include/protocols/dumprestore.h
/freebsd-11-stable/include/protocols/routed.h
/freebsd-11-stable/include/protocols/rwhod.h
/freebsd-11-stable/include/protocols/talkd.h
/freebsd-11-stable/include/protocols/timed.h
/freebsd-11-stable/include/pthread.h
/freebsd-11-stable/include/pthread_np.h
/freebsd-11-stable/include/pwd.h
/freebsd-11-stable/include/ranlib.h
/freebsd-11-stable/include/regex.h
/freebsd-11-stable/include/resolv.h
/freebsd-11-stable/include/rpc/auth.h
/freebsd-11-stable/include/rpc/auth_des.h
/freebsd-11-stable/include/rpc/auth_kerb.h
/freebsd-11-stable/include/rpc/auth_unix.h
/freebsd-11-stable/include/rpc/clnt.h
/freebsd-11-stable/include/rpc/clnt_soc.h
/freebsd-11-stable/include/rpc/des.h
/freebsd-11-stable/include/rpc/des_crypt.h
/freebsd-11-stable/include/rpc/nettype.h
/freebsd-11-stable/include/rpc/pmap_clnt.h
/freebsd-11-stable/include/rpc/pmap_prot.h
/freebsd-11-stable/include/rpc/pmap_rmt.h
/freebsd-11-stable/include/rpc/raw.h
/freebsd-11-stable/include/rpc/rpc.h
/freebsd-11-stable/include/rpc/rpc_com.h
/freebsd-11-stable/include/rpc/rpc_msg.h
/freebsd-11-stable/include/rpc/rpcb_clnt.h
/freebsd-11-stable/include/rpc/rpcent.h
/freebsd-11-stable/include/rpc/rpcsec_gss.h
/freebsd-11-stable/include/rpc/svc.h
/freebsd-11-stable/include/rpc/svc_auth.h
/freebsd-11-stable/include/rpc/svc_dg.h
/freebsd-11-stable/include/rpc/svc_soc.h
/freebsd-11-stable/include/rpc/xdr.h
/freebsd-11-stable/include/rpcsvc/nis_tags.h
/freebsd-11-stable/include/rpcsvc/yp_prot.h
/freebsd-11-stable/include/rpcsvc/ypclnt.h
/freebsd-11-stable/include/runetype.h
/freebsd-11-stable/include/semaphore.h
/freebsd-11-stable/include/setjmp.h
/freebsd-11-stable/include/signal.h
/freebsd-11-stable/include/spawn.h
/freebsd-11-stable/include/stab.h
/freebsd-11-stable/include/stdalign.h
/freebsd-11-stable/include/stdbool.h
/freebsd-11-stable/include/stddef.h
/freebsd-11-stable/include/stdio.h
/freebsd-11-stable/include/stdlib.h
/freebsd-11-stable/include/stdnoreturn.h
/freebsd-11-stable/include/string.h
/freebsd-11-stable/include/stringlist.h
/freebsd-11-stable/include/strings.h
/freebsd-11-stable/include/sysexits.h
/freebsd-11-stable/include/tar.h
/freebsd-11-stable/include/termios.h
/freebsd-11-stable/include/tgmath.h
/freebsd-11-stable/include/time.h
/freebsd-11-stable/include/timeconv.h
/freebsd-11-stable/include/timers.h
/freebsd-11-stable/include/ttyent.h
/freebsd-11-stable/include/uchar.h
/freebsd-11-stable/include/ulimit.h
/freebsd-11-stable/include/unistd.h
/freebsd-11-stable/include/utime.h
/freebsd-11-stable/include/utmpx.h
/freebsd-11-stable/include/uuid.h
/freebsd-11-stable/include/varargs.h
/freebsd-11-stable/include/wchar.h
/freebsd-11-stable/include/wctype.h
/freebsd-11-stable/include/wordexp.h
/freebsd-11-stable/include/xlocale.h
/freebsd-11-stable/include/xlocale/_ctype.h
/freebsd-11-stable/include/xlocale/_inttypes.h
/freebsd-11-stable/include/xlocale/_langinfo.h
/freebsd-11-stable/include/xlocale/_locale.h
/freebsd-11-stable/include/xlocale/_monetary.h
/freebsd-11-stable/include/xlocale/_stdio.h
/freebsd-11-stable/include/xlocale/_stdlib.h
/freebsd-11-stable/include/xlocale/_string.h
/freebsd-11-stable/include/xlocale/_time.h
/freebsd-11-stable/include/xlocale/_uchar.h
/freebsd-11-stable/include/xlocale/_wchar.h
/freebsd-11-stable/lib/csu/amd64/crt1.c
/freebsd-11-stable/lib/csu/arm/crt1.c
/freebsd-11-stable/lib/csu/common/crtbrand.c
/freebsd-11-stable/lib/csu/common/ignore_init.c
/freebsd-11-stable/lib/csu/common/notes.h
/freebsd-11-stable/lib/csu/mips/crt1.c
/freebsd-11-stable/lib/csu/powerpc/crt1.c
/freebsd-11-stable/lib/csu/powerpc64/crt1.c
/freebsd-11-stable/lib/csu/sparc64/crt1.c
/freebsd-11-stable/lib/libarchive/config_freebsd.h
/freebsd-11-stable/lib/libbluetooth/bluetooth.c
/freebsd-11-stable/lib/libbluetooth/bluetooth.h
/freebsd-11-stable/lib/libbluetooth/dev.c
/freebsd-11-stable/lib/libbluetooth/hci.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.h
/freebsd-11-stable/lib/libc/amd64/SYS.h
/freebsd-11-stable/lib/libc/amd64/_fpmath.h
/freebsd-11-stable/lib/libc/amd64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/amd64/gen/getcontextx.c
/freebsd-11-stable/lib/libc/amd64/gen/makecontext.c
/freebsd-11-stable/lib/libc/amd64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/amd64/string/strcpy.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_gsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_gsbase.c
/freebsd-11-stable/lib/libc/arm/SYS.h
/freebsd-11-stable/lib/libc/arm/_fpmath.h
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_atexit.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_double.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_float.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_unwind_cpp.c
/freebsd-11-stable/lib/libc/arm/gen/_set_tp.c
/freebsd-11-stable/lib/libc/arm/gen/arm_initfini.c
/freebsd-11-stable/lib/libc/arm/gen/fabs.c
/freebsd-11-stable/lib/libc/arm/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/arm/gen/getcontextx.c
/freebsd-11-stable/lib/libc/arm/gen/makecontext.c
/freebsd-11-stable/lib/libc/arm/gen/signalcontext.c
/freebsd-11-stable/lib/libc/arm/sys/__vdso_gettc.c
/freebsd-11-stable/lib/libc/compat-43/creat.c
/freebsd-11-stable/lib/libc/compat-43/gethostid.c
/freebsd-11-stable/lib/libc/compat-43/getwd.c
/freebsd-11-stable/lib/libc/compat-43/killpg.c
/freebsd-11-stable/lib/libc/compat-43/sethostid.c
/freebsd-11-stable/lib/libc/compat-43/setpgrp.c
/freebsd-11-stable/lib/libc/compat-43/setrgid.c
/freebsd-11-stable/lib/libc/compat-43/setruid.c
/freebsd-11-stable/lib/libc/compat-43/sigcompat.c
/freebsd-11-stable/lib/libc/db/btree/bt_close.c
/freebsd-11-stable/lib/libc/db/btree/bt_conv.c
/freebsd-11-stable/lib/libc/db/btree/bt_debug.c
/freebsd-11-stable/lib/libc/db/btree/bt_delete.c
/freebsd-11-stable/lib/libc/db/btree/bt_get.c
/freebsd-11-stable/lib/libc/db/btree/bt_open.c
/freebsd-11-stable/lib/libc/db/btree/bt_overflow.c
/freebsd-11-stable/lib/libc/db/btree/bt_page.c
/freebsd-11-stable/lib/libc/db/btree/bt_put.c
/freebsd-11-stable/lib/libc/db/btree/bt_search.c
/freebsd-11-stable/lib/libc/db/btree/bt_seq.c
/freebsd-11-stable/lib/libc/db/btree/bt_split.c
/freebsd-11-stable/lib/libc/db/btree/bt_utils.c
/freebsd-11-stable/lib/libc/db/btree/btree.h
/freebsd-11-stable/lib/libc/db/btree/extern.h
/freebsd-11-stable/lib/libc/db/db/db.c
/freebsd-11-stable/lib/libc/db/hash/extern.h
/freebsd-11-stable/lib/libc/db/hash/hash.c
/freebsd-11-stable/lib/libc/db/hash/hash.h
/freebsd-11-stable/lib/libc/db/hash/hash_bigkey.c
/freebsd-11-stable/lib/libc/db/hash/hash_buf.c
/freebsd-11-stable/lib/libc/db/hash/hash_func.c
/freebsd-11-stable/lib/libc/db/hash/hash_log2.c
/freebsd-11-stable/lib/libc/db/hash/hash_page.c
/freebsd-11-stable/lib/libc/db/hash/ndbm.c
/freebsd-11-stable/lib/libc/db/hash/page.h
/freebsd-11-stable/lib/libc/db/mpool/mpool-compat.c
/freebsd-11-stable/lib/libc/db/mpool/mpool.c
/freebsd-11-stable/lib/libc/db/recno/extern.h
/freebsd-11-stable/lib/libc/db/recno/rec_close.c
/freebsd-11-stable/lib/libc/db/recno/rec_delete.c
/freebsd-11-stable/lib/libc/db/recno/rec_get.c
/freebsd-11-stable/lib/libc/db/recno/rec_open.c
/freebsd-11-stable/lib/libc/db/recno/rec_put.c
/freebsd-11-stable/lib/libc/db/recno/rec_search.c
/freebsd-11-stable/lib/libc/db/recno/rec_seq.c
/freebsd-11-stable/lib/libc/db/recno/rec_utils.c
/freebsd-11-stable/lib/libc/db/recno/recno.h
/freebsd-11-stable/lib/libc/db/test/btree.tests/main.c
/freebsd-11-stable/lib/libc/db/test/dbtest.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/driver2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tcreat3.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tdel.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/thash4.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tread2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tseq.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tverify.c
/freebsd-11-stable/lib/libc/gdtoa/_hdtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_hldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_ldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisQ.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisd.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisx.c
/freebsd-11-stable/lib/libc/gen/__getosreldate.c
/freebsd-11-stable/lib/libc/gen/__xuname.c
/freebsd-11-stable/lib/libc/gen/_once_stub.c
/freebsd-11-stable/lib/libc/gen/_pthread_stubs.c
/freebsd-11-stable/lib/libc/gen/_spinlock_stub.c
/freebsd-11-stable/lib/libc/gen/_thread_init.c
/freebsd-11-stable/lib/libc/gen/alarm.c
/freebsd-11-stable/lib/libc/gen/assert.c
/freebsd-11-stable/lib/libc/gen/auxv.c
/freebsd-11-stable/lib/libc/gen/cap_sandboxed.c
/freebsd-11-stable/lib/libc/gen/clock.c
/freebsd-11-stable/lib/libc/gen/clock_getcpuclockid.c
/freebsd-11-stable/lib/libc/gen/closedir.c
/freebsd-11-stable/lib/libc/gen/confstr.c
/freebsd-11-stable/lib/libc/gen/crypt.c
/freebsd-11-stable/lib/libc/gen/ctermid.c
/freebsd-11-stable/lib/libc/gen/daemon.c
/freebsd-11-stable/lib/libc/gen/devname.c
/freebsd-11-stable/lib/libc/gen/dirfd.c
/freebsd-11-stable/lib/libc/gen/disklabel.c
/freebsd-11-stable/lib/libc/gen/dlfcn.c
/freebsd-11-stable/lib/libc/gen/dup3.c
/freebsd-11-stable/lib/libc/gen/elf_utils.c
/freebsd-11-stable/lib/libc/gen/err.c
/freebsd-11-stable/lib/libc/gen/errlst.c
/freebsd-11-stable/lib/libc/gen/errno.c
/freebsd-11-stable/lib/libc/gen/exec.c
/freebsd-11-stable/lib/libc/gen/fdevname.c
/freebsd-11-stable/lib/libc/gen/feature_present.c
/freebsd-11-stable/lib/libc/gen/fmtcheck.c
/freebsd-11-stable/lib/libc/gen/fmtmsg.c
/freebsd-11-stable/lib/libc/gen/fnmatch.c
/freebsd-11-stable/lib/libc/gen/fpclassify.c
/freebsd-11-stable/lib/libc/gen/frexp.c
/freebsd-11-stable/lib/libc/gen/fstab.c
/freebsd-11-stable/lib/libc/gen/ftok.c
/freebsd-11-stable/lib/libc/gen/fts-compat.c
/freebsd-11-stable/lib/libc/gen/fts-compat.h
/freebsd-11-stable/lib/libc/gen/fts.c
/freebsd-11-stable/lib/libc/gen/gen-private.h
/freebsd-11-stable/lib/libc/gen/getbootfile.c
/freebsd-11-stable/lib/libc/gen/getbsize.c
/freebsd-11-stable/lib/libc/gen/getcap.c
/freebsd-11-stable/lib/libc/gen/getcwd.c
/freebsd-11-stable/lib/libc/gen/getdomainname.c
/freebsd-11-stable/lib/libc/gen/getgrent.c
/freebsd-11-stable/lib/libc/gen/getgrouplist.c
/freebsd-11-stable/lib/libc/gen/gethostname.c
/freebsd-11-stable/lib/libc/gen/getloadavg.c
/freebsd-11-stable/lib/libc/gen/getlogin.c
/freebsd-11-stable/lib/libc/gen/getmntinfo.c
/freebsd-11-stable/lib/libc/gen/getnetgrent.c
/freebsd-11-stable/lib/libc/gen/getosreldate.c
/freebsd-11-stable/lib/libc/gen/getpagesize.c
/freebsd-11-stable/lib/libc/gen/getpagesizes.c
/freebsd-11-stable/lib/libc/gen/getpeereid.c
/freebsd-11-stable/lib/libc/gen/getpwent.c
/freebsd-11-stable/lib/libc/gen/getttyent.c
/freebsd-11-stable/lib/libc/gen/getusershell.c
/freebsd-11-stable/lib/libc/gen/getutxent.c
/freebsd-11-stable/lib/libc/gen/getvfsbyname.c
/freebsd-11-stable/lib/libc/gen/glob.c
/freebsd-11-stable/lib/libc/gen/initgroups.c
/freebsd-11-stable/lib/libc/gen/isatty.c
/freebsd-11-stable/lib/libc/gen/isinf.c
/freebsd-11-stable/lib/libc/gen/isnan.c
/freebsd-11-stable/lib/libc/gen/libc_dlopen.c
/freebsd-11-stable/lib/libc/gen/lockf.c
/freebsd-11-stable/lib/libc/gen/nice.c
/freebsd-11-stable/lib/libc/gen/nlist.c
/freebsd-11-stable/lib/libc/gen/opendir.c
/freebsd-11-stable/lib/libc/gen/pause.c
/freebsd-11-stable/lib/libc/gen/popen.c
/freebsd-11-stable/lib/libc/gen/posix_spawn.c
/freebsd-11-stable/lib/libc/gen/psignal.c
/freebsd-11-stable/lib/libc/gen/pututxline.c
/freebsd-11-stable/lib/libc/gen/pw_scan.c
/freebsd-11-stable/lib/libc/gen/pw_scan.h
/freebsd-11-stable/lib/libc/gen/raise.c
/freebsd-11-stable/lib/libc/gen/readdir.c
/freebsd-11-stable/lib/libc/gen/rewinddir.c
/freebsd-11-stable/lib/libc/gen/scandir.c
/freebsd-11-stable/lib/libc/gen/seekdir.c
/freebsd-11-stable/lib/libc/gen/sem.c
/freebsd-11-stable/lib/libc/gen/sem_new.c
/freebsd-11-stable/lib/libc/gen/semctl.c
/freebsd-11-stable/lib/libc/gen/setdomainname.c
/freebsd-11-stable/lib/libc/gen/sethostname.c
/freebsd-11-stable/lib/libc/gen/setjmperr.c
/freebsd-11-stable/lib/libc/gen/setmode.c
/freebsd-11-stable/lib/libc/gen/siginterrupt.c
/freebsd-11-stable/lib/libc/gen/siglist.c
/freebsd-11-stable/lib/libc/gen/signal.c
/freebsd-11-stable/lib/libc/gen/sigsetops.c
/freebsd-11-stable/lib/libc/gen/sleep.c
/freebsd-11-stable/lib/libc/gen/stringlist.c
/freebsd-11-stable/lib/libc/gen/strtofflags.c
/freebsd-11-stable/lib/libc/gen/sysconf.c
/freebsd-11-stable/lib/libc/gen/sysctl.c
/freebsd-11-stable/lib/libc/gen/sysctlnametomib.c
/freebsd-11-stable/lib/libc/gen/syslog.c
/freebsd-11-stable/lib/libc/gen/telldir.c
/freebsd-11-stable/lib/libc/gen/telldir.h
/freebsd-11-stable/lib/libc/gen/termios.c
/freebsd-11-stable/lib/libc/gen/time.c
/freebsd-11-stable/lib/libc/gen/times.c
/freebsd-11-stable/lib/libc/gen/timezone.c
/freebsd-11-stable/lib/libc/gen/tls.c
/freebsd-11-stable/lib/libc/gen/ttyname.c
/freebsd-11-stable/lib/libc/gen/ttyslot.c
/freebsd-11-stable/lib/libc/gen/ualarm.c
/freebsd-11-stable/lib/libc/gen/ulimit.c
/freebsd-11-stable/lib/libc/gen/uname.c
/freebsd-11-stable/lib/libc/gen/unvis-compat.c
/freebsd-11-stable/lib/libc/gen/usleep.c
/freebsd-11-stable/lib/libc/gen/utime.c
/freebsd-11-stable/lib/libc/gen/utxdb.c
/freebsd-11-stable/lib/libc/gen/utxdb.h
/freebsd-11-stable/lib/libc/gen/valloc.c
/freebsd-11-stable/lib/libc/gen/wait.c
/freebsd-11-stable/lib/libc/gen/wait3.c
/freebsd-11-stable/lib/libc/gen/waitid.c
/freebsd-11-stable/lib/libc/gen/waitpid.c
/freebsd-11-stable/lib/libc/gen/wordexp.c
/freebsd-11-stable/lib/libc/gmon/gmon.c
/freebsd-11-stable/lib/libc/gmon/mcount.c
/freebsd-11-stable/lib/libc/i386/SYS.h
/freebsd-11-stable/lib/libc/i386/_fpmath.h
/freebsd-11-stable/lib/libc/i386/gen/_set_tp.c
/freebsd-11-stable/lib/libc/i386/gen/getcontextx.c
/freebsd-11-stable/lib/libc/i386/gen/makecontext.c
/freebsd-11-stable/lib/libc/i386/gen/signalcontext.c
/freebsd-11-stable/lib/libc/i386/sys/i386_clr_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_vm86.c
/freebsd-11-stable/lib/libc/iconv/__iconv.c
/freebsd-11-stable/lib/libc/iconv/__iconv_free_list.c
/freebsd-11-stable/lib/libc/iconv/__iconv_get_list.c
/freebsd-11-stable/lib/libc/iconv/_strtol.h
/freebsd-11-stable/lib/libc/iconv/_strtoul.h
/freebsd-11-stable/lib/libc/iconv/bsd_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_aliasname_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtol.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtoul.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_db.c
/freebsd-11-stable/lib/libc/iconv/citrus_db.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.c
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_fix_grouping.h
/freebsd-11-stable/lib/libc/iconv/citrus_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_lock.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.c
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.h
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.c
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.h
/freebsd-11-stable/lib/libc/iconv/citrus_module.c
/freebsd-11-stable/lib/libc/iconv/citrus_module.h
/freebsd-11-stable/lib/libc/iconv/citrus_namespace.h
/freebsd-11-stable/lib/libc/iconv/citrus_none.c
/freebsd-11-stable/lib/libc/iconv/citrus_none.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_prop.c
/freebsd-11-stable/lib/libc/iconv/citrus_prop.h
/freebsd-11-stable/lib/libc/iconv/citrus_region.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.c
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_template.h
/freebsd-11-stable/lib/libc/iconv/citrus_types.h
/freebsd-11-stable/lib/libc/iconv/iconv-internal.h
/freebsd-11-stable/lib/libc/iconv/iconv.c
/freebsd-11-stable/lib/libc/iconv/iconv_canonicalize.c
/freebsd-11-stable/lib/libc/iconv/iconv_close.c
/freebsd-11-stable/lib/libc/iconv/iconv_compat.c
/freebsd-11-stable/lib/libc/iconv/iconv_open.c
/freebsd-11-stable/lib/libc/iconv/iconv_open_into.c
/freebsd-11-stable/lib/libc/iconv/iconv_set_relocation_prefix.c
/freebsd-11-stable/lib/libc/iconv/iconvctl.c
/freebsd-11-stable/lib/libc/iconv/iconvlist.c
/freebsd-11-stable/lib/libc/include/compat.h
/freebsd-11-stable/lib/libc/include/errlst.h
/freebsd-11-stable/lib/libc/include/fpmath.h
/freebsd-11-stable/lib/libc/include/libc_private.h
/freebsd-11-stable/lib/libc/include/namespace.h
/freebsd-11-stable/lib/libc/include/nscache.h
/freebsd-11-stable/lib/libc/include/nscachedcli.h
/freebsd-11-stable/lib/libc/include/nss_tls.h
/freebsd-11-stable/lib/libc/include/reentrant.h
/freebsd-11-stable/lib/libc/include/spinlock.h
/freebsd-11-stable/lib/libc/include/un-namespace.h
/freebsd-11-stable/lib/libc/inet/inet_addr.c
/freebsd-11-stable/lib/libc/inet/inet_lnaof.c
/freebsd-11-stable/lib/libc/inet/inet_makeaddr.c
/freebsd-11-stable/lib/libc/inet/inet_netof.c
/freebsd-11-stable/lib/libc/inet/inet_network.c
/freebsd-11-stable/lib/libc/inet/inet_ntoa.c
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/lib/libc/locale/btowc.c
/freebsd-11-stable/lib/libc/locale/c16rtomb.c
/freebsd-11-stable/lib/libc/locale/c32rtomb.c
/freebsd-11-stable/lib/libc/locale/cXXrtomb_iconv.h
/freebsd-11-stable/lib/libc/locale/collate.c
/freebsd-11-stable/lib/libc/locale/collate.h
/freebsd-11-stable/lib/libc/locale/collcmp.c
/freebsd-11-stable/lib/libc/locale/ctype.c
/freebsd-11-stable/lib/libc/locale/euc.c
/freebsd-11-stable/lib/libc/locale/fix_grouping.c
/freebsd-11-stable/lib/libc/locale/gb18030.c
/freebsd-11-stable/lib/libc/locale/gb2312.c
/freebsd-11-stable/lib/libc/locale/gbk.c
/freebsd-11-stable/lib/libc/locale/isctype.c
/freebsd-11-stable/lib/libc/locale/iswctype.c
/freebsd-11-stable/lib/libc/locale/ldpart.c
/freebsd-11-stable/lib/libc/locale/ldpart.h
/freebsd-11-stable/lib/libc/locale/lmessages.c
/freebsd-11-stable/lib/libc/locale/lmessages.h
/freebsd-11-stable/lib/libc/locale/lmonetary.c
/freebsd-11-stable/lib/libc/locale/lmonetary.h
/freebsd-11-stable/lib/libc/locale/lnumeric.c
/freebsd-11-stable/lib/libc/locale/lnumeric.h
/freebsd-11-stable/lib/libc/locale/localeconv.c
/freebsd-11-stable/lib/libc/locale/mblen.c
/freebsd-11-stable/lib/libc/locale/mblocal.h
/freebsd-11-stable/lib/libc/locale/mbrlen.c
/freebsd-11-stable/lib/libc/locale/mbrtoc16.c
/freebsd-11-stable/lib/libc/locale/mbrtoc32.c
/freebsd-11-stable/lib/libc/locale/mbrtocXX_iconv.h
/freebsd-11-stable/lib/libc/locale/mbrtowc.c
/freebsd-11-stable/lib/libc/locale/mbsinit.c
/freebsd-11-stable/lib/libc/locale/mbsnrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbsrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbstowcs.c
/freebsd-11-stable/lib/libc/locale/mbtowc.c
/freebsd-11-stable/lib/libc/locale/mskanji.c
/freebsd-11-stable/lib/libc/locale/nextwctype.c
/freebsd-11-stable/lib/libc/locale/nl_langinfo.c
/freebsd-11-stable/lib/libc/locale/none.c
/freebsd-11-stable/lib/libc/locale/rpmatch.c
/freebsd-11-stable/lib/libc/locale/rune.c
/freebsd-11-stable/lib/libc/locale/runefile.h
/freebsd-11-stable/lib/libc/locale/runetype.c
/freebsd-11-stable/lib/libc/locale/setlocale.c
/freebsd-11-stable/lib/libc/locale/setlocale.h
/freebsd-11-stable/lib/libc/locale/setrunelocale.c
/freebsd-11-stable/lib/libc/locale/table.c
/freebsd-11-stable/lib/libc/locale/tolower.c
/freebsd-11-stable/lib/libc/locale/toupper.c
/freebsd-11-stable/lib/libc/locale/utf8.c
/freebsd-11-stable/lib/libc/locale/wcrtomb.c
/freebsd-11-stable/lib/libc/locale/wcsftime.c
/freebsd-11-stable/lib/libc/locale/wcsnrtombs.c
/freebsd-11-stable/lib/libc/locale/wcsrtombs.c
/freebsd-11-stable/lib/libc/locale/wcstod.c
/freebsd-11-stable/lib/libc/locale/wcstof.c
/freebsd-11-stable/lib/libc/locale/wcstoimax.c
/freebsd-11-stable/lib/libc/locale/wcstol.c
/freebsd-11-stable/lib/libc/locale/wcstold.c
/freebsd-11-stable/lib/libc/locale/wcstoll.c
/freebsd-11-stable/lib/libc/locale/wcstombs.c
/freebsd-11-stable/lib/libc/locale/wcstoul.c
/freebsd-11-stable/lib/libc/locale/wcstoull.c
/freebsd-11-stable/lib/libc/locale/wcstoumax.c
/freebsd-11-stable/lib/libc/locale/wctob.c
/freebsd-11-stable/lib/libc/locale/wctomb.c
/freebsd-11-stable/lib/libc/locale/wctrans.c
/freebsd-11-stable/lib/libc/locale/wctype.c
/freebsd-11-stable/lib/libc/locale/wcwidth.c
/freebsd-11-stable/lib/libc/locale/xlocale.c
/freebsd-11-stable/lib/libc/locale/xlocale_private.h
/freebsd-11-stable/lib/libc/mips/SYS.h
/freebsd-11-stable/lib/libc/mips/_fpmath.h
/freebsd-11-stable/lib/libc/mips/gen/_set_tp.c
/freebsd-11-stable/lib/libc/mips/gen/fabs.c
/freebsd-11-stable/lib/libc/mips/gen/longjmp.c
/freebsd-11-stable/lib/libc/mips/gen/makecontext.c
/freebsd-11-stable/lib/libc/mips/gen/signalcontext.c
/freebsd-11-stable/lib/libc/net/ether_addr.c
/freebsd-11-stable/lib/libc/net/gai_strerror.c
/freebsd-11-stable/lib/libc/net/getaddrinfo.c
/freebsd-11-stable/lib/libc/net/gethostbydns.c
/freebsd-11-stable/lib/libc/net/gethostbyht.c
/freebsd-11-stable/lib/libc/net/gethostbynis.c
/freebsd-11-stable/lib/libc/net/gethostnamadr.c
/freebsd-11-stable/lib/libc/net/getifmaddrs.c
/freebsd-11-stable/lib/libc/net/getnameinfo.c
/freebsd-11-stable/lib/libc/net/getnetbydns.c
/freebsd-11-stable/lib/libc/net/getnetbyht.c
/freebsd-11-stable/lib/libc/net/getnetbynis.c
/freebsd-11-stable/lib/libc/net/getnetnamadr.c
/freebsd-11-stable/lib/libc/net/getproto.c
/freebsd-11-stable/lib/libc/net/getprotoent.c
/freebsd-11-stable/lib/libc/net/getprotoname.c
/freebsd-11-stable/lib/libc/net/getservent.c
/freebsd-11-stable/lib/libc/net/ip6opt.c
/freebsd-11-stable/lib/libc/net/linkaddr.c
/freebsd-11-stable/lib/libc/net/map_v4v6.c
/freebsd-11-stable/lib/libc/net/name6.c
/freebsd-11-stable/lib/libc/net/netdb_private.h
/freebsd-11-stable/lib/libc/net/nscache.c
/freebsd-11-stable/lib/libc/net/nscachedcli.c
/freebsd-11-stable/lib/libc/net/nsdispatch.c
/freebsd-11-stable/lib/libc/net/nslexer.l
/freebsd-11-stable/lib/libc/net/nsparser.y
/freebsd-11-stable/lib/libc/net/nss_backends.h
/freebsd-11-stable/lib/libc/net/nss_compat.c
/freebsd-11-stable/lib/libc/net/ntoh.c
/freebsd-11-stable/lib/libc/net/rcmd.c
/freebsd-11-stable/lib/libc/net/rcmdsh.c
/freebsd-11-stable/lib/libc/net/recv.c
/freebsd-11-stable/lib/libc/net/rthdr.c
/freebsd-11-stable/lib/libc/net/sctp_sys_calls.c
/freebsd-11-stable/lib/libc/net/send.c
/freebsd-11-stable/lib/libc/net/sockatmark.c
/freebsd-11-stable/lib/libc/net/sourcefilter.c
/freebsd-11-stable/lib/libc/net/vars.c
/freebsd-11-stable/lib/libc/posix1e/acl_branding.c
/freebsd-11-stable/lib/libc/posix1e/acl_calc_mask.c
/freebsd-11-stable/lib/libc/posix1e/acl_compat.c
/freebsd-11-stable/lib/libc/posix1e/acl_copy.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_flag.c
/freebsd-11-stable/lib/libc/posix1e/acl_free.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_get.c
/freebsd-11-stable/lib/libc/posix1e/acl_id_to_name.c
/freebsd-11-stable/lib/libc/posix1e/acl_init.c
/freebsd-11-stable/lib/libc/posix1e/acl_perm.c
/freebsd-11-stable/lib/libc/posix1e/acl_set.c
/freebsd-11-stable/lib/libc/posix1e/acl_strip.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.h
/freebsd-11-stable/lib/libc/posix1e/acl_support_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_valid.c
/freebsd-11-stable/lib/libc/posix1e/extattr.c
/freebsd-11-stable/lib/libc/posix1e/mac.c
/freebsd-11-stable/lib/libc/posix1e/mac_exec.c
/freebsd-11-stable/lib/libc/posix1e/mac_get.c
/freebsd-11-stable/lib/libc/posix1e/mac_set.c
/freebsd-11-stable/lib/libc/powerpc/SYS.h
/freebsd-11-stable/lib/libc/powerpc/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/syncicache.c
/freebsd-11-stable/lib/libc/powerpc64/SYS.h
/freebsd-11-stable/lib/libc/powerpc64/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc64/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/syncicache.c
/freebsd-11-stable/lib/libc/quad/TESTS/divrem.c
/freebsd-11-stable/lib/libc/quad/TESTS/mul.c
/freebsd-11-stable/lib/libc/quad/adddi3.c
/freebsd-11-stable/lib/libc/quad/anddi3.c
/freebsd-11-stable/lib/libc/quad/ashldi3.c
/freebsd-11-stable/lib/libc/quad/ashrdi3.c
/freebsd-11-stable/lib/libc/quad/cmpdi2.c
/freebsd-11-stable/lib/libc/quad/divdi3.c
/freebsd-11-stable/lib/libc/quad/fixdfdi.c
/freebsd-11-stable/lib/libc/quad/fixsfdi.c
/freebsd-11-stable/lib/libc/quad/fixunsdfdi.c
/freebsd-11-stable/lib/libc/quad/fixunssfdi.c
/freebsd-11-stable/lib/libc/quad/floatdidf.c
/freebsd-11-stable/lib/libc/quad/floatdisf.c
/freebsd-11-stable/lib/libc/quad/floatunsdidf.c
/freebsd-11-stable/lib/libc/quad/iordi3.c
/freebsd-11-stable/lib/libc/quad/lshldi3.c
/freebsd-11-stable/lib/libc/quad/lshrdi3.c
/freebsd-11-stable/lib/libc/quad/moddi3.c
/freebsd-11-stable/lib/libc/quad/muldi3.c
/freebsd-11-stable/lib/libc/quad/negdi2.c
/freebsd-11-stable/lib/libc/quad/notdi2.c
/freebsd-11-stable/lib/libc/quad/qdivrem.c
/freebsd-11-stable/lib/libc/quad/quad.h
/freebsd-11-stable/lib/libc/quad/subdi3.c
/freebsd-11-stable/lib/libc/quad/ucmpdi2.c
/freebsd-11-stable/lib/libc/quad/udivdi3.c
/freebsd-11-stable/lib/libc/quad/umoddi3.c
/freebsd-11-stable/lib/libc/quad/xordi3.c
/freebsd-11-stable/lib/libc/regex/cname.h
/freebsd-11-stable/lib/libc/regex/engine.c
/freebsd-11-stable/lib/libc/regex/regcomp.c
/freebsd-11-stable/lib/libc/regex/regerror.c
/freebsd-11-stable/lib/libc/regex/regex2.h
/freebsd-11-stable/lib/libc/regex/regexec.c
/freebsd-11-stable/lib/libc/regex/regfree.c
/freebsd-11-stable/lib/libc/regex/utils.h
/freebsd-11-stable/lib/libc/resolv/h_errno.c
/freebsd-11-stable/lib/libc/resolv/herror.c
/freebsd-11-stable/lib/libc/resolv/res_comp.c
/freebsd-11-stable/lib/libc/resolv/res_debug.c
/freebsd-11-stable/lib/libc/resolv/res_init.c
/freebsd-11-stable/lib/libc/resolv/res_mkquery.c
/freebsd-11-stable/lib/libc/resolv/res_query.c
/freebsd-11-stable/lib/libc/resolv/res_send.c
/freebsd-11-stable/lib/libc/resolv/res_state.c
/freebsd-11-stable/lib/libc/rpc/auth_des.c
/freebsd-11-stable/lib/libc/rpc/auth_none.c
/freebsd-11-stable/lib/libc/rpc/auth_unix.c
/freebsd-11-stable/lib/libc/rpc/authdes_prot.c
/freebsd-11-stable/lib/libc/rpc/authunix_prot.c
/freebsd-11-stable/lib/libc/rpc/bindresvport.c
/freebsd-11-stable/lib/libc/rpc/clnt_bcast.c
/freebsd-11-stable/lib/libc/rpc/clnt_dg.c
/freebsd-11-stable/lib/libc/rpc/clnt_generic.c
/freebsd-11-stable/lib/libc/rpc/clnt_perror.c
/freebsd-11-stable/lib/libc/rpc/clnt_raw.c
/freebsd-11-stable/lib/libc/rpc/clnt_simple.c
/freebsd-11-stable/lib/libc/rpc/clnt_vc.c
/freebsd-11-stable/lib/libc/rpc/crypt_client.c
/freebsd-11-stable/lib/libc/rpc/des_crypt.c
/freebsd-11-stable/lib/libc/rpc/des_soft.c
/freebsd-11-stable/lib/libc/rpc/getnetconfig.c
/freebsd-11-stable/lib/libc/rpc/getnetpath.c
/freebsd-11-stable/lib/libc/rpc/getpublickey.c
/freebsd-11-stable/lib/libc/rpc/getrpcent.c
/freebsd-11-stable/lib/libc/rpc/getrpcport.c
/freebsd-11-stable/lib/libc/rpc/key_call.c
/freebsd-11-stable/lib/libc/rpc/key_prot_xdr.c
/freebsd-11-stable/lib/libc/rpc/mt_misc.h
/freebsd-11-stable/lib/libc/rpc/netname.c
/freebsd-11-stable/lib/libc/rpc/netnamer.c
/freebsd-11-stable/lib/libc/rpc/pmap_clnt.c
/freebsd-11-stable/lib/libc/rpc/pmap_getmaps.c
/freebsd-11-stable/lib/libc/rpc/pmap_getport.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot2.c
/freebsd-11-stable/lib/libc/rpc/pmap_rmt.c
/freebsd-11-stable/lib/libc/rpc/rpc_callmsg.c
/freebsd-11-stable/lib/libc/rpc/rpc_com.h
/freebsd-11-stable/lib/libc/rpc/rpc_commondata.c
/freebsd-11-stable/lib/libc/rpc/rpc_dtablesize.c
/freebsd-11-stable/lib/libc/rpc/rpc_generic.c
/freebsd-11-stable/lib/libc/rpc/rpc_prot.c
/freebsd-11-stable/lib/libc/rpc/rpc_soc.c
/freebsd-11-stable/lib/libc/rpc/rpcb_clnt.c
/freebsd-11-stable/lib/libc/rpc/rpcb_prot.c
/freebsd-11-stable/lib/libc/rpc/rpcb_st_xdr.c
/freebsd-11-stable/lib/libc/rpc/rpcdname.c
/freebsd-11-stable/lib/libc/rpc/rpcsec_gss_stub.c
/freebsd-11-stable/lib/libc/rpc/rtime.c
/freebsd-11-stable/lib/libc/rpc/svc.c
/freebsd-11-stable/lib/libc/rpc/svc_auth.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_des.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_unix.c
/freebsd-11-stable/lib/libc/rpc/svc_dg.c
/freebsd-11-stable/lib/libc/rpc/svc_generic.c
/freebsd-11-stable/lib/libc/rpc/svc_raw.c
/freebsd-11-stable/lib/libc/rpc/svc_run.c
/freebsd-11-stable/lib/libc/rpc/svc_simple.c
/freebsd-11-stable/lib/libc/rpc/svc_vc.c
/freebsd-11-stable/lib/libc/softfloat/fpgetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpgetround.c
/freebsd-11-stable/lib/libc/softfloat/fpgetsticky.c
/freebsd-11-stable/lib/libc/softfloat/fpsetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpsetround.c
/freebsd-11-stable/lib/libc/softfloat/fpsetsticky.c
/freebsd-11-stable/lib/libc/sparc64/SYS.h
/freebsd-11-stable/lib/libc/sparc64/_fpmath.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_add.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_arith.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_compare.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_emu.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_extern.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_qp.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_reg.h
/freebsd-11-stable/lib/libc/sparc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/sparc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/sparc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_sigtramp_setup.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_align.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_emul.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_install.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_private.h
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_setup.c
/freebsd-11-stable/lib/libc/stdio/_flock_stub.c
/freebsd-11-stable/lib/libc/stdio/asprintf.c
/freebsd-11-stable/lib/libc/stdio/clrerr.c
/freebsd-11-stable/lib/libc/stdio/dprintf.c
/freebsd-11-stable/lib/libc/stdio/fclose.c
/freebsd-11-stable/lib/libc/stdio/fcloseall.c
/freebsd-11-stable/lib/libc/stdio/fdopen.c
/freebsd-11-stable/lib/libc/stdio/feof.c
/freebsd-11-stable/lib/libc/stdio/ferror.c
/freebsd-11-stable/lib/libc/stdio/fflush.c
/freebsd-11-stable/lib/libc/stdio/fgetc.c
/freebsd-11-stable/lib/libc/stdio/fgetln.c
/freebsd-11-stable/lib/libc/stdio/fgetpos.c
/freebsd-11-stable/lib/libc/stdio/fgets.c
/freebsd-11-stable/lib/libc/stdio/fgetwc.c
/freebsd-11-stable/lib/libc/stdio/fgetwln.c
/freebsd-11-stable/lib/libc/stdio/fgetws.c
/freebsd-11-stable/lib/libc/stdio/fileno.c
/freebsd-11-stable/lib/libc/stdio/findfp.c
/freebsd-11-stable/lib/libc/stdio/flags.c
/freebsd-11-stable/lib/libc/stdio/floatio.h
/freebsd-11-stable/lib/libc/stdio/fmemopen.c
/freebsd-11-stable/lib/libc/stdio/fopen.c
/freebsd-11-stable/lib/libc/stdio/fprintf.c
/freebsd-11-stable/lib/libc/stdio/fpurge.c
/freebsd-11-stable/lib/libc/stdio/fputc.c
/freebsd-11-stable/lib/libc/stdio/fputs.c
/freebsd-11-stable/lib/libc/stdio/fputwc.c
/freebsd-11-stable/lib/libc/stdio/fputws.c
/freebsd-11-stable/lib/libc/stdio/fread.c
/freebsd-11-stable/lib/libc/stdio/freopen.c
/freebsd-11-stable/lib/libc/stdio/fscanf.c
/freebsd-11-stable/lib/libc/stdio/fseek.c
/freebsd-11-stable/lib/libc/stdio/fsetpos.c
/freebsd-11-stable/lib/libc/stdio/ftell.c
/freebsd-11-stable/lib/libc/stdio/funopen.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.h
/freebsd-11-stable/lib/libc/stdio/fwalk.c
/freebsd-11-stable/lib/libc/stdio/fwide.c
/freebsd-11-stable/lib/libc/stdio/fwprintf.c
/freebsd-11-stable/lib/libc/stdio/fwrite.c
/freebsd-11-stable/lib/libc/stdio/fwscanf.c
/freebsd-11-stable/lib/libc/stdio/getc.c
/freebsd-11-stable/lib/libc/stdio/getchar.c
/freebsd-11-stable/lib/libc/stdio/getdelim.c
/freebsd-11-stable/lib/libc/stdio/getline.c
/freebsd-11-stable/lib/libc/stdio/gets.c
/freebsd-11-stable/lib/libc/stdio/getw.c
/freebsd-11-stable/lib/libc/stdio/getwc.c
/freebsd-11-stable/lib/libc/stdio/getwchar.c
/freebsd-11-stable/lib/libc/stdio/glue.h
/freebsd-11-stable/lib/libc/stdio/local.h
/freebsd-11-stable/lib/libc/stdio/makebuf.c
/freebsd-11-stable/lib/libc/stdio/mktemp.c
/freebsd-11-stable/lib/libc/stdio/open_memstream.c
/freebsd-11-stable/lib/libc/stdio/open_wmemstream.c
/freebsd-11-stable/lib/libc/stdio/perror.c
/freebsd-11-stable/lib/libc/stdio/printf-pos.c
/freebsd-11-stable/lib/libc/stdio/printf.c
/freebsd-11-stable/lib/libc/stdio/printfcommon.h
/freebsd-11-stable/lib/libc/stdio/printflocal.h
/freebsd-11-stable/lib/libc/stdio/putc.c
/freebsd-11-stable/lib/libc/stdio/putchar.c
/freebsd-11-stable/lib/libc/stdio/puts.c
/freebsd-11-stable/lib/libc/stdio/putw.c
/freebsd-11-stable/lib/libc/stdio/putwc.c
/freebsd-11-stable/lib/libc/stdio/putwchar.c
/freebsd-11-stable/lib/libc/stdio/refill.c
/freebsd-11-stable/lib/libc/stdio/remove.c
/freebsd-11-stable/lib/libc/stdio/rewind.c
/freebsd-11-stable/lib/libc/stdio/rget.c
/freebsd-11-stable/lib/libc/stdio/scanf.c
/freebsd-11-stable/lib/libc/stdio/setbuf.c
/freebsd-11-stable/lib/libc/stdio/setbuffer.c
/freebsd-11-stable/lib/libc/stdio/setvbuf.c
/freebsd-11-stable/lib/libc/stdio/snprintf.c
/freebsd-11-stable/lib/libc/stdio/sprintf.c
/freebsd-11-stable/lib/libc/stdio/sscanf.c
/freebsd-11-stable/lib/libc/stdio/stdio.c
/freebsd-11-stable/lib/libc/stdio/swprintf.c
/freebsd-11-stable/lib/libc/stdio/swscanf.c
/freebsd-11-stable/lib/libc/stdio/tempnam.c
/freebsd-11-stable/lib/libc/stdio/tmpfile.c
/freebsd-11-stable/lib/libc/stdio/tmpnam.c
/freebsd-11-stable/lib/libc/stdio/ungetc.c
/freebsd-11-stable/lib/libc/stdio/ungetwc.c
/freebsd-11-stable/lib/libc/stdio/vasprintf.c
/freebsd-11-stable/lib/libc/stdio/vdprintf.c
/freebsd-11-stable/lib/libc/stdio/vfprintf.c
/freebsd-11-stable/lib/libc/stdio/vfscanf.c
/freebsd-11-stable/lib/libc/stdio/vfwprintf.c
/freebsd-11-stable/lib/libc/stdio/vfwscanf.c
/freebsd-11-stable/lib/libc/stdio/vprintf.c
/freebsd-11-stable/lib/libc/stdio/vscanf.c
/freebsd-11-stable/lib/libc/stdio/vsnprintf.c
/freebsd-11-stable/lib/libc/stdio/vsprintf.c
/freebsd-11-stable/lib/libc/stdio/vsscanf.c
/freebsd-11-stable/lib/libc/stdio/vswprintf.c
/freebsd-11-stable/lib/libc/stdio/vswscanf.c
/freebsd-11-stable/lib/libc/stdio/vwprintf.c
/freebsd-11-stable/lib/libc/stdio/vwscanf.c
/freebsd-11-stable/lib/libc/stdio/wbuf.c
/freebsd-11-stable/lib/libc/stdio/wprintf.c
/freebsd-11-stable/lib/libc/stdio/wscanf.c
/freebsd-11-stable/lib/libc/stdio/wsetup.c
/freebsd-11-stable/lib/libc/stdio/xprintf.c
/freebsd-11-stable/lib/libc/stdio/xprintf_errno.c
/freebsd-11-stable/lib/libc/stdio/xprintf_float.c
/freebsd-11-stable/lib/libc/stdio/xprintf_hexdump.c
/freebsd-11-stable/lib/libc/stdio/xprintf_int.c
/freebsd-11-stable/lib/libc/stdio/xprintf_quote.c
/freebsd-11-stable/lib/libc/stdio/xprintf_str.c
/freebsd-11-stable/lib/libc/stdio/xprintf_time.c
/freebsd-11-stable/lib/libc/stdio/xprintf_vis.c
/freebsd-11-stable/lib/libc/stdlib/abort.c
/freebsd-11-stable/lib/libc/stdlib/abs.c
/freebsd-11-stable/lib/libc/stdlib/atexit.c
/freebsd-11-stable/lib/libc/stdlib/atexit.h
/freebsd-11-stable/lib/libc/stdlib/atof.c
/freebsd-11-stable/lib/libc/stdlib/atoi.c
/freebsd-11-stable/lib/libc/stdlib/atol.c
/freebsd-11-stable/lib/libc/stdlib/atoll.c
/freebsd-11-stable/lib/libc/stdlib/bsearch.c
/freebsd-11-stable/lib/libc/stdlib/div.c
/freebsd-11-stable/lib/libc/stdlib/exit.c
/freebsd-11-stable/lib/libc/stdlib/getenv.c
/freebsd-11-stable/lib/libc/stdlib/getopt.c
/freebsd-11-stable/lib/libc/stdlib/getsubopt.c
/freebsd-11-stable/lib/libc/stdlib/hcreate.c
/freebsd-11-stable/lib/libc/stdlib/heapsort.c
/freebsd-11-stable/lib/libc/stdlib/imaxabs.c
/freebsd-11-stable/lib/libc/stdlib/imaxdiv.c
/freebsd-11-stable/lib/libc/stdlib/labs.c
/freebsd-11-stable/lib/libc/stdlib/ldiv.c
/freebsd-11-stable/lib/libc/stdlib/llabs.c
/freebsd-11-stable/lib/libc/stdlib/lldiv.c
/freebsd-11-stable/lib/libc/stdlib/merge.c
/freebsd-11-stable/lib/libc/stdlib/ptsname.c
/freebsd-11-stable/lib/libc/stdlib/qsort.c
/freebsd-11-stable/lib/libc/stdlib/quick_exit.c
/freebsd-11-stable/lib/libc/stdlib/radixsort.c
/freebsd-11-stable/lib/libc/stdlib/rand.c
/freebsd-11-stable/lib/libc/stdlib/random.c
/freebsd-11-stable/lib/libc/stdlib/reallocf.c
/freebsd-11-stable/lib/libc/stdlib/realpath.c
/freebsd-11-stable/lib/libc/stdlib/strfmon.c
/freebsd-11-stable/lib/libc/stdlib/strtoimax.c
/freebsd-11-stable/lib/libc/stdlib/strtol.c
/freebsd-11-stable/lib/libc/stdlib/strtoll.c
/freebsd-11-stable/lib/libc/stdlib/strtoq.c
/freebsd-11-stable/lib/libc/stdlib/strtoul.c
/freebsd-11-stable/lib/libc/stdlib/strtoull.c
/freebsd-11-stable/lib/libc/stdlib/strtoumax.c
/freebsd-11-stable/lib/libc/stdlib/strtouq.c
/freebsd-11-stable/lib/libc/stdlib/system.c
/freebsd-11-stable/lib/libc/stdtime/strptime.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.h
/freebsd-11-stable/lib/libc/string/bcmp.c
/freebsd-11-stable/lib/libc/string/bcopy.c
/freebsd-11-stable/lib/libc/string/ffs.c
/freebsd-11-stable/lib/libc/string/ffsl.c
/freebsd-11-stable/lib/libc/string/ffsll.c
/freebsd-11-stable/lib/libc/string/fls.c
/freebsd-11-stable/lib/libc/string/flsl.c
/freebsd-11-stable/lib/libc/string/flsll.c
/freebsd-11-stable/lib/libc/string/memccpy.c
/freebsd-11-stable/lib/libc/string/memchr.c
/freebsd-11-stable/lib/libc/string/memcmp.c
/freebsd-11-stable/lib/libc/string/memmem.c
/freebsd-11-stable/lib/libc/string/memset.c
/freebsd-11-stable/lib/libc/string/stpcpy.c
/freebsd-11-stable/lib/libc/string/stpncpy.c
/freebsd-11-stable/lib/libc/string/strcasecmp.c
/freebsd-11-stable/lib/libc/string/strcasestr.c
/freebsd-11-stable/lib/libc/string/strcat.c
/freebsd-11-stable/lib/libc/string/strchr.c
/freebsd-11-stable/lib/libc/string/strchrnul.c
/freebsd-11-stable/lib/libc/string/strcmp.c
/freebsd-11-stable/lib/libc/string/strcoll.c
/freebsd-11-stable/lib/libc/string/strcpy.c
/freebsd-11-stable/lib/libc/string/strcspn.c
/freebsd-11-stable/lib/libc/string/strdup.c
/freebsd-11-stable/lib/libc/string/strerror.c
/freebsd-11-stable/lib/libc/string/strlen.c
/freebsd-11-stable/lib/libc/string/strmode.c
/freebsd-11-stable/lib/libc/string/strncat.c
/freebsd-11-stable/lib/libc/string/strncmp.c
/freebsd-11-stable/lib/libc/string/strncpy.c
/freebsd-11-stable/lib/libc/string/strnlen.c
/freebsd-11-stable/lib/libc/string/strnstr.c
/freebsd-11-stable/lib/libc/string/strpbrk.c
/freebsd-11-stable/lib/libc/string/strrchr.c
/freebsd-11-stable/lib/libc/string/strsep.c
/freebsd-11-stable/lib/libc/string/strsignal.c
/freebsd-11-stable/lib/libc/string/strspn.c
/freebsd-11-stable/lib/libc/string/strstr.c
/freebsd-11-stable/lib/libc/string/strtok.c
/freebsd-11-stable/lib/libc/string/strxfrm.c
/freebsd-11-stable/lib/libc/string/swab.c
/freebsd-11-stable/lib/libc/string/wcpcpy.c
/freebsd-11-stable/lib/libc/string/wcpncpy.c
/freebsd-11-stable/lib/libc/string/wcscasecmp.c
/freebsd-11-stable/lib/libc/string/wcscat.c
/freebsd-11-stable/lib/libc/string/wcschr.c
/freebsd-11-stable/lib/libc/string/wcscmp.c
/freebsd-11-stable/lib/libc/string/wcscoll.c
/freebsd-11-stable/lib/libc/string/wcscpy.c
/freebsd-11-stable/lib/libc/string/wcscspn.c
/freebsd-11-stable/lib/libc/string/wcsdup.c
/freebsd-11-stable/lib/libc/string/wcslcat.c
/freebsd-11-stable/lib/libc/string/wcslcpy.c
/freebsd-11-stable/lib/libc/string/wcslen.c
/freebsd-11-stable/lib/libc/string/wcsncasecmp.c
/freebsd-11-stable/lib/libc/string/wcsncat.c
/freebsd-11-stable/lib/libc/string/wcsncmp.c
/freebsd-11-stable/lib/libc/string/wcsncpy.c
/freebsd-11-stable/lib/libc/string/wcsnlen.c
/freebsd-11-stable/lib/libc/string/wcspbrk.c
/freebsd-11-stable/lib/libc/string/wcsrchr.c
/freebsd-11-stable/lib/libc/string/wcsspn.c
/freebsd-11-stable/lib/libc/string/wcsstr.c
/freebsd-11-stable/lib/libc/string/wcstok.c
/freebsd-11-stable/lib/libc/string/wcswidth.c
/freebsd-11-stable/lib/libc/string/wcsxfrm.c
/freebsd-11-stable/lib/libc/string/wmemchr.c
/freebsd-11-stable/lib/libc/string/wmemcmp.c
/freebsd-11-stable/lib/libc/string/wmemcpy.c
/freebsd-11-stable/lib/libc/string/wmemmove.c
/freebsd-11-stable/lib/libc/string/wmemset.c
/freebsd-11-stable/lib/libc/sys/__error.c
/freebsd-11-stable/lib/libc/sys/__vdso_gettimeofday.c
/freebsd-11-stable/lib/libc/sys/clock_gettime.c
/freebsd-11-stable/lib/libc/sys/fcntl.c
/freebsd-11-stable/lib/libc/sys/gettimeofday.c
/freebsd-11-stable/lib/libc/sys/sigwait.c
/freebsd-11-stable/lib/libc/uuid/uuid_compare.c
/freebsd-11-stable/lib/libc/uuid/uuid_create.c
/freebsd-11-stable/lib/libc/uuid/uuid_create_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_equal.c
/freebsd-11-stable/lib/libc/uuid/uuid_from_string.c
/freebsd-11-stable/lib/libc/uuid/uuid_hash.c
/freebsd-11-stable/lib/libc/uuid/uuid_is_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_stream.c
/freebsd-11-stable/lib/libc/uuid/uuid_to_string.c
/freebsd-11-stable/lib/libc/xdr/xdr.c
/freebsd-11-stable/lib/libc/xdr/xdr_array.c
/freebsd-11-stable/lib/libc/xdr/xdr_float.c
/freebsd-11-stable/lib/libc/xdr/xdr_mem.c
/freebsd-11-stable/lib/libc/xdr/xdr_rec.c
/freebsd-11-stable/lib/libc/xdr/xdr_reference.c
/freebsd-11-stable/lib/libc/xdr/xdr_sizeof.c
/freebsd-11-stable/lib/libc/xdr/xdr_stdio.c
/freebsd-11-stable/lib/libc/yp/xdryp.c
/freebsd-11-stable/lib/libc/yp/yplib.c
/freebsd-11-stable/lib/libc_nonshared/__stub.c
/freebsd-11-stable/lib/libcalendar/calendar.c
/freebsd-11-stable/lib/libcalendar/calendar.h
/freebsd-11-stable/lib/libcalendar/easter.c
/freebsd-11-stable/lib/libcam/camlib.c
/freebsd-11-stable/lib/libcam/camlib.h
/freebsd-11-stable/lib/libcam/scsi_cmdparse.c
/freebsd-11-stable/lib/libcompat/4.1/ftime.c
/freebsd-11-stable/lib/libcompat/4.3/re_comp.c
/freebsd-11-stable/lib/libcompat/4.3/rexec.c
/freebsd-11-stable/lib/libcompat/4.4/cuserid.c
/freebsd-11-stable/lib/libcrypt/crypt-md5.c
/freebsd-11-stable/lib/libcrypt/crypt-nthash.c
/freebsd-11-stable/lib/libcrypt/crypt-sha256.c
/freebsd-11-stable/lib/libcrypt/crypt-sha512.c
/freebsd-11-stable/lib/libcrypt/crypt.c
/freebsd-11-stable/lib/libcrypt/crypt.h
/freebsd-11-stable/lib/libcrypt/misc.c
/freebsd-11-stable/lib/libdevinfo/devinfo.c
/freebsd-11-stable/lib/libdevinfo/devinfo.h
/freebsd-11-stable/lib/libdevinfo/devinfo_var.h
/freebsd-11-stable/lib/libdevstat/devstat.c
/freebsd-11-stable/lib/libdevstat/devstat.h
/freebsd-11-stable/lib/libfetch/common.c
/freebsd-11-stable/lib/libfetch/common.h
/freebsd-11-stable/lib/libfetch/fetch.c
/freebsd-11-stable/lib/libfetch/fetch.h
/freebsd-11-stable/lib/libfetch/file.c
/freebsd-11-stable/lib/libfetch/ftp.c
/freebsd-11-stable/lib/libfetch/http.c
/freebsd-11-stable/lib/libgeom/geom_ctl.c
/freebsd-11-stable/lib/libgeom/geom_getxml.c
/freebsd-11-stable/lib/libgeom/geom_stats.c
/freebsd-11-stable/lib/libgeom/geom_util.c
/freebsd-11-stable/lib/libgeom/geom_xml2tree.c
/freebsd-11-stable/lib/libgeom/libgeom.h
/freebsd-11-stable/lib/libgssapi/context.h
/freebsd-11-stable/lib/libgssapi/cred.h
/freebsd-11-stable/lib/libgssapi/gss_accept_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_acquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_buffer_set.c
/freebsd-11-stable/lib/libgssapi/gss_canonicalize_name.c
/freebsd-11-stable/lib/libgssapi/gss_compare_name.c
/freebsd-11-stable/lib/libgssapi/gss_context_time.c
/freebsd-11-stable/lib/libgssapi/gss_create_empty_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_decapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_delete_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_display_name.c
/freebsd-11-stable/lib/libgssapi/gss_display_status.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_name.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_oid.c
/freebsd-11-stable/lib/libgssapi/gss_encapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_export_name.c
/freebsd-11-stable/lib/libgssapi/gss_export_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_get_mic.c
/freebsd-11-stable/lib/libgssapi/gss_import_name.c
/freebsd-11-stable/lib/libgssapi/gss_import_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_indicate_mechs.c
/freebsd-11-stable/lib/libgssapi/gss_init_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_mechs_for_name.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_names_for_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_sec_context_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_krb5.c
/freebsd-11-stable/lib/libgssapi/gss_mech_switch.c
/freebsd-11-stable/lib/libgssapi/gss_names.c
/freebsd-11-stable/lib/libgssapi/gss_oid_to_str.c
/freebsd-11-stable/lib/libgssapi/gss_pname_to_uid.c
/freebsd-11-stable/lib/libgssapi/gss_process_context_token.c
/freebsd-11-stable/lib/libgssapi/gss_pseudo_random.c
/freebsd-11-stable/lib/libgssapi/gss_release_buffer.c
/freebsd-11-stable/lib/libgssapi/gss_release_cred.c
/freebsd-11-stable/lib/libgssapi/gss_release_name.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_seal.c
/freebsd-11-stable/lib/libgssapi/gss_set_cred_option.c
/freebsd-11-stable/lib/libgssapi/gss_set_sec_context_option.c
/freebsd-11-stable/lib/libgssapi/gss_sign.c
/freebsd-11-stable/lib/libgssapi/gss_test_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_unseal.c
/freebsd-11-stable/lib/libgssapi/gss_unwrap.c
/freebsd-11-stable/lib/libgssapi/gss_utils.c
/freebsd-11-stable/lib/libgssapi/gss_verify.c
/freebsd-11-stable/lib/libgssapi/gss_verify_mic.c
/freebsd-11-stable/lib/libgssapi/gss_wrap.c
/freebsd-11-stable/lib/libgssapi/gss_wrap_size_limit.c
/freebsd-11-stable/lib/libgssapi/mech_switch.h
/freebsd-11-stable/lib/libgssapi/name.h
/freebsd-11-stable/lib/libgssapi/spnego.h
/freebsd-11-stable/lib/libgssapi/utils.h
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.c
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.h
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.h
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.c
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.h
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.c
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.h
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.c
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.h
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.c
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.h
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.c
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.h
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.c
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.h
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.c
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.h
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.c
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.h
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.c
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.h
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.c
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.h
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.c
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.h
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.c
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.h
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.c
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.h
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.c
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.c
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.c
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.h
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.c
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.h
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.c
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.c
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_file.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.h
/freebsd-11-stable/lib/libipsec/ipsec_dump_policy.c
/freebsd-11-stable/lib/libipsec/ipsec_get_policylen.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.h
/freebsd-11-stable/lib/libipsec/libpfkey.h
/freebsd-11-stable/lib/libipsec/pfkey.c
/freebsd-11-stable/lib/libipsec/pfkey_dump.c
/freebsd-11-stable/lib/libipsec/policy_parse.y
/freebsd-11-stable/lib/libipsec/policy_token.l
/freebsd-11-stable/lib/libipsec/test-policy.c
/freebsd-11-stable/lib/libjail/jail.c
/freebsd-11-stable/lib/libjail/jail.h
/freebsd-11-stable/lib/libjail/jail_getid.c
/freebsd-11-stable/lib/libkiconv/kiconv_sysctl.c
/freebsd-11-stable/lib/libkiconv/quirks.c
/freebsd-11-stable/lib/libkiconv/quirks.h
/freebsd-11-stable/lib/libkiconv/xlat16_iconv.c
/freebsd-11-stable/lib/libkiconv/xlat16_sysctl.c
/freebsd-11-stable/lib/libkvm/kvm.c
/freebsd-11-stable/lib/libkvm/kvm.h
/freebsd-11-stable/lib/libkvm/kvm_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_arm.c
/freebsd-11-stable/lib/libkvm/kvm_cptime.c
/freebsd-11-stable/lib/libkvm/kvm_getloadavg.c
/freebsd-11-stable/lib/libkvm/kvm_getswapinfo.c
/freebsd-11-stable/lib/libkvm/kvm_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_arm.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_mips.c
/freebsd-11-stable/lib/libkvm/kvm_pcpu.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc64.c
/freebsd-11-stable/lib/libkvm/kvm_private.h
/freebsd-11-stable/lib/libkvm/kvm_proc.c
/freebsd-11-stable/lib/libkvm/kvm_sparc64.c
/freebsd-11-stable/lib/libkvm/kvm_vnet.c
/freebsd-11-stable/lib/libmemstat/memstat.c
/freebsd-11-stable/lib/libmemstat/memstat.h
/freebsd-11-stable/lib/libmemstat/memstat_all.c
/freebsd-11-stable/lib/libmemstat/memstat_internal.h
/freebsd-11-stable/lib/libmemstat/memstat_malloc.c
/freebsd-11-stable/lib/libmemstat/memstat_uma.c
/freebsd-11-stable/lib/libmp/mpasbn.c
/freebsd-11-stable/lib/libnandfs/libnandfs.h
/freebsd-11-stable/lib/libnandfs/nandfs.c
/freebsd-11-stable/lib/libnetbsd/rmd160.h
/freebsd-11-stable/lib/libnetbsd/sha1.h
/freebsd-11-stable/lib/libnetbsd/sha2.h
/freebsd-11-stable/lib/libnetbsd/stdlib.h
/freebsd-11-stable/lib/libnetbsd/strsuftoll.c
/freebsd-11-stable/lib/libnetbsd/sys/cdefs.h
/freebsd-11-stable/lib/libnetbsd/util.c
/freebsd-11-stable/lib/libnetbsd/util.h
/freebsd-11-stable/lib/libnv/common_impl.h
/freebsd-11-stable/lib/libnv/msgio.c
/freebsd-11-stable/lib/libnv/msgio.h
/freebsd-11-stable/lib/libpam/libpam/security/pam_mod_misc.h
/freebsd-11-stable/lib/libpam/modules/pam_chroot/pam_chroot.c
/freebsd-11-stable/lib/libpam/modules/pam_deny/pam_deny.c
/freebsd-11-stable/lib/libpam/modules/pam_echo/pam_echo.c
/freebsd-11-stable/lib/libpam/modules/pam_exec/pam_exec.c
/freebsd-11-stable/lib/libpam/modules/pam_ftpusers/pam_ftpusers.c
/freebsd-11-stable/lib/libpam/modules/pam_group/pam_group.c
/freebsd-11-stable/lib/libpam/modules/pam_guest/pam_guest.c
/freebsd-11-stable/lib/libpam/modules/pam_ksu/pam_ksu.c
/freebsd-11-stable/lib/libpam/modules/pam_lastlog/pam_lastlog.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.h
/freebsd-11-stable/lib/libpam/modules/pam_nologin/pam_nologin.c
/freebsd-11-stable/lib/libpam/modules/pam_opie/pam_opie.c
/freebsd-11-stable/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c
/freebsd-11-stable/lib/libpam/modules/pam_permit/pam_permit.c
/freebsd-11-stable/lib/libpam/modules/pam_radius/pam_radius.c
/freebsd-11-stable/lib/libpam/modules/pam_rhosts/pam_rhosts.c
/freebsd-11-stable/lib/libpam/modules/pam_rootok/pam_rootok.c
/freebsd-11-stable/lib/libpam/modules/pam_securetty/pam_securetty.c
/freebsd-11-stable/lib/libpam/modules/pam_self/pam_self.c
/freebsd-11-stable/lib/libpam/modules/pam_ssh/pam_ssh.c
/freebsd-11-stable/lib/libpam/modules/pam_tacplus/pam_tacplus.c
/freebsd-11-stable/lib/libpam/modules/pam_unix/pam_unix.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.h
/freebsd-11-stable/lib/libpmc/libpmc.c
/freebsd-11-stable/lib/libpmc/libpmcinternal.h
/freebsd-11-stable/lib/libpmc/pmc.h
/freebsd-11-stable/lib/libpmc/pmclog.c
/freebsd-11-stable/lib/libpmc/pmclog.h
/freebsd-11-stable/lib/libprocstat/cd9660.c
/freebsd-11-stable/lib/libprocstat/common_kvm.c
/freebsd-11-stable/lib/libprocstat/common_kvm.h
/freebsd-11-stable/lib/libprocstat/core.c
/freebsd-11-stable/lib/libprocstat/core.h
/freebsd-11-stable/lib/libprocstat/libprocstat.c
/freebsd-11-stable/lib/libprocstat/libprocstat.h
/freebsd-11-stable/lib/libprocstat/libprocstat_internal.h
/freebsd-11-stable/lib/libprocstat/msdosfs.c
/freebsd-11-stable/lib/libprocstat/smbfs.c
/freebsd-11-stable/lib/libprocstat/udf.c
/freebsd-11-stable/lib/libprocstat/zfs.c
/freebsd-11-stable/lib/libradius/radlib.c
/freebsd-11-stable/lib/libradius/radlib.h
/freebsd-11-stable/lib/libradius/radlib_private.h
/freebsd-11-stable/lib/libradius/radlib_vs.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_conf.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_misc.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/lib/librpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/lib/librpcsvc/yp_passwd.c
/freebsd-11-stable/lib/librpcsvc/yp_update.c
/freebsd-11-stable/lib/librt/aio.c
/freebsd-11-stable/lib/librt/mq.c
/freebsd-11-stable/lib/librt/sigev_thread.c
/freebsd-11-stable/lib/librt/sigev_thread.h
/freebsd-11-stable/lib/librt/timer.c
/freebsd-11-stable/lib/librtld_db/rtld_db.c
/freebsd-11-stable/lib/librtld_db/rtld_db.h
/freebsd-11-stable/lib/libsdp/sdp-int.h
/freebsd-11-stable/lib/libsdp/sdp.h
/freebsd-11-stable/lib/libsdp/search.c
/freebsd-11-stable/lib/libsdp/service.c
/freebsd-11-stable/lib/libsdp/session.c
/freebsd-11-stable/lib/libsdp/util.c
/freebsd-11-stable/lib/libstdbuf/stdbuf.c
/freebsd-11-stable/lib/libstdthreads/call_once.c
/freebsd-11-stable/lib/libstdthreads/cnd.c
/freebsd-11-stable/lib/libstdthreads/mtx.c
/freebsd-11-stable/lib/libstdthreads/thrd.c
/freebsd-11-stable/lib/libstdthreads/threads.h
/freebsd-11-stable/lib/libstdthreads/tss.c
/freebsd-11-stable/lib/libtacplus/taclib.c
/freebsd-11-stable/lib/libtacplus/taclib.h
/freebsd-11-stable/lib/libtacplus/taclib_private.h
/freebsd-11-stable/lib/libthr/arch/amd64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/arm/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/i386/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/mips/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/powerpc/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/sparc64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/sys/thr_error.c
/freebsd-11-stable/lib/libthr/thread/thr_affinity.c
/freebsd-11-stable/lib/libthr/thread/thr_attr.c
/freebsd-11-stable/lib/libthr/thread/thr_autoinit.c
/freebsd-11-stable/lib/libthr/thread/thr_barrier.c
/freebsd-11-stable/lib/libthr/thread/thr_barrierattr.c
/freebsd-11-stable/lib/libthr/thread/thr_cancel.c
/freebsd-11-stable/lib/libthr/thread/thr_clean.c
/freebsd-11-stable/lib/libthr/thread/thr_concurrency.c
/freebsd-11-stable/lib/libthr/thread/thr_cond.c
/freebsd-11-stable/lib/libthr/thread/thr_condattr.c
/freebsd-11-stable/lib/libthr/thread/thr_create.c
/freebsd-11-stable/lib/libthr/thread/thr_detach.c
/freebsd-11-stable/lib/libthr/thread/thr_equal.c
/freebsd-11-stable/lib/libthr/thread/thr_event.c
/freebsd-11-stable/lib/libthr/thread/thr_exit.c
/freebsd-11-stable/lib/libthr/thread/thr_fork.c
/freebsd-11-stable/lib/libthr/thread/thr_getcpuclockid.c
/freebsd-11-stable/lib/libthr/thread/thr_getprio.c
/freebsd-11-stable/lib/libthr/thread/thr_getschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_getthreadid_np.c
/freebsd-11-stable/lib/libthr/thread/thr_info.c
/freebsd-11-stable/lib/libthr/thread/thr_init.c
/freebsd-11-stable/lib/libthr/thread/thr_join.c
/freebsd-11-stable/lib/libthr/thread/thr_kern.c
/freebsd-11-stable/lib/libthr/thread/thr_kill.c
/freebsd-11-stable/lib/libthr/thread/thr_list.c
/freebsd-11-stable/lib/libthr/thread/thr_main_np.c
/freebsd-11-stable/lib/libthr/thread/thr_multi_np.c
/freebsd-11-stable/lib/libthr/thread/thr_mutex.c
/freebsd-11-stable/lib/libthr/thread/thr_mutexattr.c
/freebsd-11-stable/lib/libthr/thread/thr_once.c
/freebsd-11-stable/lib/libthr/thread/thr_printf.c
/freebsd-11-stable/lib/libthr/thread/thr_private.h
/freebsd-11-stable/lib/libthr/thread/thr_pspinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_resume_np.c
/freebsd-11-stable/lib/libthr/thread/thr_rtld.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlock.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlockattr.c
/freebsd-11-stable/lib/libthr/thread/thr_self.c
/freebsd-11-stable/lib/libthr/thread/thr_sem.c
/freebsd-11-stable/lib/libthr/thread/thr_setprio.c
/freebsd-11-stable/lib/libthr/thread/thr_setschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_sig.c
/freebsd-11-stable/lib/libthr/thread/thr_single_np.c
/freebsd-11-stable/lib/libthr/thread/thr_sleepq.c
/freebsd-11-stable/lib/libthr/thread/thr_spec.c
/freebsd-11-stable/lib/libthr/thread/thr_spinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_stack.c
/freebsd-11-stable/lib/libthr/thread/thr_suspend_np.c
/freebsd-11-stable/lib/libthr/thread/thr_switch_np.c
/freebsd-11-stable/lib/libthr/thread/thr_symbols.c
/freebsd-11-stable/lib/libthr/thread/thr_syscalls.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.h
/freebsd-11-stable/lib/libthr/thread/thr_yield.c
/freebsd-11-stable/lib/libthread_db/arch/amd64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/arm/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/i386/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/mips/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/powerpc/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/sparc64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/kse.h
/freebsd-11-stable/lib/libthread_db/libpthread_db.c
/freebsd-11-stable/lib/libthread_db/libpthread_db.h
/freebsd-11-stable/lib/libthread_db/libthr_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.h
/freebsd-11-stable/lib/libthread_db/thread_db_int.h
/freebsd-11-stable/lib/libufs/block.c
/freebsd-11-stable/lib/libufs/cgroup.c
/freebsd-11-stable/lib/libufs/inode.c
/freebsd-11-stable/lib/libufs/libufs.h
/freebsd-11-stable/lib/libufs/sblock.c
/freebsd-11-stable/lib/libufs/type.c
/freebsd-11-stable/lib/libugidfw/ugidfw.c
/freebsd-11-stable/lib/libugidfw/ugidfw.h
/freebsd-11-stable/lib/libulog/ulog.h
/freebsd-11-stable/lib/libulog/ulog_login.c
/freebsd-11-stable/lib/libulog/ulog_login_pseudo.c
/freebsd-11-stable/lib/libulog/utempter.c
/freebsd-11-stable/lib/libulog/utempter.h
/freebsd-11-stable/lib/libusb/libusb.h
/freebsd-11-stable/lib/libusb/libusb01.c
/freebsd-11-stable/lib/libusb/libusb10.c
/freebsd-11-stable/lib/libusb/libusb10.h
/freebsd-11-stable/lib/libusb/libusb10_desc.c
/freebsd-11-stable/lib/libusb/libusb10_io.c
/freebsd-11-stable/lib/libusb/libusb20.c
/freebsd-11-stable/lib/libusb/libusb20.h
/freebsd-11-stable/lib/libusb/libusb20_desc.c
/freebsd-11-stable/lib/libusb/libusb20_desc.h
/freebsd-11-stable/lib/libusb/libusb20_int.h
/freebsd-11-stable/lib/libusb/libusb20_ugen20.c
/freebsd-11-stable/lib/libusb/libusb_global_linux.h
/freebsd-11-stable/lib/libusb/usb.h
/freebsd-11-stable/lib/libusbhid/data.c
/freebsd-11-stable/lib/libusbhid/descr.c
/freebsd-11-stable/lib/libusbhid/descr_compat.c
/freebsd-11-stable/lib/libusbhid/parse.c
/freebsd-11-stable/lib/libusbhid/usage.c
/freebsd-11-stable/lib/libusbhid/usbhid.h
/freebsd-11-stable/lib/libusbhid/usbvar.h
/freebsd-11-stable/lib/libutil/auth.c
/freebsd-11-stable/lib/libutil/expand_number.c
/freebsd-11-stable/lib/libutil/fparseln.c
/freebsd-11-stable/lib/libutil/gr_util.c
/freebsd-11-stable/lib/libutil/hexdump.c
/freebsd-11-stable/lib/libutil/humanize_number.c
/freebsd-11-stable/lib/libutil/kinfo_getallproc.c
/freebsd-11-stable/lib/libutil/kinfo_getproc.c
/freebsd-11-stable/lib/libutil/kld.c
/freebsd-11-stable/lib/libutil/libutil.h
/freebsd-11-stable/lib/libutil/login_crypt.c
/freebsd-11-stable/lib/libutil/login_tty.c
/freebsd-11-stable/lib/libutil/pidfile.c
/freebsd-11-stable/lib/libutil/property.c
/freebsd-11-stable/lib/libutil/pty.c
/freebsd-11-stable/lib/libutil/pw_util.c
/freebsd-11-stable/lib/libutil/quotafile.c
/freebsd-11-stable/lib/libutil/realhostname.c
/freebsd-11-stable/lib/libutil/stub.c
/freebsd-11-stable/lib/libutil/trimdomain.c
/freebsd-11-stable/lib/libutil/uucplock.c
/freebsd-11-stable/lib/libvgl/bitmap.c
/freebsd-11-stable/lib/libvgl/keyboard.c
/freebsd-11-stable/lib/libvgl/main.c
/freebsd-11-stable/lib/libvgl/mouse.c
/freebsd-11-stable/lib/libvgl/simple.c
/freebsd-11-stable/lib/libvgl/text.c
/freebsd-11-stable/lib/libvgl/vgl.h
/freebsd-11-stable/lib/libvmmapi/vmmapi.c
/freebsd-11-stable/lib/libvmmapi/vmmapi.h
/freebsd-11-stable/lib/libvmmapi/vmmapi_freebsd.c
/freebsd-11-stable/lib/liby/main.c
/freebsd-11-stable/lib/liby/yyerror.c
/freebsd-11-stable/lib/libypclnt/ypclnt.h
/freebsd-11-stable/lib/libypclnt/ypclnt_connect.c
/freebsd-11-stable/lib/libypclnt/ypclnt_error.c
/freebsd-11-stable/lib/libypclnt/ypclnt_free.c
/freebsd-11-stable/lib/libypclnt/ypclnt_get.c
/freebsd-11-stable/lib/libypclnt/ypclnt_new.c
/freebsd-11-stable/lib/libypclnt/ypclnt_passwd.c
/freebsd-11-stable/lib/msun/amd64/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.h
/freebsd-11-stable/lib/msun/bsdsrc/b_exp.c
/freebsd-11-stable/lib/msun/bsdsrc/b_log.c
/freebsd-11-stable/lib/msun/bsdsrc/b_tgamma.c
/freebsd-11-stable/lib/msun/bsdsrc/mathimpl.h
/freebsd-11-stable/lib/msun/i387/fenv.c
/freebsd-11-stable/lib/msun/i387/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.h
/freebsd-11-stable/lib/msun/ld128/k_expl.h
/freebsd-11-stable/lib/msun/ld128/s_exp2l.c
/freebsd-11-stable/lib/msun/ld128/s_expl.c
/freebsd-11-stable/lib/msun/ld128/s_logl.c
/freebsd-11-stable/lib/msun/ld128/s_nanl.c
/freebsd-11-stable/lib/msun/ld80/invtrig.c
/freebsd-11-stable/lib/msun/ld80/invtrig.h
/freebsd-11-stable/lib/msun/ld80/k_expl.h
/freebsd-11-stable/lib/msun/ld80/s_exp2l.c
/freebsd-11-stable/lib/msun/ld80/s_expl.c
/freebsd-11-stable/lib/msun/ld80/s_logl.c
/freebsd-11-stable/lib/msun/ld80/s_nanl.c
/freebsd-11-stable/lib/msun/mips/fenv.c
/freebsd-11-stable/lib/msun/mips/fenv.h
/freebsd-11-stable/lib/msun/powerpc/fenv.c
/freebsd-11-stable/lib/msun/powerpc/fenv.h
/freebsd-11-stable/lib/msun/sparc64/fenv.c
/freebsd-11-stable/lib/msun/sparc64/fenv.h
/freebsd-11-stable/lib/msun/src/catrig.c
/freebsd-11-stable/lib/msun/src/catrigf.c
/freebsd-11-stable/lib/msun/src/e_remainderl.c
/freebsd-11-stable/lib/msun/src/e_sqrtl.c
/freebsd-11-stable/lib/msun/src/fenv-softfloat.h
/freebsd-11-stable/lib/msun/src/imprecise.c
/freebsd-11-stable/lib/msun/src/k_exp.c
/freebsd-11-stable/lib/msun/src/k_expf.c
/freebsd-11-stable/lib/msun/src/s_carg.c
/freebsd-11-stable/lib/msun/src/s_cargf.c
/freebsd-11-stable/lib/msun/src/s_cargl.c
/freebsd-11-stable/lib/msun/src/s_ccosh.c
/freebsd-11-stable/lib/msun/src/s_ccoshf.c
/freebsd-11-stable/lib/msun/src/s_cexp.c
/freebsd-11-stable/lib/msun/src/s_cexpf.c
/freebsd-11-stable/lib/msun/src/s_cimag.c
/freebsd-11-stable/lib/msun/src/s_cimagf.c
/freebsd-11-stable/lib/msun/src/s_cimagl.c
/freebsd-11-stable/lib/msun/src/s_conj.c
/freebsd-11-stable/lib/msun/src/s_conjf.c
/freebsd-11-stable/lib/msun/src/s_conjl.c
/freebsd-11-stable/lib/msun/src/s_copysignl.c
/freebsd-11-stable/lib/msun/src/s_cosl.c
/freebsd-11-stable/lib/msun/src/s_cproj.c
/freebsd-11-stable/lib/msun/src/s_cprojf.c
/freebsd-11-stable/lib/msun/src/s_cprojl.c
/freebsd-11-stable/lib/msun/src/s_creal.c
/freebsd-11-stable/lib/msun/src/s_crealf.c
/freebsd-11-stable/lib/msun/src/s_creall.c
/freebsd-11-stable/lib/msun/src/s_csinh.c
/freebsd-11-stable/lib/msun/src/s_csinhf.c
/freebsd-11-stable/lib/msun/src/s_csqrt.c
/freebsd-11-stable/lib/msun/src/s_csqrtf.c
/freebsd-11-stable/lib/msun/src/s_csqrtl.c
/freebsd-11-stable/lib/msun/src/s_ctanh.c
/freebsd-11-stable/lib/msun/src/s_ctanhf.c
/freebsd-11-stable/lib/msun/src/s_exp2.c
/freebsd-11-stable/lib/msun/src/s_exp2f.c
/freebsd-11-stable/lib/msun/src/s_fabsl.c
/freebsd-11-stable/lib/msun/src/s_fdim.c
/freebsd-11-stable/lib/msun/src/s_fma.c
/freebsd-11-stable/lib/msun/src/s_fmaf.c
/freebsd-11-stable/lib/msun/src/s_fmal.c
/freebsd-11-stable/lib/msun/src/s_fmax.c
/freebsd-11-stable/lib/msun/src/s_fmaxf.c
/freebsd-11-stable/lib/msun/src/s_fmaxl.c
/freebsd-11-stable/lib/msun/src/s_fmin.c
/freebsd-11-stable/lib/msun/src/s_fminf.c
/freebsd-11-stable/lib/msun/src/s_fminl.c
/freebsd-11-stable/lib/msun/src/s_frexpl.c
/freebsd-11-stable/lib/msun/src/s_isfinite.c
/freebsd-11-stable/lib/msun/src/s_isnan.c
/freebsd-11-stable/lib/msun/src/s_isnormal.c
/freebsd-11-stable/lib/msun/src/s_lrint.c
/freebsd-11-stable/lib/msun/src/s_lround.c
/freebsd-11-stable/lib/msun/src/s_modfl.c
/freebsd-11-stable/lib/msun/src/s_nan.c
/freebsd-11-stable/lib/msun/src/s_nearbyint.c
/freebsd-11-stable/lib/msun/src/s_rintl.c
/freebsd-11-stable/lib/msun/src/s_round.c
/freebsd-11-stable/lib/msun/src/s_roundf.c
/freebsd-11-stable/lib/msun/src/s_roundl.c
/freebsd-11-stable/lib/msun/src/s_scalbln.c
/freebsd-11-stable/lib/msun/src/s_signbit.c
/freebsd-11-stable/lib/msun/src/s_sinl.c
/freebsd-11-stable/lib/msun/src/s_tanl.c
/freebsd-11-stable/lib/msun/src/s_tgammaf.c
/freebsd-11-stable/lib/msun/x86/fenv.h
/freebsd-11-stable/lib/ncurses/ncurses/pathnames.h
/freebsd-11-stable/lib/ncurses/ncurses/termcap.c
/freebsd-11-stable/libexec/bootpd/rtmsg.c
/freebsd-11-stable/libexec/comsat/comsat.c
/freebsd-11-stable/libexec/fingerd/fingerd.c
/freebsd-11-stable/libexec/fingerd/pathnames.h
/freebsd-11-stable/libexec/ftpd/extern.h
/freebsd-11-stable/libexec/ftpd/ftpcmd.y
/freebsd-11-stable/libexec/ftpd/ftpd.c
/freebsd-11-stable/libexec/ftpd/logwtmp.c
/freebsd-11-stable/libexec/ftpd/pathnames.h
/freebsd-11-stable/libexec/ftpd/popen.c
/freebsd-11-stable/libexec/getty/extern.h
/freebsd-11-stable/libexec/getty/gettytab.h
/freebsd-11-stable/libexec/getty/init.c
/freebsd-11-stable/libexec/getty/main.c
/freebsd-11-stable/libexec/getty/pathnames.h
/freebsd-11-stable/libexec/getty/subr.c
/freebsd-11-stable/libexec/mknetid/hash.c
/freebsd-11-stable/libexec/mknetid/hash.h
/freebsd-11-stable/libexec/mknetid/mknetid.c
/freebsd-11-stable/libexec/mknetid/parse_group.c
/freebsd-11-stable/libexec/rbootd/bpf.c
/freebsd-11-stable/libexec/rbootd/conf.c
/freebsd-11-stable/libexec/rbootd/defs.h
/freebsd-11-stable/libexec/rbootd/parseconf.c
/freebsd-11-stable/libexec/rbootd/pathnames.h
/freebsd-11-stable/libexec/rbootd/rbootd.c
/freebsd-11-stable/libexec/rbootd/rmp.h
/freebsd-11-stable/libexec/rbootd/rmp_var.h
/freebsd-11-stable/libexec/rbootd/rmpproto.c
/freebsd-11-stable/libexec/rbootd/utils.c
/freebsd-11-stable/libexec/revnetgroup/hash.c
/freebsd-11-stable/libexec/revnetgroup/hash.h
/freebsd-11-stable/libexec/revnetgroup/parse_netgroup.c
/freebsd-11-stable/libexec/revnetgroup/revnetgroup.c
/freebsd-11-stable/libexec/rpc.rstatd/rstatd.c
/freebsd-11-stable/libexec/rpc.rusersd/extern.h
/freebsd-11-stable/libexec/rpc.rusersd/rusers_proc.c
/freebsd-11-stable/libexec/rpc.rusersd/rusersd.c
/freebsd-11-stable/libexec/rtld-elf/malloc.c
/freebsd-11-stable/libexec/rtld-elf/rtld_printf.c
/freebsd-11-stable/libexec/talkd/announce.c
/freebsd-11-stable/libexec/talkd/print.c
/freebsd-11-stable/libexec/talkd/process.c
/freebsd-11-stable/libexec/talkd/table.c
/freebsd-11-stable/libexec/talkd/talkd.c
/freebsd-11-stable/libexec/tftpd/tftpd.c
/freebsd-11-stable/libexec/ypxfr/yp_dbwrite.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_extern.h
/freebsd-11-stable/libexec/ypxfr/ypxfr_getmap.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_main.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_misc.c
/freebsd-11-stable/libexec/ypxfr/ypxfrd_getmap.c
/freebsd-11-stable/release/picobsd/tinyware/login/pathnames.h
/freebsd-11-stable/release/picobsd/tinyware/login/pico-login.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/extern.h
/freebsd-11-stable/release/picobsd/tinyware/passwd/local_passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_copy.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.h
/freebsd-11-stable/sbin/bsdlabel/bsdlabel.c
/freebsd-11-stable/sbin/bsdlabel/pathnames.h
/freebsd-11-stable/sbin/clri/clri.c
/freebsd-11-stable/sbin/devd/devd.cc
/freebsd-11-stable/sbin/dhclient/alloc.c
/freebsd-11-stable/sbin/dhclient/bpf.c
/freebsd-11-stable/sbin/dhclient/clparse.c
/freebsd-11-stable/sbin/dhclient/conflex.c
/freebsd-11-stable/sbin/dhclient/convert.c
/freebsd-11-stable/sbin/dhclient/dhclient.c
/freebsd-11-stable/sbin/dhclient/dhcp.h
/freebsd-11-stable/sbin/dhclient/dhcpd.h
/freebsd-11-stable/sbin/dhclient/dispatch.c
/freebsd-11-stable/sbin/dhclient/errwarn.c
/freebsd-11-stable/sbin/dhclient/hash.c
/freebsd-11-stable/sbin/dhclient/inet.c
/freebsd-11-stable/sbin/dhclient/options.c
/freebsd-11-stable/sbin/dhclient/packet.c
/freebsd-11-stable/sbin/dhclient/parse.c
/freebsd-11-stable/sbin/dhclient/tables.c
/freebsd-11-stable/sbin/dhclient/tree.c
/freebsd-11-stable/sbin/dmesg/dmesg.c
/freebsd-11-stable/sbin/dump/dump.h
/freebsd-11-stable/sbin/dump/dumprmt.c
/freebsd-11-stable/sbin/dump/itime.c
/freebsd-11-stable/sbin/dump/main.c
/freebsd-11-stable/sbin/dump/optr.c
/freebsd-11-stable/sbin/dump/pathnames.h
/freebsd-11-stable/sbin/dump/tape.c
/freebsd-11-stable/sbin/dump/traverse.c
/freebsd-11-stable/sbin/dump/unctime.c
/freebsd-11-stable/sbin/dumpfs/dumpfs.c
/freebsd-11-stable/sbin/dumpon/dumpon.c
/freebsd-11-stable/sbin/etherswitchcfg/ifmedia.c
/freebsd-11-stable/sbin/ffsinfo/ffsinfo.c
/freebsd-11-stable/sbin/fsck/fsck.c
/freebsd-11-stable/sbin/fsck/fsutil.c
/freebsd-11-stable/sbin/fsck/preen.c
/freebsd-11-stable/sbin/fsck_ffs/dir.c
/freebsd-11-stable/sbin/fsck_ffs/fsck.h
/freebsd-11-stable/sbin/fsck_ffs/fsutil.c
/freebsd-11-stable/sbin/fsck_ffs/gjournal.c
/freebsd-11-stable/sbin/fsck_ffs/globs.c
/freebsd-11-stable/sbin/fsck_ffs/inode.c
/freebsd-11-stable/sbin/fsck_ffs/main.c
/freebsd-11-stable/sbin/fsck_ffs/pass1.c
/freebsd-11-stable/sbin/fsck_ffs/pass1b.c
/freebsd-11-stable/sbin/fsck_ffs/pass2.c
/freebsd-11-stable/sbin/fsck_ffs/pass3.c
/freebsd-11-stable/sbin/fsck_ffs/pass4.c
/freebsd-11-stable/sbin/fsck_ffs/pass5.c
/freebsd-11-stable/sbin/fsck_ffs/setup.c
/freebsd-11-stable/sbin/fsck_ffs/utilities.c
/freebsd-11-stable/sbin/growfs/debug.c
/freebsd-11-stable/sbin/growfs/debug.h
/freebsd-11-stable/sbin/growfs/growfs.c
/freebsd-11-stable/sbin/gvinum/gvinum.h
/freebsd-11-stable/sbin/ifconfig/af_inet.c
/freebsd-11-stable/sbin/ifconfig/af_inet6.c
/freebsd-11-stable/sbin/ifconfig/af_link.c
/freebsd-11-stable/sbin/ifconfig/ifclone.c
/freebsd-11-stable/sbin/ifconfig/ifconfig.c
/freebsd-11-stable/sbin/ifconfig/ifmedia.c
/freebsd-11-stable/sbin/ifconfig/ifvlan.c
/freebsd-11-stable/sbin/init/init.c
/freebsd-11-stable/sbin/init/pathnames.h
/freebsd-11-stable/sbin/mknod/mknod.c
/freebsd-11-stable/sbin/mount/getmntopts.c
/freebsd-11-stable/sbin/mount/mntopts.h
/freebsd-11-stable/sbin/mount/mount.c
/freebsd-11-stable/sbin/mount/mount_fs.c
/freebsd-11-stable/sbin/mount/pathnames.h
/freebsd-11-stable/sbin/mount/vfslist.c
/freebsd-11-stable/sbin/mount_cd9660/mount_cd9660.c
/freebsd-11-stable/sbin/mount_nfs/mount_nfs.c
/freebsd-11-stable/sbin/mount_nullfs/mount_nullfs.c
/freebsd-11-stable/sbin/mount_udf/mount_udf.c
/freebsd-11-stable/sbin/mount_unionfs/mount_unionfs.c
/freebsd-11-stable/sbin/newfs/mkfs.c
/freebsd-11-stable/sbin/newfs/newfs.c
/freebsd-11-stable/sbin/newfs/newfs.h
/freebsd-11-stable/sbin/nfsiod/nfsiod.c
/freebsd-11-stable/sbin/ping/ping.c
/freebsd-11-stable/sbin/ping6/ping6.c
/freebsd-11-stable/sbin/quotacheck/preen.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.h
/freebsd-11-stable/sbin/rcorder/ealloc.c
/freebsd-11-stable/sbin/rcorder/hash.c
/freebsd-11-stable/sbin/rcorder/hash.h
/freebsd-11-stable/sbin/reboot/reboot.c
/freebsd-11-stable/sbin/restore/dirs.c
/freebsd-11-stable/sbin/restore/extern.h
/freebsd-11-stable/sbin/restore/interactive.c
/freebsd-11-stable/sbin/restore/main.c
/freebsd-11-stable/sbin/restore/restore.c
/freebsd-11-stable/sbin/restore/restore.h
/freebsd-11-stable/sbin/restore/symtab.c
/freebsd-11-stable/sbin/restore/tape.c
/freebsd-11-stable/sbin/restore/utilities.c
/freebsd-11-stable/sbin/route/route.c
/freebsd-11-stable/sbin/routed/defs.h
/freebsd-11-stable/sbin/routed/if.c
/freebsd-11-stable/sbin/routed/input.c
/freebsd-11-stable/sbin/routed/main.c
/freebsd-11-stable/sbin/routed/output.c
/freebsd-11-stable/sbin/routed/parms.c
/freebsd-11-stable/sbin/routed/pathnames.h
/freebsd-11-stable/sbin/routed/radix.c
/freebsd-11-stable/sbin/routed/radix.h
/freebsd-11-stable/sbin/routed/rdisc.c
/freebsd-11-stable/sbin/routed/rtquery/rtquery.c
/freebsd-11-stable/sbin/routed/table.c
/freebsd-11-stable/sbin/routed/trace.c
/freebsd-11-stable/sbin/savecore/savecore.c
/freebsd-11-stable/sbin/setkey/parse.y
/freebsd-11-stable/sbin/setkey/setkey.c
/freebsd-11-stable/sbin/setkey/test-pfkey.c
/freebsd-11-stable/sbin/setkey/test-policy.c
/freebsd-11-stable/sbin/setkey/token.l
/freebsd-11-stable/sbin/setkey/vchar.h
/freebsd-11-stable/sbin/shutdown/shutdown.c
/freebsd-11-stable/sbin/sunlabel/sunlabel.c
/freebsd-11-stable/sbin/swapon/swapon.c
/freebsd-11-stable/sbin/sysctl/sysctl.c
/freebsd-11-stable/sbin/tunefs/tunefs.c
/freebsd-11-stable/sbin/umount/umount.c
/freebsd-11-stable/share/examples/tests/tests/atf/cp_test.sh
/freebsd-11-stable/share/examples/tests/tests/atf/printf_test.c
/freebsd-11-stable/share/examples/tests/tests/plain/printf_test.c
/freebsd-11-stable/sys/amd64/acpica/acpi_machdep.c
/freebsd-11-stable/sys/amd64/amd64/atomic.c
/freebsd-11-stable/sys/amd64/amd64/bios.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.h
/freebsd-11-stable/sys/amd64/amd64/elf_machdep.c
/freebsd-11-stable/sys/amd64/amd64/fpu.c
/freebsd-11-stable/sys/amd64/amd64/gdb_machdep.c
/freebsd-11-stable/sys/amd64/amd64/genassym.c
/freebsd-11-stable/sys/amd64/amd64/in_cksum.c
/freebsd-11-stable/sys/amd64/amd64/initcpu.c
/freebsd-11-stable/sys/amd64/amd64/io.c
/freebsd-11-stable/sys/amd64/amd64/machdep.c
/freebsd-11-stable/sys/amd64/amd64/mem.c
/freebsd-11-stable/sys/amd64/amd64/minidump_machdep.c
/freebsd-11-stable/sys/amd64/amd64/mp_machdep.c
/freebsd-11-stable/sys/amd64/amd64/pmap.c
/freebsd-11-stable/sys/amd64/amd64/prof_machdep.c
/freebsd-11-stable/sys/amd64/amd64/ptrace_machdep.c
/freebsd-11-stable/sys/amd64/amd64/sys_machdep.c
/freebsd-11-stable/sys/amd64/amd64/trap.c
/freebsd-11-stable/sys/amd64/amd64/uio_machdep.c
/freebsd-11-stable/sys/amd64/amd64/uma_machdep.c
/freebsd-11-stable/sys/amd64/amd64/vm_machdep.c
/freebsd-11-stable/sys/amd64/ia32/ia32_misc.c
/freebsd-11-stable/sys/amd64/ia32/ia32_reg.c
/freebsd-11-stable/sys/amd64/ia32/ia32_signal.c
/freebsd-11-stable/sys/amd64/ia32/ia32_syscall.c
/freebsd-11-stable/sys/amd64/include/_bus.h
/freebsd-11-stable/sys/amd64/include/asm.h
/freebsd-11-stable/sys/amd64/include/asmacros.h
/freebsd-11-stable/sys/amd64/include/atomic.h
/freebsd-11-stable/sys/amd64/include/bus_dma.h
/freebsd-11-stable/sys/amd64/include/counter.h
/freebsd-11-stable/sys/amd64/include/cpu.h
/freebsd-11-stable/sys/amd64/include/cpufunc.h
/freebsd-11-stable/sys/amd64/include/exec.h
/freebsd-11-stable/sys/amd64/include/floatingpoint.h
/freebsd-11-stable/sys/amd64/include/fpu.h
/freebsd-11-stable/sys/amd64/include/gdb_machdep.h
/freebsd-11-stable/sys/amd64/include/ieeefp.h
/freebsd-11-stable/sys/amd64/include/in_cksum.h
/freebsd-11-stable/sys/amd64/include/intr_machdep.h
/freebsd-11-stable/sys/amd64/include/iodev.h
/freebsd-11-stable/sys/amd64/include/kdb.h
/freebsd-11-stable/sys/amd64/include/limits.h
/freebsd-11-stable/sys/amd64/include/md_var.h
/freebsd-11-stable/sys/amd64/include/memdev.h
/freebsd-11-stable/sys/amd64/include/minidump.h
/freebsd-11-stable/sys/amd64/include/mp_watchdog.h
/freebsd-11-stable/sys/amd64/include/param.h
/freebsd-11-stable/sys/amd64/include/pc/bios.h
/freebsd-11-stable/sys/amd64/include/pcb.h
/freebsd-11-stable/sys/amd64/include/pcpu.h
/freebsd-11-stable/sys/amd64/include/pmap.h
/freebsd-11-stable/sys/amd64/include/pmc_mdep.h
/freebsd-11-stable/sys/amd64/include/ppireg.h
/freebsd-11-stable/sys/amd64/include/proc.h
/freebsd-11-stable/sys/amd64/include/profile.h
/freebsd-11-stable/sys/amd64/include/reloc.h
/freebsd-11-stable/sys/amd64/include/runq.h
/freebsd-11-stable/sys/amd64/include/segments.h
/freebsd-11-stable/sys/amd64/include/sf_buf.h
/freebsd-11-stable/sys/amd64/include/timerreg.h
/freebsd-11-stable/sys/amd64/include/tss.h
/freebsd-11-stable/sys/amd64/include/varargs.h
/freebsd-11-stable/sys/amd64/include/vm.h
/freebsd-11-stable/sys/amd64/include/vmm.h
/freebsd-11-stable/sys/amd64/include/vmm_dev.h
/freebsd-11-stable/sys/amd64/include/vmm_instruction_emul.h
/freebsd-11-stable/sys/amd64/include/vmparam.h
/freebsd-11-stable/sys/amd64/linux32/linux.h
/freebsd-11-stable/sys/amd64/linux32/linux32_dummy.c
/freebsd-11-stable/sys/amd64/linux32/linux32_machdep.c
/freebsd-11-stable/sys/amd64/linux32/linux32_sysvec.c
/freebsd-11-stable/sys/amd64/pci/pci_cfgreg.c
/freebsd-11-stable/sys/amd64/vmm/amd/amdv.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_controls.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_cpufunc.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_genassym.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.h
/freebsd-11-stable/sys/amd64/vmm/intel/vtd.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.h
/freebsd-11-stable/sys/amd64/vmm/io/ppt.c
/freebsd-11-stable/sys/amd64/vmm/io/ppt.h
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.c
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.h
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic_priv.h
/freebsd-11-stable/sys/amd64/vmm/vmm.c
/freebsd-11-stable/sys/amd64/vmm/vmm_dev.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.h
/freebsd-11-stable/sys/amd64/vmm/vmm_instruction_emul.c
/freebsd-11-stable/sys/amd64/vmm/vmm_ktr.h
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.c
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.h
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.c
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.h
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.c
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.h
/freebsd-11-stable/sys/amd64/vmm/vmm_util.c
/freebsd-11-stable/sys/amd64/vmm/vmm_util.h
/freebsd-11-stable/sys/amd64/vmm/x86.c
/freebsd-11-stable/sys/amd64/vmm/x86.h
/freebsd-11-stable/sys/arm/allwinner/a10_ehci.c
/freebsd-11-stable/sys/arm/allwinner/a10_gpio.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.h
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.c
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.h
/freebsd-11-stable/sys/arm/allwinner/if_emac.c
/freebsd-11-stable/sys/arm/allwinner/if_emacreg.h
/freebsd-11-stable/sys/arm/arm/autoconf.c
/freebsd-11-stable/sys/arm/arm/bus_space_generic.c
/freebsd-11-stable/sys/arm/arm/busdma_machdep-v6.c
/freebsd-11-stable/sys/arm/arm/cpufunc.c
/freebsd-11-stable/sys/arm/arm/db_disasm.c
/freebsd-11-stable/sys/arm/arm/disassem.c
/freebsd-11-stable/sys/arm/arm/dump_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_trampoline.c
/freebsd-11-stable/sys/arm/arm/fiq.c
/freebsd-11-stable/sys/arm/arm/gdb_machdep.c
/freebsd-11-stable/sys/arm/arm/genassym.c
/freebsd-11-stable/sys/arm/arm/generic_timer.c
/freebsd-11-stable/sys/arm/arm/gic.c
/freebsd-11-stable/sys/arm/arm/in_cksum.c
/freebsd-11-stable/sys/arm/arm/intr.c
/freebsd-11-stable/sys/arm/arm/machdep.c
/freebsd-11-stable/sys/arm/arm/mem.c
/freebsd-11-stable/sys/arm/arm/minidump_machdep.c
/freebsd-11-stable/sys/arm/arm/mp_machdep.c
/freebsd-11-stable/sys/arm/arm/mpcore_timer.c
/freebsd-11-stable/sys/arm/arm/physmem.c
/freebsd-11-stable/sys/arm/arm/pl310.c
/freebsd-11-stable/sys/arm/arm/pmap-v6.c
/freebsd-11-stable/sys/arm/arm/sc_machdep.c
/freebsd-11-stable/sys/arm/arm/stack_machdep.c
/freebsd-11-stable/sys/arm/arm/stdatomic.c
/freebsd-11-stable/sys/arm/arm/sys_machdep.c
/freebsd-11-stable/sys/arm/arm/uio_machdep.c
/freebsd-11-stable/sys/arm/arm/undefined.c
/freebsd-11-stable/sys/arm/arm/vfp.c
/freebsd-11-stable/sys/arm/arm/vm_machdep.c
/freebsd-11-stable/sys/arm/at91/at91.c
/freebsd-11-stable/sys/arm/at91/at91_aic.c
/freebsd-11-stable/sys/arm/at91/at91_aicreg.h
/freebsd-11-stable/sys/arm/at91/at91_cfata.c
/freebsd-11-stable/sys/arm/at91/at91_gpio.h
/freebsd-11-stable/sys/arm/at91/at91_machdep.c
/freebsd-11-stable/sys/arm/at91/at91_mci.c
/freebsd-11-stable/sys/arm/at91/at91_mcireg.h
/freebsd-11-stable/sys/arm/at91/at91_pdcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pio.c
/freebsd-11-stable/sys/arm/at91/at91_pio_sam9g45.h
/freebsd-11-stable/sys/arm/at91/at91_pioreg.h
/freebsd-11-stable/sys/arm/at91/at91_piovar.h
/freebsd-11-stable/sys/arm/at91/at91_pit.c
/freebsd-11-stable/sys/arm/at91/at91_pitreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmc.c
/freebsd-11-stable/sys/arm/at91/at91_pmcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmcvar.h
/freebsd-11-stable/sys/arm/at91/at91_rst.c
/freebsd-11-stable/sys/arm/at91/at91_rstreg.h
/freebsd-11-stable/sys/arm/at91/at91_rtc.c
/freebsd-11-stable/sys/arm/at91/at91_rtcreg.h
/freebsd-11-stable/sys/arm/at91/at91_sdramc.c
/freebsd-11-stable/sys/arm/at91/at91_shdwc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.h
/freebsd-11-stable/sys/arm/at91/at91_spi.c
/freebsd-11-stable/sys/arm/at91/at91_spireg.h
/freebsd-11-stable/sys/arm/at91/at91_ssc.c
/freebsd-11-stable/sys/arm/at91/at91_sscreg.h
/freebsd-11-stable/sys/arm/at91/at91_st.c
/freebsd-11-stable/sys/arm/at91/at91_streg.h
/freebsd-11-stable/sys/arm/at91/at91_tcb.c
/freebsd-11-stable/sys/arm/at91/at91_twi.c
/freebsd-11-stable/sys/arm/at91/at91_twiio.h
/freebsd-11-stable/sys/arm/at91/at91_twireg.h
/freebsd-11-stable/sys/arm/at91/at91_usartreg.h
/freebsd-11-stable/sys/arm/at91/at91_wdt.c
/freebsd-11-stable/sys/arm/at91/at91_wdtreg.h
/freebsd-11-stable/sys/arm/at91/at91board.h
/freebsd-11-stable/sys/arm/at91/at91reg.h
/freebsd-11-stable/sys/arm/at91/at91rm9200.c
/freebsd-11-stable/sys/arm/at91/at91rm9200_devices.c
/freebsd-11-stable/sys/arm/at91/at91rm9200var.h
/freebsd-11-stable/sys/arm/at91/at91rm92reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9260.c
/freebsd-11-stable/sys/arm/at91/at91sam9260reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g20.c
/freebsd-11-stable/sys/arm/at91/at91sam9g20reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g45.c
/freebsd-11-stable/sys/arm/at91/at91sam9g45reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9x5.c
/freebsd-11-stable/sys/arm/at91/at91sam9x5reg.h
/freebsd-11-stable/sys/arm/at91/at91soc.c
/freebsd-11-stable/sys/arm/at91/at91soc.h
/freebsd-11-stable/sys/arm/at91/at91var.h
/freebsd-11-stable/sys/arm/at91/board_bwct.c
/freebsd-11-stable/sys/arm/at91/board_eb9200.c
/freebsd-11-stable/sys/arm/at91/board_ethernut5.c
/freebsd-11-stable/sys/arm/at91/board_hl200.c
/freebsd-11-stable/sys/arm/at91/board_hl201.c
/freebsd-11-stable/sys/arm/at91/board_kb920x.c
/freebsd-11-stable/sys/arm/at91/board_qila9g20.c
/freebsd-11-stable/sys/arm/at91/board_sam9260ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9g20ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9x25ek.c
/freebsd-11-stable/sys/arm/at91/board_sn9g45.c
/freebsd-11-stable/sys/arm/at91/board_tsc4370.c
/freebsd-11-stable/sys/arm/at91/if_ate.c
/freebsd-11-stable/sys/arm/at91/if_atereg.h
/freebsd-11-stable/sys/arm/at91/if_macb.c
/freebsd-11-stable/sys/arm/at91/uart_bus_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_cpu_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_dev_at91usart.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bsc.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fb.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fbd.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_intr.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_machdep.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spi.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spireg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spivar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_systimer.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.h
/freebsd-11-stable/sys/arm/conf/genboardid.awk
/freebsd-11-stable/sys/arm/freescale/fsl_ocotp.c
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpreg.h
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_dpllreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3_fbd.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3reg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_sdmareg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ssireg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_tzicreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx53_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatop.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_mp.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_pl310.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_common.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gpt.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gptreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_nop_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdog.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdogreg.h
/freebsd-11-stable/sys/arm/freescale/imx/tzic.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_anadig.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ccm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_common.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dcu4.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ehci.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_gpio.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_i2c.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_machdep.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_mscm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_nfc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_sai.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_tcon.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_uart.c
_align.h
_bus.h
_inttypes.h
_limits.h
_stdint.h
_types.h
armreg.h
asm.h
asmacros.h
at91_gpio.h
atags.h
atomic.h
blockio.h
board.h
bus.h
bus_dma.h
clock.h
counter.h
cpufunc.h
disassem.h
elf.h
endian.h
exec.h
fdt.h
fiq.h
float.h
floatingpoint.h
frame.h
gdb_machdep.h
ieee.h
in_cksum.h
intr.h
kdb.h
limits.h
md_var.h
memdev.h
metadata.h
minidump.h
ofw_machdep.h
param.h
pcb.h
pcpu.h
physmem.h
pl310.h
pmap.h
pmc_mdep.h
proc.h
profile.h
psl.h
reloc.h
runq.h
sc_machdep.h
sf_buf.h
signal.h
stdarg.h
sysarch.h
ucontext.h
undefined.h
utrap.h
vdso.h
vfp.h
vm.h
vmparam.h
/freebsd-11-stable/sys/arm/lpc/if_lpe.c
/freebsd-11-stable/sys/arm/lpc/if_lpereg.h
/freebsd-11-stable/sys/arm/lpc/lpc_dmac.c
/freebsd-11-stable/sys/arm/lpc/lpc_fb.c
/freebsd-11-stable/sys/arm/lpc/lpc_gpio.c
/freebsd-11-stable/sys/arm/lpc/lpc_intc.c
/freebsd-11-stable/sys/arm/lpc/lpc_machdep.c
/freebsd-11-stable/sys/arm/lpc/lpc_mmc.c
/freebsd-11-stable/sys/arm/lpc/lpc_ohci.c
/freebsd-11-stable/sys/arm/lpc/lpc_pll.c
/freebsd-11-stable/sys/arm/lpc/lpc_pwr.c
/freebsd-11-stable/sys/arm/lpc/lpc_rtc.c
/freebsd-11-stable/sys/arm/lpc/lpc_spi.c
/freebsd-11-stable/sys/arm/lpc/lpc_timer.c
/freebsd-11-stable/sys/arm/lpc/lpcreg.h
/freebsd-11-stable/sys/arm/lpc/lpcvar.h
/freebsd-11-stable/sys/arm/lpc/ssd1289.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp_mp.c
/freebsd-11-stable/sys/arm/mv/discovery/discovery.c
/freebsd-11-stable/sys/arm/mv/gpio.c
/freebsd-11-stable/sys/arm/mv/ic.c
/freebsd-11-stable/sys/arm/mv/kirkwood/kirkwood.c
/freebsd-11-stable/sys/arm/mv/mpic.c
/freebsd-11-stable/sys/arm/mv/mv_common.c
/freebsd-11-stable/sys/arm/mv/mv_localbus.c
/freebsd-11-stable/sys/arm/mv/mv_machdep.c
/freebsd-11-stable/sys/arm/mv/mv_pci.c
/freebsd-11-stable/sys/arm/mv/mv_ts.c
/freebsd-11-stable/sys/arm/mv/mvreg.h
/freebsd-11-stable/sys/arm/mv/mvvar.h
/freebsd-11-stable/sys/arm/mv/mvwin.h
/freebsd-11-stable/sys/arm/mv/orion/db88f5xxx.c
/freebsd-11-stable/sys/arm/mv/orion/orion.c
/freebsd-11-stable/sys/arm/mv/rtc.c
/freebsd-11-stable/sys/arm/mv/timer.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_gpio.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_machdep.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.h
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_machdep.c
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_mp.c
/freebsd-11-stable/sys/arm/ti/aintc.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_dmtimer.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd_syscons.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pmic.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_prcm.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pwm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_reg.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_usbss.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpsw.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswreg.h
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswvar.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_l2cache.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_mp.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_prcm_clks.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_reg.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_smc.h
/freebsd-11-stable/sys/arm/ti/omap4/pandaboard/pandaboard.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.h
/freebsd-11-stable/sys/arm/ti/ti_edma3.c
/freebsd-11-stable/sys/arm/ti/ti_edma3.h
/freebsd-11-stable/sys/arm/ti/ti_gpio.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.h
/freebsd-11-stable/sys/arm/ti/ti_machdep.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.h
/freebsd-11-stable/sys/arm/ti/ti_prcm.c
/freebsd-11-stable/sys/arm/ti/ti_prcm.h
/freebsd-11-stable/sys/arm/ti/ti_pruss.c
/freebsd-11-stable/sys/arm/ti/ti_pruss.h
/freebsd-11-stable/sys/arm/ti/ti_scm.c
/freebsd-11-stable/sys/arm/ti/ti_scm.h
/freebsd-11-stable/sys/arm/ti/ti_sdhci.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.h
/freebsd-11-stable/sys/arm/ti/ti_sdmareg.h
/freebsd-11-stable/sys/arm/ti/ti_smc.h
/freebsd-11-stable/sys/arm/ti/tivar.h
/freebsd-11-stable/sys/arm/ti/twl/twl.c
/freebsd-11-stable/sys/arm/ti/twl/twl.h
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.c
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.h
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.c
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.h
/freebsd-11-stable/sys/arm/ti/usb/omap_ehci.c
/freebsd-11-stable/sys/arm/ti/usb/omap_usb.h
/freebsd-11-stable/sys/arm/xilinx/uart_dev_cdnc.c
/freebsd-11-stable/sys/arm/xilinx/zy7_devcfg.c
/freebsd-11-stable/sys/arm/xilinx/zy7_ehci.c
/freebsd-11-stable/sys/arm/xilinx/zy7_gpio.c
/freebsd-11-stable/sys/arm/xilinx/zy7_l2cache.c
/freebsd-11-stable/sys/arm/xilinx/zy7_machdep.c
/freebsd-11-stable/sys/arm/xilinx/zy7_reg.h
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.c
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.h
/freebsd-11-stable/sys/arm/xscale/i8134x/crb_machdep.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_mcu.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_pci.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_space.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342_7seg.c
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/obio.c
/freebsd-11-stable/sys/arm/xscale/i8134x/obiovar.h
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_bus_i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_cpu_i81342.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_ata.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_machdep.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_exp_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_fled.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_a4x_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_iic.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_intr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_mem.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npevar.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_timer.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_wdog.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425var.h
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_bus_ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_cpu_ixp425.c
/freebsd-11-stable/sys/arm/xscale/pxa/if_smc_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_gpio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_icu.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_machdep.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_obio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_space.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_timer.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxareg.h
/freebsd-11-stable/sys/arm/xscale/pxa/pxavar.h
/freebsd-11-stable/sys/arm/xscale/pxa/uart_bus_pxa.c
/freebsd-11-stable/sys/arm/xscale/pxa/uart_cpu_pxa.c
/freebsd-11-stable/sys/bsm/audit.h
/freebsd-11-stable/sys/bsm/audit_domain.h
/freebsd-11-stable/sys/bsm/audit_errno.h
/freebsd-11-stable/sys/bsm/audit_fcntl.h
/freebsd-11-stable/sys/bsm/audit_internal.h
/freebsd-11-stable/sys/bsm/audit_kevents.h
/freebsd-11-stable/sys/bsm/audit_record.h
/freebsd-11-stable/sys/bsm/audit_socket_type.h
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.c
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.h
/freebsd-11-stable/sys/compat/linprocfs/linprocfs.c
/freebsd-11-stable/sys/compat/ndis/cfg_var.h
/freebsd-11-stable/sys/compat/ndis/hal_var.h
/freebsd-11-stable/sys/compat/ndis/kern_ndis.c
/freebsd-11-stable/sys/compat/ndis/kern_windrv.c
/freebsd-11-stable/sys/compat/ndis/ndis_var.h
/freebsd-11-stable/sys/compat/ndis/ntoskrnl_var.h
/freebsd-11-stable/sys/compat/ndis/pe_var.h
/freebsd-11-stable/sys/compat/ndis/resource_var.h
/freebsd-11-stable/sys/compat/ndis/subr_hal.c
/freebsd-11-stable/sys/compat/ndis/subr_ndis.c
/freebsd-11-stable/sys/compat/ndis/subr_ntoskrnl.c
/freebsd-11-stable/sys/compat/ndis/subr_pe.c
/freebsd-11-stable/sys/compat/ndis/subr_usbd.c
/freebsd-11-stable/sys/compat/ndis/usbd_var.h
/freebsd-11-stable/sys/conf/newvers.sh
/freebsd-11-stable/sys/conf/systags.sh
/freebsd-11-stable/sys/crypto/sha1.c
/freebsd-11-stable/sys/crypto/sha1.h
/freebsd-11-stable/sys/ddb/db_ps.c
/freebsd-11-stable/sys/ddb/ddb.h
/freebsd-11-stable/sys/dev/aac/aac.c
/freebsd-11-stable/sys/dev/aac/aac_cam.c
/freebsd-11-stable/sys/dev/aac/aac_debug.c
/freebsd-11-stable/sys/dev/aac/aac_disk.c
/freebsd-11-stable/sys/dev/aac/aac_linux.c
/freebsd-11-stable/sys/dev/aac/aac_pci.c
/freebsd-11-stable/sys/dev/aac/aac_tables.h
/freebsd-11-stable/sys/dev/aac/aacreg.h
/freebsd-11-stable/sys/dev/aac/aacvar.h
/freebsd-11-stable/sys/dev/aacraid/aacraid.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_cam.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_linux.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_pci.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_reg.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_var.h
/freebsd-11-stable/sys/dev/adb/adb.h
/freebsd-11-stable/sys/dev/adb/adb_bus.c
/freebsd-11-stable/sys/dev/adb/adb_buttons.c
/freebsd-11-stable/sys/dev/adb/adb_kbd.c
/freebsd-11-stable/sys/dev/adb/adb_mouse.c
/freebsd-11-stable/sys/dev/adb/adbvar.h
/freebsd-11-stable/sys/dev/adlink/adlink.c
/freebsd-11-stable/sys/dev/advansys/adv_isa.c
/freebsd-11-stable/sys/dev/advansys/adv_pci.c
/freebsd-11-stable/sys/dev/advansys/advansys.c
/freebsd-11-stable/sys/dev/advansys/advansys.h
/freebsd-11-stable/sys/dev/advansys/advlib.c
/freebsd-11-stable/sys/dev/advansys/advlib.h
/freebsd-11-stable/sys/dev/advansys/adw_pci.c
/freebsd-11-stable/sys/dev/advansys/adwcam.c
/freebsd-11-stable/sys/dev/advansys/adwlib.c
/freebsd-11-stable/sys/dev/advansys/adwlib.h
/freebsd-11-stable/sys/dev/advansys/adwvar.h
/freebsd-11-stable/sys/dev/ae/if_ae.c
/freebsd-11-stable/sys/dev/ae/if_aereg.h
/freebsd-11-stable/sys/dev/ae/if_aevar.h
/freebsd-11-stable/sys/dev/age/if_age.c
/freebsd-11-stable/sys/dev/age/if_agereg.h
/freebsd-11-stable/sys/dev/age/if_agevar.h
/freebsd-11-stable/sys/dev/agp/agp.c
/freebsd-11-stable/sys/dev/agp/agp_ali.c
/freebsd-11-stable/sys/dev/agp/agp_amd.c
/freebsd-11-stable/sys/dev/agp/agp_amd64.c
/freebsd-11-stable/sys/dev/agp/agp_apple.c
/freebsd-11-stable/sys/dev/agp/agp_ati.c
/freebsd-11-stable/sys/dev/agp/agp_i810.c
/freebsd-11-stable/sys/dev/agp/agp_i810.h
/freebsd-11-stable/sys/dev/agp/agp_intel.c
/freebsd-11-stable/sys/dev/agp/agp_nvidia.c
/freebsd-11-stable/sys/dev/agp/agp_sis.c
/freebsd-11-stable/sys/dev/agp/agp_via.c
/freebsd-11-stable/sys/dev/agp/agppriv.h
/freebsd-11-stable/sys/dev/agp/agpreg.h
/freebsd-11-stable/sys/dev/agp/agpvar.h
/freebsd-11-stable/sys/dev/aha/aha.c
/freebsd-11-stable/sys/dev/aha/aha_isa.c
/freebsd-11-stable/sys/dev/aha/ahareg.h
/freebsd-11-stable/sys/dev/ahci/ahci.c
/freebsd-11-stable/sys/dev/ahci/ahci.h
/freebsd-11-stable/sys/dev/ahci/ahciem.c
/freebsd-11-stable/sys/dev/aic/aic.c
/freebsd-11-stable/sys/dev/aic/aic6360reg.h
/freebsd-11-stable/sys/dev/aic/aic_isa.c
/freebsd-11-stable/sys/dev/aic/aic_pccard.c
/freebsd-11-stable/sys/dev/aic/aicvar.h
/freebsd-11-stable/sys/dev/aic7xxx/ahc_isa.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7770.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_93cx6.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_insformat.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.h
/freebsd-11-stable/sys/dev/alc/if_alc.c
/freebsd-11-stable/sys/dev/alc/if_alcreg.h
/freebsd-11-stable/sys/dev/alc/if_alcvar.h
/freebsd-11-stable/sys/dev/ale/if_ale.c
/freebsd-11-stable/sys/dev/ale/if_alereg.h
/freebsd-11-stable/sys/dev/ale/if_alevar.h
/freebsd-11-stable/sys/dev/altera/atse/a_api.h
/freebsd-11-stable/sys/dev/altera/atse/if_atse.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_fdt.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_nexus.c
/freebsd-11-stable/sys/dev/altera/atse/if_atsereg.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_fdt.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart.h
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_cons.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_fdt.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.h
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_disk.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_fdt.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_io.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_nexus.c
/freebsd-11-stable/sys/dev/amdsbwd/amdsbwd.c
/freebsd-11-stable/sys/dev/amdtemp/amdtemp.c
/freebsd-11-stable/sys/dev/amr/amr.c
/freebsd-11-stable/sys/dev/amr/amr_cam.c
/freebsd-11-stable/sys/dev/amr/amr_disk.c
/freebsd-11-stable/sys/dev/amr/amr_linux.c
/freebsd-11-stable/sys/dev/amr/amr_pci.c
/freebsd-11-stable/sys/dev/amr/amr_tables.h
/freebsd-11-stable/sys/dev/amr/amrio.h
/freebsd-11-stable/sys/dev/amr/amrreg.h
/freebsd-11-stable/sys/dev/amr/amrvar.h
/freebsd-11-stable/sys/dev/an/if_aironet_ieee.h
/freebsd-11-stable/sys/dev/an/if_an.c
/freebsd-11-stable/sys/dev/an/if_an_isa.c
/freebsd-11-stable/sys/dev/an/if_an_pccard.c
/freebsd-11-stable/sys/dev/an/if_an_pci.c
/freebsd-11-stable/sys/dev/an/if_anreg.h
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.c
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.h
/freebsd-11-stable/sys/dev/asmc/asmc.c
/freebsd-11-stable/sys/dev/asmc/asmcvar.h
/freebsd-11-stable/sys/dev/ata/ata-all.c
/freebsd-11-stable/sys/dev/ata/ata-all.h
/freebsd-11-stable/sys/dev/ata/ata-card.c
/freebsd-11-stable/sys/dev/ata/ata-dma.c
/freebsd-11-stable/sys/dev/ata/ata-isa.c
/freebsd-11-stable/sys/dev/ata/ata-lowlevel.c
/freebsd-11-stable/sys/dev/ata/ata-pci.c
/freebsd-11-stable/sys/dev/ata/ata-pci.h
/freebsd-11-stable/sys/dev/ata/ata-sata.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acard.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acerlabs.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-amd.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ati.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cenatek.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cypress.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cyrix.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-fsl.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-highpoint.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-intel.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ite.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-jmicron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-marvell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-micron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-national.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-netcell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-nvidia.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-promise.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-serverworks.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-siliconimage.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-sis.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-via.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.h
/freebsd-11-stable/sys/dev/ath/ath_dfs/null/dfs_null.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9002phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.c
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.h
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.c
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.c
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/tx_schedules.h
/freebsd-11-stable/sys/dev/ath/if_ath.c
/freebsd-11-stable/sys/dev/ath/if_ath_ahb.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.h
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.c
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.h
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.c
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.h
/freebsd-11-stable/sys/dev/ath/if_ath_debug.c
/freebsd-11-stable/sys/dev/ath/if_ath_debug.h
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.c
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.h
/freebsd-11-stable/sys/dev/ath/if_ath_led.c
/freebsd-11-stable/sys/dev/ath/if_ath_led.h
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.c
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.h
/freebsd-11-stable/sys/dev/ath/if_ath_misc.h
/freebsd-11-stable/sys/dev/ath/if_ath_pci.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.h
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.c
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.h
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.c
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.h
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tsf.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.h
/freebsd-11-stable/sys/dev/ath/if_athdfs.h
/freebsd-11-stable/sys/dev/ath/if_athioctl.h
/freebsd-11-stable/sys/dev/ath/if_athrate.h
/freebsd-11-stable/sys/dev/ath/if_athvar.h
/freebsd-11-stable/sys/dev/atkbdc/atkbd.c
/freebsd-11-stable/sys/dev/atkbdc/atkbd_atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_ebus.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_isa.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdcreg.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdreg.h
/freebsd-11-stable/sys/dev/auxio/auxio.c
/freebsd-11-stable/sys/dev/auxio/auxioreg.h
/freebsd-11-stable/sys/dev/bce/if_bce.c
/freebsd-11-stable/sys/dev/bce/if_bcefw.h
/freebsd-11-stable/sys/dev/bce/if_bcereg.h
/freebsd-11-stable/sys/dev/bfe/if_bfe.c
/freebsd-11-stable/sys/dev/bfe/if_bfereg.h
/freebsd-11-stable/sys/dev/bge/if_bge.c
/freebsd-11-stable/sys/dev/bge/if_bgereg.h
/freebsd-11-stable/sys/dev/bktr/bktr_audio.c
/freebsd-11-stable/sys/dev/bktr/bktr_audio.h
/freebsd-11-stable/sys/dev/bktr/bktr_card.c
/freebsd-11-stable/sys/dev/bktr/bktr_card.h
/freebsd-11-stable/sys/dev/bktr/bktr_core.c
/freebsd-11-stable/sys/dev/bktr/bktr_core.h
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.c
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.h
/freebsd-11-stable/sys/dev/bktr/bktr_mem.c
/freebsd-11-stable/sys/dev/bktr/bktr_mem.h
/freebsd-11-stable/sys/dev/bktr/bktr_os.c
/freebsd-11-stable/sys/dev/bktr/bktr_os.h
/freebsd-11-stable/sys/dev/bktr/bktr_reg.h
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.c
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.h
/freebsd-11-stable/sys/dev/bktr/ioctl_meteor.h
/freebsd-11-stable/sys/dev/bktr/msp34xx.c
/freebsd-11-stable/sys/dev/bm/if_bm.c
/freebsd-11-stable/sys/dev/bm/if_bmreg.h
/freebsd-11-stable/sys/dev/bm/if_bmvar.h
/freebsd-11-stable/sys/dev/buslogic/bt.c
/freebsd-11-stable/sys/dev/buslogic/bt_isa.c
/freebsd-11-stable/sys/dev/buslogic/bt_pci.c
/freebsd-11-stable/sys/dev/buslogic/btreg.h
/freebsd-11-stable/sys/dev/bvm/bvm_console.c
/freebsd-11-stable/sys/dev/bvm/bvm_dbg.c
/freebsd-11-stable/sys/dev/bwi/bitops.h
/freebsd-11-stable/sys/dev/bwi/bwimac.c
/freebsd-11-stable/sys/dev/bwi/bwimac.h
/freebsd-11-stable/sys/dev/bwi/bwiphy.c
/freebsd-11-stable/sys/dev/bwi/bwiphy.h
/freebsd-11-stable/sys/dev/bwi/bwirf.c
/freebsd-11-stable/sys/dev/bwi/bwirf.h
/freebsd-11-stable/sys/dev/bwi/if_bwi.c
/freebsd-11-stable/sys/dev/bwi/if_bwi_pci.c
/freebsd-11-stable/sys/dev/bwi/if_bwireg.h
/freebsd-11-stable/sys/dev/bwi/if_bwivar.h
/freebsd-11-stable/sys/dev/bwn/if_bwn.c
/freebsd-11-stable/sys/dev/bwn/if_bwnreg.h
/freebsd-11-stable/sys/dev/bwn/if_bwnvar.h
/freebsd-11-stable/sys/dev/bxe/57710_init_values.c
/freebsd-11-stable/sys/dev/bxe/57710_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57711_init_values.c
/freebsd-11-stable/sys/dev/bxe/57711_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57712_init_values.c
/freebsd-11-stable/sys/dev/bxe/57712_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/bxe.c
/freebsd-11-stable/sys/dev/bxe/bxe.h
/freebsd-11-stable/sys/dev/bxe/bxe_dcb.h
/freebsd-11-stable/sys/dev/bxe/bxe_debug.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.h
/freebsd-11-stable/sys/dev/bxe/bxe_stats.c
/freebsd-11-stable/sys/dev/bxe/bxe_stats.h
/freebsd-11-stable/sys/dev/bxe/ecore_fw_defs.h
/freebsd-11-stable/sys/dev/bxe/ecore_hsi.h
/freebsd-11-stable/sys/dev/bxe/ecore_init.h
/freebsd-11-stable/sys/dev/bxe/ecore_init_ops.h
/freebsd-11-stable/sys/dev/bxe/ecore_mfw_req.h
/freebsd-11-stable/sys/dev/bxe/ecore_reg.h
/freebsd-11-stable/sys/dev/bxe/ecore_sp.c
/freebsd-11-stable/sys/dev/bxe/ecore_sp.h
/freebsd-11-stable/sys/dev/cadence/if_cgem.c
/freebsd-11-stable/sys/dev/cadence/if_cgem_hw.h
/freebsd-11-stable/sys/dev/cardbus/cardbus.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.h
/freebsd-11-stable/sys/dev/cardbus/cardbus_device.c
/freebsd-11-stable/sys/dev/cardbus/cardbusreg.h
/freebsd-11-stable/sys/dev/cardbus/cardbusvar.h
/freebsd-11-stable/sys/dev/cas/if_cas.c
/freebsd-11-stable/sys/dev/cas/if_casreg.h
/freebsd-11-stable/sys/dev/cas/if_casvar.h
/freebsd-11-stable/sys/dev/cesa/cesa.c
/freebsd-11-stable/sys/dev/cesa/cesa.h
/freebsd-11-stable/sys/dev/cfe/cfe_api.c
/freebsd-11-stable/sys/dev/cfe/cfe_api.h
/freebsd-11-stable/sys/dev/cfe/cfe_api_int.h
/freebsd-11-stable/sys/dev/cfe/cfe_console.c
/freebsd-11-stable/sys/dev/cfe/cfe_env.c
/freebsd-11-stable/sys/dev/cfe/cfe_error.h
/freebsd-11-stable/sys/dev/cfe/cfe_ioctl.h
/freebsd-11-stable/sys/dev/cfe/cfe_resource.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_fdt.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_ixp4xx.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_nexus.c
/freebsd-11-stable/sys/dev/cfi/cfi_core.c
/freebsd-11-stable/sys/dev/cfi/cfi_dev.c
/freebsd-11-stable/sys/dev/cfi/cfi_disk.c
/freebsd-11-stable/sys/dev/cfi/cfi_reg.h
/freebsd-11-stable/sys/dev/cfi/cfi_var.h
/freebsd-11-stable/sys/dev/ciss/ciss.c
/freebsd-11-stable/sys/dev/ciss/cissio.h
/freebsd-11-stable/sys/dev/ciss/cissreg.h
/freebsd-11-stable/sys/dev/ciss/cissvar.h
/freebsd-11-stable/sys/dev/cm/if_cm_isa.c
/freebsd-11-stable/sys/dev/cm/smc90cx6.c
/freebsd-11-stable/sys/dev/cm/smc90cx6reg.h
/freebsd-11-stable/sys/dev/cm/smc90cx6var.h
/freebsd-11-stable/sys/dev/cmx/cmx_pccard.c
/freebsd-11-stable/sys/dev/cmx/cmxreg.h
/freebsd-11-stable/sys/dev/cmx/cmxvar.h
/freebsd-11-stable/sys/dev/coretemp/coretemp.c
/freebsd-11-stable/sys/dev/cpuctl/cpuctl.c
/freebsd-11-stable/sys/dev/cpufreq/ichss.c
/freebsd-11-stable/sys/dev/cs/if_cs.c
/freebsd-11-stable/sys/dev/cs/if_cs_isa.c
/freebsd-11-stable/sys/dev/cs/if_cs_pccard.c
/freebsd-11-stable/sys/dev/cs/if_csreg.h
/freebsd-11-stable/sys/dev/cs/if_csvar.h
/freebsd-11-stable/sys/dev/cxgb/bin2h.pl
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_ael1002.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_aq100x.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_common.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_firmware_exports.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mc5.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mv88e1xxx.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_regs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_sge_defs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_cpl.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_hw.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tcb.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tn1010.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc7323.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc8211.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_xgmac.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_adapter.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_ioctl.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_main.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_offload.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_osdep.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_sge.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_t3fw.h
/freebsd-11-stable/sys/dev/cxgb/sys/mvec.h
/freebsd-11-stable/sys/dev/cxgb/sys/uipc_mvec.c
/freebsd-11-stable/sys/dev/cxgb/t3b_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3b_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgb/t3c_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3c_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgbe/adapter.h
/freebsd-11-stable/sys/dev/cxgbe/common/common.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.c
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_msg.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs_values.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_tcb.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cm.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cq.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/device.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/ev.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/id_table.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/mem.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/provider.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/qp.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/resource.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/t4.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/user.h
/freebsd-11-stable/sys/dev/cxgbe/offload.h
/freebsd-11-stable/sys/dev/cxgbe/osdep.h
/freebsd-11-stable/sys/dev/cxgbe/t4_ioctl.h
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.h
/freebsd-11-stable/sys/dev/cxgbe/t4_main.c
/freebsd-11-stable/sys/dev/cxgbe/t4_sge.c
/freebsd-11-stable/sys/dev/cxgbe/t4_tracer.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_connect.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_cpl_io.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_ddp.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_listen.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.h
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.h
/freebsd-11-stable/sys/dev/cy/cy.c
/freebsd-11-stable/sys/dev/cy/cy_isa.c
/freebsd-11-stable/sys/dev/cy/cy_pci.c
/freebsd-11-stable/sys/dev/cy/cyreg.h
/freebsd-11-stable/sys/dev/cy/cyvar.h
/freebsd-11-stable/sys/dev/dc/dcphy.c
/freebsd-11-stable/sys/dev/dc/if_dc.c
/freebsd-11-stable/sys/dev/dc/if_dcreg.h
/freebsd-11-stable/sys/dev/dc/pnphy.c
/freebsd-11-stable/sys/dev/dcons/dcons.c
/freebsd-11-stable/sys/dev/dcons/dcons.h
/freebsd-11-stable/sys/dev/dcons/dcons_crom.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.h
/freebsd-11-stable/sys/dev/de/dc21040reg.h
/freebsd-11-stable/sys/dev/de/if_de.c
/freebsd-11-stable/sys/dev/de/if_devar.h
/freebsd-11-stable/sys/dev/dpms/dpms.c
/freebsd-11-stable/sys/dev/dpt/dpt.h
/freebsd-11-stable/sys/dev/dpt/dpt_pci.c
/freebsd-11-stable/sys/dev/dpt/dpt_scsi.c
/freebsd-11-stable/sys/dev/drm2/drm_gem.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.h
/freebsd-11-stable/sys/dev/drm2/drm_linux_list_sort.c
/freebsd-11-stable/sys/dev/drm2/i915/i915_gem.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_82540.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.h
/freebsd-11-stable/sys/dev/e1000/e1000_82542.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.h
/freebsd-11-stable/sys/dev/e1000/e1000_82571.c
/freebsd-11-stable/sys/dev/e1000/e1000_82571.h
/freebsd-11-stable/sys/dev/e1000/e1000_82575.c
/freebsd-11-stable/sys/dev/e1000/e1000_82575.h
/freebsd-11-stable/sys/dev/e1000/e1000_api.c
/freebsd-11-stable/sys/dev/e1000/e1000_api.h
/freebsd-11-stable/sys/dev/e1000/e1000_defines.h
/freebsd-11-stable/sys/dev/e1000/e1000_hw.h
/freebsd-11-stable/sys/dev/e1000/e1000_i210.c
/freebsd-11-stable/sys/dev/e1000/e1000_i210.h
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_mac.c
/freebsd-11-stable/sys/dev/e1000/e1000_mac.h
/freebsd-11-stable/sys/dev/e1000/e1000_manage.c
/freebsd-11-stable/sys/dev/e1000/e1000_manage.h
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.c
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.h
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.c
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.h
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.c
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.h
/freebsd-11-stable/sys/dev/e1000/e1000_phy.c
/freebsd-11-stable/sys/dev/e1000/e1000_phy.h
/freebsd-11-stable/sys/dev/e1000/e1000_regs.h
/freebsd-11-stable/sys/dev/e1000/e1000_vf.c
/freebsd-11-stable/sys/dev/e1000/e1000_vf.h
/freebsd-11-stable/sys/dev/e1000/if_em.c
/freebsd-11-stable/sys/dev/e1000/if_em.h
/freebsd-11-stable/sys/dev/ed/ax88x90reg.h
/freebsd-11-stable/sys/dev/ed/dl100xxreg.h
/freebsd-11-stable/sys/dev/ed/if_ed.c
/freebsd-11-stable/sys/dev/ed/if_ed_3c503.c
/freebsd-11-stable/sys/dev/ed/if_ed_hpp.c
/freebsd-11-stable/sys/dev/ed/if_ed_isa.c
/freebsd-11-stable/sys/dev/ed/if_ed_novell.c
/freebsd-11-stable/sys/dev/ed/if_ed_pccard.c
/freebsd-11-stable/sys/dev/ed/if_ed_pci.c
/freebsd-11-stable/sys/dev/ed/if_ed_rtl80x9.c
/freebsd-11-stable/sys/dev/ed/if_ed_sic.c
/freebsd-11-stable/sys/dev/ed/if_ed_wd80x3.c
/freebsd-11-stable/sys/dev/ed/if_edvar.h
/freebsd-11-stable/sys/dev/ed/rtl80x9reg.h
/freebsd-11-stable/sys/dev/ed/tc5299jreg.h
/freebsd-11-stable/sys/dev/ep/if_ep.c
/freebsd-11-stable/sys/dev/ep/if_ep_isa.c
/freebsd-11-stable/sys/dev/ep/if_ep_pccard.c
/freebsd-11-stable/sys/dev/ep/if_epreg.h
/freebsd-11-stable/sys/dev/ep/if_epvar.h
/freebsd-11-stable/sys/dev/esp/am53c974reg.h
/freebsd-11-stable/sys/dev/esp/esp_pci.c
/freebsd-11-stable/sys/dev/esp/esp_sbus.c
/freebsd-11-stable/sys/dev/esp/ncr53c9x.c
/freebsd-11-stable/sys/dev/esp/ncr53c9xreg.h
/freebsd-11-stable/sys/dev/esp/ncr53c9xvar.h
/freebsd-11-stable/sys/dev/et/if_et.c
/freebsd-11-stable/sys/dev/et/if_etreg.h
/freebsd-11-stable/sys/dev/et/if_etvar.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchreg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchvar.h
/freebsd-11-stable/sys/dev/etherswitch/etherswitch.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_reg.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_var.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.c
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.h
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rb.c
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rbvar.h
/freebsd-11-stable/sys/dev/etherswitch/ukswitch/ukswitch.c
/freebsd-11-stable/sys/dev/ex/if_ex.c
/freebsd-11-stable/sys/dev/ex/if_ex_isa.c
/freebsd-11-stable/sys/dev/ex/if_ex_pccard.c
/freebsd-11-stable/sys/dev/ex/if_exreg.h
/freebsd-11-stable/sys/dev/ex/if_exvar.h
/freebsd-11-stable/sys/dev/exca/exca.c
/freebsd-11-stable/sys/dev/exca/excareg.h
/freebsd-11-stable/sys/dev/exca/excavar.h
/freebsd-11-stable/sys/dev/fb/creator.c
/freebsd-11-stable/sys/dev/fb/creatorreg.h
/freebsd-11-stable/sys/dev/fb/fb.c
/freebsd-11-stable/sys/dev/fb/fbd.c
/freebsd-11-stable/sys/dev/fb/fbreg.h
/freebsd-11-stable/sys/dev/fb/gallant12x22.c
/freebsd-11-stable/sys/dev/fb/machfb.c
/freebsd-11-stable/sys/dev/fb/s3_pci.c
/freebsd-11-stable/sys/dev/fb/splash.c
/freebsd-11-stable/sys/dev/fb/splash_bmp.c
/freebsd-11-stable/sys/dev/fb/splash_pcx.c
/freebsd-11-stable/sys/dev/fb/splash_txt.c
/freebsd-11-stable/sys/dev/fb/splashreg.h
/freebsd-11-stable/sys/dev/fb/vesa.c
/freebsd-11-stable/sys/dev/fb/vesa.h
/freebsd-11-stable/sys/dev/fb/vga.c
/freebsd-11-stable/sys/dev/fb/vgareg.h
/freebsd-11-stable/sys/dev/fdc/fdc.c
/freebsd-11-stable/sys/dev/fdc/fdc_acpi.c
/freebsd-11-stable/sys/dev/fdc/fdc_isa.c
/freebsd-11-stable/sys/dev/fdc/fdc_pccard.c
/freebsd-11-stable/sys/dev/fdc/fdcvar.h
/freebsd-11-stable/sys/dev/fdt/fdt_common.c
/freebsd-11-stable/sys/dev/fdt/fdt_common.h
/freebsd-11-stable/sys/dev/fdt/fdt_powerpc.c
/freebsd-11-stable/sys/dev/fdt/fdt_slicer.c
/freebsd-11-stable/sys/dev/fdt/simplebus.c
/freebsd-11-stable/sys/dev/ffec/if_ffec.c
/freebsd-11-stable/sys/dev/ffec/if_ffecreg.h
/freebsd-11-stable/sys/dev/filemon/filemon.c
/freebsd-11-stable/sys/dev/filemon/filemon.h
/freebsd-11-stable/sys/dev/filemon/filemon_wrapper.c
/freebsd-11-stable/sys/dev/firewire/firewire.c
/freebsd-11-stable/sys/dev/firewire/firewire.h
/freebsd-11-stable/sys/dev/firewire/firewire_phy.h
/freebsd-11-stable/sys/dev/firewire/firewirereg.h
/freebsd-11-stable/sys/dev/firewire/fwcrom.c
/freebsd-11-stable/sys/dev/firewire/fwdev.c
/freebsd-11-stable/sys/dev/firewire/fwdma.c
/freebsd-11-stable/sys/dev/firewire/fwdma.h
/freebsd-11-stable/sys/dev/firewire/fwmem.c
/freebsd-11-stable/sys/dev/firewire/fwmem.h
/freebsd-11-stable/sys/dev/firewire/fwohci.c
/freebsd-11-stable/sys/dev/firewire/fwohci_pci.c
/freebsd-11-stable/sys/dev/firewire/fwohcireg.h
/freebsd-11-stable/sys/dev/firewire/fwohcivar.h
/freebsd-11-stable/sys/dev/firewire/fwphyreg.h
/freebsd-11-stable/sys/dev/firewire/iec13213.h
/freebsd-11-stable/sys/dev/firewire/iec68113.h
/freebsd-11-stable/sys/dev/firewire/if_fwe.c
/freebsd-11-stable/sys/dev/firewire/if_fwevar.h
/freebsd-11-stable/sys/dev/firewire/if_fwip.c
/freebsd-11-stable/sys/dev/firewire/if_fwipvar.h
/freebsd-11-stable/sys/dev/firewire/sbp.c
/freebsd-11-stable/sys/dev/firewire/sbp.h
/freebsd-11-stable/sys/dev/firewire/sbp_targ.c
/freebsd-11-stable/sys/dev/flash/at45d.c
/freebsd-11-stable/sys/dev/flash/mx25l.c
/freebsd-11-stable/sys/dev/flash/mx25lreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxp.c
/freebsd-11-stable/sys/dev/fxp/if_fxpreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxpvar.h
/freebsd-11-stable/sys/dev/fxp/inphy.c
/freebsd-11-stable/sys/dev/fxp/inphyreg.h
/freebsd-11-stable/sys/dev/fxp/rcvbundl.h
/freebsd-11-stable/sys/dev/gem/if_gem.c
/freebsd-11-stable/sys/dev/gem/if_gem_pci.c
/freebsd-11-stable/sys/dev/gem/if_gem_sbus.c
/freebsd-11-stable/sys/dev/gem/if_gemreg.h
/freebsd-11-stable/sys/dev/gem/if_gemvar.h
/freebsd-11-stable/sys/dev/glxiic/glxiic.c
/freebsd-11-stable/sys/dev/glxsb/glxsb.h
/freebsd-11-stable/sys/dev/glxsb/glxsb_hash.c
/freebsd-11-stable/sys/dev/gpio/gpiobus.c
/freebsd-11-stable/sys/dev/gpio/gpiobusvar.h
/freebsd-11-stable/sys/dev/gpio/gpioc.c
/freebsd-11-stable/sys/dev/gpio/gpioiic.c
/freebsd-11-stable/sys/dev/gpio/gpioled.c
/freebsd-11-stable/sys/dev/gpio/ofw_gpiobus.c
/freebsd-11-stable/sys/dev/gxemul/cons/gxemul_cons.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_disk.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_diskreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/gxreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/if_gx.c
/freebsd-11-stable/sys/dev/hifn/hifn7751.c
/freebsd-11-stable/sys/dev/hifn/hifn7751reg.h
/freebsd-11-stable/sys/dev/hifn/hifn7751var.h
/freebsd-11-stable/sys/dev/hme/if_hme.c
/freebsd-11-stable/sys/dev/hme/if_hme_pci.c
/freebsd-11-stable/sys/dev/hme/if_hme_sbus.c
/freebsd-11-stable/sys/dev/hme/if_hmereg.h
/freebsd-11-stable/sys/dev/hme/if_hmevar.h
/freebsd-11-stable/sys/dev/hpt27xx/array.h
/freebsd-11-stable/sys/dev/hpt27xx/him.h
/freebsd-11-stable/sys/dev/hpt27xx/himfuncs.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_os_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_osm_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hptintf.h
/freebsd-11-stable/sys/dev/hpt27xx/ldm.h
/freebsd-11-stable/sys/dev/hpt27xx/list.h
/freebsd-11-stable/sys/dev/hpt27xx/os_bsd.h
/freebsd-11-stable/sys/dev/hpt27xx/osm.h
/freebsd-11-stable/sys/dev/hpt27xx/wj.h
/freebsd-11-stable/sys/dev/hptiop/hptiop.c
/freebsd-11-stable/sys/dev/hptiop/hptiop.h
/freebsd-11-stable/sys/dev/hptmv/access601.h
/freebsd-11-stable/sys/dev/hptmv/array.h
/freebsd-11-stable/sys/dev/hptmv/atapi.h
/freebsd-11-stable/sys/dev/hptmv/command.h
/freebsd-11-stable/sys/dev/hptmv/entry.c
/freebsd-11-stable/sys/dev/hptmv/global.h
/freebsd-11-stable/sys/dev/hptmv/gui_lib.c
/freebsd-11-stable/sys/dev/hptmv/hptintf.h
/freebsd-11-stable/sys/dev/hptmv/hptproc.c
/freebsd-11-stable/sys/dev/hptmv/ioctl.c
/freebsd-11-stable/sys/dev/hptmv/mv.c
/freebsd-11-stable/sys/dev/hptmv/mvOs.h
/freebsd-11-stable/sys/dev/hptmv/mvSata.h
/freebsd-11-stable/sys/dev/hptmv/mvStorageDev.h
/freebsd-11-stable/sys/dev/hptmv/osbsd.h
/freebsd-11-stable/sys/dev/hptmv/raid5n.h
/freebsd-11-stable/sys/dev/hptmv/vdevice.h
/freebsd-11-stable/sys/dev/hptnr/array.h
/freebsd-11-stable/sys/dev/hptnr/him.h
/freebsd-11-stable/sys/dev/hptnr/himfuncs.h
/freebsd-11-stable/sys/dev/hptnr/hptintf.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_os_bsd.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptnr/ldm.h
/freebsd-11-stable/sys/dev/hptnr/list.h
/freebsd-11-stable/sys/dev/hptnr/os_bsd.h
/freebsd-11-stable/sys/dev/hptnr/osm.h
/freebsd-11-stable/sys/dev/hptnr/wj.h
/freebsd-11-stable/sys/dev/hptrr/array.h
/freebsd-11-stable/sys/dev/hptrr/him.h
/freebsd-11-stable/sys/dev/hptrr/himfuncs.h
/freebsd-11-stable/sys/dev/hptrr/hptintf.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_os_bsd.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptrr/ldm.h
/freebsd-11-stable/sys/dev/hptrr/list.h
/freebsd-11-stable/sys/dev/hptrr/os_bsd.h
/freebsd-11-stable/sys/dev/hptrr/osm.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_arm.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_intel.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_logging.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips24k.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mod.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mpc7xxx.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_octeon.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppc970.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_sparc64.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_x86.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.h
/freebsd-11-stable/sys/dev/hwpmc/pmc_events.h
/freebsd-11-stable/sys/dev/hyperv/include/hyperv.h
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_vstorage.h
/freebsd-11-stable/sys/dev/hyperv/utilities/hv_kvp.h
/freebsd-11-stable/sys/dev/ic/cd1400.h
/freebsd-11-stable/sys/dev/ic/cd180.h
/freebsd-11-stable/sys/dev/ic/esp.h
/freebsd-11-stable/sys/dev/ic/i8253reg.h
/freebsd-11-stable/sys/dev/ic/i82586.h
/freebsd-11-stable/sys/dev/ic/i8259.h
/freebsd-11-stable/sys/dev/ic/nec765.h
/freebsd-11-stable/sys/dev/ic/ns16550.h
/freebsd-11-stable/sys/dev/ic/quicc.h
/freebsd-11-stable/sys/dev/ic/sab82532.h
/freebsd-11-stable/sys/dev/ic/via6522reg.h
/freebsd-11-stable/sys/dev/ic/z8530.h
/freebsd-11-stable/sys/dev/ichwd/ichwd.c
/freebsd-11-stable/sys/dev/ichwd/ichwd.h
/freebsd-11-stable/sys/dev/ida/ida.c
/freebsd-11-stable/sys/dev/ida/ida_disk.c
/freebsd-11-stable/sys/dev/ida/ida_pci.c
/freebsd-11-stable/sys/dev/ida/idareg.h
/freebsd-11-stable/sys/dev/ida/idavar.h
/freebsd-11-stable/sys/dev/if_ndis/if_ndis.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pccard.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pci.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_usb.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndisvar.h
/freebsd-11-stable/sys/dev/iicbus/ad7417.c
/freebsd-11-stable/sys/dev/iicbus/ad7418.c
/freebsd-11-stable/sys/dev/iicbus/adt746x.c
/freebsd-11-stable/sys/dev/iicbus/ds1631.c
/freebsd-11-stable/sys/dev/iicbus/ds1672.c
/freebsd-11-stable/sys/dev/iicbus/ds1775.c
/freebsd-11-stable/sys/dev/iicbus/icee.c
/freebsd-11-stable/sys/dev/iicbus/if_ic.c
/freebsd-11-stable/sys/dev/iicbus/iic.c
/freebsd-11-stable/sys/dev/iicbus/iic.h
/freebsd-11-stable/sys/dev/iicbus/iicbb.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.h
/freebsd-11-stable/sys/dev/iicbus/iicoc.c
/freebsd-11-stable/sys/dev/iicbus/iicoc.h
/freebsd-11-stable/sys/dev/iicbus/iiconf.c
/freebsd-11-stable/sys/dev/iicbus/iiconf.h
/freebsd-11-stable/sys/dev/iicbus/iicsmb.c
/freebsd-11-stable/sys/dev/iicbus/max6690.c
/freebsd-11-stable/sys/dev/iicbus/s35390a.c
/freebsd-11-stable/sys/dev/iir/iir.c
/freebsd-11-stable/sys/dev/iir/iir.h
/freebsd-11-stable/sys/dev/iir/iir_ctrl.c
/freebsd-11-stable/sys/dev/iir/iir_pci.c
/freebsd-11-stable/sys/dev/io/iodev.c
/freebsd-11-stable/sys/dev/io/iodev.h
/freebsd-11-stable/sys/dev/ipmi/ipmi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_acpi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_isa.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_kcs.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_linux.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_pci.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbios.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbus.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smic.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_ssif.c
/freebsd-11-stable/sys/dev/ipmi/ipmivars.h
/freebsd-11-stable/sys/dev/ips/ips.c
/freebsd-11-stable/sys/dev/ips/ips.h
/freebsd-11-stable/sys/dev/ips/ips_commands.c
/freebsd-11-stable/sys/dev/ips/ips_disk.c
/freebsd-11-stable/sys/dev/ips/ips_disk.h
/freebsd-11-stable/sys/dev/ips/ips_ioctl.c
/freebsd-11-stable/sys/dev/ips/ips_ioctl.h
/freebsd-11-stable/sys/dev/ips/ips_pci.c
/freebsd-11-stable/sys/dev/ips/ipsreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipw.c
/freebsd-11-stable/sys/dev/ipw/if_ipwreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipwvar.h
/freebsd-11-stable/sys/dev/isci/environment.h
/freebsd-11-stable/sys/dev/isci/isci.c
/freebsd-11-stable/sys/dev/isci/isci.h
/freebsd-11-stable/sys/dev/isci/isci_controller.c
/freebsd-11-stable/sys/dev/isci/isci_domain.c
/freebsd-11-stable/sys/dev/isci/isci_interrupt.c
/freebsd-11-stable/sys/dev/isci/isci_io_request.c
/freebsd-11-stable/sys/dev/isci/isci_logger.c
/freebsd-11-stable/sys/dev/isci/isci_oem_parameters.c
/freebsd-11-stable/sys/dev/isci/isci_remote_device.c
/freebsd-11-stable/sys/dev/isci/isci_sysctl.c
/freebsd-11-stable/sys/dev/isci/isci_task_request.c
/freebsd-11-stable/sys/dev/isci/isci_timer.c
/freebsd-11-stable/sys/dev/isci/scil/intel_ata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_pci.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sas.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sat.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_scsi.h
/freebsd-11-stable/sys/dev/isci/scil/sati.c
/freebsd-11-stable/sys/dev/isci/scil/sati.h
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.c
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.h
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.c
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.h
/freebsd-11-stable/sys/dev/isci/scil/sati_callbacks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_design.h
/freebsd-11-stable/sys/dev/isci/scil/sati_device.c
/freebsd-11-stable/sys/dev/isci/scil/sati_device.h
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.c
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.h
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.c
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.h
/freebsd-11-stable/sys/dev/isci/scil/sati_move.c
/freebsd-11-stable/sys/dev/isci/scil/sati_move.h
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.c
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.h
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.c
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.c
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.h
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.c
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.h
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.c
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.h
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.c
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.h
/freebsd-11-stable/sys/dev/isci/scil/sati_translator_sequence.h
/freebsd-11-stable/sys/dev/isci/scil/sati_types.h
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.c
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.h
/freebsd-11-stable/sys/dev/isci/scil/sati_util.c
/freebsd-11-stable/sys/dev/isci/scil/sati_util.h
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.h
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller_constants.h
/freebsd-11-stable/sys/dev/isci/scil/sci_fast_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list_decorator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_overview.h
/freebsd-11-stable/sys/dev/isci/scil/sci_pool.h
/freebsd-11-stable/sys/dev/isci/scil/sci_simple_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_status.h
/freebsd-11-stable/sys/dev/isci/scil/sci_types.h
/freebsd-11-stable/sys/dev/isci/scil/sci_util.c
/freebsd-11-stable/sys/dev/isci/scil/sci_util.h
/freebsd-11-stable/sys/dev/isci/scil/scic_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scic_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scic_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_sgpio.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_ssp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_pio_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sgpio.h
/freebsd-11-stable/sys/dev/isci/scil/scic_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scif_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scif_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scif_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_design.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_sati_binding.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_timer.c
/freebsd-11-stable/sys/dev/isci/scil/scif_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scu_bios_definitions.h
/freebsd-11-stable/sys/dev/isci/scil/scu_completion_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scu_event_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scu_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_task_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_unsolicited_frame.h
/freebsd-11-stable/sys/dev/isci/scil/scu_viit_data.h
/freebsd-11-stable/sys/dev/isci/types.h
/freebsd-11-stable/sys/dev/iscsi/icl.c
/freebsd-11-stable/sys/dev/iscsi/icl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi.c
/freebsd-11-stable/sys/dev/iscsi/iscsi.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_ioctl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_proto.h
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_cam.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_sm.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_soc.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.h
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsivar.h
/freebsd-11-stable/sys/dev/isp/isp_freebsd.c
/freebsd-11-stable/sys/dev/isp/isp_freebsd.h
/freebsd-11-stable/sys/dev/isp/isp_ioctl.h
/freebsd-11-stable/sys/dev/isp/isp_library.c
/freebsd-11-stable/sys/dev/isp/isp_library.h
/freebsd-11-stable/sys/dev/isp/isp_sbus.c
/freebsd-11-stable/sys/dev/isp/isp_stds.h
/freebsd-11-stable/sys/dev/isp/isp_target.c
/freebsd-11-stable/sys/dev/isp/isp_target.h
/freebsd-11-stable/sys/dev/isp/ispreg.h
/freebsd-11-stable/sys/dev/ispfw/asm_1000.h
/freebsd-11-stable/sys/dev/ispfw/asm_1040.h
/freebsd-11-stable/sys/dev/ispfw/asm_1080.h
/freebsd-11-stable/sys/dev/ispfw/asm_12160.h
/freebsd-11-stable/sys/dev/ispfw/asm_2100.h
/freebsd-11-stable/sys/dev/ispfw/asm_2200.h
/freebsd-11-stable/sys/dev/ispfw/asm_2300.h
/freebsd-11-stable/sys/dev/ispfw/asm_2322.h
/freebsd-11-stable/sys/dev/ispfw/asm_2400.h
/freebsd-11-stable/sys/dev/ispfw/asm_2500.h
/freebsd-11-stable/sys/dev/ispfw/ispfw.c
/freebsd-11-stable/sys/dev/iwi/if_iwi.c
/freebsd-11-stable/sys/dev/iwi/if_iwireg.h
/freebsd-11-stable/sys/dev/iwi/if_iwivar.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.c
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb_osdep.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ids.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_osdep.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_type.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.h
/freebsd-11-stable/sys/dev/jme/if_jme.c
/freebsd-11-stable/sys/dev/jme/if_jmereg.h
/freebsd-11-stable/sys/dev/jme/if_jmevar.h
/freebsd-11-stable/sys/dev/joy/joy.c
/freebsd-11-stable/sys/dev/joy/joy_isa.c
/freebsd-11-stable/sys/dev/joy/joyvar.h
/freebsd-11-stable/sys/dev/kbd/kbd.c
/freebsd-11-stable/sys/dev/kbd/kbdreg.h
/freebsd-11-stable/sys/dev/kbd/kbdtables.h
/freebsd-11-stable/sys/dev/kbdmux/kbdmux.c
/freebsd-11-stable/sys/dev/ksyms/ksyms.c
/freebsd-11-stable/sys/dev/le/am7990.c
/freebsd-11-stable/sys/dev/le/am79900.c
/freebsd-11-stable/sys/dev/le/am79900reg.h
/freebsd-11-stable/sys/dev/le/am79900var.h
/freebsd-11-stable/sys/dev/le/am7990reg.h
/freebsd-11-stable/sys/dev/le/am7990var.h
/freebsd-11-stable/sys/dev/le/if_le_isa.c
/freebsd-11-stable/sys/dev/le/if_le_lebuffer.c
/freebsd-11-stable/sys/dev/le/if_le_ledma.c
/freebsd-11-stable/sys/dev/le/if_le_pci.c
/freebsd-11-stable/sys/dev/le/lance.c
/freebsd-11-stable/sys/dev/le/lancereg.h
/freebsd-11-stable/sys/dev/le/lancevar.h
/freebsd-11-stable/sys/dev/le/lebuffer_sbus.c
/freebsd-11-stable/sys/dev/lge/if_lge.c
/freebsd-11-stable/sys/dev/lge/if_lgereg.h
/freebsd-11-stable/sys/dev/lmc/if_lmc.c
/freebsd-11-stable/sys/dev/lmc/if_lmc.h
/freebsd-11-stable/sys/dev/malo/if_malo.c
/freebsd-11-stable/sys/dev/malo/if_malo.h
/freebsd-11-stable/sys/dev/malo/if_malo_pci.c
/freebsd-11-stable/sys/dev/malo/if_malohal.c
/freebsd-11-stable/sys/dev/malo/if_malohal.h
/freebsd-11-stable/sys/dev/malo/if_maloioctl.h
/freebsd-11-stable/sys/dev/mc146818/mc146818.c
/freebsd-11-stable/sys/dev/mc146818/mc146818var.h
/freebsd-11-stable/sys/dev/md/md.c
/freebsd-11-stable/sys/dev/mem/memdev.c
/freebsd-11-stable/sys/dev/mem/memutil.c
/freebsd-11-stable/sys/dev/mfi/mfi.c
/freebsd-11-stable/sys/dev/mfi/mfi_cam.c
/freebsd-11-stable/sys/dev/mfi/mfi_debug.c
/freebsd-11-stable/sys/dev/mfi/mfi_disk.c
/freebsd-11-stable/sys/dev/mfi/mfi_ioctl.h
/freebsd-11-stable/sys/dev/mfi/mfi_linux.c
/freebsd-11-stable/sys/dev/mfi/mfi_pci.c
/freebsd-11-stable/sys/dev/mfi/mfi_syspd.c
/freebsd-11-stable/sys/dev/mfi/mfi_tbolt.c
/freebsd-11-stable/sys/dev/mfi/mfireg.h
/freebsd-11-stable/sys/dev/mfi/mfivar.h
/freebsd-11-stable/sys/dev/mge/if_mge.c
/freebsd-11-stable/sys/dev/mge/if_mgevar.h
/freebsd-11-stable/sys/dev/mii/acphy.c
/freebsd-11-stable/sys/dev/mii/acphyreg.h
/freebsd-11-stable/sys/dev/mii/amphy.c
/freebsd-11-stable/sys/dev/mii/amphyreg.h
/freebsd-11-stable/sys/dev/mii/atphy.c
/freebsd-11-stable/sys/dev/mii/atphyreg.h
/freebsd-11-stable/sys/dev/mii/axphy.c
/freebsd-11-stable/sys/dev/mii/bmtphy.c
/freebsd-11-stable/sys/dev/mii/bmtphyreg.h
/freebsd-11-stable/sys/dev/mii/brgphy.c
/freebsd-11-stable/sys/dev/mii/brgphyreg.h
/freebsd-11-stable/sys/dev/mii/ciphy.c
/freebsd-11-stable/sys/dev/mii/ciphyreg.h
/freebsd-11-stable/sys/dev/mii/e1000phy.c
/freebsd-11-stable/sys/dev/mii/e1000phyreg.h
/freebsd-11-stable/sys/dev/mii/gentbi.c
/freebsd-11-stable/sys/dev/mii/icsphy.c
/freebsd-11-stable/sys/dev/mii/icsphyreg.h
/freebsd-11-stable/sys/dev/mii/ip1000phy.c
/freebsd-11-stable/sys/dev/mii/ip1000phyreg.h
/freebsd-11-stable/sys/dev/mii/jmphy.c
/freebsd-11-stable/sys/dev/mii/jmphyreg.h
/freebsd-11-stable/sys/dev/mii/lxtphy.c
/freebsd-11-stable/sys/dev/mii/lxtphyreg.h
/freebsd-11-stable/sys/dev/mii/mii.c
/freebsd-11-stable/sys/dev/mii/mii.h
/freebsd-11-stable/sys/dev/mii/mii_bitbang.c
/freebsd-11-stable/sys/dev/mii/mii_bitbang.h
/freebsd-11-stable/sys/dev/mii/mii_physubr.c
/freebsd-11-stable/sys/dev/mii/miivar.h
/freebsd-11-stable/sys/dev/mii/mlphy.c
/freebsd-11-stable/sys/dev/mii/nsgphy.c
/freebsd-11-stable/sys/dev/mii/nsgphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphy.c
/freebsd-11-stable/sys/dev/mii/nsphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphyter.c
/freebsd-11-stable/sys/dev/mii/nsphyterreg.h
/freebsd-11-stable/sys/dev/mii/pnaphy.c
/freebsd-11-stable/sys/dev/mii/qsphy.c
/freebsd-11-stable/sys/dev/mii/qsphyreg.h
/freebsd-11-stable/sys/dev/mii/rdcphy.c
/freebsd-11-stable/sys/dev/mii/rdcphyreg.h
/freebsd-11-stable/sys/dev/mii/rgephy.c
/freebsd-11-stable/sys/dev/mii/rgephyreg.h
/freebsd-11-stable/sys/dev/mii/rlphy.c
/freebsd-11-stable/sys/dev/mii/rlswitch.c
/freebsd-11-stable/sys/dev/mii/smcphy.c
/freebsd-11-stable/sys/dev/mii/smscphy.c
/freebsd-11-stable/sys/dev/mii/tdkphy.c
/freebsd-11-stable/sys/dev/mii/tdkphyreg.h
/freebsd-11-stable/sys/dev/mii/tlphy.c
/freebsd-11-stable/sys/dev/mii/tlphyreg.h
/freebsd-11-stable/sys/dev/mii/truephy.c
/freebsd-11-stable/sys/dev/mii/truephyreg.h
/freebsd-11-stable/sys/dev/mii/ukphy.c
/freebsd-11-stable/sys/dev/mii/ukphy_subr.c
/freebsd-11-stable/sys/dev/mii/xmphy.c
/freebsd-11-stable/sys/dev/mii/xmphyreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txx.c
/freebsd-11-stable/sys/dev/mk48txx/mk48txxreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txxvar.h
/freebsd-11-stable/sys/dev/mlx/mlx.c
/freebsd-11-stable/sys/dev/mlx/mlx_disk.c
/freebsd-11-stable/sys/dev/mlx/mlx_pci.c
/freebsd-11-stable/sys/dev/mlx/mlxio.h
/freebsd-11-stable/sys/dev/mlx/mlxreg.h
/freebsd-11-stable/sys/dev/mlx/mlxvar.h
/freebsd-11-stable/sys/dev/mly/mly.c
/freebsd-11-stable/sys/dev/mly/mly_tables.h
/freebsd-11-stable/sys/dev/mly/mlyio.h
/freebsd-11-stable/sys/dev/mly/mlyreg.h
/freebsd-11-stable/sys/dev/mly/mlyvar.h
/freebsd-11-stable/sys/dev/mmc/bridge.h
/freebsd-11-stable/sys/dev/mmc/mmc.c
/freebsd-11-stable/sys/dev/mmc/mmcbrvar.h
/freebsd-11-stable/sys/dev/mmc/mmcreg.h
/freebsd-11-stable/sys/dev/mmc/mmcsd.c
/freebsd-11-stable/sys/dev/mmc/mmcvar.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_cnfg.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_hbd.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_init.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ioc.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ra.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_raid.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_sas.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_targ.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_tool.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_type.h
/freebsd-11-stable/sys/dev/mps/mps.c
/freebsd-11-stable/sys/dev/mps/mps_config.c
/freebsd-11-stable/sys/dev/mps/mps_ioctl.h
/freebsd-11-stable/sys/dev/mps/mps_mapping.c
/freebsd-11-stable/sys/dev/mps/mps_mapping.h
/freebsd-11-stable/sys/dev/mps/mps_pci.c
/freebsd-11-stable/sys/dev/mps/mps_sas.c
/freebsd-11-stable/sys/dev/mps/mps_sas.h
/freebsd-11-stable/sys/dev/mps/mps_sas_lsi.c
/freebsd-11-stable/sys/dev/mps/mps_table.c
/freebsd-11-stable/sys/dev/mps/mps_table.h
/freebsd-11-stable/sys/dev/mps/mps_user.c
/freebsd-11-stable/sys/dev/mps/mpsvar.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_cnfg.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_init.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_ioc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_lan.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_raid.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_targ.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_tool.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_type.h
/freebsd-11-stable/sys/dev/mpt/mpt.c
/freebsd-11-stable/sys/dev/mpt/mpt.h
/freebsd-11-stable/sys/dev/mpt/mpt_cam.c
/freebsd-11-stable/sys/dev/mpt/mpt_cam.h
/freebsd-11-stable/sys/dev/mpt/mpt_debug.c
/freebsd-11-stable/sys/dev/mpt/mpt_pci.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.h
/freebsd-11-stable/sys/dev/mpt/mpt_reg.h
/freebsd-11-stable/sys/dev/mpt/mpt_user.c
/freebsd-11-stable/sys/dev/mse/mse.c
/freebsd-11-stable/sys/dev/mse/mse_isa.c
/freebsd-11-stable/sys/dev/mse/msevar.h
/freebsd-11-stable/sys/dev/msk/if_msk.c
/freebsd-11-stable/sys/dev/msk/if_mskreg.h
/freebsd-11-stable/sys/dev/mvs/mvs.c
/freebsd-11-stable/sys/dev/mvs/mvs.h
/freebsd-11-stable/sys/dev/mvs/mvs_pci.c
/freebsd-11-stable/sys/dev/mvs/mvs_soc.c
/freebsd-11-stable/sys/dev/mwl/if_mwl.c
/freebsd-11-stable/sys/dev/mwl/if_mwl_pci.c
/freebsd-11-stable/sys/dev/mwl/if_mwlioctl.h
/freebsd-11-stable/sys/dev/mwl/if_mwlvar.h
/freebsd-11-stable/sys/dev/mwl/mwldiag.h
/freebsd-11-stable/sys/dev/mwl/mwlhal.c
/freebsd-11-stable/sys/dev/mwl/mwlhal.h
/freebsd-11-stable/sys/dev/mwl/mwlreg.h
/freebsd-11-stable/sys/dev/mxge/eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/ethp_z8e.h
/freebsd-11-stable/sys/dev/mxge/if_mxge.c
/freebsd-11-stable/sys/dev/mxge/if_mxge_var.h
/freebsd-11-stable/sys/dev/mxge/mcp_gen_header.h
/freebsd-11-stable/sys/dev/mxge/mxge_mcp.h
/freebsd-11-stable/sys/dev/mxge/rss_eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/rss_ethp_z8e.h
/freebsd-11-stable/sys/dev/my/if_my.c
/freebsd-11-stable/sys/dev/my/if_myreg.h
/freebsd-11-stable/sys/dev/nand/nand.c
/freebsd-11-stable/sys/dev/nand/nand.h
/freebsd-11-stable/sys/dev/nand/nand_bbt.c
/freebsd-11-stable/sys/dev/nand/nand_cdev.c
/freebsd-11-stable/sys/dev/nand/nand_dev.h
/freebsd-11-stable/sys/dev/nand/nand_ecc_pos.h
/freebsd-11-stable/sys/dev/nand/nand_generic.c
/freebsd-11-stable/sys/dev/nand/nand_geom.c
/freebsd-11-stable/sys/dev/nand/nand_id.c
/freebsd-11-stable/sys/dev/nand/nandbus.c
/freebsd-11-stable/sys/dev/nand/nandbus.h
/freebsd-11-stable/sys/dev/nand/nandsim.c
/freebsd-11-stable/sys/dev/nand/nandsim.h
/freebsd-11-stable/sys/dev/nand/nandsim_chip.c
/freebsd-11-stable/sys/dev/nand/nandsim_chip.h
/freebsd-11-stable/sys/dev/nand/nandsim_ctrl.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.h
/freebsd-11-stable/sys/dev/nand/nandsim_swap.c
/freebsd-11-stable/sys/dev/nand/nandsim_swap.h
/freebsd-11-stable/sys/dev/nand/nfc_at91.c
/freebsd-11-stable/sys/dev/nand/nfc_at91.h
/freebsd-11-stable/sys/dev/nand/nfc_fsl.c
/freebsd-11-stable/sys/dev/nand/nfc_fsl.h
/freebsd-11-stable/sys/dev/nand/nfc_mv.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500_pccard.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500hw.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500hwtab.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500reg.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500var.h
/freebsd-11-stable/sys/dev/netmap/if_em_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_igb_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_lem_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_re_netmap.h
/freebsd-11-stable/sys/dev/netmap/ixgbe_netmap.h
/freebsd-11-stable/sys/dev/netmap/netmap.c
/freebsd-11-stable/sys/dev/netmap/netmap_freebsd.c
/freebsd-11-stable/sys/dev/netmap/netmap_generic.c
/freebsd-11-stable/sys/dev/netmap/netmap_kern.h
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.c
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.h
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.c
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.h
/freebsd-11-stable/sys/dev/netmap/netmap_offloadings.c
/freebsd-11-stable/sys/dev/netmap/netmap_pipe.c
/freebsd-11-stable/sys/dev/netmap/netmap_vale.c
/freebsd-11-stable/sys/dev/nge/if_nge.c
/freebsd-11-stable/sys/dev/nge/if_ngereg.h
/freebsd-11-stable/sys/dev/nmdm/nmdm.c
/freebsd-11-stable/sys/dev/nsp/nsp.c
/freebsd-11-stable/sys/dev/nsp/nsp_pccard.c
/freebsd-11-stable/sys/dev/nsp/nspreg.h
/freebsd-11-stable/sys/dev/nsp/nspvar.h
/freebsd-11-stable/sys/dev/null/null.c
/freebsd-11-stable/sys/dev/nvd/nvd.c
/freebsd-11-stable/sys/dev/nvme/nvme.c
/freebsd-11-stable/sys/dev/nvme/nvme.h
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr.c
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_private.h
/freebsd-11-stable/sys/dev/nvme/nvme_qpair.c
/freebsd-11-stable/sys/dev/nvme/nvme_sysctl.c
/freebsd-11-stable/sys/dev/nvme/nvme_test.c
/freebsd-11-stable/sys/dev/nvme/nvme_util.c
/freebsd-11-stable/sys/dev/nvram/nvram.c
/freebsd-11-stable/sys/dev/nvram2env/nvram2env.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.h
/freebsd-11-stable/sys/dev/nxge/include/version.h
/freebsd-11-stable/sys/dev/nxge/include/xge-debug.h
/freebsd-11-stable/sys/dev/nxge/include/xge-defs.h
/freebsd-11-stable/sys/dev/nxge/include/xge-list.h
/freebsd-11-stable/sys/dev/nxge/include/xge-os-pal.h
/freebsd-11-stable/sys/dev/nxge/include/xge-queue.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-channel.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-config.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-device.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-driver.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-event.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-fifo.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmt.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mm.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-regs.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-ring.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-stats.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-types.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal.h
/freebsd-11-stable/sys/dev/nxge/xge-osdep.h
/freebsd-11-stable/sys/dev/nxge/xgehal/xge-queue.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-config.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-driver.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmt.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mm.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-stats.c
/freebsd-11-stable/sys/dev/nxge/xgell-version.h
/freebsd-11-stable/sys/dev/oce/oce_hw.c
/freebsd-11-stable/sys/dev/oce/oce_hw.h
/freebsd-11-stable/sys/dev/oce/oce_if.c
/freebsd-11-stable/sys/dev/oce/oce_if.h
/freebsd-11-stable/sys/dev/oce/oce_mbox.c
/freebsd-11-stable/sys/dev/oce/oce_queue.c
/freebsd-11-stable/sys/dev/oce/oce_sysctl.c
/freebsd-11-stable/sys/dev/oce/oce_util.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus.h
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.h
/freebsd-11-stable/sys/dev/ofw/ofw_console.c
/freebsd-11-stable/sys/dev/ofw/ofw_disk.c
/freebsd-11-stable/sys/dev/ofw/ofw_fdt.c
/freebsd-11-stable/sys/dev/ofw/ofw_pci.h
/freebsd-11-stable/sys/dev/ofw/ofw_standard.c
/freebsd-11-stable/sys/dev/ofw/ofwvar.h
/freebsd-11-stable/sys/dev/ofw/openfirm.c
/freebsd-11-stable/sys/dev/ofw/openfirm.h
/freebsd-11-stable/sys/dev/ofw/openfirmio.c
/freebsd-11-stable/sys/dev/ofw/openfirmio.h
/freebsd-11-stable/sys/dev/ofw/openpromio.c
/freebsd-11-stable/sys/dev/ofw/openpromio.h
/freebsd-11-stable/sys/dev/pbio/pbio.c
/freebsd-11-stable/sys/dev/pbio/pbioio.h
/freebsd-11-stable/sys/dev/pccard/pccard.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.h
/freebsd-11-stable/sys/dev/pccard/pccard_cis_quirks.c
/freebsd-11-stable/sys/dev/pccard/pccard_device.c
/freebsd-11-stable/sys/dev/pccard/pccardreg.h
/freebsd-11-stable/sys/dev/pccard/pccardvar.h
/freebsd-11-stable/sys/dev/pccard/pccardvarp.h
/freebsd-11-stable/sys/dev/pccbb/pccbb.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_isa.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_pci.c
/freebsd-11-stable/sys/dev/pccbb/pccbbdevid.h
/freebsd-11-stable/sys/dev/pccbb/pccbbreg.h
/freebsd-11-stable/sys/dev/pccbb/pccbbvar.h
/freebsd-11-stable/sys/dev/pcf/envctrl.c
/freebsd-11-stable/sys/dev/pcf/pcf.c
/freebsd-11-stable/sys/dev/pcf/pcf_ebus.c
/freebsd-11-stable/sys/dev/pcf/pcf_isa.c
/freebsd-11-stable/sys/dev/pcf/pcfvar.h
/freebsd-11-stable/sys/dev/pci/fixup_pci.c
/freebsd-11-stable/sys/dev/pci/hostb_pci.c
/freebsd-11-stable/sys/dev/pci/ignore_pci.c
/freebsd-11-stable/sys/dev/pci/isa_pci.c
/freebsd-11-stable/sys/dev/pci/pci.c
/freebsd-11-stable/sys/dev/pci/pci_pci.c
/freebsd-11-stable/sys/dev/pci/pci_private.h
/freebsd-11-stable/sys/dev/pci/pci_subr.c
/freebsd-11-stable/sys/dev/pci/pci_user.c
/freebsd-11-stable/sys/dev/pci/pcib_private.h
/freebsd-11-stable/sys/dev/pci/pcireg.h
/freebsd-11-stable/sys/dev/pci/pcivar.h
/freebsd-11-stable/sys/dev/pci/vga_pci.c
/freebsd-11-stable/sys/dev/pcn/if_pcn.c
/freebsd-11-stable/sys/dev/pcn/if_pcnreg.h
/freebsd-11-stable/sys/dev/pdq/if_fpa.c
/freebsd-11-stable/sys/dev/pdq/pdq.c
/freebsd-11-stable/sys/dev/pdq/pdq_freebsd.h
/freebsd-11-stable/sys/dev/pdq/pdq_ifsubr.c
/freebsd-11-stable/sys/dev/pdq/pdqreg.h
/freebsd-11-stable/sys/dev/pdq/pdqvar.h
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvram.c
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvramvar.h
/freebsd-11-stable/sys/dev/ppbus/if_plip.c
/freebsd-11-stable/sys/dev/ppbus/immio.c
/freebsd-11-stable/sys/dev/ppbus/lpbb.c
/freebsd-11-stable/sys/dev/ppbus/lpt.c
/freebsd-11-stable/sys/dev/ppbus/lpt.h
/freebsd-11-stable/sys/dev/ppbus/pcfclock.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.h
/freebsd-11-stable/sys/dev/ppbus/ppb_base.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.h
/freebsd-11-stable/sys/dev/ppbus/ppbconf.c
/freebsd-11-stable/sys/dev/ppbus/ppbconf.h
/freebsd-11-stable/sys/dev/ppbus/ppbio.h
/freebsd-11-stable/sys/dev/ppbus/ppi.c
/freebsd-11-stable/sys/dev/ppbus/ppi.h
/freebsd-11-stable/sys/dev/ppbus/vpo.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.h
/freebsd-11-stable/sys/dev/ppc/ppc.c
/freebsd-11-stable/sys/dev/ppc/ppc_acpi.c
/freebsd-11-stable/sys/dev/ppc/ppc_isa.c
/freebsd-11-stable/sys/dev/ppc/ppc_pci.c
/freebsd-11-stable/sys/dev/ppc/ppc_puc.c
/freebsd-11-stable/sys/dev/ppc/ppcreg.h
/freebsd-11-stable/sys/dev/ppc/ppcvar.h
/freebsd-11-stable/sys/dev/pst/pst-iop.c
/freebsd-11-stable/sys/dev/pst/pst-iop.h
/freebsd-11-stable/sys/dev/pst/pst-pci.c
/freebsd-11-stable/sys/dev/pst/pst-raid.c
/freebsd-11-stable/sys/dev/pty/pty.c
/freebsd-11-stable/sys/dev/puc/puc.c
/freebsd-11-stable/sys/dev/puc/puc_bfe.h
/freebsd-11-stable/sys/dev/puc/puc_bus.h
/freebsd-11-stable/sys/dev/puc/puc_cfg.c
/freebsd-11-stable/sys/dev/puc/puc_cfg.h
/freebsd-11-stable/sys/dev/puc/puc_pccard.c
/freebsd-11-stable/sys/dev/puc/puc_pci.c
/freebsd-11-stable/sys/dev/puc/pucdata.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_def.h
/freebsd-11-stable/sys/dev/qlxgb/qla_glbl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.c
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.h
/freebsd-11-stable/sys/dev/qlxgb/qla_inline.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.c
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_isr.c
/freebsd-11-stable/sys/dev/qlxgb/qla_misc.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.h
/freebsd-11-stable/sys/dev/qlxgb/qla_reg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ver.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_def.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_glbl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_inline.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_isr.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_misc.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_reset.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_tmplt.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ver.h
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.c
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.h
/freebsd-11-stable/sys/dev/qlxge/qls_def.h
/freebsd-11-stable/sys/dev/qlxge/qls_dump.c
/freebsd-11-stable/sys/dev/qlxge/qls_dump.h
/freebsd-11-stable/sys/dev/qlxge/qls_glbl.h
/freebsd-11-stable/sys/dev/qlxge/qls_hw.c
/freebsd-11-stable/sys/dev/qlxge/qls_hw.h
/freebsd-11-stable/sys/dev/qlxge/qls_inline.h
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.c
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.h
/freebsd-11-stable/sys/dev/qlxge/qls_isr.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.h
/freebsd-11-stable/sys/dev/qlxge/qls_ver.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe_fdt.c
/freebsd-11-stable/sys/dev/quicc/quicc_bus.h
/freebsd-11-stable/sys/dev/quicc/quicc_core.c
/freebsd-11-stable/sys/dev/rc/rc.c
/freebsd-11-stable/sys/dev/rc/rcreg.h
/freebsd-11-stable/sys/dev/re/if_re.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.h
/freebsd-11-stable/sys/dev/rp/rp.c
/freebsd-11-stable/sys/dev/rp/rp_isa.c
/freebsd-11-stable/sys/dev/rp/rp_pci.c
/freebsd-11-stable/sys/dev/rp/rpreg.h
/freebsd-11-stable/sys/dev/rp/rpvar.h
/freebsd-11-stable/sys/dev/rt/if_rt.c
/freebsd-11-stable/sys/dev/rt/if_rtreg.h
/freebsd-11-stable/sys/dev/rt/if_rtvar.h
/freebsd-11-stable/sys/dev/safe/safe.c
/freebsd-11-stable/sys/dev/safe/safereg.h
/freebsd-11-stable/sys/dev/safe/safevar.h
/freebsd-11-stable/sys/dev/scc/scc_bfe.h
/freebsd-11-stable/sys/dev/scc/scc_bfe_ebus.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_macio.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_sbus.c
/freebsd-11-stable/sys/dev/scc/scc_bus.h
/freebsd-11-stable/sys/dev/scc/scc_core.c
/freebsd-11-stable/sys/dev/scc/scc_dev_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_dev_sab82532.c
/freebsd-11-stable/sys/dev/scc/scc_dev_z8530.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.h
/freebsd-11-stable/sys/dev/sdhci/sdhci_fdt.c
/freebsd-11-stable/sys/dev/sdhci/sdhci_pci.c
/freebsd-11-stable/sys/dev/sec/sec.c
/freebsd-11-stable/sys/dev/sec/sec.h
/freebsd-11-stable/sys/dev/sf/if_sf.c
/freebsd-11-stable/sys/dev/sf/if_sfreg.h
/freebsd-11-stable/sys/dev/sfxge/common/efsys.h
/freebsd-11-stable/sys/dev/sfxge/common/efx.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_bootcfg.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_ev.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_filter.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_intr.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_mon.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_port.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_ef10.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_pci.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_rx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_tx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_types.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_vpd.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_flash.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_vpd.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_dma.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_ev.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_intr.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_port.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.h
/freebsd-11-stable/sys/dev/sge/if_sge.c
/freebsd-11-stable/sys/dev/sge/if_sgereg.h
/freebsd-11-stable/sys/dev/siba/siba_bwn.c
/freebsd-11-stable/sys/dev/siba/siba_core.c
/freebsd-11-stable/sys/dev/siba/siba_ids.h
/freebsd-11-stable/sys/dev/siba/sibareg.h
/freebsd-11-stable/sys/dev/siba/sibavar.h
/freebsd-11-stable/sys/dev/siis/siis.c
/freebsd-11-stable/sys/dev/siis/siis.h
/freebsd-11-stable/sys/dev/sio/sio.c
/freebsd-11-stable/sys/dev/sio/sio_isa.c
/freebsd-11-stable/sys/dev/sio/sio_pccard.c
/freebsd-11-stable/sys/dev/sio/sio_pci.c
/freebsd-11-stable/sys/dev/sio/sio_puc.c
/freebsd-11-stable/sys/dev/sio/sioreg.h
/freebsd-11-stable/sys/dev/sio/siovar.h
/freebsd-11-stable/sys/dev/sis/if_sis.c
/freebsd-11-stable/sys/dev/sis/if_sisreg.h
/freebsd-11-stable/sys/dev/sk/if_sk.c
/freebsd-11-stable/sys/dev/sk/if_skreg.h
/freebsd-11-stable/sys/dev/sk/xmaciireg.h
/freebsd-11-stable/sys/dev/smbus/smb.c
/freebsd-11-stable/sys/dev/smbus/smb.h
/freebsd-11-stable/sys/dev/smbus/smbconf.c
/freebsd-11-stable/sys/dev/smbus/smbconf.h
/freebsd-11-stable/sys/dev/smbus/smbus.c
/freebsd-11-stable/sys/dev/smbus/smbus.h
/freebsd-11-stable/sys/dev/smc/if_smc.c
/freebsd-11-stable/sys/dev/smc/if_smcreg.h
/freebsd-11-stable/sys/dev/smc/if_smcvar.h
/freebsd-11-stable/sys/dev/sn/if_sn.c
/freebsd-11-stable/sys/dev/sn/if_sn_isa.c
/freebsd-11-stable/sys/dev/sn/if_sn_pccard.c
/freebsd-11-stable/sys/dev/sn/if_snreg.h
/freebsd-11-stable/sys/dev/sn/if_snvar.h
/freebsd-11-stable/sys/dev/sn/ositech.h
/freebsd-11-stable/sys/dev/snp/snp.c
/freebsd-11-stable/sys/dev/sound/chip.h
/freebsd-11-stable/sys/dev/sound/clone.c
/freebsd-11-stable/sys/dev/sound/clone.h
/freebsd-11-stable/sys/dev/sound/driver.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.h
/freebsd-11-stable/sys/dev/sound/isa/ess.c
/freebsd-11-stable/sys/dev/sound/isa/gusc.c
/freebsd-11-stable/sys/dev/sound/isa/mss.c
/freebsd-11-stable/sys/dev/sound/isa/mss.h
/freebsd-11-stable/sys/dev/sound/isa/sb.h
/freebsd-11-stable/sys/dev/sound/isa/sb16.c
/freebsd-11-stable/sys/dev/sound/isa/sb8.c
/freebsd-11-stable/sys/dev/sound/isa/sbc.c
/freebsd-11-stable/sys/dev/sound/isa/sndbuf_dma.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.h
/freebsd-11-stable/sys/dev/sound/macio/davbus.c
/freebsd-11-stable/sys/dev/sound/macio/davbusreg.h
/freebsd-11-stable/sys/dev/sound/macio/i2s.c
/freebsd-11-stable/sys/dev/sound/macio/onyx.c
/freebsd-11-stable/sys/dev/sound/macio/snapper.c
/freebsd-11-stable/sys/dev/sound/macio/tumbler.c
/freebsd-11-stable/sys/dev/sound/midi/midi.c
/freebsd-11-stable/sys/dev/sound/midi/midi.h
/freebsd-11-stable/sys/dev/sound/midi/midiq.h
/freebsd-11-stable/sys/dev/sound/midi/mpu401.c
/freebsd-11-stable/sys/dev/sound/midi/mpu401.h
/freebsd-11-stable/sys/dev/sound/midi/sequencer.c
/freebsd-11-stable/sys/dev/sound/midi/sequencer.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_code.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/als4000.c
/freebsd-11-stable/sys/dev/sound/pci/als4000.h
/freebsd-11-stable/sys/dev/sound/pci/atiixp.c
/freebsd-11-stable/sys/dev/sound/pci/atiixp.h
/freebsd-11-stable/sys/dev/sound/pci/aureal.c
/freebsd-11-stable/sys/dev/sound/pci/aureal.h
/freebsd-11-stable/sys/dev/sound/pci/cmi.c
/freebsd-11-stable/sys/dev/sound/pci/cmireg.h
/freebsd-11-stable/sys/dev/sound/pci/cs4281.c
/freebsd-11-stable/sys/dev/sound/pci/cs4281.h
/freebsd-11-stable/sys/dev/sound/pci/cs461x_dsp.h
/freebsd-11-stable/sys/dev/sound/pci/csa.c
/freebsd-11-stable/sys/dev/sound/pci/csapcm.c
/freebsd-11-stable/sys/dev/sound/pci/csareg.h
/freebsd-11-stable/sys/dev/sound/pci/csavar.h
/freebsd-11-stable/sys/dev/sound/pci/ds1-fw.h
/freebsd-11-stable/sys/dev/sound/pci/ds1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10k1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-midi.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.h
/freebsd-11-stable/sys/dev/sound/pci/envy24.c
/freebsd-11-stable/sys/dev/sound/pci/envy24.h
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.c
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.h
/freebsd-11-stable/sys/dev/sound/pci/es137x.c
/freebsd-11-stable/sys/dev/sound/pci/es137x.h
/freebsd-11-stable/sys/dev/sound/pci/fm801.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hda_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa_patches.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_private.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdacc.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.h
/freebsd-11-stable/sys/dev/sound/pci/ich.c
/freebsd-11-stable/sys/dev/sound/pci/ich.h
/freebsd-11-stable/sys/dev/sound/pci/maestro.c
/freebsd-11-stable/sys/dev/sound/pci/maestro3.c
/freebsd-11-stable/sys/dev/sound/pci/maestro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic-coeff.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic.c
/freebsd-11-stable/sys/dev/sound/pci/neomagic.h
/freebsd-11-stable/sys/dev/sound/pci/solo.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.h
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.c
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.h
/freebsd-11-stable/sys/dev/sound/pci/via8233.c
/freebsd-11-stable/sys/dev/sound/pci/via8233.h
/freebsd-11-stable/sys/dev/sound/pci/via82c686.c
/freebsd-11-stable/sys/dev/sound/pci/via82c686.h
/freebsd-11-stable/sys/dev/sound/pci/vibes.c
/freebsd-11-stable/sys/dev/sound/pci/vibes.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.h
/freebsd-11-stable/sys/dev/sound/pcm/buffer.c
/freebsd-11-stable/sys/dev/sound/pcm/buffer.h
/freebsd-11-stable/sys/dev/sound/pcm/channel.c
/freebsd-11-stable/sys/dev/sound/pcm/channel.h
/freebsd-11-stable/sys/dev/sound/pcm/dsp.c
/freebsd-11-stable/sys/dev/sound/pcm/dsp.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder_chain.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_eq.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_format.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_matrix.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_rate.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_volume.c
/freebsd-11-stable/sys/dev/sound/pcm/g711.h
/freebsd-11-stable/sys/dev/sound/pcm/intpcm.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix_map.h
/freebsd-11-stable/sys/dev/sound/pcm/mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/mixer.h
/freebsd-11-stable/sys/dev/sound/pcm/pcm.h
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.c
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.h
/freebsd-11-stable/sys/dev/sound/pcm/sound.c
/freebsd-11-stable/sys/dev/sound/pcm/sound.h
/freebsd-11-stable/sys/dev/sound/pcm/vchan.c
/freebsd-11-stable/sys/dev/sound/pcm/vchan.h
/freebsd-11-stable/sys/dev/sound/sbus/apcdmareg.h
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.c
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.h
/freebsd-11-stable/sys/dev/sound/unit.c
/freebsd-11-stable/sys/dev/sound/unit.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio.c
/freebsd-11-stable/sys/dev/sound/usb/uaudio.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio_pcm.c
/freebsd-11-stable/sys/dev/sound/usb/uaudioreg.h
/freebsd-11-stable/sys/dev/sound/version.h
/freebsd-11-stable/sys/dev/spibus/ofw_spibus.c
/freebsd-11-stable/sys/dev/ste/if_ste.c
/freebsd-11-stable/sys/dev/ste/if_stereg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_isa.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pccard.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pci.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_subr.c
/freebsd-11-stable/sys/dev/stg/tmc18c30reg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30var.h
/freebsd-11-stable/sys/dev/stge/if_stge.c
/freebsd-11-stable/sys/dev/stge/if_stgereg.h
/freebsd-11-stable/sys/dev/sym/sym_conf.h
/freebsd-11-stable/sys/dev/sym/sym_defs.h
/freebsd-11-stable/sys/dev/sym/sym_fw.h
/freebsd-11-stable/sys/dev/sym/sym_fw1.h
/freebsd-11-stable/sys/dev/sym/sym_fw2.h
/freebsd-11-stable/sys/dev/sym/sym_hipd.c
/freebsd-11-stable/sys/dev/syscons/apm/apm_saver.c
/freebsd-11-stable/sys/dev/syscons/blank/blank_saver.c
/freebsd-11-stable/sys/dev/syscons/daemon/daemon_saver.c
/freebsd-11-stable/sys/dev/syscons/dragon/dragon_saver.c
/freebsd-11-stable/sys/dev/syscons/fade/fade_saver.c
/freebsd-11-stable/sys/dev/syscons/fire/fire_saver.c
/freebsd-11-stable/sys/dev/syscons/green/green_saver.c
/freebsd-11-stable/sys/dev/syscons/logo/logo_saver.c
/freebsd-11-stable/sys/dev/syscons/rain/rain_saver.c
/freebsd-11-stable/sys/dev/syscons/scgfbrndr.c
/freebsd-11-stable/sys/dev/syscons/schistory.c
/freebsd-11-stable/sys/dev/syscons/scmouse.c
/freebsd-11-stable/sys/dev/syscons/scterm-teken.c
/freebsd-11-stable/sys/dev/syscons/scterm.c
/freebsd-11-stable/sys/dev/syscons/scvesactl.c
/freebsd-11-stable/sys/dev/syscons/scvgarndr.c
/freebsd-11-stable/sys/dev/syscons/scvidctl.c
/freebsd-11-stable/sys/dev/syscons/scvtb.c
/freebsd-11-stable/sys/dev/syscons/snake/snake_saver.c
/freebsd-11-stable/sys/dev/syscons/star/star_saver.c
/freebsd-11-stable/sys/dev/syscons/syscons.c
/freebsd-11-stable/sys/dev/syscons/syscons.h
/freebsd-11-stable/sys/dev/syscons/sysmouse.c
/freebsd-11-stable/sys/dev/syscons/warp/warp_saver.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_io.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_vars.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_fdt.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.h
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_fdt.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_pixel.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_reg.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_syscons.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_text.c
/freebsd-11-stable/sys/dev/ti/if_ti.c
/freebsd-11-stable/sys/dev/ti/if_tireg.h
/freebsd-11-stable/sys/dev/tl/if_tl.c
/freebsd-11-stable/sys/dev/tl/if_tlreg.h
/freebsd-11-stable/sys/dev/trm/trm.c
/freebsd-11-stable/sys/dev/trm/trm.h
/freebsd-11-stable/sys/dev/tsec/if_tsec.c
/freebsd-11-stable/sys/dev/tsec/if_tsec.h
/freebsd-11-stable/sys/dev/tsec/if_tsec_fdt.c
/freebsd-11-stable/sys/dev/tsec/if_tsecreg.h
/freebsd-11-stable/sys/dev/twa/tw_cl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_cl_fwif.h
/freebsd-11-stable/sys/dev/twa/tw_cl_init.c
/freebsd-11-stable/sys/dev/twa/tw_cl_intr.c
/freebsd-11-stable/sys/dev/twa/tw_cl_io.c
/freebsd-11-stable/sys/dev/twa/tw_cl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_misc.c
/freebsd-11-stable/sys/dev/twa/tw_cl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_cam.c
/freebsd-11-stable/sys/dev/twa/tw_osl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_osl_freebsd.c
/freebsd-11-stable/sys/dev/twa/tw_osl_includes.h
/freebsd-11-stable/sys/dev/twa/tw_osl_inline.h
/freebsd-11-stable/sys/dev/twa/tw_osl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl_types.h
/freebsd-11-stable/sys/dev/twe/twe.c
/freebsd-11-stable/sys/dev/twe/twe_compat.h
/freebsd-11-stable/sys/dev/twe/twe_freebsd.c
/freebsd-11-stable/sys/dev/twe/twe_tables.h
/freebsd-11-stable/sys/dev/twe/tweio.h
/freebsd-11-stable/sys/dev/twe/twereg.h
/freebsd-11-stable/sys/dev/twe/twevar.h
/freebsd-11-stable/sys/dev/tws/tws.c
/freebsd-11-stable/sys/dev/tws/tws.h
/freebsd-11-stable/sys/dev/tws/tws_cam.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.h
/freebsd-11-stable/sys/dev/tws/tws_services.c
/freebsd-11-stable/sys/dev/tws/tws_services.h
/freebsd-11-stable/sys/dev/tws/tws_user.c
/freebsd-11-stable/sys/dev/tws/tws_user.h
/freebsd-11-stable/sys/dev/tx/if_tx.c
/freebsd-11-stable/sys/dev/tx/if_txreg.h
/freebsd-11-stable/sys/dev/tx/if_txvar.h
/freebsd-11-stable/sys/dev/txp/3c990img.h
/freebsd-11-stable/sys/dev/txp/if_txp.c
/freebsd-11-stable/sys/dev/txp/if_txpreg.h
/freebsd-11-stable/sys/dev/uart/uart.h
/freebsd-11-stable/sys/dev/uart/uart_bus.h
/freebsd-11-stable/sys/dev/uart/uart_bus_acpi.c
/freebsd-11-stable/sys/dev/uart/uart_bus_ebus.c
/freebsd-11-stable/sys/dev/uart/uart_bus_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_bus_isa.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pccard.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pci.c
/freebsd-11-stable/sys/dev/uart/uart_bus_puc.c
/freebsd-11-stable/sys/dev/uart/uart_bus_scc.c
/freebsd-11-stable/sys/dev/uart/uart_core.c
/freebsd-11-stable/sys/dev/uart/uart_cpu.h
/freebsd-11-stable/sys/dev/uart/uart_cpu_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_powerpc.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_sparc64.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_x86.c
/freebsd-11-stable/sys/dev/uart/uart_dbg.c
/freebsd-11-stable/sys/dev/uart/uart_dev_imx.c
/freebsd-11-stable/sys/dev/uart/uart_dev_lpc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.h
/freebsd-11-stable/sys/dev/uart/uart_dev_pl011.c
/freebsd-11-stable/sys/dev/uart/uart_dev_quicc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_sab82532.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ti8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_z8530.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.h
/freebsd-11-stable/sys/dev/uart/uart_subr.c
/freebsd-11-stable/sys/dev/uart/uart_tty.c
/freebsd-11-stable/sys/dev/ubsec/ubsec.c
/freebsd-11-stable/sys/dev/ubsec/ubsecreg.h
/freebsd-11-stable/sys/dev/ubsec/ubsecvar.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.h
/freebsd-11-stable/sys/dev/usb/controller/atmegadci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otgreg.h
/freebsd-11-stable/sys/dev/usb/controller/ehci.c
/freebsd-11-stable/sys/dev/usb/controller/ehci.h
/freebsd-11-stable/sys/dev/usb/controller/ehci_fsl.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_imx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_ixp4xx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_mv.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ehcireg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.c
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.h
/freebsd-11-stable/sys/dev/usb/controller/ohci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci_s3c24x0.c
/freebsd-11-stable/sys/dev/usb/controller/ohcireg.h
/freebsd-11-stable/sys/dev/usb/controller/uhci.c
/freebsd-11-stable/sys/dev/usb/controller/uhci.h
/freebsd-11-stable/sys/dev/usb/controller/uhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/uhcireg.h
/freebsd-11-stable/sys/dev/usb/controller/usb_controller.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.h
/freebsd-11-stable/sys/dev/usb/controller/uss820dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.h
/freebsd-11-stable/sys/dev/usb/controller/xhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/xhcireg.h
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.c
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.h
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.c
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.h
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.c
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.h
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.c
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.h
/freebsd-11-stable/sys/dev/usb/input/atp.c
/freebsd-11-stable/sys/dev/usb/input/uep.c
/freebsd-11-stable/sys/dev/usb/input/uhid.c
/freebsd-11-stable/sys/dev/usb/input/ukbd.c
/freebsd-11-stable/sys/dev/usb/input/ums.c
/freebsd-11-stable/sys/dev/usb/input/usb_rdesc.h
/freebsd-11-stable/sys/dev/usb/input/wsp.c
/freebsd-11-stable/sys/dev/usb/misc/udbp.c
/freebsd-11-stable/sys/dev/usb/misc/ufm.c
/freebsd-11-stable/sys/dev/usb/net/if_aue.c
/freebsd-11-stable/sys/dev/usb/net/if_auereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axe.c
/freebsd-11-stable/sys/dev/usb/net/if_axereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axge.c
/freebsd-11-stable/sys/dev/usb/net/if_axgereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cdce.c
/freebsd-11-stable/sys/dev/usb/net/if_cdcereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cue.c
/freebsd-11-stable/sys/dev/usb/net/if_cuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_ipheth.c
/freebsd-11-stable/sys/dev/usb/net/if_iphethvar.h
/freebsd-11-stable/sys/dev/usb/net/if_kue.c
/freebsd-11-stable/sys/dev/usb/net/if_kuefw.h
/freebsd-11-stable/sys/dev/usb/net/if_kuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_mos.c
/freebsd-11-stable/sys/dev/usb/net/if_mosreg.h
/freebsd-11-stable/sys/dev/usb/net/if_rue.c
/freebsd-11-stable/sys/dev/usb/net/if_ruereg.h
/freebsd-11-stable/sys/dev/usb/net/if_smsc.c
/freebsd-11-stable/sys/dev/usb/net/if_smscreg.h
/freebsd-11-stable/sys/dev/usb/net/if_udav.c
/freebsd-11-stable/sys/dev/usb/net/if_udavreg.h
/freebsd-11-stable/sys/dev/usb/net/if_usie.c
/freebsd-11-stable/sys/dev/usb/net/if_usievar.h
/freebsd-11-stable/sys/dev/usb/net/ruephy.c
/freebsd-11-stable/sys/dev/usb/net/ruephyreg.h
/freebsd-11-stable/sys/dev/usb/net/uhso.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.h
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.c
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.h
/freebsd-11-stable/sys/dev/usb/serial/ubsa.c
/freebsd-11-stable/sys/dev/usb/serial/ubser.c
/freebsd-11-stable/sys/dev/usb/serial/uchcom.c
/freebsd-11-stable/sys/dev/usb/serial/ucycom.c
/freebsd-11-stable/sys/dev/usb/serial/ufoma.c
/freebsd-11-stable/sys/dev/usb/serial/uftdi.c
/freebsd-11-stable/sys/dev/usb/serial/ugensa.c
/freebsd-11-stable/sys/dev/usb/serial/uipaq.c
/freebsd-11-stable/sys/dev/usb/serial/ulpt.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.h
/freebsd-11-stable/sys/dev/usb/serial/umct.c
/freebsd-11-stable/sys/dev/usb/serial/umodem.c
/freebsd-11-stable/sys/dev/usb/serial/uplcom.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.h
/freebsd-11-stable/sys/dev/usb/serial/uvisor.c
/freebsd-11-stable/sys/dev/usb/serial/uvscom.c
/freebsd-11-stable/sys/dev/usb/storage/umass.c
/freebsd-11-stable/sys/dev/usb/storage/urio.c
/freebsd-11-stable/sys/dev/usb/storage/ustorage_fs.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.h
/freebsd-11-stable/sys/dev/usb/template/usb_template_audio.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_cdce.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_kbd.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_modem.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mouse.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_msc.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mtp.c
/freebsd-11-stable/sys/dev/usb/ufm_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb.h
/freebsd-11-stable/sys/dev/usb/usb_bus.h
/freebsd-11-stable/sys/dev/usb/usb_busdma.c
/freebsd-11-stable/sys/dev/usb/usb_busdma.h
/freebsd-11-stable/sys/dev/usb/usb_cdc.h
/freebsd-11-stable/sys/dev/usb/usb_controller.h
/freebsd-11-stable/sys/dev/usb/usb_core.c
/freebsd-11-stable/sys/dev/usb/usb_core.h
/freebsd-11-stable/sys/dev/usb/usb_debug.c
/freebsd-11-stable/sys/dev/usb/usb_debug.h
/freebsd-11-stable/sys/dev/usb/usb_dev.c
/freebsd-11-stable/sys/dev/usb/usb_dev.h
/freebsd-11-stable/sys/dev/usb/usb_device.c
/freebsd-11-stable/sys/dev/usb/usb_device.h
/freebsd-11-stable/sys/dev/usb/usb_dynamic.c
/freebsd-11-stable/sys/dev/usb/usb_dynamic.h
/freebsd-11-stable/sys/dev/usb/usb_endian.h
/freebsd-11-stable/sys/dev/usb/usb_error.c
/freebsd-11-stable/sys/dev/usb/usb_freebsd.h
/freebsd-11-stable/sys/dev/usb/usb_freebsd_loader.h
/freebsd-11-stable/sys/dev/usb/usb_generic.c
/freebsd-11-stable/sys/dev/usb/usb_generic.h
/freebsd-11-stable/sys/dev/usb/usb_handle_request.c
/freebsd-11-stable/sys/dev/usb/usb_hid.c
/freebsd-11-stable/sys/dev/usb/usb_hub.c
/freebsd-11-stable/sys/dev/usb/usb_hub.h
/freebsd-11-stable/sys/dev/usb/usb_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb_lookup.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.h
/freebsd-11-stable/sys/dev/usb/usb_msctest.c
/freebsd-11-stable/sys/dev/usb/usb_msctest.h
/freebsd-11-stable/sys/dev/usb/usb_parse.c
/freebsd-11-stable/sys/dev/usb/usb_pci.h
/freebsd-11-stable/sys/dev/usb/usb_pf.c
/freebsd-11-stable/sys/dev/usb/usb_pf.h
/freebsd-11-stable/sys/dev/usb/usb_process.c
/freebsd-11-stable/sys/dev/usb/usb_process.h
/freebsd-11-stable/sys/dev/usb/usb_request.c
/freebsd-11-stable/sys/dev/usb/usb_request.h
/freebsd-11-stable/sys/dev/usb/usb_transfer.c
/freebsd-11-stable/sys/dev/usb/usb_transfer.h
/freebsd-11-stable/sys/dev/usb/usb_util.c
/freebsd-11-stable/sys/dev/usb/usb_util.h
/freebsd-11-stable/sys/dev/usb/usbdi.h
/freebsd-11-stable/sys/dev/usb/usbdi_util.h
/freebsd-11-stable/sys/dev/usb/usbhid.h
/freebsd-11-stable/sys/dev/usb/wlan/if_uath.c
/freebsd-11-stable/sys/dev/usb/wlan/if_zydfw.h
/freebsd-11-stable/sys/dev/vge/if_vge.c
/freebsd-11-stable/sys/dev/vge/if_vgereg.h
/freebsd-11-stable/sys/dev/vge/if_vgevar.h
/freebsd-11-stable/sys/dev/viawd/viawd.c
/freebsd-11-stable/sys/dev/viawd/viawd.h
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.c
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.h
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.c
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.h
/freebsd-11-stable/sys/dev/virtio/network/if_vtnet.c
/freebsd-11-stable/sys/dev/virtio/network/if_vtnetvar.h
/freebsd-11-stable/sys/dev/virtio/network/virtio_net.h
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.c
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.h
/freebsd-11-stable/sys/dev/virtio/random/virtio_random.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.h
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsivar.h
/freebsd-11-stable/sys/dev/virtio/virtio.c
/freebsd-11-stable/sys/dev/virtio/virtio.h
/freebsd-11-stable/sys/dev/virtio/virtio_ring.h
/freebsd-11-stable/sys/dev/virtio/virtqueue.c
/freebsd-11-stable/sys/dev/virtio/virtqueue.h
/freebsd-11-stable/sys/dev/vkbd/vkbd.c
/freebsd-11-stable/sys/dev/vkbd/vkbd_var.h
/freebsd-11-stable/sys/dev/vr/if_vr.c
/freebsd-11-stable/sys/dev/vr/if_vrreg.h
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.c
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.h
/freebsd-11-stable/sys/dev/vt/font/vt_font_default.c
/freebsd-11-stable/sys/dev/vt/font/vt_mouse_cursor.c
/freebsd-11-stable/sys/dev/vt/hw/efifb/efifb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_early_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.h
/freebsd-11-stable/sys/dev/vt/hw/ofwfb/ofwfb.c
/freebsd-11-stable/sys/dev/vt/logo/logo_freebsd.c
/freebsd-11-stable/sys/dev/vt/vt.h
/freebsd-11-stable/sys/dev/vt/vt_buf.c
/freebsd-11-stable/sys/dev/vt/vt_consolectl.c
/freebsd-11-stable/sys/dev/vt/vt_core.c
/freebsd-11-stable/sys/dev/vt/vt_font.c
/freebsd-11-stable/sys/dev/vt/vt_sysmouse.c
/freebsd-11-stable/sys/dev/vte/if_vte.c
/freebsd-11-stable/sys/dev/vte/if_vtereg.h
/freebsd-11-stable/sys/dev/vte/if_vtevar.h
/freebsd-11-stable/sys/dev/vx/if_vx.c
/freebsd-11-stable/sys/dev/vx/if_vx_pci.c
/freebsd-11-stable/sys/dev/vx/if_vxreg.h
/freebsd-11-stable/sys/dev/vx/if_vxvar.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-defs.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-list.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-pal.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-queue.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-config.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-ll.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmt.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-stats.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-status.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-types.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-version.h
/freebsd-11-stable/sys/dev/vxge/vxge-firmware.h
/freebsd-11-stable/sys/dev/vxge/vxge-osdep.h
/freebsd-11-stable/sys/dev/vxge/vxge.c
/freebsd-11-stable/sys/dev/vxge/vxge.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxge-queue.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-common-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config-priv.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-debug.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-legacy-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-memrepair-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmt.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-pcicfgmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regdefs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-toc-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpath-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal.h
/freebsd-11-stable/sys/dev/vxge/vxgell-version.h
/freebsd-11-stable/sys/dev/watchdog/watchdog.c
/freebsd-11-stable/sys/dev/wb/if_wb.c
/freebsd-11-stable/sys/dev/wb/if_wbreg.h
/freebsd-11-stable/sys/dev/wbwd/wbwd.c
/freebsd-11-stable/sys/dev/wi/if_wavelan_ieee.h
/freebsd-11-stable/sys/dev/wi/if_wi_macio.c
/freebsd-11-stable/sys/dev/wi/if_wi_pccard.c
/freebsd-11-stable/sys/dev/wi/if_wi_pci.c
/freebsd-11-stable/sys/dev/wi/if_wireg.h
/freebsd-11-stable/sys/dev/wi/if_wivar.h
/freebsd-11-stable/sys/dev/wtap/if_medium.c
/freebsd-11-stable/sys/dev/wtap/if_medium.h
/freebsd-11-stable/sys/dev/wtap/if_wtap.c
/freebsd-11-stable/sys/dev/wtap/if_wtap_module.c
/freebsd-11-stable/sys/dev/wtap/if_wtapioctl.h
/freebsd-11-stable/sys/dev/wtap/if_wtapvar.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.c
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility_ioctl.h
/freebsd-11-stable/sys/dev/wtap/plugins/wtap_plugin.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.c
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/handler.h
/freebsd-11-stable/sys/dev/xe/if_xe.c
/freebsd-11-stable/sys/dev/xe/if_xe_pccard.c
/freebsd-11-stable/sys/dev/xe/if_xereg.h
/freebsd-11-stable/sys/dev/xe/if_xevar.h
/freebsd-11-stable/sys/dev/xen/blkback/blkback.c
/freebsd-11-stable/sys/dev/xen/control/control.c
/freebsd-11-stable/sys/dev/xen/netback/netback.c
/freebsd-11-stable/sys/dev/xen/netback/netback_unit_tests.c
/freebsd-11-stable/sys/dev/xen/netfront/netfront.c
/freebsd-11-stable/sys/dev/xen/pcifront/pcifront.c
/freebsd-11-stable/sys/dev/xen/timer/timer.c
/freebsd-11-stable/sys/dev/xen/timer/timer.h
/freebsd-11-stable/sys/dev/xen/xenpci/xenpci.c
/freebsd-11-stable/sys/dev/xen/xenpci/xenpcivar.h
/freebsd-11-stable/sys/dev/xl/if_xl.c
/freebsd-11-stable/sys/dev/xl/if_xlreg.h
/freebsd-11-stable/sys/dev/xl/xlphy.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_bmap.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_lookup.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_mount.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_util.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vfsops.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vnops.c
/freebsd-11-stable/sys/fs/cd9660/iso.h
/freebsd-11-stable/sys/fs/cd9660/iso_rrip.h
/freebsd-11-stable/sys/fs/deadfs/dead_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_alloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_balloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_bmap.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_extern.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_inode.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_lookup.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_mount.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_subr.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vfsops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/fs.h
/freebsd-11-stable/sys/fs/ext2fs/inode.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vfsops.c
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vnops.c
/freebsd-11-stable/sys/fs/fifofs/fifo_vnops.c
/freebsd-11-stable/sys/fs/fuse/fuse.h
/freebsd-11-stable/sys/fs/fuse/fuse_debug.h
/freebsd-11-stable/sys/fs/fuse/fuse_device.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.h
/freebsd-11-stable/sys/fs/fuse/fuse_internal.c
/freebsd-11-stable/sys/fs/fuse/fuse_internal.h
/freebsd-11-stable/sys/fs/fuse/fuse_io.c
/freebsd-11-stable/sys/fs/fuse/fuse_io.h
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.c
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.h
/freebsd-11-stable/sys/fs/fuse/fuse_kernel.h
/freebsd-11-stable/sys/fs/fuse/fuse_main.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.h
/freebsd-11-stable/sys/fs/fuse/fuse_param.h
/freebsd-11-stable/sys/fs/fuse/fuse_vfsops.c
/freebsd-11-stable/sys/fs/fuse/fuse_vnops.c
/freebsd-11-stable/sys/fs/nfs/nfs.h
/freebsd-11-stable/sys/fs/nfs/nfs_commonkrpc.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonport.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonsubs.c
/freebsd-11-stable/sys/fs/nfs/nfs_var.h
/freebsd-11-stable/sys/fs/nfs/nfsm_subs.h
/freebsd-11-stable/sys/fs/nfs/nfsport.h
/freebsd-11-stable/sys/fs/nfs/nfsproto.h
/freebsd-11-stable/sys/fs/nfs/nfsrvcache.h
/freebsd-11-stable/sys/fs/nfs/rpcv2.h
/freebsd-11-stable/sys/fs/nfs/xdr_subs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs_clbio.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clcomsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clkrpc.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnfsiod.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnode.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clport.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clrpcops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvfsops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvnops.c
/freebsd-11-stable/sys/fs/nfsclient/nfsmount.h
/freebsd-11-stable/sys/fs/nfsclient/nfsnode.h
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdcache.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdkrpc.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdport.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdserv.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsocket.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsubs.c
/freebsd-11-stable/sys/fs/nullfs/null.h
/freebsd-11-stable/sys/fs/nullfs/null_subr.c
/freebsd-11-stable/sys/fs/nullfs/null_vfsops.c
/freebsd-11-stable/sys/fs/nullfs/null_vnops.c
/freebsd-11-stable/sys/fs/procfs/procfs.c
/freebsd-11-stable/sys/fs/procfs/procfs.h
/freebsd-11-stable/sys/fs/procfs/procfs_dbregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_fpregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_map.c
/freebsd-11-stable/sys/fs/procfs/procfs_mem.c
/freebsd-11-stable/sys/fs/procfs/procfs_note.c
/freebsd-11-stable/sys/fs/procfs/procfs_osrel.c
/freebsd-11-stable/sys/fs/procfs/procfs_regs.c
/freebsd-11-stable/sys/fs/procfs/procfs_rlimit.c
/freebsd-11-stable/sys/fs/procfs/procfs_status.c
/freebsd-11-stable/sys/fs/procfs/procfs_type.c
/freebsd-11-stable/sys/fs/unionfs/union.h
/freebsd-11-stable/sys/fs/unionfs/union_subr.c
/freebsd-11-stable/sys/fs/unionfs/union_vfsops.c
/freebsd-11-stable/sys/fs/unionfs/union_vnops.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_share.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_subr.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_var.h
/freebsd-11-stable/sys/i386/acpica/acpi_machdep.c
/freebsd-11-stable/sys/i386/bios/smapi.c
/freebsd-11-stable/sys/i386/i386/atomic.c
/freebsd-11-stable/sys/i386/i386/bios.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.h
/freebsd-11-stable/sys/i386/i386/elf_machdep.c
/freebsd-11-stable/sys/i386/i386/gdb_machdep.c
/freebsd-11-stable/sys/i386/i386/genassym.c
/freebsd-11-stable/sys/i386/i386/geode.c
/freebsd-11-stable/sys/i386/i386/in_cksum.c
/freebsd-11-stable/sys/i386/i386/initcpu.c
/freebsd-11-stable/sys/i386/i386/io.c
/freebsd-11-stable/sys/i386/i386/k6_mem.c
/freebsd-11-stable/sys/i386/i386/longrun.c
/freebsd-11-stable/sys/i386/i386/machdep.c
/freebsd-11-stable/sys/i386/i386/mem.c
/freebsd-11-stable/sys/i386/i386/minidump_machdep.c
/freebsd-11-stable/sys/i386/i386/mp_machdep.c
/freebsd-11-stable/sys/i386/i386/pmap.c
/freebsd-11-stable/sys/i386/i386/ptrace_machdep.c
/freebsd-11-stable/sys/i386/i386/sys_machdep.c
/freebsd-11-stable/sys/i386/i386/trap.c
/freebsd-11-stable/sys/i386/i386/uio_machdep.c
/freebsd-11-stable/sys/i386/i386/vm86.c
/freebsd-11-stable/sys/i386/i386/vm_machdep.c
/freebsd-11-stable/sys/i386/ibcs2/coff.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_dirent.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ioctl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_isc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_misc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_mount.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_msg.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_other.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_statfs.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stropts.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysi86.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysvec.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_termios.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_time.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_types.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_unistd.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ustat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utime.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utsname.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_xenix.c
/freebsd-11-stable/sys/i386/ibcs2/imgact_coff.c
/freebsd-11-stable/sys/i386/include/_bus.h
/freebsd-11-stable/sys/i386/include/asm.h
/freebsd-11-stable/sys/i386/include/asmacros.h
/freebsd-11-stable/sys/i386/include/atomic.h
/freebsd-11-stable/sys/i386/include/bootinfo.h
/freebsd-11-stable/sys/i386/include/bus_dma.h
/freebsd-11-stable/sys/i386/include/counter.h
/freebsd-11-stable/sys/i386/include/cpu.h
/freebsd-11-stable/sys/i386/include/cpufunc.h
/freebsd-11-stable/sys/i386/include/cputypes.h
/freebsd-11-stable/sys/i386/include/elan_mmcr.h
/freebsd-11-stable/sys/i386/include/exec.h
/freebsd-11-stable/sys/i386/include/floatingpoint.h
/freebsd-11-stable/sys/i386/include/gdb_machdep.h
/freebsd-11-stable/sys/i386/include/ieeefp.h
/freebsd-11-stable/sys/i386/include/if_wl_wavelan.h
/freebsd-11-stable/sys/i386/include/in_cksum.h
/freebsd-11-stable/sys/i386/include/intr_machdep.h
/freebsd-11-stable/sys/i386/include/ioctl_bt848.h
/freebsd-11-stable/sys/i386/include/ioctl_meteor.h
/freebsd-11-stable/sys/i386/include/iodev.h
/freebsd-11-stable/sys/i386/include/kdb.h
/freebsd-11-stable/sys/i386/include/limits.h
/freebsd-11-stable/sys/i386/include/md_var.h
/freebsd-11-stable/sys/i386/include/memdev.h
/freebsd-11-stable/sys/i386/include/minidump.h
/freebsd-11-stable/sys/i386/include/mp_watchdog.h
/freebsd-11-stable/sys/i386/include/npx.h
/freebsd-11-stable/sys/i386/include/param.h
/freebsd-11-stable/sys/i386/include/pc/bios.h
/freebsd-11-stable/sys/i386/include/pcaudioio.h
/freebsd-11-stable/sys/i386/include/pcb.h
/freebsd-11-stable/sys/i386/include/pcb_ext.h
/freebsd-11-stable/sys/i386/include/pcpu.h
/freebsd-11-stable/sys/i386/include/pmap.h
/freebsd-11-stable/sys/i386/include/pmc_mdep.h
/freebsd-11-stable/sys/i386/include/ppireg.h
/freebsd-11-stable/sys/i386/include/proc.h
/freebsd-11-stable/sys/i386/include/profile.h
/freebsd-11-stable/sys/i386/include/reloc.h
/freebsd-11-stable/sys/i386/include/runq.h
/freebsd-11-stable/sys/i386/include/segments.h
/freebsd-11-stable/sys/i386/include/sf_buf.h
/freebsd-11-stable/sys/i386/include/sigframe.h
/freebsd-11-stable/sys/i386/include/signal.h
/freebsd-11-stable/sys/i386/include/smapi.h
/freebsd-11-stable/sys/i386/include/timerreg.h
/freebsd-11-stable/sys/i386/include/tss.h
/freebsd-11-stable/sys/i386/include/ucontext.h
/freebsd-11-stable/sys/i386/include/varargs.h
/freebsd-11-stable/sys/i386/include/vm.h
/freebsd-11-stable/sys/i386/include/vm86.h
/freebsd-11-stable/sys/i386/include/vmparam.h
/freebsd-11-stable/sys/i386/isa/ccbque.h
/freebsd-11-stable/sys/i386/isa/elink.c
/freebsd-11-stable/sys/i386/isa/elink.h
/freebsd-11-stable/sys/i386/isa/pmtimer.c
/freebsd-11-stable/sys/i386/isa/prof_machdep.c
/freebsd-11-stable/sys/i386/linux/imgact_linux.c
/freebsd-11-stable/sys/i386/linux/linux.h
/freebsd-11-stable/sys/i386/linux/linux_dummy.c
/freebsd-11-stable/sys/i386/linux/linux_machdep.c
/freebsd-11-stable/sys/i386/linux/linux_ptrace.c
/freebsd-11-stable/sys/i386/linux/linux_sysvec.c
/freebsd-11-stable/sys/i386/pci/pci_cfgreg.c
/freebsd-11-stable/sys/i386/pci/pci_pir.c
/freebsd-11-stable/sys/isa/isareg.h
/freebsd-11-stable/sys/isa/pnpreg.h
/freebsd-11-stable/sys/isa/rtc.h
/freebsd-11-stable/sys/kern/init_main.c
/freebsd-11-stable/sys/kern/kern_acct.c
/freebsd-11-stable/sys/kern/kern_clock.c
/freebsd-11-stable/sys/kern/kern_cons.c
/freebsd-11-stable/sys/kern/kern_descrip.c
/freebsd-11-stable/sys/kern/kern_exit.c
/freebsd-11-stable/sys/kern/kern_fork.c
/freebsd-11-stable/sys/kern/kern_ktrace.c
/freebsd-11-stable/sys/kern/kern_lockf.c
/freebsd-11-stable/sys/kern/kern_malloc.c
/freebsd-11-stable/sys/kern/kern_mib.c
/freebsd-11-stable/sys/kern/kern_proc.c
/freebsd-11-stable/sys/kern/kern_prot.c
/freebsd-11-stable/sys/kern/kern_resource.c
/freebsd-11-stable/sys/kern/kern_rmlock.c
/freebsd-11-stable/sys/kern/kern_shutdown.c
/freebsd-11-stable/sys/kern/kern_sig.c
/freebsd-11-stable/sys/kern/kern_synch.c
/freebsd-11-stable/sys/kern/kern_sysctl.c
/freebsd-11-stable/sys/kern/kern_time.c
/freebsd-11-stable/sys/kern/kern_timeout.c
/freebsd-11-stable/sys/kern/kern_xxx.c
/freebsd-11-stable/sys/kern/ksched.c
/freebsd-11-stable/sys/kern/p1003_1b.c
/freebsd-11-stable/sys/kern/posix4_mib.c
/freebsd-11-stable/sys/kern/sched_4bsd.c
/freebsd-11-stable/sys/kern/subr_autoconf.c
/freebsd-11-stable/sys/kern/subr_blist.c
/freebsd-11-stable/sys/kern/subr_clock.c
/freebsd-11-stable/sys/kern/subr_hash.c
/freebsd-11-stable/sys/kern/subr_log.c
/freebsd-11-stable/sys/kern/subr_mchain.c
/freebsd-11-stable/sys/kern/subr_param.c
/freebsd-11-stable/sys/kern/subr_pcpu.c
/freebsd-11-stable/sys/kern/subr_prf.c
/freebsd-11-stable/sys/kern/subr_prof.c
/freebsd-11-stable/sys/kern/subr_rtc.c
/freebsd-11-stable/sys/kern/subr_scanf.c
/freebsd-11-stable/sys/kern/subr_sglist.c
/freebsd-11-stable/sys/kern/subr_syscall.c
/freebsd-11-stable/sys/kern/subr_trap.c
/freebsd-11-stable/sys/kern/subr_uio.c
/freebsd-11-stable/sys/kern/sys_generic.c
/freebsd-11-stable/sys/kern/sys_socket.c
/freebsd-11-stable/sys/kern/tty_compat.c
/freebsd-11-stable/sys/kern/tty_info.c
/freebsd-11-stable/sys/kern/uipc_domain.c
/freebsd-11-stable/sys/kern/uipc_mbuf.c
/freebsd-11-stable/sys/kern/uipc_mbuf2.c
/freebsd-11-stable/sys/kern/uipc_sockbuf.c
/freebsd-11-stable/sys/kern/uipc_socket.c
/freebsd-11-stable/sys/kern/uipc_syscalls.c
/freebsd-11-stable/sys/kern/uipc_usrreq.c
/freebsd-11-stable/sys/kern/vfs_cache.c
/freebsd-11-stable/sys/kern/vfs_cluster.c
/freebsd-11-stable/sys/kern/vfs_default.c
/freebsd-11-stable/sys/kern/vfs_export.c
/freebsd-11-stable/sys/kern/vfs_init.c
/freebsd-11-stable/sys/kern/vfs_lookup.c
/freebsd-11-stable/sys/kern/vfs_mount.c
/freebsd-11-stable/sys/kern/vfs_mountroot.c
/freebsd-11-stable/sys/kern/vfs_subr.c
/freebsd-11-stable/sys/kern/vfs_syscalls.c
/freebsd-11-stable/sys/kern/vfs_vnops.c
/freebsd-11-stable/sys/libkern/arm/muldi3.c
/freebsd-11-stable/sys/libkern/ashldi3.c
/freebsd-11-stable/sys/libkern/ashrdi3.c
/freebsd-11-stable/sys/libkern/bcmp.c
/freebsd-11-stable/sys/libkern/bsearch.c
/freebsd-11-stable/sys/libkern/cmpdi2.c
/freebsd-11-stable/sys/libkern/divdi3.c
/freebsd-11-stable/sys/libkern/ffs.c
/freebsd-11-stable/sys/libkern/ffsl.c
/freebsd-11-stable/sys/libkern/fls.c
/freebsd-11-stable/sys/libkern/flsl.c
/freebsd-11-stable/sys/libkern/flsll.c
/freebsd-11-stable/sys/libkern/fnmatch.c
/freebsd-11-stable/sys/libkern/lshrdi3.c
/freebsd-11-stable/sys/libkern/mcount.c
/freebsd-11-stable/sys/libkern/memchr.c
/freebsd-11-stable/sys/libkern/memcmp.c
/freebsd-11-stable/sys/libkern/moddi3.c
/freebsd-11-stable/sys/libkern/qdivrem.c
/freebsd-11-stable/sys/libkern/qsort.c
/freebsd-11-stable/sys/libkern/quad.h
/freebsd-11-stable/sys/libkern/random.c
/freebsd-11-stable/sys/libkern/scanc.c
/freebsd-11-stable/sys/libkern/strcasecmp.c
/freebsd-11-stable/sys/libkern/strcat.c
/freebsd-11-stable/sys/libkern/strchr.c
/freebsd-11-stable/sys/libkern/strcmp.c
/freebsd-11-stable/sys/libkern/strcpy.c
/freebsd-11-stable/sys/libkern/strncmp.c
/freebsd-11-stable/sys/libkern/strncpy.c
/freebsd-11-stable/sys/libkern/strrchr.c
/freebsd-11-stable/sys/libkern/strsep.c
/freebsd-11-stable/sys/libkern/strstr.c
/freebsd-11-stable/sys/libkern/strtol.c
/freebsd-11-stable/sys/libkern/strtoq.c
/freebsd-11-stable/sys/libkern/strtoul.c
/freebsd-11-stable/sys/libkern/strtouq.c
/freebsd-11-stable/sys/libkern/ucmpdi2.c
/freebsd-11-stable/sys/libkern/udivdi3.c
/freebsd-11-stable/sys/libkern/umoddi3.c
/freebsd-11-stable/sys/mips/adm5120/adm5120_machdep.c
/freebsd-11-stable/sys/mips/adm5120/adm5120reg.h
/freebsd-11-stable/sys/mips/adm5120/admpci.c
/freebsd-11-stable/sys/mips/adm5120/console.c
/freebsd-11-stable/sys/mips/adm5120/if_admsw.c
/freebsd-11-stable/sys/mips/adm5120/if_admswreg.h
/freebsd-11-stable/sys/mips/adm5120/if_admswvar.h
/freebsd-11-stable/sys/mips/adm5120/obio.c
/freebsd-11-stable/sys/mips/adm5120/obiovar.h
/freebsd-11-stable/sys/mips/adm5120/uart_bus_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_cpu_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.h
/freebsd-11-stable/sys/mips/alchemy/alchemy_machdep.c
/freebsd-11-stable/sys/mips/alchemy/obio.c
/freebsd-11-stable/sys/mips/alchemy/uart_bus_alchemy.c
/freebsd-11-stable/sys/mips/alchemy/uart_cpu_alchemy.c
/freebsd-11-stable/sys/mips/atheros/apb.c
/freebsd-11-stable/sys/mips/atheros/apbvar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_bus_space_reversed.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_cpudef.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_ehci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpio.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpiovar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_machdep.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_ohci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci_bus_space.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_spi.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_wdog.c
/freebsd-11-stable/sys/mips/atheros/ar71xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar724x_pci.c
/freebsd-11-stable/sys/mips/atheros/ar724xreg.h
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar91xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar933x_uart.h
/freebsd-11-stable/sys/mips/atheros/ar933xreg.h
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar934xreg.h
/freebsd-11-stable/sys/mips/atheros/if_arge.c
/freebsd-11-stable/sys/mips/atheros/if_argevar.h
/freebsd-11-stable/sys/mips/atheros/pcf2123_rtc.c
/freebsd-11-stable/sys/mips/atheros/pcf2123reg.h
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.h
/freebsd-11-stable/sys/mips/beri/beri_machdep.c
/freebsd-11-stable/sys/mips/beri/beri_pic.c
/freebsd-11-stable/sys/mips/cavium/ciu.c
/freebsd-11-stable/sys/mips/cavium/cryptocteon/cavium_crypto.c
/freebsd-11-stable/sys/mips/cavium/cvmx_config.h
/freebsd-11-stable/sys/mips/cavium/if_octm.c
/freebsd-11-stable/sys/mips/cavium/obio.c
/freebsd-11-stable/sys/mips/cavium/obiovar.h
/freebsd-11-stable/sys/mips/cavium/octe/cavium-ethernet.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-defines.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-headers.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-sgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-spi.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-util.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-xaui.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphy.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphyreg.h
/freebsd-11-stable/sys/mips/cavium/octe/octe.c
/freebsd-11-stable/sys/mips/cavium/octe/octebus.c
/freebsd-11-stable/sys/mips/cavium/octe/octebusvar.h
/freebsd-11-stable/sys/mips/cavium/octe/wrapper-cvmx-includes.h
/freebsd-11-stable/sys/mips/cavium/octeon_cop2.h
/freebsd-11-stable/sys/mips/cavium/octeon_ds1337.c
/freebsd-11-stable/sys/mips/cavium/octeon_ebt3000_cf.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpio.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpiovar.h
/freebsd-11-stable/sys/mips/cavium/octeon_irq.h
/freebsd-11-stable/sys/mips/cavium/octeon_machdep.c
/freebsd-11-stable/sys/mips/cavium/octeon_mp.c
/freebsd-11-stable/sys/mips/cavium/octeon_pci_console.c
/freebsd-11-stable/sys/mips/cavium/octeon_pcmap_regs.h
/freebsd-11-stable/sys/mips/cavium/octeon_pmc.c
/freebsd-11-stable/sys/mips/cavium/octeon_rnd.c
/freebsd-11-stable/sys/mips/cavium/octeon_rtc.c
/freebsd-11-stable/sys/mips/cavium/octeon_wdog.c
/freebsd-11-stable/sys/mips/cavium/octopci.c
/freebsd-11-stable/sys/mips/cavium/octopci_bus_space.c
/freebsd-11-stable/sys/mips/cavium/octopcireg.h
/freebsd-11-stable/sys/mips/cavium/octopcivar.h
/freebsd-11-stable/sys/mips/cavium/uart_bus_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_cpu_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_dev_oct16550.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.h
/freebsd-11-stable/sys/mips/cavium/usb/octusb_octeon.c
/freebsd-11-stable/sys/mips/gxemul/gxemul_machdep.c
/freebsd-11-stable/sys/mips/gxemul/mpreg.h
/freebsd-11-stable/sys/mips/idt/idt_machdep.c
/freebsd-11-stable/sys/mips/idt/idtpci.c
/freebsd-11-stable/sys/mips/idt/idtreg.h
/freebsd-11-stable/sys/mips/idt/if_kr.c
/freebsd-11-stable/sys/mips/idt/if_krreg.h
/freebsd-11-stable/sys/mips/idt/obio.c
/freebsd-11-stable/sys/mips/idt/obiovar.h
/freebsd-11-stable/sys/mips/idt/uart_bus_rc32434.c
/freebsd-11-stable/sys/mips/idt/uart_cpu_rc32434.c
/freebsd-11-stable/sys/mips/include/_align.h
/freebsd-11-stable/sys/mips/include/_bus.h
/freebsd-11-stable/sys/mips/include/_inttypes.h
/freebsd-11-stable/sys/mips/include/_limits.h
/freebsd-11-stable/sys/mips/include/_stdint.h
/freebsd-11-stable/sys/mips/include/_types.h
/freebsd-11-stable/sys/mips/include/asm.h
/freebsd-11-stable/sys/mips/include/atomic.h
/freebsd-11-stable/sys/mips/include/bootinfo.h
/freebsd-11-stable/sys/mips/include/bus.h
/freebsd-11-stable/sys/mips/include/bus_dma.h
/freebsd-11-stable/sys/mips/include/cache.h
/freebsd-11-stable/sys/mips/include/cache_mipsNN.h
/freebsd-11-stable/sys/mips/include/cache_r4k.h
/freebsd-11-stable/sys/mips/include/counter.h
/freebsd-11-stable/sys/mips/include/cpu.h
/freebsd-11-stable/sys/mips/include/cpufunc.h
/freebsd-11-stable/sys/mips/include/cpuinfo.h
/freebsd-11-stable/sys/mips/include/cpuregs.h
/freebsd-11-stable/sys/mips/include/db_machdep.h
/freebsd-11-stable/sys/mips/include/elf.h
/freebsd-11-stable/sys/mips/include/endian.h
/freebsd-11-stable/sys/mips/include/exec.h
/freebsd-11-stable/sys/mips/include/fdt.h
/freebsd-11-stable/sys/mips/include/float.h
/freebsd-11-stable/sys/mips/include/floatingpoint.h
/freebsd-11-stable/sys/mips/include/frame.h
/freebsd-11-stable/sys/mips/include/gdb_machdep.h
/freebsd-11-stable/sys/mips/include/hwfunc.h
/freebsd-11-stable/sys/mips/include/ieee.h
/freebsd-11-stable/sys/mips/include/in_cksum.h
/freebsd-11-stable/sys/mips/include/intr_machdep.h
/freebsd-11-stable/sys/mips/include/kdb.h
/freebsd-11-stable/sys/mips/include/limits.h
/freebsd-11-stable/sys/mips/include/md_var.h
/freebsd-11-stable/sys/mips/include/memdev.h
/freebsd-11-stable/sys/mips/include/metadata.h
/freebsd-11-stable/sys/mips/include/minidump.h
/freebsd-11-stable/sys/mips/include/mips_opcode.h
/freebsd-11-stable/sys/mips/include/octeon_cop2.h
/freebsd-11-stable/sys/mips/include/ofw_machdep.h
/freebsd-11-stable/sys/mips/include/param.h
/freebsd-11-stable/sys/mips/include/pcb.h
/freebsd-11-stable/sys/mips/include/pcpu.h
/freebsd-11-stable/sys/mips/include/pmap.h
/freebsd-11-stable/sys/mips/include/proc.h
/freebsd-11-stable/sys/mips/include/profile.h
/freebsd-11-stable/sys/mips/include/pte.h
/freebsd-11-stable/sys/mips/include/ptrace.h
/freebsd-11-stable/sys/mips/include/reg.h
/freebsd-11-stable/sys/mips/include/regdef.h
/freebsd-11-stable/sys/mips/include/regnum.h
/freebsd-11-stable/sys/mips/include/reloc.h
/freebsd-11-stable/sys/mips/include/runq.h
/freebsd-11-stable/sys/mips/include/sc_machdep.h
/freebsd-11-stable/sys/mips/include/sf_buf.h
/freebsd-11-stable/sys/mips/include/sigframe.h
/freebsd-11-stable/sys/mips/include/signal.h
/freebsd-11-stable/sys/mips/include/sysarch.h
/freebsd-11-stable/sys/mips/include/tlb.h
/freebsd-11-stable/sys/mips/include/tls.h
/freebsd-11-stable/sys/mips/include/trap.h
/freebsd-11-stable/sys/mips/include/ucontext.h
/freebsd-11-stable/sys/mips/include/varargs.h
/freebsd-11-stable/sys/mips/include/vdso.h
/freebsd-11-stable/sys/mips/include/vm.h
/freebsd-11-stable/sys/mips/include/vmparam.h
/freebsd-11-stable/sys/mips/malta/gt.c
/freebsd-11-stable/sys/mips/malta/gt_pci.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.h
/freebsd-11-stable/sys/mips/malta/gtreg.h
/freebsd-11-stable/sys/mips/malta/gtvar.h
/freebsd-11-stable/sys/mips/malta/malta_machdep.c
/freebsd-11-stable/sys/mips/malta/maltareg.h
/freebsd-11-stable/sys/mips/malta/obio.c
/freebsd-11-stable/sys/mips/malta/obiovar.h
/freebsd-11-stable/sys/mips/malta/uart_bus_maltausart.c
/freebsd-11-stable/sys/mips/malta/uart_cpu_maltausart.c
/freebsd-11-stable/sys/mips/malta/yamon.c
/freebsd-11-stable/sys/mips/malta/yamon.h
/freebsd-11-stable/sys/mips/mips/autoconf.c
/freebsd-11-stable/sys/mips/mips/bus_space_generic.c
/freebsd-11-stable/sys/mips/mips/busdma_machdep.c
/freebsd-11-stable/sys/mips/mips/cache.c
/freebsd-11-stable/sys/mips/mips/cache_mipsNN.c
/freebsd-11-stable/sys/mips/mips/cpu.c
/freebsd-11-stable/sys/mips/mips/db_disasm.c
/freebsd-11-stable/sys/mips/mips/db_interface.c
/freebsd-11-stable/sys/mips/mips/db_trace.c
/freebsd-11-stable/sys/mips/mips/dump_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_trampoline.c
/freebsd-11-stable/sys/mips/mips/freebsd32_machdep.c
/freebsd-11-stable/sys/mips/mips/gdb_machdep.c
/freebsd-11-stable/sys/mips/mips/genassym.c
/freebsd-11-stable/sys/mips/mips/in_cksum.c
/freebsd-11-stable/sys/mips/mips/intr_machdep.c
/freebsd-11-stable/sys/mips/mips/libkern_machdep.c
/freebsd-11-stable/sys/mips/mips/machdep.c
/freebsd-11-stable/sys/mips/mips/mem.c
/freebsd-11-stable/sys/mips/mips/minidump_machdep.c
/freebsd-11-stable/sys/mips/mips/mp_machdep.c
/freebsd-11-stable/sys/mips/mips/octeon_cop2.c
/freebsd-11-stable/sys/mips/mips/pm_machdep.c
/freebsd-11-stable/sys/mips/mips/pmap.c
/freebsd-11-stable/sys/mips/mips/ptrace_machdep.c
/freebsd-11-stable/sys/mips/mips/sc_machdep.c
/freebsd-11-stable/sys/mips/mips/stack_machdep.c
/freebsd-11-stable/sys/mips/mips/stdatomic.c
/freebsd-11-stable/sys/mips/mips/sys_machdep.c
/freebsd-11-stable/sys/mips/mips/tick.c
/freebsd-11-stable/sys/mips/mips/tlb.c
/freebsd-11-stable/sys/mips/mips/trap.c
/freebsd-11-stable/sys/mips/mips/uio_machdep.c
/freebsd-11-stable/sys/mips/mips/uma_machdep.c
/freebsd-11-stable/sys/mips/mips/vm_machdep.c
/freebsd-11-stable/sys/mips/nlm/board.c
/freebsd-11-stable/sys/mips/nlm/board.h
/freebsd-11-stable/sys/mips/nlm/board_cpld.c
/freebsd-11-stable/sys/mips/nlm/board_eeprom.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/nlm/clock.h
/freebsd-11-stable/sys/mips/nlm/cms.c
/freebsd-11-stable/sys/mips/nlm/dev/net/mdio.c
/freebsd-11-stable/sys/mips/nlm/dev/net/nae.c
/freebsd-11-stable/sys/mips/nlm/dev/net/sgmii.c
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore.h
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore_app.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xaui.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsa.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsalib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmsec.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/rsa_ucode.h
/freebsd-11-stable/sys/mips/nlm/hal/bridge.h
/freebsd-11-stable/sys/mips/nlm/hal/cop2.h
/freebsd-11-stable/sys/mips/nlm/hal/cpucontrol.h
/freebsd-11-stable/sys/mips/nlm/hal/fmn.c
/freebsd-11-stable/sys/mips/nlm/hal/fmn.h
/freebsd-11-stable/sys/mips/nlm/hal/gbu.h
/freebsd-11-stable/sys/mips/nlm/hal/haldefs.h
/freebsd-11-stable/sys/mips/nlm/hal/interlaken.h
/freebsd-11-stable/sys/mips/nlm/hal/iomap.h
/freebsd-11-stable/sys/mips/nlm/hal/mdio.h
/freebsd-11-stable/sys/mips/nlm/hal/mips-extns.h
/freebsd-11-stable/sys/mips/nlm/hal/mmu.h
/freebsd-11-stable/sys/mips/nlm/hal/nae.h
/freebsd-11-stable/sys/mips/nlm/hal/nlm_hal.c
/freebsd-11-stable/sys/mips/nlm/hal/nlmsaelib.h
/freebsd-11-stable/sys/mips/nlm/hal/pcibus.h
/freebsd-11-stable/sys/mips/nlm/hal/pic.h
/freebsd-11-stable/sys/mips/nlm/hal/poe.h
/freebsd-11-stable/sys/mips/nlm/hal/sgmii.h
/freebsd-11-stable/sys/mips/nlm/hal/sys.h
/freebsd-11-stable/sys/mips/nlm/hal/uart.h
/freebsd-11-stable/sys/mips/nlm/hal/ucore_loader.h
/freebsd-11-stable/sys/mips/nlm/hal/usb.h
/freebsd-11-stable/sys/mips/nlm/hal/xaui.h
/freebsd-11-stable/sys/mips/nlm/interrupt.h
/freebsd-11-stable/sys/mips/nlm/intr_machdep.c
/freebsd-11-stable/sys/mips/nlm/msgring.h
/freebsd-11-stable/sys/mips/nlm/tick.c
/freebsd-11-stable/sys/mips/nlm/uart_cpu_xlp.c
/freebsd-11-stable/sys/mips/nlm/usb_init.c
/freebsd-11-stable/sys/mips/nlm/xlp.h
/freebsd-11-stable/sys/mips/nlm/xlp_machdep.c
/freebsd-11-stable/sys/mips/nlm/xlp_pci.c
/freebsd-11-stable/sys/mips/rmi/board.c
/freebsd-11-stable/sys/mips/rmi/board.h
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi.c
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/at24co2n.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/max6657.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/desc.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.c
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmisec.c
/freebsd-11-stable/sys/mips/rmi/dev/xlr/debug.h
/freebsd-11-stable/sys/mips/rmi/fmn.c
/freebsd-11-stable/sys/mips/rmi/interrupt.h
/freebsd-11-stable/sys/mips/rmi/intr_machdep.c
/freebsd-11-stable/sys/mips/rmi/iodi.c
/freebsd-11-stable/sys/mips/rmi/iomap.h
/freebsd-11-stable/sys/mips/rmi/msgring.h
/freebsd-11-stable/sys/mips/rmi/pcibus.h
/freebsd-11-stable/sys/mips/rmi/pic.h
/freebsd-11-stable/sys/mips/rmi/rmi_boot_info.h
/freebsd-11-stable/sys/mips/rmi/rmi_mips_exts.h
/freebsd-11-stable/sys/mips/rmi/tick.c
/freebsd-11-stable/sys/mips/rmi/uart_bus_xlr_iodi.c
/freebsd-11-stable/sys/mips/rmi/uart_cpu_mips_xlr.c
/freebsd-11-stable/sys/mips/rmi/xlr_i2c.c
/freebsd-11-stable/sys/mips/rmi/xlr_machdep.c
/freebsd-11-stable/sys/mips/rmi/xlr_pci.c
/freebsd-11-stable/sys/mips/rmi/xlr_pcmcia.c
/freebsd-11-stable/sys/mips/rmi/xls_ehci.c
/freebsd-11-stable/sys/mips/rt305x/obio.c
/freebsd-11-stable/sys/mips/rt305x/obiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_dotg.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_ic.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_icvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_machdep.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctl.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctlvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305xreg.h
/freebsd-11-stable/sys/mips/rt305x/rt_swreg.h
/freebsd-11-stable/sys/mips/rt305x/uart_bus_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_cpu_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.h
/freebsd-11-stable/sys/mips/sibyte/ata_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_bus_space.h
/freebsd-11-stable/sys/mips/sibyte/sb_machdep.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.h
/freebsd-11-stable/sys/mips/sibyte/sb_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_zbpci.c
/freebsd-11-stable/sys/net/bpf.c
/freebsd-11-stable/sys/net/bpf.h
/freebsd-11-stable/sys/net/bpf_buffer.c
/freebsd-11-stable/sys/net/bpf_filter.c
/freebsd-11-stable/sys/net/bpf_jitter.c
/freebsd-11-stable/sys/net/bpf_jitter.h
/freebsd-11-stable/sys/net/bpfdesc.h
/freebsd-11-stable/sys/net/fddi.h
/freebsd-11-stable/sys/net/if.c
/freebsd-11-stable/sys/net/if.h
/freebsd-11-stable/sys/net/if_arc.h
/freebsd-11-stable/sys/net/if_arcsubr.c
/freebsd-11-stable/sys/net/if_arp.h
/freebsd-11-stable/sys/net/if_clone.c
/freebsd-11-stable/sys/net/if_clone.h
/freebsd-11-stable/sys/net/if_disc.c
/freebsd-11-stable/sys/net/if_dl.h
/freebsd-11-stable/sys/net/if_edsc.c
/freebsd-11-stable/sys/net/if_ethersubr.c
/freebsd-11-stable/sys/net/if_fddisubr.c
/freebsd-11-stable/sys/net/if_fwsubr.c
/freebsd-11-stable/sys/net/if_gif.c
/freebsd-11-stable/sys/net/if_gif.h
/freebsd-11-stable/sys/net/if_llc.h
/freebsd-11-stable/sys/net/if_loop.c
/freebsd-11-stable/sys/net/if_stf.c
/freebsd-11-stable/sys/net/if_types.h
/freebsd-11-stable/sys/net/if_var.h
/freebsd-11-stable/sys/net/ifq.h
/freebsd-11-stable/sys/net/pfkeyv2.h
/freebsd-11-stable/sys/net/radix.c
/freebsd-11-stable/sys/net/radix.h
/freebsd-11-stable/sys/net/radix_mpath.c
/freebsd-11-stable/sys/net/radix_mpath.h
/freebsd-11-stable/sys/net/raw_cb.c
/freebsd-11-stable/sys/net/raw_cb.h
/freebsd-11-stable/sys/net/raw_usrreq.c
/freebsd-11-stable/sys/net/route.c
/freebsd-11-stable/sys/net/route.h
/freebsd-11-stable/sys/net/rtsock.c
/freebsd-11-stable/sys/net/slcompress.c
/freebsd-11-stable/sys/net/slcompress.h
/freebsd-11-stable/sys/netinet/icmp6.h
/freebsd-11-stable/sys/netinet/icmp_var.h
/freebsd-11-stable/sys/netinet/if_ether.c
/freebsd-11-stable/sys/netinet/if_ether.h
/freebsd-11-stable/sys/netinet/igmp.c
/freebsd-11-stable/sys/netinet/igmp.h
/freebsd-11-stable/sys/netinet/igmp_var.h
/freebsd-11-stable/sys/netinet/in.c
/freebsd-11-stable/sys/netinet/in.h
/freebsd-11-stable/sys/netinet/in_cksum.c
/freebsd-11-stable/sys/netinet/in_gif.c
/freebsd-11-stable/sys/netinet/in_pcb.c
/freebsd-11-stable/sys/netinet/in_pcb.h
/freebsd-11-stable/sys/netinet/in_proto.c
/freebsd-11-stable/sys/netinet/in_systm.h
/freebsd-11-stable/sys/netinet/in_var.h
/freebsd-11-stable/sys/netinet/ip.h
/freebsd-11-stable/sys/netinet/ip6.h
/freebsd-11-stable/sys/netinet/ip_divert.c
/freebsd-11-stable/sys/netinet/ip_ecn.c
/freebsd-11-stable/sys/netinet/ip_ecn.h
/freebsd-11-stable/sys/netinet/ip_encap.c
/freebsd-11-stable/sys/netinet/ip_encap.h
/freebsd-11-stable/sys/netinet/ip_icmp.c
/freebsd-11-stable/sys/netinet/ip_icmp.h
/freebsd-11-stable/sys/netinet/ip_input.c
/freebsd-11-stable/sys/netinet/ip_mroute.c
/freebsd-11-stable/sys/netinet/ip_mroute.h
/freebsd-11-stable/sys/netinet/ip_options.c
/freebsd-11-stable/sys/netinet/ip_options.h
/freebsd-11-stable/sys/netinet/ip_output.c
/freebsd-11-stable/sys/netinet/ip_var.h
/freebsd-11-stable/sys/netinet/pim.h
/freebsd-11-stable/sys/netinet/pim_var.h
/freebsd-11-stable/sys/netinet/raw_ip.c
/freebsd-11-stable/sys/netinet/sctp.h
/freebsd-11-stable/sys/netinet/sctp_asconf.c
/freebsd-11-stable/sys/netinet/sctp_asconf.h
/freebsd-11-stable/sys/netinet/sctp_auth.c
/freebsd-11-stable/sys/netinet/sctp_auth.h
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.c
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.h
/freebsd-11-stable/sys/netinet/sctp_cc_functions.c
/freebsd-11-stable/sys/netinet/sctp_constants.h
/freebsd-11-stable/sys/netinet/sctp_crc32.c
/freebsd-11-stable/sys/netinet/sctp_crc32.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_declare.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_define.h
/freebsd-11-stable/sys/netinet/sctp_header.h
/freebsd-11-stable/sys/netinet/sctp_indata.c
/freebsd-11-stable/sys/netinet/sctp_indata.h
/freebsd-11-stable/sys/netinet/sctp_input.c
/freebsd-11-stable/sys/netinet/sctp_input.h
/freebsd-11-stable/sys/netinet/sctp_lock_bsd.h
/freebsd-11-stable/sys/netinet/sctp_os.h
/freebsd-11-stable/sys/netinet/sctp_os_bsd.h
/freebsd-11-stable/sys/netinet/sctp_output.c
/freebsd-11-stable/sys/netinet/sctp_output.h
/freebsd-11-stable/sys/netinet/sctp_pcb.c
/freebsd-11-stable/sys/netinet/sctp_pcb.h
/freebsd-11-stable/sys/netinet/sctp_peeloff.c
/freebsd-11-stable/sys/netinet/sctp_peeloff.h
/freebsd-11-stable/sys/netinet/sctp_structs.h
/freebsd-11-stable/sys/netinet/sctp_sysctl.c
/freebsd-11-stable/sys/netinet/sctp_sysctl.h
/freebsd-11-stable/sys/netinet/sctp_timer.c
/freebsd-11-stable/sys/netinet/sctp_timer.h
/freebsd-11-stable/sys/netinet/sctp_uio.h
/freebsd-11-stable/sys/netinet/sctp_usrreq.c
/freebsd-11-stable/sys/netinet/sctp_var.h
/freebsd-11-stable/sys/netinet/sctputil.c
/freebsd-11-stable/sys/netinet/sctputil.h
/freebsd-11-stable/sys/netinet/tcp.h
/freebsd-11-stable/sys/netinet/tcp_debug.c
/freebsd-11-stable/sys/netinet/tcp_debug.h
/freebsd-11-stable/sys/netinet/tcp_fsm.h
/freebsd-11-stable/sys/netinet/tcp_input.c
/freebsd-11-stable/sys/netinet/tcp_output.c
/freebsd-11-stable/sys/netinet/tcp_reass.c
/freebsd-11-stable/sys/netinet/tcp_sack.c
/freebsd-11-stable/sys/netinet/tcp_seq.h
/freebsd-11-stable/sys/netinet/tcp_subr.c
/freebsd-11-stable/sys/netinet/tcp_syncache.h
/freebsd-11-stable/sys/netinet/tcp_timer.c
/freebsd-11-stable/sys/netinet/tcp_timer.h
/freebsd-11-stable/sys/netinet/tcp_timewait.c
/freebsd-11-stable/sys/netinet/tcp_usrreq.c
/freebsd-11-stable/sys/netinet/tcp_var.h
/freebsd-11-stable/sys/netinet/tcpip.h
/freebsd-11-stable/sys/netinet/udp.h
/freebsd-11-stable/sys/netinet/udp_usrreq.c
/freebsd-11-stable/sys/netinet/udp_var.h
/freebsd-11-stable/sys/netinet6/dest6.c
/freebsd-11-stable/sys/netinet6/frag6.c
/freebsd-11-stable/sys/netinet6/icmp6.c
/freebsd-11-stable/sys/netinet6/in6.c
/freebsd-11-stable/sys/netinet6/in6.h
/freebsd-11-stable/sys/netinet6/in6_cksum.c
/freebsd-11-stable/sys/netinet6/in6_gif.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.h
/freebsd-11-stable/sys/netinet6/in6_pcb.c
/freebsd-11-stable/sys/netinet6/in6_pcb.h
/freebsd-11-stable/sys/netinet6/in6_proto.c
/freebsd-11-stable/sys/netinet6/in6_rmx.c
/freebsd-11-stable/sys/netinet6/in6_src.c
/freebsd-11-stable/sys/netinet6/in6_var.h
/freebsd-11-stable/sys/netinet6/ip6_ecn.h
/freebsd-11-stable/sys/netinet6/ip6_forward.c
/freebsd-11-stable/sys/netinet6/ip6_id.c
/freebsd-11-stable/sys/netinet6/ip6_input.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.h
/freebsd-11-stable/sys/netinet6/ip6_output.c
/freebsd-11-stable/sys/netinet6/ip6_var.h
/freebsd-11-stable/sys/netinet6/ip6protosw.h
/freebsd-11-stable/sys/netinet6/mld6.c
/freebsd-11-stable/sys/netinet6/nd6.c
/freebsd-11-stable/sys/netinet6/nd6.h
/freebsd-11-stable/sys/netinet6/nd6_nbr.c
/freebsd-11-stable/sys/netinet6/nd6_rtr.c
/freebsd-11-stable/sys/netinet6/pim6.h
/freebsd-11-stable/sys/netinet6/pim6_var.h
/freebsd-11-stable/sys/netinet6/raw_ip6.c
/freebsd-11-stable/sys/netinet6/raw_ip6.h
/freebsd-11-stable/sys/netinet6/route6.c
/freebsd-11-stable/sys/netinet6/scope6.c
/freebsd-11-stable/sys/netinet6/scope6_var.h
/freebsd-11-stable/sys/netinet6/sctp6_usrreq.c
/freebsd-11-stable/sys/netinet6/sctp6_var.h
/freebsd-11-stable/sys/netinet6/tcp6_var.h
/freebsd-11-stable/sys/netinet6/udp6_usrreq.c
/freebsd-11-stable/sys/netinet6/udp6_var.h
/freebsd-11-stable/sys/netipsec/ah.h
/freebsd-11-stable/sys/netipsec/esp.h
/freebsd-11-stable/sys/netipsec/ipcomp.h
/freebsd-11-stable/sys/netipsec/ipcomp_var.h
/freebsd-11-stable/sys/netipsec/ipsec.c
/freebsd-11-stable/sys/netipsec/ipsec.h
/freebsd-11-stable/sys/netipsec/ipsec6.h
/freebsd-11-stable/sys/netipsec/key.c
/freebsd-11-stable/sys/netipsec/key.h
/freebsd-11-stable/sys/netipsec/key_debug.c
/freebsd-11-stable/sys/netipsec/key_debug.h
/freebsd-11-stable/sys/netipsec/key_var.h
/freebsd-11-stable/sys/netipsec/keydb.h
/freebsd-11-stable/sys/netipsec/keysock.c
/freebsd-11-stable/sys/netipsec/keysock.h
/freebsd-11-stable/sys/netpfil/pf/in4_cksum.c
/freebsd-11-stable/sys/netsmb/smb_crypt.c
/freebsd-11-stable/sys/nfs/bootp_subr.c
/freebsd-11-stable/sys/nfs/krpc_subr.c
/freebsd-11-stable/sys/nfs/nfs_common.h
/freebsd-11-stable/sys/nfs/nfs_diskless.c
/freebsd-11-stable/sys/nfs/nfs_nfssvc.c
/freebsd-11-stable/sys/nfs/nfsdiskless.h
/freebsd-11-stable/sys/nfs/nfsproto.h
/freebsd-11-stable/sys/nfs/nfssvc.h
/freebsd-11-stable/sys/nfs/xdr_subs.h
/freebsd-11-stable/sys/nfsclient/nfs.h
/freebsd-11-stable/sys/nfsclient/nfsargs.h
/freebsd-11-stable/sys/nfsclient/nfsm_subs.h
/freebsd-11-stable/sys/nfsclient/nfsmount.h
/freebsd-11-stable/sys/nfsclient/nfsnode.h
/freebsd-11-stable/sys/nfsclient/nfsstats.h
/freebsd-11-stable/sys/nfsserver/nfs.h
/freebsd-11-stable/sys/nfsserver/nfsm_subs.h
/freebsd-11-stable/sys/nfsserver/nfsrvcache.h
/freebsd-11-stable/sys/nfsserver/nfsrvstats.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.h
/freebsd-11-stable/sys/powerpc/aim/moea64_native.c
/freebsd-11-stable/sys/powerpc/aim/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/aim/slb.c
/freebsd-11-stable/sys/powerpc/booke/machdep_e500.c
/freebsd-11-stable/sys/powerpc/booke/machdep_ppc4xx.c
/freebsd-11-stable/sys/powerpc/booke/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/booke/platform_bare.c
/freebsd-11-stable/sys/powerpc/booke/pmap.c
/freebsd-11-stable/sys/powerpc/cpufreq/dfs.c
/freebsd-11-stable/sys/powerpc/cpufreq/pcr.c
/freebsd-11-stable/sys/powerpc/cpufreq/pmufreq.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_add.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_arith.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_compare.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_div.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_explode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_extern.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_implode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_instr.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_mul.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_sqrt.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_subr.c
/freebsd-11-stable/sys/powerpc/include/_align.h
/freebsd-11-stable/sys/powerpc/include/_bus.h
/freebsd-11-stable/sys/powerpc/include/_inttypes.h
/freebsd-11-stable/sys/powerpc/include/_limits.h
/freebsd-11-stable/sys/powerpc/include/_stdint.h
/freebsd-11-stable/sys/powerpc/include/_types.h
/freebsd-11-stable/sys/powerpc/include/altivec.h
/freebsd-11-stable/sys/powerpc/include/asm.h
/freebsd-11-stable/sys/powerpc/include/atomic.h
/freebsd-11-stable/sys/powerpc/include/bat.h
/freebsd-11-stable/sys/powerpc/include/bus.h
/freebsd-11-stable/sys/powerpc/include/bus_dma.h
/freebsd-11-stable/sys/powerpc/include/counter.h
/freebsd-11-stable/sys/powerpc/include/cpu.h
/freebsd-11-stable/sys/powerpc/include/cpufunc.h
/freebsd-11-stable/sys/powerpc/include/dbdma.h
/freebsd-11-stable/sys/powerpc/include/elf.h
/freebsd-11-stable/sys/powerpc/include/endian.h
/freebsd-11-stable/sys/powerpc/include/exec.h
/freebsd-11-stable/sys/powerpc/include/float.h
/freebsd-11-stable/sys/powerpc/include/floatingpoint.h
/freebsd-11-stable/sys/powerpc/include/fpu.h
/freebsd-11-stable/sys/powerpc/include/frame.h
/freebsd-11-stable/sys/powerpc/include/gdb_machdep.h
/freebsd-11-stable/sys/powerpc/include/hid.h
/freebsd-11-stable/sys/powerpc/include/ieee.h
/freebsd-11-stable/sys/powerpc/include/in_cksum.h
/freebsd-11-stable/sys/powerpc/include/intr_machdep.h
/freebsd-11-stable/sys/powerpc/include/kdb.h
/freebsd-11-stable/sys/powerpc/include/limits.h
/freebsd-11-stable/sys/powerpc/include/machdep.h
/freebsd-11-stable/sys/powerpc/include/md_var.h
/freebsd-11-stable/sys/powerpc/include/memdev.h
/freebsd-11-stable/sys/powerpc/include/metadata.h
/freebsd-11-stable/sys/powerpc/include/mmuvar.h
/freebsd-11-stable/sys/powerpc/include/ofw_machdep.h
/freebsd-11-stable/sys/powerpc/include/openpicreg.h
/freebsd-11-stable/sys/powerpc/include/openpicvar.h
/freebsd-11-stable/sys/powerpc/include/param.h
/freebsd-11-stable/sys/powerpc/include/pcb.h
/freebsd-11-stable/sys/powerpc/include/pcpu.h
/freebsd-11-stable/sys/powerpc/include/pio.h
/freebsd-11-stable/sys/powerpc/include/platform.h
/freebsd-11-stable/sys/powerpc/include/platformvar.h
/freebsd-11-stable/sys/powerpc/include/pmap.h
/freebsd-11-stable/sys/powerpc/include/proc.h
/freebsd-11-stable/sys/powerpc/include/psl.h
/freebsd-11-stable/sys/powerpc/include/pte.h
/freebsd-11-stable/sys/powerpc/include/ptrace.h
/freebsd-11-stable/sys/powerpc/include/reloc.h
/freebsd-11-stable/sys/powerpc/include/rtas.h
/freebsd-11-stable/sys/powerpc/include/runq.h
/freebsd-11-stable/sys/powerpc/include/sc_machdep.h
/freebsd-11-stable/sys/powerpc/include/sigframe.h
/freebsd-11-stable/sys/powerpc/include/signal.h
/freebsd-11-stable/sys/powerpc/include/slb.h
/freebsd-11-stable/sys/powerpc/include/smp.h
/freebsd-11-stable/sys/powerpc/include/spr.h
/freebsd-11-stable/sys/powerpc/include/sr.h
/freebsd-11-stable/sys/powerpc/include/stdarg.h
/freebsd-11-stable/sys/powerpc/include/sysarch.h
/freebsd-11-stable/sys/powerpc/include/tlb.h
/freebsd-11-stable/sys/powerpc/include/trap.h
/freebsd-11-stable/sys/powerpc/include/ucontext.h
/freebsd-11-stable/sys/powerpc/include/varargs.h
/freebsd-11-stable/sys/powerpc/include/vdso.h
/freebsd-11-stable/sys/powerpc/include/vm.h
/freebsd-11-stable/sys/powerpc/include/vmparam.h
/freebsd-11-stable/sys/powerpc/mambo/mambo.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_console.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_disk.c
/freebsd-11-stable/sys/powerpc/mambo/mambocall.h
/freebsd-11-stable/sys/powerpc/mpc85xx/atpic.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_bus_fdt.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_core.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_reg.h
/freebsd-11-stable/sys/powerpc/mpc85xx/i2c.c
/freebsd-11-stable/sys/powerpc/mpc85xx/isa.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.h
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.h
/freebsd-11-stable/sys/powerpc/mpc85xx/pci_mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/platform_mpc85xx.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_machdep.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcib_pci.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.h
/freebsd-11-stable/sys/powerpc/ofw/ofw_real.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.h
/freebsd-11-stable/sys/powerpc/ofw/openpic_ofw.c
/freebsd-11-stable/sys/powerpc/ofw/rtas.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.h
/freebsd-11-stable/sys/powerpc/powermac/ata_kauai.c
/freebsd-11-stable/sys/powerpc/powermac/ata_macio.c
/freebsd-11-stable/sys/powerpc/powermac/atibl.c
/freebsd-11-stable/sys/powerpc/powermac/cpcht.c
/freebsd-11-stable/sys/powerpc/powermac/cuda.c
/freebsd-11-stable/sys/powerpc/powermac/cudavar.h
/freebsd-11-stable/sys/powerpc/powermac/dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/dbdmavar.h
/freebsd-11-stable/sys/powerpc/powermac/fcu.c
/freebsd-11-stable/sys/powerpc/powermac/grackle.c
/freebsd-11-stable/sys/powerpc/powermac/gracklevar.h
/freebsd-11-stable/sys/powerpc/powermac/hrowpic.c
/freebsd-11-stable/sys/powerpc/powermac/hrowpicvar.h
/freebsd-11-stable/sys/powerpc/powermac/kiic.c
/freebsd-11-stable/sys/powerpc/powermac/macgpio.c
/freebsd-11-stable/sys/powerpc/powermac/macgpiovar.h
/freebsd-11-stable/sys/powerpc/powermac/macio.c
/freebsd-11-stable/sys/powerpc/powermac/maciovar.h
/freebsd-11-stable/sys/powerpc/powermac/nvbl.c
/freebsd-11-stable/sys/powerpc/powermac/platform_powermac.c
/freebsd-11-stable/sys/powerpc/powermac/pmu.c
/freebsd-11-stable/sys/powerpc/powermac/pmuvar.h
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.c
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.h
/freebsd-11-stable/sys/powerpc/powermac/pswitch.c
/freebsd-11-stable/sys/powerpc/powermac/smu.c
/freebsd-11-stable/sys/powerpc/powermac/smusat.c
/freebsd-11-stable/sys/powerpc/powermac/uninorth.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthpci.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthvar.h
/freebsd-11-stable/sys/powerpc/powermac/vcoregpio.c
/freebsd-11-stable/sys/powerpc/powermac/viareg.h
/freebsd-11-stable/sys/powerpc/powerpc/altivec.c
/freebsd-11-stable/sys/powerpc/powerpc/autoconf.c
/freebsd-11-stable/sys/powerpc/powerpc/bcopy.c
/freebsd-11-stable/sys/powerpc/powerpc/bus_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/busdma_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/clock.c
/freebsd-11-stable/sys/powerpc/powerpc/copyinout.c
/freebsd-11-stable/sys/powerpc/powerpc/copystr.c
/freebsd-11-stable/sys/powerpc/powerpc/cpu.c
/freebsd-11-stable/sys/powerpc/powerpc/db_hwwatch.c
/freebsd-11-stable/sys/powerpc/powerpc/dump_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf32_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf64_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/exec_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/fpu.c
/freebsd-11-stable/sys/powerpc/powerpc/fuswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/gdb_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/genassym.c
/freebsd-11-stable/sys/powerpc/powerpc/in_cksum.c
/freebsd-11-stable/sys/powerpc/powerpc/intr_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/mem.c
/freebsd-11-stable/sys/powerpc/powerpc/mp_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/openpic.c
/freebsd-11-stable/sys/powerpc/powerpc/platform.c
/freebsd-11-stable/sys/powerpc/powerpc/pmap_dispatch.c
/freebsd-11-stable/sys/powerpc/powerpc/sc_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/stack_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/suswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/syncicache.c
/freebsd-11-stable/sys/powerpc/powerpc/sys_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/uio_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/vm_machdep.c
/freebsd-11-stable/sys/powerpc/ps3/ehci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/if_glc.c
/freebsd-11-stable/sys/powerpc/ps3/if_glcreg.h
/freebsd-11-stable/sys/powerpc/ps3/mmu_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ohci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/platform_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ps3_syscons.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.h
/freebsd-11-stable/sys/powerpc/ps3/ps3cdrom.c
/freebsd-11-stable/sys/powerpc/ps3/ps3disk.c
/freebsd-11-stable/sys/powerpc/ps3/ps3pic.c
/freebsd-11-stable/sys/powerpc/pseries/mmu_phyp.c
/freebsd-11-stable/sys/powerpc/pseries/phyp-hvcall.h
/freebsd-11-stable/sys/powerpc/pseries/phyp_console.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_llan.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_vscsi.c
/freebsd-11-stable/sys/powerpc/pseries/platform_chrp.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.h
/freebsd-11-stable/sys/powerpc/pseries/plpar_pcibus.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_dev.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_pci.c
/freebsd-11-stable/sys/powerpc/pseries/vdevice.c
/freebsd-11-stable/sys/powerpc/pseries/xics.c
/freebsd-11-stable/sys/powerpc/psim/ata_iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobusvar.h
/freebsd-11-stable/sys/powerpc/psim/openpic_iobus.c
/freebsd-11-stable/sys/powerpc/psim/uart_iobus.c
/freebsd-11-stable/sys/riscv/riscv/in_cksum.c
/freebsd-11-stable/sys/riscv/riscv/pmap.c
/freebsd-11-stable/sys/rpc/auth.h
/freebsd-11-stable/sys/rpc/auth_none.c
/freebsd-11-stable/sys/rpc/auth_unix.c
/freebsd-11-stable/sys/rpc/authunix_prot.c
/freebsd-11-stable/sys/rpc/clnt.h
/freebsd-11-stable/sys/rpc/clnt_dg.c
/freebsd-11-stable/sys/rpc/clnt_vc.c
/freebsd-11-stable/sys/rpc/krpc.h
/freebsd-11-stable/sys/rpc/nettype.h
/freebsd-11-stable/sys/rpc/pmap_prot.h
/freebsd-11-stable/sys/rpc/rpc.h
/freebsd-11-stable/sys/rpc/rpc_callmsg.c
/freebsd-11-stable/sys/rpc/rpc_com.h
/freebsd-11-stable/sys/rpc/rpc_generic.c
/freebsd-11-stable/sys/rpc/rpc_msg.h
/freebsd-11-stable/sys/rpc/rpc_prot.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.h
/freebsd-11-stable/sys/rpc/rpcb_prot.c
/freebsd-11-stable/sys/rpc/rpcb_prot.h
/freebsd-11-stable/sys/rpc/rpcm_subs.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/sys/rpc/svc.c
/freebsd-11-stable/sys/rpc/svc.h
/freebsd-11-stable/sys/rpc/svc_auth.c
/freebsd-11-stable/sys/rpc/svc_auth.h
/freebsd-11-stable/sys/rpc/svc_auth_unix.c
/freebsd-11-stable/sys/rpc/svc_dg.c
/freebsd-11-stable/sys/rpc/svc_generic.c
/freebsd-11-stable/sys/rpc/svc_vc.c
/freebsd-11-stable/sys/rpc/types.h
/freebsd-11-stable/sys/rpc/xdr.h
/freebsd-11-stable/sys/security/audit/audit.c
/freebsd-11-stable/sys/security/audit/audit.h
/freebsd-11-stable/sys/security/audit/audit_arg.c
/freebsd-11-stable/sys/security/audit/audit_bsm.c
/freebsd-11-stable/sys/security/audit/audit_bsm_klib.c
/freebsd-11-stable/sys/security/audit/audit_private.h
/freebsd-11-stable/sys/security/audit/audit_syscalls.c
/freebsd-11-stable/sys/security/audit/audit_worker.c
/freebsd-11-stable/sys/security/audit/bsm_domain.c
/freebsd-11-stable/sys/security/audit/bsm_errno.c
/freebsd-11-stable/sys/security/audit/bsm_fcntl.c
/freebsd-11-stable/sys/security/audit/bsm_socket_type.c
/freebsd-11-stable/sys/security/audit/bsm_token.c
/freebsd-11-stable/sys/sparc64/include/_types.h
/freebsd-11-stable/sys/sparc64/include/asm.h
/freebsd-11-stable/sys/sparc64/include/bus_common.h
/freebsd-11-stable/sys/sparc64/include/cache.h
/freebsd-11-stable/sys/sparc64/include/cpu.h
/freebsd-11-stable/sys/sparc64/include/endian.h
/freebsd-11-stable/sys/sparc64/include/float.h
/freebsd-11-stable/sys/sparc64/include/floatingpoint.h
/freebsd-11-stable/sys/sparc64/include/ieee.h
/freebsd-11-stable/sys/sparc64/include/in_cksum.h
/freebsd-11-stable/sys/sparc64/include/iommureg.h
/freebsd-11-stable/sys/sparc64/include/md_var.h
/freebsd-11-stable/sys/sparc64/include/pmap.h
/freebsd-11-stable/sys/sparc64/include/proc.h
/freebsd-11-stable/sys/sparc64/include/ptrace.h
/freebsd-11-stable/sys/sparc64/include/reg.h
/freebsd-11-stable/sys/sparc64/include/reloc.h
/freebsd-11-stable/sys/sparc64/include/setjmp.h
/freebsd-11-stable/sys/sparc64/include/signal.h
/freebsd-11-stable/sys/sparc64/include/sysarch.h
/freebsd-11-stable/sys/sparc64/include/varargs.h
/freebsd-11-stable/sys/sparc64/include/vmparam.h
/freebsd-11-stable/sys/sparc64/sparc64/cache.c
/freebsd-11-stable/sys/sparc64/sparc64/eeprom.c
/freebsd-11-stable/sys/sparc64/sparc64/in_cksum.c
/freebsd-11-stable/sys/sparc64/sparc64/intr_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/mem.c
/freebsd-11-stable/sys/sparc64/sparc64/pmap.c
/freebsd-11-stable/sys/sparc64/sparc64/trap.c
/freebsd-11-stable/sys/sparc64/sparc64/uio_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/vm_machdep.c
/freebsd-11-stable/sys/sys/_bitset.h
/freebsd-11-stable/sys/sys/_bus_dma.h
/freebsd-11-stable/sys/sys/_callout.h
/freebsd-11-stable/sys/sys/_cpuset.h
/freebsd-11-stable/sys/sys/_ffcounter.h
/freebsd-11-stable/sys/sys/_iovec.h
/freebsd-11-stable/sys/sys/_kstack_cache.h
/freebsd-11-stable/sys/sys/_lock.h
/freebsd-11-stable/sys/sys/_lockmgr.h
/freebsd-11-stable/sys/sys/_mutex.h
/freebsd-11-stable/sys/sys/_null.h
/freebsd-11-stable/sys/sys/_pctrie.h
/freebsd-11-stable/sys/sys/_pthreadtypes.h
/freebsd-11-stable/sys/sys/_rmlock.h
/freebsd-11-stable/sys/sys/_rwlock.h
/freebsd-11-stable/sys/sys/_semaphore.h
/freebsd-11-stable/sys/sys/_sigset.h
/freebsd-11-stable/sys/sys/_sockaddr_storage.h
/freebsd-11-stable/sys/sys/_stack.h
/freebsd-11-stable/sys/sys/_stdint.h
/freebsd-11-stable/sys/sys/_sx.h
/freebsd-11-stable/sys/sys/_task.h
/freebsd-11-stable/sys/sys/_termios.h
/freebsd-11-stable/sys/sys/_timespec.h
/freebsd-11-stable/sys/sys/_timeval.h
/freebsd-11-stable/sys/sys/_types.h
/freebsd-11-stable/sys/sys/_umtx.h
/freebsd-11-stable/sys/sys/_unrhdr.h
/freebsd-11-stable/sys/sys/aac_ioctl.h
/freebsd-11-stable/sys/sys/acct.h
/freebsd-11-stable/sys/sys/acl.h
/freebsd-11-stable/sys/sys/agpio.h
/freebsd-11-stable/sys/sys/aio.h
/freebsd-11-stable/sys/sys/alq.h
/freebsd-11-stable/sys/sys/assym.h
/freebsd-11-stable/sys/sys/ata.h
/freebsd-11-stable/sys/sys/bio.h
/freebsd-11-stable/sys/sys/bitset.h
/freebsd-11-stable/sys/sys/bitstring.h
/freebsd-11-stable/sys/sys/blist.h
/freebsd-11-stable/sys/sys/boot.h
/freebsd-11-stable/sys/sys/buf.h
/freebsd-11-stable/sys/sys/buf_ring.h
/freebsd-11-stable/sys/sys/bufobj.h
/freebsd-11-stable/sys/sys/bus.h
/freebsd-11-stable/sys/sys/bus_dma.h
/freebsd-11-stable/sys/sys/busdma_bufalloc.h
/freebsd-11-stable/sys/sys/callout.h
/freebsd-11-stable/sys/sys/capability.h
/freebsd-11-stable/sys/sys/caprights.h
/freebsd-11-stable/sys/sys/cdefs.h
/freebsd-11-stable/sys/sys/cdrio.h
/freebsd-11-stable/sys/sys/cfictl.h
/freebsd-11-stable/sys/sys/chio.h
/freebsd-11-stable/sys/sys/clock.h
/freebsd-11-stable/sys/sys/condvar.h
/freebsd-11-stable/sys/sys/conf.h
/freebsd-11-stable/sys/sys/cons.h
/freebsd-11-stable/sys/sys/consio.h
/freebsd-11-stable/sys/sys/copyright.h
/freebsd-11-stable/sys/sys/counter.h
/freebsd-11-stable/sys/sys/cpu.h
/freebsd-11-stable/sys/sys/cpuctl.h
/freebsd-11-stable/sys/sys/cpuset.h
/freebsd-11-stable/sys/sys/ctype.h
/freebsd-11-stable/sys/sys/devicestat.h
/freebsd-11-stable/sys/sys/digiio.h
/freebsd-11-stable/sys/sys/dir.h
/freebsd-11-stable/sys/sys/dirent.h
/freebsd-11-stable/sys/sys/disklabel.h
/freebsd-11-stable/sys/sys/diskmbr.h
/freebsd-11-stable/sys/sys/dkstat.h
/freebsd-11-stable/sys/sys/domain.h
/freebsd-11-stable/sys/sys/dtrace_bsd.h
/freebsd-11-stable/sys/sys/dvdio.h
/freebsd-11-stable/sys/sys/elf.h
/freebsd-11-stable/sys/sys/elf32.h
/freebsd-11-stable/sys/sys/elf64.h
/freebsd-11-stable/sys/sys/elf_common.h
/freebsd-11-stable/sys/sys/elf_generic.h
/freebsd-11-stable/sys/sys/endian.h
/freebsd-11-stable/sys/sys/errno.h
/freebsd-11-stable/sys/sys/eui64.h
/freebsd-11-stable/sys/sys/event.h
/freebsd-11-stable/sys/sys/eventhandler.h
/freebsd-11-stable/sys/sys/eventvar.h
/freebsd-11-stable/sys/sys/exec.h
/freebsd-11-stable/sys/sys/extattr.h
/freebsd-11-stable/sys/sys/fail.h
/freebsd-11-stable/sys/sys/fbio.h
/freebsd-11-stable/sys/sys/fcntl.h
/freebsd-11-stable/sys/sys/fdcio.h
/freebsd-11-stable/sys/sys/file.h
/freebsd-11-stable/sys/sys/filedesc.h
/freebsd-11-stable/sys/sys/filio.h
/freebsd-11-stable/sys/sys/firmware.h
/freebsd-11-stable/sys/sys/gmon.h
/freebsd-11-stable/sys/sys/gpio.h
/freebsd-11-stable/sys/sys/gpt.h
/freebsd-11-stable/sys/sys/hash.h
/freebsd-11-stable/sys/sys/hhook.h
/freebsd-11-stable/sys/sys/iconv.h
/freebsd-11-stable/sys/sys/imgact.h
/freebsd-11-stable/sys/sys/imgact_aout.h
/freebsd-11-stable/sys/sys/imgact_elf.h
/freebsd-11-stable/sys/sys/interrupt.h
/freebsd-11-stable/sys/sys/ioccom.h
/freebsd-11-stable/sys/sys/ioctl.h
/freebsd-11-stable/sys/sys/ioctl_compat.h
/freebsd-11-stable/sys/sys/ipc.h
/freebsd-11-stable/sys/sys/ipmi.h
/freebsd-11-stable/sys/sys/jail.h
/freebsd-11-stable/sys/sys/joystick.h
/freebsd-11-stable/sys/sys/kdb.h
/freebsd-11-stable/sys/sys/kenv.h
/freebsd-11-stable/sys/sys/kernel.h
/freebsd-11-stable/sys/sys/kerneldump.h
/freebsd-11-stable/sys/sys/khelp.h
/freebsd-11-stable/sys/sys/kobj.h
/freebsd-11-stable/sys/sys/ksem.h
/freebsd-11-stable/sys/sys/kthread.h
/freebsd-11-stable/sys/sys/ktr.h
/freebsd-11-stable/sys/sys/ktr_class.h
/freebsd-11-stable/sys/sys/ktrace.h
/freebsd-11-stable/sys/sys/libkern.h
/freebsd-11-stable/sys/sys/limits.h
/freebsd-11-stable/sys/sys/link_aout.h
/freebsd-11-stable/sys/sys/link_elf.h
/freebsd-11-stable/sys/sys/linker.h
/freebsd-11-stable/sys/sys/linker_set.h
/freebsd-11-stable/sys/sys/lock.h
/freebsd-11-stable/sys/sys/lock_profile.h
/freebsd-11-stable/sys/sys/lockf.h
/freebsd-11-stable/sys/sys/lockmgr.h
/freebsd-11-stable/sys/sys/lockstat.h
/freebsd-11-stable/sys/sys/loginclass.h
/freebsd-11-stable/sys/sys/mac.h
/freebsd-11-stable/sys/sys/malloc.h
/freebsd-11-stable/sys/sys/mbuf.h
/freebsd-11-stable/sys/sys/mchain.h
/freebsd-11-stable/sys/sys/mdioctl.h
/freebsd-11-stable/sys/sys/memdesc.h
/freebsd-11-stable/sys/sys/mman.h
/freebsd-11-stable/sys/sys/module.h
/freebsd-11-stable/sys/sys/module_khelp.h
/freebsd-11-stable/sys/sys/mount.h
/freebsd-11-stable/sys/sys/mpt_ioctl.h
/freebsd-11-stable/sys/sys/mqueue.h
/freebsd-11-stable/sys/sys/msg.h
/freebsd-11-stable/sys/sys/msgbuf.h
/freebsd-11-stable/sys/sys/mtio.h
/freebsd-11-stable/sys/sys/mutex.h
/freebsd-11-stable/sys/sys/namei.h
/freebsd-11-stable/sys/sys/nlist_aout.h
/freebsd-11-stable/sys/sys/osd.h
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/sys/sys/pciio.h
/freebsd-11-stable/sys/sys/pcpu.h
/freebsd-11-stable/sys/sys/pctrie.h
/freebsd-11-stable/sys/sys/pioctl.h
/freebsd-11-stable/sys/sys/pmc.h
/freebsd-11-stable/sys/sys/pmckern.h
/freebsd-11-stable/sys/sys/pmclog.h
/freebsd-11-stable/sys/sys/poll.h
/freebsd-11-stable/sys/sys/posix4.h
/freebsd-11-stable/sys/sys/power.h
/freebsd-11-stable/sys/sys/priority.h
/freebsd-11-stable/sys/sys/priv.h
/freebsd-11-stable/sys/sys/proc.h
/freebsd-11-stable/sys/sys/procctl.h
/freebsd-11-stable/sys/sys/procdesc.h
/freebsd-11-stable/sys/sys/procfs.h
/freebsd-11-stable/sys/sys/protosw.h
/freebsd-11-stable/sys/sys/ptio.h
/freebsd-11-stable/sys/sys/ptrace.h
/freebsd-11-stable/sys/sys/queue.h
/freebsd-11-stable/sys/sys/racct.h
/freebsd-11-stable/sys/sys/random.h
/freebsd-11-stable/sys/sys/rangelock.h
/freebsd-11-stable/sys/sys/rctl.h
/freebsd-11-stable/sys/sys/reboot.h
/freebsd-11-stable/sys/sys/refcount.h
/freebsd-11-stable/sys/sys/regression.h
/freebsd-11-stable/sys/sys/resource.h
/freebsd-11-stable/sys/sys/resourcevar.h
/freebsd-11-stable/sys/sys/rmlock.h
/freebsd-11-stable/sys/sys/rtprio.h
/freebsd-11-stable/sys/sys/runq.h
/freebsd-11-stable/sys/sys/rwlock.h
/freebsd-11-stable/sys/sys/sbuf.h
/freebsd-11-stable/sys/sys/sched.h
/freebsd-11-stable/sys/sys/sdt.h
/freebsd-11-stable/sys/sys/select.h
/freebsd-11-stable/sys/sys/selinfo.h
/freebsd-11-stable/sys/sys/sema.h
/freebsd-11-stable/sys/sys/serial.h
/freebsd-11-stable/sys/sys/sf_buf.h
/freebsd-11-stable/sys/sys/sglist.h
/freebsd-11-stable/sys/sys/shm.h
/freebsd-11-stable/sys/sys/sigio.h
/freebsd-11-stable/sys/sys/signal.h
/freebsd-11-stable/sys/sys/signalvar.h
/freebsd-11-stable/sys/sys/sleepqueue.h
/freebsd-11-stable/sys/sys/slicer.h
/freebsd-11-stable/sys/sys/snoop.h
/freebsd-11-stable/sys/sys/sockbuf.h
/freebsd-11-stable/sys/sys/socket.h
/freebsd-11-stable/sys/sys/socketvar.h
/freebsd-11-stable/sys/sys/sockio.h
/freebsd-11-stable/sys/sys/sockopt.h
/freebsd-11-stable/sys/sys/stack.h
/freebsd-11-stable/sys/sys/stat.h
/freebsd-11-stable/sys/sys/stdatomic.h
/freebsd-11-stable/sys/sys/stddef.h
/freebsd-11-stable/sys/sys/stdint.h
/freebsd-11-stable/sys/sys/sun_disklabel.h
/freebsd-11-stable/sys/sys/sx.h
/freebsd-11-stable/sys/sys/syscallsubr.h
/freebsd-11-stable/sys/sys/sysctl.h
/freebsd-11-stable/sys/sys/sysent.h
/freebsd-11-stable/sys/sys/syslimits.h
/freebsd-11-stable/sys/sys/syslog.h
/freebsd-11-stable/sys/sys/systm.h
/freebsd-11-stable/sys/sys/taskqueue.h
/freebsd-11-stable/sys/sys/terminal.h
/freebsd-11-stable/sys/sys/thr.h
/freebsd-11-stable/sys/sys/tiio.h
/freebsd-11-stable/sys/sys/time.h
/freebsd-11-stable/sys/sys/timeb.h
/freebsd-11-stable/sys/sys/timeet.h
/freebsd-11-stable/sys/sys/timeffc.h
/freebsd-11-stable/sys/sys/timers.h
/freebsd-11-stable/sys/sys/times.h
/freebsd-11-stable/sys/sys/timespec.h
/freebsd-11-stable/sys/sys/tree.h
/freebsd-11-stable/sys/sys/tty.h
/freebsd-11-stable/sys/sys/ttycom.h
/freebsd-11-stable/sys/sys/ttydefaults.h
/freebsd-11-stable/sys/sys/ttydevsw.h
/freebsd-11-stable/sys/sys/ttydisc.h
/freebsd-11-stable/sys/sys/ttyhook.h
/freebsd-11-stable/sys/sys/ttyqueue.h
/freebsd-11-stable/sys/sys/turnstile.h
/freebsd-11-stable/sys/sys/types.h
/freebsd-11-stable/sys/sys/ucontext.h
/freebsd-11-stable/sys/sys/ucred.h
/freebsd-11-stable/sys/sys/uio.h
/freebsd-11-stable/sys/sys/umtx.h
/freebsd-11-stable/sys/sys/un.h
/freebsd-11-stable/sys/sys/unistd.h
/freebsd-11-stable/sys/sys/unpcb.h
/freebsd-11-stable/sys/sys/user.h
/freebsd-11-stable/sys/sys/utsname.h
/freebsd-11-stable/sys/sys/uuid.h
/freebsd-11-stable/sys/sys/vdso.h
/freebsd-11-stable/sys/sys/vmem.h
/freebsd-11-stable/sys/sys/vmmeter.h
/freebsd-11-stable/sys/sys/vnode.h
/freebsd-11-stable/sys/sys/wait.h
/freebsd-11-stable/sys/sys/watchdog.h
/freebsd-11-stable/sys/tools/makeobjops.awk
/freebsd-11-stable/sys/tools/vnode_if.awk
/freebsd-11-stable/sys/ufs/ffs/ffs_alloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_balloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_extern.h
/freebsd-11-stable/sys/ufs/ffs/ffs_inode.c
/freebsd-11-stable/sys/ufs/ffs/ffs_subr.c
/freebsd-11-stable/sys/ufs/ffs/ffs_tables.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vfsops.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vnops.c
/freebsd-11-stable/sys/ufs/ffs/fs.h
/freebsd-11-stable/sys/ufs/ufs/dir.h
/freebsd-11-stable/sys/ufs/ufs/inode.h
/freebsd-11-stable/sys/ufs/ufs/quota.h
/freebsd-11-stable/sys/ufs/ufs/ufs_bmap.c
/freebsd-11-stable/sys/ufs/ufs/ufs_extern.h
/freebsd-11-stable/sys/ufs/ufs/ufs_inode.c
/freebsd-11-stable/sys/ufs/ufs/ufs_lookup.c
/freebsd-11-stable/sys/ufs/ufs/ufs_quota.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vfsops.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vnops.c
/freebsd-11-stable/sys/ufs/ufs/ufsmount.h
/freebsd-11-stable/sys/vm/device_pager.c
/freebsd-11-stable/sys/vm/pmap.h
/freebsd-11-stable/sys/vm/swap_pager.c
/freebsd-11-stable/sys/vm/swap_pager.h
/freebsd-11-stable/sys/vm/vm.h
/freebsd-11-stable/sys/vm/vm_extern.h
/freebsd-11-stable/sys/vm/vm_fault.c
/freebsd-11-stable/sys/vm/vm_glue.c
/freebsd-11-stable/sys/vm/vm_init.c
/freebsd-11-stable/sys/vm/vm_kern.c
/freebsd-11-stable/sys/vm/vm_kern.h
/freebsd-11-stable/sys/vm/vm_map.c
/freebsd-11-stable/sys/vm/vm_map.h
/freebsd-11-stable/sys/vm/vm_meter.c
/freebsd-11-stable/sys/vm/vm_mmap.c
/freebsd-11-stable/sys/vm/vm_object.c
/freebsd-11-stable/sys/vm/vm_object.h
/freebsd-11-stable/sys/vm/vm_page.c
/freebsd-11-stable/sys/vm/vm_page.h
/freebsd-11-stable/sys/vm/vm_pageout.c
/freebsd-11-stable/sys/vm/vm_pageout.h
/freebsd-11-stable/sys/vm/vm_pager.c
/freebsd-11-stable/sys/vm/vm_pager.h
/freebsd-11-stable/sys/vm/vm_param.h
/freebsd-11-stable/sys/vm/vm_unix.c
/freebsd-11-stable/sys/vm/vnode_pager.c
/freebsd-11-stable/sys/vm/vnode_pager.h
/freebsd-11-stable/sys/x86/include/_align.h
/freebsd-11-stable/sys/x86/include/_limits.h
/freebsd-11-stable/sys/x86/include/_types.h
/freebsd-11-stable/sys/x86/include/endian.h
/freebsd-11-stable/sys/x86/include/float.h
/freebsd-11-stable/sys/x86/include/frame.h
/freebsd-11-stable/sys/x86/include/psl.h
/freebsd-11-stable/sys/x86/include/ptrace.h
/freebsd-11-stable/sys/x86/include/reg.h
/freebsd-11-stable/sys/x86/include/segments.h
/freebsd-11-stable/sys/x86/include/setjmp.h
/freebsd-11-stable/sys/x86/include/signal.h
/freebsd-11-stable/sys/x86/include/specialreg.h
/freebsd-11-stable/sys/x86/include/stdarg.h
/freebsd-11-stable/sys/x86/include/sysarch.h
/freebsd-11-stable/sys/x86/include/trap.h
/freebsd-11-stable/sys/x86/isa/clock.c
/freebsd-11-stable/sys/x86/isa/icu.h
/freebsd-11-stable/sys/x86/isa/isa_dma.c
/freebsd-11-stable/sys/x86/isa/nmi.c
/freebsd-11-stable/sys/x86/x86/delay.c
/freebsd-11-stable/sys/x86/x86/msi.c
/freebsd-11-stable/tools/regression/aio/aiop/aiop.c
/freebsd-11-stable/tools/regression/p1003_1b/fifo.c
/freebsd-11-stable/tools/regression/p1003_1b/memlock.c
/freebsd-11-stable/tools/regression/p1003_1b/p26.c
/freebsd-11-stable/tools/regression/p1003_1b/sched.c
/freebsd-11-stable/tools/regression/p1003_1b/yield.c
/freebsd-11-stable/tools/regression/posixsem/posixsem.c
/freebsd-11-stable/tools/regression/posixsem/test.c
/freebsd-11-stable/tools/regression/posixsem/test.h
/freebsd-11-stable/tools/test/hwpmc/pmctest.py
/freebsd-11-stable/tools/tools/cxgbtool/cxgbtool.c
/freebsd-11-stable/tools/tools/pirtool/pirtable.h
/freebsd-11-stable/tools/tools/pirtool/pirtool.c
/freebsd-11-stable/tools/tools/vxge/vxge_cmn.h
/freebsd-11-stable/tools/tools/vxge/vxge_info.c
/freebsd-11-stable/tools/tools/vxge/vxge_info.h
/freebsd-11-stable/tools/tools/vxge/vxge_log.c
/freebsd-11-stable/tools/tools/vxge/vxge_log.h
/freebsd-11-stable/usr.bin/apply/apply.c
/freebsd-11-stable/usr.bin/ar/ar.c
/freebsd-11-stable/usr.bin/banner/banner.c
/freebsd-11-stable/usr.bin/basename/basename.c
/freebsd-11-stable/usr.bin/biff/biff.c
/freebsd-11-stable/usr.bin/calendar/calendar.c
/freebsd-11-stable/usr.bin/calendar/calendar.h
/freebsd-11-stable/usr.bin/calendar/day.c
/freebsd-11-stable/usr.bin/calendar/io.c
/freebsd-11-stable/usr.bin/calendar/locale.c
/freebsd-11-stable/usr.bin/calendar/pathnames.h
/freebsd-11-stable/usr.bin/calendar/pom.c
/freebsd-11-stable/usr.bin/cap_mkdb/cap_mkdb.c
/freebsd-11-stable/usr.bin/chpass/chpass.c
/freebsd-11-stable/usr.bin/chpass/chpass.h
/freebsd-11-stable/usr.bin/chpass/edit.c
/freebsd-11-stable/usr.bin/chpass/field.c
/freebsd-11-stable/usr.bin/chpass/table.c
/freebsd-11-stable/usr.bin/chpass/util.c
/freebsd-11-stable/usr.bin/cksum/cksum.c
/freebsd-11-stable/usr.bin/cksum/crc.c
/freebsd-11-stable/usr.bin/cksum/extern.h
/freebsd-11-stable/usr.bin/cksum/print.c
/freebsd-11-stable/usr.bin/cksum/sum1.c
/freebsd-11-stable/usr.bin/cksum/sum2.c
/freebsd-11-stable/usr.bin/cmp/cmp.c
/freebsd-11-stable/usr.bin/cmp/extern.h
/freebsd-11-stable/usr.bin/cmp/misc.c
/freebsd-11-stable/usr.bin/cmp/regular.c
/freebsd-11-stable/usr.bin/cmp/special.c
/freebsd-11-stable/usr.bin/col/col.c
/freebsd-11-stable/usr.bin/colrm/colrm.c
/freebsd-11-stable/usr.bin/column/column.c
/freebsd-11-stable/usr.bin/comm/comm.c
/freebsd-11-stable/usr.bin/compress/compress.c
/freebsd-11-stable/usr.bin/compress/zopen.c
/freebsd-11-stable/usr.bin/ctags/C.c
/freebsd-11-stable/usr.bin/ctags/ctags.c
/freebsd-11-stable/usr.bin/ctags/ctags.h
/freebsd-11-stable/usr.bin/ctags/fortran.c
/freebsd-11-stable/usr.bin/ctags/lisp.c
/freebsd-11-stable/usr.bin/ctags/print.c
/freebsd-11-stable/usr.bin/ctags/tree.c
/freebsd-11-stable/usr.bin/ctags/yacc.c
/freebsd-11-stable/usr.bin/cut/cut.c
/freebsd-11-stable/usr.bin/dirname/dirname.c
/freebsd-11-stable/usr.bin/du/du.c
/freebsd-11-stable/usr.bin/env/env.c
/freebsd-11-stable/usr.bin/expand/expand.c
/freebsd-11-stable/usr.bin/false/false.c
/freebsd-11-stable/usr.bin/find/extern.h
/freebsd-11-stable/usr.bin/find/find.c
/freebsd-11-stable/usr.bin/find/find.h
/freebsd-11-stable/usr.bin/find/function.c
/freebsd-11-stable/usr.bin/find/ls.c
/freebsd-11-stable/usr.bin/find/main.c
/freebsd-11-stable/usr.bin/find/misc.c
/freebsd-11-stable/usr.bin/find/operator.c
/freebsd-11-stable/usr.bin/find/option.c
/freebsd-11-stable/usr.bin/finger/extern.h
/freebsd-11-stable/usr.bin/finger/finger.c
/freebsd-11-stable/usr.bin/finger/finger.h
/freebsd-11-stable/usr.bin/finger/lprint.c
/freebsd-11-stable/usr.bin/finger/net.c
/freebsd-11-stable/usr.bin/finger/sprint.c
/freebsd-11-stable/usr.bin/finger/util.c
/freebsd-11-stable/usr.bin/fold/fold.c
/freebsd-11-stable/usr.bin/from/from.c
/freebsd-11-stable/usr.bin/fstat/fstat.c
/freebsd-11-stable/usr.bin/gcore/extern.h
/freebsd-11-stable/usr.bin/gcore/gcore.c
/freebsd-11-stable/usr.bin/gprof/amd64.h
/freebsd-11-stable/usr.bin/gprof/aout.c
/freebsd-11-stable/usr.bin/gprof/arcs.c
/freebsd-11-stable/usr.bin/gprof/arm.h
/freebsd-11-stable/usr.bin/gprof/dfn.c
/freebsd-11-stable/usr.bin/gprof/elf.c
/freebsd-11-stable/usr.bin/gprof/gprof.c
/freebsd-11-stable/usr.bin/gprof/gprof.h
/freebsd-11-stable/usr.bin/gprof/hertz.c
/freebsd-11-stable/usr.bin/gprof/i386.h
/freebsd-11-stable/usr.bin/gprof/lookup.c
/freebsd-11-stable/usr.bin/gprof/mips.h
/freebsd-11-stable/usr.bin/gprof/pathnames.h
/freebsd-11-stable/usr.bin/gprof/powerpc.h
/freebsd-11-stable/usr.bin/gprof/printgprof.c
/freebsd-11-stable/usr.bin/gprof/printlist.c
/freebsd-11-stable/usr.bin/gprof/sparc64.h
/freebsd-11-stable/usr.bin/gzip/zuncompress.c
/freebsd-11-stable/usr.bin/head/head.c
/freebsd-11-stable/usr.bin/hexdump/conv.c
/freebsd-11-stable/usr.bin/hexdump/display.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.h
/freebsd-11-stable/usr.bin/hexdump/hexsyntax.c
/freebsd-11-stable/usr.bin/hexdump/odsyntax.c
/freebsd-11-stable/usr.bin/hexdump/parse.c
/freebsd-11-stable/usr.bin/id/id.c
/freebsd-11-stable/usr.bin/indent/args.c
/freebsd-11-stable/usr.bin/indent/indent.c
/freebsd-11-stable/usr.bin/indent/indent_codes.h
/freebsd-11-stable/usr.bin/indent/indent_globs.h
/freebsd-11-stable/usr.bin/indent/io.c
/freebsd-11-stable/usr.bin/indent/lexi.c
/freebsd-11-stable/usr.bin/indent/parse.c
/freebsd-11-stable/usr.bin/indent/pr_comment.c
/freebsd-11-stable/usr.bin/join/join.c
/freebsd-11-stable/usr.bin/jot/jot.c
/freebsd-11-stable/usr.bin/kdump/kdump.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.h
/freebsd-11-stable/usr.bin/ktrace/subr.c
/freebsd-11-stable/usr.bin/lam/lam.c
/freebsd-11-stable/usr.bin/last/last.c
/freebsd-11-stable/usr.bin/lastcomm/lastcomm.c
/freebsd-11-stable/usr.bin/lastcomm/pathnames.h
/freebsd-11-stable/usr.bin/leave/leave.c
/freebsd-11-stable/usr.bin/lex/initparse.c
/freebsd-11-stable/usr.bin/locate/bigram/locate.bigram.c
/freebsd-11-stable/usr.bin/locate/code/locate.code.c
/freebsd-11-stable/usr.bin/locate/locate/fastfind.c
/freebsd-11-stable/usr.bin/locate/locate/locate.c
/freebsd-11-stable/usr.bin/locate/locate/locate.h
/freebsd-11-stable/usr.bin/locate/locate/util.c
/freebsd-11-stable/usr.bin/lock/lock.c
/freebsd-11-stable/usr.bin/logger/logger.c
/freebsd-11-stable/usr.bin/login/login.c
/freebsd-11-stable/usr.bin/login/login_audit.c
/freebsd-11-stable/usr.bin/login/pathnames.h
/freebsd-11-stable/usr.bin/logname/logname.c
/freebsd-11-stable/usr.bin/look/look.c
/freebsd-11-stable/usr.bin/look/pathnames.h
/freebsd-11-stable/usr.bin/lorder/lorder.sh
/freebsd-11-stable/usr.bin/m4/eval.c
/freebsd-11-stable/usr.bin/m4/extern.h
/freebsd-11-stable/usr.bin/m4/look.c
/freebsd-11-stable/usr.bin/m4/main.c
/freebsd-11-stable/usr.bin/m4/mdef.h
/freebsd-11-stable/usr.bin/m4/misc.c
/freebsd-11-stable/usr.bin/m4/pathnames.h
/freebsd-11-stable/usr.bin/m4/stdd.h
/freebsd-11-stable/usr.bin/mail/cmd1.c
/freebsd-11-stable/usr.bin/mail/cmd2.c
/freebsd-11-stable/usr.bin/mail/cmd3.c
/freebsd-11-stable/usr.bin/mail/cmdtab.c
/freebsd-11-stable/usr.bin/mail/collect.c
/freebsd-11-stable/usr.bin/mail/def.h
/freebsd-11-stable/usr.bin/mail/edit.c
/freebsd-11-stable/usr.bin/mail/extern.h
/freebsd-11-stable/usr.bin/mail/fio.c
/freebsd-11-stable/usr.bin/mail/getname.c
/freebsd-11-stable/usr.bin/mail/glob.h
/freebsd-11-stable/usr.bin/mail/head.c
/freebsd-11-stable/usr.bin/mail/lex.c
/freebsd-11-stable/usr.bin/mail/list.c
/freebsd-11-stable/usr.bin/mail/main.c
/freebsd-11-stable/usr.bin/mail/names.c
/freebsd-11-stable/usr.bin/mail/pathnames.h
/freebsd-11-stable/usr.bin/mail/popen.c
/freebsd-11-stable/usr.bin/mail/quit.c
/freebsd-11-stable/usr.bin/mail/rcv.h
/freebsd-11-stable/usr.bin/mail/send.c
/freebsd-11-stable/usr.bin/mail/strings.c
/freebsd-11-stable/usr.bin/mail/temp.c
/freebsd-11-stable/usr.bin/mail/tty.c
/freebsd-11-stable/usr.bin/mail/util.c
/freebsd-11-stable/usr.bin/mail/v7.local.c
/freebsd-11-stable/usr.bin/mail/vars.c
/freebsd-11-stable/usr.bin/mail/version.c
/freebsd-11-stable/usr.bin/mesg/mesg.c
/freebsd-11-stable/usr.bin/mkdep/mkdep.gcc.sh
/freebsd-11-stable/usr.bin/mkdep/mkdep.sh
/freebsd-11-stable/usr.bin/mkfifo/mkfifo.c
/freebsd-11-stable/usr.bin/mklocale/extern.h
/freebsd-11-stable/usr.bin/mklocale/ldef.h
/freebsd-11-stable/usr.bin/mklocale/lex.l
/freebsd-11-stable/usr.bin/mklocale/yacc.y
/freebsd-11-stable/usr.bin/mkstr/mkstr.c
/freebsd-11-stable/usr.bin/msgs/msgs.c
/freebsd-11-stable/usr.bin/msgs/pathnames.h
/freebsd-11-stable/usr.bin/mt/mt.c
/freebsd-11-stable/usr.bin/netstat/if.c
/freebsd-11-stable/usr.bin/netstat/inet6.c
/freebsd-11-stable/usr.bin/netstat/ipsec.c
/freebsd-11-stable/usr.bin/netstat/main.c
/freebsd-11-stable/usr.bin/netstat/mbuf.c
/freebsd-11-stable/usr.bin/netstat/mroute.c
/freebsd-11-stable/usr.bin/netstat/mroute6.c
/freebsd-11-stable/usr.bin/netstat/netstat.h
/freebsd-11-stable/usr.bin/netstat/pfkey.c
/freebsd-11-stable/usr.bin/netstat/route.c
/freebsd-11-stable/usr.bin/netstat/sctp.c
/freebsd-11-stable/usr.bin/netstat/unix.c
/freebsd-11-stable/usr.bin/nice/nice.c
/freebsd-11-stable/usr.bin/nohup/nohup.c
/freebsd-11-stable/usr.bin/pagesize/pagesize.sh
/freebsd-11-stable/usr.bin/paste/paste.c
/freebsd-11-stable/usr.bin/patch/mkpath.c
/freebsd-11-stable/usr.bin/pr/egetopt.c
/freebsd-11-stable/usr.bin/pr/extern.h
/freebsd-11-stable/usr.bin/pr/pr.c
/freebsd-11-stable/usr.bin/pr/pr.h
/freebsd-11-stable/usr.bin/printenv/printenv.c
/freebsd-11-stable/usr.bin/printf/printf.c
/freebsd-11-stable/usr.bin/quota/quota.c
/freebsd-11-stable/usr.bin/renice/renice.c
/freebsd-11-stable/usr.bin/rev/rev.c
/freebsd-11-stable/usr.bin/rs/rs.c
/freebsd-11-stable/usr.bin/rup/rup.c
/freebsd-11-stable/usr.bin/ruptime/ruptime.c
/freebsd-11-stable/usr.bin/rusers/rusers.c
/freebsd-11-stable/usr.bin/rwall/rwall.c
/freebsd-11-stable/usr.bin/rwho/rwho.c
/freebsd-11-stable/usr.bin/script/script.c
/freebsd-11-stable/usr.bin/sed/compile.c
/freebsd-11-stable/usr.bin/sed/defs.h
/freebsd-11-stable/usr.bin/sed/extern.h
/freebsd-11-stable/usr.bin/sed/main.c
/freebsd-11-stable/usr.bin/sed/misc.c
/freebsd-11-stable/usr.bin/sed/process.c
/freebsd-11-stable/usr.bin/shar/shar.sh
/freebsd-11-stable/usr.bin/showmount/showmount.c
/freebsd-11-stable/usr.bin/split/split.c
/freebsd-11-stable/usr.bin/su/su.c
/freebsd-11-stable/usr.bin/systat/cmds.c
/freebsd-11-stable/usr.bin/systat/cmdtab.c
/freebsd-11-stable/usr.bin/systat/devs.c
/freebsd-11-stable/usr.bin/systat/extern.h
/freebsd-11-stable/usr.bin/systat/fetch.c
/freebsd-11-stable/usr.bin/systat/icmp.c
/freebsd-11-stable/usr.bin/systat/icmp6.c
/freebsd-11-stable/usr.bin/systat/iostat.c
/freebsd-11-stable/usr.bin/systat/ip.c
/freebsd-11-stable/usr.bin/systat/ip6.c
/freebsd-11-stable/usr.bin/systat/keyboard.c
/freebsd-11-stable/usr.bin/systat/main.c
/freebsd-11-stable/usr.bin/systat/netcmds.c
/freebsd-11-stable/usr.bin/systat/netstat.c
/freebsd-11-stable/usr.bin/systat/pigs.c
/freebsd-11-stable/usr.bin/systat/swap.c
/freebsd-11-stable/usr.bin/systat/systat.h
/freebsd-11-stable/usr.bin/systat/tcp.c
/freebsd-11-stable/usr.bin/systat/vmstat.c
/freebsd-11-stable/usr.bin/tail/extern.h
/freebsd-11-stable/usr.bin/tail/forward.c
/freebsd-11-stable/usr.bin/tail/misc.c
/freebsd-11-stable/usr.bin/tail/read.c
/freebsd-11-stable/usr.bin/tail/reverse.c
/freebsd-11-stable/usr.bin/tail/tail.c
/freebsd-11-stable/usr.bin/talk/ctl.c
/freebsd-11-stable/usr.bin/talk/ctl_transact.c
/freebsd-11-stable/usr.bin/talk/display.c
/freebsd-11-stable/usr.bin/talk/get_addrs.c
/freebsd-11-stable/usr.bin/talk/get_names.c
/freebsd-11-stable/usr.bin/talk/init_disp.c
/freebsd-11-stable/usr.bin/talk/invite.c
/freebsd-11-stable/usr.bin/talk/io.c
/freebsd-11-stable/usr.bin/talk/look_up.c
/freebsd-11-stable/usr.bin/talk/msgs.c
/freebsd-11-stable/usr.bin/talk/talk.c
/freebsd-11-stable/usr.bin/talk/talk.h
/freebsd-11-stable/usr.bin/talk/talk_ctl.h
/freebsd-11-stable/usr.bin/tcopy/tcopy.c
/freebsd-11-stable/usr.bin/tee/tee.c
/freebsd-11-stable/usr.bin/tftp/main.c
/freebsd-11-stable/usr.bin/tftp/tftp.c
/freebsd-11-stable/usr.bin/tftp/tftp.h
/freebsd-11-stable/usr.bin/time/time.c
/freebsd-11-stable/usr.bin/tip/libacu/biz22.c
/freebsd-11-stable/usr.bin/tip/libacu/biz31.c
/freebsd-11-stable/usr.bin/tip/libacu/courier.c
/freebsd-11-stable/usr.bin/tip/libacu/df.c
/freebsd-11-stable/usr.bin/tip/libacu/dn11.c
/freebsd-11-stable/usr.bin/tip/libacu/hayes.c
/freebsd-11-stable/usr.bin/tip/libacu/t3000.c
/freebsd-11-stable/usr.bin/tip/libacu/v3451.c
/freebsd-11-stable/usr.bin/tip/libacu/v831.c
/freebsd-11-stable/usr.bin/tip/libacu/ventel.c
/freebsd-11-stable/usr.bin/tip/tip/acu.c
/freebsd-11-stable/usr.bin/tip/tip/acutab.c
/freebsd-11-stable/usr.bin/tip/tip/cmds.c
/freebsd-11-stable/usr.bin/tip/tip/cmdtab.c
/freebsd-11-stable/usr.bin/tip/tip/cu.c
/freebsd-11-stable/usr.bin/tip/tip/hunt.c
/freebsd-11-stable/usr.bin/tip/tip/log.c
/freebsd-11-stable/usr.bin/tip/tip/partab.c
/freebsd-11-stable/usr.bin/tip/tip/pathnames.h
/freebsd-11-stable/usr.bin/tip/tip/remote.c
/freebsd-11-stable/usr.bin/tip/tip/tip.c
/freebsd-11-stable/usr.bin/tip/tip/tip.h
/freebsd-11-stable/usr.bin/tip/tip/tipout.c
/freebsd-11-stable/usr.bin/tip/tip/uucplock.c
/freebsd-11-stable/usr.bin/tip/tip/value.c
/freebsd-11-stable/usr.bin/tip/tip/vars.c
/freebsd-11-stable/usr.bin/touch/touch.c
/freebsd-11-stable/usr.bin/tput/clear.sh
/freebsd-11-stable/usr.bin/tput/tput.c
/freebsd-11-stable/usr.bin/tr/extern.h
/freebsd-11-stable/usr.bin/tr/str.c
/freebsd-11-stable/usr.bin/tr/tr.c
/freebsd-11-stable/usr.bin/true/true.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd32.c
/freebsd-11-stable/usr.bin/truss/amd64-linux.c
/freebsd-11-stable/usr.bin/truss/amd64-linux32.c
/freebsd-11-stable/usr.bin/truss/arm-freebsd.c
/freebsd-11-stable/usr.bin/truss/extern.h
/freebsd-11-stable/usr.bin/truss/i386-freebsd.c
/freebsd-11-stable/usr.bin/truss/i386-linux.c
/freebsd-11-stable/usr.bin/truss/main.c
/freebsd-11-stable/usr.bin/truss/mips-freebsd.c
/freebsd-11-stable/usr.bin/truss/setup.c
/freebsd-11-stable/usr.bin/truss/sparc64-freebsd.c
/freebsd-11-stable/usr.bin/truss/syscalls.c
/freebsd-11-stable/usr.bin/tset/extern.h
/freebsd-11-stable/usr.bin/tset/map.c
/freebsd-11-stable/usr.bin/tset/misc.c
/freebsd-11-stable/usr.bin/tset/set.c
/freebsd-11-stable/usr.bin/tset/term.c
/freebsd-11-stable/usr.bin/tset/tset.c
/freebsd-11-stable/usr.bin/tset/wrterm.c
/freebsd-11-stable/usr.bin/tsort/tsort.c
/freebsd-11-stable/usr.bin/tty/tty.c
/freebsd-11-stable/usr.bin/ul/ul.c
/freebsd-11-stable/usr.bin/uname/uname.c
/freebsd-11-stable/usr.bin/unexpand/unexpand.c
/freebsd-11-stable/usr.bin/uniq/uniq.c
/freebsd-11-stable/usr.bin/uudecode/uudecode.c
/freebsd-11-stable/usr.bin/uuencode/uuencode.c
/freebsd-11-stable/usr.bin/vgrind/extern.h
/freebsd-11-stable/usr.bin/vgrind/pathnames.h
/freebsd-11-stable/usr.bin/vgrind/regexp.c
/freebsd-11-stable/usr.bin/vgrind/vfontedpr.c
/freebsd-11-stable/usr.bin/vgrind/vgrind.sh
/freebsd-11-stable/usr.bin/vmstat/vmstat.c
/freebsd-11-stable/usr.bin/w/extern.h
/freebsd-11-stable/usr.bin/w/pr_time.c
/freebsd-11-stable/usr.bin/w/proc_compare.c
/freebsd-11-stable/usr.bin/w/w.c
/freebsd-11-stable/usr.bin/wall/ttymsg.c
/freebsd-11-stable/usr.bin/wall/wall.c
/freebsd-11-stable/usr.bin/wc/wc.c
/freebsd-11-stable/usr.bin/what/what.c
/freebsd-11-stable/usr.bin/whois/whois.c
/freebsd-11-stable/usr.bin/write/write.c
/freebsd-11-stable/usr.bin/xargs/pathnames.h
/freebsd-11-stable/usr.bin/xargs/xargs.c
/freebsd-11-stable/usr.bin/xinstall/xinstall.c
/freebsd-11-stable/usr.bin/xstr/pathnames.h
/freebsd-11-stable/usr.bin/xstr/xstr.c
/freebsd-11-stable/usr.bin/yes/yes.c
/freebsd-11-stable/usr.sbin/accton/accton.c
/freebsd-11-stable/usr.sbin/ancontrol/ancontrol.c
/freebsd-11-stable/usr.sbin/arp/arp.c
/freebsd-11-stable/usr.sbin/chown/chown.c
/freebsd-11-stable/usr.sbin/chroot/chroot.c
/freebsd-11-stable/usr.sbin/config/config.h
/freebsd-11-stable/usr.sbin/config/config.y
/freebsd-11-stable/usr.sbin/config/lang.l
/freebsd-11-stable/usr.sbin/config/main.c
/freebsd-11-stable/usr.sbin/config/mkheaders.c
/freebsd-11-stable/usr.sbin/config/mkmakefile.c
/freebsd-11-stable/usr.sbin/config/mkoptions.c
/freebsd-11-stable/usr.sbin/crashinfo/crashinfo.sh
/freebsd-11-stable/usr.sbin/dconschat/dconschat.c
/freebsd-11-stable/usr.sbin/edquota/edquota.c
/freebsd-11-stable/usr.sbin/edquota/pathnames.h
/freebsd-11-stable/usr.sbin/fwcontrol/fwcontrol.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwdv.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwmpegts.c
/freebsd-11-stable/usr.sbin/ifmcstat/ifmcstat.c
/freebsd-11-stable/usr.sbin/ifmcstat/printb.c
/freebsd-11-stable/usr.sbin/inetd/inetd.c
/freebsd-11-stable/usr.sbin/inetd/inetd.h
/freebsd-11-stable/usr.sbin/inetd/pathnames.h
/freebsd-11-stable/usr.sbin/iostat/iostat.c
/freebsd-11-stable/usr.sbin/ip6addrctl/ip6addrctl.c
/freebsd-11-stable/usr.sbin/kgmon/kgmon.c
/freebsd-11-stable/usr.sbin/kldxref/ef.c
/freebsd-11-stable/usr.sbin/kldxref/ef_obj.c
/freebsd-11-stable/usr.sbin/kldxref/kldxref.c
/freebsd-11-stable/usr.sbin/lpr/common_source/common.c
/freebsd-11-stable/usr.sbin/lpr/common_source/displayq.c
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.h
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.local.h
/freebsd-11-stable/usr.sbin/lpr/common_source/net.c
/freebsd-11-stable/usr.sbin/lpr/common_source/pathnames.h
/freebsd-11-stable/usr.sbin/lpr/common_source/printcap.c
/freebsd-11-stable/usr.sbin/lpr/common_source/rmjob.c
/freebsd-11-stable/usr.sbin/lpr/common_source/startdaemon.c
/freebsd-11-stable/usr.sbin/lpr/filters/lpf.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmds.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmdtab.c
/freebsd-11-stable/usr.sbin/lpr/lpc/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.c
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.h
/freebsd-11-stable/usr.sbin/lpr/lpd/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpd/lpd.c
/freebsd-11-stable/usr.sbin/lpr/lpd/lpdchar.c
/freebsd-11-stable/usr.sbin/lpr/lpd/modes.c
/freebsd-11-stable/usr.sbin/lpr/lpd/printjob.c
/freebsd-11-stable/usr.sbin/lpr/lpd/recvjob.c
/freebsd-11-stable/usr.sbin/lpr/lpq/lpq.c
/freebsd-11-stable/usr.sbin/lpr/lpr/lpr.c
/freebsd-11-stable/usr.sbin/lpr/lprm/lprm.c
/freebsd-11-stable/usr.sbin/lpr/lptest/lptest.c
/freebsd-11-stable/usr.sbin/lpr/pac/pac.c
/freebsd-11-stable/usr.sbin/makefs/ffs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_alloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_balloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_extern.h
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_subr.c
/freebsd-11-stable/usr.sbin/makefs/ffs/mkfs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_bmap.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_inode.h
/freebsd-11-stable/usr.sbin/manctl/manctl.sh
/freebsd-11-stable/usr.sbin/mld6query/mld6.c
/freebsd-11-stable/usr.sbin/mountd/mountd.c
/freebsd-11-stable/usr.sbin/mountd/pathnames.h
/freebsd-11-stable/usr.sbin/mptutil/mpt_cam.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_cmd.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_config.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_drive.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_evt.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_show.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_volume.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.h
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.c
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.h
/freebsd-11-stable/usr.sbin/ndiscvt/inf-parse.y
/freebsd-11-stable/usr.sbin/ndiscvt/inf-token.l
/freebsd-11-stable/usr.sbin/ndiscvt/inf.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndiscvt.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndisgen.sh
/freebsd-11-stable/usr.sbin/ndiscvt/windrv_stub.c
/freebsd-11-stable/usr.sbin/ndp/ndp.c
/freebsd-11-stable/usr.sbin/nfsd/nfsd.c
/freebsd-11-stable/usr.sbin/pciconf/cap.c
/freebsd-11-stable/usr.sbin/pciconf/pciconf.h
/freebsd-11-stable/usr.sbin/ppp/slcompress.c
/freebsd-11-stable/usr.sbin/ppp/slcompress.h
/freebsd-11-stable/usr.sbin/pstat/pstat.c
/freebsd-11-stable/usr.sbin/pwd_mkdb/pwd_mkdb.c
/freebsd-11-stable/usr.sbin/quotaon/quotaon.c
/freebsd-11-stable/usr.sbin/repquota/repquota.c
/freebsd-11-stable/usr.sbin/rip6query/rip6query.c
/freebsd-11-stable/usr.sbin/rmt/rmt.c
/freebsd-11-stable/usr.sbin/route6d/misc/cksum.c
/freebsd-11-stable/usr.sbin/route6d/route6d.c
/freebsd-11-stable/usr.sbin/route6d/route6d.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lock_proc.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd_lock.c
/freebsd-11-stable/usr.sbin/rpc.statd/file.c
/freebsd-11-stable/usr.sbin/rpc.statd/procs.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_main.c
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_server.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbdelete.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbupdate.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_main.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_server.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_extern.h
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_main.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_server.c
/freebsd-11-stable/usr.sbin/rpcbind/check_bound.c
/freebsd-11-stable/usr.sbin/rpcbind/pmap_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_stat.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_4.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_com.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.h
/freebsd-11-stable/usr.sbin/rpcbind/warmstart.c
/freebsd-11-stable/usr.sbin/rrenumd/lexer.l
/freebsd-11-stable/usr.sbin/rrenumd/parser.y
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.c
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.h
/freebsd-11-stable/usr.sbin/rtadvd/advcap.c
/freebsd-11-stable/usr.sbin/rtadvd/config.c
/freebsd-11-stable/usr.sbin/rtadvd/config.h
/freebsd-11-stable/usr.sbin/rtadvd/if.c
/freebsd-11-stable/usr.sbin/rtadvd/if.h
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.c
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.h
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.c
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.h
/freebsd-11-stable/usr.sbin/rtadvd/timer.c
/freebsd-11-stable/usr.sbin/rtadvd/timer.h
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.c
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.h
/freebsd-11-stable/usr.sbin/rtsold/dump.c
/freebsd-11-stable/usr.sbin/rtsold/if.c
/freebsd-11-stable/usr.sbin/rtsold/probe.c
/freebsd-11-stable/usr.sbin/rtsold/rtsock.c
/freebsd-11-stable/usr.sbin/rtsold/rtsol.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.h
/freebsd-11-stable/usr.sbin/rwhod/rwhod.c
/freebsd-11-stable/usr.sbin/setfib/setfib.c
/freebsd-11-stable/usr.sbin/syslogd/pathnames.h
/freebsd-11-stable/usr.sbin/syslogd/syslogd.c
/freebsd-11-stable/usr.sbin/timed/timed/acksend.c
/freebsd-11-stable/usr.sbin/timed/timed/byteorder.c
/freebsd-11-stable/usr.sbin/timed/timed/candidate.c
/freebsd-11-stable/usr.sbin/timed/timed/cksum.c
/freebsd-11-stable/usr.sbin/timed/timed/correct.c
/freebsd-11-stable/usr.sbin/timed/timed/extern.h
/freebsd-11-stable/usr.sbin/timed/timed/globals.h
/freebsd-11-stable/usr.sbin/timed/timed/master.c
/freebsd-11-stable/usr.sbin/timed/timed/measure.c
/freebsd-11-stable/usr.sbin/timed/timed/networkdelta.c
/freebsd-11-stable/usr.sbin/timed/timed/pathnames.h
/freebsd-11-stable/usr.sbin/timed/timed/readmsg.c
/freebsd-11-stable/usr.sbin/timed/timed/slave.c
/freebsd-11-stable/usr.sbin/timed/timed/timed.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmds.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmdtab.c
/freebsd-11-stable/usr.sbin/timed/timedc/extern.h
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.c
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.h
/freebsd-11-stable/usr.sbin/traceroute6/traceroute6.c
/freebsd-11-stable/usr.sbin/trpt/trpt.c
/freebsd-11-stable/usr.sbin/vipw/vipw.c
/freebsd-11-stable/usr.sbin/wpa/ndis_events/ndis_events.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.h
/freebsd-11-stable/usr.sbin/yp_mkdb/yp_mkdb.c
/freebsd-11-stable/usr.sbin/ypbind/yp_ping.c
/freebsd-11-stable/usr.sbin/yppush/yppush_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_access.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dblookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dnslookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_error.c
/freebsd-11-stable/usr.sbin/ypserv/yp_extern.h
/freebsd-11-stable/usr.sbin/ypserv/yp_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_server.c
/freebsd-11-stable/usr.sbin/ypserv/yp_svc_udp.c
331643 27-Mar-2018 dim

MFC r314568 (by emaste):

kern_sig.c: ANSIfy and remove archaic register keyword

Sponsored by: The FreeBSD Foundation

MFC r318389 (by emaste):

Remove register keyword from sys/ and ANSIfy prototypes

A long long time ago the register keyword told the compiler to store
the corresponding variable in a CPU register, but it is not relevant
for any compiler used in the FreeBSD world today.

ANSIfy related prototypes while here.

Reviewed by: cem, jhb
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D10193


/freebsd-11-stable/sys/amd64/amd64/sys_machdep.c
/freebsd-11-stable/sys/amd64/amd64/vm_machdep.c
/freebsd-11-stable/sys/arm/arm/sys_machdep.c
/freebsd-11-stable/sys/arm/arm/vm_machdep.c
atomic-v4.h
/freebsd-11-stable/sys/crypto/des/des_enc.c
/freebsd-11-stable/sys/crypto/des/des_setkey.c
/freebsd-11-stable/sys/ddb/db_access.c
/freebsd-11-stable/sys/ddb/db_output.c
/freebsd-11-stable/sys/ddb/db_sym.c
/freebsd-11-stable/sys/dev/cs/if_cs.c
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.c
/freebsd-11-stable/sys/dev/lge/if_lge.c
/freebsd-11-stable/sys/dev/mse/mse_isa.c
/freebsd-11-stable/sys/dev/my/if_my.c
/freebsd-11-stable/sys/dev/pcn/if_pcn.c
/freebsd-11-stable/sys/dev/ppbus/immio.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.c
/freebsd-11-stable/sys/dev/ppc/ppc.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.c
/freebsd-11-stable/sys/dev/rl/if_rl.c
/freebsd-11-stable/sys/dev/sound/pci/fm801.c
/freebsd-11-stable/sys/dev/speaker/spkr.c
/freebsd-11-stable/sys/dev/tl/if_tl.c
/freebsd-11-stable/sys/dev/usb/usb_busdma.c
/freebsd-11-stable/sys/dev/wb/if_wb.c
/freebsd-11-stable/sys/dev/xl/if_xl.c
/freebsd-11-stable/sys/fs/fifofs/fifo_vnops.c
/freebsd-11-stable/sys/fs/nandfs/nandfs_vnops.c
/freebsd-11-stable/sys/i386/i386/in_cksum.c
/freebsd-11-stable/sys/i386/i386/k6_mem.c
/freebsd-11-stable/sys/i386/i386/sys_machdep.c
/freebsd-11-stable/sys/i386/i386/vm_machdep.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_misc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_other.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.c
/freebsd-11-stable/sys/i386/isa/ccbque.h
/freebsd-11-stable/sys/i386/isa/elink.c
/freebsd-11-stable/sys/kern/inflate.c
/freebsd-11-stable/sys/kern/kern_clock.c
/freebsd-11-stable/sys/kern/kern_exec.c
/freebsd-11-stable/sys/kern/kern_prot.c
/freebsd-11-stable/sys/kern/kern_resource.c
/freebsd-11-stable/sys/kern/kern_sig.c
/freebsd-11-stable/sys/kern/kern_timeout.c
/freebsd-11-stable/sys/kern/kern_xxx.c
/freebsd-11-stable/sys/kern/sched_4bsd.c
/freebsd-11-stable/sys/kern/sysv_msg.c
/freebsd-11-stable/sys/kern/vfs_export.c
/freebsd-11-stable/sys/kern/vfs_mount.c
/freebsd-11-stable/sys/kern/vfs_syscalls.c
/freebsd-11-stable/sys/kern/vfs_vnops.c
/freebsd-11-stable/sys/libkern/zlib.c
/freebsd-11-stable/sys/mips/cavium/cryptocteon/cavium_crypto.c
/freebsd-11-stable/sys/mips/mips/vm_machdep.c
/freebsd-11-stable/sys/net/altq/altq_rio.c
/freebsd-11-stable/sys/net/altq/altq_rmclass.h
/freebsd-11-stable/sys/net/bpf_filter.c
/freebsd-11-stable/sys/net/if_llatbl.c
/freebsd-11-stable/sys/net/if_media.c
/freebsd-11-stable/sys/net/slcompress.c
/freebsd-11-stable/sys/netinet/in.c
/freebsd-11-stable/sys/netinet/in_cksum.c
/freebsd-11-stable/sys/netinet/ip_icmp.c
/freebsd-11-stable/sys/netinet6/in6_pcb.c
/freebsd-11-stable/sys/netinet6/raw_ip6.c
/freebsd-11-stable/sys/netipsec/ipsec_mbuf.c
/freebsd-11-stable/sys/rpc/clnt.h
/freebsd-11-stable/sys/sparc64/include/pcpu.h
330897 14-Mar-2018 eadler

Partial merge of the SPDX changes

These changes are incomplete but are making it difficult
to determine what other changes can/should be merged.

No objections from: pfg


/freebsd-11-stable/bin/cat/cat.c
/freebsd-11-stable/bin/chflags/chflags.c
/freebsd-11-stable/bin/chmod/chmod.c
/freebsd-11-stable/bin/cp/cp.c
/freebsd-11-stable/bin/cp/extern.h
/freebsd-11-stable/bin/cp/utils.c
/freebsd-11-stable/bin/date/date.c
/freebsd-11-stable/bin/date/extern.h
/freebsd-11-stable/bin/date/netdate.c
/freebsd-11-stable/bin/dd/args.c
/freebsd-11-stable/bin/dd/conv.c
/freebsd-11-stable/bin/dd/conv_tab.c
/freebsd-11-stable/bin/dd/dd.c
/freebsd-11-stable/bin/dd/dd.h
/freebsd-11-stable/bin/dd/extern.h
/freebsd-11-stable/bin/dd/misc.c
/freebsd-11-stable/bin/dd/position.c
/freebsd-11-stable/bin/df/df.c
/freebsd-11-stable/bin/domainname/domainname.c
/freebsd-11-stable/bin/echo/echo.c
/freebsd-11-stable/bin/ed/cbc.c
/freebsd-11-stable/bin/hostname/hostname.c
/freebsd-11-stable/bin/kill/kill.c
/freebsd-11-stable/bin/ln/ln.c
/freebsd-11-stable/bin/ls/cmp.c
/freebsd-11-stable/bin/ls/extern.h
/freebsd-11-stable/bin/ls/ls.c
/freebsd-11-stable/bin/ls/ls.h
/freebsd-11-stable/bin/ls/print.c
/freebsd-11-stable/bin/ls/util.c
/freebsd-11-stable/bin/mkdir/mkdir.c
/freebsd-11-stable/bin/mv/mv.c
/freebsd-11-stable/bin/pax/ar_io.c
/freebsd-11-stable/bin/pax/ar_subs.c
/freebsd-11-stable/bin/pax/buf_subs.c
/freebsd-11-stable/bin/pax/cache.c
/freebsd-11-stable/bin/pax/cache.h
/freebsd-11-stable/bin/pax/cpio.c
/freebsd-11-stable/bin/pax/cpio.h
/freebsd-11-stable/bin/pax/extern.h
/freebsd-11-stable/bin/pax/file_subs.c
/freebsd-11-stable/bin/pax/ftree.c
/freebsd-11-stable/bin/pax/ftree.h
/freebsd-11-stable/bin/pax/gen_subs.c
/freebsd-11-stable/bin/pax/options.c
/freebsd-11-stable/bin/pax/options.h
/freebsd-11-stable/bin/pax/pat_rep.c
/freebsd-11-stable/bin/pax/pat_rep.h
/freebsd-11-stable/bin/pax/pax.c
/freebsd-11-stable/bin/pax/pax.h
/freebsd-11-stable/bin/pax/sel_subs.c
/freebsd-11-stable/bin/pax/sel_subs.h
/freebsd-11-stable/bin/pax/tables.c
/freebsd-11-stable/bin/pax/tables.h
/freebsd-11-stable/bin/pax/tar.c
/freebsd-11-stable/bin/pax/tar.h
/freebsd-11-stable/bin/pax/tty_subs.c
/freebsd-11-stable/bin/ps/extern.h
/freebsd-11-stable/bin/ps/fmt.c
/freebsd-11-stable/bin/ps/keyword.c
/freebsd-11-stable/bin/ps/nlist.c
/freebsd-11-stable/bin/ps/print.c
/freebsd-11-stable/bin/ps/ps.c
/freebsd-11-stable/bin/ps/ps.h
/freebsd-11-stable/bin/pwd/pwd.c
/freebsd-11-stable/bin/realpath/realpath.c
/freebsd-11-stable/bin/rm/rm.c
/freebsd-11-stable/bin/rmdir/rmdir.c
/freebsd-11-stable/bin/sh/bltin/bltin.h
/freebsd-11-stable/bin/sh/bltin/echo.c
/freebsd-11-stable/bin/sh/mail.h
/freebsd-11-stable/bin/sh/main.c
/freebsd-11-stable/bin/sh/main.h
/freebsd-11-stable/bin/sh/memalloc.c
/freebsd-11-stable/bin/sh/memalloc.h
/freebsd-11-stable/bin/sh/miscbltin.c
/freebsd-11-stable/bin/sh/mknodes.c
/freebsd-11-stable/bin/sh/mksyntax.c
/freebsd-11-stable/bin/sh/myhistedit.h
/freebsd-11-stable/bin/sh/mystring.c
/freebsd-11-stable/bin/sh/mystring.h
/freebsd-11-stable/bin/sh/options.c
/freebsd-11-stable/bin/sh/options.h
/freebsd-11-stable/bin/sh/output.c
/freebsd-11-stable/bin/sh/output.h
/freebsd-11-stable/bin/sh/parser.c
/freebsd-11-stable/bin/sh/parser.h
/freebsd-11-stable/bin/sh/redir.c
/freebsd-11-stable/bin/sh/redir.h
/freebsd-11-stable/bin/sh/shell.h
/freebsd-11-stable/bin/sh/show.c
/freebsd-11-stable/bin/sh/show.h
/freebsd-11-stable/bin/sh/trap.c
/freebsd-11-stable/bin/sh/trap.h
/freebsd-11-stable/bin/sh/var.c
/freebsd-11-stable/bin/sh/var.h
/freebsd-11-stable/include/_ctype.h
/freebsd-11-stable/include/a.out.h
/freebsd-11-stable/include/ar.h
/freebsd-11-stable/include/arpa/ftp.h
/freebsd-11-stable/include/arpa/inet.h
/freebsd-11-stable/include/arpa/nameser.h
/freebsd-11-stable/include/arpa/nameser_compat.h
/freebsd-11-stable/include/arpa/telnet.h
/freebsd-11-stable/include/arpa/tftp.h
/freebsd-11-stable/include/assert.h
/freebsd-11-stable/include/bitstring.h
/freebsd-11-stable/include/complex.h
/freebsd-11-stable/include/cpio.h
/freebsd-11-stable/include/ctype.h
/freebsd-11-stable/include/db.h
/freebsd-11-stable/include/dirent.h
/freebsd-11-stable/include/dlfcn.h
/freebsd-11-stable/include/elf-hints.h
/freebsd-11-stable/include/elf.h
/freebsd-11-stable/include/err.h
/freebsd-11-stable/include/fmtmsg.h
/freebsd-11-stable/include/fnmatch.h
/freebsd-11-stable/include/fstab.h
/freebsd-11-stable/include/fts.h
/freebsd-11-stable/include/getopt.h
/freebsd-11-stable/include/glob.h
/freebsd-11-stable/include/grp.h
/freebsd-11-stable/include/hesiod.h
/freebsd-11-stable/include/iconv.h
/freebsd-11-stable/include/inttypes.h
/freebsd-11-stable/include/iso646.h
/freebsd-11-stable/include/kenv.h
/freebsd-11-stable/include/langinfo.h
/freebsd-11-stable/include/libgen.h
/freebsd-11-stable/include/limits.h
/freebsd-11-stable/include/link.h
/freebsd-11-stable/include/locale.h
/freebsd-11-stable/include/malloc_np.h
/freebsd-11-stable/include/memory.h
/freebsd-11-stable/include/mk-osreldate.sh
/freebsd-11-stable/include/monetary.h
/freebsd-11-stable/include/mpool.h
/freebsd-11-stable/include/mqueue.h
/freebsd-11-stable/include/ndbm.h
/freebsd-11-stable/include/netdb.h
/freebsd-11-stable/include/nl_types.h
/freebsd-11-stable/include/nlist.h
/freebsd-11-stable/include/nss.h
/freebsd-11-stable/include/nsswitch.h
/freebsd-11-stable/include/paths.h
/freebsd-11-stable/include/printf.h
/freebsd-11-stable/include/proc_service.h
/freebsd-11-stable/include/protocols/dumprestore.h
/freebsd-11-stable/include/protocols/routed.h
/freebsd-11-stable/include/protocols/rwhod.h
/freebsd-11-stable/include/protocols/talkd.h
/freebsd-11-stable/include/protocols/timed.h
/freebsd-11-stable/include/pthread.h
/freebsd-11-stable/include/pthread_np.h
/freebsd-11-stable/include/pwd.h
/freebsd-11-stable/include/ranlib.h
/freebsd-11-stable/include/regex.h
/freebsd-11-stable/include/resolv.h
/freebsd-11-stable/include/rpc/auth.h
/freebsd-11-stable/include/rpc/auth_des.h
/freebsd-11-stable/include/rpc/auth_kerb.h
/freebsd-11-stable/include/rpc/auth_unix.h
/freebsd-11-stable/include/rpc/clnt.h
/freebsd-11-stable/include/rpc/clnt_soc.h
/freebsd-11-stable/include/rpc/des.h
/freebsd-11-stable/include/rpc/des_crypt.h
/freebsd-11-stable/include/rpc/nettype.h
/freebsd-11-stable/include/rpc/pmap_clnt.h
/freebsd-11-stable/include/rpc/pmap_prot.h
/freebsd-11-stable/include/rpc/pmap_rmt.h
/freebsd-11-stable/include/rpc/raw.h
/freebsd-11-stable/include/rpc/rpc.h
/freebsd-11-stable/include/rpc/rpc_com.h
/freebsd-11-stable/include/rpc/rpc_msg.h
/freebsd-11-stable/include/rpc/rpcb_clnt.h
/freebsd-11-stable/include/rpc/rpcent.h
/freebsd-11-stable/include/rpc/rpcsec_gss.h
/freebsd-11-stable/include/rpc/svc.h
/freebsd-11-stable/include/rpc/svc_auth.h
/freebsd-11-stable/include/rpc/svc_dg.h
/freebsd-11-stable/include/rpc/svc_soc.h
/freebsd-11-stable/include/rpc/xdr.h
/freebsd-11-stable/include/rpcsvc/nis_tags.h
/freebsd-11-stable/include/rpcsvc/yp_prot.h
/freebsd-11-stable/include/rpcsvc/ypclnt.h
/freebsd-11-stable/include/runetype.h
/freebsd-11-stable/include/semaphore.h
/freebsd-11-stable/include/setjmp.h
/freebsd-11-stable/include/signal.h
/freebsd-11-stable/include/spawn.h
/freebsd-11-stable/include/stab.h
/freebsd-11-stable/include/stdalign.h
/freebsd-11-stable/include/stdbool.h
/freebsd-11-stable/include/stddef.h
/freebsd-11-stable/include/stdio.h
/freebsd-11-stable/include/stdlib.h
/freebsd-11-stable/include/stdnoreturn.h
/freebsd-11-stable/include/string.h
/freebsd-11-stable/include/stringlist.h
/freebsd-11-stable/include/strings.h
/freebsd-11-stable/include/sysexits.h
/freebsd-11-stable/include/tar.h
/freebsd-11-stable/include/termios.h
/freebsd-11-stable/include/tgmath.h
/freebsd-11-stable/include/time.h
/freebsd-11-stable/include/timeconv.h
/freebsd-11-stable/include/timers.h
/freebsd-11-stable/include/ttyent.h
/freebsd-11-stable/include/uchar.h
/freebsd-11-stable/include/ulimit.h
/freebsd-11-stable/include/unistd.h
/freebsd-11-stable/include/utime.h
/freebsd-11-stable/include/utmpx.h
/freebsd-11-stable/include/uuid.h
/freebsd-11-stable/include/varargs.h
/freebsd-11-stable/include/wchar.h
/freebsd-11-stable/include/wctype.h
/freebsd-11-stable/include/wordexp.h
/freebsd-11-stable/include/xlocale.h
/freebsd-11-stable/include/xlocale/_ctype.h
/freebsd-11-stable/include/xlocale/_inttypes.h
/freebsd-11-stable/include/xlocale/_langinfo.h
/freebsd-11-stable/include/xlocale/_locale.h
/freebsd-11-stable/include/xlocale/_monetary.h
/freebsd-11-stable/include/xlocale/_stdio.h
/freebsd-11-stable/include/xlocale/_stdlib.h
/freebsd-11-stable/include/xlocale/_string.h
/freebsd-11-stable/include/xlocale/_time.h
/freebsd-11-stable/include/xlocale/_uchar.h
/freebsd-11-stable/include/xlocale/_wchar.h
/freebsd-11-stable/lib/csu/amd64/crt1.c
/freebsd-11-stable/lib/csu/arm/crt1.c
/freebsd-11-stable/lib/csu/common/crtbrand.c
/freebsd-11-stable/lib/csu/common/ignore_init.c
/freebsd-11-stable/lib/csu/common/notes.h
/freebsd-11-stable/lib/csu/mips/crt1.c
/freebsd-11-stable/lib/csu/powerpc/crt1.c
/freebsd-11-stable/lib/csu/powerpc64/crt1.c
/freebsd-11-stable/lib/csu/sparc64/crt1.c
/freebsd-11-stable/lib/libarchive/config_freebsd.h
/freebsd-11-stable/lib/libbluetooth/bluetooth.c
/freebsd-11-stable/lib/libbluetooth/bluetooth.h
/freebsd-11-stable/lib/libbluetooth/dev.c
/freebsd-11-stable/lib/libbluetooth/hci.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.h
/freebsd-11-stable/lib/libc/amd64/SYS.h
/freebsd-11-stable/lib/libc/amd64/_fpmath.h
/freebsd-11-stable/lib/libc/amd64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/amd64/gen/getcontextx.c
/freebsd-11-stable/lib/libc/amd64/gen/makecontext.c
/freebsd-11-stable/lib/libc/amd64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/amd64/string/strcpy.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_gsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_gsbase.c
/freebsd-11-stable/lib/libc/arm/SYS.h
/freebsd-11-stable/lib/libc/arm/_fpmath.h
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_atexit.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_double.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_float.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_unwind_cpp.c
/freebsd-11-stable/lib/libc/arm/gen/_set_tp.c
/freebsd-11-stable/lib/libc/arm/gen/arm_initfini.c
/freebsd-11-stable/lib/libc/arm/gen/fabs.c
/freebsd-11-stable/lib/libc/arm/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/arm/gen/getcontextx.c
/freebsd-11-stable/lib/libc/arm/gen/makecontext.c
/freebsd-11-stable/lib/libc/arm/gen/signalcontext.c
/freebsd-11-stable/lib/libc/arm/sys/__vdso_gettc.c
/freebsd-11-stable/lib/libc/compat-43/creat.c
/freebsd-11-stable/lib/libc/compat-43/gethostid.c
/freebsd-11-stable/lib/libc/compat-43/getwd.c
/freebsd-11-stable/lib/libc/compat-43/killpg.c
/freebsd-11-stable/lib/libc/compat-43/sethostid.c
/freebsd-11-stable/lib/libc/compat-43/setpgrp.c
/freebsd-11-stable/lib/libc/compat-43/setrgid.c
/freebsd-11-stable/lib/libc/compat-43/setruid.c
/freebsd-11-stable/lib/libc/compat-43/sigcompat.c
/freebsd-11-stable/lib/libc/db/btree/bt_close.c
/freebsd-11-stable/lib/libc/db/btree/bt_conv.c
/freebsd-11-stable/lib/libc/db/btree/bt_debug.c
/freebsd-11-stable/lib/libc/db/btree/bt_delete.c
/freebsd-11-stable/lib/libc/db/btree/bt_get.c
/freebsd-11-stable/lib/libc/db/btree/bt_open.c
/freebsd-11-stable/lib/libc/db/btree/bt_overflow.c
/freebsd-11-stable/lib/libc/db/btree/bt_page.c
/freebsd-11-stable/lib/libc/db/btree/bt_put.c
/freebsd-11-stable/lib/libc/db/btree/bt_search.c
/freebsd-11-stable/lib/libc/db/btree/bt_seq.c
/freebsd-11-stable/lib/libc/db/btree/bt_split.c
/freebsd-11-stable/lib/libc/db/btree/bt_utils.c
/freebsd-11-stable/lib/libc/db/btree/btree.h
/freebsd-11-stable/lib/libc/db/btree/extern.h
/freebsd-11-stable/lib/libc/db/db/db.c
/freebsd-11-stable/lib/libc/db/hash/extern.h
/freebsd-11-stable/lib/libc/db/hash/hash.c
/freebsd-11-stable/lib/libc/db/hash/hash.h
/freebsd-11-stable/lib/libc/db/hash/hash_bigkey.c
/freebsd-11-stable/lib/libc/db/hash/hash_buf.c
/freebsd-11-stable/lib/libc/db/hash/hash_func.c
/freebsd-11-stable/lib/libc/db/hash/hash_log2.c
/freebsd-11-stable/lib/libc/db/hash/hash_page.c
/freebsd-11-stable/lib/libc/db/hash/ndbm.c
/freebsd-11-stable/lib/libc/db/hash/page.h
/freebsd-11-stable/lib/libc/db/mpool/mpool-compat.c
/freebsd-11-stable/lib/libc/db/mpool/mpool.c
/freebsd-11-stable/lib/libc/db/recno/extern.h
/freebsd-11-stable/lib/libc/db/recno/rec_close.c
/freebsd-11-stable/lib/libc/db/recno/rec_delete.c
/freebsd-11-stable/lib/libc/db/recno/rec_get.c
/freebsd-11-stable/lib/libc/db/recno/rec_open.c
/freebsd-11-stable/lib/libc/db/recno/rec_put.c
/freebsd-11-stable/lib/libc/db/recno/rec_search.c
/freebsd-11-stable/lib/libc/db/recno/rec_seq.c
/freebsd-11-stable/lib/libc/db/recno/rec_utils.c
/freebsd-11-stable/lib/libc/db/recno/recno.h
/freebsd-11-stable/lib/libc/db/test/btree.tests/main.c
/freebsd-11-stable/lib/libc/db/test/dbtest.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/driver2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tcreat3.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tdel.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/thash4.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tread2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tseq.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tverify.c
/freebsd-11-stable/lib/libc/gdtoa/_hdtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_hldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_ldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisQ.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisd.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisx.c
/freebsd-11-stable/lib/libc/gen/__getosreldate.c
/freebsd-11-stable/lib/libc/gen/__xuname.c
/freebsd-11-stable/lib/libc/gen/_once_stub.c
/freebsd-11-stable/lib/libc/gen/_pthread_stubs.c
/freebsd-11-stable/lib/libc/gen/_spinlock_stub.c
/freebsd-11-stable/lib/libc/gen/_thread_init.c
/freebsd-11-stable/lib/libc/gen/alarm.c
/freebsd-11-stable/lib/libc/gen/assert.c
/freebsd-11-stable/lib/libc/gen/auxv.c
/freebsd-11-stable/lib/libc/gen/cap_sandboxed.c
/freebsd-11-stable/lib/libc/gen/clock.c
/freebsd-11-stable/lib/libc/gen/clock_getcpuclockid.c
/freebsd-11-stable/lib/libc/gen/closedir.c
/freebsd-11-stable/lib/libc/gen/confstr.c
/freebsd-11-stable/lib/libc/gen/crypt.c
/freebsd-11-stable/lib/libc/gen/ctermid.c
/freebsd-11-stable/lib/libc/gen/daemon.c
/freebsd-11-stable/lib/libc/gen/devname.c
/freebsd-11-stable/lib/libc/gen/dirfd.c
/freebsd-11-stable/lib/libc/gen/disklabel.c
/freebsd-11-stable/lib/libc/gen/dlfcn.c
/freebsd-11-stable/lib/libc/gen/dup3.c
/freebsd-11-stable/lib/libc/gen/elf_utils.c
/freebsd-11-stable/lib/libc/gen/err.c
/freebsd-11-stable/lib/libc/gen/errlst.c
/freebsd-11-stable/lib/libc/gen/errno.c
/freebsd-11-stable/lib/libc/gen/exec.c
/freebsd-11-stable/lib/libc/gen/fdevname.c
/freebsd-11-stable/lib/libc/gen/feature_present.c
/freebsd-11-stable/lib/libc/gen/fmtcheck.c
/freebsd-11-stable/lib/libc/gen/fmtmsg.c
/freebsd-11-stable/lib/libc/gen/fnmatch.c
/freebsd-11-stable/lib/libc/gen/fpclassify.c
/freebsd-11-stable/lib/libc/gen/frexp.c
/freebsd-11-stable/lib/libc/gen/fstab.c
/freebsd-11-stable/lib/libc/gen/ftok.c
/freebsd-11-stable/lib/libc/gen/fts-compat.c
/freebsd-11-stable/lib/libc/gen/fts-compat.h
/freebsd-11-stable/lib/libc/gen/fts.c
/freebsd-11-stable/lib/libc/gen/gen-private.h
/freebsd-11-stable/lib/libc/gen/getbootfile.c
/freebsd-11-stable/lib/libc/gen/getbsize.c
/freebsd-11-stable/lib/libc/gen/getcap.c
/freebsd-11-stable/lib/libc/gen/getcwd.c
/freebsd-11-stable/lib/libc/gen/getdomainname.c
/freebsd-11-stable/lib/libc/gen/getgrent.c
/freebsd-11-stable/lib/libc/gen/getgrouplist.c
/freebsd-11-stable/lib/libc/gen/gethostname.c
/freebsd-11-stable/lib/libc/gen/getloadavg.c
/freebsd-11-stable/lib/libc/gen/getlogin.c
/freebsd-11-stable/lib/libc/gen/getmntinfo.c
/freebsd-11-stable/lib/libc/gen/getnetgrent.c
/freebsd-11-stable/lib/libc/gen/getosreldate.c
/freebsd-11-stable/lib/libc/gen/getpagesize.c
/freebsd-11-stable/lib/libc/gen/getpagesizes.c
/freebsd-11-stable/lib/libc/gen/getpeereid.c
/freebsd-11-stable/lib/libc/gen/getpwent.c
/freebsd-11-stable/lib/libc/gen/getttyent.c
/freebsd-11-stable/lib/libc/gen/getusershell.c
/freebsd-11-stable/lib/libc/gen/getutxent.c
/freebsd-11-stable/lib/libc/gen/getvfsbyname.c
/freebsd-11-stable/lib/libc/gen/glob.c
/freebsd-11-stable/lib/libc/gen/initgroups.c
/freebsd-11-stable/lib/libc/gen/isatty.c
/freebsd-11-stable/lib/libc/gen/isinf.c
/freebsd-11-stable/lib/libc/gen/isnan.c
/freebsd-11-stable/lib/libc/gen/libc_dlopen.c
/freebsd-11-stable/lib/libc/gen/lockf.c
/freebsd-11-stable/lib/libc/gen/nice.c
/freebsd-11-stable/lib/libc/gen/nlist.c
/freebsd-11-stable/lib/libc/gen/opendir.c
/freebsd-11-stable/lib/libc/gen/pause.c
/freebsd-11-stable/lib/libc/gen/popen.c
/freebsd-11-stable/lib/libc/gen/posix_spawn.c
/freebsd-11-stable/lib/libc/gen/psignal.c
/freebsd-11-stable/lib/libc/gen/pututxline.c
/freebsd-11-stable/lib/libc/gen/pw_scan.c
/freebsd-11-stable/lib/libc/gen/pw_scan.h
/freebsd-11-stable/lib/libc/gen/raise.c
/freebsd-11-stable/lib/libc/gen/readdir.c
/freebsd-11-stable/lib/libc/gen/rewinddir.c
/freebsd-11-stable/lib/libc/gen/scandir.c
/freebsd-11-stable/lib/libc/gen/seekdir.c
/freebsd-11-stable/lib/libc/gen/sem.c
/freebsd-11-stable/lib/libc/gen/sem_new.c
/freebsd-11-stable/lib/libc/gen/semctl.c
/freebsd-11-stable/lib/libc/gen/setdomainname.c
/freebsd-11-stable/lib/libc/gen/sethostname.c
/freebsd-11-stable/lib/libc/gen/setjmperr.c
/freebsd-11-stable/lib/libc/gen/setmode.c
/freebsd-11-stable/lib/libc/gen/siginterrupt.c
/freebsd-11-stable/lib/libc/gen/siglist.c
/freebsd-11-stable/lib/libc/gen/signal.c
/freebsd-11-stable/lib/libc/gen/sigsetops.c
/freebsd-11-stable/lib/libc/gen/sleep.c
/freebsd-11-stable/lib/libc/gen/stringlist.c
/freebsd-11-stable/lib/libc/gen/strtofflags.c
/freebsd-11-stable/lib/libc/gen/sysconf.c
/freebsd-11-stable/lib/libc/gen/sysctl.c
/freebsd-11-stable/lib/libc/gen/sysctlnametomib.c
/freebsd-11-stable/lib/libc/gen/syslog.c
/freebsd-11-stable/lib/libc/gen/telldir.c
/freebsd-11-stable/lib/libc/gen/telldir.h
/freebsd-11-stable/lib/libc/gen/termios.c
/freebsd-11-stable/lib/libc/gen/time.c
/freebsd-11-stable/lib/libc/gen/times.c
/freebsd-11-stable/lib/libc/gen/timezone.c
/freebsd-11-stable/lib/libc/gen/tls.c
/freebsd-11-stable/lib/libc/gen/ttyname.c
/freebsd-11-stable/lib/libc/gen/ttyslot.c
/freebsd-11-stable/lib/libc/gen/ualarm.c
/freebsd-11-stable/lib/libc/gen/ulimit.c
/freebsd-11-stable/lib/libc/gen/uname.c
/freebsd-11-stable/lib/libc/gen/unvis-compat.c
/freebsd-11-stable/lib/libc/gen/usleep.c
/freebsd-11-stable/lib/libc/gen/utime.c
/freebsd-11-stable/lib/libc/gen/utxdb.c
/freebsd-11-stable/lib/libc/gen/utxdb.h
/freebsd-11-stable/lib/libc/gen/valloc.c
/freebsd-11-stable/lib/libc/gen/wait.c
/freebsd-11-stable/lib/libc/gen/wait3.c
/freebsd-11-stable/lib/libc/gen/waitid.c
/freebsd-11-stable/lib/libc/gen/waitpid.c
/freebsd-11-stable/lib/libc/gen/wordexp.c
/freebsd-11-stable/lib/libc/gmon/gmon.c
/freebsd-11-stable/lib/libc/gmon/mcount.c
/freebsd-11-stable/lib/libc/i386/SYS.h
/freebsd-11-stable/lib/libc/i386/_fpmath.h
/freebsd-11-stable/lib/libc/i386/gen/_set_tp.c
/freebsd-11-stable/lib/libc/i386/gen/getcontextx.c
/freebsd-11-stable/lib/libc/i386/gen/makecontext.c
/freebsd-11-stable/lib/libc/i386/gen/signalcontext.c
/freebsd-11-stable/lib/libc/i386/sys/i386_clr_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_vm86.c
/freebsd-11-stable/lib/libc/iconv/__iconv.c
/freebsd-11-stable/lib/libc/iconv/__iconv_free_list.c
/freebsd-11-stable/lib/libc/iconv/__iconv_get_list.c
/freebsd-11-stable/lib/libc/iconv/_strtol.h
/freebsd-11-stable/lib/libc/iconv/_strtoul.h
/freebsd-11-stable/lib/libc/iconv/bsd_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_aliasname_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtol.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtoul.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_db.c
/freebsd-11-stable/lib/libc/iconv/citrus_db.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.c
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_fix_grouping.h
/freebsd-11-stable/lib/libc/iconv/citrus_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_lock.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.c
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.h
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.c
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.h
/freebsd-11-stable/lib/libc/iconv/citrus_module.c
/freebsd-11-stable/lib/libc/iconv/citrus_module.h
/freebsd-11-stable/lib/libc/iconv/citrus_namespace.h
/freebsd-11-stable/lib/libc/iconv/citrus_none.c
/freebsd-11-stable/lib/libc/iconv/citrus_none.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_prop.c
/freebsd-11-stable/lib/libc/iconv/citrus_prop.h
/freebsd-11-stable/lib/libc/iconv/citrus_region.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.c
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_template.h
/freebsd-11-stable/lib/libc/iconv/citrus_types.h
/freebsd-11-stable/lib/libc/iconv/iconv-internal.h
/freebsd-11-stable/lib/libc/iconv/iconv.c
/freebsd-11-stable/lib/libc/iconv/iconv_canonicalize.c
/freebsd-11-stable/lib/libc/iconv/iconv_close.c
/freebsd-11-stable/lib/libc/iconv/iconv_compat.c
/freebsd-11-stable/lib/libc/iconv/iconv_open.c
/freebsd-11-stable/lib/libc/iconv/iconv_open_into.c
/freebsd-11-stable/lib/libc/iconv/iconv_set_relocation_prefix.c
/freebsd-11-stable/lib/libc/iconv/iconvctl.c
/freebsd-11-stable/lib/libc/iconv/iconvlist.c
/freebsd-11-stable/lib/libc/include/compat.h
/freebsd-11-stable/lib/libc/include/errlst.h
/freebsd-11-stable/lib/libc/include/fpmath.h
/freebsd-11-stable/lib/libc/include/libc_private.h
/freebsd-11-stable/lib/libc/include/namespace.h
/freebsd-11-stable/lib/libc/include/nscache.h
/freebsd-11-stable/lib/libc/include/nscachedcli.h
/freebsd-11-stable/lib/libc/include/nss_tls.h
/freebsd-11-stable/lib/libc/include/reentrant.h
/freebsd-11-stable/lib/libc/include/spinlock.h
/freebsd-11-stable/lib/libc/include/un-namespace.h
/freebsd-11-stable/lib/libc/inet/inet_addr.c
/freebsd-11-stable/lib/libc/inet/inet_lnaof.c
/freebsd-11-stable/lib/libc/inet/inet_makeaddr.c
/freebsd-11-stable/lib/libc/inet/inet_netof.c
/freebsd-11-stable/lib/libc/inet/inet_network.c
/freebsd-11-stable/lib/libc/inet/inet_ntoa.c
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/lib/libc/locale/btowc.c
/freebsd-11-stable/lib/libc/locale/c16rtomb.c
/freebsd-11-stable/lib/libc/locale/c32rtomb.c
/freebsd-11-stable/lib/libc/locale/cXXrtomb_iconv.h
/freebsd-11-stable/lib/libc/locale/collate.c
/freebsd-11-stable/lib/libc/locale/collate.h
/freebsd-11-stable/lib/libc/locale/collcmp.c
/freebsd-11-stable/lib/libc/locale/ctype.c
/freebsd-11-stable/lib/libc/locale/euc.c
/freebsd-11-stable/lib/libc/locale/fix_grouping.c
/freebsd-11-stable/lib/libc/locale/gb18030.c
/freebsd-11-stable/lib/libc/locale/gb2312.c
/freebsd-11-stable/lib/libc/locale/gbk.c
/freebsd-11-stable/lib/libc/locale/isctype.c
/freebsd-11-stable/lib/libc/locale/iswctype.c
/freebsd-11-stable/lib/libc/locale/ldpart.c
/freebsd-11-stable/lib/libc/locale/ldpart.h
/freebsd-11-stable/lib/libc/locale/lmessages.c
/freebsd-11-stable/lib/libc/locale/lmessages.h
/freebsd-11-stable/lib/libc/locale/lmonetary.c
/freebsd-11-stable/lib/libc/locale/lmonetary.h
/freebsd-11-stable/lib/libc/locale/lnumeric.c
/freebsd-11-stable/lib/libc/locale/lnumeric.h
/freebsd-11-stable/lib/libc/locale/localeconv.c
/freebsd-11-stable/lib/libc/locale/mblen.c
/freebsd-11-stable/lib/libc/locale/mblocal.h
/freebsd-11-stable/lib/libc/locale/mbrlen.c
/freebsd-11-stable/lib/libc/locale/mbrtoc16.c
/freebsd-11-stable/lib/libc/locale/mbrtoc32.c
/freebsd-11-stable/lib/libc/locale/mbrtocXX_iconv.h
/freebsd-11-stable/lib/libc/locale/mbrtowc.c
/freebsd-11-stable/lib/libc/locale/mbsinit.c
/freebsd-11-stable/lib/libc/locale/mbsnrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbsrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbstowcs.c
/freebsd-11-stable/lib/libc/locale/mbtowc.c
/freebsd-11-stable/lib/libc/locale/mskanji.c
/freebsd-11-stable/lib/libc/locale/nextwctype.c
/freebsd-11-stable/lib/libc/locale/nl_langinfo.c
/freebsd-11-stable/lib/libc/locale/none.c
/freebsd-11-stable/lib/libc/locale/rpmatch.c
/freebsd-11-stable/lib/libc/locale/rune.c
/freebsd-11-stable/lib/libc/locale/runefile.h
/freebsd-11-stable/lib/libc/locale/runetype.c
/freebsd-11-stable/lib/libc/locale/setlocale.c
/freebsd-11-stable/lib/libc/locale/setlocale.h
/freebsd-11-stable/lib/libc/locale/setrunelocale.c
/freebsd-11-stable/lib/libc/locale/table.c
/freebsd-11-stable/lib/libc/locale/tolower.c
/freebsd-11-stable/lib/libc/locale/toupper.c
/freebsd-11-stable/lib/libc/locale/utf8.c
/freebsd-11-stable/lib/libc/locale/wcrtomb.c
/freebsd-11-stable/lib/libc/locale/wcsftime.c
/freebsd-11-stable/lib/libc/locale/wcsnrtombs.c
/freebsd-11-stable/lib/libc/locale/wcsrtombs.c
/freebsd-11-stable/lib/libc/locale/wcstod.c
/freebsd-11-stable/lib/libc/locale/wcstof.c
/freebsd-11-stable/lib/libc/locale/wcstoimax.c
/freebsd-11-stable/lib/libc/locale/wcstol.c
/freebsd-11-stable/lib/libc/locale/wcstold.c
/freebsd-11-stable/lib/libc/locale/wcstoll.c
/freebsd-11-stable/lib/libc/locale/wcstombs.c
/freebsd-11-stable/lib/libc/locale/wcstoul.c
/freebsd-11-stable/lib/libc/locale/wcstoull.c
/freebsd-11-stable/lib/libc/locale/wcstoumax.c
/freebsd-11-stable/lib/libc/locale/wctob.c
/freebsd-11-stable/lib/libc/locale/wctomb.c
/freebsd-11-stable/lib/libc/locale/wctrans.c
/freebsd-11-stable/lib/libc/locale/wctype.c
/freebsd-11-stable/lib/libc/locale/wcwidth.c
/freebsd-11-stable/lib/libc/locale/xlocale.c
/freebsd-11-stable/lib/libc/locale/xlocale_private.h
/freebsd-11-stable/lib/libc/mips/SYS.h
/freebsd-11-stable/lib/libc/mips/_fpmath.h
/freebsd-11-stable/lib/libc/mips/gen/_set_tp.c
/freebsd-11-stable/lib/libc/mips/gen/fabs.c
/freebsd-11-stable/lib/libc/mips/gen/longjmp.c
/freebsd-11-stable/lib/libc/mips/gen/makecontext.c
/freebsd-11-stable/lib/libc/mips/gen/signalcontext.c
/freebsd-11-stable/lib/libc/net/ether_addr.c
/freebsd-11-stable/lib/libc/net/gai_strerror.c
/freebsd-11-stable/lib/libc/net/getaddrinfo.c
/freebsd-11-stable/lib/libc/net/gethostbydns.c
/freebsd-11-stable/lib/libc/net/gethostbyht.c
/freebsd-11-stable/lib/libc/net/gethostbynis.c
/freebsd-11-stable/lib/libc/net/gethostnamadr.c
/freebsd-11-stable/lib/libc/net/getifmaddrs.c
/freebsd-11-stable/lib/libc/net/getnameinfo.c
/freebsd-11-stable/lib/libc/net/getnetbydns.c
/freebsd-11-stable/lib/libc/net/getnetbyht.c
/freebsd-11-stable/lib/libc/net/getnetbynis.c
/freebsd-11-stable/lib/libc/net/getnetnamadr.c
/freebsd-11-stable/lib/libc/net/getproto.c
/freebsd-11-stable/lib/libc/net/getprotoent.c
/freebsd-11-stable/lib/libc/net/getprotoname.c
/freebsd-11-stable/lib/libc/net/getservent.c
/freebsd-11-stable/lib/libc/net/ip6opt.c
/freebsd-11-stable/lib/libc/net/linkaddr.c
/freebsd-11-stable/lib/libc/net/map_v4v6.c
/freebsd-11-stable/lib/libc/net/name6.c
/freebsd-11-stable/lib/libc/net/netdb_private.h
/freebsd-11-stable/lib/libc/net/nscache.c
/freebsd-11-stable/lib/libc/net/nscachedcli.c
/freebsd-11-stable/lib/libc/net/nsdispatch.c
/freebsd-11-stable/lib/libc/net/nslexer.l
/freebsd-11-stable/lib/libc/net/nsparser.y
/freebsd-11-stable/lib/libc/net/nss_backends.h
/freebsd-11-stable/lib/libc/net/nss_compat.c
/freebsd-11-stable/lib/libc/net/ntoh.c
/freebsd-11-stable/lib/libc/net/rcmd.c
/freebsd-11-stable/lib/libc/net/rcmdsh.c
/freebsd-11-stable/lib/libc/net/recv.c
/freebsd-11-stable/lib/libc/net/rthdr.c
/freebsd-11-stable/lib/libc/net/sctp_sys_calls.c
/freebsd-11-stable/lib/libc/net/send.c
/freebsd-11-stable/lib/libc/net/sockatmark.c
/freebsd-11-stable/lib/libc/net/sourcefilter.c
/freebsd-11-stable/lib/libc/net/vars.c
/freebsd-11-stable/lib/libc/posix1e/acl_branding.c
/freebsd-11-stable/lib/libc/posix1e/acl_calc_mask.c
/freebsd-11-stable/lib/libc/posix1e/acl_compat.c
/freebsd-11-stable/lib/libc/posix1e/acl_copy.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_flag.c
/freebsd-11-stable/lib/libc/posix1e/acl_free.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_get.c
/freebsd-11-stable/lib/libc/posix1e/acl_id_to_name.c
/freebsd-11-stable/lib/libc/posix1e/acl_init.c
/freebsd-11-stable/lib/libc/posix1e/acl_perm.c
/freebsd-11-stable/lib/libc/posix1e/acl_set.c
/freebsd-11-stable/lib/libc/posix1e/acl_strip.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.h
/freebsd-11-stable/lib/libc/posix1e/acl_support_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_valid.c
/freebsd-11-stable/lib/libc/posix1e/extattr.c
/freebsd-11-stable/lib/libc/posix1e/mac.c
/freebsd-11-stable/lib/libc/posix1e/mac_exec.c
/freebsd-11-stable/lib/libc/posix1e/mac_get.c
/freebsd-11-stable/lib/libc/posix1e/mac_set.c
/freebsd-11-stable/lib/libc/powerpc/SYS.h
/freebsd-11-stable/lib/libc/powerpc/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/syncicache.c
/freebsd-11-stable/lib/libc/powerpc64/SYS.h
/freebsd-11-stable/lib/libc/powerpc64/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc64/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/syncicache.c
/freebsd-11-stable/lib/libc/quad/TESTS/divrem.c
/freebsd-11-stable/lib/libc/quad/TESTS/mul.c
/freebsd-11-stable/lib/libc/quad/adddi3.c
/freebsd-11-stable/lib/libc/quad/anddi3.c
/freebsd-11-stable/lib/libc/quad/ashldi3.c
/freebsd-11-stable/lib/libc/quad/ashrdi3.c
/freebsd-11-stable/lib/libc/quad/cmpdi2.c
/freebsd-11-stable/lib/libc/quad/divdi3.c
/freebsd-11-stable/lib/libc/quad/fixdfdi.c
/freebsd-11-stable/lib/libc/quad/fixsfdi.c
/freebsd-11-stable/lib/libc/quad/fixunsdfdi.c
/freebsd-11-stable/lib/libc/quad/fixunssfdi.c
/freebsd-11-stable/lib/libc/quad/floatdidf.c
/freebsd-11-stable/lib/libc/quad/floatdisf.c
/freebsd-11-stable/lib/libc/quad/floatunsdidf.c
/freebsd-11-stable/lib/libc/quad/iordi3.c
/freebsd-11-stable/lib/libc/quad/lshldi3.c
/freebsd-11-stable/lib/libc/quad/lshrdi3.c
/freebsd-11-stable/lib/libc/quad/moddi3.c
/freebsd-11-stable/lib/libc/quad/muldi3.c
/freebsd-11-stable/lib/libc/quad/negdi2.c
/freebsd-11-stable/lib/libc/quad/notdi2.c
/freebsd-11-stable/lib/libc/quad/qdivrem.c
/freebsd-11-stable/lib/libc/quad/quad.h
/freebsd-11-stable/lib/libc/quad/subdi3.c
/freebsd-11-stable/lib/libc/quad/ucmpdi2.c
/freebsd-11-stable/lib/libc/quad/udivdi3.c
/freebsd-11-stable/lib/libc/quad/umoddi3.c
/freebsd-11-stable/lib/libc/quad/xordi3.c
/freebsd-11-stable/lib/libc/regex/cname.h
/freebsd-11-stable/lib/libc/regex/engine.c
/freebsd-11-stable/lib/libc/regex/regcomp.c
/freebsd-11-stable/lib/libc/regex/regerror.c
/freebsd-11-stable/lib/libc/regex/regex2.h
/freebsd-11-stable/lib/libc/regex/regexec.c
/freebsd-11-stable/lib/libc/regex/regfree.c
/freebsd-11-stable/lib/libc/regex/utils.h
/freebsd-11-stable/lib/libc/resolv/h_errno.c
/freebsd-11-stable/lib/libc/resolv/herror.c
/freebsd-11-stable/lib/libc/resolv/res_comp.c
/freebsd-11-stable/lib/libc/resolv/res_debug.c
/freebsd-11-stable/lib/libc/resolv/res_init.c
/freebsd-11-stable/lib/libc/resolv/res_mkquery.c
/freebsd-11-stable/lib/libc/resolv/res_query.c
/freebsd-11-stable/lib/libc/resolv/res_send.c
/freebsd-11-stable/lib/libc/resolv/res_state.c
/freebsd-11-stable/lib/libc/rpc/auth_des.c
/freebsd-11-stable/lib/libc/rpc/auth_none.c
/freebsd-11-stable/lib/libc/rpc/auth_unix.c
/freebsd-11-stable/lib/libc/rpc/authdes_prot.c
/freebsd-11-stable/lib/libc/rpc/authunix_prot.c
/freebsd-11-stable/lib/libc/rpc/bindresvport.c
/freebsd-11-stable/lib/libc/rpc/clnt_bcast.c
/freebsd-11-stable/lib/libc/rpc/clnt_dg.c
/freebsd-11-stable/lib/libc/rpc/clnt_generic.c
/freebsd-11-stable/lib/libc/rpc/clnt_perror.c
/freebsd-11-stable/lib/libc/rpc/clnt_raw.c
/freebsd-11-stable/lib/libc/rpc/clnt_simple.c
/freebsd-11-stable/lib/libc/rpc/clnt_vc.c
/freebsd-11-stable/lib/libc/rpc/crypt_client.c
/freebsd-11-stable/lib/libc/rpc/des_crypt.c
/freebsd-11-stable/lib/libc/rpc/des_soft.c
/freebsd-11-stable/lib/libc/rpc/getnetconfig.c
/freebsd-11-stable/lib/libc/rpc/getnetpath.c
/freebsd-11-stable/lib/libc/rpc/getpublickey.c
/freebsd-11-stable/lib/libc/rpc/getrpcent.c
/freebsd-11-stable/lib/libc/rpc/getrpcport.c
/freebsd-11-stable/lib/libc/rpc/key_call.c
/freebsd-11-stable/lib/libc/rpc/key_prot_xdr.c
/freebsd-11-stable/lib/libc/rpc/mt_misc.h
/freebsd-11-stable/lib/libc/rpc/netname.c
/freebsd-11-stable/lib/libc/rpc/netnamer.c
/freebsd-11-stable/lib/libc/rpc/pmap_clnt.c
/freebsd-11-stable/lib/libc/rpc/pmap_getmaps.c
/freebsd-11-stable/lib/libc/rpc/pmap_getport.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot2.c
/freebsd-11-stable/lib/libc/rpc/pmap_rmt.c
/freebsd-11-stable/lib/libc/rpc/rpc_callmsg.c
/freebsd-11-stable/lib/libc/rpc/rpc_com.h
/freebsd-11-stable/lib/libc/rpc/rpc_commondata.c
/freebsd-11-stable/lib/libc/rpc/rpc_dtablesize.c
/freebsd-11-stable/lib/libc/rpc/rpc_generic.c
/freebsd-11-stable/lib/libc/rpc/rpc_prot.c
/freebsd-11-stable/lib/libc/rpc/rpc_soc.c
/freebsd-11-stable/lib/libc/rpc/rpcb_clnt.c
/freebsd-11-stable/lib/libc/rpc/rpcb_prot.c
/freebsd-11-stable/lib/libc/rpc/rpcb_st_xdr.c
/freebsd-11-stable/lib/libc/rpc/rpcdname.c
/freebsd-11-stable/lib/libc/rpc/rpcsec_gss_stub.c
/freebsd-11-stable/lib/libc/rpc/rtime.c
/freebsd-11-stable/lib/libc/rpc/svc.c
/freebsd-11-stable/lib/libc/rpc/svc_auth.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_des.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_unix.c
/freebsd-11-stable/lib/libc/rpc/svc_dg.c
/freebsd-11-stable/lib/libc/rpc/svc_generic.c
/freebsd-11-stable/lib/libc/rpc/svc_raw.c
/freebsd-11-stable/lib/libc/rpc/svc_run.c
/freebsd-11-stable/lib/libc/rpc/svc_simple.c
/freebsd-11-stable/lib/libc/rpc/svc_vc.c
/freebsd-11-stable/lib/libc/softfloat/fpgetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpgetround.c
/freebsd-11-stable/lib/libc/softfloat/fpgetsticky.c
/freebsd-11-stable/lib/libc/softfloat/fpsetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpsetround.c
/freebsd-11-stable/lib/libc/softfloat/fpsetsticky.c
/freebsd-11-stable/lib/libc/sparc64/SYS.h
/freebsd-11-stable/lib/libc/sparc64/_fpmath.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_add.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_arith.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_compare.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_emu.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_extern.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_qp.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_reg.h
/freebsd-11-stable/lib/libc/sparc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/sparc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/sparc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_sigtramp_setup.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_align.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_emul.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_install.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_private.h
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_setup.c
/freebsd-11-stable/lib/libc/stdio/_flock_stub.c
/freebsd-11-stable/lib/libc/stdio/asprintf.c
/freebsd-11-stable/lib/libc/stdio/clrerr.c
/freebsd-11-stable/lib/libc/stdio/dprintf.c
/freebsd-11-stable/lib/libc/stdio/fclose.c
/freebsd-11-stable/lib/libc/stdio/fcloseall.c
/freebsd-11-stable/lib/libc/stdio/fdopen.c
/freebsd-11-stable/lib/libc/stdio/feof.c
/freebsd-11-stable/lib/libc/stdio/ferror.c
/freebsd-11-stable/lib/libc/stdio/fflush.c
/freebsd-11-stable/lib/libc/stdio/fgetc.c
/freebsd-11-stable/lib/libc/stdio/fgetln.c
/freebsd-11-stable/lib/libc/stdio/fgetpos.c
/freebsd-11-stable/lib/libc/stdio/fgets.c
/freebsd-11-stable/lib/libc/stdio/fgetwc.c
/freebsd-11-stable/lib/libc/stdio/fgetwln.c
/freebsd-11-stable/lib/libc/stdio/fgetws.c
/freebsd-11-stable/lib/libc/stdio/fileno.c
/freebsd-11-stable/lib/libc/stdio/findfp.c
/freebsd-11-stable/lib/libc/stdio/flags.c
/freebsd-11-stable/lib/libc/stdio/floatio.h
/freebsd-11-stable/lib/libc/stdio/fmemopen.c
/freebsd-11-stable/lib/libc/stdio/fopen.c
/freebsd-11-stable/lib/libc/stdio/fprintf.c
/freebsd-11-stable/lib/libc/stdio/fpurge.c
/freebsd-11-stable/lib/libc/stdio/fputc.c
/freebsd-11-stable/lib/libc/stdio/fputs.c
/freebsd-11-stable/lib/libc/stdio/fputwc.c
/freebsd-11-stable/lib/libc/stdio/fputws.c
/freebsd-11-stable/lib/libc/stdio/fread.c
/freebsd-11-stable/lib/libc/stdio/freopen.c
/freebsd-11-stable/lib/libc/stdio/fscanf.c
/freebsd-11-stable/lib/libc/stdio/fseek.c
/freebsd-11-stable/lib/libc/stdio/fsetpos.c
/freebsd-11-stable/lib/libc/stdio/ftell.c
/freebsd-11-stable/lib/libc/stdio/funopen.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.h
/freebsd-11-stable/lib/libc/stdio/fwalk.c
/freebsd-11-stable/lib/libc/stdio/fwide.c
/freebsd-11-stable/lib/libc/stdio/fwprintf.c
/freebsd-11-stable/lib/libc/stdio/fwrite.c
/freebsd-11-stable/lib/libc/stdio/fwscanf.c
/freebsd-11-stable/lib/libc/stdio/getc.c
/freebsd-11-stable/lib/libc/stdio/getchar.c
/freebsd-11-stable/lib/libc/stdio/getdelim.c
/freebsd-11-stable/lib/libc/stdio/getline.c
/freebsd-11-stable/lib/libc/stdio/gets.c
/freebsd-11-stable/lib/libc/stdio/getw.c
/freebsd-11-stable/lib/libc/stdio/getwc.c
/freebsd-11-stable/lib/libc/stdio/getwchar.c
/freebsd-11-stable/lib/libc/stdio/glue.h
/freebsd-11-stable/lib/libc/stdio/local.h
/freebsd-11-stable/lib/libc/stdio/makebuf.c
/freebsd-11-stable/lib/libc/stdio/mktemp.c
/freebsd-11-stable/lib/libc/stdio/open_memstream.c
/freebsd-11-stable/lib/libc/stdio/open_wmemstream.c
/freebsd-11-stable/lib/libc/stdio/perror.c
/freebsd-11-stable/lib/libc/stdio/printf-pos.c
/freebsd-11-stable/lib/libc/stdio/printf.c
/freebsd-11-stable/lib/libc/stdio/printfcommon.h
/freebsd-11-stable/lib/libc/stdio/printflocal.h
/freebsd-11-stable/lib/libc/stdio/putc.c
/freebsd-11-stable/lib/libc/stdio/putchar.c
/freebsd-11-stable/lib/libc/stdio/puts.c
/freebsd-11-stable/lib/libc/stdio/putw.c
/freebsd-11-stable/lib/libc/stdio/putwc.c
/freebsd-11-stable/lib/libc/stdio/putwchar.c
/freebsd-11-stable/lib/libc/stdio/refill.c
/freebsd-11-stable/lib/libc/stdio/remove.c
/freebsd-11-stable/lib/libc/stdio/rewind.c
/freebsd-11-stable/lib/libc/stdio/rget.c
/freebsd-11-stable/lib/libc/stdio/scanf.c
/freebsd-11-stable/lib/libc/stdio/setbuf.c
/freebsd-11-stable/lib/libc/stdio/setbuffer.c
/freebsd-11-stable/lib/libc/stdio/setvbuf.c
/freebsd-11-stable/lib/libc/stdio/snprintf.c
/freebsd-11-stable/lib/libc/stdio/sprintf.c
/freebsd-11-stable/lib/libc/stdio/sscanf.c
/freebsd-11-stable/lib/libc/stdio/stdio.c
/freebsd-11-stable/lib/libc/stdio/swprintf.c
/freebsd-11-stable/lib/libc/stdio/swscanf.c
/freebsd-11-stable/lib/libc/stdio/tempnam.c
/freebsd-11-stable/lib/libc/stdio/tmpfile.c
/freebsd-11-stable/lib/libc/stdio/tmpnam.c
/freebsd-11-stable/lib/libc/stdio/ungetc.c
/freebsd-11-stable/lib/libc/stdio/ungetwc.c
/freebsd-11-stable/lib/libc/stdio/vasprintf.c
/freebsd-11-stable/lib/libc/stdio/vdprintf.c
/freebsd-11-stable/lib/libc/stdio/vfprintf.c
/freebsd-11-stable/lib/libc/stdio/vfscanf.c
/freebsd-11-stable/lib/libc/stdio/vfwprintf.c
/freebsd-11-stable/lib/libc/stdio/vfwscanf.c
/freebsd-11-stable/lib/libc/stdio/vprintf.c
/freebsd-11-stable/lib/libc/stdio/vscanf.c
/freebsd-11-stable/lib/libc/stdio/vsnprintf.c
/freebsd-11-stable/lib/libc/stdio/vsprintf.c
/freebsd-11-stable/lib/libc/stdio/vsscanf.c
/freebsd-11-stable/lib/libc/stdio/vswprintf.c
/freebsd-11-stable/lib/libc/stdio/vswscanf.c
/freebsd-11-stable/lib/libc/stdio/vwprintf.c
/freebsd-11-stable/lib/libc/stdio/vwscanf.c
/freebsd-11-stable/lib/libc/stdio/wbuf.c
/freebsd-11-stable/lib/libc/stdio/wprintf.c
/freebsd-11-stable/lib/libc/stdio/wscanf.c
/freebsd-11-stable/lib/libc/stdio/wsetup.c
/freebsd-11-stable/lib/libc/stdio/xprintf.c
/freebsd-11-stable/lib/libc/stdio/xprintf_errno.c
/freebsd-11-stable/lib/libc/stdio/xprintf_float.c
/freebsd-11-stable/lib/libc/stdio/xprintf_hexdump.c
/freebsd-11-stable/lib/libc/stdio/xprintf_int.c
/freebsd-11-stable/lib/libc/stdio/xprintf_quote.c
/freebsd-11-stable/lib/libc/stdio/xprintf_str.c
/freebsd-11-stable/lib/libc/stdio/xprintf_time.c
/freebsd-11-stable/lib/libc/stdio/xprintf_vis.c
/freebsd-11-stable/lib/libc/stdlib/abort.c
/freebsd-11-stable/lib/libc/stdlib/abs.c
/freebsd-11-stable/lib/libc/stdlib/atexit.c
/freebsd-11-stable/lib/libc/stdlib/atexit.h
/freebsd-11-stable/lib/libc/stdlib/atof.c
/freebsd-11-stable/lib/libc/stdlib/atoi.c
/freebsd-11-stable/lib/libc/stdlib/atol.c
/freebsd-11-stable/lib/libc/stdlib/atoll.c
/freebsd-11-stable/lib/libc/stdlib/bsearch.c
/freebsd-11-stable/lib/libc/stdlib/div.c
/freebsd-11-stable/lib/libc/stdlib/exit.c
/freebsd-11-stable/lib/libc/stdlib/getenv.c
/freebsd-11-stable/lib/libc/stdlib/getopt.c
/freebsd-11-stable/lib/libc/stdlib/getsubopt.c
/freebsd-11-stable/lib/libc/stdlib/hcreate.c
/freebsd-11-stable/lib/libc/stdlib/heapsort.c
/freebsd-11-stable/lib/libc/stdlib/imaxabs.c
/freebsd-11-stable/lib/libc/stdlib/imaxdiv.c
/freebsd-11-stable/lib/libc/stdlib/labs.c
/freebsd-11-stable/lib/libc/stdlib/ldiv.c
/freebsd-11-stable/lib/libc/stdlib/llabs.c
/freebsd-11-stable/lib/libc/stdlib/lldiv.c
/freebsd-11-stable/lib/libc/stdlib/merge.c
/freebsd-11-stable/lib/libc/stdlib/ptsname.c
/freebsd-11-stable/lib/libc/stdlib/qsort.c
/freebsd-11-stable/lib/libc/stdlib/quick_exit.c
/freebsd-11-stable/lib/libc/stdlib/radixsort.c
/freebsd-11-stable/lib/libc/stdlib/rand.c
/freebsd-11-stable/lib/libc/stdlib/random.c
/freebsd-11-stable/lib/libc/stdlib/reallocf.c
/freebsd-11-stable/lib/libc/stdlib/realpath.c
/freebsd-11-stable/lib/libc/stdlib/strfmon.c
/freebsd-11-stable/lib/libc/stdlib/strtoimax.c
/freebsd-11-stable/lib/libc/stdlib/strtol.c
/freebsd-11-stable/lib/libc/stdlib/strtoll.c
/freebsd-11-stable/lib/libc/stdlib/strtoq.c
/freebsd-11-stable/lib/libc/stdlib/strtoul.c
/freebsd-11-stable/lib/libc/stdlib/strtoull.c
/freebsd-11-stable/lib/libc/stdlib/strtoumax.c
/freebsd-11-stable/lib/libc/stdlib/strtouq.c
/freebsd-11-stable/lib/libc/stdlib/system.c
/freebsd-11-stable/lib/libc/stdtime/strptime.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.h
/freebsd-11-stable/lib/libc/string/bcmp.c
/freebsd-11-stable/lib/libc/string/bcopy.c
/freebsd-11-stable/lib/libc/string/ffs.c
/freebsd-11-stable/lib/libc/string/ffsl.c
/freebsd-11-stable/lib/libc/string/ffsll.c
/freebsd-11-stable/lib/libc/string/fls.c
/freebsd-11-stable/lib/libc/string/flsl.c
/freebsd-11-stable/lib/libc/string/flsll.c
/freebsd-11-stable/lib/libc/string/memccpy.c
/freebsd-11-stable/lib/libc/string/memchr.c
/freebsd-11-stable/lib/libc/string/memcmp.c
/freebsd-11-stable/lib/libc/string/memmem.c
/freebsd-11-stable/lib/libc/string/memset.c
/freebsd-11-stable/lib/libc/string/stpcpy.c
/freebsd-11-stable/lib/libc/string/stpncpy.c
/freebsd-11-stable/lib/libc/string/strcasecmp.c
/freebsd-11-stable/lib/libc/string/strcasestr.c
/freebsd-11-stable/lib/libc/string/strcat.c
/freebsd-11-stable/lib/libc/string/strchr.c
/freebsd-11-stable/lib/libc/string/strchrnul.c
/freebsd-11-stable/lib/libc/string/strcmp.c
/freebsd-11-stable/lib/libc/string/strcoll.c
/freebsd-11-stable/lib/libc/string/strcpy.c
/freebsd-11-stable/lib/libc/string/strcspn.c
/freebsd-11-stable/lib/libc/string/strdup.c
/freebsd-11-stable/lib/libc/string/strerror.c
/freebsd-11-stable/lib/libc/string/strlen.c
/freebsd-11-stable/lib/libc/string/strmode.c
/freebsd-11-stable/lib/libc/string/strncat.c
/freebsd-11-stable/lib/libc/string/strncmp.c
/freebsd-11-stable/lib/libc/string/strncpy.c
/freebsd-11-stable/lib/libc/string/strnlen.c
/freebsd-11-stable/lib/libc/string/strnstr.c
/freebsd-11-stable/lib/libc/string/strpbrk.c
/freebsd-11-stable/lib/libc/string/strrchr.c
/freebsd-11-stable/lib/libc/string/strsep.c
/freebsd-11-stable/lib/libc/string/strsignal.c
/freebsd-11-stable/lib/libc/string/strspn.c
/freebsd-11-stable/lib/libc/string/strstr.c
/freebsd-11-stable/lib/libc/string/strtok.c
/freebsd-11-stable/lib/libc/string/strxfrm.c
/freebsd-11-stable/lib/libc/string/swab.c
/freebsd-11-stable/lib/libc/string/wcpcpy.c
/freebsd-11-stable/lib/libc/string/wcpncpy.c
/freebsd-11-stable/lib/libc/string/wcscasecmp.c
/freebsd-11-stable/lib/libc/string/wcscat.c
/freebsd-11-stable/lib/libc/string/wcschr.c
/freebsd-11-stable/lib/libc/string/wcscmp.c
/freebsd-11-stable/lib/libc/string/wcscoll.c
/freebsd-11-stable/lib/libc/string/wcscpy.c
/freebsd-11-stable/lib/libc/string/wcscspn.c
/freebsd-11-stable/lib/libc/string/wcsdup.c
/freebsd-11-stable/lib/libc/string/wcslcat.c
/freebsd-11-stable/lib/libc/string/wcslcpy.c
/freebsd-11-stable/lib/libc/string/wcslen.c
/freebsd-11-stable/lib/libc/string/wcsncasecmp.c
/freebsd-11-stable/lib/libc/string/wcsncat.c
/freebsd-11-stable/lib/libc/string/wcsncmp.c
/freebsd-11-stable/lib/libc/string/wcsncpy.c
/freebsd-11-stable/lib/libc/string/wcsnlen.c
/freebsd-11-stable/lib/libc/string/wcspbrk.c
/freebsd-11-stable/lib/libc/string/wcsrchr.c
/freebsd-11-stable/lib/libc/string/wcsspn.c
/freebsd-11-stable/lib/libc/string/wcsstr.c
/freebsd-11-stable/lib/libc/string/wcstok.c
/freebsd-11-stable/lib/libc/string/wcswidth.c
/freebsd-11-stable/lib/libc/string/wcsxfrm.c
/freebsd-11-stable/lib/libc/string/wmemchr.c
/freebsd-11-stable/lib/libc/string/wmemcmp.c
/freebsd-11-stable/lib/libc/string/wmemcpy.c
/freebsd-11-stable/lib/libc/string/wmemmove.c
/freebsd-11-stable/lib/libc/string/wmemset.c
/freebsd-11-stable/lib/libc/sys/__error.c
/freebsd-11-stable/lib/libc/sys/__vdso_gettimeofday.c
/freebsd-11-stable/lib/libc/sys/clock_gettime.c
/freebsd-11-stable/lib/libc/sys/fcntl.c
/freebsd-11-stable/lib/libc/sys/gettimeofday.c
/freebsd-11-stable/lib/libc/sys/sigwait.c
/freebsd-11-stable/lib/libc/uuid/uuid_compare.c
/freebsd-11-stable/lib/libc/uuid/uuid_create.c
/freebsd-11-stable/lib/libc/uuid/uuid_create_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_equal.c
/freebsd-11-stable/lib/libc/uuid/uuid_from_string.c
/freebsd-11-stable/lib/libc/uuid/uuid_hash.c
/freebsd-11-stable/lib/libc/uuid/uuid_is_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_stream.c
/freebsd-11-stable/lib/libc/uuid/uuid_to_string.c
/freebsd-11-stable/lib/libc/xdr/xdr.c
/freebsd-11-stable/lib/libc/xdr/xdr_array.c
/freebsd-11-stable/lib/libc/xdr/xdr_float.c
/freebsd-11-stable/lib/libc/xdr/xdr_mem.c
/freebsd-11-stable/lib/libc/xdr/xdr_rec.c
/freebsd-11-stable/lib/libc/xdr/xdr_reference.c
/freebsd-11-stable/lib/libc/xdr/xdr_sizeof.c
/freebsd-11-stable/lib/libc/xdr/xdr_stdio.c
/freebsd-11-stable/lib/libc/yp/xdryp.c
/freebsd-11-stable/lib/libc/yp/yplib.c
/freebsd-11-stable/lib/libc_nonshared/__stub.c
/freebsd-11-stable/lib/libcalendar/calendar.c
/freebsd-11-stable/lib/libcalendar/calendar.h
/freebsd-11-stable/lib/libcalendar/easter.c
/freebsd-11-stable/lib/libcam/camlib.c
/freebsd-11-stable/lib/libcam/camlib.h
/freebsd-11-stable/lib/libcam/scsi_cmdparse.c
/freebsd-11-stable/lib/libcompat/4.1/ftime.c
/freebsd-11-stable/lib/libcompat/4.3/re_comp.c
/freebsd-11-stable/lib/libcompat/4.3/rexec.c
/freebsd-11-stable/lib/libcompat/4.4/cuserid.c
/freebsd-11-stable/lib/libcrypt/crypt-md5.c
/freebsd-11-stable/lib/libcrypt/crypt-nthash.c
/freebsd-11-stable/lib/libcrypt/crypt-sha256.c
/freebsd-11-stable/lib/libcrypt/crypt-sha512.c
/freebsd-11-stable/lib/libcrypt/crypt.c
/freebsd-11-stable/lib/libcrypt/crypt.h
/freebsd-11-stable/lib/libcrypt/misc.c
/freebsd-11-stable/lib/libdevinfo/devinfo.c
/freebsd-11-stable/lib/libdevinfo/devinfo.h
/freebsd-11-stable/lib/libdevinfo/devinfo_var.h
/freebsd-11-stable/lib/libdevstat/devstat.c
/freebsd-11-stable/lib/libdevstat/devstat.h
/freebsd-11-stable/lib/libfetch/common.c
/freebsd-11-stable/lib/libfetch/common.h
/freebsd-11-stable/lib/libfetch/fetch.c
/freebsd-11-stable/lib/libfetch/fetch.h
/freebsd-11-stable/lib/libfetch/file.c
/freebsd-11-stable/lib/libfetch/ftp.c
/freebsd-11-stable/lib/libfetch/http.c
/freebsd-11-stable/lib/libgeom/geom_ctl.c
/freebsd-11-stable/lib/libgeom/geom_getxml.c
/freebsd-11-stable/lib/libgeom/geom_stats.c
/freebsd-11-stable/lib/libgeom/geom_util.c
/freebsd-11-stable/lib/libgeom/geom_xml2tree.c
/freebsd-11-stable/lib/libgeom/libgeom.h
/freebsd-11-stable/lib/libgssapi/context.h
/freebsd-11-stable/lib/libgssapi/cred.h
/freebsd-11-stable/lib/libgssapi/gss_accept_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_acquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_buffer_set.c
/freebsd-11-stable/lib/libgssapi/gss_canonicalize_name.c
/freebsd-11-stable/lib/libgssapi/gss_compare_name.c
/freebsd-11-stable/lib/libgssapi/gss_context_time.c
/freebsd-11-stable/lib/libgssapi/gss_create_empty_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_decapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_delete_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_display_name.c
/freebsd-11-stable/lib/libgssapi/gss_display_status.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_name.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_oid.c
/freebsd-11-stable/lib/libgssapi/gss_encapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_export_name.c
/freebsd-11-stable/lib/libgssapi/gss_export_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_get_mic.c
/freebsd-11-stable/lib/libgssapi/gss_import_name.c
/freebsd-11-stable/lib/libgssapi/gss_import_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_indicate_mechs.c
/freebsd-11-stable/lib/libgssapi/gss_init_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_mechs_for_name.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_names_for_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_sec_context_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_krb5.c
/freebsd-11-stable/lib/libgssapi/gss_mech_switch.c
/freebsd-11-stable/lib/libgssapi/gss_names.c
/freebsd-11-stable/lib/libgssapi/gss_oid_to_str.c
/freebsd-11-stable/lib/libgssapi/gss_pname_to_uid.c
/freebsd-11-stable/lib/libgssapi/gss_process_context_token.c
/freebsd-11-stable/lib/libgssapi/gss_pseudo_random.c
/freebsd-11-stable/lib/libgssapi/gss_release_buffer.c
/freebsd-11-stable/lib/libgssapi/gss_release_cred.c
/freebsd-11-stable/lib/libgssapi/gss_release_name.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_seal.c
/freebsd-11-stable/lib/libgssapi/gss_set_cred_option.c
/freebsd-11-stable/lib/libgssapi/gss_set_sec_context_option.c
/freebsd-11-stable/lib/libgssapi/gss_sign.c
/freebsd-11-stable/lib/libgssapi/gss_test_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_unseal.c
/freebsd-11-stable/lib/libgssapi/gss_unwrap.c
/freebsd-11-stable/lib/libgssapi/gss_utils.c
/freebsd-11-stable/lib/libgssapi/gss_verify.c
/freebsd-11-stable/lib/libgssapi/gss_verify_mic.c
/freebsd-11-stable/lib/libgssapi/gss_wrap.c
/freebsd-11-stable/lib/libgssapi/gss_wrap_size_limit.c
/freebsd-11-stable/lib/libgssapi/mech_switch.h
/freebsd-11-stable/lib/libgssapi/name.h
/freebsd-11-stable/lib/libgssapi/spnego.h
/freebsd-11-stable/lib/libgssapi/utils.h
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.c
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.h
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.h
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.c
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.h
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.c
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.h
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.c
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.h
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.c
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.h
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.c
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.h
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.c
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.h
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.c
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.h
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.c
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.h
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.c
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.h
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.c
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.h
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.c
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.h
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.c
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.h
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.c
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.h
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.c
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.c
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.c
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.h
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.c
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.h
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.c
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.c
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_file.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.h
/freebsd-11-stable/lib/libipsec/ipsec_dump_policy.c
/freebsd-11-stable/lib/libipsec/ipsec_get_policylen.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.h
/freebsd-11-stable/lib/libipsec/libpfkey.h
/freebsd-11-stable/lib/libipsec/pfkey.c
/freebsd-11-stable/lib/libipsec/pfkey_dump.c
/freebsd-11-stable/lib/libipsec/policy_parse.y
/freebsd-11-stable/lib/libipsec/policy_token.l
/freebsd-11-stable/lib/libipsec/test-policy.c
/freebsd-11-stable/lib/libjail/jail.c
/freebsd-11-stable/lib/libjail/jail.h
/freebsd-11-stable/lib/libjail/jail_getid.c
/freebsd-11-stable/lib/libkiconv/kiconv_sysctl.c
/freebsd-11-stable/lib/libkiconv/quirks.c
/freebsd-11-stable/lib/libkiconv/quirks.h
/freebsd-11-stable/lib/libkiconv/xlat16_iconv.c
/freebsd-11-stable/lib/libkiconv/xlat16_sysctl.c
/freebsd-11-stable/lib/libkvm/kvm.c
/freebsd-11-stable/lib/libkvm/kvm.h
/freebsd-11-stable/lib/libkvm/kvm_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_arm.c
/freebsd-11-stable/lib/libkvm/kvm_cptime.c
/freebsd-11-stable/lib/libkvm/kvm_getloadavg.c
/freebsd-11-stable/lib/libkvm/kvm_getswapinfo.c
/freebsd-11-stable/lib/libkvm/kvm_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_arm.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_mips.c
/freebsd-11-stable/lib/libkvm/kvm_pcpu.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc64.c
/freebsd-11-stable/lib/libkvm/kvm_private.h
/freebsd-11-stable/lib/libkvm/kvm_proc.c
/freebsd-11-stable/lib/libkvm/kvm_sparc64.c
/freebsd-11-stable/lib/libkvm/kvm_vnet.c
/freebsd-11-stable/lib/libmemstat/memstat.c
/freebsd-11-stable/lib/libmemstat/memstat.h
/freebsd-11-stable/lib/libmemstat/memstat_all.c
/freebsd-11-stable/lib/libmemstat/memstat_internal.h
/freebsd-11-stable/lib/libmemstat/memstat_malloc.c
/freebsd-11-stable/lib/libmemstat/memstat_uma.c
/freebsd-11-stable/lib/libmp/mpasbn.c
/freebsd-11-stable/lib/libnandfs/libnandfs.h
/freebsd-11-stable/lib/libnandfs/nandfs.c
/freebsd-11-stable/lib/libnetbsd/rmd160.h
/freebsd-11-stable/lib/libnetbsd/sha1.h
/freebsd-11-stable/lib/libnetbsd/sha2.h
/freebsd-11-stable/lib/libnetbsd/stdlib.h
/freebsd-11-stable/lib/libnetbsd/strsuftoll.c
/freebsd-11-stable/lib/libnetbsd/sys/cdefs.h
/freebsd-11-stable/lib/libnetbsd/util.c
/freebsd-11-stable/lib/libnetbsd/util.h
/freebsd-11-stable/lib/libnv/common_impl.h
/freebsd-11-stable/lib/libnv/msgio.c
/freebsd-11-stable/lib/libnv/msgio.h
/freebsd-11-stable/lib/libpam/libpam/security/pam_mod_misc.h
/freebsd-11-stable/lib/libpam/modules/pam_chroot/pam_chroot.c
/freebsd-11-stable/lib/libpam/modules/pam_deny/pam_deny.c
/freebsd-11-stable/lib/libpam/modules/pam_echo/pam_echo.c
/freebsd-11-stable/lib/libpam/modules/pam_exec/pam_exec.c
/freebsd-11-stable/lib/libpam/modules/pam_ftpusers/pam_ftpusers.c
/freebsd-11-stable/lib/libpam/modules/pam_group/pam_group.c
/freebsd-11-stable/lib/libpam/modules/pam_guest/pam_guest.c
/freebsd-11-stable/lib/libpam/modules/pam_ksu/pam_ksu.c
/freebsd-11-stable/lib/libpam/modules/pam_lastlog/pam_lastlog.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.h
/freebsd-11-stable/lib/libpam/modules/pam_nologin/pam_nologin.c
/freebsd-11-stable/lib/libpam/modules/pam_opie/pam_opie.c
/freebsd-11-stable/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c
/freebsd-11-stable/lib/libpam/modules/pam_permit/pam_permit.c
/freebsd-11-stable/lib/libpam/modules/pam_radius/pam_radius.c
/freebsd-11-stable/lib/libpam/modules/pam_rhosts/pam_rhosts.c
/freebsd-11-stable/lib/libpam/modules/pam_rootok/pam_rootok.c
/freebsd-11-stable/lib/libpam/modules/pam_securetty/pam_securetty.c
/freebsd-11-stable/lib/libpam/modules/pam_self/pam_self.c
/freebsd-11-stable/lib/libpam/modules/pam_ssh/pam_ssh.c
/freebsd-11-stable/lib/libpam/modules/pam_tacplus/pam_tacplus.c
/freebsd-11-stable/lib/libpam/modules/pam_unix/pam_unix.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.h
/freebsd-11-stable/lib/libpmc/libpmc.c
/freebsd-11-stable/lib/libpmc/libpmcinternal.h
/freebsd-11-stable/lib/libpmc/pmc.h
/freebsd-11-stable/lib/libpmc/pmclog.c
/freebsd-11-stable/lib/libpmc/pmclog.h
/freebsd-11-stable/lib/libprocstat/cd9660.c
/freebsd-11-stable/lib/libprocstat/common_kvm.c
/freebsd-11-stable/lib/libprocstat/common_kvm.h
/freebsd-11-stable/lib/libprocstat/core.c
/freebsd-11-stable/lib/libprocstat/core.h
/freebsd-11-stable/lib/libprocstat/libprocstat.c
/freebsd-11-stable/lib/libprocstat/libprocstat.h
/freebsd-11-stable/lib/libprocstat/libprocstat_internal.h
/freebsd-11-stable/lib/libprocstat/msdosfs.c
/freebsd-11-stable/lib/libprocstat/smbfs.c
/freebsd-11-stable/lib/libprocstat/udf.c
/freebsd-11-stable/lib/libprocstat/zfs.c
/freebsd-11-stable/lib/libradius/radlib.c
/freebsd-11-stable/lib/libradius/radlib.h
/freebsd-11-stable/lib/libradius/radlib_private.h
/freebsd-11-stable/lib/libradius/radlib_vs.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_conf.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_misc.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/lib/librpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/lib/librpcsvc/yp_passwd.c
/freebsd-11-stable/lib/librpcsvc/yp_update.c
/freebsd-11-stable/lib/librt/aio.c
/freebsd-11-stable/lib/librt/mq.c
/freebsd-11-stable/lib/librt/sigev_thread.c
/freebsd-11-stable/lib/librt/sigev_thread.h
/freebsd-11-stable/lib/librt/timer.c
/freebsd-11-stable/lib/librtld_db/rtld_db.c
/freebsd-11-stable/lib/librtld_db/rtld_db.h
/freebsd-11-stable/lib/libsdp/sdp-int.h
/freebsd-11-stable/lib/libsdp/sdp.h
/freebsd-11-stable/lib/libsdp/search.c
/freebsd-11-stable/lib/libsdp/service.c
/freebsd-11-stable/lib/libsdp/session.c
/freebsd-11-stable/lib/libsdp/util.c
/freebsd-11-stable/lib/libstdbuf/stdbuf.c
/freebsd-11-stable/lib/libstdthreads/call_once.c
/freebsd-11-stable/lib/libstdthreads/cnd.c
/freebsd-11-stable/lib/libstdthreads/mtx.c
/freebsd-11-stable/lib/libstdthreads/thrd.c
/freebsd-11-stable/lib/libstdthreads/threads.h
/freebsd-11-stable/lib/libstdthreads/tss.c
/freebsd-11-stable/lib/libtacplus/taclib.c
/freebsd-11-stable/lib/libtacplus/taclib.h
/freebsd-11-stable/lib/libtacplus/taclib_private.h
/freebsd-11-stable/lib/libthr/arch/amd64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/arm/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/i386/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/mips/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/powerpc/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/sparc64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/sys/thr_error.c
/freebsd-11-stable/lib/libthr/thread/thr_affinity.c
/freebsd-11-stable/lib/libthr/thread/thr_attr.c
/freebsd-11-stable/lib/libthr/thread/thr_autoinit.c
/freebsd-11-stable/lib/libthr/thread/thr_barrier.c
/freebsd-11-stable/lib/libthr/thread/thr_barrierattr.c
/freebsd-11-stable/lib/libthr/thread/thr_cancel.c
/freebsd-11-stable/lib/libthr/thread/thr_clean.c
/freebsd-11-stable/lib/libthr/thread/thr_concurrency.c
/freebsd-11-stable/lib/libthr/thread/thr_cond.c
/freebsd-11-stable/lib/libthr/thread/thr_condattr.c
/freebsd-11-stable/lib/libthr/thread/thr_create.c
/freebsd-11-stable/lib/libthr/thread/thr_detach.c
/freebsd-11-stable/lib/libthr/thread/thr_equal.c
/freebsd-11-stable/lib/libthr/thread/thr_event.c
/freebsd-11-stable/lib/libthr/thread/thr_exit.c
/freebsd-11-stable/lib/libthr/thread/thr_fork.c
/freebsd-11-stable/lib/libthr/thread/thr_getcpuclockid.c
/freebsd-11-stable/lib/libthr/thread/thr_getprio.c
/freebsd-11-stable/lib/libthr/thread/thr_getschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_getthreadid_np.c
/freebsd-11-stable/lib/libthr/thread/thr_info.c
/freebsd-11-stable/lib/libthr/thread/thr_init.c
/freebsd-11-stable/lib/libthr/thread/thr_join.c
/freebsd-11-stable/lib/libthr/thread/thr_kern.c
/freebsd-11-stable/lib/libthr/thread/thr_kill.c
/freebsd-11-stable/lib/libthr/thread/thr_list.c
/freebsd-11-stable/lib/libthr/thread/thr_main_np.c
/freebsd-11-stable/lib/libthr/thread/thr_multi_np.c
/freebsd-11-stable/lib/libthr/thread/thr_mutex.c
/freebsd-11-stable/lib/libthr/thread/thr_mutexattr.c
/freebsd-11-stable/lib/libthr/thread/thr_once.c
/freebsd-11-stable/lib/libthr/thread/thr_printf.c
/freebsd-11-stable/lib/libthr/thread/thr_private.h
/freebsd-11-stable/lib/libthr/thread/thr_pspinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_resume_np.c
/freebsd-11-stable/lib/libthr/thread/thr_rtld.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlock.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlockattr.c
/freebsd-11-stable/lib/libthr/thread/thr_self.c
/freebsd-11-stable/lib/libthr/thread/thr_sem.c
/freebsd-11-stable/lib/libthr/thread/thr_setprio.c
/freebsd-11-stable/lib/libthr/thread/thr_setschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_sig.c
/freebsd-11-stable/lib/libthr/thread/thr_single_np.c
/freebsd-11-stable/lib/libthr/thread/thr_sleepq.c
/freebsd-11-stable/lib/libthr/thread/thr_spec.c
/freebsd-11-stable/lib/libthr/thread/thr_spinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_stack.c
/freebsd-11-stable/lib/libthr/thread/thr_suspend_np.c
/freebsd-11-stable/lib/libthr/thread/thr_switch_np.c
/freebsd-11-stable/lib/libthr/thread/thr_symbols.c
/freebsd-11-stable/lib/libthr/thread/thr_syscalls.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.h
/freebsd-11-stable/lib/libthr/thread/thr_yield.c
/freebsd-11-stable/lib/libthread_db/arch/amd64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/arm/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/i386/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/mips/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/powerpc/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/sparc64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/kse.h
/freebsd-11-stable/lib/libthread_db/libpthread_db.c
/freebsd-11-stable/lib/libthread_db/libpthread_db.h
/freebsd-11-stable/lib/libthread_db/libthr_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.h
/freebsd-11-stable/lib/libthread_db/thread_db_int.h
/freebsd-11-stable/lib/libufs/block.c
/freebsd-11-stable/lib/libufs/cgroup.c
/freebsd-11-stable/lib/libufs/inode.c
/freebsd-11-stable/lib/libufs/libufs.h
/freebsd-11-stable/lib/libufs/sblock.c
/freebsd-11-stable/lib/libufs/type.c
/freebsd-11-stable/lib/libugidfw/ugidfw.c
/freebsd-11-stable/lib/libugidfw/ugidfw.h
/freebsd-11-stable/lib/libulog/ulog.h
/freebsd-11-stable/lib/libulog/ulog_login.c
/freebsd-11-stable/lib/libulog/ulog_login_pseudo.c
/freebsd-11-stable/lib/libulog/utempter.c
/freebsd-11-stable/lib/libulog/utempter.h
/freebsd-11-stable/lib/libusb/libusb.h
/freebsd-11-stable/lib/libusb/libusb01.c
/freebsd-11-stable/lib/libusb/libusb10.c
/freebsd-11-stable/lib/libusb/libusb10.h
/freebsd-11-stable/lib/libusb/libusb10_desc.c
/freebsd-11-stable/lib/libusb/libusb10_io.c
/freebsd-11-stable/lib/libusb/libusb20.c
/freebsd-11-stable/lib/libusb/libusb20.h
/freebsd-11-stable/lib/libusb/libusb20_desc.c
/freebsd-11-stable/lib/libusb/libusb20_desc.h
/freebsd-11-stable/lib/libusb/libusb20_int.h
/freebsd-11-stable/lib/libusb/libusb20_ugen20.c
/freebsd-11-stable/lib/libusb/libusb_global_linux.h
/freebsd-11-stable/lib/libusb/usb.h
/freebsd-11-stable/lib/libusbhid/data.c
/freebsd-11-stable/lib/libusbhid/descr.c
/freebsd-11-stable/lib/libusbhid/descr_compat.c
/freebsd-11-stable/lib/libusbhid/parse.c
/freebsd-11-stable/lib/libusbhid/usage.c
/freebsd-11-stable/lib/libusbhid/usbhid.h
/freebsd-11-stable/lib/libusbhid/usbvar.h
/freebsd-11-stable/lib/libutil/auth.c
/freebsd-11-stable/lib/libutil/expand_number.c
/freebsd-11-stable/lib/libutil/fparseln.c
/freebsd-11-stable/lib/libutil/gr_util.c
/freebsd-11-stable/lib/libutil/hexdump.c
/freebsd-11-stable/lib/libutil/humanize_number.c
/freebsd-11-stable/lib/libutil/kinfo_getallproc.c
/freebsd-11-stable/lib/libutil/kinfo_getproc.c
/freebsd-11-stable/lib/libutil/kld.c
/freebsd-11-stable/lib/libutil/libutil.h
/freebsd-11-stable/lib/libutil/login_crypt.c
/freebsd-11-stable/lib/libutil/login_tty.c
/freebsd-11-stable/lib/libutil/pidfile.c
/freebsd-11-stable/lib/libutil/property.c
/freebsd-11-stable/lib/libutil/pty.c
/freebsd-11-stable/lib/libutil/pw_util.c
/freebsd-11-stable/lib/libutil/quotafile.c
/freebsd-11-stable/lib/libutil/realhostname.c
/freebsd-11-stable/lib/libutil/stub.c
/freebsd-11-stable/lib/libutil/trimdomain.c
/freebsd-11-stable/lib/libutil/uucplock.c
/freebsd-11-stable/lib/libvgl/bitmap.c
/freebsd-11-stable/lib/libvgl/keyboard.c
/freebsd-11-stable/lib/libvgl/main.c
/freebsd-11-stable/lib/libvgl/mouse.c
/freebsd-11-stable/lib/libvgl/simple.c
/freebsd-11-stable/lib/libvgl/text.c
/freebsd-11-stable/lib/libvgl/vgl.h
/freebsd-11-stable/lib/libvmmapi/vmmapi.c
/freebsd-11-stable/lib/libvmmapi/vmmapi.h
/freebsd-11-stable/lib/libvmmapi/vmmapi_freebsd.c
/freebsd-11-stable/lib/liby/main.c
/freebsd-11-stable/lib/liby/yyerror.c
/freebsd-11-stable/lib/libypclnt/ypclnt.h
/freebsd-11-stable/lib/libypclnt/ypclnt_connect.c
/freebsd-11-stable/lib/libypclnt/ypclnt_error.c
/freebsd-11-stable/lib/libypclnt/ypclnt_free.c
/freebsd-11-stable/lib/libypclnt/ypclnt_get.c
/freebsd-11-stable/lib/libypclnt/ypclnt_new.c
/freebsd-11-stable/lib/libypclnt/ypclnt_passwd.c
/freebsd-11-stable/lib/msun/amd64/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.h
/freebsd-11-stable/lib/msun/bsdsrc/b_exp.c
/freebsd-11-stable/lib/msun/bsdsrc/b_log.c
/freebsd-11-stable/lib/msun/bsdsrc/b_tgamma.c
/freebsd-11-stable/lib/msun/bsdsrc/mathimpl.h
/freebsd-11-stable/lib/msun/i387/fenv.c
/freebsd-11-stable/lib/msun/i387/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.h
/freebsd-11-stable/lib/msun/ld128/k_expl.h
/freebsd-11-stable/lib/msun/ld128/s_exp2l.c
/freebsd-11-stable/lib/msun/ld128/s_expl.c
/freebsd-11-stable/lib/msun/ld128/s_logl.c
/freebsd-11-stable/lib/msun/ld128/s_nanl.c
/freebsd-11-stable/lib/msun/ld80/invtrig.c
/freebsd-11-stable/lib/msun/ld80/invtrig.h
/freebsd-11-stable/lib/msun/ld80/k_expl.h
/freebsd-11-stable/lib/msun/ld80/s_exp2l.c
/freebsd-11-stable/lib/msun/ld80/s_expl.c
/freebsd-11-stable/lib/msun/ld80/s_logl.c
/freebsd-11-stable/lib/msun/ld80/s_nanl.c
/freebsd-11-stable/lib/msun/mips/fenv.c
/freebsd-11-stable/lib/msun/mips/fenv.h
/freebsd-11-stable/lib/msun/powerpc/fenv.c
/freebsd-11-stable/lib/msun/powerpc/fenv.h
/freebsd-11-stable/lib/msun/sparc64/fenv.c
/freebsd-11-stable/lib/msun/sparc64/fenv.h
/freebsd-11-stable/lib/msun/src/catrig.c
/freebsd-11-stable/lib/msun/src/catrigf.c
/freebsd-11-stable/lib/msun/src/e_remainderl.c
/freebsd-11-stable/lib/msun/src/e_sqrtl.c
/freebsd-11-stable/lib/msun/src/fenv-softfloat.h
/freebsd-11-stable/lib/msun/src/imprecise.c
/freebsd-11-stable/lib/msun/src/k_exp.c
/freebsd-11-stable/lib/msun/src/k_expf.c
/freebsd-11-stable/lib/msun/src/s_carg.c
/freebsd-11-stable/lib/msun/src/s_cargf.c
/freebsd-11-stable/lib/msun/src/s_cargl.c
/freebsd-11-stable/lib/msun/src/s_ccosh.c
/freebsd-11-stable/lib/msun/src/s_ccoshf.c
/freebsd-11-stable/lib/msun/src/s_cexp.c
/freebsd-11-stable/lib/msun/src/s_cexpf.c
/freebsd-11-stable/lib/msun/src/s_cimag.c
/freebsd-11-stable/lib/msun/src/s_cimagf.c
/freebsd-11-stable/lib/msun/src/s_cimagl.c
/freebsd-11-stable/lib/msun/src/s_conj.c
/freebsd-11-stable/lib/msun/src/s_conjf.c
/freebsd-11-stable/lib/msun/src/s_conjl.c
/freebsd-11-stable/lib/msun/src/s_copysignl.c
/freebsd-11-stable/lib/msun/src/s_cosl.c
/freebsd-11-stable/lib/msun/src/s_cproj.c
/freebsd-11-stable/lib/msun/src/s_cprojf.c
/freebsd-11-stable/lib/msun/src/s_cprojl.c
/freebsd-11-stable/lib/msun/src/s_creal.c
/freebsd-11-stable/lib/msun/src/s_crealf.c
/freebsd-11-stable/lib/msun/src/s_creall.c
/freebsd-11-stable/lib/msun/src/s_csinh.c
/freebsd-11-stable/lib/msun/src/s_csinhf.c
/freebsd-11-stable/lib/msun/src/s_csqrt.c
/freebsd-11-stable/lib/msun/src/s_csqrtf.c
/freebsd-11-stable/lib/msun/src/s_csqrtl.c
/freebsd-11-stable/lib/msun/src/s_ctanh.c
/freebsd-11-stable/lib/msun/src/s_ctanhf.c
/freebsd-11-stable/lib/msun/src/s_exp2.c
/freebsd-11-stable/lib/msun/src/s_exp2f.c
/freebsd-11-stable/lib/msun/src/s_fabsl.c
/freebsd-11-stable/lib/msun/src/s_fdim.c
/freebsd-11-stable/lib/msun/src/s_fma.c
/freebsd-11-stable/lib/msun/src/s_fmaf.c
/freebsd-11-stable/lib/msun/src/s_fmal.c
/freebsd-11-stable/lib/msun/src/s_fmax.c
/freebsd-11-stable/lib/msun/src/s_fmaxf.c
/freebsd-11-stable/lib/msun/src/s_fmaxl.c
/freebsd-11-stable/lib/msun/src/s_fmin.c
/freebsd-11-stable/lib/msun/src/s_fminf.c
/freebsd-11-stable/lib/msun/src/s_fminl.c
/freebsd-11-stable/lib/msun/src/s_frexpl.c
/freebsd-11-stable/lib/msun/src/s_isfinite.c
/freebsd-11-stable/lib/msun/src/s_isnan.c
/freebsd-11-stable/lib/msun/src/s_isnormal.c
/freebsd-11-stable/lib/msun/src/s_lrint.c
/freebsd-11-stable/lib/msun/src/s_lround.c
/freebsd-11-stable/lib/msun/src/s_modfl.c
/freebsd-11-stable/lib/msun/src/s_nan.c
/freebsd-11-stable/lib/msun/src/s_nearbyint.c
/freebsd-11-stable/lib/msun/src/s_rintl.c
/freebsd-11-stable/lib/msun/src/s_round.c
/freebsd-11-stable/lib/msun/src/s_roundf.c
/freebsd-11-stable/lib/msun/src/s_roundl.c
/freebsd-11-stable/lib/msun/src/s_scalbln.c
/freebsd-11-stable/lib/msun/src/s_signbit.c
/freebsd-11-stable/lib/msun/src/s_sinl.c
/freebsd-11-stable/lib/msun/src/s_tanl.c
/freebsd-11-stable/lib/msun/src/s_tgammaf.c
/freebsd-11-stable/lib/msun/x86/fenv.h
/freebsd-11-stable/lib/ncurses/ncurses/pathnames.h
/freebsd-11-stable/lib/ncurses/ncurses/termcap.c
/freebsd-11-stable/libexec/bootpd/rtmsg.c
/freebsd-11-stable/libexec/comsat/comsat.c
/freebsd-11-stable/libexec/fingerd/fingerd.c
/freebsd-11-stable/libexec/fingerd/pathnames.h
/freebsd-11-stable/libexec/ftpd/extern.h
/freebsd-11-stable/libexec/ftpd/ftpcmd.y
/freebsd-11-stable/libexec/ftpd/ftpd.c
/freebsd-11-stable/libexec/ftpd/logwtmp.c
/freebsd-11-stable/libexec/ftpd/pathnames.h
/freebsd-11-stable/libexec/ftpd/popen.c
/freebsd-11-stable/libexec/getty/extern.h
/freebsd-11-stable/libexec/getty/gettytab.h
/freebsd-11-stable/libexec/getty/init.c
/freebsd-11-stable/libexec/getty/main.c
/freebsd-11-stable/libexec/getty/pathnames.h
/freebsd-11-stable/libexec/getty/subr.c
/freebsd-11-stable/libexec/mknetid/hash.c
/freebsd-11-stable/libexec/mknetid/hash.h
/freebsd-11-stable/libexec/mknetid/mknetid.c
/freebsd-11-stable/libexec/mknetid/parse_group.c
/freebsd-11-stable/libexec/rbootd/bpf.c
/freebsd-11-stable/libexec/rbootd/conf.c
/freebsd-11-stable/libexec/rbootd/defs.h
/freebsd-11-stable/libexec/rbootd/parseconf.c
/freebsd-11-stable/libexec/rbootd/pathnames.h
/freebsd-11-stable/libexec/rbootd/rbootd.c
/freebsd-11-stable/libexec/rbootd/rmp.h
/freebsd-11-stable/libexec/rbootd/rmp_var.h
/freebsd-11-stable/libexec/rbootd/rmpproto.c
/freebsd-11-stable/libexec/rbootd/utils.c
/freebsd-11-stable/libexec/revnetgroup/hash.c
/freebsd-11-stable/libexec/revnetgroup/hash.h
/freebsd-11-stable/libexec/revnetgroup/parse_netgroup.c
/freebsd-11-stable/libexec/revnetgroup/revnetgroup.c
/freebsd-11-stable/libexec/rpc.rstatd/rstatd.c
/freebsd-11-stable/libexec/rpc.rusersd/extern.h
/freebsd-11-stable/libexec/rpc.rusersd/rusers_proc.c
/freebsd-11-stable/libexec/rpc.rusersd/rusersd.c
/freebsd-11-stable/libexec/rtld-elf/malloc.c
/freebsd-11-stable/libexec/rtld-elf/rtld_printf.c
/freebsd-11-stable/libexec/talkd/announce.c
/freebsd-11-stable/libexec/talkd/print.c
/freebsd-11-stable/libexec/talkd/process.c
/freebsd-11-stable/libexec/talkd/table.c
/freebsd-11-stable/libexec/talkd/talkd.c
/freebsd-11-stable/libexec/tftpd/tftpd.c
/freebsd-11-stable/libexec/ypxfr/yp_dbwrite.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_extern.h
/freebsd-11-stable/libexec/ypxfr/ypxfr_getmap.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_main.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_misc.c
/freebsd-11-stable/libexec/ypxfr/ypxfrd_getmap.c
/freebsd-11-stable/release/picobsd/tinyware/login/pathnames.h
/freebsd-11-stable/release/picobsd/tinyware/login/pico-login.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/extern.h
/freebsd-11-stable/release/picobsd/tinyware/passwd/local_passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_copy.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.h
/freebsd-11-stable/sbin/bsdlabel/bsdlabel.c
/freebsd-11-stable/sbin/bsdlabel/pathnames.h
/freebsd-11-stable/sbin/clri/clri.c
/freebsd-11-stable/sbin/devd/devd.cc
/freebsd-11-stable/sbin/dhclient/alloc.c
/freebsd-11-stable/sbin/dhclient/bpf.c
/freebsd-11-stable/sbin/dhclient/clparse.c
/freebsd-11-stable/sbin/dhclient/conflex.c
/freebsd-11-stable/sbin/dhclient/convert.c
/freebsd-11-stable/sbin/dhclient/dhclient.c
/freebsd-11-stable/sbin/dhclient/dhcp.h
/freebsd-11-stable/sbin/dhclient/dhcpd.h
/freebsd-11-stable/sbin/dhclient/dhctoken.h
/freebsd-11-stable/sbin/dhclient/dispatch.c
/freebsd-11-stable/sbin/dhclient/errwarn.c
/freebsd-11-stable/sbin/dhclient/hash.c
/freebsd-11-stable/sbin/dhclient/inet.c
/freebsd-11-stable/sbin/dhclient/options.c
/freebsd-11-stable/sbin/dhclient/packet.c
/freebsd-11-stable/sbin/dhclient/parse.c
/freebsd-11-stable/sbin/dhclient/tables.c
/freebsd-11-stable/sbin/dhclient/tree.c
/freebsd-11-stable/sbin/dhclient/tree.h
/freebsd-11-stable/sbin/dmesg/dmesg.c
/freebsd-11-stable/sbin/dump/dump.h
/freebsd-11-stable/sbin/dump/dumprmt.c
/freebsd-11-stable/sbin/dump/itime.c
/freebsd-11-stable/sbin/dump/main.c
/freebsd-11-stable/sbin/dump/optr.c
/freebsd-11-stable/sbin/dump/pathnames.h
/freebsd-11-stable/sbin/dump/tape.c
/freebsd-11-stable/sbin/dump/traverse.c
/freebsd-11-stable/sbin/dump/unctime.c
/freebsd-11-stable/sbin/dumpfs/dumpfs.c
/freebsd-11-stable/sbin/dumpon/dumpon.c
/freebsd-11-stable/sbin/etherswitchcfg/ifmedia.c
/freebsd-11-stable/sbin/ffsinfo/ffsinfo.c
/freebsd-11-stable/sbin/fsck/fsck.c
/freebsd-11-stable/sbin/fsck/fsutil.c
/freebsd-11-stable/sbin/fsck/preen.c
/freebsd-11-stable/sbin/fsck_ffs/dir.c
/freebsd-11-stable/sbin/fsck_ffs/fsck.h
/freebsd-11-stable/sbin/fsck_ffs/fsutil.c
/freebsd-11-stable/sbin/fsck_ffs/gjournal.c
/freebsd-11-stable/sbin/fsck_ffs/globs.c
/freebsd-11-stable/sbin/fsck_ffs/inode.c
/freebsd-11-stable/sbin/fsck_ffs/main.c
/freebsd-11-stable/sbin/fsck_ffs/pass1.c
/freebsd-11-stable/sbin/fsck_ffs/pass1b.c
/freebsd-11-stable/sbin/fsck_ffs/pass2.c
/freebsd-11-stable/sbin/fsck_ffs/pass3.c
/freebsd-11-stable/sbin/fsck_ffs/pass4.c
/freebsd-11-stable/sbin/fsck_ffs/pass5.c
/freebsd-11-stable/sbin/fsck_ffs/setup.c
/freebsd-11-stable/sbin/fsck_ffs/utilities.c
/freebsd-11-stable/sbin/growfs/debug.c
/freebsd-11-stable/sbin/growfs/debug.h
/freebsd-11-stable/sbin/growfs/growfs.c
/freebsd-11-stable/sbin/gvinum/gvinum.h
/freebsd-11-stable/sbin/ifconfig/af_inet.c
/freebsd-11-stable/sbin/ifconfig/af_inet6.c
/freebsd-11-stable/sbin/ifconfig/af_link.c
/freebsd-11-stable/sbin/ifconfig/ifclone.c
/freebsd-11-stable/sbin/ifconfig/ifconfig.c
/freebsd-11-stable/sbin/ifconfig/ifmedia.c
/freebsd-11-stable/sbin/ifconfig/ifvlan.c
/freebsd-11-stable/sbin/init/init.c
/freebsd-11-stable/sbin/init/pathnames.h
/freebsd-11-stable/sbin/mknod/mknod.c
/freebsd-11-stable/sbin/mount/getmntopts.c
/freebsd-11-stable/sbin/mount/mntopts.h
/freebsd-11-stable/sbin/mount/mount.c
/freebsd-11-stable/sbin/mount/mount_fs.c
/freebsd-11-stable/sbin/mount/pathnames.h
/freebsd-11-stable/sbin/mount/vfslist.c
/freebsd-11-stable/sbin/mount_cd9660/mount_cd9660.c
/freebsd-11-stable/sbin/mount_nfs/mount_nfs.c
/freebsd-11-stable/sbin/mount_nullfs/mount_nullfs.c
/freebsd-11-stable/sbin/mount_udf/mount_udf.c
/freebsd-11-stable/sbin/mount_unionfs/mount_unionfs.c
/freebsd-11-stable/sbin/newfs/mkfs.c
/freebsd-11-stable/sbin/newfs/newfs.c
/freebsd-11-stable/sbin/newfs/newfs.h
/freebsd-11-stable/sbin/nfsiod/nfsiod.c
/freebsd-11-stable/sbin/ping/ping.c
/freebsd-11-stable/sbin/ping6/ping6.c
/freebsd-11-stable/sbin/quotacheck/preen.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.h
/freebsd-11-stable/sbin/rcorder/ealloc.c
/freebsd-11-stable/sbin/rcorder/hash.c
/freebsd-11-stable/sbin/rcorder/hash.h
/freebsd-11-stable/sbin/rcorder/sprite.h
/freebsd-11-stable/sbin/reboot/reboot.c
/freebsd-11-stable/sbin/restore/dirs.c
/freebsd-11-stable/sbin/restore/extern.h
/freebsd-11-stable/sbin/restore/interactive.c
/freebsd-11-stable/sbin/restore/main.c
/freebsd-11-stable/sbin/restore/restore.c
/freebsd-11-stable/sbin/restore/restore.h
/freebsd-11-stable/sbin/restore/symtab.c
/freebsd-11-stable/sbin/restore/tape.c
/freebsd-11-stable/sbin/restore/utilities.c
/freebsd-11-stable/sbin/route/route.c
/freebsd-11-stable/sbin/routed/defs.h
/freebsd-11-stable/sbin/routed/if.c
/freebsd-11-stable/sbin/routed/input.c
/freebsd-11-stable/sbin/routed/main.c
/freebsd-11-stable/sbin/routed/output.c
/freebsd-11-stable/sbin/routed/parms.c
/freebsd-11-stable/sbin/routed/pathnames.h
/freebsd-11-stable/sbin/routed/radix.c
/freebsd-11-stable/sbin/routed/radix.h
/freebsd-11-stable/sbin/routed/rdisc.c
/freebsd-11-stable/sbin/routed/rtquery/rtquery.c
/freebsd-11-stable/sbin/routed/table.c
/freebsd-11-stable/sbin/routed/trace.c
/freebsd-11-stable/sbin/savecore/savecore.c
/freebsd-11-stable/sbin/setkey/parse.y
/freebsd-11-stable/sbin/setkey/setkey.c
/freebsd-11-stable/sbin/setkey/test-pfkey.c
/freebsd-11-stable/sbin/setkey/test-policy.c
/freebsd-11-stable/sbin/setkey/token.l
/freebsd-11-stable/sbin/setkey/vchar.h
/freebsd-11-stable/sbin/shutdown/shutdown.c
/freebsd-11-stable/sbin/sunlabel/sunlabel.c
/freebsd-11-stable/sbin/swapon/swapon.c
/freebsd-11-stable/sbin/sysctl/sysctl.c
/freebsd-11-stable/sbin/tunefs/tunefs.c
/freebsd-11-stable/sbin/umount/umount.c
/freebsd-11-stable/share/examples/tests/tests/atf/cp_test.sh
/freebsd-11-stable/share/examples/tests/tests/atf/printf_test.c
/freebsd-11-stable/share/examples/tests/tests/plain/printf_test.c
/freebsd-11-stable/sys/amd64/acpica/acpi_machdep.c
/freebsd-11-stable/sys/amd64/amd64/atomic.c
/freebsd-11-stable/sys/amd64/amd64/bios.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.h
/freebsd-11-stable/sys/amd64/amd64/elf_machdep.c
/freebsd-11-stable/sys/amd64/amd64/fpu.c
/freebsd-11-stable/sys/amd64/amd64/gdb_machdep.c
/freebsd-11-stable/sys/amd64/amd64/genassym.c
/freebsd-11-stable/sys/amd64/amd64/in_cksum.c
/freebsd-11-stable/sys/amd64/amd64/initcpu.c
/freebsd-11-stable/sys/amd64/amd64/io.c
/freebsd-11-stable/sys/amd64/amd64/machdep.c
/freebsd-11-stable/sys/amd64/amd64/mem.c
/freebsd-11-stable/sys/amd64/amd64/minidump_machdep.c
/freebsd-11-stable/sys/amd64/amd64/mp_machdep.c
/freebsd-11-stable/sys/amd64/amd64/pmap.c
/freebsd-11-stable/sys/amd64/amd64/prof_machdep.c
/freebsd-11-stable/sys/amd64/amd64/ptrace_machdep.c
/freebsd-11-stable/sys/amd64/amd64/sys_machdep.c
/freebsd-11-stable/sys/amd64/amd64/trap.c
/freebsd-11-stable/sys/amd64/amd64/uio_machdep.c
/freebsd-11-stable/sys/amd64/amd64/uma_machdep.c
/freebsd-11-stable/sys/amd64/amd64/vm_machdep.c
/freebsd-11-stable/sys/amd64/ia32/ia32_misc.c
/freebsd-11-stable/sys/amd64/ia32/ia32_reg.c
/freebsd-11-stable/sys/amd64/ia32/ia32_signal.c
/freebsd-11-stable/sys/amd64/ia32/ia32_syscall.c
/freebsd-11-stable/sys/amd64/include/_bus.h
/freebsd-11-stable/sys/amd64/include/asm.h
/freebsd-11-stable/sys/amd64/include/asmacros.h
/freebsd-11-stable/sys/amd64/include/atomic.h
/freebsd-11-stable/sys/amd64/include/bus_dma.h
/freebsd-11-stable/sys/amd64/include/counter.h
/freebsd-11-stable/sys/amd64/include/cpu.h
/freebsd-11-stable/sys/amd64/include/cpufunc.h
/freebsd-11-stable/sys/amd64/include/exec.h
/freebsd-11-stable/sys/amd64/include/floatingpoint.h
/freebsd-11-stable/sys/amd64/include/fpu.h
/freebsd-11-stable/sys/amd64/include/gdb_machdep.h
/freebsd-11-stable/sys/amd64/include/ieeefp.h
/freebsd-11-stable/sys/amd64/include/in_cksum.h
/freebsd-11-stable/sys/amd64/include/intr_machdep.h
/freebsd-11-stable/sys/amd64/include/iodev.h
/freebsd-11-stable/sys/amd64/include/kdb.h
/freebsd-11-stable/sys/amd64/include/limits.h
/freebsd-11-stable/sys/amd64/include/md_var.h
/freebsd-11-stable/sys/amd64/include/memdev.h
/freebsd-11-stable/sys/amd64/include/minidump.h
/freebsd-11-stable/sys/amd64/include/mp_watchdog.h
/freebsd-11-stable/sys/amd64/include/param.h
/freebsd-11-stable/sys/amd64/include/pc/bios.h
/freebsd-11-stable/sys/amd64/include/pcb.h
/freebsd-11-stable/sys/amd64/include/pcpu.h
/freebsd-11-stable/sys/amd64/include/pmap.h
/freebsd-11-stable/sys/amd64/include/pmc_mdep.h
/freebsd-11-stable/sys/amd64/include/ppireg.h
/freebsd-11-stable/sys/amd64/include/proc.h
/freebsd-11-stable/sys/amd64/include/profile.h
/freebsd-11-stable/sys/amd64/include/reloc.h
/freebsd-11-stable/sys/amd64/include/runq.h
/freebsd-11-stable/sys/amd64/include/segments.h
/freebsd-11-stable/sys/amd64/include/sf_buf.h
/freebsd-11-stable/sys/amd64/include/timerreg.h
/freebsd-11-stable/sys/amd64/include/tss.h
/freebsd-11-stable/sys/amd64/include/varargs.h
/freebsd-11-stable/sys/amd64/include/vm.h
/freebsd-11-stable/sys/amd64/include/vmm.h
/freebsd-11-stable/sys/amd64/include/vmm_dev.h
/freebsd-11-stable/sys/amd64/include/vmm_instruction_emul.h
/freebsd-11-stable/sys/amd64/include/vmparam.h
/freebsd-11-stable/sys/amd64/linux32/linux.h
/freebsd-11-stable/sys/amd64/linux32/linux32_dummy.c
/freebsd-11-stable/sys/amd64/linux32/linux32_machdep.c
/freebsd-11-stable/sys/amd64/linux32/linux32_sysvec.c
/freebsd-11-stable/sys/amd64/pci/pci_cfgreg.c
/freebsd-11-stable/sys/amd64/vmm/amd/amdv.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_controls.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_cpufunc.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_genassym.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.h
/freebsd-11-stable/sys/amd64/vmm/intel/vtd.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.h
/freebsd-11-stable/sys/amd64/vmm/io/ppt.c
/freebsd-11-stable/sys/amd64/vmm/io/ppt.h
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.c
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.h
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic_priv.h
/freebsd-11-stable/sys/amd64/vmm/vmm.c
/freebsd-11-stable/sys/amd64/vmm/vmm_dev.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.h
/freebsd-11-stable/sys/amd64/vmm/vmm_instruction_emul.c
/freebsd-11-stable/sys/amd64/vmm/vmm_ktr.h
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.c
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.h
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.c
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.h
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.c
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.h
/freebsd-11-stable/sys/amd64/vmm/vmm_util.c
/freebsd-11-stable/sys/amd64/vmm/vmm_util.h
/freebsd-11-stable/sys/amd64/vmm/x86.c
/freebsd-11-stable/sys/amd64/vmm/x86.h
/freebsd-11-stable/sys/arm/allwinner/a10_ehci.c
/freebsd-11-stable/sys/arm/allwinner/a10_gpio.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.h
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.c
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.h
/freebsd-11-stable/sys/arm/allwinner/if_emac.c
/freebsd-11-stable/sys/arm/allwinner/if_emacreg.h
/freebsd-11-stable/sys/arm/arm/autoconf.c
/freebsd-11-stable/sys/arm/arm/bus_space_generic.c
/freebsd-11-stable/sys/arm/arm/busdma_machdep-v6.c
/freebsd-11-stable/sys/arm/arm/cpufunc.c
/freebsd-11-stable/sys/arm/arm/db_disasm.c
/freebsd-11-stable/sys/arm/arm/disassem.c
/freebsd-11-stable/sys/arm/arm/dump_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_trampoline.c
/freebsd-11-stable/sys/arm/arm/fiq.c
/freebsd-11-stable/sys/arm/arm/gdb_machdep.c
/freebsd-11-stable/sys/arm/arm/genassym.c
/freebsd-11-stable/sys/arm/arm/generic_timer.c
/freebsd-11-stable/sys/arm/arm/gic.c
/freebsd-11-stable/sys/arm/arm/in_cksum.c
/freebsd-11-stable/sys/arm/arm/intr.c
/freebsd-11-stable/sys/arm/arm/machdep.c
/freebsd-11-stable/sys/arm/arm/mem.c
/freebsd-11-stable/sys/arm/arm/minidump_machdep.c
/freebsd-11-stable/sys/arm/arm/mp_machdep.c
/freebsd-11-stable/sys/arm/arm/mpcore_timer.c
/freebsd-11-stable/sys/arm/arm/physmem.c
/freebsd-11-stable/sys/arm/arm/pl190.c
/freebsd-11-stable/sys/arm/arm/pl310.c
/freebsd-11-stable/sys/arm/arm/pmap-v6.c
/freebsd-11-stable/sys/arm/arm/sc_machdep.c
/freebsd-11-stable/sys/arm/arm/stack_machdep.c
/freebsd-11-stable/sys/arm/arm/stdatomic.c
/freebsd-11-stable/sys/arm/arm/sys_machdep.c
/freebsd-11-stable/sys/arm/arm/uio_machdep.c
/freebsd-11-stable/sys/arm/arm/undefined.c
/freebsd-11-stable/sys/arm/arm/vfp.c
/freebsd-11-stable/sys/arm/arm/vm_machdep.c
/freebsd-11-stable/sys/arm/at91/at91.c
/freebsd-11-stable/sys/arm/at91/at91_aic.c
/freebsd-11-stable/sys/arm/at91/at91_aicreg.h
/freebsd-11-stable/sys/arm/at91/at91_cfata.c
/freebsd-11-stable/sys/arm/at91/at91_gpio.h
/freebsd-11-stable/sys/arm/at91/at91_machdep.c
/freebsd-11-stable/sys/arm/at91/at91_mci.c
/freebsd-11-stable/sys/arm/at91/at91_mcireg.h
/freebsd-11-stable/sys/arm/at91/at91_pdcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pio.c
/freebsd-11-stable/sys/arm/at91/at91_pio_sam9g45.h
/freebsd-11-stable/sys/arm/at91/at91_pioreg.h
/freebsd-11-stable/sys/arm/at91/at91_piovar.h
/freebsd-11-stable/sys/arm/at91/at91_pit.c
/freebsd-11-stable/sys/arm/at91/at91_pitreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmc.c
/freebsd-11-stable/sys/arm/at91/at91_pmcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmcvar.h
/freebsd-11-stable/sys/arm/at91/at91_rst.c
/freebsd-11-stable/sys/arm/at91/at91_rstreg.h
/freebsd-11-stable/sys/arm/at91/at91_rtc.c
/freebsd-11-stable/sys/arm/at91/at91_rtcreg.h
/freebsd-11-stable/sys/arm/at91/at91_sdramc.c
/freebsd-11-stable/sys/arm/at91/at91_shdwc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.h
/freebsd-11-stable/sys/arm/at91/at91_spi.c
/freebsd-11-stable/sys/arm/at91/at91_spireg.h
/freebsd-11-stable/sys/arm/at91/at91_ssc.c
/freebsd-11-stable/sys/arm/at91/at91_sscreg.h
/freebsd-11-stable/sys/arm/at91/at91_st.c
/freebsd-11-stable/sys/arm/at91/at91_streg.h
/freebsd-11-stable/sys/arm/at91/at91_tcb.c
/freebsd-11-stable/sys/arm/at91/at91_twi.c
/freebsd-11-stable/sys/arm/at91/at91_twiio.h
/freebsd-11-stable/sys/arm/at91/at91_twireg.h
/freebsd-11-stable/sys/arm/at91/at91_usartreg.h
/freebsd-11-stable/sys/arm/at91/at91_wdt.c
/freebsd-11-stable/sys/arm/at91/at91_wdtreg.h
/freebsd-11-stable/sys/arm/at91/at91board.h
/freebsd-11-stable/sys/arm/at91/at91reg.h
/freebsd-11-stable/sys/arm/at91/at91rm9200.c
/freebsd-11-stable/sys/arm/at91/at91rm9200_devices.c
/freebsd-11-stable/sys/arm/at91/at91rm9200var.h
/freebsd-11-stable/sys/arm/at91/at91rm92reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9260.c
/freebsd-11-stable/sys/arm/at91/at91sam9260reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g20.c
/freebsd-11-stable/sys/arm/at91/at91sam9g20reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g45.c
/freebsd-11-stable/sys/arm/at91/at91sam9g45reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9x5.c
/freebsd-11-stable/sys/arm/at91/at91sam9x5reg.h
/freebsd-11-stable/sys/arm/at91/at91soc.c
/freebsd-11-stable/sys/arm/at91/at91soc.h
/freebsd-11-stable/sys/arm/at91/at91var.h
/freebsd-11-stable/sys/arm/at91/board_bwct.c
/freebsd-11-stable/sys/arm/at91/board_eb9200.c
/freebsd-11-stable/sys/arm/at91/board_ethernut5.c
/freebsd-11-stable/sys/arm/at91/board_hl200.c
/freebsd-11-stable/sys/arm/at91/board_hl201.c
/freebsd-11-stable/sys/arm/at91/board_kb920x.c
/freebsd-11-stable/sys/arm/at91/board_qila9g20.c
/freebsd-11-stable/sys/arm/at91/board_sam9260ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9g20ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9x25ek.c
/freebsd-11-stable/sys/arm/at91/board_sn9g45.c
/freebsd-11-stable/sys/arm/at91/board_tsc4370.c
/freebsd-11-stable/sys/arm/at91/if_ate.c
/freebsd-11-stable/sys/arm/at91/if_atereg.h
/freebsd-11-stable/sys/arm/at91/if_macb.c
/freebsd-11-stable/sys/arm/at91/uart_bus_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_cpu_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_dev_at91usart.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bsc.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fb.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fbd.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_intr.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_machdep.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spi.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spireg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spivar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_systimer.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.h
/freebsd-11-stable/sys/arm/conf/genboardid.awk
/freebsd-11-stable/sys/arm/freescale/fsl_ocotp.c
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpreg.h
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_dpllreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3_fbd.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3reg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_sdmareg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ssireg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_tzicreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx53_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatop.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_mp.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_pl310.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_common.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gpt.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gptreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_nop_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdog.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdogreg.h
/freebsd-11-stable/sys/arm/freescale/imx/tzic.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_anadig.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ccm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_common.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dcu4.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ehci.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_gpio.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_i2c.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_machdep.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_mscm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_nfc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_sai.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_tcon.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_uart.c
_align.h
_bus.h
_inttypes.h
_limits.h
_stdint.h
_types.h
armreg.h
asm.h
asmacros.h
at91_gpio.h
atags.h
atomic.h
blockio.h
board.h
bus.h
bus_dma.h
clock.h
counter.h
cpufunc.h
disassem.h
elf.h
endian.h
exec.h
fdt.h
fiq.h
float.h
floatingpoint.h
frame.h
gdb_machdep.h
ieee.h
in_cksum.h
intr.h
kdb.h
limits.h
md_var.h
memdev.h
metadata.h
minidump.h
ofw_machdep.h
param.h
pcb.h
pcpu.h
physmem.h
pl310.h
pmap.h
pmc_mdep.h
proc.h
profile.h
psl.h
reloc.h
runq.h
sc_machdep.h
sf_buf.h
signal.h
stdarg.h
sysarch.h
ucontext.h
undefined.h
utrap.h
vdso.h
vfp.h
vm.h
vmparam.h
/freebsd-11-stable/sys/arm/lpc/if_lpe.c
/freebsd-11-stable/sys/arm/lpc/if_lpereg.h
/freebsd-11-stable/sys/arm/lpc/lpc_dmac.c
/freebsd-11-stable/sys/arm/lpc/lpc_fb.c
/freebsd-11-stable/sys/arm/lpc/lpc_gpio.c
/freebsd-11-stable/sys/arm/lpc/lpc_intc.c
/freebsd-11-stable/sys/arm/lpc/lpc_machdep.c
/freebsd-11-stable/sys/arm/lpc/lpc_mmc.c
/freebsd-11-stable/sys/arm/lpc/lpc_ohci.c
/freebsd-11-stable/sys/arm/lpc/lpc_pll.c
/freebsd-11-stable/sys/arm/lpc/lpc_pwr.c
/freebsd-11-stable/sys/arm/lpc/lpc_rtc.c
/freebsd-11-stable/sys/arm/lpc/lpc_spi.c
/freebsd-11-stable/sys/arm/lpc/lpc_timer.c
/freebsd-11-stable/sys/arm/lpc/lpcreg.h
/freebsd-11-stable/sys/arm/lpc/lpcvar.h
/freebsd-11-stable/sys/arm/lpc/ssd1289.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp_mp.c
/freebsd-11-stable/sys/arm/mv/discovery/discovery.c
/freebsd-11-stable/sys/arm/mv/gpio.c
/freebsd-11-stable/sys/arm/mv/ic.c
/freebsd-11-stable/sys/arm/mv/kirkwood/kirkwood.c
/freebsd-11-stable/sys/arm/mv/mpic.c
/freebsd-11-stable/sys/arm/mv/mv_common.c
/freebsd-11-stable/sys/arm/mv/mv_localbus.c
/freebsd-11-stable/sys/arm/mv/mv_machdep.c
/freebsd-11-stable/sys/arm/mv/mv_pci.c
/freebsd-11-stable/sys/arm/mv/mv_ts.c
/freebsd-11-stable/sys/arm/mv/mvreg.h
/freebsd-11-stable/sys/arm/mv/mvvar.h
/freebsd-11-stable/sys/arm/mv/mvwin.h
/freebsd-11-stable/sys/arm/mv/orion/db88f5xxx.c
/freebsd-11-stable/sys/arm/mv/orion/orion.c
/freebsd-11-stable/sys/arm/mv/rtc.c
/freebsd-11-stable/sys/arm/mv/timer.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_gpio.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_machdep.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.h
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_machdep.c
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_mp.c
/freebsd-11-stable/sys/arm/ti/aintc.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_dmtimer.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd_syscons.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pmic.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_prcm.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pwm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_reg.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_usbss.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpsw.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswreg.h
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswvar.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_l2cache.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_mp.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_prcm_clks.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_reg.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_smc.h
/freebsd-11-stable/sys/arm/ti/omap4/pandaboard/pandaboard.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.h
/freebsd-11-stable/sys/arm/ti/ti_edma3.c
/freebsd-11-stable/sys/arm/ti/ti_edma3.h
/freebsd-11-stable/sys/arm/ti/ti_gpio.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.h
/freebsd-11-stable/sys/arm/ti/ti_machdep.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.h
/freebsd-11-stable/sys/arm/ti/ti_prcm.c
/freebsd-11-stable/sys/arm/ti/ti_prcm.h
/freebsd-11-stable/sys/arm/ti/ti_pruss.c
/freebsd-11-stable/sys/arm/ti/ti_pruss.h
/freebsd-11-stable/sys/arm/ti/ti_scm.c
/freebsd-11-stable/sys/arm/ti/ti_scm.h
/freebsd-11-stable/sys/arm/ti/ti_sdhci.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.h
/freebsd-11-stable/sys/arm/ti/ti_sdmareg.h
/freebsd-11-stable/sys/arm/ti/ti_smc.h
/freebsd-11-stable/sys/arm/ti/tivar.h
/freebsd-11-stable/sys/arm/ti/twl/twl.c
/freebsd-11-stable/sys/arm/ti/twl/twl.h
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.c
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.h
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.c
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.h
/freebsd-11-stable/sys/arm/ti/usb/omap_ehci.c
/freebsd-11-stable/sys/arm/ti/usb/omap_usb.h
/freebsd-11-stable/sys/arm/versatile/pl050.c
/freebsd-11-stable/sys/arm/versatile/sp804.c
/freebsd-11-stable/sys/arm/versatile/versatile_clcd.c
/freebsd-11-stable/sys/arm/versatile/versatile_common.c
/freebsd-11-stable/sys/arm/versatile/versatile_machdep.c
/freebsd-11-stable/sys/arm/versatile/versatile_pci.c
/freebsd-11-stable/sys/arm/versatile/versatile_sic.c
/freebsd-11-stable/sys/arm/xilinx/uart_dev_cdnc.c
/freebsd-11-stable/sys/arm/xilinx/zy7_devcfg.c
/freebsd-11-stable/sys/arm/xilinx/zy7_ehci.c
/freebsd-11-stable/sys/arm/xilinx/zy7_gpio.c
/freebsd-11-stable/sys/arm/xilinx/zy7_l2cache.c
/freebsd-11-stable/sys/arm/xilinx/zy7_machdep.c
/freebsd-11-stable/sys/arm/xilinx/zy7_reg.h
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.c
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.h
/freebsd-11-stable/sys/arm/xscale/i8134x/crb_machdep.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_mcu.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_pci.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_space.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342_7seg.c
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/obio.c
/freebsd-11-stable/sys/arm/xscale/i8134x/obiovar.h
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_bus_i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_cpu_i81342.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_ata.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_machdep.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_exp_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_fled.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_a4x_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_iic.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_intr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_mem.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npevar.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_timer.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_wdog.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425var.h
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_bus_ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_cpu_ixp425.c
/freebsd-11-stable/sys/arm/xscale/pxa/if_smc_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_gpio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_icu.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_machdep.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_obio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_space.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_timer.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxareg.h
/freebsd-11-stable/sys/arm/xscale/pxa/pxavar.h
/freebsd-11-stable/sys/arm/xscale/pxa/uart_bus_pxa.c
/freebsd-11-stable/sys/arm/xscale/pxa/uart_cpu_pxa.c
/freebsd-11-stable/sys/bsm/audit.h
/freebsd-11-stable/sys/bsm/audit_domain.h
/freebsd-11-stable/sys/bsm/audit_errno.h
/freebsd-11-stable/sys/bsm/audit_fcntl.h
/freebsd-11-stable/sys/bsm/audit_internal.h
/freebsd-11-stable/sys/bsm/audit_kevents.h
/freebsd-11-stable/sys/bsm/audit_record.h
/freebsd-11-stable/sys/bsm/audit_socket_type.h
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.c
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.h
/freebsd-11-stable/sys/compat/linprocfs/linprocfs.c
/freebsd-11-stable/sys/compat/ndis/cfg_var.h
/freebsd-11-stable/sys/compat/ndis/hal_var.h
/freebsd-11-stable/sys/compat/ndis/kern_ndis.c
/freebsd-11-stable/sys/compat/ndis/kern_windrv.c
/freebsd-11-stable/sys/compat/ndis/ndis_var.h
/freebsd-11-stable/sys/compat/ndis/ntoskrnl_var.h
/freebsd-11-stable/sys/compat/ndis/pe_var.h
/freebsd-11-stable/sys/compat/ndis/resource_var.h
/freebsd-11-stable/sys/compat/ndis/subr_hal.c
/freebsd-11-stable/sys/compat/ndis/subr_ndis.c
/freebsd-11-stable/sys/compat/ndis/subr_ntoskrnl.c
/freebsd-11-stable/sys/compat/ndis/subr_pe.c
/freebsd-11-stable/sys/compat/ndis/subr_usbd.c
/freebsd-11-stable/sys/compat/ndis/usbd_var.h
/freebsd-11-stable/sys/conf/newvers.sh
/freebsd-11-stable/sys/conf/systags.sh
/freebsd-11-stable/sys/crypto/sha1.c
/freebsd-11-stable/sys/crypto/sha1.h
/freebsd-11-stable/sys/ddb/db_ps.c
/freebsd-11-stable/sys/ddb/ddb.h
/freebsd-11-stable/sys/dev/aac/aac.c
/freebsd-11-stable/sys/dev/aac/aac_cam.c
/freebsd-11-stable/sys/dev/aac/aac_debug.c
/freebsd-11-stable/sys/dev/aac/aac_disk.c
/freebsd-11-stable/sys/dev/aac/aac_linux.c
/freebsd-11-stable/sys/dev/aac/aac_pci.c
/freebsd-11-stable/sys/dev/aac/aac_tables.h
/freebsd-11-stable/sys/dev/aac/aacreg.h
/freebsd-11-stable/sys/dev/aac/aacvar.h
/freebsd-11-stable/sys/dev/aacraid/aacraid.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_cam.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_linux.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_pci.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_reg.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_var.h
/freebsd-11-stable/sys/dev/adb/adb.h
/freebsd-11-stable/sys/dev/adb/adb_bus.c
/freebsd-11-stable/sys/dev/adb/adb_buttons.c
/freebsd-11-stable/sys/dev/adb/adb_kbd.c
/freebsd-11-stable/sys/dev/adb/adb_mouse.c
/freebsd-11-stable/sys/dev/adb/adbvar.h
/freebsd-11-stable/sys/dev/adlink/adlink.c
/freebsd-11-stable/sys/dev/advansys/adv_isa.c
/freebsd-11-stable/sys/dev/advansys/adv_pci.c
/freebsd-11-stable/sys/dev/advansys/advansys.c
/freebsd-11-stable/sys/dev/advansys/advansys.h
/freebsd-11-stable/sys/dev/advansys/advlib.c
/freebsd-11-stable/sys/dev/advansys/advlib.h
/freebsd-11-stable/sys/dev/advansys/adw_pci.c
/freebsd-11-stable/sys/dev/advansys/adwcam.c
/freebsd-11-stable/sys/dev/advansys/adwlib.c
/freebsd-11-stable/sys/dev/advansys/adwlib.h
/freebsd-11-stable/sys/dev/advansys/adwvar.h
/freebsd-11-stable/sys/dev/ae/if_ae.c
/freebsd-11-stable/sys/dev/ae/if_aereg.h
/freebsd-11-stable/sys/dev/ae/if_aevar.h
/freebsd-11-stable/sys/dev/age/if_age.c
/freebsd-11-stable/sys/dev/age/if_agereg.h
/freebsd-11-stable/sys/dev/age/if_agevar.h
/freebsd-11-stable/sys/dev/agp/agp.c
/freebsd-11-stable/sys/dev/agp/agp_ali.c
/freebsd-11-stable/sys/dev/agp/agp_amd.c
/freebsd-11-stable/sys/dev/agp/agp_amd64.c
/freebsd-11-stable/sys/dev/agp/agp_apple.c
/freebsd-11-stable/sys/dev/agp/agp_ati.c
/freebsd-11-stable/sys/dev/agp/agp_i810.c
/freebsd-11-stable/sys/dev/agp/agp_i810.h
/freebsd-11-stable/sys/dev/agp/agp_intel.c
/freebsd-11-stable/sys/dev/agp/agp_nvidia.c
/freebsd-11-stable/sys/dev/agp/agp_sis.c
/freebsd-11-stable/sys/dev/agp/agp_via.c
/freebsd-11-stable/sys/dev/agp/agppriv.h
/freebsd-11-stable/sys/dev/agp/agpreg.h
/freebsd-11-stable/sys/dev/agp/agpvar.h
/freebsd-11-stable/sys/dev/aha/aha.c
/freebsd-11-stable/sys/dev/aha/aha_isa.c
/freebsd-11-stable/sys/dev/aha/ahareg.h
/freebsd-11-stable/sys/dev/ahci/ahci.c
/freebsd-11-stable/sys/dev/ahci/ahci.h
/freebsd-11-stable/sys/dev/ahci/ahciem.c
/freebsd-11-stable/sys/dev/aic/aic.c
/freebsd-11-stable/sys/dev/aic/aic6360reg.h
/freebsd-11-stable/sys/dev/aic/aic_isa.c
/freebsd-11-stable/sys/dev/aic/aic_pccard.c
/freebsd-11-stable/sys/dev/aic/aicvar.h
/freebsd-11-stable/sys/dev/aic7xxx/ahc_isa.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7770.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_93cx6.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_insformat.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.h
/freebsd-11-stable/sys/dev/alc/if_alc.c
/freebsd-11-stable/sys/dev/alc/if_alcreg.h
/freebsd-11-stable/sys/dev/alc/if_alcvar.h
/freebsd-11-stable/sys/dev/ale/if_ale.c
/freebsd-11-stable/sys/dev/ale/if_alereg.h
/freebsd-11-stable/sys/dev/ale/if_alevar.h
/freebsd-11-stable/sys/dev/altera/atse/a_api.h
/freebsd-11-stable/sys/dev/altera/atse/if_atse.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_fdt.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_nexus.c
/freebsd-11-stable/sys/dev/altera/atse/if_atsereg.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_fdt.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart.h
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_cons.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_fdt.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.h
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_disk.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_fdt.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_io.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_nexus.c
/freebsd-11-stable/sys/dev/amdsbwd/amdsbwd.c
/freebsd-11-stable/sys/dev/amdtemp/amdtemp.c
/freebsd-11-stable/sys/dev/amr/amr.c
/freebsd-11-stable/sys/dev/amr/amr_cam.c
/freebsd-11-stable/sys/dev/amr/amr_disk.c
/freebsd-11-stable/sys/dev/amr/amr_linux.c
/freebsd-11-stable/sys/dev/amr/amr_pci.c
/freebsd-11-stable/sys/dev/amr/amr_tables.h
/freebsd-11-stable/sys/dev/amr/amrio.h
/freebsd-11-stable/sys/dev/amr/amrreg.h
/freebsd-11-stable/sys/dev/amr/amrvar.h
/freebsd-11-stable/sys/dev/an/if_aironet_ieee.h
/freebsd-11-stable/sys/dev/an/if_an.c
/freebsd-11-stable/sys/dev/an/if_an_isa.c
/freebsd-11-stable/sys/dev/an/if_an_pccard.c
/freebsd-11-stable/sys/dev/an/if_an_pci.c
/freebsd-11-stable/sys/dev/an/if_anreg.h
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.c
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.h
/freebsd-11-stable/sys/dev/asmc/asmc.c
/freebsd-11-stable/sys/dev/asmc/asmcvar.h
/freebsd-11-stable/sys/dev/ata/ata-all.c
/freebsd-11-stable/sys/dev/ata/ata-all.h
/freebsd-11-stable/sys/dev/ata/ata-card.c
/freebsd-11-stable/sys/dev/ata/ata-dma.c
/freebsd-11-stable/sys/dev/ata/ata-isa.c
/freebsd-11-stable/sys/dev/ata/ata-lowlevel.c
/freebsd-11-stable/sys/dev/ata/ata-pci.c
/freebsd-11-stable/sys/dev/ata/ata-pci.h
/freebsd-11-stable/sys/dev/ata/ata-sata.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acard.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acerlabs.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-amd.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ati.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cenatek.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cypress.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cyrix.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-fsl.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-highpoint.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-intel.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ite.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-jmicron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-marvell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-micron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-national.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-netcell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-nvidia.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-promise.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-serverworks.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-siliconimage.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-sis.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-via.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.h
/freebsd-11-stable/sys/dev/ath/ath_dfs/null/dfs_null.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9002phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.c
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.h
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.c
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.c
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/tx_schedules.h
/freebsd-11-stable/sys/dev/ath/if_ath.c
/freebsd-11-stable/sys/dev/ath/if_ath_ahb.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.h
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.c
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.h
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.c
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.h
/freebsd-11-stable/sys/dev/ath/if_ath_debug.c
/freebsd-11-stable/sys/dev/ath/if_ath_debug.h
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.c
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.h
/freebsd-11-stable/sys/dev/ath/if_ath_led.c
/freebsd-11-stable/sys/dev/ath/if_ath_led.h
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.c
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.h
/freebsd-11-stable/sys/dev/ath/if_ath_misc.h
/freebsd-11-stable/sys/dev/ath/if_ath_pci.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.h
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.c
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.h
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.c
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.h
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tsf.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.h
/freebsd-11-stable/sys/dev/ath/if_athdfs.h
/freebsd-11-stable/sys/dev/ath/if_athioctl.h
/freebsd-11-stable/sys/dev/ath/if_athrate.h
/freebsd-11-stable/sys/dev/ath/if_athvar.h
/freebsd-11-stable/sys/dev/atkbdc/atkbd.c
/freebsd-11-stable/sys/dev/atkbdc/atkbd_atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_ebus.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_isa.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdcreg.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdreg.h
/freebsd-11-stable/sys/dev/auxio/auxio.c
/freebsd-11-stable/sys/dev/auxio/auxioreg.h
/freebsd-11-stable/sys/dev/bce/if_bce.c
/freebsd-11-stable/sys/dev/bce/if_bcefw.h
/freebsd-11-stable/sys/dev/bce/if_bcereg.h
/freebsd-11-stable/sys/dev/bfe/if_bfe.c
/freebsd-11-stable/sys/dev/bfe/if_bfereg.h
/freebsd-11-stable/sys/dev/bge/if_bge.c
/freebsd-11-stable/sys/dev/bge/if_bgereg.h
/freebsd-11-stable/sys/dev/bktr/bktr_audio.c
/freebsd-11-stable/sys/dev/bktr/bktr_audio.h
/freebsd-11-stable/sys/dev/bktr/bktr_card.c
/freebsd-11-stable/sys/dev/bktr/bktr_card.h
/freebsd-11-stable/sys/dev/bktr/bktr_core.c
/freebsd-11-stable/sys/dev/bktr/bktr_core.h
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.c
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.h
/freebsd-11-stable/sys/dev/bktr/bktr_mem.c
/freebsd-11-stable/sys/dev/bktr/bktr_mem.h
/freebsd-11-stable/sys/dev/bktr/bktr_os.c
/freebsd-11-stable/sys/dev/bktr/bktr_os.h
/freebsd-11-stable/sys/dev/bktr/bktr_reg.h
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.c
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.h
/freebsd-11-stable/sys/dev/bktr/ioctl_meteor.h
/freebsd-11-stable/sys/dev/bktr/msp34xx.c
/freebsd-11-stable/sys/dev/bm/if_bm.c
/freebsd-11-stable/sys/dev/bm/if_bmreg.h
/freebsd-11-stable/sys/dev/bm/if_bmvar.h
/freebsd-11-stable/sys/dev/buslogic/bt.c
/freebsd-11-stable/sys/dev/buslogic/bt_isa.c
/freebsd-11-stable/sys/dev/buslogic/bt_pci.c
/freebsd-11-stable/sys/dev/buslogic/btreg.h
/freebsd-11-stable/sys/dev/bvm/bvm_console.c
/freebsd-11-stable/sys/dev/bvm/bvm_dbg.c
/freebsd-11-stable/sys/dev/bwi/bitops.h
/freebsd-11-stable/sys/dev/bwi/bwimac.c
/freebsd-11-stable/sys/dev/bwi/bwimac.h
/freebsd-11-stable/sys/dev/bwi/bwiphy.c
/freebsd-11-stable/sys/dev/bwi/bwiphy.h
/freebsd-11-stable/sys/dev/bwi/bwirf.c
/freebsd-11-stable/sys/dev/bwi/bwirf.h
/freebsd-11-stable/sys/dev/bwi/if_bwi.c
/freebsd-11-stable/sys/dev/bwi/if_bwi_pci.c
/freebsd-11-stable/sys/dev/bwi/if_bwireg.h
/freebsd-11-stable/sys/dev/bwi/if_bwivar.h
/freebsd-11-stable/sys/dev/bwn/if_bwn.c
/freebsd-11-stable/sys/dev/bwn/if_bwnreg.h
/freebsd-11-stable/sys/dev/bwn/if_bwnvar.h
/freebsd-11-stable/sys/dev/bxe/57710_init_values.c
/freebsd-11-stable/sys/dev/bxe/57710_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57711_init_values.c
/freebsd-11-stable/sys/dev/bxe/57711_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57712_init_values.c
/freebsd-11-stable/sys/dev/bxe/57712_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/bxe.c
/freebsd-11-stable/sys/dev/bxe/bxe.h
/freebsd-11-stable/sys/dev/bxe/bxe_dcb.h
/freebsd-11-stable/sys/dev/bxe/bxe_debug.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.h
/freebsd-11-stable/sys/dev/bxe/bxe_stats.c
/freebsd-11-stable/sys/dev/bxe/bxe_stats.h
/freebsd-11-stable/sys/dev/bxe/ecore_fw_defs.h
/freebsd-11-stable/sys/dev/bxe/ecore_hsi.h
/freebsd-11-stable/sys/dev/bxe/ecore_init.h
/freebsd-11-stable/sys/dev/bxe/ecore_init_ops.h
/freebsd-11-stable/sys/dev/bxe/ecore_mfw_req.h
/freebsd-11-stable/sys/dev/bxe/ecore_reg.h
/freebsd-11-stable/sys/dev/bxe/ecore_sp.c
/freebsd-11-stable/sys/dev/bxe/ecore_sp.h
/freebsd-11-stable/sys/dev/cadence/if_cgem.c
/freebsd-11-stable/sys/dev/cadence/if_cgem_hw.h
/freebsd-11-stable/sys/dev/cardbus/cardbus.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.h
/freebsd-11-stable/sys/dev/cardbus/cardbus_device.c
/freebsd-11-stable/sys/dev/cardbus/cardbusreg.h
/freebsd-11-stable/sys/dev/cardbus/cardbusvar.h
/freebsd-11-stable/sys/dev/cas/if_cas.c
/freebsd-11-stable/sys/dev/cas/if_casreg.h
/freebsd-11-stable/sys/dev/cas/if_casvar.h
/freebsd-11-stable/sys/dev/cesa/cesa.c
/freebsd-11-stable/sys/dev/cesa/cesa.h
/freebsd-11-stable/sys/dev/cfe/cfe_api.c
/freebsd-11-stable/sys/dev/cfe/cfe_api.h
/freebsd-11-stable/sys/dev/cfe/cfe_api_int.h
/freebsd-11-stable/sys/dev/cfe/cfe_console.c
/freebsd-11-stable/sys/dev/cfe/cfe_env.c
/freebsd-11-stable/sys/dev/cfe/cfe_error.h
/freebsd-11-stable/sys/dev/cfe/cfe_ioctl.h
/freebsd-11-stable/sys/dev/cfe/cfe_resource.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_fdt.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_ixp4xx.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_nexus.c
/freebsd-11-stable/sys/dev/cfi/cfi_core.c
/freebsd-11-stable/sys/dev/cfi/cfi_dev.c
/freebsd-11-stable/sys/dev/cfi/cfi_disk.c
/freebsd-11-stable/sys/dev/cfi/cfi_reg.h
/freebsd-11-stable/sys/dev/cfi/cfi_var.h
/freebsd-11-stable/sys/dev/ciss/ciss.c
/freebsd-11-stable/sys/dev/ciss/cissio.h
/freebsd-11-stable/sys/dev/ciss/cissreg.h
/freebsd-11-stable/sys/dev/ciss/cissvar.h
/freebsd-11-stable/sys/dev/cm/if_cm_isa.c
/freebsd-11-stable/sys/dev/cm/smc90cx6.c
/freebsd-11-stable/sys/dev/cm/smc90cx6reg.h
/freebsd-11-stable/sys/dev/cm/smc90cx6var.h
/freebsd-11-stable/sys/dev/cmx/cmx_pccard.c
/freebsd-11-stable/sys/dev/cmx/cmxreg.h
/freebsd-11-stable/sys/dev/cmx/cmxvar.h
/freebsd-11-stable/sys/dev/coretemp/coretemp.c
/freebsd-11-stable/sys/dev/cpuctl/cpuctl.c
/freebsd-11-stable/sys/dev/cpufreq/ichss.c
/freebsd-11-stable/sys/dev/cs/if_cs.c
/freebsd-11-stable/sys/dev/cs/if_cs_isa.c
/freebsd-11-stable/sys/dev/cs/if_cs_pccard.c
/freebsd-11-stable/sys/dev/cs/if_csreg.h
/freebsd-11-stable/sys/dev/cs/if_csvar.h
/freebsd-11-stable/sys/dev/cxgb/bin2h.pl
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_ael1002.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_aq100x.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_common.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_firmware_exports.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mc5.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mv88e1xxx.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_regs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_sge_defs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_cpl.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_hw.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tcb.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tn1010.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc7323.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc8211.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_xgmac.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_adapter.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_ioctl.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_main.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_offload.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_osdep.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_sge.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_t3fw.h
/freebsd-11-stable/sys/dev/cxgb/sys/mvec.h
/freebsd-11-stable/sys/dev/cxgb/sys/uipc_mvec.c
/freebsd-11-stable/sys/dev/cxgb/t3b_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3b_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgb/t3c_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3c_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgbe/adapter.h
/freebsd-11-stable/sys/dev/cxgbe/common/common.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.c
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_msg.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs_values.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_tcb.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cm.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cq.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/device.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/ev.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/id_table.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/mem.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/provider.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/qp.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/resource.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/t4.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/user.h
/freebsd-11-stable/sys/dev/cxgbe/offload.h
/freebsd-11-stable/sys/dev/cxgbe/osdep.h
/freebsd-11-stable/sys/dev/cxgbe/t4_ioctl.h
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.h
/freebsd-11-stable/sys/dev/cxgbe/t4_main.c
/freebsd-11-stable/sys/dev/cxgbe/t4_sge.c
/freebsd-11-stable/sys/dev/cxgbe/t4_tracer.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_connect.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_cpl_io.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_ddp.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_listen.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.h
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.h
/freebsd-11-stable/sys/dev/cy/cy.c
/freebsd-11-stable/sys/dev/cy/cy_isa.c
/freebsd-11-stable/sys/dev/cy/cy_pci.c
/freebsd-11-stable/sys/dev/cy/cyreg.h
/freebsd-11-stable/sys/dev/cy/cyvar.h
/freebsd-11-stable/sys/dev/dc/dcphy.c
/freebsd-11-stable/sys/dev/dc/if_dc.c
/freebsd-11-stable/sys/dev/dc/if_dcreg.h
/freebsd-11-stable/sys/dev/dc/pnphy.c
/freebsd-11-stable/sys/dev/dcons/dcons.c
/freebsd-11-stable/sys/dev/dcons/dcons.h
/freebsd-11-stable/sys/dev/dcons/dcons_crom.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.h
/freebsd-11-stable/sys/dev/de/dc21040reg.h
/freebsd-11-stable/sys/dev/de/if_de.c
/freebsd-11-stable/sys/dev/de/if_devar.h
/freebsd-11-stable/sys/dev/dpms/dpms.c
/freebsd-11-stable/sys/dev/dpt/dpt.h
/freebsd-11-stable/sys/dev/dpt/dpt_pci.c
/freebsd-11-stable/sys/dev/dpt/dpt_scsi.c
/freebsd-11-stable/sys/dev/drm2/drm_gem.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.h
/freebsd-11-stable/sys/dev/drm2/drm_linux_list_sort.c
/freebsd-11-stable/sys/dev/drm2/i915/i915_gem.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_82540.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.h
/freebsd-11-stable/sys/dev/e1000/e1000_82542.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.h
/freebsd-11-stable/sys/dev/e1000/e1000_82571.c
/freebsd-11-stable/sys/dev/e1000/e1000_82571.h
/freebsd-11-stable/sys/dev/e1000/e1000_82575.c
/freebsd-11-stable/sys/dev/e1000/e1000_82575.h
/freebsd-11-stable/sys/dev/e1000/e1000_api.c
/freebsd-11-stable/sys/dev/e1000/e1000_api.h
/freebsd-11-stable/sys/dev/e1000/e1000_defines.h
/freebsd-11-stable/sys/dev/e1000/e1000_hw.h
/freebsd-11-stable/sys/dev/e1000/e1000_i210.c
/freebsd-11-stable/sys/dev/e1000/e1000_i210.h
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_mac.c
/freebsd-11-stable/sys/dev/e1000/e1000_mac.h
/freebsd-11-stable/sys/dev/e1000/e1000_manage.c
/freebsd-11-stable/sys/dev/e1000/e1000_manage.h
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.c
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.h
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.c
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.h
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.c
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.h
/freebsd-11-stable/sys/dev/e1000/e1000_phy.c
/freebsd-11-stable/sys/dev/e1000/e1000_phy.h
/freebsd-11-stable/sys/dev/e1000/e1000_regs.h
/freebsd-11-stable/sys/dev/e1000/e1000_vf.c
/freebsd-11-stable/sys/dev/e1000/e1000_vf.h
/freebsd-11-stable/sys/dev/e1000/if_em.c
/freebsd-11-stable/sys/dev/e1000/if_em.h
/freebsd-11-stable/sys/dev/ed/ax88x90reg.h
/freebsd-11-stable/sys/dev/ed/dl100xxreg.h
/freebsd-11-stable/sys/dev/ed/if_ed.c
/freebsd-11-stable/sys/dev/ed/if_ed_3c503.c
/freebsd-11-stable/sys/dev/ed/if_ed_hpp.c
/freebsd-11-stable/sys/dev/ed/if_ed_isa.c
/freebsd-11-stable/sys/dev/ed/if_ed_novell.c
/freebsd-11-stable/sys/dev/ed/if_ed_pccard.c
/freebsd-11-stable/sys/dev/ed/if_ed_pci.c
/freebsd-11-stable/sys/dev/ed/if_ed_rtl80x9.c
/freebsd-11-stable/sys/dev/ed/if_ed_sic.c
/freebsd-11-stable/sys/dev/ed/if_ed_wd80x3.c
/freebsd-11-stable/sys/dev/ed/if_edvar.h
/freebsd-11-stable/sys/dev/ed/rtl80x9reg.h
/freebsd-11-stable/sys/dev/ed/tc5299jreg.h
/freebsd-11-stable/sys/dev/ep/if_ep.c
/freebsd-11-stable/sys/dev/ep/if_ep_isa.c
/freebsd-11-stable/sys/dev/ep/if_ep_pccard.c
/freebsd-11-stable/sys/dev/ep/if_epreg.h
/freebsd-11-stable/sys/dev/ep/if_epvar.h
/freebsd-11-stable/sys/dev/esp/am53c974reg.h
/freebsd-11-stable/sys/dev/esp/esp_pci.c
/freebsd-11-stable/sys/dev/esp/esp_sbus.c
/freebsd-11-stable/sys/dev/esp/ncr53c9x.c
/freebsd-11-stable/sys/dev/esp/ncr53c9xreg.h
/freebsd-11-stable/sys/dev/esp/ncr53c9xvar.h
/freebsd-11-stable/sys/dev/et/if_et.c
/freebsd-11-stable/sys/dev/et/if_etreg.h
/freebsd-11-stable/sys/dev/et/if_etvar.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchreg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchvar.h
/freebsd-11-stable/sys/dev/etherswitch/etherswitch.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_reg.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_var.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.c
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.h
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rb.c
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rbvar.h
/freebsd-11-stable/sys/dev/etherswitch/ukswitch/ukswitch.c
/freebsd-11-stable/sys/dev/ex/if_ex.c
/freebsd-11-stable/sys/dev/ex/if_ex_isa.c
/freebsd-11-stable/sys/dev/ex/if_ex_pccard.c
/freebsd-11-stable/sys/dev/ex/if_exreg.h
/freebsd-11-stable/sys/dev/ex/if_exvar.h
/freebsd-11-stable/sys/dev/exca/exca.c
/freebsd-11-stable/sys/dev/exca/excareg.h
/freebsd-11-stable/sys/dev/exca/excavar.h
/freebsd-11-stable/sys/dev/fb/creator.c
/freebsd-11-stable/sys/dev/fb/creatorreg.h
/freebsd-11-stable/sys/dev/fb/fb.c
/freebsd-11-stable/sys/dev/fb/fbd.c
/freebsd-11-stable/sys/dev/fb/fbreg.h
/freebsd-11-stable/sys/dev/fb/gallant12x22.c
/freebsd-11-stable/sys/dev/fb/machfb.c
/freebsd-11-stable/sys/dev/fb/s3_pci.c
/freebsd-11-stable/sys/dev/fb/splash.c
/freebsd-11-stable/sys/dev/fb/splash_bmp.c
/freebsd-11-stable/sys/dev/fb/splash_pcx.c
/freebsd-11-stable/sys/dev/fb/splash_txt.c
/freebsd-11-stable/sys/dev/fb/splashreg.h
/freebsd-11-stable/sys/dev/fb/vesa.c
/freebsd-11-stable/sys/dev/fb/vesa.h
/freebsd-11-stable/sys/dev/fb/vga.c
/freebsd-11-stable/sys/dev/fb/vgareg.h
/freebsd-11-stable/sys/dev/fdc/fdc.c
/freebsd-11-stable/sys/dev/fdc/fdc_acpi.c
/freebsd-11-stable/sys/dev/fdc/fdc_isa.c
/freebsd-11-stable/sys/dev/fdc/fdc_pccard.c
/freebsd-11-stable/sys/dev/fdc/fdcvar.h
/freebsd-11-stable/sys/dev/fdt/fdt_common.c
/freebsd-11-stable/sys/dev/fdt/fdt_common.h
/freebsd-11-stable/sys/dev/fdt/fdt_powerpc.c
/freebsd-11-stable/sys/dev/fdt/fdt_slicer.c
/freebsd-11-stable/sys/dev/fdt/simplebus.c
/freebsd-11-stable/sys/dev/ffec/if_ffec.c
/freebsd-11-stable/sys/dev/ffec/if_ffecreg.h
/freebsd-11-stable/sys/dev/filemon/filemon.c
/freebsd-11-stable/sys/dev/filemon/filemon.h
/freebsd-11-stable/sys/dev/filemon/filemon_wrapper.c
/freebsd-11-stable/sys/dev/firewire/firewire.c
/freebsd-11-stable/sys/dev/firewire/firewire.h
/freebsd-11-stable/sys/dev/firewire/firewire_phy.h
/freebsd-11-stable/sys/dev/firewire/firewirereg.h
/freebsd-11-stable/sys/dev/firewire/fwcrom.c
/freebsd-11-stable/sys/dev/firewire/fwdev.c
/freebsd-11-stable/sys/dev/firewire/fwdma.c
/freebsd-11-stable/sys/dev/firewire/fwdma.h
/freebsd-11-stable/sys/dev/firewire/fwmem.c
/freebsd-11-stable/sys/dev/firewire/fwmem.h
/freebsd-11-stable/sys/dev/firewire/fwohci.c
/freebsd-11-stable/sys/dev/firewire/fwohci_pci.c
/freebsd-11-stable/sys/dev/firewire/fwohcireg.h
/freebsd-11-stable/sys/dev/firewire/fwohcivar.h
/freebsd-11-stable/sys/dev/firewire/fwphyreg.h
/freebsd-11-stable/sys/dev/firewire/iec13213.h
/freebsd-11-stable/sys/dev/firewire/iec68113.h
/freebsd-11-stable/sys/dev/firewire/if_fwe.c
/freebsd-11-stable/sys/dev/firewire/if_fwevar.h
/freebsd-11-stable/sys/dev/firewire/if_fwip.c
/freebsd-11-stable/sys/dev/firewire/if_fwipvar.h
/freebsd-11-stable/sys/dev/firewire/sbp.c
/freebsd-11-stable/sys/dev/firewire/sbp.h
/freebsd-11-stable/sys/dev/firewire/sbp_targ.c
/freebsd-11-stable/sys/dev/flash/at45d.c
/freebsd-11-stable/sys/dev/flash/mx25l.c
/freebsd-11-stable/sys/dev/flash/mx25lreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxp.c
/freebsd-11-stable/sys/dev/fxp/if_fxpreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxpvar.h
/freebsd-11-stable/sys/dev/fxp/inphy.c
/freebsd-11-stable/sys/dev/fxp/inphyreg.h
/freebsd-11-stable/sys/dev/fxp/rcvbundl.h
/freebsd-11-stable/sys/dev/gem/if_gem.c
/freebsd-11-stable/sys/dev/gem/if_gem_pci.c
/freebsd-11-stable/sys/dev/gem/if_gem_sbus.c
/freebsd-11-stable/sys/dev/gem/if_gemreg.h
/freebsd-11-stable/sys/dev/gem/if_gemvar.h
/freebsd-11-stable/sys/dev/glxiic/glxiic.c
/freebsd-11-stable/sys/dev/glxsb/glxsb.h
/freebsd-11-stable/sys/dev/glxsb/glxsb_hash.c
/freebsd-11-stable/sys/dev/gpio/gpiobus.c
/freebsd-11-stable/sys/dev/gpio/gpiobusvar.h
/freebsd-11-stable/sys/dev/gpio/gpioc.c
/freebsd-11-stable/sys/dev/gpio/gpioiic.c
/freebsd-11-stable/sys/dev/gpio/gpioled.c
/freebsd-11-stable/sys/dev/gpio/ofw_gpiobus.c
/freebsd-11-stable/sys/dev/gxemul/cons/gxemul_cons.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_disk.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_diskreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/gxreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/if_gx.c
/freebsd-11-stable/sys/dev/hifn/hifn7751.c
/freebsd-11-stable/sys/dev/hifn/hifn7751reg.h
/freebsd-11-stable/sys/dev/hifn/hifn7751var.h
/freebsd-11-stable/sys/dev/hme/if_hme.c
/freebsd-11-stable/sys/dev/hme/if_hme_pci.c
/freebsd-11-stable/sys/dev/hme/if_hme_sbus.c
/freebsd-11-stable/sys/dev/hme/if_hmereg.h
/freebsd-11-stable/sys/dev/hme/if_hmevar.h
/freebsd-11-stable/sys/dev/hpt27xx/array.h
/freebsd-11-stable/sys/dev/hpt27xx/him.h
/freebsd-11-stable/sys/dev/hpt27xx/himfuncs.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_os_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_osm_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hptintf.h
/freebsd-11-stable/sys/dev/hpt27xx/ldm.h
/freebsd-11-stable/sys/dev/hpt27xx/list.h
/freebsd-11-stable/sys/dev/hpt27xx/os_bsd.h
/freebsd-11-stable/sys/dev/hpt27xx/osm.h
/freebsd-11-stable/sys/dev/hpt27xx/wj.h
/freebsd-11-stable/sys/dev/hptiop/hptiop.c
/freebsd-11-stable/sys/dev/hptiop/hptiop.h
/freebsd-11-stable/sys/dev/hptmv/access601.h
/freebsd-11-stable/sys/dev/hptmv/array.h
/freebsd-11-stable/sys/dev/hptmv/atapi.h
/freebsd-11-stable/sys/dev/hptmv/command.h
/freebsd-11-stable/sys/dev/hptmv/entry.c
/freebsd-11-stable/sys/dev/hptmv/global.h
/freebsd-11-stable/sys/dev/hptmv/gui_lib.c
/freebsd-11-stable/sys/dev/hptmv/hptintf.h
/freebsd-11-stable/sys/dev/hptmv/hptproc.c
/freebsd-11-stable/sys/dev/hptmv/ioctl.c
/freebsd-11-stable/sys/dev/hptmv/mv.c
/freebsd-11-stable/sys/dev/hptmv/mvOs.h
/freebsd-11-stable/sys/dev/hptmv/mvSata.h
/freebsd-11-stable/sys/dev/hptmv/mvStorageDev.h
/freebsd-11-stable/sys/dev/hptmv/osbsd.h
/freebsd-11-stable/sys/dev/hptmv/raid5n.h
/freebsd-11-stable/sys/dev/hptmv/vdevice.h
/freebsd-11-stable/sys/dev/hptnr/array.h
/freebsd-11-stable/sys/dev/hptnr/him.h
/freebsd-11-stable/sys/dev/hptnr/himfuncs.h
/freebsd-11-stable/sys/dev/hptnr/hptintf.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_os_bsd.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptnr/ldm.h
/freebsd-11-stable/sys/dev/hptnr/list.h
/freebsd-11-stable/sys/dev/hptnr/os_bsd.h
/freebsd-11-stable/sys/dev/hptnr/osm.h
/freebsd-11-stable/sys/dev/hptnr/wj.h
/freebsd-11-stable/sys/dev/hptrr/array.h
/freebsd-11-stable/sys/dev/hptrr/him.h
/freebsd-11-stable/sys/dev/hptrr/himfuncs.h
/freebsd-11-stable/sys/dev/hptrr/hptintf.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_os_bsd.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptrr/ldm.h
/freebsd-11-stable/sys/dev/hptrr/list.h
/freebsd-11-stable/sys/dev/hptrr/os_bsd.h
/freebsd-11-stable/sys/dev/hptrr/osm.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_arm.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_intel.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_logging.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips24k.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mod.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mpc7xxx.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_octeon.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppc970.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_sparc64.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_x86.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.h
/freebsd-11-stable/sys/dev/hwpmc/pmc_events.h
/freebsd-11-stable/sys/dev/hyperv/include/hyperv.h
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_vstorage.h
/freebsd-11-stable/sys/dev/hyperv/utilities/hv_kvp.h
/freebsd-11-stable/sys/dev/ic/cd1400.h
/freebsd-11-stable/sys/dev/ic/cd180.h
/freebsd-11-stable/sys/dev/ic/esp.h
/freebsd-11-stable/sys/dev/ic/i8253reg.h
/freebsd-11-stable/sys/dev/ic/i82586.h
/freebsd-11-stable/sys/dev/ic/i8259.h
/freebsd-11-stable/sys/dev/ic/nec765.h
/freebsd-11-stable/sys/dev/ic/ns16550.h
/freebsd-11-stable/sys/dev/ic/quicc.h
/freebsd-11-stable/sys/dev/ic/sab82532.h
/freebsd-11-stable/sys/dev/ic/via6522reg.h
/freebsd-11-stable/sys/dev/ic/z8530.h
/freebsd-11-stable/sys/dev/ichwd/ichwd.c
/freebsd-11-stable/sys/dev/ichwd/ichwd.h
/freebsd-11-stable/sys/dev/ida/ida.c
/freebsd-11-stable/sys/dev/ida/ida_disk.c
/freebsd-11-stable/sys/dev/ida/ida_pci.c
/freebsd-11-stable/sys/dev/ida/idareg.h
/freebsd-11-stable/sys/dev/ida/idavar.h
/freebsd-11-stable/sys/dev/if_ndis/if_ndis.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pccard.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pci.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_usb.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndisvar.h
/freebsd-11-stable/sys/dev/iicbus/ad7417.c
/freebsd-11-stable/sys/dev/iicbus/ad7418.c
/freebsd-11-stable/sys/dev/iicbus/adt746x.c
/freebsd-11-stable/sys/dev/iicbus/ds1631.c
/freebsd-11-stable/sys/dev/iicbus/ds1672.c
/freebsd-11-stable/sys/dev/iicbus/ds1775.c
/freebsd-11-stable/sys/dev/iicbus/icee.c
/freebsd-11-stable/sys/dev/iicbus/if_ic.c
/freebsd-11-stable/sys/dev/iicbus/iic.c
/freebsd-11-stable/sys/dev/iicbus/iic.h
/freebsd-11-stable/sys/dev/iicbus/iicbb.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.h
/freebsd-11-stable/sys/dev/iicbus/iicoc.c
/freebsd-11-stable/sys/dev/iicbus/iicoc.h
/freebsd-11-stable/sys/dev/iicbus/iiconf.c
/freebsd-11-stable/sys/dev/iicbus/iiconf.h
/freebsd-11-stable/sys/dev/iicbus/iicsmb.c
/freebsd-11-stable/sys/dev/iicbus/max6690.c
/freebsd-11-stable/sys/dev/iicbus/s35390a.c
/freebsd-11-stable/sys/dev/iir/iir.c
/freebsd-11-stable/sys/dev/iir/iir.h
/freebsd-11-stable/sys/dev/iir/iir_ctrl.c
/freebsd-11-stable/sys/dev/iir/iir_pci.c
/freebsd-11-stable/sys/dev/io/iodev.c
/freebsd-11-stable/sys/dev/io/iodev.h
/freebsd-11-stable/sys/dev/ipmi/ipmi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_acpi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_isa.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_kcs.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_linux.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_pci.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbios.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbus.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smic.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_ssif.c
/freebsd-11-stable/sys/dev/ipmi/ipmivars.h
/freebsd-11-stable/sys/dev/ips/ips.c
/freebsd-11-stable/sys/dev/ips/ips.h
/freebsd-11-stable/sys/dev/ips/ips_commands.c
/freebsd-11-stable/sys/dev/ips/ips_disk.c
/freebsd-11-stable/sys/dev/ips/ips_disk.h
/freebsd-11-stable/sys/dev/ips/ips_ioctl.c
/freebsd-11-stable/sys/dev/ips/ips_ioctl.h
/freebsd-11-stable/sys/dev/ips/ips_pci.c
/freebsd-11-stable/sys/dev/ips/ipsreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipw.c
/freebsd-11-stable/sys/dev/ipw/if_ipwreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipwvar.h
/freebsd-11-stable/sys/dev/isci/environment.h
/freebsd-11-stable/sys/dev/isci/isci.c
/freebsd-11-stable/sys/dev/isci/isci.h
/freebsd-11-stable/sys/dev/isci/isci_controller.c
/freebsd-11-stable/sys/dev/isci/isci_domain.c
/freebsd-11-stable/sys/dev/isci/isci_interrupt.c
/freebsd-11-stable/sys/dev/isci/isci_io_request.c
/freebsd-11-stable/sys/dev/isci/isci_logger.c
/freebsd-11-stable/sys/dev/isci/isci_oem_parameters.c
/freebsd-11-stable/sys/dev/isci/isci_remote_device.c
/freebsd-11-stable/sys/dev/isci/isci_sysctl.c
/freebsd-11-stable/sys/dev/isci/isci_task_request.c
/freebsd-11-stable/sys/dev/isci/isci_timer.c
/freebsd-11-stable/sys/dev/isci/scil/intel_ata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_pci.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sas.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sat.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_scsi.h
/freebsd-11-stable/sys/dev/isci/scil/sati.c
/freebsd-11-stable/sys/dev/isci/scil/sati.h
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.c
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.h
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.c
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.h
/freebsd-11-stable/sys/dev/isci/scil/sati_callbacks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_design.h
/freebsd-11-stable/sys/dev/isci/scil/sati_device.c
/freebsd-11-stable/sys/dev/isci/scil/sati_device.h
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.c
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.h
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.c
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.h
/freebsd-11-stable/sys/dev/isci/scil/sati_move.c
/freebsd-11-stable/sys/dev/isci/scil/sati_move.h
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.c
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.h
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.c
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.c
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.h
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.c
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.h
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.c
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.h
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.c
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.h
/freebsd-11-stable/sys/dev/isci/scil/sati_translator_sequence.h
/freebsd-11-stable/sys/dev/isci/scil/sati_types.h
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.c
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.h
/freebsd-11-stable/sys/dev/isci/scil/sati_util.c
/freebsd-11-stable/sys/dev/isci/scil/sati_util.h
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.h
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller_constants.h
/freebsd-11-stable/sys/dev/isci/scil/sci_fast_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list_decorator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_overview.h
/freebsd-11-stable/sys/dev/isci/scil/sci_pool.h
/freebsd-11-stable/sys/dev/isci/scil/sci_simple_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_status.h
/freebsd-11-stable/sys/dev/isci/scil/sci_types.h
/freebsd-11-stable/sys/dev/isci/scil/sci_util.c
/freebsd-11-stable/sys/dev/isci/scil/sci_util.h
/freebsd-11-stable/sys/dev/isci/scil/scic_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scic_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scic_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_sgpio.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_ssp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_pio_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sgpio.h
/freebsd-11-stable/sys/dev/isci/scil/scic_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scif_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scif_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scif_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_design.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_sati_binding.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_timer.c
/freebsd-11-stable/sys/dev/isci/scil/scif_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scu_bios_definitions.h
/freebsd-11-stable/sys/dev/isci/scil/scu_completion_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scu_event_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scu_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_task_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_unsolicited_frame.h
/freebsd-11-stable/sys/dev/isci/scil/scu_viit_data.h
/freebsd-11-stable/sys/dev/isci/types.h
/freebsd-11-stable/sys/dev/iscsi/icl.c
/freebsd-11-stable/sys/dev/iscsi/icl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi.c
/freebsd-11-stable/sys/dev/iscsi/iscsi.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_ioctl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_proto.h
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_cam.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_sm.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_soc.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.h
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsivar.h
/freebsd-11-stable/sys/dev/isp/isp_freebsd.c
/freebsd-11-stable/sys/dev/isp/isp_freebsd.h
/freebsd-11-stable/sys/dev/isp/isp_ioctl.h
/freebsd-11-stable/sys/dev/isp/isp_library.c
/freebsd-11-stable/sys/dev/isp/isp_library.h
/freebsd-11-stable/sys/dev/isp/isp_sbus.c
/freebsd-11-stable/sys/dev/isp/isp_stds.h
/freebsd-11-stable/sys/dev/isp/isp_target.c
/freebsd-11-stable/sys/dev/isp/isp_target.h
/freebsd-11-stable/sys/dev/isp/ispreg.h
/freebsd-11-stable/sys/dev/ispfw/asm_1000.h
/freebsd-11-stable/sys/dev/ispfw/asm_1040.h
/freebsd-11-stable/sys/dev/ispfw/asm_1080.h
/freebsd-11-stable/sys/dev/ispfw/asm_12160.h
/freebsd-11-stable/sys/dev/ispfw/asm_2100.h
/freebsd-11-stable/sys/dev/ispfw/asm_2200.h
/freebsd-11-stable/sys/dev/ispfw/asm_2300.h
/freebsd-11-stable/sys/dev/ispfw/asm_2322.h
/freebsd-11-stable/sys/dev/ispfw/asm_2400.h
/freebsd-11-stable/sys/dev/ispfw/asm_2500.h
/freebsd-11-stable/sys/dev/ispfw/ispfw.c
/freebsd-11-stable/sys/dev/iwi/if_iwi.c
/freebsd-11-stable/sys/dev/iwi/if_iwireg.h
/freebsd-11-stable/sys/dev/iwi/if_iwivar.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.c
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb_osdep.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ids.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_osdep.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_type.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.h
/freebsd-11-stable/sys/dev/jme/if_jme.c
/freebsd-11-stable/sys/dev/jme/if_jmereg.h
/freebsd-11-stable/sys/dev/jme/if_jmevar.h
/freebsd-11-stable/sys/dev/joy/joy.c
/freebsd-11-stable/sys/dev/joy/joy_isa.c
/freebsd-11-stable/sys/dev/joy/joyvar.h
/freebsd-11-stable/sys/dev/kbd/kbd.c
/freebsd-11-stable/sys/dev/kbd/kbdreg.h
/freebsd-11-stable/sys/dev/kbd/kbdtables.h
/freebsd-11-stable/sys/dev/kbdmux/kbdmux.c
/freebsd-11-stable/sys/dev/ksyms/ksyms.c
/freebsd-11-stable/sys/dev/le/am7990.c
/freebsd-11-stable/sys/dev/le/am79900.c
/freebsd-11-stable/sys/dev/le/am79900reg.h
/freebsd-11-stable/sys/dev/le/am79900var.h
/freebsd-11-stable/sys/dev/le/am7990reg.h
/freebsd-11-stable/sys/dev/le/am7990var.h
/freebsd-11-stable/sys/dev/le/if_le_isa.c
/freebsd-11-stable/sys/dev/le/if_le_lebuffer.c
/freebsd-11-stable/sys/dev/le/if_le_ledma.c
/freebsd-11-stable/sys/dev/le/if_le_pci.c
/freebsd-11-stable/sys/dev/le/lance.c
/freebsd-11-stable/sys/dev/le/lancereg.h
/freebsd-11-stable/sys/dev/le/lancevar.h
/freebsd-11-stable/sys/dev/le/lebuffer_sbus.c
/freebsd-11-stable/sys/dev/lge/if_lge.c
/freebsd-11-stable/sys/dev/lge/if_lgereg.h
/freebsd-11-stable/sys/dev/lmc/if_lmc.c
/freebsd-11-stable/sys/dev/lmc/if_lmc.h
/freebsd-11-stable/sys/dev/malo/if_malo.c
/freebsd-11-stable/sys/dev/malo/if_malo.h
/freebsd-11-stable/sys/dev/malo/if_malo_pci.c
/freebsd-11-stable/sys/dev/malo/if_malohal.c
/freebsd-11-stable/sys/dev/malo/if_malohal.h
/freebsd-11-stable/sys/dev/malo/if_maloioctl.h
/freebsd-11-stable/sys/dev/mc146818/mc146818.c
/freebsd-11-stable/sys/dev/mc146818/mc146818var.h
/freebsd-11-stable/sys/dev/md/md.c
/freebsd-11-stable/sys/dev/mem/memdev.c
/freebsd-11-stable/sys/dev/mem/memutil.c
/freebsd-11-stable/sys/dev/mfi/mfi.c
/freebsd-11-stable/sys/dev/mfi/mfi_cam.c
/freebsd-11-stable/sys/dev/mfi/mfi_debug.c
/freebsd-11-stable/sys/dev/mfi/mfi_disk.c
/freebsd-11-stable/sys/dev/mfi/mfi_ioctl.h
/freebsd-11-stable/sys/dev/mfi/mfi_linux.c
/freebsd-11-stable/sys/dev/mfi/mfi_pci.c
/freebsd-11-stable/sys/dev/mfi/mfi_syspd.c
/freebsd-11-stable/sys/dev/mfi/mfi_tbolt.c
/freebsd-11-stable/sys/dev/mfi/mfireg.h
/freebsd-11-stable/sys/dev/mfi/mfivar.h
/freebsd-11-stable/sys/dev/mge/if_mge.c
/freebsd-11-stable/sys/dev/mge/if_mgevar.h
/freebsd-11-stable/sys/dev/mii/acphy.c
/freebsd-11-stable/sys/dev/mii/acphyreg.h
/freebsd-11-stable/sys/dev/mii/amphy.c
/freebsd-11-stable/sys/dev/mii/amphyreg.h
/freebsd-11-stable/sys/dev/mii/atphy.c
/freebsd-11-stable/sys/dev/mii/atphyreg.h
/freebsd-11-stable/sys/dev/mii/axphy.c
/freebsd-11-stable/sys/dev/mii/bmtphy.c
/freebsd-11-stable/sys/dev/mii/bmtphyreg.h
/freebsd-11-stable/sys/dev/mii/brgphy.c
/freebsd-11-stable/sys/dev/mii/brgphyreg.h
/freebsd-11-stable/sys/dev/mii/ciphy.c
/freebsd-11-stable/sys/dev/mii/ciphyreg.h
/freebsd-11-stable/sys/dev/mii/e1000phy.c
/freebsd-11-stable/sys/dev/mii/e1000phyreg.h
/freebsd-11-stable/sys/dev/mii/gentbi.c
/freebsd-11-stable/sys/dev/mii/icsphy.c
/freebsd-11-stable/sys/dev/mii/icsphyreg.h
/freebsd-11-stable/sys/dev/mii/ip1000phy.c
/freebsd-11-stable/sys/dev/mii/ip1000phyreg.h
/freebsd-11-stable/sys/dev/mii/jmphy.c
/freebsd-11-stable/sys/dev/mii/jmphyreg.h
/freebsd-11-stable/sys/dev/mii/lxtphy.c
/freebsd-11-stable/sys/dev/mii/lxtphyreg.h
/freebsd-11-stable/sys/dev/mii/mii.c
/freebsd-11-stable/sys/dev/mii/mii.h
/freebsd-11-stable/sys/dev/mii/mii_bitbang.c
/freebsd-11-stable/sys/dev/mii/mii_bitbang.h
/freebsd-11-stable/sys/dev/mii/mii_physubr.c
/freebsd-11-stable/sys/dev/mii/miivar.h
/freebsd-11-stable/sys/dev/mii/mlphy.c
/freebsd-11-stable/sys/dev/mii/nsgphy.c
/freebsd-11-stable/sys/dev/mii/nsgphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphy.c
/freebsd-11-stable/sys/dev/mii/nsphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphyter.c
/freebsd-11-stable/sys/dev/mii/nsphyterreg.h
/freebsd-11-stable/sys/dev/mii/pnaphy.c
/freebsd-11-stable/sys/dev/mii/qsphy.c
/freebsd-11-stable/sys/dev/mii/qsphyreg.h
/freebsd-11-stable/sys/dev/mii/rdcphy.c
/freebsd-11-stable/sys/dev/mii/rdcphyreg.h
/freebsd-11-stable/sys/dev/mii/rgephy.c
/freebsd-11-stable/sys/dev/mii/rgephyreg.h
/freebsd-11-stable/sys/dev/mii/rlphy.c
/freebsd-11-stable/sys/dev/mii/rlswitch.c
/freebsd-11-stable/sys/dev/mii/smcphy.c
/freebsd-11-stable/sys/dev/mii/smscphy.c
/freebsd-11-stable/sys/dev/mii/tdkphy.c
/freebsd-11-stable/sys/dev/mii/tdkphyreg.h
/freebsd-11-stable/sys/dev/mii/tlphy.c
/freebsd-11-stable/sys/dev/mii/tlphyreg.h
/freebsd-11-stable/sys/dev/mii/truephy.c
/freebsd-11-stable/sys/dev/mii/truephyreg.h
/freebsd-11-stable/sys/dev/mii/ukphy.c
/freebsd-11-stable/sys/dev/mii/ukphy_subr.c
/freebsd-11-stable/sys/dev/mii/xmphy.c
/freebsd-11-stable/sys/dev/mii/xmphyreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txx.c
/freebsd-11-stable/sys/dev/mk48txx/mk48txxreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txxvar.h
/freebsd-11-stable/sys/dev/mlx/mlx.c
/freebsd-11-stable/sys/dev/mlx/mlx_disk.c
/freebsd-11-stable/sys/dev/mlx/mlx_pci.c
/freebsd-11-stable/sys/dev/mlx/mlxio.h
/freebsd-11-stable/sys/dev/mlx/mlxreg.h
/freebsd-11-stable/sys/dev/mlx/mlxvar.h
/freebsd-11-stable/sys/dev/mly/mly.c
/freebsd-11-stable/sys/dev/mly/mly_tables.h
/freebsd-11-stable/sys/dev/mly/mlyio.h
/freebsd-11-stable/sys/dev/mly/mlyreg.h
/freebsd-11-stable/sys/dev/mly/mlyvar.h
/freebsd-11-stable/sys/dev/mmc/bridge.h
/freebsd-11-stable/sys/dev/mmc/mmc.c
/freebsd-11-stable/sys/dev/mmc/mmcbrvar.h
/freebsd-11-stable/sys/dev/mmc/mmcreg.h
/freebsd-11-stable/sys/dev/mmc/mmcsd.c
/freebsd-11-stable/sys/dev/mmc/mmcvar.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_cnfg.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_hbd.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_init.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ioc.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ra.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_raid.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_sas.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_targ.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_tool.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_type.h
/freebsd-11-stable/sys/dev/mps/mps.c
/freebsd-11-stable/sys/dev/mps/mps_config.c
/freebsd-11-stable/sys/dev/mps/mps_ioctl.h
/freebsd-11-stable/sys/dev/mps/mps_mapping.c
/freebsd-11-stable/sys/dev/mps/mps_mapping.h
/freebsd-11-stable/sys/dev/mps/mps_pci.c
/freebsd-11-stable/sys/dev/mps/mps_sas.c
/freebsd-11-stable/sys/dev/mps/mps_sas.h
/freebsd-11-stable/sys/dev/mps/mps_sas_lsi.c
/freebsd-11-stable/sys/dev/mps/mps_table.c
/freebsd-11-stable/sys/dev/mps/mps_table.h
/freebsd-11-stable/sys/dev/mps/mps_user.c
/freebsd-11-stable/sys/dev/mps/mpsvar.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_cnfg.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_init.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_ioc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_lan.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_raid.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_targ.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_tool.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_type.h
/freebsd-11-stable/sys/dev/mpt/mpt.c
/freebsd-11-stable/sys/dev/mpt/mpt.h
/freebsd-11-stable/sys/dev/mpt/mpt_cam.c
/freebsd-11-stable/sys/dev/mpt/mpt_cam.h
/freebsd-11-stable/sys/dev/mpt/mpt_debug.c
/freebsd-11-stable/sys/dev/mpt/mpt_pci.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.h
/freebsd-11-stable/sys/dev/mpt/mpt_reg.h
/freebsd-11-stable/sys/dev/mpt/mpt_user.c
/freebsd-11-stable/sys/dev/mse/mse.c
/freebsd-11-stable/sys/dev/mse/mse_isa.c
/freebsd-11-stable/sys/dev/mse/msevar.h
/freebsd-11-stable/sys/dev/msk/if_msk.c
/freebsd-11-stable/sys/dev/msk/if_mskreg.h
/freebsd-11-stable/sys/dev/mvs/mvs.c
/freebsd-11-stable/sys/dev/mvs/mvs.h
/freebsd-11-stable/sys/dev/mvs/mvs_pci.c
/freebsd-11-stable/sys/dev/mvs/mvs_soc.c
/freebsd-11-stable/sys/dev/mwl/if_mwl.c
/freebsd-11-stable/sys/dev/mwl/if_mwl_pci.c
/freebsd-11-stable/sys/dev/mwl/if_mwlioctl.h
/freebsd-11-stable/sys/dev/mwl/if_mwlvar.h
/freebsd-11-stable/sys/dev/mwl/mwldiag.h
/freebsd-11-stable/sys/dev/mwl/mwlhal.c
/freebsd-11-stable/sys/dev/mwl/mwlhal.h
/freebsd-11-stable/sys/dev/mwl/mwlreg.h
/freebsd-11-stable/sys/dev/mxge/eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/ethp_z8e.h
/freebsd-11-stable/sys/dev/mxge/if_mxge.c
/freebsd-11-stable/sys/dev/mxge/if_mxge_var.h
/freebsd-11-stable/sys/dev/mxge/mcp_gen_header.h
/freebsd-11-stable/sys/dev/mxge/mxge_mcp.h
/freebsd-11-stable/sys/dev/mxge/rss_eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/rss_ethp_z8e.h
/freebsd-11-stable/sys/dev/my/if_my.c
/freebsd-11-stable/sys/dev/my/if_myreg.h
/freebsd-11-stable/sys/dev/nand/nand.c
/freebsd-11-stable/sys/dev/nand/nand.h
/freebsd-11-stable/sys/dev/nand/nand_bbt.c
/freebsd-11-stable/sys/dev/nand/nand_cdev.c
/freebsd-11-stable/sys/dev/nand/nand_dev.h
/freebsd-11-stable/sys/dev/nand/nand_ecc_pos.h
/freebsd-11-stable/sys/dev/nand/nand_generic.c
/freebsd-11-stable/sys/dev/nand/nand_geom.c
/freebsd-11-stable/sys/dev/nand/nand_id.c
/freebsd-11-stable/sys/dev/nand/nandbus.c
/freebsd-11-stable/sys/dev/nand/nandbus.h
/freebsd-11-stable/sys/dev/nand/nandsim.c
/freebsd-11-stable/sys/dev/nand/nandsim.h
/freebsd-11-stable/sys/dev/nand/nandsim_chip.c
/freebsd-11-stable/sys/dev/nand/nandsim_chip.h
/freebsd-11-stable/sys/dev/nand/nandsim_ctrl.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.h
/freebsd-11-stable/sys/dev/nand/nandsim_swap.c
/freebsd-11-stable/sys/dev/nand/nandsim_swap.h
/freebsd-11-stable/sys/dev/nand/nfc_at91.c
/freebsd-11-stable/sys/dev/nand/nfc_at91.h
/freebsd-11-stable/sys/dev/nand/nfc_fsl.c
/freebsd-11-stable/sys/dev/nand/nfc_fsl.h
/freebsd-11-stable/sys/dev/nand/nfc_mv.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500_pccard.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500hw.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500hwtab.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500reg.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500var.h
/freebsd-11-stable/sys/dev/netmap/if_em_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_igb_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_lem_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_re_netmap.h
/freebsd-11-stable/sys/dev/netmap/ixgbe_netmap.h
/freebsd-11-stable/sys/dev/netmap/netmap.c
/freebsd-11-stable/sys/dev/netmap/netmap_freebsd.c
/freebsd-11-stable/sys/dev/netmap/netmap_generic.c
/freebsd-11-stable/sys/dev/netmap/netmap_kern.h
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.c
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.h
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.c
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.h
/freebsd-11-stable/sys/dev/netmap/netmap_offloadings.c
/freebsd-11-stable/sys/dev/netmap/netmap_pipe.c
/freebsd-11-stable/sys/dev/netmap/netmap_vale.c
/freebsd-11-stable/sys/dev/nge/if_nge.c
/freebsd-11-stable/sys/dev/nge/if_ngereg.h
/freebsd-11-stable/sys/dev/nmdm/nmdm.c
/freebsd-11-stable/sys/dev/nsp/nsp.c
/freebsd-11-stable/sys/dev/nsp/nsp_pccard.c
/freebsd-11-stable/sys/dev/nsp/nspreg.h
/freebsd-11-stable/sys/dev/nsp/nspvar.h
/freebsd-11-stable/sys/dev/null/null.c
/freebsd-11-stable/sys/dev/nvd/nvd.c
/freebsd-11-stable/sys/dev/nvme/nvme.c
/freebsd-11-stable/sys/dev/nvme/nvme.h
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr.c
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_private.h
/freebsd-11-stable/sys/dev/nvme/nvme_qpair.c
/freebsd-11-stable/sys/dev/nvme/nvme_sysctl.c
/freebsd-11-stable/sys/dev/nvme/nvme_test.c
/freebsd-11-stable/sys/dev/nvme/nvme_util.c
/freebsd-11-stable/sys/dev/nvram/nvram.c
/freebsd-11-stable/sys/dev/nvram2env/nvram2env.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.h
/freebsd-11-stable/sys/dev/nxge/include/version.h
/freebsd-11-stable/sys/dev/nxge/include/xge-debug.h
/freebsd-11-stable/sys/dev/nxge/include/xge-defs.h
/freebsd-11-stable/sys/dev/nxge/include/xge-list.h
/freebsd-11-stable/sys/dev/nxge/include/xge-os-pal.h
/freebsd-11-stable/sys/dev/nxge/include/xge-queue.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-channel.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-config.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-device.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-driver.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-event.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-fifo.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmt.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mm.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-regs.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-ring.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-stats.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-types.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal.h
/freebsd-11-stable/sys/dev/nxge/xge-osdep.h
/freebsd-11-stable/sys/dev/nxge/xgehal/xge-queue.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-config.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-driver.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmt.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mm.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-stats.c
/freebsd-11-stable/sys/dev/nxge/xgell-version.h
/freebsd-11-stable/sys/dev/oce/oce_hw.c
/freebsd-11-stable/sys/dev/oce/oce_hw.h
/freebsd-11-stable/sys/dev/oce/oce_if.c
/freebsd-11-stable/sys/dev/oce/oce_if.h
/freebsd-11-stable/sys/dev/oce/oce_mbox.c
/freebsd-11-stable/sys/dev/oce/oce_queue.c
/freebsd-11-stable/sys/dev/oce/oce_sysctl.c
/freebsd-11-stable/sys/dev/oce/oce_util.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus.h
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.h
/freebsd-11-stable/sys/dev/ofw/ofw_console.c
/freebsd-11-stable/sys/dev/ofw/ofw_disk.c
/freebsd-11-stable/sys/dev/ofw/ofw_fdt.c
/freebsd-11-stable/sys/dev/ofw/ofw_pci.h
/freebsd-11-stable/sys/dev/ofw/ofw_standard.c
/freebsd-11-stable/sys/dev/ofw/ofwvar.h
/freebsd-11-stable/sys/dev/ofw/openfirm.c
/freebsd-11-stable/sys/dev/ofw/openfirm.h
/freebsd-11-stable/sys/dev/ofw/openfirmio.c
/freebsd-11-stable/sys/dev/ofw/openfirmio.h
/freebsd-11-stable/sys/dev/ofw/openpromio.c
/freebsd-11-stable/sys/dev/ofw/openpromio.h
/freebsd-11-stable/sys/dev/pbio/pbio.c
/freebsd-11-stable/sys/dev/pbio/pbioio.h
/freebsd-11-stable/sys/dev/pccard/pccard.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.h
/freebsd-11-stable/sys/dev/pccard/pccard_cis_quirks.c
/freebsd-11-stable/sys/dev/pccard/pccard_device.c
/freebsd-11-stable/sys/dev/pccard/pccardreg.h
/freebsd-11-stable/sys/dev/pccard/pccardvar.h
/freebsd-11-stable/sys/dev/pccard/pccardvarp.h
/freebsd-11-stable/sys/dev/pccbb/pccbb.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_isa.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_pci.c
/freebsd-11-stable/sys/dev/pccbb/pccbbdevid.h
/freebsd-11-stable/sys/dev/pccbb/pccbbreg.h
/freebsd-11-stable/sys/dev/pccbb/pccbbvar.h
/freebsd-11-stable/sys/dev/pcf/envctrl.c
/freebsd-11-stable/sys/dev/pcf/pcf.c
/freebsd-11-stable/sys/dev/pcf/pcf_ebus.c
/freebsd-11-stable/sys/dev/pcf/pcf_isa.c
/freebsd-11-stable/sys/dev/pcf/pcfvar.h
/freebsd-11-stable/sys/dev/pci/fixup_pci.c
/freebsd-11-stable/sys/dev/pci/hostb_pci.c
/freebsd-11-stable/sys/dev/pci/ignore_pci.c
/freebsd-11-stable/sys/dev/pci/isa_pci.c
/freebsd-11-stable/sys/dev/pci/pci.c
/freebsd-11-stable/sys/dev/pci/pci_pci.c
/freebsd-11-stable/sys/dev/pci/pci_private.h
/freebsd-11-stable/sys/dev/pci/pci_subr.c
/freebsd-11-stable/sys/dev/pci/pci_user.c
/freebsd-11-stable/sys/dev/pci/pcib_private.h
/freebsd-11-stable/sys/dev/pci/pcireg.h
/freebsd-11-stable/sys/dev/pci/pcivar.h
/freebsd-11-stable/sys/dev/pci/vga_pci.c
/freebsd-11-stable/sys/dev/pcn/if_pcn.c
/freebsd-11-stable/sys/dev/pcn/if_pcnreg.h
/freebsd-11-stable/sys/dev/pdq/if_fpa.c
/freebsd-11-stable/sys/dev/pdq/pdq.c
/freebsd-11-stable/sys/dev/pdq/pdq_freebsd.h
/freebsd-11-stable/sys/dev/pdq/pdq_ifsubr.c
/freebsd-11-stable/sys/dev/pdq/pdqreg.h
/freebsd-11-stable/sys/dev/pdq/pdqvar.h
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvram.c
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvramvar.h
/freebsd-11-stable/sys/dev/ppbus/if_plip.c
/freebsd-11-stable/sys/dev/ppbus/immio.c
/freebsd-11-stable/sys/dev/ppbus/lpbb.c
/freebsd-11-stable/sys/dev/ppbus/lpt.c
/freebsd-11-stable/sys/dev/ppbus/lpt.h
/freebsd-11-stable/sys/dev/ppbus/pcfclock.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.h
/freebsd-11-stable/sys/dev/ppbus/ppb_base.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.h
/freebsd-11-stable/sys/dev/ppbus/ppbconf.c
/freebsd-11-stable/sys/dev/ppbus/ppbconf.h
/freebsd-11-stable/sys/dev/ppbus/ppbio.h
/freebsd-11-stable/sys/dev/ppbus/ppi.c
/freebsd-11-stable/sys/dev/ppbus/ppi.h
/freebsd-11-stable/sys/dev/ppbus/vpo.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.h
/freebsd-11-stable/sys/dev/ppc/ppc.c
/freebsd-11-stable/sys/dev/ppc/ppc_acpi.c
/freebsd-11-stable/sys/dev/ppc/ppc_isa.c
/freebsd-11-stable/sys/dev/ppc/ppc_pci.c
/freebsd-11-stable/sys/dev/ppc/ppc_puc.c
/freebsd-11-stable/sys/dev/ppc/ppcreg.h
/freebsd-11-stable/sys/dev/ppc/ppcvar.h
/freebsd-11-stable/sys/dev/pst/pst-iop.c
/freebsd-11-stable/sys/dev/pst/pst-iop.h
/freebsd-11-stable/sys/dev/pst/pst-pci.c
/freebsd-11-stable/sys/dev/pst/pst-raid.c
/freebsd-11-stable/sys/dev/pty/pty.c
/freebsd-11-stable/sys/dev/puc/puc.c
/freebsd-11-stable/sys/dev/puc/puc_bfe.h
/freebsd-11-stable/sys/dev/puc/puc_bus.h
/freebsd-11-stable/sys/dev/puc/puc_cfg.c
/freebsd-11-stable/sys/dev/puc/puc_cfg.h
/freebsd-11-stable/sys/dev/puc/puc_pccard.c
/freebsd-11-stable/sys/dev/puc/puc_pci.c
/freebsd-11-stable/sys/dev/puc/pucdata.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_def.h
/freebsd-11-stable/sys/dev/qlxgb/qla_glbl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.c
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.h
/freebsd-11-stable/sys/dev/qlxgb/qla_inline.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.c
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_isr.c
/freebsd-11-stable/sys/dev/qlxgb/qla_misc.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.h
/freebsd-11-stable/sys/dev/qlxgb/qla_reg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ver.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_def.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_glbl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_inline.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_isr.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_misc.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_reset.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_tmplt.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ver.h
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.c
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.h
/freebsd-11-stable/sys/dev/qlxge/qls_def.h
/freebsd-11-stable/sys/dev/qlxge/qls_dump.c
/freebsd-11-stable/sys/dev/qlxge/qls_dump.h
/freebsd-11-stable/sys/dev/qlxge/qls_glbl.h
/freebsd-11-stable/sys/dev/qlxge/qls_hw.c
/freebsd-11-stable/sys/dev/qlxge/qls_hw.h
/freebsd-11-stable/sys/dev/qlxge/qls_inline.h
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.c
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.h
/freebsd-11-stable/sys/dev/qlxge/qls_isr.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.h
/freebsd-11-stable/sys/dev/qlxge/qls_ver.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe_fdt.c
/freebsd-11-stable/sys/dev/quicc/quicc_bus.h
/freebsd-11-stable/sys/dev/quicc/quicc_core.c
/freebsd-11-stable/sys/dev/rc/rc.c
/freebsd-11-stable/sys/dev/rc/rcreg.h
/freebsd-11-stable/sys/dev/re/if_re.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.h
/freebsd-11-stable/sys/dev/rp/rp.c
/freebsd-11-stable/sys/dev/rp/rp_isa.c
/freebsd-11-stable/sys/dev/rp/rp_pci.c
/freebsd-11-stable/sys/dev/rp/rpreg.h
/freebsd-11-stable/sys/dev/rp/rpvar.h
/freebsd-11-stable/sys/dev/rt/if_rt.c
/freebsd-11-stable/sys/dev/rt/if_rtreg.h
/freebsd-11-stable/sys/dev/rt/if_rtvar.h
/freebsd-11-stable/sys/dev/safe/safe.c
/freebsd-11-stable/sys/dev/safe/safereg.h
/freebsd-11-stable/sys/dev/safe/safevar.h
/freebsd-11-stable/sys/dev/scc/scc_bfe.h
/freebsd-11-stable/sys/dev/scc/scc_bfe_ebus.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_macio.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_sbus.c
/freebsd-11-stable/sys/dev/scc/scc_bus.h
/freebsd-11-stable/sys/dev/scc/scc_core.c
/freebsd-11-stable/sys/dev/scc/scc_dev_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_dev_sab82532.c
/freebsd-11-stable/sys/dev/scc/scc_dev_z8530.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.h
/freebsd-11-stable/sys/dev/sdhci/sdhci_fdt.c
/freebsd-11-stable/sys/dev/sdhci/sdhci_pci.c
/freebsd-11-stable/sys/dev/sec/sec.c
/freebsd-11-stable/sys/dev/sec/sec.h
/freebsd-11-stable/sys/dev/sf/if_sf.c
/freebsd-11-stable/sys/dev/sf/if_sfreg.h
/freebsd-11-stable/sys/dev/sfxge/common/efsys.h
/freebsd-11-stable/sys/dev/sfxge/common/efx.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_bootcfg.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_ev.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_filter.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_intr.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_mon.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_port.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_ef10.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_pci.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_rx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_tx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_types.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_vpd.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_flash.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_vpd.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_dma.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_ev.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_intr.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_port.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.h
/freebsd-11-stable/sys/dev/sge/if_sge.c
/freebsd-11-stable/sys/dev/sge/if_sgereg.h
/freebsd-11-stable/sys/dev/siba/siba_bwn.c
/freebsd-11-stable/sys/dev/siba/siba_core.c
/freebsd-11-stable/sys/dev/siba/siba_ids.h
/freebsd-11-stable/sys/dev/siba/sibareg.h
/freebsd-11-stable/sys/dev/siba/sibavar.h
/freebsd-11-stable/sys/dev/siis/siis.c
/freebsd-11-stable/sys/dev/siis/siis.h
/freebsd-11-stable/sys/dev/sio/sio.c
/freebsd-11-stable/sys/dev/sio/sio_isa.c
/freebsd-11-stable/sys/dev/sio/sio_pccard.c
/freebsd-11-stable/sys/dev/sio/sio_pci.c
/freebsd-11-stable/sys/dev/sio/sio_puc.c
/freebsd-11-stable/sys/dev/sio/sioreg.h
/freebsd-11-stable/sys/dev/sio/siovar.h
/freebsd-11-stable/sys/dev/sis/if_sis.c
/freebsd-11-stable/sys/dev/sis/if_sisreg.h
/freebsd-11-stable/sys/dev/sk/if_sk.c
/freebsd-11-stable/sys/dev/sk/if_skreg.h
/freebsd-11-stable/sys/dev/sk/xmaciireg.h
/freebsd-11-stable/sys/dev/smbus/smb.c
/freebsd-11-stable/sys/dev/smbus/smb.h
/freebsd-11-stable/sys/dev/smbus/smbconf.c
/freebsd-11-stable/sys/dev/smbus/smbconf.h
/freebsd-11-stable/sys/dev/smbus/smbus.c
/freebsd-11-stable/sys/dev/smbus/smbus.h
/freebsd-11-stable/sys/dev/smc/if_smc.c
/freebsd-11-stable/sys/dev/smc/if_smcreg.h
/freebsd-11-stable/sys/dev/smc/if_smcvar.h
/freebsd-11-stable/sys/dev/sn/if_sn.c
/freebsd-11-stable/sys/dev/sn/if_sn_isa.c
/freebsd-11-stable/sys/dev/sn/if_sn_pccard.c
/freebsd-11-stable/sys/dev/sn/if_snreg.h
/freebsd-11-stable/sys/dev/sn/if_snvar.h
/freebsd-11-stable/sys/dev/sn/ositech.h
/freebsd-11-stable/sys/dev/snp/snp.c
/freebsd-11-stable/sys/dev/sound/chip.h
/freebsd-11-stable/sys/dev/sound/clone.c
/freebsd-11-stable/sys/dev/sound/clone.h
/freebsd-11-stable/sys/dev/sound/driver.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.h
/freebsd-11-stable/sys/dev/sound/isa/ess.c
/freebsd-11-stable/sys/dev/sound/isa/gusc.c
/freebsd-11-stable/sys/dev/sound/isa/mss.c
/freebsd-11-stable/sys/dev/sound/isa/mss.h
/freebsd-11-stable/sys/dev/sound/isa/sb.h
/freebsd-11-stable/sys/dev/sound/isa/sb16.c
/freebsd-11-stable/sys/dev/sound/isa/sb8.c
/freebsd-11-stable/sys/dev/sound/isa/sbc.c
/freebsd-11-stable/sys/dev/sound/isa/sndbuf_dma.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.h
/freebsd-11-stable/sys/dev/sound/macio/davbus.c
/freebsd-11-stable/sys/dev/sound/macio/davbusreg.h
/freebsd-11-stable/sys/dev/sound/macio/i2s.c
/freebsd-11-stable/sys/dev/sound/macio/onyx.c
/freebsd-11-stable/sys/dev/sound/macio/snapper.c
/freebsd-11-stable/sys/dev/sound/macio/tumbler.c
/freebsd-11-stable/sys/dev/sound/midi/midi.c
/freebsd-11-stable/sys/dev/sound/midi/midi.h
/freebsd-11-stable/sys/dev/sound/midi/midiq.h
/freebsd-11-stable/sys/dev/sound/midi/mpu401.c
/freebsd-11-stable/sys/dev/sound/midi/mpu401.h
/freebsd-11-stable/sys/dev/sound/midi/sequencer.c
/freebsd-11-stable/sys/dev/sound/midi/sequencer.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_code.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/als4000.c
/freebsd-11-stable/sys/dev/sound/pci/als4000.h
/freebsd-11-stable/sys/dev/sound/pci/atiixp.c
/freebsd-11-stable/sys/dev/sound/pci/atiixp.h
/freebsd-11-stable/sys/dev/sound/pci/aureal.c
/freebsd-11-stable/sys/dev/sound/pci/aureal.h
/freebsd-11-stable/sys/dev/sound/pci/cmi.c
/freebsd-11-stable/sys/dev/sound/pci/cmireg.h
/freebsd-11-stable/sys/dev/sound/pci/cs4281.c
/freebsd-11-stable/sys/dev/sound/pci/cs4281.h
/freebsd-11-stable/sys/dev/sound/pci/cs461x_dsp.h
/freebsd-11-stable/sys/dev/sound/pci/csa.c
/freebsd-11-stable/sys/dev/sound/pci/csapcm.c
/freebsd-11-stable/sys/dev/sound/pci/csareg.h
/freebsd-11-stable/sys/dev/sound/pci/csavar.h
/freebsd-11-stable/sys/dev/sound/pci/ds1-fw.h
/freebsd-11-stable/sys/dev/sound/pci/ds1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10k1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-midi.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.h
/freebsd-11-stable/sys/dev/sound/pci/envy24.c
/freebsd-11-stable/sys/dev/sound/pci/envy24.h
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.c
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.h
/freebsd-11-stable/sys/dev/sound/pci/es137x.c
/freebsd-11-stable/sys/dev/sound/pci/es137x.h
/freebsd-11-stable/sys/dev/sound/pci/fm801.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hda_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa_patches.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_private.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdacc.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.h
/freebsd-11-stable/sys/dev/sound/pci/ich.c
/freebsd-11-stable/sys/dev/sound/pci/ich.h
/freebsd-11-stable/sys/dev/sound/pci/maestro.c
/freebsd-11-stable/sys/dev/sound/pci/maestro3.c
/freebsd-11-stable/sys/dev/sound/pci/maestro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic-coeff.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic.c
/freebsd-11-stable/sys/dev/sound/pci/neomagic.h
/freebsd-11-stable/sys/dev/sound/pci/solo.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.h
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.c
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.h
/freebsd-11-stable/sys/dev/sound/pci/via8233.c
/freebsd-11-stable/sys/dev/sound/pci/via8233.h
/freebsd-11-stable/sys/dev/sound/pci/via82c686.c
/freebsd-11-stable/sys/dev/sound/pci/via82c686.h
/freebsd-11-stable/sys/dev/sound/pci/vibes.c
/freebsd-11-stable/sys/dev/sound/pci/vibes.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.h
/freebsd-11-stable/sys/dev/sound/pcm/buffer.c
/freebsd-11-stable/sys/dev/sound/pcm/buffer.h
/freebsd-11-stable/sys/dev/sound/pcm/channel.c
/freebsd-11-stable/sys/dev/sound/pcm/channel.h
/freebsd-11-stable/sys/dev/sound/pcm/dsp.c
/freebsd-11-stable/sys/dev/sound/pcm/dsp.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder_chain.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_eq.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_format.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_matrix.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_rate.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_volume.c
/freebsd-11-stable/sys/dev/sound/pcm/g711.h
/freebsd-11-stable/sys/dev/sound/pcm/intpcm.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix_map.h
/freebsd-11-stable/sys/dev/sound/pcm/mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/mixer.h
/freebsd-11-stable/sys/dev/sound/pcm/pcm.h
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.c
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.h
/freebsd-11-stable/sys/dev/sound/pcm/sound.c
/freebsd-11-stable/sys/dev/sound/pcm/sound.h
/freebsd-11-stable/sys/dev/sound/pcm/vchan.c
/freebsd-11-stable/sys/dev/sound/pcm/vchan.h
/freebsd-11-stable/sys/dev/sound/sbus/apcdmareg.h
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.c
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.h
/freebsd-11-stable/sys/dev/sound/unit.c
/freebsd-11-stable/sys/dev/sound/unit.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio.c
/freebsd-11-stable/sys/dev/sound/usb/uaudio.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio_pcm.c
/freebsd-11-stable/sys/dev/sound/usb/uaudioreg.h
/freebsd-11-stable/sys/dev/sound/version.h
/freebsd-11-stable/sys/dev/spibus/ofw_spibus.c
/freebsd-11-stable/sys/dev/ste/if_ste.c
/freebsd-11-stable/sys/dev/ste/if_stereg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_isa.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pccard.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pci.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_subr.c
/freebsd-11-stable/sys/dev/stg/tmc18c30reg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30var.h
/freebsd-11-stable/sys/dev/stge/if_stge.c
/freebsd-11-stable/sys/dev/stge/if_stgereg.h
/freebsd-11-stable/sys/dev/sym/sym_conf.h
/freebsd-11-stable/sys/dev/sym/sym_defs.h
/freebsd-11-stable/sys/dev/sym/sym_fw.h
/freebsd-11-stable/sys/dev/sym/sym_fw1.h
/freebsd-11-stable/sys/dev/sym/sym_fw2.h
/freebsd-11-stable/sys/dev/sym/sym_hipd.c
/freebsd-11-stable/sys/dev/syscons/apm/apm_saver.c
/freebsd-11-stable/sys/dev/syscons/blank/blank_saver.c
/freebsd-11-stable/sys/dev/syscons/daemon/daemon_saver.c
/freebsd-11-stable/sys/dev/syscons/dragon/dragon_saver.c
/freebsd-11-stable/sys/dev/syscons/fade/fade_saver.c
/freebsd-11-stable/sys/dev/syscons/fire/fire_saver.c
/freebsd-11-stable/sys/dev/syscons/green/green_saver.c
/freebsd-11-stable/sys/dev/syscons/logo/logo_saver.c
/freebsd-11-stable/sys/dev/syscons/rain/rain_saver.c
/freebsd-11-stable/sys/dev/syscons/scgfbrndr.c
/freebsd-11-stable/sys/dev/syscons/schistory.c
/freebsd-11-stable/sys/dev/syscons/scmouse.c
/freebsd-11-stable/sys/dev/syscons/scterm-teken.c
/freebsd-11-stable/sys/dev/syscons/scterm.c
/freebsd-11-stable/sys/dev/syscons/scvesactl.c
/freebsd-11-stable/sys/dev/syscons/scvgarndr.c
/freebsd-11-stable/sys/dev/syscons/scvidctl.c
/freebsd-11-stable/sys/dev/syscons/scvtb.c
/freebsd-11-stable/sys/dev/syscons/snake/snake_saver.c
/freebsd-11-stable/sys/dev/syscons/star/star_saver.c
/freebsd-11-stable/sys/dev/syscons/syscons.c
/freebsd-11-stable/sys/dev/syscons/syscons.h
/freebsd-11-stable/sys/dev/syscons/sysmouse.c
/freebsd-11-stable/sys/dev/syscons/warp/warp_saver.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_io.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_vars.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_fdt.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.h
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_fdt.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_pixel.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_reg.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_syscons.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_text.c
/freebsd-11-stable/sys/dev/ti/if_ti.c
/freebsd-11-stable/sys/dev/ti/if_tireg.h
/freebsd-11-stable/sys/dev/tl/if_tl.c
/freebsd-11-stable/sys/dev/tl/if_tlreg.h
/freebsd-11-stable/sys/dev/trm/trm.c
/freebsd-11-stable/sys/dev/trm/trm.h
/freebsd-11-stable/sys/dev/tsec/if_tsec.c
/freebsd-11-stable/sys/dev/tsec/if_tsec.h
/freebsd-11-stable/sys/dev/tsec/if_tsec_fdt.c
/freebsd-11-stable/sys/dev/tsec/if_tsecreg.h
/freebsd-11-stable/sys/dev/twa/tw_cl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_cl_fwif.h
/freebsd-11-stable/sys/dev/twa/tw_cl_init.c
/freebsd-11-stable/sys/dev/twa/tw_cl_intr.c
/freebsd-11-stable/sys/dev/twa/tw_cl_io.c
/freebsd-11-stable/sys/dev/twa/tw_cl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_misc.c
/freebsd-11-stable/sys/dev/twa/tw_cl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_cam.c
/freebsd-11-stable/sys/dev/twa/tw_osl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_osl_freebsd.c
/freebsd-11-stable/sys/dev/twa/tw_osl_includes.h
/freebsd-11-stable/sys/dev/twa/tw_osl_inline.h
/freebsd-11-stable/sys/dev/twa/tw_osl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl_types.h
/freebsd-11-stable/sys/dev/twe/twe.c
/freebsd-11-stable/sys/dev/twe/twe_compat.h
/freebsd-11-stable/sys/dev/twe/twe_freebsd.c
/freebsd-11-stable/sys/dev/twe/twe_tables.h
/freebsd-11-stable/sys/dev/twe/tweio.h
/freebsd-11-stable/sys/dev/twe/twereg.h
/freebsd-11-stable/sys/dev/twe/twevar.h
/freebsd-11-stable/sys/dev/tws/tws.c
/freebsd-11-stable/sys/dev/tws/tws.h
/freebsd-11-stable/sys/dev/tws/tws_cam.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.h
/freebsd-11-stable/sys/dev/tws/tws_services.c
/freebsd-11-stable/sys/dev/tws/tws_services.h
/freebsd-11-stable/sys/dev/tws/tws_user.c
/freebsd-11-stable/sys/dev/tws/tws_user.h
/freebsd-11-stable/sys/dev/tx/if_tx.c
/freebsd-11-stable/sys/dev/tx/if_txreg.h
/freebsd-11-stable/sys/dev/tx/if_txvar.h
/freebsd-11-stable/sys/dev/txp/3c990img.h
/freebsd-11-stable/sys/dev/txp/if_txp.c
/freebsd-11-stable/sys/dev/txp/if_txpreg.h
/freebsd-11-stable/sys/dev/uart/uart.h
/freebsd-11-stable/sys/dev/uart/uart_bus.h
/freebsd-11-stable/sys/dev/uart/uart_bus_acpi.c
/freebsd-11-stable/sys/dev/uart/uart_bus_ebus.c
/freebsd-11-stable/sys/dev/uart/uart_bus_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_bus_isa.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pccard.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pci.c
/freebsd-11-stable/sys/dev/uart/uart_bus_puc.c
/freebsd-11-stable/sys/dev/uart/uart_bus_scc.c
/freebsd-11-stable/sys/dev/uart/uart_core.c
/freebsd-11-stable/sys/dev/uart/uart_cpu.h
/freebsd-11-stable/sys/dev/uart/uart_cpu_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_powerpc.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_sparc64.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_x86.c
/freebsd-11-stable/sys/dev/uart/uart_dbg.c
/freebsd-11-stable/sys/dev/uart/uart_dev_imx.c
/freebsd-11-stable/sys/dev/uart/uart_dev_lpc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.h
/freebsd-11-stable/sys/dev/uart/uart_dev_pl011.c
/freebsd-11-stable/sys/dev/uart/uart_dev_quicc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_sab82532.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ti8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_z8530.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.h
/freebsd-11-stable/sys/dev/uart/uart_subr.c
/freebsd-11-stable/sys/dev/uart/uart_tty.c
/freebsd-11-stable/sys/dev/ubsec/ubsec.c
/freebsd-11-stable/sys/dev/ubsec/ubsecreg.h
/freebsd-11-stable/sys/dev/ubsec/ubsecvar.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.h
/freebsd-11-stable/sys/dev/usb/controller/atmegadci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otgreg.h
/freebsd-11-stable/sys/dev/usb/controller/ehci.c
/freebsd-11-stable/sys/dev/usb/controller/ehci.h
/freebsd-11-stable/sys/dev/usb/controller/ehci_fsl.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_imx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_ixp4xx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_mv.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ehcireg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.c
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.h
/freebsd-11-stable/sys/dev/usb/controller/ohci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci_s3c24x0.c
/freebsd-11-stable/sys/dev/usb/controller/ohcireg.h
/freebsd-11-stable/sys/dev/usb/controller/uhci.c
/freebsd-11-stable/sys/dev/usb/controller/uhci.h
/freebsd-11-stable/sys/dev/usb/controller/uhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/uhcireg.h
/freebsd-11-stable/sys/dev/usb/controller/usb_controller.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.h
/freebsd-11-stable/sys/dev/usb/controller/uss820dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.h
/freebsd-11-stable/sys/dev/usb/controller/xhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/xhcireg.h
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.c
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.h
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.c
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.h
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.c
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.h
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.c
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.h
/freebsd-11-stable/sys/dev/usb/input/atp.c
/freebsd-11-stable/sys/dev/usb/input/uep.c
/freebsd-11-stable/sys/dev/usb/input/uhid.c
/freebsd-11-stable/sys/dev/usb/input/ukbd.c
/freebsd-11-stable/sys/dev/usb/input/ums.c
/freebsd-11-stable/sys/dev/usb/input/usb_rdesc.h
/freebsd-11-stable/sys/dev/usb/input/wsp.c
/freebsd-11-stable/sys/dev/usb/misc/udbp.c
/freebsd-11-stable/sys/dev/usb/misc/ufm.c
/freebsd-11-stable/sys/dev/usb/net/if_aue.c
/freebsd-11-stable/sys/dev/usb/net/if_auereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axe.c
/freebsd-11-stable/sys/dev/usb/net/if_axereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axge.c
/freebsd-11-stable/sys/dev/usb/net/if_axgereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cdce.c
/freebsd-11-stable/sys/dev/usb/net/if_cdcereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cue.c
/freebsd-11-stable/sys/dev/usb/net/if_cuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_ipheth.c
/freebsd-11-stable/sys/dev/usb/net/if_iphethvar.h
/freebsd-11-stable/sys/dev/usb/net/if_kue.c
/freebsd-11-stable/sys/dev/usb/net/if_kuefw.h
/freebsd-11-stable/sys/dev/usb/net/if_kuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_mos.c
/freebsd-11-stable/sys/dev/usb/net/if_mosreg.h
/freebsd-11-stable/sys/dev/usb/net/if_rue.c
/freebsd-11-stable/sys/dev/usb/net/if_ruereg.h
/freebsd-11-stable/sys/dev/usb/net/if_smsc.c
/freebsd-11-stable/sys/dev/usb/net/if_smscreg.h
/freebsd-11-stable/sys/dev/usb/net/if_udav.c
/freebsd-11-stable/sys/dev/usb/net/if_udavreg.h
/freebsd-11-stable/sys/dev/usb/net/if_usie.c
/freebsd-11-stable/sys/dev/usb/net/if_usievar.h
/freebsd-11-stable/sys/dev/usb/net/ruephy.c
/freebsd-11-stable/sys/dev/usb/net/ruephyreg.h
/freebsd-11-stable/sys/dev/usb/net/uhso.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.h
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.c
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.h
/freebsd-11-stable/sys/dev/usb/serial/ubsa.c
/freebsd-11-stable/sys/dev/usb/serial/ubser.c
/freebsd-11-stable/sys/dev/usb/serial/uchcom.c
/freebsd-11-stable/sys/dev/usb/serial/ucycom.c
/freebsd-11-stable/sys/dev/usb/serial/ufoma.c
/freebsd-11-stable/sys/dev/usb/serial/uftdi.c
/freebsd-11-stable/sys/dev/usb/serial/ugensa.c
/freebsd-11-stable/sys/dev/usb/serial/uipaq.c
/freebsd-11-stable/sys/dev/usb/serial/ulpt.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.h
/freebsd-11-stable/sys/dev/usb/serial/umct.c
/freebsd-11-stable/sys/dev/usb/serial/umodem.c
/freebsd-11-stable/sys/dev/usb/serial/uplcom.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.h
/freebsd-11-stable/sys/dev/usb/serial/uvisor.c
/freebsd-11-stable/sys/dev/usb/serial/uvscom.c
/freebsd-11-stable/sys/dev/usb/storage/umass.c
/freebsd-11-stable/sys/dev/usb/storage/urio.c
/freebsd-11-stable/sys/dev/usb/storage/ustorage_fs.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.h
/freebsd-11-stable/sys/dev/usb/template/usb_template_audio.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_cdce.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_kbd.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_modem.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mouse.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_msc.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mtp.c
/freebsd-11-stable/sys/dev/usb/ufm_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb.h
/freebsd-11-stable/sys/dev/usb/usb_bus.h
/freebsd-11-stable/sys/dev/usb/usb_busdma.c
/freebsd-11-stable/sys/dev/usb/usb_busdma.h
/freebsd-11-stable/sys/dev/usb/usb_cdc.h
/freebsd-11-stable/sys/dev/usb/usb_controller.h
/freebsd-11-stable/sys/dev/usb/usb_core.c
/freebsd-11-stable/sys/dev/usb/usb_core.h
/freebsd-11-stable/sys/dev/usb/usb_debug.c
/freebsd-11-stable/sys/dev/usb/usb_debug.h
/freebsd-11-stable/sys/dev/usb/usb_dev.c
/freebsd-11-stable/sys/dev/usb/usb_dev.h
/freebsd-11-stable/sys/dev/usb/usb_device.c
/freebsd-11-stable/sys/dev/usb/usb_device.h
/freebsd-11-stable/sys/dev/usb/usb_dynamic.c
/freebsd-11-stable/sys/dev/usb/usb_dynamic.h
/freebsd-11-stable/sys/dev/usb/usb_endian.h
/freebsd-11-stable/sys/dev/usb/usb_error.c
/freebsd-11-stable/sys/dev/usb/usb_freebsd.h
/freebsd-11-stable/sys/dev/usb/usb_freebsd_loader.h
/freebsd-11-stable/sys/dev/usb/usb_generic.c
/freebsd-11-stable/sys/dev/usb/usb_generic.h
/freebsd-11-stable/sys/dev/usb/usb_handle_request.c
/freebsd-11-stable/sys/dev/usb/usb_hid.c
/freebsd-11-stable/sys/dev/usb/usb_hub.c
/freebsd-11-stable/sys/dev/usb/usb_hub.h
/freebsd-11-stable/sys/dev/usb/usb_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb_lookup.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.h
/freebsd-11-stable/sys/dev/usb/usb_msctest.c
/freebsd-11-stable/sys/dev/usb/usb_msctest.h
/freebsd-11-stable/sys/dev/usb/usb_parse.c
/freebsd-11-stable/sys/dev/usb/usb_pci.h
/freebsd-11-stable/sys/dev/usb/usb_pf.c
/freebsd-11-stable/sys/dev/usb/usb_pf.h
/freebsd-11-stable/sys/dev/usb/usb_process.c
/freebsd-11-stable/sys/dev/usb/usb_process.h
/freebsd-11-stable/sys/dev/usb/usb_request.c
/freebsd-11-stable/sys/dev/usb/usb_request.h
/freebsd-11-stable/sys/dev/usb/usb_transfer.c
/freebsd-11-stable/sys/dev/usb/usb_transfer.h
/freebsd-11-stable/sys/dev/usb/usb_util.c
/freebsd-11-stable/sys/dev/usb/usb_util.h
/freebsd-11-stable/sys/dev/usb/usbdi.h
/freebsd-11-stable/sys/dev/usb/usbdi_util.h
/freebsd-11-stable/sys/dev/usb/usbhid.h
/freebsd-11-stable/sys/dev/usb/wlan/if_uath.c
/freebsd-11-stable/sys/dev/usb/wlan/if_zydfw.h
/freebsd-11-stable/sys/dev/vge/if_vge.c
/freebsd-11-stable/sys/dev/vge/if_vgereg.h
/freebsd-11-stable/sys/dev/vge/if_vgevar.h
/freebsd-11-stable/sys/dev/viawd/viawd.c
/freebsd-11-stable/sys/dev/viawd/viawd.h
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.c
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.h
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.c
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.h
/freebsd-11-stable/sys/dev/virtio/network/if_vtnet.c
/freebsd-11-stable/sys/dev/virtio/network/if_vtnetvar.h
/freebsd-11-stable/sys/dev/virtio/network/virtio_net.h
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.c
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.h
/freebsd-11-stable/sys/dev/virtio/random/virtio_random.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.h
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsivar.h
/freebsd-11-stable/sys/dev/virtio/virtio.c
/freebsd-11-stable/sys/dev/virtio/virtio.h
/freebsd-11-stable/sys/dev/virtio/virtio_ring.h
/freebsd-11-stable/sys/dev/virtio/virtqueue.c
/freebsd-11-stable/sys/dev/virtio/virtqueue.h
/freebsd-11-stable/sys/dev/vkbd/vkbd.c
/freebsd-11-stable/sys/dev/vkbd/vkbd_var.h
/freebsd-11-stable/sys/dev/vr/if_vr.c
/freebsd-11-stable/sys/dev/vr/if_vrreg.h
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.c
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.h
/freebsd-11-stable/sys/dev/vt/font/vt_font_default.c
/freebsd-11-stable/sys/dev/vt/font/vt_mouse_cursor.c
/freebsd-11-stable/sys/dev/vt/hw/efifb/efifb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_early_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.h
/freebsd-11-stable/sys/dev/vt/hw/ofwfb/ofwfb.c
/freebsd-11-stable/sys/dev/vt/logo/logo_freebsd.c
/freebsd-11-stable/sys/dev/vt/vt.h
/freebsd-11-stable/sys/dev/vt/vt_buf.c
/freebsd-11-stable/sys/dev/vt/vt_consolectl.c
/freebsd-11-stable/sys/dev/vt/vt_core.c
/freebsd-11-stable/sys/dev/vt/vt_font.c
/freebsd-11-stable/sys/dev/vt/vt_sysmouse.c
/freebsd-11-stable/sys/dev/vte/if_vte.c
/freebsd-11-stable/sys/dev/vte/if_vtereg.h
/freebsd-11-stable/sys/dev/vte/if_vtevar.h
/freebsd-11-stable/sys/dev/vx/if_vx.c
/freebsd-11-stable/sys/dev/vx/if_vx_pci.c
/freebsd-11-stable/sys/dev/vx/if_vxreg.h
/freebsd-11-stable/sys/dev/vx/if_vxvar.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-defs.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-list.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-pal.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-queue.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-config.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-ll.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmt.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-stats.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-status.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-types.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-version.h
/freebsd-11-stable/sys/dev/vxge/vxge-firmware.h
/freebsd-11-stable/sys/dev/vxge/vxge-osdep.h
/freebsd-11-stable/sys/dev/vxge/vxge.c
/freebsd-11-stable/sys/dev/vxge/vxge.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxge-queue.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-common-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config-priv.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-debug.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-legacy-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-memrepair-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmt.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-pcicfgmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regdefs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-toc-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpath-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal.h
/freebsd-11-stable/sys/dev/vxge/vxgell-version.h
/freebsd-11-stable/sys/dev/watchdog/watchdog.c
/freebsd-11-stable/sys/dev/wb/if_wb.c
/freebsd-11-stable/sys/dev/wb/if_wbreg.h
/freebsd-11-stable/sys/dev/wbwd/wbwd.c
/freebsd-11-stable/sys/dev/wi/if_wavelan_ieee.h
/freebsd-11-stable/sys/dev/wi/if_wi_macio.c
/freebsd-11-stable/sys/dev/wi/if_wi_pccard.c
/freebsd-11-stable/sys/dev/wi/if_wi_pci.c
/freebsd-11-stable/sys/dev/wi/if_wireg.h
/freebsd-11-stable/sys/dev/wi/if_wivar.h
/freebsd-11-stable/sys/dev/wtap/if_medium.c
/freebsd-11-stable/sys/dev/wtap/if_medium.h
/freebsd-11-stable/sys/dev/wtap/if_wtap.c
/freebsd-11-stable/sys/dev/wtap/if_wtap_module.c
/freebsd-11-stable/sys/dev/wtap/if_wtapioctl.h
/freebsd-11-stable/sys/dev/wtap/if_wtapvar.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.c
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility_ioctl.h
/freebsd-11-stable/sys/dev/wtap/plugins/wtap_plugin.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.c
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/handler.h
/freebsd-11-stable/sys/dev/xe/if_xe.c
/freebsd-11-stable/sys/dev/xe/if_xe_pccard.c
/freebsd-11-stable/sys/dev/xe/if_xereg.h
/freebsd-11-stable/sys/dev/xe/if_xevar.h
/freebsd-11-stable/sys/dev/xen/blkback/blkback.c
/freebsd-11-stable/sys/dev/xen/control/control.c
/freebsd-11-stable/sys/dev/xen/netback/netback.c
/freebsd-11-stable/sys/dev/xen/netback/netback_unit_tests.c
/freebsd-11-stable/sys/dev/xen/netfront/netfront.c
/freebsd-11-stable/sys/dev/xen/pcifront/pcifront.c
/freebsd-11-stable/sys/dev/xen/timer/timer.c
/freebsd-11-stable/sys/dev/xen/timer/timer.h
/freebsd-11-stable/sys/dev/xen/xenpci/xenpci.c
/freebsd-11-stable/sys/dev/xen/xenpci/xenpcivar.h
/freebsd-11-stable/sys/dev/xl/if_xl.c
/freebsd-11-stable/sys/dev/xl/if_xlreg.h
/freebsd-11-stable/sys/dev/xl/xlphy.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_bmap.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_lookup.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_mount.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_util.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vfsops.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vnops.c
/freebsd-11-stable/sys/fs/cd9660/iso.h
/freebsd-11-stable/sys/fs/cd9660/iso_rrip.h
/freebsd-11-stable/sys/fs/deadfs/dead_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_alloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_balloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_bmap.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_extern.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_inode.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_lookup.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_mount.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_subr.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vfsops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/fs.h
/freebsd-11-stable/sys/fs/ext2fs/inode.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vfsops.c
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vnops.c
/freebsd-11-stable/sys/fs/fifofs/fifo_vnops.c
/freebsd-11-stable/sys/fs/fuse/fuse.h
/freebsd-11-stable/sys/fs/fuse/fuse_debug.h
/freebsd-11-stable/sys/fs/fuse/fuse_device.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.h
/freebsd-11-stable/sys/fs/fuse/fuse_internal.c
/freebsd-11-stable/sys/fs/fuse/fuse_internal.h
/freebsd-11-stable/sys/fs/fuse/fuse_io.c
/freebsd-11-stable/sys/fs/fuse/fuse_io.h
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.c
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.h
/freebsd-11-stable/sys/fs/fuse/fuse_kernel.h
/freebsd-11-stable/sys/fs/fuse/fuse_main.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.h
/freebsd-11-stable/sys/fs/fuse/fuse_param.h
/freebsd-11-stable/sys/fs/fuse/fuse_vfsops.c
/freebsd-11-stable/sys/fs/fuse/fuse_vnops.c
/freebsd-11-stable/sys/fs/nfs/nfs.h
/freebsd-11-stable/sys/fs/nfs/nfs_commonkrpc.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonport.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonsubs.c
/freebsd-11-stable/sys/fs/nfs/nfs_var.h
/freebsd-11-stable/sys/fs/nfs/nfsm_subs.h
/freebsd-11-stable/sys/fs/nfs/nfsport.h
/freebsd-11-stable/sys/fs/nfs/nfsproto.h
/freebsd-11-stable/sys/fs/nfs/nfsrvcache.h
/freebsd-11-stable/sys/fs/nfs/rpcv2.h
/freebsd-11-stable/sys/fs/nfs/xdr_subs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs_clbio.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clcomsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clkrpc.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnfsiod.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnode.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clport.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clrpcops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvfsops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvnops.c
/freebsd-11-stable/sys/fs/nfsclient/nfsmount.h
/freebsd-11-stable/sys/fs/nfsclient/nfsnode.h
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdcache.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdkrpc.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdport.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdserv.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsocket.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsubs.c
/freebsd-11-stable/sys/fs/nullfs/null.h
/freebsd-11-stable/sys/fs/nullfs/null_subr.c
/freebsd-11-stable/sys/fs/nullfs/null_vfsops.c
/freebsd-11-stable/sys/fs/nullfs/null_vnops.c
/freebsd-11-stable/sys/fs/procfs/procfs.c
/freebsd-11-stable/sys/fs/procfs/procfs.h
/freebsd-11-stable/sys/fs/procfs/procfs_dbregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_fpregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_map.c
/freebsd-11-stable/sys/fs/procfs/procfs_mem.c
/freebsd-11-stable/sys/fs/procfs/procfs_note.c
/freebsd-11-stable/sys/fs/procfs/procfs_osrel.c
/freebsd-11-stable/sys/fs/procfs/procfs_regs.c
/freebsd-11-stable/sys/fs/procfs/procfs_rlimit.c
/freebsd-11-stable/sys/fs/procfs/procfs_status.c
/freebsd-11-stable/sys/fs/procfs/procfs_type.c
/freebsd-11-stable/sys/fs/unionfs/union.h
/freebsd-11-stable/sys/fs/unionfs/union_subr.c
/freebsd-11-stable/sys/fs/unionfs/union_vfsops.c
/freebsd-11-stable/sys/fs/unionfs/union_vnops.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_share.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_subr.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_var.h
/freebsd-11-stable/sys/i386/acpica/acpi_machdep.c
/freebsd-11-stable/sys/i386/bios/smapi.c
/freebsd-11-stable/sys/i386/i386/atomic.c
/freebsd-11-stable/sys/i386/i386/bios.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.h
/freebsd-11-stable/sys/i386/i386/elf_machdep.c
/freebsd-11-stable/sys/i386/i386/gdb_machdep.c
/freebsd-11-stable/sys/i386/i386/genassym.c
/freebsd-11-stable/sys/i386/i386/geode.c
/freebsd-11-stable/sys/i386/i386/in_cksum.c
/freebsd-11-stable/sys/i386/i386/initcpu.c
/freebsd-11-stable/sys/i386/i386/io.c
/freebsd-11-stable/sys/i386/i386/k6_mem.c
/freebsd-11-stable/sys/i386/i386/longrun.c
/freebsd-11-stable/sys/i386/i386/machdep.c
/freebsd-11-stable/sys/i386/i386/mem.c
/freebsd-11-stable/sys/i386/i386/minidump_machdep.c
/freebsd-11-stable/sys/i386/i386/mp_machdep.c
/freebsd-11-stable/sys/i386/i386/pmap.c
/freebsd-11-stable/sys/i386/i386/ptrace_machdep.c
/freebsd-11-stable/sys/i386/i386/sys_machdep.c
/freebsd-11-stable/sys/i386/i386/trap.c
/freebsd-11-stable/sys/i386/i386/uio_machdep.c
/freebsd-11-stable/sys/i386/i386/vm86.c
/freebsd-11-stable/sys/i386/i386/vm_machdep.c
/freebsd-11-stable/sys/i386/ibcs2/coff.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_dirent.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ioctl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_isc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_misc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_mount.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_msg.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_other.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_statfs.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stropts.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysi86.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysvec.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_termios.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_time.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_types.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_unistd.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ustat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utime.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utsname.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_xenix.c
/freebsd-11-stable/sys/i386/ibcs2/imgact_coff.c
/freebsd-11-stable/sys/i386/include/_bus.h
/freebsd-11-stable/sys/i386/include/asm.h
/freebsd-11-stable/sys/i386/include/asmacros.h
/freebsd-11-stable/sys/i386/include/atomic.h
/freebsd-11-stable/sys/i386/include/bootinfo.h
/freebsd-11-stable/sys/i386/include/bus_dma.h
/freebsd-11-stable/sys/i386/include/counter.h
/freebsd-11-stable/sys/i386/include/cpu.h
/freebsd-11-stable/sys/i386/include/cpufunc.h
/freebsd-11-stable/sys/i386/include/cputypes.h
/freebsd-11-stable/sys/i386/include/elan_mmcr.h
/freebsd-11-stable/sys/i386/include/exec.h
/freebsd-11-stable/sys/i386/include/floatingpoint.h
/freebsd-11-stable/sys/i386/include/gdb_machdep.h
/freebsd-11-stable/sys/i386/include/ieeefp.h
/freebsd-11-stable/sys/i386/include/if_wl_wavelan.h
/freebsd-11-stable/sys/i386/include/in_cksum.h
/freebsd-11-stable/sys/i386/include/intr_machdep.h
/freebsd-11-stable/sys/i386/include/ioctl_bt848.h
/freebsd-11-stable/sys/i386/include/ioctl_meteor.h
/freebsd-11-stable/sys/i386/include/iodev.h
/freebsd-11-stable/sys/i386/include/kdb.h
/freebsd-11-stable/sys/i386/include/limits.h
/freebsd-11-stable/sys/i386/include/md_var.h
/freebsd-11-stable/sys/i386/include/memdev.h
/freebsd-11-stable/sys/i386/include/minidump.h
/freebsd-11-stable/sys/i386/include/mp_watchdog.h
/freebsd-11-stable/sys/i386/include/npx.h
/freebsd-11-stable/sys/i386/include/param.h
/freebsd-11-stable/sys/i386/include/pc/bios.h
/freebsd-11-stable/sys/i386/include/pcaudioio.h
/freebsd-11-stable/sys/i386/include/pcb.h
/freebsd-11-stable/sys/i386/include/pcb_ext.h
/freebsd-11-stable/sys/i386/include/pcpu.h
/freebsd-11-stable/sys/i386/include/pmap.h
/freebsd-11-stable/sys/i386/include/pmc_mdep.h
/freebsd-11-stable/sys/i386/include/ppireg.h
/freebsd-11-stable/sys/i386/include/proc.h
/freebsd-11-stable/sys/i386/include/profile.h
/freebsd-11-stable/sys/i386/include/reloc.h
/freebsd-11-stable/sys/i386/include/runq.h
/freebsd-11-stable/sys/i386/include/segments.h
/freebsd-11-stable/sys/i386/include/sf_buf.h
/freebsd-11-stable/sys/i386/include/sigframe.h
/freebsd-11-stable/sys/i386/include/signal.h
/freebsd-11-stable/sys/i386/include/smapi.h
/freebsd-11-stable/sys/i386/include/timerreg.h
/freebsd-11-stable/sys/i386/include/tss.h
/freebsd-11-stable/sys/i386/include/ucontext.h
/freebsd-11-stable/sys/i386/include/varargs.h
/freebsd-11-stable/sys/i386/include/vm.h
/freebsd-11-stable/sys/i386/include/vm86.h
/freebsd-11-stable/sys/i386/include/vmparam.h
/freebsd-11-stable/sys/i386/isa/ccbque.h
/freebsd-11-stable/sys/i386/isa/elink.c
/freebsd-11-stable/sys/i386/isa/elink.h
/freebsd-11-stable/sys/i386/isa/pmtimer.c
/freebsd-11-stable/sys/i386/isa/prof_machdep.c
/freebsd-11-stable/sys/i386/linux/imgact_linux.c
/freebsd-11-stable/sys/i386/linux/linux.h
/freebsd-11-stable/sys/i386/linux/linux_dummy.c
/freebsd-11-stable/sys/i386/linux/linux_machdep.c
/freebsd-11-stable/sys/i386/linux/linux_ptrace.c
/freebsd-11-stable/sys/i386/linux/linux_sysvec.c
/freebsd-11-stable/sys/i386/pci/pci_cfgreg.c
/freebsd-11-stable/sys/i386/pci/pci_pir.c
/freebsd-11-stable/sys/isa/isareg.h
/freebsd-11-stable/sys/isa/pnpreg.h
/freebsd-11-stable/sys/isa/rtc.h
/freebsd-11-stable/sys/kern/init_main.c
/freebsd-11-stable/sys/kern/kern_acct.c
/freebsd-11-stable/sys/kern/kern_clock.c
/freebsd-11-stable/sys/kern/kern_cons.c
/freebsd-11-stable/sys/kern/kern_descrip.c
/freebsd-11-stable/sys/kern/kern_exit.c
/freebsd-11-stable/sys/kern/kern_fork.c
/freebsd-11-stable/sys/kern/kern_ktrace.c
/freebsd-11-stable/sys/kern/kern_lockf.c
/freebsd-11-stable/sys/kern/kern_malloc.c
/freebsd-11-stable/sys/kern/kern_mib.c
/freebsd-11-stable/sys/kern/kern_proc.c
/freebsd-11-stable/sys/kern/kern_prot.c
/freebsd-11-stable/sys/kern/kern_resource.c
/freebsd-11-stable/sys/kern/kern_rmlock.c
/freebsd-11-stable/sys/kern/kern_shutdown.c
/freebsd-11-stable/sys/kern/kern_sig.c
/freebsd-11-stable/sys/kern/kern_synch.c
/freebsd-11-stable/sys/kern/kern_sysctl.c
/freebsd-11-stable/sys/kern/kern_time.c
/freebsd-11-stable/sys/kern/kern_timeout.c
/freebsd-11-stable/sys/kern/kern_xxx.c
/freebsd-11-stable/sys/kern/ksched.c
/freebsd-11-stable/sys/kern/p1003_1b.c
/freebsd-11-stable/sys/kern/posix4_mib.c
/freebsd-11-stable/sys/kern/sched_4bsd.c
/freebsd-11-stable/sys/kern/subr_autoconf.c
/freebsd-11-stable/sys/kern/subr_blist.c
/freebsd-11-stable/sys/kern/subr_clock.c
/freebsd-11-stable/sys/kern/subr_hash.c
/freebsd-11-stable/sys/kern/subr_log.c
/freebsd-11-stable/sys/kern/subr_mchain.c
/freebsd-11-stable/sys/kern/subr_param.c
/freebsd-11-stable/sys/kern/subr_pcpu.c
/freebsd-11-stable/sys/kern/subr_prf.c
/freebsd-11-stable/sys/kern/subr_prof.c
/freebsd-11-stable/sys/kern/subr_rtc.c
/freebsd-11-stable/sys/kern/subr_scanf.c
/freebsd-11-stable/sys/kern/subr_sglist.c
/freebsd-11-stable/sys/kern/subr_syscall.c
/freebsd-11-stable/sys/kern/subr_trap.c
/freebsd-11-stable/sys/kern/subr_uio.c
/freebsd-11-stable/sys/kern/sys_generic.c
/freebsd-11-stable/sys/kern/sys_socket.c
/freebsd-11-stable/sys/kern/tty_compat.c
/freebsd-11-stable/sys/kern/tty_info.c
/freebsd-11-stable/sys/kern/uipc_domain.c
/freebsd-11-stable/sys/kern/uipc_mbuf.c
/freebsd-11-stable/sys/kern/uipc_mbuf2.c
/freebsd-11-stable/sys/kern/uipc_sockbuf.c
/freebsd-11-stable/sys/kern/uipc_socket.c
/freebsd-11-stable/sys/kern/uipc_syscalls.c
/freebsd-11-stable/sys/kern/uipc_usrreq.c
/freebsd-11-stable/sys/kern/vfs_cache.c
/freebsd-11-stable/sys/kern/vfs_cluster.c
/freebsd-11-stable/sys/kern/vfs_default.c
/freebsd-11-stable/sys/kern/vfs_export.c
/freebsd-11-stable/sys/kern/vfs_init.c
/freebsd-11-stable/sys/kern/vfs_lookup.c
/freebsd-11-stable/sys/kern/vfs_mount.c
/freebsd-11-stable/sys/kern/vfs_mountroot.c
/freebsd-11-stable/sys/kern/vfs_subr.c
/freebsd-11-stable/sys/kern/vfs_syscalls.c
/freebsd-11-stable/sys/kern/vfs_vnops.c
/freebsd-11-stable/sys/libkern/arm/muldi3.c
/freebsd-11-stable/sys/libkern/ashldi3.c
/freebsd-11-stable/sys/libkern/ashrdi3.c
/freebsd-11-stable/sys/libkern/bcmp.c
/freebsd-11-stable/sys/libkern/bsearch.c
/freebsd-11-stable/sys/libkern/cmpdi2.c
/freebsd-11-stable/sys/libkern/divdi3.c
/freebsd-11-stable/sys/libkern/ffs.c
/freebsd-11-stable/sys/libkern/ffsl.c
/freebsd-11-stable/sys/libkern/fls.c
/freebsd-11-stable/sys/libkern/flsl.c
/freebsd-11-stable/sys/libkern/flsll.c
/freebsd-11-stable/sys/libkern/fnmatch.c
/freebsd-11-stable/sys/libkern/lshrdi3.c
/freebsd-11-stable/sys/libkern/mcount.c
/freebsd-11-stable/sys/libkern/memchr.c
/freebsd-11-stable/sys/libkern/memcmp.c
/freebsd-11-stable/sys/libkern/moddi3.c
/freebsd-11-stable/sys/libkern/qdivrem.c
/freebsd-11-stable/sys/libkern/qsort.c
/freebsd-11-stable/sys/libkern/quad.h
/freebsd-11-stable/sys/libkern/random.c
/freebsd-11-stable/sys/libkern/scanc.c
/freebsd-11-stable/sys/libkern/strcasecmp.c
/freebsd-11-stable/sys/libkern/strcat.c
/freebsd-11-stable/sys/libkern/strchr.c
/freebsd-11-stable/sys/libkern/strcmp.c
/freebsd-11-stable/sys/libkern/strcpy.c
/freebsd-11-stable/sys/libkern/strncmp.c
/freebsd-11-stable/sys/libkern/strncpy.c
/freebsd-11-stable/sys/libkern/strrchr.c
/freebsd-11-stable/sys/libkern/strsep.c
/freebsd-11-stable/sys/libkern/strstr.c
/freebsd-11-stable/sys/libkern/strtol.c
/freebsd-11-stable/sys/libkern/strtoq.c
/freebsd-11-stable/sys/libkern/strtoul.c
/freebsd-11-stable/sys/libkern/strtouq.c
/freebsd-11-stable/sys/libkern/ucmpdi2.c
/freebsd-11-stable/sys/libkern/udivdi3.c
/freebsd-11-stable/sys/libkern/umoddi3.c
/freebsd-11-stable/sys/mips/adm5120/adm5120_machdep.c
/freebsd-11-stable/sys/mips/adm5120/adm5120reg.h
/freebsd-11-stable/sys/mips/adm5120/admpci.c
/freebsd-11-stable/sys/mips/adm5120/console.c
/freebsd-11-stable/sys/mips/adm5120/if_admsw.c
/freebsd-11-stable/sys/mips/adm5120/if_admswreg.h
/freebsd-11-stable/sys/mips/adm5120/if_admswvar.h
/freebsd-11-stable/sys/mips/adm5120/obio.c
/freebsd-11-stable/sys/mips/adm5120/obiovar.h
/freebsd-11-stable/sys/mips/adm5120/uart_bus_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_cpu_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.h
/freebsd-11-stable/sys/mips/alchemy/alchemy_machdep.c
/freebsd-11-stable/sys/mips/alchemy/aureg.h
/freebsd-11-stable/sys/mips/alchemy/obio.c
/freebsd-11-stable/sys/mips/alchemy/uart_bus_alchemy.c
/freebsd-11-stable/sys/mips/alchemy/uart_cpu_alchemy.c
/freebsd-11-stable/sys/mips/atheros/apb.c
/freebsd-11-stable/sys/mips/atheros/apbvar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_bus_space_reversed.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_bus_space_reversed.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_cpudef.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_ehci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpio.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpiovar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_machdep.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_ohci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci_bus_space.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci_bus_space.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_spi.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_wdog.c
/freebsd-11-stable/sys/mips/atheros/ar71xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar724x_pci.c
/freebsd-11-stable/sys/mips/atheros/ar724xreg.h
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar91xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar933x_uart.h
/freebsd-11-stable/sys/mips/atheros/ar933xreg.h
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar934xreg.h
/freebsd-11-stable/sys/mips/atheros/if_arge.c
/freebsd-11-stable/sys/mips/atheros/if_argevar.h
/freebsd-11-stable/sys/mips/atheros/pcf2123_rtc.c
/freebsd-11-stable/sys/mips/atheros/pcf2123reg.h
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.h
/freebsd-11-stable/sys/mips/beri/beri_machdep.c
/freebsd-11-stable/sys/mips/beri/beri_pic.c
/freebsd-11-stable/sys/mips/cavium/ciu.c
/freebsd-11-stable/sys/mips/cavium/cryptocteon/cavium_crypto.c
/freebsd-11-stable/sys/mips/cavium/cvmx_config.h
/freebsd-11-stable/sys/mips/cavium/if_octm.c
/freebsd-11-stable/sys/mips/cavium/obio.c
/freebsd-11-stable/sys/mips/cavium/obiovar.h
/freebsd-11-stable/sys/mips/cavium/octe/cavium-ethernet.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-defines.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-headers.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-sgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-spi.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-util.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-xaui.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphy.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphyreg.h
/freebsd-11-stable/sys/mips/cavium/octe/octe.c
/freebsd-11-stable/sys/mips/cavium/octe/octebus.c
/freebsd-11-stable/sys/mips/cavium/octe/octebusvar.h
/freebsd-11-stable/sys/mips/cavium/octe/wrapper-cvmx-includes.h
/freebsd-11-stable/sys/mips/cavium/octeon_cop2.h
/freebsd-11-stable/sys/mips/cavium/octeon_ds1337.c
/freebsd-11-stable/sys/mips/cavium/octeon_ebt3000_cf.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpio.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpiovar.h
/freebsd-11-stable/sys/mips/cavium/octeon_irq.h
/freebsd-11-stable/sys/mips/cavium/octeon_machdep.c
/freebsd-11-stable/sys/mips/cavium/octeon_mp.c
/freebsd-11-stable/sys/mips/cavium/octeon_pci_console.c
/freebsd-11-stable/sys/mips/cavium/octeon_pcmap_regs.h
/freebsd-11-stable/sys/mips/cavium/octeon_pmc.c
/freebsd-11-stable/sys/mips/cavium/octeon_rnd.c
/freebsd-11-stable/sys/mips/cavium/octeon_rtc.c
/freebsd-11-stable/sys/mips/cavium/octeon_wdog.c
/freebsd-11-stable/sys/mips/cavium/octopci.c
/freebsd-11-stable/sys/mips/cavium/octopci_bus_space.c
/freebsd-11-stable/sys/mips/cavium/octopcireg.h
/freebsd-11-stable/sys/mips/cavium/octopcivar.h
/freebsd-11-stable/sys/mips/cavium/uart_bus_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_cpu_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_dev_oct16550.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.h
/freebsd-11-stable/sys/mips/cavium/usb/octusb_octeon.c
/freebsd-11-stable/sys/mips/gxemul/gxemul_machdep.c
/freebsd-11-stable/sys/mips/gxemul/mpreg.h
/freebsd-11-stable/sys/mips/idt/idt_machdep.c
/freebsd-11-stable/sys/mips/idt/idtpci.c
/freebsd-11-stable/sys/mips/idt/idtreg.h
/freebsd-11-stable/sys/mips/idt/if_kr.c
/freebsd-11-stable/sys/mips/idt/if_krreg.h
/freebsd-11-stable/sys/mips/idt/obio.c
/freebsd-11-stable/sys/mips/idt/obiovar.h
/freebsd-11-stable/sys/mips/idt/uart_bus_rc32434.c
/freebsd-11-stable/sys/mips/idt/uart_cpu_rc32434.c
/freebsd-11-stable/sys/mips/include/_align.h
/freebsd-11-stable/sys/mips/include/_bus.h
/freebsd-11-stable/sys/mips/include/_inttypes.h
/freebsd-11-stable/sys/mips/include/_limits.h
/freebsd-11-stable/sys/mips/include/_stdint.h
/freebsd-11-stable/sys/mips/include/_types.h
/freebsd-11-stable/sys/mips/include/asm.h
/freebsd-11-stable/sys/mips/include/atomic.h
/freebsd-11-stable/sys/mips/include/bootinfo.h
/freebsd-11-stable/sys/mips/include/bus.h
/freebsd-11-stable/sys/mips/include/bus_dma.h
/freebsd-11-stable/sys/mips/include/cache.h
/freebsd-11-stable/sys/mips/include/cache_mipsNN.h
/freebsd-11-stable/sys/mips/include/cache_r4k.h
/freebsd-11-stable/sys/mips/include/counter.h
/freebsd-11-stable/sys/mips/include/cpu.h
/freebsd-11-stable/sys/mips/include/cpufunc.h
/freebsd-11-stable/sys/mips/include/cpuinfo.h
/freebsd-11-stable/sys/mips/include/cpuregs.h
/freebsd-11-stable/sys/mips/include/db_machdep.h
/freebsd-11-stable/sys/mips/include/elf.h
/freebsd-11-stable/sys/mips/include/endian.h
/freebsd-11-stable/sys/mips/include/exec.h
/freebsd-11-stable/sys/mips/include/fdt.h
/freebsd-11-stable/sys/mips/include/float.h
/freebsd-11-stable/sys/mips/include/floatingpoint.h
/freebsd-11-stable/sys/mips/include/fls64.h
/freebsd-11-stable/sys/mips/include/frame.h
/freebsd-11-stable/sys/mips/include/gdb_machdep.h
/freebsd-11-stable/sys/mips/include/hwfunc.h
/freebsd-11-stable/sys/mips/include/ieee.h
/freebsd-11-stable/sys/mips/include/in_cksum.h
/freebsd-11-stable/sys/mips/include/intr_machdep.h
/freebsd-11-stable/sys/mips/include/kdb.h
/freebsd-11-stable/sys/mips/include/limits.h
/freebsd-11-stable/sys/mips/include/md_var.h
/freebsd-11-stable/sys/mips/include/memdev.h
/freebsd-11-stable/sys/mips/include/metadata.h
/freebsd-11-stable/sys/mips/include/minidump.h
/freebsd-11-stable/sys/mips/include/mips_opcode.h
/freebsd-11-stable/sys/mips/include/octeon_cop2.h
/freebsd-11-stable/sys/mips/include/ofw_machdep.h
/freebsd-11-stable/sys/mips/include/param.h
/freebsd-11-stable/sys/mips/include/pcb.h
/freebsd-11-stable/sys/mips/include/pcpu.h
/freebsd-11-stable/sys/mips/include/pmap.h
/freebsd-11-stable/sys/mips/include/proc.h
/freebsd-11-stable/sys/mips/include/profile.h
/freebsd-11-stable/sys/mips/include/pte.h
/freebsd-11-stable/sys/mips/include/ptrace.h
/freebsd-11-stable/sys/mips/include/reg.h
/freebsd-11-stable/sys/mips/include/regdef.h
/freebsd-11-stable/sys/mips/include/regnum.h
/freebsd-11-stable/sys/mips/include/reloc.h
/freebsd-11-stable/sys/mips/include/runq.h
/freebsd-11-stable/sys/mips/include/sc_machdep.h
/freebsd-11-stable/sys/mips/include/sf_buf.h
/freebsd-11-stable/sys/mips/include/sigframe.h
/freebsd-11-stable/sys/mips/include/signal.h
/freebsd-11-stable/sys/mips/include/sysarch.h
/freebsd-11-stable/sys/mips/include/tlb.h
/freebsd-11-stable/sys/mips/include/tls.h
/freebsd-11-stable/sys/mips/include/trap.h
/freebsd-11-stable/sys/mips/include/ucontext.h
/freebsd-11-stable/sys/mips/include/varargs.h
/freebsd-11-stable/sys/mips/include/vdso.h
/freebsd-11-stable/sys/mips/include/vm.h
/freebsd-11-stable/sys/mips/include/vmparam.h
/freebsd-11-stable/sys/mips/malta/gt.c
/freebsd-11-stable/sys/mips/malta/gt_pci.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.h
/freebsd-11-stable/sys/mips/malta/gtreg.h
/freebsd-11-stable/sys/mips/malta/gtvar.h
/freebsd-11-stable/sys/mips/malta/malta_machdep.c
/freebsd-11-stable/sys/mips/malta/maltareg.h
/freebsd-11-stable/sys/mips/malta/obio.c
/freebsd-11-stable/sys/mips/malta/obiovar.h
/freebsd-11-stable/sys/mips/malta/uart_bus_maltausart.c
/freebsd-11-stable/sys/mips/malta/uart_cpu_maltausart.c
/freebsd-11-stable/sys/mips/malta/yamon.c
/freebsd-11-stable/sys/mips/malta/yamon.h
/freebsd-11-stable/sys/mips/mips/autoconf.c
/freebsd-11-stable/sys/mips/mips/bus_space_generic.c
/freebsd-11-stable/sys/mips/mips/busdma_machdep.c
/freebsd-11-stable/sys/mips/mips/cache.c
/freebsd-11-stable/sys/mips/mips/cache_mipsNN.c
/freebsd-11-stable/sys/mips/mips/cpu.c
/freebsd-11-stable/sys/mips/mips/db_disasm.c
/freebsd-11-stable/sys/mips/mips/db_interface.c
/freebsd-11-stable/sys/mips/mips/db_trace.c
/freebsd-11-stable/sys/mips/mips/dump_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_trampoline.c
/freebsd-11-stable/sys/mips/mips/freebsd32_machdep.c
/freebsd-11-stable/sys/mips/mips/gdb_machdep.c
/freebsd-11-stable/sys/mips/mips/genassym.c
/freebsd-11-stable/sys/mips/mips/in_cksum.c
/freebsd-11-stable/sys/mips/mips/intr_machdep.c
/freebsd-11-stable/sys/mips/mips/libkern_machdep.c
/freebsd-11-stable/sys/mips/mips/machdep.c
/freebsd-11-stable/sys/mips/mips/mem.c
/freebsd-11-stable/sys/mips/mips/minidump_machdep.c
/freebsd-11-stable/sys/mips/mips/mp_machdep.c
/freebsd-11-stable/sys/mips/mips/octeon_cop2.c
/freebsd-11-stable/sys/mips/mips/pm_machdep.c
/freebsd-11-stable/sys/mips/mips/pmap.c
/freebsd-11-stable/sys/mips/mips/ptrace_machdep.c
/freebsd-11-stable/sys/mips/mips/sc_machdep.c
/freebsd-11-stable/sys/mips/mips/stack_machdep.c
/freebsd-11-stable/sys/mips/mips/stdatomic.c
/freebsd-11-stable/sys/mips/mips/sys_machdep.c
/freebsd-11-stable/sys/mips/mips/tick.c
/freebsd-11-stable/sys/mips/mips/tlb.c
/freebsd-11-stable/sys/mips/mips/trap.c
/freebsd-11-stable/sys/mips/mips/uio_machdep.c
/freebsd-11-stable/sys/mips/mips/uma_machdep.c
/freebsd-11-stable/sys/mips/mips/vm_machdep.c
/freebsd-11-stable/sys/mips/nlm/board.c
/freebsd-11-stable/sys/mips/nlm/board.h
/freebsd-11-stable/sys/mips/nlm/board_cpld.c
/freebsd-11-stable/sys/mips/nlm/board_eeprom.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/nlm/clock.h
/freebsd-11-stable/sys/mips/nlm/cms.c
/freebsd-11-stable/sys/mips/nlm/dev/net/mdio.c
/freebsd-11-stable/sys/mips/nlm/dev/net/nae.c
/freebsd-11-stable/sys/mips/nlm/dev/net/sgmii.c
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore.h
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore_app.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xaui.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsa.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsalib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmsec.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/rsa_ucode.h
/freebsd-11-stable/sys/mips/nlm/hal/bridge.h
/freebsd-11-stable/sys/mips/nlm/hal/cop2.h
/freebsd-11-stable/sys/mips/nlm/hal/cpucontrol.h
/freebsd-11-stable/sys/mips/nlm/hal/fmn.c
/freebsd-11-stable/sys/mips/nlm/hal/fmn.h
/freebsd-11-stable/sys/mips/nlm/hal/gbu.h
/freebsd-11-stable/sys/mips/nlm/hal/haldefs.h
/freebsd-11-stable/sys/mips/nlm/hal/interlaken.h
/freebsd-11-stable/sys/mips/nlm/hal/iomap.h
/freebsd-11-stable/sys/mips/nlm/hal/mdio.h
/freebsd-11-stable/sys/mips/nlm/hal/mips-extns.h
/freebsd-11-stable/sys/mips/nlm/hal/mmu.h
/freebsd-11-stable/sys/mips/nlm/hal/nae.h
/freebsd-11-stable/sys/mips/nlm/hal/nlm_hal.c
/freebsd-11-stable/sys/mips/nlm/hal/nlmsaelib.h
/freebsd-11-stable/sys/mips/nlm/hal/pcibus.h
/freebsd-11-stable/sys/mips/nlm/hal/pic.h
/freebsd-11-stable/sys/mips/nlm/hal/poe.h
/freebsd-11-stable/sys/mips/nlm/hal/sgmii.h
/freebsd-11-stable/sys/mips/nlm/hal/sys.h
/freebsd-11-stable/sys/mips/nlm/hal/uart.h
/freebsd-11-stable/sys/mips/nlm/hal/ucore_loader.h
/freebsd-11-stable/sys/mips/nlm/hal/usb.h
/freebsd-11-stable/sys/mips/nlm/hal/xaui.h
/freebsd-11-stable/sys/mips/nlm/interrupt.h
/freebsd-11-stable/sys/mips/nlm/intr_machdep.c
/freebsd-11-stable/sys/mips/nlm/msgring.h
/freebsd-11-stable/sys/mips/nlm/tick.c
/freebsd-11-stable/sys/mips/nlm/uart_cpu_xlp.c
/freebsd-11-stable/sys/mips/nlm/usb_init.c
/freebsd-11-stable/sys/mips/nlm/xlp.h
/freebsd-11-stable/sys/mips/nlm/xlp_machdep.c
/freebsd-11-stable/sys/mips/nlm/xlp_pci.c
/freebsd-11-stable/sys/mips/rmi/board.c
/freebsd-11-stable/sys/mips/rmi/board.h
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi.c
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/at24co2n.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/max6657.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/desc.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.c
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmisec.c
/freebsd-11-stable/sys/mips/rmi/dev/xlr/atx_cpld.h
/freebsd-11-stable/sys/mips/rmi/dev/xlr/debug.h
/freebsd-11-stable/sys/mips/rmi/dev/xlr/xgmac_mdio.h
/freebsd-11-stable/sys/mips/rmi/fmn.c
/freebsd-11-stable/sys/mips/rmi/interrupt.h
/freebsd-11-stable/sys/mips/rmi/intr_machdep.c
/freebsd-11-stable/sys/mips/rmi/iodi.c
/freebsd-11-stable/sys/mips/rmi/iomap.h
/freebsd-11-stable/sys/mips/rmi/msgring.c
/freebsd-11-stable/sys/mips/rmi/msgring.cfg
/freebsd-11-stable/sys/mips/rmi/msgring.h
/freebsd-11-stable/sys/mips/rmi/pcibus.h
/freebsd-11-stable/sys/mips/rmi/pic.h
/freebsd-11-stable/sys/mips/rmi/rmi_boot_info.h
/freebsd-11-stable/sys/mips/rmi/rmi_mips_exts.h
/freebsd-11-stable/sys/mips/rmi/tick.c
/freebsd-11-stable/sys/mips/rmi/uart_bus_xlr_iodi.c
/freebsd-11-stable/sys/mips/rmi/uart_cpu_mips_xlr.c
/freebsd-11-stable/sys/mips/rmi/xlr_i2c.c
/freebsd-11-stable/sys/mips/rmi/xlr_machdep.c
/freebsd-11-stable/sys/mips/rmi/xlr_pci.c
/freebsd-11-stable/sys/mips/rmi/xlr_pcmcia.c
/freebsd-11-stable/sys/mips/rmi/xls_ehci.c
/freebsd-11-stable/sys/mips/rt305x/obio.c
/freebsd-11-stable/sys/mips/rt305x/obiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_dotg.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_ic.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_icvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_machdep.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctl.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctlvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305xreg.h
/freebsd-11-stable/sys/mips/rt305x/rt_swreg.h
/freebsd-11-stable/sys/mips/rt305x/uart_bus_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_cpu_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.h
/freebsd-11-stable/sys/mips/sibyte/ata_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_bus_space.h
/freebsd-11-stable/sys/mips/sibyte/sb_machdep.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.h
/freebsd-11-stable/sys/mips/sibyte/sb_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_zbpci.c
/freebsd-11-stable/sys/net/bpf.c
/freebsd-11-stable/sys/net/bpf.h
/freebsd-11-stable/sys/net/bpf_buffer.c
/freebsd-11-stable/sys/net/bpf_filter.c
/freebsd-11-stable/sys/net/bpf_jitter.c
/freebsd-11-stable/sys/net/bpf_jitter.h
/freebsd-11-stable/sys/net/bpfdesc.h
/freebsd-11-stable/sys/net/fddi.h
/freebsd-11-stable/sys/net/if.c
/freebsd-11-stable/sys/net/if.h
/freebsd-11-stable/sys/net/if_arc.h
/freebsd-11-stable/sys/net/if_arcsubr.c
/freebsd-11-stable/sys/net/if_arp.h
/freebsd-11-stable/sys/net/if_clone.c
/freebsd-11-stable/sys/net/if_clone.h
/freebsd-11-stable/sys/net/if_disc.c
/freebsd-11-stable/sys/net/if_dl.h
/freebsd-11-stable/sys/net/if_edsc.c
/freebsd-11-stable/sys/net/if_ethersubr.c
/freebsd-11-stable/sys/net/if_fddisubr.c
/freebsd-11-stable/sys/net/if_fwsubr.c
/freebsd-11-stable/sys/net/if_gif.c
/freebsd-11-stable/sys/net/if_gif.h
/freebsd-11-stable/sys/net/if_llc.h
/freebsd-11-stable/sys/net/if_loop.c
/freebsd-11-stable/sys/net/if_stf.c
/freebsd-11-stable/sys/net/if_types.h
/freebsd-11-stable/sys/net/if_var.h
/freebsd-11-stable/sys/net/ifq.h
/freebsd-11-stable/sys/net/pfkeyv2.h
/freebsd-11-stable/sys/net/radix.c
/freebsd-11-stable/sys/net/radix.h
/freebsd-11-stable/sys/net/radix_mpath.c
/freebsd-11-stable/sys/net/radix_mpath.h
/freebsd-11-stable/sys/net/raw_cb.c
/freebsd-11-stable/sys/net/raw_cb.h
/freebsd-11-stable/sys/net/raw_usrreq.c
/freebsd-11-stable/sys/net/route.c
/freebsd-11-stable/sys/net/route.h
/freebsd-11-stable/sys/net/rtsock.c
/freebsd-11-stable/sys/net/slcompress.c
/freebsd-11-stable/sys/net/slcompress.h
/freebsd-11-stable/sys/netinet/icmp6.h
/freebsd-11-stable/sys/netinet/icmp_var.h
/freebsd-11-stable/sys/netinet/if_ether.c
/freebsd-11-stable/sys/netinet/if_ether.h
/freebsd-11-stable/sys/netinet/igmp.c
/freebsd-11-stable/sys/netinet/igmp.h
/freebsd-11-stable/sys/netinet/igmp_var.h
/freebsd-11-stable/sys/netinet/in.c
/freebsd-11-stable/sys/netinet/in.h
/freebsd-11-stable/sys/netinet/in_cksum.c
/freebsd-11-stable/sys/netinet/in_gif.c
/freebsd-11-stable/sys/netinet/in_pcb.c
/freebsd-11-stable/sys/netinet/in_pcb.h
/freebsd-11-stable/sys/netinet/in_proto.c
/freebsd-11-stable/sys/netinet/in_systm.h
/freebsd-11-stable/sys/netinet/in_var.h
/freebsd-11-stable/sys/netinet/ip.h
/freebsd-11-stable/sys/netinet/ip6.h
/freebsd-11-stable/sys/netinet/ip_divert.c
/freebsd-11-stable/sys/netinet/ip_ecn.c
/freebsd-11-stable/sys/netinet/ip_ecn.h
/freebsd-11-stable/sys/netinet/ip_encap.c
/freebsd-11-stable/sys/netinet/ip_encap.h
/freebsd-11-stable/sys/netinet/ip_icmp.c
/freebsd-11-stable/sys/netinet/ip_icmp.h
/freebsd-11-stable/sys/netinet/ip_input.c
/freebsd-11-stable/sys/netinet/ip_mroute.c
/freebsd-11-stable/sys/netinet/ip_mroute.h
/freebsd-11-stable/sys/netinet/ip_options.c
/freebsd-11-stable/sys/netinet/ip_options.h
/freebsd-11-stable/sys/netinet/ip_output.c
/freebsd-11-stable/sys/netinet/ip_var.h
/freebsd-11-stable/sys/netinet/pim.h
/freebsd-11-stable/sys/netinet/pim_var.h
/freebsd-11-stable/sys/netinet/raw_ip.c
/freebsd-11-stable/sys/netinet/sctp.h
/freebsd-11-stable/sys/netinet/sctp_asconf.c
/freebsd-11-stable/sys/netinet/sctp_asconf.h
/freebsd-11-stable/sys/netinet/sctp_auth.c
/freebsd-11-stable/sys/netinet/sctp_auth.h
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.c
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.h
/freebsd-11-stable/sys/netinet/sctp_cc_functions.c
/freebsd-11-stable/sys/netinet/sctp_constants.h
/freebsd-11-stable/sys/netinet/sctp_crc32.c
/freebsd-11-stable/sys/netinet/sctp_crc32.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_declare.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_define.h
/freebsd-11-stable/sys/netinet/sctp_header.h
/freebsd-11-stable/sys/netinet/sctp_indata.c
/freebsd-11-stable/sys/netinet/sctp_indata.h
/freebsd-11-stable/sys/netinet/sctp_input.c
/freebsd-11-stable/sys/netinet/sctp_input.h
/freebsd-11-stable/sys/netinet/sctp_lock_bsd.h
/freebsd-11-stable/sys/netinet/sctp_os.h
/freebsd-11-stable/sys/netinet/sctp_os_bsd.h
/freebsd-11-stable/sys/netinet/sctp_output.c
/freebsd-11-stable/sys/netinet/sctp_output.h
/freebsd-11-stable/sys/netinet/sctp_pcb.c
/freebsd-11-stable/sys/netinet/sctp_pcb.h
/freebsd-11-stable/sys/netinet/sctp_peeloff.c
/freebsd-11-stable/sys/netinet/sctp_peeloff.h
/freebsd-11-stable/sys/netinet/sctp_structs.h
/freebsd-11-stable/sys/netinet/sctp_sysctl.c
/freebsd-11-stable/sys/netinet/sctp_sysctl.h
/freebsd-11-stable/sys/netinet/sctp_timer.c
/freebsd-11-stable/sys/netinet/sctp_timer.h
/freebsd-11-stable/sys/netinet/sctp_uio.h
/freebsd-11-stable/sys/netinet/sctp_usrreq.c
/freebsd-11-stable/sys/netinet/sctp_var.h
/freebsd-11-stable/sys/netinet/sctputil.c
/freebsd-11-stable/sys/netinet/sctputil.h
/freebsd-11-stable/sys/netinet/tcp.h
/freebsd-11-stable/sys/netinet/tcp_debug.c
/freebsd-11-stable/sys/netinet/tcp_debug.h
/freebsd-11-stable/sys/netinet/tcp_fsm.h
/freebsd-11-stable/sys/netinet/tcp_input.c
/freebsd-11-stable/sys/netinet/tcp_output.c
/freebsd-11-stable/sys/netinet/tcp_reass.c
/freebsd-11-stable/sys/netinet/tcp_sack.c
/freebsd-11-stable/sys/netinet/tcp_seq.h
/freebsd-11-stable/sys/netinet/tcp_subr.c
/freebsd-11-stable/sys/netinet/tcp_syncache.h
/freebsd-11-stable/sys/netinet/tcp_timer.c
/freebsd-11-stable/sys/netinet/tcp_timer.h
/freebsd-11-stable/sys/netinet/tcp_timewait.c
/freebsd-11-stable/sys/netinet/tcp_usrreq.c
/freebsd-11-stable/sys/netinet/tcp_var.h
/freebsd-11-stable/sys/netinet/tcpip.h
/freebsd-11-stable/sys/netinet/udp.h
/freebsd-11-stable/sys/netinet/udp_usrreq.c
/freebsd-11-stable/sys/netinet/udp_var.h
/freebsd-11-stable/sys/netinet6/dest6.c
/freebsd-11-stable/sys/netinet6/frag6.c
/freebsd-11-stable/sys/netinet6/icmp6.c
/freebsd-11-stable/sys/netinet6/in6.c
/freebsd-11-stable/sys/netinet6/in6.h
/freebsd-11-stable/sys/netinet6/in6_cksum.c
/freebsd-11-stable/sys/netinet6/in6_gif.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.h
/freebsd-11-stable/sys/netinet6/in6_pcb.c
/freebsd-11-stable/sys/netinet6/in6_pcb.h
/freebsd-11-stable/sys/netinet6/in6_proto.c
/freebsd-11-stable/sys/netinet6/in6_rmx.c
/freebsd-11-stable/sys/netinet6/in6_src.c
/freebsd-11-stable/sys/netinet6/in6_var.h
/freebsd-11-stable/sys/netinet6/ip6_ecn.h
/freebsd-11-stable/sys/netinet6/ip6_forward.c
/freebsd-11-stable/sys/netinet6/ip6_id.c
/freebsd-11-stable/sys/netinet6/ip6_input.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.h
/freebsd-11-stable/sys/netinet6/ip6_output.c
/freebsd-11-stable/sys/netinet6/ip6_var.h
/freebsd-11-stable/sys/netinet6/ip6protosw.h
/freebsd-11-stable/sys/netinet6/mld6.c
/freebsd-11-stable/sys/netinet6/nd6.c
/freebsd-11-stable/sys/netinet6/nd6.h
/freebsd-11-stable/sys/netinet6/nd6_nbr.c
/freebsd-11-stable/sys/netinet6/nd6_rtr.c
/freebsd-11-stable/sys/netinet6/pim6.h
/freebsd-11-stable/sys/netinet6/pim6_var.h
/freebsd-11-stable/sys/netinet6/raw_ip6.c
/freebsd-11-stable/sys/netinet6/raw_ip6.h
/freebsd-11-stable/sys/netinet6/route6.c
/freebsd-11-stable/sys/netinet6/scope6.c
/freebsd-11-stable/sys/netinet6/scope6_var.h
/freebsd-11-stable/sys/netinet6/sctp6_usrreq.c
/freebsd-11-stable/sys/netinet6/sctp6_var.h
/freebsd-11-stable/sys/netinet6/tcp6_var.h
/freebsd-11-stable/sys/netinet6/udp6_usrreq.c
/freebsd-11-stable/sys/netinet6/udp6_var.h
/freebsd-11-stable/sys/netipsec/ah.h
/freebsd-11-stable/sys/netipsec/esp.h
/freebsd-11-stable/sys/netipsec/ipcomp.h
/freebsd-11-stable/sys/netipsec/ipcomp_var.h
/freebsd-11-stable/sys/netipsec/ipsec.c
/freebsd-11-stable/sys/netipsec/ipsec.h
/freebsd-11-stable/sys/netipsec/ipsec6.h
/freebsd-11-stable/sys/netipsec/key.c
/freebsd-11-stable/sys/netipsec/key.h
/freebsd-11-stable/sys/netipsec/key_debug.c
/freebsd-11-stable/sys/netipsec/key_debug.h
/freebsd-11-stable/sys/netipsec/key_var.h
/freebsd-11-stable/sys/netipsec/keydb.h
/freebsd-11-stable/sys/netipsec/keysock.c
/freebsd-11-stable/sys/netipsec/keysock.h
/freebsd-11-stable/sys/netpfil/pf/in4_cksum.c
/freebsd-11-stable/sys/netsmb/smb_crypt.c
/freebsd-11-stable/sys/nfs/bootp_subr.c
/freebsd-11-stable/sys/nfs/krpc_subr.c
/freebsd-11-stable/sys/nfs/nfs_common.h
/freebsd-11-stable/sys/nfs/nfs_diskless.c
/freebsd-11-stable/sys/nfs/nfs_nfssvc.c
/freebsd-11-stable/sys/nfs/nfsdiskless.h
/freebsd-11-stable/sys/nfs/nfsproto.h
/freebsd-11-stable/sys/nfs/nfssvc.h
/freebsd-11-stable/sys/nfs/xdr_subs.h
/freebsd-11-stable/sys/nfsclient/nfs.h
/freebsd-11-stable/sys/nfsclient/nfsargs.h
/freebsd-11-stable/sys/nfsclient/nfsm_subs.h
/freebsd-11-stable/sys/nfsclient/nfsmount.h
/freebsd-11-stable/sys/nfsclient/nfsnode.h
/freebsd-11-stable/sys/nfsclient/nfsstats.h
/freebsd-11-stable/sys/nfsserver/nfs.h
/freebsd-11-stable/sys/nfsserver/nfsm_subs.h
/freebsd-11-stable/sys/nfsserver/nfsrvcache.h
/freebsd-11-stable/sys/nfsserver/nfsrvstats.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.h
/freebsd-11-stable/sys/powerpc/aim/moea64_native.c
/freebsd-11-stable/sys/powerpc/aim/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/aim/slb.c
/freebsd-11-stable/sys/powerpc/booke/machdep_e500.c
/freebsd-11-stable/sys/powerpc/booke/machdep_ppc4xx.c
/freebsd-11-stable/sys/powerpc/booke/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/booke/platform_bare.c
/freebsd-11-stable/sys/powerpc/booke/pmap.c
/freebsd-11-stable/sys/powerpc/cpufreq/dfs.c
/freebsd-11-stable/sys/powerpc/cpufreq/pcr.c
/freebsd-11-stable/sys/powerpc/cpufreq/pmufreq.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_add.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_arith.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_compare.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_div.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_explode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_extern.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_implode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_instr.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_mul.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_sqrt.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_subr.c
/freebsd-11-stable/sys/powerpc/include/_align.h
/freebsd-11-stable/sys/powerpc/include/_bus.h
/freebsd-11-stable/sys/powerpc/include/_inttypes.h
/freebsd-11-stable/sys/powerpc/include/_limits.h
/freebsd-11-stable/sys/powerpc/include/_stdint.h
/freebsd-11-stable/sys/powerpc/include/_types.h
/freebsd-11-stable/sys/powerpc/include/altivec.h
/freebsd-11-stable/sys/powerpc/include/asm.h
/freebsd-11-stable/sys/powerpc/include/atomic.h
/freebsd-11-stable/sys/powerpc/include/bat.h
/freebsd-11-stable/sys/powerpc/include/bus.h
/freebsd-11-stable/sys/powerpc/include/bus_dma.h
/freebsd-11-stable/sys/powerpc/include/counter.h
/freebsd-11-stable/sys/powerpc/include/cpu.h
/freebsd-11-stable/sys/powerpc/include/cpufunc.h
/freebsd-11-stable/sys/powerpc/include/dbdma.h
/freebsd-11-stable/sys/powerpc/include/elf.h
/freebsd-11-stable/sys/powerpc/include/endian.h
/freebsd-11-stable/sys/powerpc/include/exec.h
/freebsd-11-stable/sys/powerpc/include/float.h
/freebsd-11-stable/sys/powerpc/include/floatingpoint.h
/freebsd-11-stable/sys/powerpc/include/fpu.h
/freebsd-11-stable/sys/powerpc/include/frame.h
/freebsd-11-stable/sys/powerpc/include/gdb_machdep.h
/freebsd-11-stable/sys/powerpc/include/hid.h
/freebsd-11-stable/sys/powerpc/include/ieee.h
/freebsd-11-stable/sys/powerpc/include/in_cksum.h
/freebsd-11-stable/sys/powerpc/include/intr_machdep.h
/freebsd-11-stable/sys/powerpc/include/kdb.h
/freebsd-11-stable/sys/powerpc/include/limits.h
/freebsd-11-stable/sys/powerpc/include/machdep.h
/freebsd-11-stable/sys/powerpc/include/md_var.h
/freebsd-11-stable/sys/powerpc/include/memdev.h
/freebsd-11-stable/sys/powerpc/include/metadata.h
/freebsd-11-stable/sys/powerpc/include/mmuvar.h
/freebsd-11-stable/sys/powerpc/include/ofw_machdep.h
/freebsd-11-stable/sys/powerpc/include/openpicreg.h
/freebsd-11-stable/sys/powerpc/include/openpicvar.h
/freebsd-11-stable/sys/powerpc/include/param.h
/freebsd-11-stable/sys/powerpc/include/pcb.h
/freebsd-11-stable/sys/powerpc/include/pcpu.h
/freebsd-11-stable/sys/powerpc/include/pio.h
/freebsd-11-stable/sys/powerpc/include/platform.h
/freebsd-11-stable/sys/powerpc/include/platformvar.h
/freebsd-11-stable/sys/powerpc/include/pmap.h
/freebsd-11-stable/sys/powerpc/include/proc.h
/freebsd-11-stable/sys/powerpc/include/psl.h
/freebsd-11-stable/sys/powerpc/include/pte.h
/freebsd-11-stable/sys/powerpc/include/ptrace.h
/freebsd-11-stable/sys/powerpc/include/reloc.h
/freebsd-11-stable/sys/powerpc/include/rtas.h
/freebsd-11-stable/sys/powerpc/include/runq.h
/freebsd-11-stable/sys/powerpc/include/sc_machdep.h
/freebsd-11-stable/sys/powerpc/include/sigframe.h
/freebsd-11-stable/sys/powerpc/include/signal.h
/freebsd-11-stable/sys/powerpc/include/slb.h
/freebsd-11-stable/sys/powerpc/include/smp.h
/freebsd-11-stable/sys/powerpc/include/spr.h
/freebsd-11-stable/sys/powerpc/include/sr.h
/freebsd-11-stable/sys/powerpc/include/stdarg.h
/freebsd-11-stable/sys/powerpc/include/sysarch.h
/freebsd-11-stable/sys/powerpc/include/tlb.h
/freebsd-11-stable/sys/powerpc/include/trap.h
/freebsd-11-stable/sys/powerpc/include/ucontext.h
/freebsd-11-stable/sys/powerpc/include/varargs.h
/freebsd-11-stable/sys/powerpc/include/vdso.h
/freebsd-11-stable/sys/powerpc/include/vm.h
/freebsd-11-stable/sys/powerpc/include/vmparam.h
/freebsd-11-stable/sys/powerpc/mambo/mambo.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_console.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_disk.c
/freebsd-11-stable/sys/powerpc/mambo/mambocall.h
/freebsd-11-stable/sys/powerpc/mpc85xx/atpic.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_bus_fdt.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_core.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_reg.h
/freebsd-11-stable/sys/powerpc/mpc85xx/i2c.c
/freebsd-11-stable/sys/powerpc/mpc85xx/isa.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.h
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.h
/freebsd-11-stable/sys/powerpc/mpc85xx/pci_mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/platform_mpc85xx.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_machdep.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcib_pci.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.h
/freebsd-11-stable/sys/powerpc/ofw/ofw_real.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.h
/freebsd-11-stable/sys/powerpc/ofw/openpic_ofw.c
/freebsd-11-stable/sys/powerpc/ofw/rtas.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.h
/freebsd-11-stable/sys/powerpc/powermac/ata_kauai.c
/freebsd-11-stable/sys/powerpc/powermac/ata_macio.c
/freebsd-11-stable/sys/powerpc/powermac/atibl.c
/freebsd-11-stable/sys/powerpc/powermac/cpcht.c
/freebsd-11-stable/sys/powerpc/powermac/cuda.c
/freebsd-11-stable/sys/powerpc/powermac/cudavar.h
/freebsd-11-stable/sys/powerpc/powermac/dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/dbdmavar.h
/freebsd-11-stable/sys/powerpc/powermac/fcu.c
/freebsd-11-stable/sys/powerpc/powermac/grackle.c
/freebsd-11-stable/sys/powerpc/powermac/gracklevar.h
/freebsd-11-stable/sys/powerpc/powermac/hrowpic.c
/freebsd-11-stable/sys/powerpc/powermac/hrowpicvar.h
/freebsd-11-stable/sys/powerpc/powermac/kiic.c
/freebsd-11-stable/sys/powerpc/powermac/macgpio.c
/freebsd-11-stable/sys/powerpc/powermac/macgpiovar.h
/freebsd-11-stable/sys/powerpc/powermac/macio.c
/freebsd-11-stable/sys/powerpc/powermac/maciovar.h
/freebsd-11-stable/sys/powerpc/powermac/nvbl.c
/freebsd-11-stable/sys/powerpc/powermac/platform_powermac.c
/freebsd-11-stable/sys/powerpc/powermac/pmu.c
/freebsd-11-stable/sys/powerpc/powermac/pmuvar.h
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.c
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.h
/freebsd-11-stable/sys/powerpc/powermac/pswitch.c
/freebsd-11-stable/sys/powerpc/powermac/smu.c
/freebsd-11-stable/sys/powerpc/powermac/smusat.c
/freebsd-11-stable/sys/powerpc/powermac/uninorth.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthpci.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthvar.h
/freebsd-11-stable/sys/powerpc/powermac/vcoregpio.c
/freebsd-11-stable/sys/powerpc/powermac/viareg.h
/freebsd-11-stable/sys/powerpc/powerpc/altivec.c
/freebsd-11-stable/sys/powerpc/powerpc/autoconf.c
/freebsd-11-stable/sys/powerpc/powerpc/bcopy.c
/freebsd-11-stable/sys/powerpc/powerpc/bus_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/busdma_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/clock.c
/freebsd-11-stable/sys/powerpc/powerpc/copyinout.c
/freebsd-11-stable/sys/powerpc/powerpc/copystr.c
/freebsd-11-stable/sys/powerpc/powerpc/cpu.c
/freebsd-11-stable/sys/powerpc/powerpc/db_hwwatch.c
/freebsd-11-stable/sys/powerpc/powerpc/dump_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf32_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf64_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/exec_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/fpu.c
/freebsd-11-stable/sys/powerpc/powerpc/fuswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/gdb_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/genassym.c
/freebsd-11-stable/sys/powerpc/powerpc/in_cksum.c
/freebsd-11-stable/sys/powerpc/powerpc/intr_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/mem.c
/freebsd-11-stable/sys/powerpc/powerpc/mp_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/openpic.c
/freebsd-11-stable/sys/powerpc/powerpc/platform.c
/freebsd-11-stable/sys/powerpc/powerpc/pmap_dispatch.c
/freebsd-11-stable/sys/powerpc/powerpc/sc_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/stack_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/suswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/syncicache.c
/freebsd-11-stable/sys/powerpc/powerpc/sys_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/uio_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/vm_machdep.c
/freebsd-11-stable/sys/powerpc/ps3/ehci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/if_glc.c
/freebsd-11-stable/sys/powerpc/ps3/if_glcreg.h
/freebsd-11-stable/sys/powerpc/ps3/mmu_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ohci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/platform_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ps3_syscons.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.h
/freebsd-11-stable/sys/powerpc/ps3/ps3cdrom.c
/freebsd-11-stable/sys/powerpc/ps3/ps3disk.c
/freebsd-11-stable/sys/powerpc/ps3/ps3pic.c
/freebsd-11-stable/sys/powerpc/pseries/mmu_phyp.c
/freebsd-11-stable/sys/powerpc/pseries/phyp-hvcall.h
/freebsd-11-stable/sys/powerpc/pseries/phyp_console.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_llan.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_vscsi.c
/freebsd-11-stable/sys/powerpc/pseries/platform_chrp.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.h
/freebsd-11-stable/sys/powerpc/pseries/plpar_pcibus.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_dev.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_pci.c
/freebsd-11-stable/sys/powerpc/pseries/vdevice.c
/freebsd-11-stable/sys/powerpc/pseries/xics.c
/freebsd-11-stable/sys/powerpc/psim/ata_iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobusvar.h
/freebsd-11-stable/sys/powerpc/psim/openpic_iobus.c
/freebsd-11-stable/sys/powerpc/psim/uart_iobus.c
/freebsd-11-stable/sys/riscv/riscv/in_cksum.c
/freebsd-11-stable/sys/riscv/riscv/pmap.c
/freebsd-11-stable/sys/rpc/auth.h
/freebsd-11-stable/sys/rpc/auth_none.c
/freebsd-11-stable/sys/rpc/auth_unix.c
/freebsd-11-stable/sys/rpc/authunix_prot.c
/freebsd-11-stable/sys/rpc/clnt.h
/freebsd-11-stable/sys/rpc/clnt_dg.c
/freebsd-11-stable/sys/rpc/clnt_vc.c
/freebsd-11-stable/sys/rpc/krpc.h
/freebsd-11-stable/sys/rpc/nettype.h
/freebsd-11-stable/sys/rpc/pmap_prot.h
/freebsd-11-stable/sys/rpc/rpc.h
/freebsd-11-stable/sys/rpc/rpc_callmsg.c
/freebsd-11-stable/sys/rpc/rpc_com.h
/freebsd-11-stable/sys/rpc/rpc_generic.c
/freebsd-11-stable/sys/rpc/rpc_msg.h
/freebsd-11-stable/sys/rpc/rpc_prot.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.h
/freebsd-11-stable/sys/rpc/rpcb_prot.c
/freebsd-11-stable/sys/rpc/rpcb_prot.h
/freebsd-11-stable/sys/rpc/rpcm_subs.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/sys/rpc/svc.c
/freebsd-11-stable/sys/rpc/svc.h
/freebsd-11-stable/sys/rpc/svc_auth.c
/freebsd-11-stable/sys/rpc/svc_auth.h
/freebsd-11-stable/sys/rpc/svc_auth_unix.c
/freebsd-11-stable/sys/rpc/svc_dg.c
/freebsd-11-stable/sys/rpc/svc_generic.c
/freebsd-11-stable/sys/rpc/svc_vc.c
/freebsd-11-stable/sys/rpc/types.h
/freebsd-11-stable/sys/rpc/xdr.h
/freebsd-11-stable/sys/security/audit/audit.c
/freebsd-11-stable/sys/security/audit/audit.h
/freebsd-11-stable/sys/security/audit/audit_arg.c
/freebsd-11-stable/sys/security/audit/audit_bsm.c
/freebsd-11-stable/sys/security/audit/audit_bsm_klib.c
/freebsd-11-stable/sys/security/audit/audit_private.h
/freebsd-11-stable/sys/security/audit/audit_syscalls.c
/freebsd-11-stable/sys/security/audit/audit_worker.c
/freebsd-11-stable/sys/security/audit/bsm_domain.c
/freebsd-11-stable/sys/security/audit/bsm_errno.c
/freebsd-11-stable/sys/security/audit/bsm_fcntl.c
/freebsd-11-stable/sys/security/audit/bsm_socket_type.c
/freebsd-11-stable/sys/security/audit/bsm_token.c
/freebsd-11-stable/sys/sparc64/include/_types.h
/freebsd-11-stable/sys/sparc64/include/asm.h
/freebsd-11-stable/sys/sparc64/include/bus_common.h
/freebsd-11-stable/sys/sparc64/include/cache.h
/freebsd-11-stable/sys/sparc64/include/cpu.h
/freebsd-11-stable/sys/sparc64/include/endian.h
/freebsd-11-stable/sys/sparc64/include/float.h
/freebsd-11-stable/sys/sparc64/include/floatingpoint.h
/freebsd-11-stable/sys/sparc64/include/ieee.h
/freebsd-11-stable/sys/sparc64/include/in_cksum.h
/freebsd-11-stable/sys/sparc64/include/iommureg.h
/freebsd-11-stable/sys/sparc64/include/md_var.h
/freebsd-11-stable/sys/sparc64/include/pmap.h
/freebsd-11-stable/sys/sparc64/include/proc.h
/freebsd-11-stable/sys/sparc64/include/ptrace.h
/freebsd-11-stable/sys/sparc64/include/reg.h
/freebsd-11-stable/sys/sparc64/include/reloc.h
/freebsd-11-stable/sys/sparc64/include/setjmp.h
/freebsd-11-stable/sys/sparc64/include/signal.h
/freebsd-11-stable/sys/sparc64/include/sysarch.h
/freebsd-11-stable/sys/sparc64/include/varargs.h
/freebsd-11-stable/sys/sparc64/include/vmparam.h
/freebsd-11-stable/sys/sparc64/sparc64/cache.c
/freebsd-11-stable/sys/sparc64/sparc64/eeprom.c
/freebsd-11-stable/sys/sparc64/sparc64/in_cksum.c
/freebsd-11-stable/sys/sparc64/sparc64/intr_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/mem.c
/freebsd-11-stable/sys/sparc64/sparc64/pmap.c
/freebsd-11-stable/sys/sparc64/sparc64/trap.c
/freebsd-11-stable/sys/sparc64/sparc64/uio_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/vm_machdep.c
/freebsd-11-stable/sys/sys/_bitset.h
/freebsd-11-stable/sys/sys/_bus_dma.h
/freebsd-11-stable/sys/sys/_callout.h
/freebsd-11-stable/sys/sys/_cpuset.h
/freebsd-11-stable/sys/sys/_ffcounter.h
/freebsd-11-stable/sys/sys/_iovec.h
/freebsd-11-stable/sys/sys/_kstack_cache.h
/freebsd-11-stable/sys/sys/_lock.h
/freebsd-11-stable/sys/sys/_lockmgr.h
/freebsd-11-stable/sys/sys/_mutex.h
/freebsd-11-stable/sys/sys/_null.h
/freebsd-11-stable/sys/sys/_pctrie.h
/freebsd-11-stable/sys/sys/_pthreadtypes.h
/freebsd-11-stable/sys/sys/_rmlock.h
/freebsd-11-stable/sys/sys/_rwlock.h
/freebsd-11-stable/sys/sys/_semaphore.h
/freebsd-11-stable/sys/sys/_sigset.h
/freebsd-11-stable/sys/sys/_sockaddr_storage.h
/freebsd-11-stable/sys/sys/_stack.h
/freebsd-11-stable/sys/sys/_stdint.h
/freebsd-11-stable/sys/sys/_sx.h
/freebsd-11-stable/sys/sys/_task.h
/freebsd-11-stable/sys/sys/_termios.h
/freebsd-11-stable/sys/sys/_timespec.h
/freebsd-11-stable/sys/sys/_timeval.h
/freebsd-11-stable/sys/sys/_types.h
/freebsd-11-stable/sys/sys/_umtx.h
/freebsd-11-stable/sys/sys/_unrhdr.h
/freebsd-11-stable/sys/sys/aac_ioctl.h
/freebsd-11-stable/sys/sys/acct.h
/freebsd-11-stable/sys/sys/acl.h
/freebsd-11-stable/sys/sys/agpio.h
/freebsd-11-stable/sys/sys/aio.h
/freebsd-11-stable/sys/sys/alq.h
/freebsd-11-stable/sys/sys/assym.h
/freebsd-11-stable/sys/sys/ata.h
/freebsd-11-stable/sys/sys/bio.h
/freebsd-11-stable/sys/sys/bitset.h
/freebsd-11-stable/sys/sys/bitstring.h
/freebsd-11-stable/sys/sys/blist.h
/freebsd-11-stable/sys/sys/boot.h
/freebsd-11-stable/sys/sys/buf.h
/freebsd-11-stable/sys/sys/buf_ring.h
/freebsd-11-stable/sys/sys/bufobj.h
/freebsd-11-stable/sys/sys/bus.h
/freebsd-11-stable/sys/sys/bus_dma.h
/freebsd-11-stable/sys/sys/busdma_bufalloc.h
/freebsd-11-stable/sys/sys/callout.h
/freebsd-11-stable/sys/sys/capability.h
/freebsd-11-stable/sys/sys/caprights.h
/freebsd-11-stable/sys/sys/cdefs.h
/freebsd-11-stable/sys/sys/cdrio.h
/freebsd-11-stable/sys/sys/cfictl.h
/freebsd-11-stable/sys/sys/chio.h
/freebsd-11-stable/sys/sys/clock.h
/freebsd-11-stable/sys/sys/condvar.h
/freebsd-11-stable/sys/sys/conf.h
/freebsd-11-stable/sys/sys/cons.h
/freebsd-11-stable/sys/sys/consio.h
/freebsd-11-stable/sys/sys/copyright.h
/freebsd-11-stable/sys/sys/counter.h
/freebsd-11-stable/sys/sys/cpu.h
/freebsd-11-stable/sys/sys/cpuctl.h
/freebsd-11-stable/sys/sys/cpuset.h
/freebsd-11-stable/sys/sys/ctype.h
/freebsd-11-stable/sys/sys/devicestat.h
/freebsd-11-stable/sys/sys/digiio.h
/freebsd-11-stable/sys/sys/dir.h
/freebsd-11-stable/sys/sys/dirent.h
/freebsd-11-stable/sys/sys/disklabel.h
/freebsd-11-stable/sys/sys/diskmbr.h
/freebsd-11-stable/sys/sys/dkstat.h
/freebsd-11-stable/sys/sys/domain.h
/freebsd-11-stable/sys/sys/dtrace_bsd.h
/freebsd-11-stable/sys/sys/dvdio.h
/freebsd-11-stable/sys/sys/elf.h
/freebsd-11-stable/sys/sys/elf32.h
/freebsd-11-stable/sys/sys/elf64.h
/freebsd-11-stable/sys/sys/elf_common.h
/freebsd-11-stable/sys/sys/elf_generic.h
/freebsd-11-stable/sys/sys/endian.h
/freebsd-11-stable/sys/sys/errno.h
/freebsd-11-stable/sys/sys/eui64.h
/freebsd-11-stable/sys/sys/event.h
/freebsd-11-stable/sys/sys/eventhandler.h
/freebsd-11-stable/sys/sys/eventvar.h
/freebsd-11-stable/sys/sys/exec.h
/freebsd-11-stable/sys/sys/extattr.h
/freebsd-11-stable/sys/sys/fail.h
/freebsd-11-stable/sys/sys/fbio.h
/freebsd-11-stable/sys/sys/fcntl.h
/freebsd-11-stable/sys/sys/fdcio.h
/freebsd-11-stable/sys/sys/file.h
/freebsd-11-stable/sys/sys/filedesc.h
/freebsd-11-stable/sys/sys/filio.h
/freebsd-11-stable/sys/sys/firmware.h
/freebsd-11-stable/sys/sys/gmon.h
/freebsd-11-stable/sys/sys/gpio.h
/freebsd-11-stable/sys/sys/gpt.h
/freebsd-11-stable/sys/sys/hash.h
/freebsd-11-stable/sys/sys/hhook.h
/freebsd-11-stable/sys/sys/iconv.h
/freebsd-11-stable/sys/sys/imgact.h
/freebsd-11-stable/sys/sys/imgact_aout.h
/freebsd-11-stable/sys/sys/imgact_elf.h
/freebsd-11-stable/sys/sys/interrupt.h
/freebsd-11-stable/sys/sys/ioccom.h
/freebsd-11-stable/sys/sys/ioctl.h
/freebsd-11-stable/sys/sys/ioctl_compat.h
/freebsd-11-stable/sys/sys/ipc.h
/freebsd-11-stable/sys/sys/ipmi.h
/freebsd-11-stable/sys/sys/jail.h
/freebsd-11-stable/sys/sys/joystick.h
/freebsd-11-stable/sys/sys/kdb.h
/freebsd-11-stable/sys/sys/kenv.h
/freebsd-11-stable/sys/sys/kernel.h
/freebsd-11-stable/sys/sys/kerneldump.h
/freebsd-11-stable/sys/sys/khelp.h
/freebsd-11-stable/sys/sys/kobj.h
/freebsd-11-stable/sys/sys/ksem.h
/freebsd-11-stable/sys/sys/kthread.h
/freebsd-11-stable/sys/sys/ktr.h
/freebsd-11-stable/sys/sys/ktr_class.h
/freebsd-11-stable/sys/sys/ktrace.h
/freebsd-11-stable/sys/sys/libkern.h
/freebsd-11-stable/sys/sys/limits.h
/freebsd-11-stable/sys/sys/link_aout.h
/freebsd-11-stable/sys/sys/link_elf.h
/freebsd-11-stable/sys/sys/linker.h
/freebsd-11-stable/sys/sys/linker_set.h
/freebsd-11-stable/sys/sys/lock.h
/freebsd-11-stable/sys/sys/lock_profile.h
/freebsd-11-stable/sys/sys/lockf.h
/freebsd-11-stable/sys/sys/lockmgr.h
/freebsd-11-stable/sys/sys/lockstat.h
/freebsd-11-stable/sys/sys/loginclass.h
/freebsd-11-stable/sys/sys/mac.h
/freebsd-11-stable/sys/sys/malloc.h
/freebsd-11-stable/sys/sys/mbuf.h
/freebsd-11-stable/sys/sys/mchain.h
/freebsd-11-stable/sys/sys/mdioctl.h
/freebsd-11-stable/sys/sys/memdesc.h
/freebsd-11-stable/sys/sys/mman.h
/freebsd-11-stable/sys/sys/module.h
/freebsd-11-stable/sys/sys/module_khelp.h
/freebsd-11-stable/sys/sys/mount.h
/freebsd-11-stable/sys/sys/mpt_ioctl.h
/freebsd-11-stable/sys/sys/mqueue.h
/freebsd-11-stable/sys/sys/msg.h
/freebsd-11-stable/sys/sys/msgbuf.h
/freebsd-11-stable/sys/sys/mtio.h
/freebsd-11-stable/sys/sys/mutex.h
/freebsd-11-stable/sys/sys/namei.h
/freebsd-11-stable/sys/sys/nlist_aout.h
/freebsd-11-stable/sys/sys/osd.h
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/sys/sys/pciio.h
/freebsd-11-stable/sys/sys/pcpu.h
/freebsd-11-stable/sys/sys/pctrie.h
/freebsd-11-stable/sys/sys/pioctl.h
/freebsd-11-stable/sys/sys/pmc.h
/freebsd-11-stable/sys/sys/pmckern.h
/freebsd-11-stable/sys/sys/pmclog.h
/freebsd-11-stable/sys/sys/poll.h
/freebsd-11-stable/sys/sys/posix4.h
/freebsd-11-stable/sys/sys/power.h
/freebsd-11-stable/sys/sys/priority.h
/freebsd-11-stable/sys/sys/priv.h
/freebsd-11-stable/sys/sys/proc.h
/freebsd-11-stable/sys/sys/procctl.h
/freebsd-11-stable/sys/sys/procdesc.h
/freebsd-11-stable/sys/sys/procfs.h
/freebsd-11-stable/sys/sys/protosw.h
/freebsd-11-stable/sys/sys/ptio.h
/freebsd-11-stable/sys/sys/ptrace.h
/freebsd-11-stable/sys/sys/queue.h
/freebsd-11-stable/sys/sys/racct.h
/freebsd-11-stable/sys/sys/random.h
/freebsd-11-stable/sys/sys/rangelock.h
/freebsd-11-stable/sys/sys/rctl.h
/freebsd-11-stable/sys/sys/reboot.h
/freebsd-11-stable/sys/sys/refcount.h
/freebsd-11-stable/sys/sys/regression.h
/freebsd-11-stable/sys/sys/resource.h
/freebsd-11-stable/sys/sys/resourcevar.h
/freebsd-11-stable/sys/sys/rmlock.h
/freebsd-11-stable/sys/sys/rtprio.h
/freebsd-11-stable/sys/sys/runq.h
/freebsd-11-stable/sys/sys/rwlock.h
/freebsd-11-stable/sys/sys/sbuf.h
/freebsd-11-stable/sys/sys/sched.h
/freebsd-11-stable/sys/sys/sdt.h
/freebsd-11-stable/sys/sys/select.h
/freebsd-11-stable/sys/sys/selinfo.h
/freebsd-11-stable/sys/sys/sema.h
/freebsd-11-stable/sys/sys/serial.h
/freebsd-11-stable/sys/sys/sf_buf.h
/freebsd-11-stable/sys/sys/sglist.h
/freebsd-11-stable/sys/sys/shm.h
/freebsd-11-stable/sys/sys/sigio.h
/freebsd-11-stable/sys/sys/signal.h
/freebsd-11-stable/sys/sys/signalvar.h
/freebsd-11-stable/sys/sys/sleepqueue.h
/freebsd-11-stable/sys/sys/slicer.h
/freebsd-11-stable/sys/sys/snoop.h
/freebsd-11-stable/sys/sys/sockbuf.h
/freebsd-11-stable/sys/sys/socket.h
/freebsd-11-stable/sys/sys/socketvar.h
/freebsd-11-stable/sys/sys/sockio.h
/freebsd-11-stable/sys/sys/sockopt.h
/freebsd-11-stable/sys/sys/stack.h
/freebsd-11-stable/sys/sys/stat.h
/freebsd-11-stable/sys/sys/stdatomic.h
/freebsd-11-stable/sys/sys/stddef.h
/freebsd-11-stable/sys/sys/stdint.h
/freebsd-11-stable/sys/sys/sun_disklabel.h
/freebsd-11-stable/sys/sys/sx.h
/freebsd-11-stable/sys/sys/syscallsubr.h
/freebsd-11-stable/sys/sys/sysctl.h
/freebsd-11-stable/sys/sys/sysent.h
/freebsd-11-stable/sys/sys/syslimits.h
/freebsd-11-stable/sys/sys/syslog.h
/freebsd-11-stable/sys/sys/systm.h
/freebsd-11-stable/sys/sys/taskqueue.h
/freebsd-11-stable/sys/sys/terminal.h
/freebsd-11-stable/sys/sys/thr.h
/freebsd-11-stable/sys/sys/tiio.h
/freebsd-11-stable/sys/sys/time.h
/freebsd-11-stable/sys/sys/timeb.h
/freebsd-11-stable/sys/sys/timeet.h
/freebsd-11-stable/sys/sys/timeffc.h
/freebsd-11-stable/sys/sys/timers.h
/freebsd-11-stable/sys/sys/times.h
/freebsd-11-stable/sys/sys/timespec.h
/freebsd-11-stable/sys/sys/tree.h
/freebsd-11-stable/sys/sys/tty.h
/freebsd-11-stable/sys/sys/ttycom.h
/freebsd-11-stable/sys/sys/ttydefaults.h
/freebsd-11-stable/sys/sys/ttydevsw.h
/freebsd-11-stable/sys/sys/ttydisc.h
/freebsd-11-stable/sys/sys/ttyhook.h
/freebsd-11-stable/sys/sys/ttyqueue.h
/freebsd-11-stable/sys/sys/turnstile.h
/freebsd-11-stable/sys/sys/types.h
/freebsd-11-stable/sys/sys/ucontext.h
/freebsd-11-stable/sys/sys/ucred.h
/freebsd-11-stable/sys/sys/uio.h
/freebsd-11-stable/sys/sys/umtx.h
/freebsd-11-stable/sys/sys/un.h
/freebsd-11-stable/sys/sys/unistd.h
/freebsd-11-stable/sys/sys/unpcb.h
/freebsd-11-stable/sys/sys/user.h
/freebsd-11-stable/sys/sys/utsname.h
/freebsd-11-stable/sys/sys/uuid.h
/freebsd-11-stable/sys/sys/vdso.h
/freebsd-11-stable/sys/sys/vmem.h
/freebsd-11-stable/sys/sys/vmmeter.h
/freebsd-11-stable/sys/sys/vnode.h
/freebsd-11-stable/sys/sys/wait.h
/freebsd-11-stable/sys/sys/watchdog.h
/freebsd-11-stable/sys/tools/makeobjops.awk
/freebsd-11-stable/sys/tools/vnode_if.awk
/freebsd-11-stable/sys/ufs/ffs/ffs_alloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_balloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_extern.h
/freebsd-11-stable/sys/ufs/ffs/ffs_inode.c
/freebsd-11-stable/sys/ufs/ffs/ffs_subr.c
/freebsd-11-stable/sys/ufs/ffs/ffs_tables.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vfsops.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vnops.c
/freebsd-11-stable/sys/ufs/ffs/fs.h
/freebsd-11-stable/sys/ufs/ufs/dir.h
/freebsd-11-stable/sys/ufs/ufs/inode.h
/freebsd-11-stable/sys/ufs/ufs/quota.h
/freebsd-11-stable/sys/ufs/ufs/ufs_bmap.c
/freebsd-11-stable/sys/ufs/ufs/ufs_extern.h
/freebsd-11-stable/sys/ufs/ufs/ufs_inode.c
/freebsd-11-stable/sys/ufs/ufs/ufs_lookup.c
/freebsd-11-stable/sys/ufs/ufs/ufs_quota.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vfsops.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vnops.c
/freebsd-11-stable/sys/ufs/ufs/ufsmount.h
/freebsd-11-stable/sys/vm/device_pager.c
/freebsd-11-stable/sys/vm/pmap.h
/freebsd-11-stable/sys/vm/swap_pager.c
/freebsd-11-stable/sys/vm/swap_pager.h
/freebsd-11-stable/sys/vm/vm.h
/freebsd-11-stable/sys/vm/vm_extern.h
/freebsd-11-stable/sys/vm/vm_fault.c
/freebsd-11-stable/sys/vm/vm_glue.c
/freebsd-11-stable/sys/vm/vm_init.c
/freebsd-11-stable/sys/vm/vm_kern.c
/freebsd-11-stable/sys/vm/vm_kern.h
/freebsd-11-stable/sys/vm/vm_map.c
/freebsd-11-stable/sys/vm/vm_map.h
/freebsd-11-stable/sys/vm/vm_meter.c
/freebsd-11-stable/sys/vm/vm_mmap.c
/freebsd-11-stable/sys/vm/vm_object.c
/freebsd-11-stable/sys/vm/vm_object.h
/freebsd-11-stable/sys/vm/vm_page.c
/freebsd-11-stable/sys/vm/vm_page.h
/freebsd-11-stable/sys/vm/vm_pageout.c
/freebsd-11-stable/sys/vm/vm_pageout.h
/freebsd-11-stable/sys/vm/vm_pager.c
/freebsd-11-stable/sys/vm/vm_pager.h
/freebsd-11-stable/sys/vm/vm_param.h
/freebsd-11-stable/sys/vm/vm_unix.c
/freebsd-11-stable/sys/vm/vnode_pager.c
/freebsd-11-stable/sys/vm/vnode_pager.h
/freebsd-11-stable/sys/x86/include/_align.h
/freebsd-11-stable/sys/x86/include/_limits.h
/freebsd-11-stable/sys/x86/include/_types.h
/freebsd-11-stable/sys/x86/include/endian.h
/freebsd-11-stable/sys/x86/include/float.h
/freebsd-11-stable/sys/x86/include/frame.h
/freebsd-11-stable/sys/x86/include/psl.h
/freebsd-11-stable/sys/x86/include/ptrace.h
/freebsd-11-stable/sys/x86/include/reg.h
/freebsd-11-stable/sys/x86/include/segments.h
/freebsd-11-stable/sys/x86/include/setjmp.h
/freebsd-11-stable/sys/x86/include/signal.h
/freebsd-11-stable/sys/x86/include/specialreg.h
/freebsd-11-stable/sys/x86/include/stdarg.h
/freebsd-11-stable/sys/x86/include/sysarch.h
/freebsd-11-stable/sys/x86/include/trap.h
/freebsd-11-stable/sys/x86/isa/clock.c
/freebsd-11-stable/sys/x86/isa/icu.h
/freebsd-11-stable/sys/x86/isa/isa_dma.c
/freebsd-11-stable/sys/x86/isa/nmi.c
/freebsd-11-stable/sys/x86/x86/delay.c
/freebsd-11-stable/sys/x86/x86/msi.c
/freebsd-11-stable/tools/regression/aio/aiop/aiop.c
/freebsd-11-stable/tools/regression/p1003_1b/fifo.c
/freebsd-11-stable/tools/regression/p1003_1b/memlock.c
/freebsd-11-stable/tools/regression/p1003_1b/p26.c
/freebsd-11-stable/tools/regression/p1003_1b/sched.c
/freebsd-11-stable/tools/regression/p1003_1b/yield.c
/freebsd-11-stable/tools/regression/posixsem/posixsem.c
/freebsd-11-stable/tools/regression/posixsem/test.c
/freebsd-11-stable/tools/regression/posixsem/test.h
/freebsd-11-stable/tools/test/hwpmc/pmctest.py
/freebsd-11-stable/tools/tools/cxgbtool/cxgbtool.c
/freebsd-11-stable/tools/tools/pirtool/pirtable.h
/freebsd-11-stable/tools/tools/pirtool/pirtool.c
/freebsd-11-stable/tools/tools/vxge/vxge_cmn.h
/freebsd-11-stable/tools/tools/vxge/vxge_info.c
/freebsd-11-stable/tools/tools/vxge/vxge_info.h
/freebsd-11-stable/tools/tools/vxge/vxge_log.c
/freebsd-11-stable/tools/tools/vxge/vxge_log.h
/freebsd-11-stable/usr.bin/apply/apply.c
/freebsd-11-stable/usr.bin/ar/ar.c
/freebsd-11-stable/usr.bin/banner/banner.c
/freebsd-11-stable/usr.bin/basename/basename.c
/freebsd-11-stable/usr.bin/biff/biff.c
/freebsd-11-stable/usr.bin/calendar/calendar.c
/freebsd-11-stable/usr.bin/calendar/calendar.h
/freebsd-11-stable/usr.bin/calendar/day.c
/freebsd-11-stable/usr.bin/calendar/io.c
/freebsd-11-stable/usr.bin/calendar/locale.c
/freebsd-11-stable/usr.bin/calendar/pathnames.h
/freebsd-11-stable/usr.bin/calendar/pom.c
/freebsd-11-stable/usr.bin/cap_mkdb/cap_mkdb.c
/freebsd-11-stable/usr.bin/chpass/chpass.c
/freebsd-11-stable/usr.bin/chpass/chpass.h
/freebsd-11-stable/usr.bin/chpass/edit.c
/freebsd-11-stable/usr.bin/chpass/field.c
/freebsd-11-stable/usr.bin/chpass/table.c
/freebsd-11-stable/usr.bin/chpass/util.c
/freebsd-11-stable/usr.bin/cksum/cksum.c
/freebsd-11-stable/usr.bin/cksum/crc.c
/freebsd-11-stable/usr.bin/cksum/extern.h
/freebsd-11-stable/usr.bin/cksum/print.c
/freebsd-11-stable/usr.bin/cksum/sum1.c
/freebsd-11-stable/usr.bin/cksum/sum2.c
/freebsd-11-stable/usr.bin/cmp/cmp.c
/freebsd-11-stable/usr.bin/cmp/extern.h
/freebsd-11-stable/usr.bin/cmp/misc.c
/freebsd-11-stable/usr.bin/cmp/regular.c
/freebsd-11-stable/usr.bin/cmp/special.c
/freebsd-11-stable/usr.bin/col/col.c
/freebsd-11-stable/usr.bin/colrm/colrm.c
/freebsd-11-stable/usr.bin/column/column.c
/freebsd-11-stable/usr.bin/comm/comm.c
/freebsd-11-stable/usr.bin/compress/compress.c
/freebsd-11-stable/usr.bin/compress/zopen.c
/freebsd-11-stable/usr.bin/ctags/C.c
/freebsd-11-stable/usr.bin/ctags/ctags.c
/freebsd-11-stable/usr.bin/ctags/ctags.h
/freebsd-11-stable/usr.bin/ctags/fortran.c
/freebsd-11-stable/usr.bin/ctags/lisp.c
/freebsd-11-stable/usr.bin/ctags/print.c
/freebsd-11-stable/usr.bin/ctags/tree.c
/freebsd-11-stable/usr.bin/ctags/yacc.c
/freebsd-11-stable/usr.bin/cut/cut.c
/freebsd-11-stable/usr.bin/dirname/dirname.c
/freebsd-11-stable/usr.bin/du/du.c
/freebsd-11-stable/usr.bin/env/env.c
/freebsd-11-stable/usr.bin/expand/expand.c
/freebsd-11-stable/usr.bin/false/false.c
/freebsd-11-stable/usr.bin/find/extern.h
/freebsd-11-stable/usr.bin/find/find.c
/freebsd-11-stable/usr.bin/find/find.h
/freebsd-11-stable/usr.bin/find/function.c
/freebsd-11-stable/usr.bin/find/ls.c
/freebsd-11-stable/usr.bin/find/main.c
/freebsd-11-stable/usr.bin/find/misc.c
/freebsd-11-stable/usr.bin/find/operator.c
/freebsd-11-stable/usr.bin/find/option.c
/freebsd-11-stable/usr.bin/finger/extern.h
/freebsd-11-stable/usr.bin/finger/finger.c
/freebsd-11-stable/usr.bin/finger/finger.h
/freebsd-11-stable/usr.bin/finger/lprint.c
/freebsd-11-stable/usr.bin/finger/net.c
/freebsd-11-stable/usr.bin/finger/sprint.c
/freebsd-11-stable/usr.bin/finger/util.c
/freebsd-11-stable/usr.bin/fold/fold.c
/freebsd-11-stable/usr.bin/from/from.c
/freebsd-11-stable/usr.bin/fstat/fstat.c
/freebsd-11-stable/usr.bin/gcore/extern.h
/freebsd-11-stable/usr.bin/gcore/gcore.c
/freebsd-11-stable/usr.bin/gprof/amd64.h
/freebsd-11-stable/usr.bin/gprof/aout.c
/freebsd-11-stable/usr.bin/gprof/arcs.c
/freebsd-11-stable/usr.bin/gprof/arm.h
/freebsd-11-stable/usr.bin/gprof/dfn.c
/freebsd-11-stable/usr.bin/gprof/elf.c
/freebsd-11-stable/usr.bin/gprof/gprof.c
/freebsd-11-stable/usr.bin/gprof/gprof.h
/freebsd-11-stable/usr.bin/gprof/hertz.c
/freebsd-11-stable/usr.bin/gprof/i386.h
/freebsd-11-stable/usr.bin/gprof/lookup.c
/freebsd-11-stable/usr.bin/gprof/mips.h
/freebsd-11-stable/usr.bin/gprof/pathnames.h
/freebsd-11-stable/usr.bin/gprof/powerpc.h
/freebsd-11-stable/usr.bin/gprof/printgprof.c
/freebsd-11-stable/usr.bin/gprof/printlist.c
/freebsd-11-stable/usr.bin/gprof/sparc64.h
/freebsd-11-stable/usr.bin/gzip/zuncompress.c
/freebsd-11-stable/usr.bin/head/head.c
/freebsd-11-stable/usr.bin/hexdump/conv.c
/freebsd-11-stable/usr.bin/hexdump/display.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.h
/freebsd-11-stable/usr.bin/hexdump/hexsyntax.c
/freebsd-11-stable/usr.bin/hexdump/odsyntax.c
/freebsd-11-stable/usr.bin/hexdump/parse.c
/freebsd-11-stable/usr.bin/id/id.c
/freebsd-11-stable/usr.bin/indent/args.c
/freebsd-11-stable/usr.bin/indent/indent.c
/freebsd-11-stable/usr.bin/indent/indent_codes.h
/freebsd-11-stable/usr.bin/indent/indent_globs.h
/freebsd-11-stable/usr.bin/indent/io.c
/freebsd-11-stable/usr.bin/indent/lexi.c
/freebsd-11-stable/usr.bin/indent/parse.c
/freebsd-11-stable/usr.bin/indent/pr_comment.c
/freebsd-11-stable/usr.bin/join/join.c
/freebsd-11-stable/usr.bin/jot/jot.c
/freebsd-11-stable/usr.bin/kdump/kdump.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.h
/freebsd-11-stable/usr.bin/ktrace/subr.c
/freebsd-11-stable/usr.bin/lam/lam.c
/freebsd-11-stable/usr.bin/last/last.c
/freebsd-11-stable/usr.bin/lastcomm/lastcomm.c
/freebsd-11-stable/usr.bin/lastcomm/pathnames.h
/freebsd-11-stable/usr.bin/leave/leave.c
/freebsd-11-stable/usr.bin/lex/initparse.c
/freebsd-11-stable/usr.bin/locate/bigram/locate.bigram.c
/freebsd-11-stable/usr.bin/locate/code/locate.code.c
/freebsd-11-stable/usr.bin/locate/locate/fastfind.c
/freebsd-11-stable/usr.bin/locate/locate/locate.c
/freebsd-11-stable/usr.bin/locate/locate/locate.h
/freebsd-11-stable/usr.bin/locate/locate/util.c
/freebsd-11-stable/usr.bin/lock/lock.c
/freebsd-11-stable/usr.bin/logger/logger.c
/freebsd-11-stable/usr.bin/login/login.c
/freebsd-11-stable/usr.bin/login/login_audit.c
/freebsd-11-stable/usr.bin/login/pathnames.h
/freebsd-11-stable/usr.bin/logname/logname.c
/freebsd-11-stable/usr.bin/look/look.c
/freebsd-11-stable/usr.bin/look/pathnames.h
/freebsd-11-stable/usr.bin/lorder/lorder.sh
/freebsd-11-stable/usr.bin/m4/eval.c
/freebsd-11-stable/usr.bin/m4/extern.h
/freebsd-11-stable/usr.bin/m4/look.c
/freebsd-11-stable/usr.bin/m4/main.c
/freebsd-11-stable/usr.bin/m4/mdef.h
/freebsd-11-stable/usr.bin/m4/misc.c
/freebsd-11-stable/usr.bin/m4/pathnames.h
/freebsd-11-stable/usr.bin/m4/stdd.h
/freebsd-11-stable/usr.bin/mail/cmd1.c
/freebsd-11-stable/usr.bin/mail/cmd2.c
/freebsd-11-stable/usr.bin/mail/cmd3.c
/freebsd-11-stable/usr.bin/mail/cmdtab.c
/freebsd-11-stable/usr.bin/mail/collect.c
/freebsd-11-stable/usr.bin/mail/def.h
/freebsd-11-stable/usr.bin/mail/edit.c
/freebsd-11-stable/usr.bin/mail/extern.h
/freebsd-11-stable/usr.bin/mail/fio.c
/freebsd-11-stable/usr.bin/mail/getname.c
/freebsd-11-stable/usr.bin/mail/glob.h
/freebsd-11-stable/usr.bin/mail/head.c
/freebsd-11-stable/usr.bin/mail/lex.c
/freebsd-11-stable/usr.bin/mail/list.c
/freebsd-11-stable/usr.bin/mail/main.c
/freebsd-11-stable/usr.bin/mail/names.c
/freebsd-11-stable/usr.bin/mail/pathnames.h
/freebsd-11-stable/usr.bin/mail/popen.c
/freebsd-11-stable/usr.bin/mail/quit.c
/freebsd-11-stable/usr.bin/mail/rcv.h
/freebsd-11-stable/usr.bin/mail/send.c
/freebsd-11-stable/usr.bin/mail/strings.c
/freebsd-11-stable/usr.bin/mail/temp.c
/freebsd-11-stable/usr.bin/mail/tty.c
/freebsd-11-stable/usr.bin/mail/util.c
/freebsd-11-stable/usr.bin/mail/v7.local.c
/freebsd-11-stable/usr.bin/mail/vars.c
/freebsd-11-stable/usr.bin/mail/version.c
/freebsd-11-stable/usr.bin/mesg/mesg.c
/freebsd-11-stable/usr.bin/mkdep/mkdep.gcc.sh
/freebsd-11-stable/usr.bin/mkdep/mkdep.sh
/freebsd-11-stable/usr.bin/mkfifo/mkfifo.c
/freebsd-11-stable/usr.bin/mklocale/extern.h
/freebsd-11-stable/usr.bin/mklocale/ldef.h
/freebsd-11-stable/usr.bin/mklocale/lex.l
/freebsd-11-stable/usr.bin/mklocale/yacc.y
/freebsd-11-stable/usr.bin/mkstr/mkstr.c
/freebsd-11-stable/usr.bin/msgs/msgs.c
/freebsd-11-stable/usr.bin/msgs/pathnames.h
/freebsd-11-stable/usr.bin/mt/mt.c
/freebsd-11-stable/usr.bin/netstat/if.c
/freebsd-11-stable/usr.bin/netstat/inet6.c
/freebsd-11-stable/usr.bin/netstat/ipsec.c
/freebsd-11-stable/usr.bin/netstat/main.c
/freebsd-11-stable/usr.bin/netstat/mbuf.c
/freebsd-11-stable/usr.bin/netstat/mroute.c
/freebsd-11-stable/usr.bin/netstat/mroute6.c
/freebsd-11-stable/usr.bin/netstat/netstat.h
/freebsd-11-stable/usr.bin/netstat/pfkey.c
/freebsd-11-stable/usr.bin/netstat/route.c
/freebsd-11-stable/usr.bin/netstat/sctp.c
/freebsd-11-stable/usr.bin/netstat/unix.c
/freebsd-11-stable/usr.bin/nice/nice.c
/freebsd-11-stable/usr.bin/nohup/nohup.c
/freebsd-11-stable/usr.bin/pagesize/pagesize.sh
/freebsd-11-stable/usr.bin/paste/paste.c
/freebsd-11-stable/usr.bin/patch/mkpath.c
/freebsd-11-stable/usr.bin/pr/egetopt.c
/freebsd-11-stable/usr.bin/pr/extern.h
/freebsd-11-stable/usr.bin/pr/pr.c
/freebsd-11-stable/usr.bin/pr/pr.h
/freebsd-11-stable/usr.bin/printenv/printenv.c
/freebsd-11-stable/usr.bin/printf/printf.c
/freebsd-11-stable/usr.bin/quota/quota.c
/freebsd-11-stable/usr.bin/renice/renice.c
/freebsd-11-stable/usr.bin/rev/rev.c
/freebsd-11-stable/usr.bin/rs/rs.c
/freebsd-11-stable/usr.bin/rup/rup.c
/freebsd-11-stable/usr.bin/ruptime/ruptime.c
/freebsd-11-stable/usr.bin/rusers/rusers.c
/freebsd-11-stable/usr.bin/rwall/rwall.c
/freebsd-11-stable/usr.bin/rwho/rwho.c
/freebsd-11-stable/usr.bin/script/script.c
/freebsd-11-stable/usr.bin/sed/compile.c
/freebsd-11-stable/usr.bin/sed/defs.h
/freebsd-11-stable/usr.bin/sed/extern.h
/freebsd-11-stable/usr.bin/sed/main.c
/freebsd-11-stable/usr.bin/sed/misc.c
/freebsd-11-stable/usr.bin/sed/process.c
/freebsd-11-stable/usr.bin/shar/shar.sh
/freebsd-11-stable/usr.bin/showmount/showmount.c
/freebsd-11-stable/usr.bin/split/split.c
/freebsd-11-stable/usr.bin/su/su.c
/freebsd-11-stable/usr.bin/systat/cmds.c
/freebsd-11-stable/usr.bin/systat/cmdtab.c
/freebsd-11-stable/usr.bin/systat/devs.c
/freebsd-11-stable/usr.bin/systat/extern.h
/freebsd-11-stable/usr.bin/systat/fetch.c
/freebsd-11-stable/usr.bin/systat/icmp.c
/freebsd-11-stable/usr.bin/systat/icmp6.c
/freebsd-11-stable/usr.bin/systat/iostat.c
/freebsd-11-stable/usr.bin/systat/ip.c
/freebsd-11-stable/usr.bin/systat/ip6.c
/freebsd-11-stable/usr.bin/systat/keyboard.c
/freebsd-11-stable/usr.bin/systat/main.c
/freebsd-11-stable/usr.bin/systat/netcmds.c
/freebsd-11-stable/usr.bin/systat/netstat.c
/freebsd-11-stable/usr.bin/systat/pigs.c
/freebsd-11-stable/usr.bin/systat/swap.c
/freebsd-11-stable/usr.bin/systat/systat.h
/freebsd-11-stable/usr.bin/systat/tcp.c
/freebsd-11-stable/usr.bin/systat/vmstat.c
/freebsd-11-stable/usr.bin/tail/extern.h
/freebsd-11-stable/usr.bin/tail/forward.c
/freebsd-11-stable/usr.bin/tail/misc.c
/freebsd-11-stable/usr.bin/tail/read.c
/freebsd-11-stable/usr.bin/tail/reverse.c
/freebsd-11-stable/usr.bin/tail/tail.c
/freebsd-11-stable/usr.bin/talk/ctl.c
/freebsd-11-stable/usr.bin/talk/ctl_transact.c
/freebsd-11-stable/usr.bin/talk/display.c
/freebsd-11-stable/usr.bin/talk/get_addrs.c
/freebsd-11-stable/usr.bin/talk/get_names.c
/freebsd-11-stable/usr.bin/talk/init_disp.c
/freebsd-11-stable/usr.bin/talk/invite.c
/freebsd-11-stable/usr.bin/talk/io.c
/freebsd-11-stable/usr.bin/talk/look_up.c
/freebsd-11-stable/usr.bin/talk/msgs.c
/freebsd-11-stable/usr.bin/talk/talk.c
/freebsd-11-stable/usr.bin/talk/talk.h
/freebsd-11-stable/usr.bin/talk/talk_ctl.h
/freebsd-11-stable/usr.bin/tcopy/tcopy.c
/freebsd-11-stable/usr.bin/tee/tee.c
/freebsd-11-stable/usr.bin/tftp/main.c
/freebsd-11-stable/usr.bin/tftp/tftp.c
/freebsd-11-stable/usr.bin/tftp/tftp.h
/freebsd-11-stable/usr.bin/time/time.c
/freebsd-11-stable/usr.bin/tip/libacu/biz22.c
/freebsd-11-stable/usr.bin/tip/libacu/biz31.c
/freebsd-11-stable/usr.bin/tip/libacu/courier.c
/freebsd-11-stable/usr.bin/tip/libacu/df.c
/freebsd-11-stable/usr.bin/tip/libacu/dn11.c
/freebsd-11-stable/usr.bin/tip/libacu/hayes.c
/freebsd-11-stable/usr.bin/tip/libacu/t3000.c
/freebsd-11-stable/usr.bin/tip/libacu/v3451.c
/freebsd-11-stable/usr.bin/tip/libacu/v831.c
/freebsd-11-stable/usr.bin/tip/libacu/ventel.c
/freebsd-11-stable/usr.bin/tip/tip/acu.c
/freebsd-11-stable/usr.bin/tip/tip/acutab.c
/freebsd-11-stable/usr.bin/tip/tip/cmds.c
/freebsd-11-stable/usr.bin/tip/tip/cmdtab.c
/freebsd-11-stable/usr.bin/tip/tip/cu.c
/freebsd-11-stable/usr.bin/tip/tip/hunt.c
/freebsd-11-stable/usr.bin/tip/tip/log.c
/freebsd-11-stable/usr.bin/tip/tip/partab.c
/freebsd-11-stable/usr.bin/tip/tip/pathnames.h
/freebsd-11-stable/usr.bin/tip/tip/remote.c
/freebsd-11-stable/usr.bin/tip/tip/tip.c
/freebsd-11-stable/usr.bin/tip/tip/tip.h
/freebsd-11-stable/usr.bin/tip/tip/tipout.c
/freebsd-11-stable/usr.bin/tip/tip/uucplock.c
/freebsd-11-stable/usr.bin/tip/tip/value.c
/freebsd-11-stable/usr.bin/tip/tip/vars.c
/freebsd-11-stable/usr.bin/touch/touch.c
/freebsd-11-stable/usr.bin/tput/clear.sh
/freebsd-11-stable/usr.bin/tput/tput.c
/freebsd-11-stable/usr.bin/tr/extern.h
/freebsd-11-stable/usr.bin/tr/str.c
/freebsd-11-stable/usr.bin/tr/tr.c
/freebsd-11-stable/usr.bin/true/true.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd32.c
/freebsd-11-stable/usr.bin/truss/amd64-linux.c
/freebsd-11-stable/usr.bin/truss/amd64-linux32.c
/freebsd-11-stable/usr.bin/truss/arm-freebsd.c
/freebsd-11-stable/usr.bin/truss/extern.h
/freebsd-11-stable/usr.bin/truss/i386-freebsd.c
/freebsd-11-stable/usr.bin/truss/i386-linux.c
/freebsd-11-stable/usr.bin/truss/main.c
/freebsd-11-stable/usr.bin/truss/mips-freebsd.c
/freebsd-11-stable/usr.bin/truss/setup.c
/freebsd-11-stable/usr.bin/truss/sparc64-freebsd.c
/freebsd-11-stable/usr.bin/truss/syscalls.c
/freebsd-11-stable/usr.bin/tset/extern.h
/freebsd-11-stable/usr.bin/tset/map.c
/freebsd-11-stable/usr.bin/tset/misc.c
/freebsd-11-stable/usr.bin/tset/set.c
/freebsd-11-stable/usr.bin/tset/term.c
/freebsd-11-stable/usr.bin/tset/tset.c
/freebsd-11-stable/usr.bin/tset/wrterm.c
/freebsd-11-stable/usr.bin/tsort/tsort.c
/freebsd-11-stable/usr.bin/tty/tty.c
/freebsd-11-stable/usr.bin/ul/ul.c
/freebsd-11-stable/usr.bin/uname/uname.c
/freebsd-11-stable/usr.bin/unexpand/unexpand.c
/freebsd-11-stable/usr.bin/uniq/uniq.c
/freebsd-11-stable/usr.bin/uudecode/uudecode.c
/freebsd-11-stable/usr.bin/uuencode/uuencode.c
/freebsd-11-stable/usr.bin/vgrind/extern.h
/freebsd-11-stable/usr.bin/vgrind/pathnames.h
/freebsd-11-stable/usr.bin/vgrind/regexp.c
/freebsd-11-stable/usr.bin/vgrind/vfontedpr.c
/freebsd-11-stable/usr.bin/vgrind/vgrind.sh
/freebsd-11-stable/usr.bin/vmstat/vmstat.c
/freebsd-11-stable/usr.bin/w/extern.h
/freebsd-11-stable/usr.bin/w/pr_time.c
/freebsd-11-stable/usr.bin/w/proc_compare.c
/freebsd-11-stable/usr.bin/w/w.c
/freebsd-11-stable/usr.bin/wall/ttymsg.c
/freebsd-11-stable/usr.bin/wall/wall.c
/freebsd-11-stable/usr.bin/wc/wc.c
/freebsd-11-stable/usr.bin/what/what.c
/freebsd-11-stable/usr.bin/whois/whois.c
/freebsd-11-stable/usr.bin/write/write.c
/freebsd-11-stable/usr.bin/xargs/pathnames.h
/freebsd-11-stable/usr.bin/xargs/xargs.c
/freebsd-11-stable/usr.bin/xinstall/xinstall.c
/freebsd-11-stable/usr.bin/xstr/pathnames.h
/freebsd-11-stable/usr.bin/xstr/xstr.c
/freebsd-11-stable/usr.bin/yes/yes.c
/freebsd-11-stable/usr.sbin/accton/accton.c
/freebsd-11-stable/usr.sbin/ancontrol/ancontrol.c
/freebsd-11-stable/usr.sbin/arp/arp.c
/freebsd-11-stable/usr.sbin/chown/chown.c
/freebsd-11-stable/usr.sbin/chroot/chroot.c
/freebsd-11-stable/usr.sbin/config/config.h
/freebsd-11-stable/usr.sbin/config/config.y
/freebsd-11-stable/usr.sbin/config/lang.l
/freebsd-11-stable/usr.sbin/config/main.c
/freebsd-11-stable/usr.sbin/config/mkheaders.c
/freebsd-11-stable/usr.sbin/config/mkmakefile.c
/freebsd-11-stable/usr.sbin/config/mkoptions.c
/freebsd-11-stable/usr.sbin/crashinfo/crashinfo.sh
/freebsd-11-stable/usr.sbin/dconschat/dconschat.c
/freebsd-11-stable/usr.sbin/edquota/edquota.c
/freebsd-11-stable/usr.sbin/edquota/pathnames.h
/freebsd-11-stable/usr.sbin/fwcontrol/fwcontrol.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwdv.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwmpegts.c
/freebsd-11-stable/usr.sbin/ifmcstat/ifmcstat.c
/freebsd-11-stable/usr.sbin/ifmcstat/printb.c
/freebsd-11-stable/usr.sbin/inetd/inetd.c
/freebsd-11-stable/usr.sbin/inetd/inetd.h
/freebsd-11-stable/usr.sbin/inetd/pathnames.h
/freebsd-11-stable/usr.sbin/iostat/iostat.c
/freebsd-11-stable/usr.sbin/ip6addrctl/ip6addrctl.c
/freebsd-11-stable/usr.sbin/kgmon/kgmon.c
/freebsd-11-stable/usr.sbin/kldxref/ef.c
/freebsd-11-stable/usr.sbin/kldxref/ef_obj.c
/freebsd-11-stable/usr.sbin/kldxref/kldxref.c
/freebsd-11-stable/usr.sbin/lpr/common_source/common.c
/freebsd-11-stable/usr.sbin/lpr/common_source/displayq.c
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.h
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.local.h
/freebsd-11-stable/usr.sbin/lpr/common_source/net.c
/freebsd-11-stable/usr.sbin/lpr/common_source/pathnames.h
/freebsd-11-stable/usr.sbin/lpr/common_source/printcap.c
/freebsd-11-stable/usr.sbin/lpr/common_source/rmjob.c
/freebsd-11-stable/usr.sbin/lpr/common_source/startdaemon.c
/freebsd-11-stable/usr.sbin/lpr/filters/lpf.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmds.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmdtab.c
/freebsd-11-stable/usr.sbin/lpr/lpc/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.c
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.h
/freebsd-11-stable/usr.sbin/lpr/lpd/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpd/lpd.c
/freebsd-11-stable/usr.sbin/lpr/lpd/lpdchar.c
/freebsd-11-stable/usr.sbin/lpr/lpd/modes.c
/freebsd-11-stable/usr.sbin/lpr/lpd/printjob.c
/freebsd-11-stable/usr.sbin/lpr/lpd/recvjob.c
/freebsd-11-stable/usr.sbin/lpr/lpq/lpq.c
/freebsd-11-stable/usr.sbin/lpr/lpr/lpr.c
/freebsd-11-stable/usr.sbin/lpr/lprm/lprm.c
/freebsd-11-stable/usr.sbin/lpr/lptest/lptest.c
/freebsd-11-stable/usr.sbin/lpr/pac/pac.c
/freebsd-11-stable/usr.sbin/makefs/ffs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_alloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_balloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_extern.h
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_subr.c
/freebsd-11-stable/usr.sbin/makefs/ffs/mkfs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_bmap.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_inode.h
/freebsd-11-stable/usr.sbin/manctl/manctl.sh
/freebsd-11-stable/usr.sbin/mld6query/mld6.c
/freebsd-11-stable/usr.sbin/mountd/mountd.c
/freebsd-11-stable/usr.sbin/mountd/pathnames.h
/freebsd-11-stable/usr.sbin/mptutil/mpt_cam.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_cmd.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_config.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_drive.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_evt.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_show.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_volume.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.h
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.c
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.h
/freebsd-11-stable/usr.sbin/ndiscvt/inf-parse.y
/freebsd-11-stable/usr.sbin/ndiscvt/inf-token.l
/freebsd-11-stable/usr.sbin/ndiscvt/inf.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndiscvt.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndisgen.sh
/freebsd-11-stable/usr.sbin/ndiscvt/windrv_stub.c
/freebsd-11-stable/usr.sbin/ndp/ndp.c
/freebsd-11-stable/usr.sbin/nfsd/nfsd.c
/freebsd-11-stable/usr.sbin/pciconf/cap.c
/freebsd-11-stable/usr.sbin/pciconf/pciconf.h
/freebsd-11-stable/usr.sbin/ppp/slcompress.c
/freebsd-11-stable/usr.sbin/ppp/slcompress.h
/freebsd-11-stable/usr.sbin/pstat/pstat.c
/freebsd-11-stable/usr.sbin/pwd_mkdb/pwd_mkdb.c
/freebsd-11-stable/usr.sbin/quotaon/quotaon.c
/freebsd-11-stable/usr.sbin/repquota/repquota.c
/freebsd-11-stable/usr.sbin/rip6query/rip6query.c
/freebsd-11-stable/usr.sbin/rmt/rmt.c
/freebsd-11-stable/usr.sbin/route6d/misc/cksum.c
/freebsd-11-stable/usr.sbin/route6d/route6d.c
/freebsd-11-stable/usr.sbin/route6d/route6d.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lock_proc.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd_lock.c
/freebsd-11-stable/usr.sbin/rpc.statd/file.c
/freebsd-11-stable/usr.sbin/rpc.statd/procs.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_main.c
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_server.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbdelete.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbupdate.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_main.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_server.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_extern.h
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_main.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_server.c
/freebsd-11-stable/usr.sbin/rpcbind/check_bound.c
/freebsd-11-stable/usr.sbin/rpcbind/pmap_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_stat.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_4.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_com.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.h
/freebsd-11-stable/usr.sbin/rpcbind/warmstart.c
/freebsd-11-stable/usr.sbin/rrenumd/lexer.l
/freebsd-11-stable/usr.sbin/rrenumd/parser.y
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.c
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.h
/freebsd-11-stable/usr.sbin/rtadvd/advcap.c
/freebsd-11-stable/usr.sbin/rtadvd/config.c
/freebsd-11-stable/usr.sbin/rtadvd/config.h
/freebsd-11-stable/usr.sbin/rtadvd/if.c
/freebsd-11-stable/usr.sbin/rtadvd/if.h
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.c
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.h
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.c
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.h
/freebsd-11-stable/usr.sbin/rtadvd/timer.c
/freebsd-11-stable/usr.sbin/rtadvd/timer.h
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.c
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.h
/freebsd-11-stable/usr.sbin/rtsold/dump.c
/freebsd-11-stable/usr.sbin/rtsold/if.c
/freebsd-11-stable/usr.sbin/rtsold/probe.c
/freebsd-11-stable/usr.sbin/rtsold/rtsock.c
/freebsd-11-stable/usr.sbin/rtsold/rtsol.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.h
/freebsd-11-stable/usr.sbin/rwhod/rwhod.c
/freebsd-11-stable/usr.sbin/setfib/setfib.c
/freebsd-11-stable/usr.sbin/syslogd/pathnames.h
/freebsd-11-stable/usr.sbin/syslogd/syslogd.c
/freebsd-11-stable/usr.sbin/timed/timed/acksend.c
/freebsd-11-stable/usr.sbin/timed/timed/byteorder.c
/freebsd-11-stable/usr.sbin/timed/timed/candidate.c
/freebsd-11-stable/usr.sbin/timed/timed/cksum.c
/freebsd-11-stable/usr.sbin/timed/timed/correct.c
/freebsd-11-stable/usr.sbin/timed/timed/extern.h
/freebsd-11-stable/usr.sbin/timed/timed/globals.h
/freebsd-11-stable/usr.sbin/timed/timed/master.c
/freebsd-11-stable/usr.sbin/timed/timed/measure.c
/freebsd-11-stable/usr.sbin/timed/timed/networkdelta.c
/freebsd-11-stable/usr.sbin/timed/timed/pathnames.h
/freebsd-11-stable/usr.sbin/timed/timed/readmsg.c
/freebsd-11-stable/usr.sbin/timed/timed/slave.c
/freebsd-11-stable/usr.sbin/timed/timed/timed.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmds.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmdtab.c
/freebsd-11-stable/usr.sbin/timed/timedc/extern.h
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.c
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.h
/freebsd-11-stable/usr.sbin/traceroute6/traceroute6.c
/freebsd-11-stable/usr.sbin/trpt/trpt.c
/freebsd-11-stable/usr.sbin/vipw/vipw.c
/freebsd-11-stable/usr.sbin/wpa/ndis_events/ndis_events.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.h
/freebsd-11-stable/usr.sbin/yp_mkdb/yp_mkdb.c
/freebsd-11-stable/usr.sbin/ypbind/yp_ping.c
/freebsd-11-stable/usr.sbin/yppush/yppush_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_access.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dblookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dnslookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_error.c
/freebsd-11-stable/usr.sbin/ypserv/yp_extern.h
/freebsd-11-stable/usr.sbin/ypserv/yp_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_server.c
/freebsd-11-stable/usr.sbin/ypserv/yp_svc_udp.c
329140 11-Feb-2018 kevans

MFC Loader Fixes 2017q4p6: r324649,r324650,r324651,r324652,r324653,r324654,
r324700,r324702,r324709,r324717,r324719,r324841,r324842,r324843,r324845,
r324850,r324876,r324877,r324878,r324879,r324880,r324881,r324883,r324980,
r324981,r324982,r324995,r325014,r325093,r325094,r325114,r325170,r325171,
r325172,r325173,r325174,r325175,r325176,r325248,r325286,r325310,r325332,
r325338,r325339,r325376,r325377,r325379,r325380,r325382,r325478,r325479,
r325480,r325482,r325483,r325484,r325485,r325556,r325641,r325681,r325685,
r325686,r325687,r325688,r325689,r325690,r325691,r325692,r325693,r325694,
r325743,r325744,r325748,r325775,r325779,r325780

r324649: Move common/Makefile.inc to sys/boot/loader.mk.

r324650: tweak style

r324651: create defs.mk for common definitions

r324652: Move all the ficl common code into ficl.mk

r324653: LOADER_foo_SUPPORTED

r324654: Explicitly inlcude SYSDIR in the include path

r324700: loader: initialize dv_cleanup in md.c to eliminate clang warning

r324702: We need to include disk.o in libuboot.a when we're building with
support for disk access.

r324709: Revert "Unify boot1 with loader" change r324646

r324717: libsa/ip.c: misplaced comment, ip_v is half char, not ip_p

r324719: libsa/ip: stop read loop on bad fragments

r324841: Use BOOTDIR more consistently in defs.mk rather than repeat
sys/boot.

r324842: Introduce BOOTOBJ: The top level object directory for the boot tree

r324843: Stopgap fix to the mistmatch between LOADER_GELI_SUPPORT and
LOADER_NO_GELI_SUPPORT.

r324845: Use BOOTOBJ and BOOTDIR to find geli includes and libraries.

r324850: Define LIBSA32 to LIBSA on i386 to fix build.

r324876: Move fdt and uboot defines into common uboot.mk.

r324877: End source directories with SRC rather than a hodgepodge of names

r324878: Make at91 boot loader compile again.

r324879: Prefer SRCTOP paths for bits we're grabbing from libc.

r324880: Use BOOTSRC here.

r324881: Use SYSDIR instead of ${.CURDIR}/../..<etc>/sys.

r324883: Use preferred defined paths, rather than relative paths in fdt.

r324980: Use BOOTDIR consistently.

r324981: Move BINDIR definition to defs.mk, and override where it isn't
/boot

r324982: Remove sys/boot/arm/at91 and ixp425

r324995: loader.efi: Make framebuffer commands available for arm64

r325014: Add a 'place holder' arm struct efi_fb until a real one comes

r325093: Define new EFI variables

r325094: Cleanup non-arch Makefiles

r325114: Use defs.mk defins in most MD code

r325170: Use defs.mk values for userboot

r325171: Use defs.mk name and prefer bsd.init.mk

r325172: Remove the -nostdlib stuff I added. Instead, fix LDFLAGS to be
honored correctly with the new Makefile.inc include order.

r325173: We don't need to build a special ficl for userboot.

r325174: Minor cleanup

r325175: For amd64, compile both zfs and zfs32 libraries.

r325176: Actually add zfs32/Makefile

r325248: loader ptblread() is broken with >512B sectors

r325286: efipart_strategy is using wrong offset with >512B sectors

r325310: zfs.c:vdev_read() needs to be careful about large sectors

r325332: loader: re-enable gzip support for x86

r325338: loader: fix BOOTSRC -> BOOTOBJ in a library path

r325339: This used to have bzip2 support too.

r325376: WIP: centralize machine links

r325377: mostly libsa

r325379: Revert "mostly libsa"

r325380: Revert "WIP: centralize machine links"

r325382: Cleanup stray libstand names to be libsa names.

r325478: Powerpc is a 32-bit boot loader.

r325479: Define LIBFICL32 to be libficl.a on i386 and libficl32.a on amd64.

r325480: Use DO32 for all the places that we need to flag we're building a
32-bit version of a library.

r325482: Move machine and other link creation to defs.mk

r325483: MACHINE can never be powerpc64, so cleanup code that thinks it can.

r325484: Prefer bsd.init.mk to src.opts.mk

r325485: Centralize all 32-bit builds on 64-bit platform stuff.

r325556: loader: set options before including bsd.init.mk

r325641: loader.efi: efi_devpath_is_prefix should return bool

r325681: boot1: avoid using NULL device path

r325685: libsa32 isn't needed for i386. It's already a 32-bit platform.

r325686: Simplify this if to a direct assignment.

r325687: Remove all the empty help files from the powerpc build.

r325688: FDT support doesn't make sense for ps3, remove it.

r325689: Remove LOADER_FDT_SUPPORT as a Makefile variable.

r325690: Remove LOADER_ZFS_SUPPORT as a Makefile variable

r325691: Remove useless PNP define here.

r325692: Replace LOADER_FIREWIRE_SUPPORT variable

r325693: Move LOADER_{NO,}_GELI_SUPPORT to MK_LOADER_GELI

r325694: Install the 4th files in sys/boot/forth instead of each loader

r325743: Make sure the proper loader.rc gets installed.

r325744: boot1: also check for NULL device

r325748: Use proper include file.

r325775: Add loader.conf to the list of files that are MD.

r325779: Add /boot/dts to the list of default modules.

r325780: Don't add /boot/dt*s* but /boot/dt*b*. Stupid think-o.


/freebsd-11-stable/UPDATING
/freebsd-11-stable/share/mk/src.opts.mk
metadata.h
/freebsd-11-stable/sys/arm64/include/metadata.h
/freebsd-11-stable/sys/boot/Makefile
/freebsd-11-stable/sys/boot/Makefile.amd64
/freebsd-11-stable/sys/boot/Makefile.arm
/freebsd-11-stable/sys/boot/Makefile.arm64
/freebsd-11-stable/sys/boot/Makefile.i386
/freebsd-11-stable/sys/boot/Makefile.inc
/freebsd-11-stable/sys/boot/Makefile.powerpc
/freebsd-11-stable/sys/boot/Makefile.sparc64
/freebsd-11-stable/sys/boot/arm/at91/Makefile
/freebsd-11-stable/sys/boot/arm/at91/Makefile.inc
/freebsd-11-stable/sys/boot/arm/at91/boot0/Makefile
/freebsd-11-stable/sys/boot/arm/at91/boot0/README
/freebsd-11-stable/sys/boot/arm/at91/boot0/linker.cfg
/freebsd-11-stable/sys/boot/arm/at91/boot0/main.c
/freebsd-11-stable/sys/boot/arm/at91/boot0iic/Makefile
/freebsd-11-stable/sys/boot/arm/at91/boot0iic/main.c
/freebsd-11-stable/sys/boot/arm/at91/boot0spi/Makefile
/freebsd-11-stable/sys/boot/arm/at91/boot0spi/main.c
/freebsd-11-stable/sys/boot/arm/at91/boot2/Makefile
/freebsd-11-stable/sys/boot/arm/at91/boot2/board.h
/freebsd-11-stable/sys/boot/arm/at91/boot2/boot2.c
/freebsd-11-stable/sys/boot/arm/at91/boot2/bwct_board.c
/freebsd-11-stable/sys/boot/arm/at91/boot2/centipad_board.c
/freebsd-11-stable/sys/boot/arm/at91/boot2/kb920x_board.c
/freebsd-11-stable/sys/boot/arm/at91/bootiic/Makefile
/freebsd-11-stable/sys/boot/arm/at91/bootiic/README
/freebsd-11-stable/sys/boot/arm/at91/bootiic/env_vars.c
/freebsd-11-stable/sys/boot/arm/at91/bootiic/env_vars.h
/freebsd-11-stable/sys/boot/arm/at91/bootiic/loader_prompt.c
/freebsd-11-stable/sys/boot/arm/at91/bootiic/loader_prompt.h
/freebsd-11-stable/sys/boot/arm/at91/bootiic/main.c
/freebsd-11-stable/sys/boot/arm/at91/bootspi/Makefile
/freebsd-11-stable/sys/boot/arm/at91/bootspi/README
/freebsd-11-stable/sys/boot/arm/at91/bootspi/ee.c
/freebsd-11-stable/sys/boot/arm/at91/bootspi/ee.h
/freebsd-11-stable/sys/boot/arm/at91/bootspi/env_vars.c
/freebsd-11-stable/sys/boot/arm/at91/bootspi/env_vars.h
/freebsd-11-stable/sys/boot/arm/at91/bootspi/loader_prompt.c
/freebsd-11-stable/sys/boot/arm/at91/bootspi/loader_prompt.h
/freebsd-11-stable/sys/boot/arm/at91/bootspi/main.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/Makefile
/freebsd-11-stable/sys/boot/arm/at91/libat91/arm_init.S
/freebsd-11-stable/sys/boot/arm/at91/libat91/at91rm9200.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/delay.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/eeprom.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/emac.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/emac.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/emac_init.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/getc.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/lib.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/lib_AT91RM9200.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/mci_device.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/memcmp.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/memcpy.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/memset.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/p_string.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/printf.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/putchar.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/reset.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/sd-card.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/sd-card.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/spi_flash.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/spi_flash.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/strcmp.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/strcpy.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/strcvt.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/strlen.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/tag_list.c
/freebsd-11-stable/sys/boot/arm/at91/libat91/tag_list.h
/freebsd-11-stable/sys/boot/arm/at91/libat91/xmodem.c
/freebsd-11-stable/sys/boot/arm/at91/linker.cfg
/freebsd-11-stable/sys/boot/arm/ixp425/Makefile.inc
/freebsd-11-stable/sys/boot/arm/ixp425/boot2/Makefile
/freebsd-11-stable/sys/boot/arm/ixp425/boot2/arm_init.S
/freebsd-11-stable/sys/boot/arm/ixp425/boot2/boot2.c
/freebsd-11-stable/sys/boot/arm/ixp425/boot2/cf_ata.h
/freebsd-11-stable/sys/boot/arm/ixp425/boot2/ixp425_board.c
/freebsd-11-stable/sys/boot/arm/ixp425/boot2/lib.h
/freebsd-11-stable/sys/boot/arm/loader
/freebsd-11-stable/sys/boot/arm/loader/loader.conf
/freebsd-11-stable/sys/boot/arm/uboot/Makefile
/freebsd-11-stable/sys/boot/arm/uboot/loader.conf
/freebsd-11-stable/sys/boot/common/Makefile.inc
/freebsd-11-stable/sys/boot/common/disk.c
/freebsd-11-stable/sys/boot/common/md.c
/freebsd-11-stable/sys/boot/defs.mk
/freebsd-11-stable/sys/boot/efi/Makefile
/freebsd-11-stable/sys/boot/efi/Makefile.inc
/freebsd-11-stable/sys/boot/efi/boot1/Makefile
/freebsd-11-stable/sys/boot/efi/boot1/boot1.c
/freebsd-11-stable/sys/boot/efi/boot1/boot_module.h
/freebsd-11-stable/sys/boot/efi/boot1/ufs_module.c
/freebsd-11-stable/sys/boot/efi/boot1/zfs_module.c
/freebsd-11-stable/sys/boot/efi/fdt/Makefile
/freebsd-11-stable/sys/boot/efi/include/efilib.h
/freebsd-11-stable/sys/boot/efi/libefi/Makefile
/freebsd-11-stable/sys/boot/efi/libefi/devpath.c
/freebsd-11-stable/sys/boot/efi/libefi/efi_main.c
/freebsd-11-stable/sys/boot/efi/libefi/efipart.c
/freebsd-11-stable/sys/boot/efi/loader/Makefile
/freebsd-11-stable/sys/boot/efi/loader/arch/amd64/Makefile.inc
/freebsd-11-stable/sys/boot/efi/loader/arch/amd64/framebuffer.c
/freebsd-11-stable/sys/boot/efi/loader/arch/amd64/framebuffer.h
/freebsd-11-stable/sys/boot/efi/loader/arch/arm/Makefile.inc
/freebsd-11-stable/sys/boot/efi/loader/arch/arm64/Makefile.inc
/freebsd-11-stable/sys/boot/efi/loader/arch/i386/Makefile.inc
/freebsd-11-stable/sys/boot/efi/loader/bootinfo.c
/freebsd-11-stable/sys/boot/efi/loader/efi_main.c
/freebsd-11-stable/sys/boot/efi/loader/framebuffer.c
/freebsd-11-stable/sys/boot/efi/loader/framebuffer.h
/freebsd-11-stable/sys/boot/fdt.mk
/freebsd-11-stable/sys/boot/fdt/Makefile
/freebsd-11-stable/sys/boot/ficl.mk
/freebsd-11-stable/sys/boot/ficl/Makefile
/freebsd-11-stable/sys/boot/ficl32/Makefile
/freebsd-11-stable/sys/boot/forth/Makefile
/freebsd-11-stable/sys/boot/forth/Makefile.inc
/freebsd-11-stable/sys/boot/forth/loader.conf
/freebsd-11-stable/sys/boot/geli/Makefile
/freebsd-11-stable/sys/boot/i386/Makefile
/freebsd-11-stable/sys/boot/i386/Makefile.inc
/freebsd-11-stable/sys/boot/i386/boot0/Makefile
/freebsd-11-stable/sys/boot/i386/boot2/Makefile
/freebsd-11-stable/sys/boot/i386/btx/btx/Makefile
/freebsd-11-stable/sys/boot/i386/btx/btxldr/Makefile
/freebsd-11-stable/sys/boot/i386/btx/lib/Makefile
/freebsd-11-stable/sys/boot/i386/cdboot/Makefile
/freebsd-11-stable/sys/boot/i386/gptboot/Makefile
/freebsd-11-stable/sys/boot/i386/gptzfsboot/Makefile
/freebsd-11-stable/sys/boot/i386/kgzldr/Makefile
/freebsd-11-stable/sys/boot/i386/libfirewire/Makefile
/freebsd-11-stable/sys/boot/i386/libi386/Makefile
/freebsd-11-stable/sys/boot/i386/loader/Makefile
/freebsd-11-stable/sys/boot/i386/mbr/Makefile
/freebsd-11-stable/sys/boot/i386/pmbr/Makefile
/freebsd-11-stable/sys/boot/i386/pxeldr/Makefile
/freebsd-11-stable/sys/boot/i386/zfsboot/Makefile
/freebsd-11-stable/sys/boot/i386/zfsloader/Makefile
/freebsd-11-stable/sys/boot/libsa/Makefile
/freebsd-11-stable/sys/boot/libsa/ip.c
/freebsd-11-stable/sys/boot/libsa32/Makefile
/freebsd-11-stable/sys/boot/loader.mk
/freebsd-11-stable/sys/boot/man/Makefile
/freebsd-11-stable/sys/boot/mips/beri/Makefile.inc
/freebsd-11-stable/sys/boot/mips/beri/boot2/Makefile
/freebsd-11-stable/sys/boot/mips/beri/loader/Makefile
/freebsd-11-stable/sys/boot/mips/uboot/Makefile
/freebsd-11-stable/sys/boot/ofw/Makefile.inc
/freebsd-11-stable/sys/boot/ofw/libofw/Makefile
/freebsd-11-stable/sys/boot/powerpc/Makefile
/freebsd-11-stable/sys/boot/powerpc/Makefile.inc
/freebsd-11-stable/sys/boot/powerpc/boot1.chrp/Makefile
/freebsd-11-stable/sys/boot/powerpc/kboot/Makefile
/freebsd-11-stable/sys/boot/powerpc/kboot/help.kboot
/freebsd-11-stable/sys/boot/powerpc/ofw/Makefile
/freebsd-11-stable/sys/boot/powerpc/ofw/help.ofw
/freebsd-11-stable/sys/boot/powerpc/ps3/Makefile
/freebsd-11-stable/sys/boot/powerpc/ps3/help.ps3
/freebsd-11-stable/sys/boot/powerpc/uboot/Makefile
/freebsd-11-stable/sys/boot/powerpc/uboot/help.uboot
/freebsd-11-stable/sys/boot/sparc64/Makefile
/freebsd-11-stable/sys/boot/sparc64/Makefile.inc
/freebsd-11-stable/sys/boot/sparc64/boot1/Makefile
/freebsd-11-stable/sys/boot/sparc64/loader/Makefile
/freebsd-11-stable/sys/boot/sparc64/zfsloader/Makefile
/freebsd-11-stable/sys/boot/uboot.mk
/freebsd-11-stable/sys/boot/uboot/Makefile
/freebsd-11-stable/sys/boot/uboot/Makefile.inc
/freebsd-11-stable/sys/boot/uboot/common/Makefile.inc
/freebsd-11-stable/sys/boot/uboot/fdt/Makefile
/freebsd-11-stable/sys/boot/uboot/lib/Makefile
/freebsd-11-stable/sys/boot/userboot/Makefile
/freebsd-11-stable/sys/boot/userboot/ficl/Makefile
/freebsd-11-stable/sys/boot/userboot/ficl/Makefile.depend
/freebsd-11-stable/sys/boot/userboot/test/Makefile
/freebsd-11-stable/sys/boot/userboot/test/test.c
/freebsd-11-stable/sys/boot/userboot/userboot/Makefile
/freebsd-11-stable/sys/boot/userboot/zfs/Makefile
/freebsd-11-stable/sys/boot/userboot/zfs/Makefile.depend
/freebsd-11-stable/sys/boot/zfs/Makefile
/freebsd-11-stable/sys/boot/zfs/zfs.c
/freebsd-11-stable/sys/boot/zfs32
/freebsd-11-stable/sys/boot/zfs32/Makefile
/freebsd-11-stable/tools/boot/universe.sh
/freebsd-11-stable/tools/build/options/WITHOUT_LOADER_GEIL
/freebsd-11-stable/tools/build/options/WITH_LOADER_FIREWIRE
328966 07-Feb-2018 mmel

MFC r325438:

All CP15 registers are bit fields or counters, don't use signed type when
accessing them.

328386 25-Jan-2018 pkelsey

MFC r316648:

Corrected misspelled versions of rendezvous.

The MFC maintains smp_no_rendevous_barrier() as a symbol alias of
smp_no_rendezvous_barrier().

__FreeBSD_version bumped to indicate presence of the new name
smp_no_rendezvous_barrier().

Reviewed by: gnn, jhb (email), kib
Differential Revision: https://reviews.freebsd.org/D10313

327658 07-Jan-2018 ian

MFC r327367:

Make kernel option KERNVIRTADDR optional, remove it from std.<platform>
files that can use the default value.

It used to be required that the low-order bits of KERNVIRTADDR matched
the low-order bits of the physical load address for all arm platforms.
That hasn't been a requirement for armv6 platforms since FreeBSD 10.
There is no longer any relationship between load addr and KERNVIRTADDR
except that both must be aligned to a 2 MiB boundary.

This change makes the default KERNVIRTADDR value 0xc0000000, and removes the
options from all the platforms that can use the default value. The default
is now defined in vmparam.h, and that file is now included in a few new
places that reference KERNVIRTADDR, since it may not come in via the
forced-include of opt_global.h on the compile command line.

327195 26-Dec-2017 kib

MFC r326971, r327047 (by ian), r327053 (by marius), r327074, r327097:
Add atomic_load(9) and atomic_store(9) operations.

325831 14-Nov-2017 jhb

MFC 323581,323582,323583: Add ptrace operations for VFP registers.

323581:
Only mess with VFP state on the CPU for curthread for get/set_vfpcontext.

Future changes will use these functions to fetch and store VFP state for
threads other than curthread.

323582:
Add ptrace operations to fetch and store VFP registers.

323583:
Export get/set_vfpcontext from machdep.c.

Should have been part of the previous commit to add ptrace operations
for VFP registers.

325810 14-Nov-2017 jhb

MFC 323580,323933,323934,324814,324817: Enable AT_HWCAP on arm.

I reused the SV_HWCAP stub to cover the sv_hwcap2 field as well.

323580:
Add AT_HWCAP flags for VFP settings for FreeBSD/arm.

These flags match the meaning and value of flags in Linux, though
Linux has many more flags.

323933:
Correct HWCAP_VFP3* values to match Linux.

323934:
Detect NEON and set HWCAP_NEON if present.

324814:
Add AT_HWCAP2 ELF auxiliary vector.
- allocate value for new AT_HWCAP2 auxiliary vector on all platforms.
- expand 'struct sysentvec' by new 'u_long *sv_hwcap2', in exactly
same way as for AT_HWCAP.

324817:
Fullify implementation of AT_HWCAP and AT_HWCAP2 for ARMv6,7.
This makes elf_aux_info(3) useable for ARM ports.

Tested by: mmel

325307 02-Nov-2017 mmel

MFC r324660:

Save VFP state in getcontext(3) on ARM. This is a last followup of r315974,
which fixes userland part of VFP save/restore problems described in PR
217611.

324687 17-Oct-2017 jhb

MFC 323579,323585: Add AT_HWCAP and AT_EHDRFLAGS on all platforms.

To preserve KBI on stable/11, a new SV_HWCAP flag is added which
indicates if the sv_hwcap field is present and valid to avoid examining
the field in old modules. Only sysentvec's which wish to use sv_hwcap
need to set the flag in stable/11.

323579:
Add AT_HWCAP and AT_EHDRFLAGS on all platforms.

A new 'u_long *sv_hwcap' field is added to 'struct sysentvec'. A
process ABI can set this field to point to a value holding a mask of
architecture-specific CPU feature flags. If an ABI does not wish to
supply AT_HWCAP to processes the field can be left as NULL.

The support code for AT_EHDRFLAGS was already present on all systems,
just the #define was not present. This is a step towards unifying the
AT_* constants across platforms.

323585:
Add AT_EHDRFLAGS and AT_HWCAP on amd64.

x86 has two separate (but identical) list of AT_* constants and the
earlier commit to add AT_HWCAP only updated the i386 list.

323423 11-Sep-2017 ian

MFC r321489:

Use the MD __size_t to avoid a dependency on/include of non-MD header files.
This should fix the compilation of the lua 5.3.4 port, among others.

321039 16-Jul-2017 markj

MFC r311204:
Add some missing atomic_*_ptr #defines for arm.

318742 23-May-2017 mmel

MFC r318021,r318251:

r318021:
Introduce pmap_remap_vm_attr(), it allows to remap one VM memattr class to
another.
r318251:
Clarify usage rules for pmap_remap_vm_attr(). Not a functional change.

318637 22-May-2017 mmel

MFC r318530:

Increase maximum text segment size. LLVM binaries are huge...

318576 20-May-2017 kib

MFC efivar(8) (by imp):

List of revisions merged:
r307070
r307071
r307072
r307074
r307189
r307224
r307339
r307390
r307391
r309776
r314231
r314232
r314615
r314616
r314617
r314618
r314619
r314620
r314621
r314623
r314890
r314925
r314926
r314927
r314928
r315770
r315771

Discussed with: gjb (re), imp
Sponsored by: The FreeBSD Foundation


/freebsd-11-stable/lib/Makefile
/freebsd-11-stable/lib/libefi
/freebsd-11-stable/lib/libefivar
/freebsd-11-stable/lib/libefivar/FreeBSD-update
/freebsd-11-stable/lib/libefivar/Makefile
/freebsd-11-stable/lib/libefivar/ProcessorBind.h
/freebsd-11-stable/lib/libefivar/efi-osdep.h
/freebsd-11-stable/lib/libefivar/efivar-dp-format.c
/freebsd-11-stable/lib/libefivar/efivar-dp-parse.c
/freebsd-11-stable/lib/libefivar/efivar-dp.h
/freebsd-11-stable/lib/libefivar/efivar.c
/freebsd-11-stable/lib/libefivar/efivar.h
/freebsd-11-stable/lib/libefivar/libefivar.c
/freebsd-11-stable/lib/libefivar/libefivar_int.h
/freebsd-11-stable/lib/libefivar/uefi-dplib.h
/freebsd-11-stable/lib/libefivar/uefi-dputil.c
/freebsd-11-stable/lib/libefivar/uefi-guid.c
/freebsd-11-stable/lib/libefivar/uefi-guid.dat
/freebsd-11-stable/share/mk/bsd.libnames.mk
/freebsd-11-stable/share/mk/src.libnames.mk
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/amd64/amd64/efirt.c
efi.h
/freebsd-11-stable/sys/arm64/include/efi.h
/freebsd-11-stable/sys/boot/efi/include/efichar.h
/freebsd-11-stable/sys/boot/efi/libefi/efichar.c
/freebsd-11-stable/sys/conf/files
/freebsd-11-stable/sys/contrib/edk2
/freebsd-11-stable/sys/dev/efidev
/freebsd-11-stable/sys/dev/efidev/efidev.c
/freebsd-11-stable/sys/i386/include/efi.h
/freebsd-11-stable/sys/mips/include/efi.h
/freebsd-11-stable/sys/modules/efirt/Makefile
/freebsd-11-stable/sys/pc98/include/efi.h
/freebsd-11-stable/sys/powerpc/include/efi.h
/freebsd-11-stable/sys/riscv/include/efi.h
/freebsd-11-stable/sys/sparc64/include/efi.h
/freebsd-11-stable/sys/sys/efiio.h
/freebsd-11-stable/usr.sbin/Makefile
/freebsd-11-stable/usr.sbin/efidp
/freebsd-11-stable/usr.sbin/efivar
/freebsd-11-stable/usr.sbin/efivar/efivar.8
/freebsd-11-stable/usr.sbin/efivar/efivar.c
317005 16-Apr-2017 mmel

MFC r315900,r315973,r315974:

r315900:
Cleanup structures related to VFP and/or mcontext_t. - in mcontext_t,
rename newer used 'union __vfp' to equaly sized 'mc_spare'.
Space allocated by 'union __vfp' is too small and cannot hold full VFP
context.
- move structures defined in fp.h to more appropriate headers. - remove
all unused VFP structures.
r315973:
Save VFP state on fork(). Update the copy of VFP state in PCB before it is
cloned for new process.
r315974:
Preserve VFP state across signal delivery.

317004 16-Apr-2017 mmel

MFC r303261,r315059:

r303261:
Add more UEFI/e820 memory types from latest specifications.
r315059:
Split overbloated machep.c to multiple files and do basic cleanup of these
fragments.

317003 16-Apr-2017 mmel

MFC r306704,r308406:

r306704:
ARM: Remove next bunch of unused cpu_functions from ARMv6.
r308406:
Only include sys/boot.h if LINUX_BOOT_ABI is defined

317002 16-Apr-2017 mmel

MFC r306631,r306640,r306641,r306650,r306656:

r306631:
Use C99 designated initializers to create the armv6 cpu_functions structs.
This will help with a later cleanup of what functions we implement.
r306640:
Only define the CF_* macros on ARMv4/v5. They are unused on armv6.
r306641:
Remove the parts of cpu_functions from armv6 that are unused on that
architecture.
r306650:
Add the Cortex-A{53,57,72} ID register values. These can all run 32-bit
code so could run a 32-bit kernel.
r306656:
Use the cortex functions when booting on one of the Cortex-A ARMv8 CPUs.
This list is incomplete, however we don't have the ID values for the
missing Cortex-A32 or A35.

315874 23-Mar-2017 mjg

MFC r312932,r312933,r312949,r313141

(by cognet)

Use strexeq instead of needlessly branch.

==

(by cognet)

Remove useless labels.

==

(by cognet)

Correct the IT instruction in atomic_fcmpset_64().

==

(by andrew)

Only define atomic_fcmpset_long in the kernel. We may include
machine/atomic.h in userspace, however atomic_fcmpset_32 is unimplemented
there.

315371 16-Mar-2017 mjg

MFC r311169,r311898,r312925,r312973,r312975,r313007,r313040,r313080,
r313254,r313341

amd64: add atomic_fcmpset

==

sparc64: add atomic_fcmpset

==

Implement atomic_fcmpset_* for arm and arm64.

==

Add atomic_fcmpset_*() inlines for powerpc

Summary:
atomic_fcmpset_*() is analogous to atomic_cmpset(), but saves off the read value
from the target memory location into the 'old' pointer in the case of failure.

==

i386: add atomic_fcmpset

==

Don't retry a lost reservation in atomic_fcmpset()

The desired behavior of atomic_fcmpset_() is to always exit on error. Instead
of retrying on lost reservation, leave the retry to the caller, and return

==

Add atomic_fcmpset_*() inlines for MIPS

atomic_fcmpset_*() is analogous to atomic_cmpset(), but saves off the
read value from the target memory location into the 'old' pointer.

==

i386: fixup fcmpset

An incorrect output specifier was used which worked with clang by accident,
but breaks with the in-tree gcc version.

While here plug a whitespace nit.

==

Implement atomic_fcmpset_*() for RISC-V.

==

Use 64bit store instruction in atomic_fcmpset_64.

314530 02-Mar-2017 ian

MFC r312292, r313573:

Stop including sys/types.h from arm's machine/atomic.h, fix the places
where atomic.h was being included without ensuring that types.h (via
param.h) was included first, as required by atomic(9).

Remove arm's cpuconf.h, and references to it, after moving a few lines from
it into pmap-v4.h where they are used. Other than those few lines of
support for different MMU types, nothing in cpuconf.h has been used in our
code for quite a while.
The file existed to set up a variety of symbols to describe the
architecture. Over the past few years we have converted all of our source
to use the new architecture symbols standardized by ARM Inc, and predefined
by both clang and gcc.

314525 01-Mar-2017 ian

MFC r306901:

ARM: Split identify_arm_cpu() into ARMv4 and ARMv6 variant.
On ARMv6, be more verbose about supported CPU features and/or
optional instructions.

314506 01-Mar-2017 ian

MFC r306262, r306267, r310021: (needed to avoid conflicts on later merges)

Remove bus_dma_get_range and bus_dma_get_range_nb on armv6. We only need
this on a few earlier arm SoCs.

Restrict where we need to define fdt_fixup_table to just PowerPC and
Marvell.

Add the missing void to function signatures in much of the arm code.


/freebsd-11-stable/sys/arm/allwinner/a10_common.c
/freebsd-11-stable/sys/arm/allwinner/aw_machdep.c
/freebsd-11-stable/sys/arm/allwinner/aw_wdog.c
/freebsd-11-stable/sys/arm/altera/socfpga/socfpga_common.c
/freebsd-11-stable/sys/arm/altera/socfpga/socfpga_machdep.c
/freebsd-11-stable/sys/arm/amlogic/aml8726/aml8726_identsoc.c
/freebsd-11-stable/sys/arm/amlogic/aml8726/aml8726_machdep.c
/freebsd-11-stable/sys/arm/amlogic/aml8726/aml8726_wdt.c
/freebsd-11-stable/sys/arm/annapurna/alpine/alpine_machdep.c
/freebsd-11-stable/sys/arm/annapurna/alpine/common.c
/freebsd-11-stable/sys/arm/arm/busdma_machdep-v6.c
/freebsd-11-stable/sys/arm/arm/cpufunc.c
/freebsd-11-stable/sys/arm/arm/db_trace.c
/freebsd-11-stable/sys/arm/arm/physmem.c
/freebsd-11-stable/sys/arm/arm/platform.c
/freebsd-11-stable/sys/arm/arm/undefined.c
/freebsd-11-stable/sys/arm/at91/at91_common.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_common.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_machdep.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatop.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_src.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_common.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_common.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_machdep.c
bus_dma.h
/freebsd-11-stable/sys/arm/lpc/lpc_gpio.c
/freebsd-11-stable/sys/arm/lpc/lpc_intc.c
/freebsd-11-stable/sys/arm/mv/mv_machdep.c
/freebsd-11-stable/sys/arm/nvidia/tegra124/tegra124_machdep.c
/freebsd-11-stable/sys/arm/nvidia/tegra_efuse.c
/freebsd-11-stable/sys/arm/qemu/virt_common.c
/freebsd-11-stable/sys/arm/qemu/virt_machdep.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_common.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_machdep.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.c
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_common.c
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_machdep.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_dmtpps.c
/freebsd-11-stable/sys/arm/ti/ti_common.c
/freebsd-11-stable/sys/arm/ti/ti_machdep.c
/freebsd-11-stable/sys/arm/versatile/versatile_common.c
/freebsd-11-stable/sys/arm/versatile/versatile_machdep.c
/freebsd-11-stable/sys/arm/xilinx/zy7_machdep.c
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_gpio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_icu.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_space.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_timer.c
/freebsd-11-stable/sys/dev/ofw/ofw_fdt.c
313989 20-Feb-2017 kib

MFC r313345:
Update arm and arm64 counters MD bits.

MFC r313394 (by manu):
subr_sfbus.c need sys/proc.h for struct thread definition.

313766 15-Feb-2017 jah

MFC r312610, r312792

r312610:
Like r310481 for i386, move the objects used to create temporary
mappings for armv6 pmap zero and copy operations to the MD PCPU region.
Change sysmap initialization to only allocate KVA pages for CPUs that
are actually present.

While here, collapse CMAP3 into CMAP2 (their use was mutually exclusive
anyway) and "recover" some space in PCPU padding that has always been
available due to 64-byte cacheline padding.

r312792:
Further cleanup of per-CPU armv6 pmap data:

- Replace pcpu_find(curcpu) with get_pcpu(), which is much more direct.

- Remove armv4 pcpu fields which I added in r286296 but never needed
to use.

- armv6 pc_qmap_addr was leftover from the old armv6 pmap
implementation. Rename it and put it to use in the new one.

313574 11-Feb-2017 kib

MFC r313194:
Define the vm_ooffset_t and vm_pindex_t types as machine-independend.

308327 05-Nov-2016 mmel

MFC r306667,r306668:

r306667:
ARM: Add atomic_swap_64(). It's need by linuxkpi and drm-next-4.7.
r306668:
ARM: Add mising early clobber modifier in atomic_swap_32().

307344 15-Oct-2016 mmel

MFC r306756:

ARM: SEV/WFE instructions are implemented starting from ARMv6K, use it
directly.

307342 15-Oct-2016 mmel

MFC r306755:

ARM: Add identifiers for ARM Cortex v8 and Marvell Sheeva v7 cores. Not a
functional change.

307136 12-Oct-2016 ed

MFC r306162:

Make it possible to safely use TPIDRURW from userspace.

On amd64, arm64 and i386, we have the possibility to switch between TLS
areas in userspace. The nice thing about this is that it makes it easier
to do light-weight threading, if we ever feel like doing that. On armv6,
let's go into the same direction by making it possible to safely use the
TPIDRURW register, which is intended for this purpose.

Clean up the ARMv6 code to remove md_tp entirely. Simply add a dedicated
field to the PCB to hold the value of TPIDRURW across context switches,
like we do for any other register. As userspace currently uses the
read-only TPIDRURO register, simply ensure that we keep both values in
sync where possible. The system calls for modifying the read-only
register will simply write the intended value into both registers, so
that it lazily ends up in the PCB during the next context switch.

Approved by: andrew
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D7951

306404 28-Sep-2016 kib

MFC r306091:
Add a way for the architecture to specify the calling ABI for methods
in the EFI Runtime Services Table. On amd64, the calling conventions
are MS.

305866 16-Sep-2016 kib

MFC r304285:
Implement userspace gettimeofday(2) with HPET timecounter.

305848 15-Sep-2016 emaste

MFC r303677: Move/add ARM ELF PHDR types to elf_common.h

302408 08-Jul-2016 gjb

Copy head@r302406 to stable/11 as part of the 11.0-RELEASE cycle.
Prune svn:mergeinfo from the new branch, as nothing has been merged
here.

Additional commits post-branch will follow.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


/freebsd-11-stable/MAINTAINERS
/freebsd-11-stable/cddl
/freebsd-11-stable/cddl/contrib/opensolaris
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zfs
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs
/freebsd-11-stable/contrib/amd
/freebsd-11-stable/contrib/apr
/freebsd-11-stable/contrib/apr-util
/freebsd-11-stable/contrib/atf
/freebsd-11-stable/contrib/binutils
/freebsd-11-stable/contrib/bmake
/freebsd-11-stable/contrib/byacc
/freebsd-11-stable/contrib/bzip2
/freebsd-11-stable/contrib/com_err
/freebsd-11-stable/contrib/compiler-rt
/freebsd-11-stable/contrib/dialog
/freebsd-11-stable/contrib/dma
/freebsd-11-stable/contrib/dtc
/freebsd-11-stable/contrib/ee
/freebsd-11-stable/contrib/elftoolchain
/freebsd-11-stable/contrib/elftoolchain/ar
/freebsd-11-stable/contrib/elftoolchain/brandelf
/freebsd-11-stable/contrib/elftoolchain/elfdump
/freebsd-11-stable/contrib/expat
/freebsd-11-stable/contrib/file
/freebsd-11-stable/contrib/gcc
/freebsd-11-stable/contrib/gcclibs/libgomp
/freebsd-11-stable/contrib/gdb
/freebsd-11-stable/contrib/gdtoa
/freebsd-11-stable/contrib/groff
/freebsd-11-stable/contrib/ipfilter
/freebsd-11-stable/contrib/ldns
/freebsd-11-stable/contrib/ldns-host
/freebsd-11-stable/contrib/less
/freebsd-11-stable/contrib/libarchive
/freebsd-11-stable/contrib/libarchive/cpio
/freebsd-11-stable/contrib/libarchive/libarchive
/freebsd-11-stable/contrib/libarchive/libarchive_fe
/freebsd-11-stable/contrib/libarchive/tar
/freebsd-11-stable/contrib/libc++
/freebsd-11-stable/contrib/libc-vis
/freebsd-11-stable/contrib/libcxxrt
/freebsd-11-stable/contrib/libexecinfo
/freebsd-11-stable/contrib/libpcap
/freebsd-11-stable/contrib/libstdc++
/freebsd-11-stable/contrib/libucl
/freebsd-11-stable/contrib/libxo
/freebsd-11-stable/contrib/llvm
/freebsd-11-stable/contrib/llvm/projects/libunwind
/freebsd-11-stable/contrib/llvm/tools/clang
/freebsd-11-stable/contrib/llvm/tools/lldb
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump
/freebsd-11-stable/contrib/llvm/tools/llvm-lto
/freebsd-11-stable/contrib/mdocml
/freebsd-11-stable/contrib/mtree
/freebsd-11-stable/contrib/ncurses
/freebsd-11-stable/contrib/netcat
/freebsd-11-stable/contrib/ntp
/freebsd-11-stable/contrib/nvi
/freebsd-11-stable/contrib/one-true-awk
/freebsd-11-stable/contrib/openbsm
/freebsd-11-stable/contrib/openpam
/freebsd-11-stable/contrib/openresolv
/freebsd-11-stable/contrib/pf
/freebsd-11-stable/contrib/sendmail
/freebsd-11-stable/contrib/serf
/freebsd-11-stable/contrib/sqlite3
/freebsd-11-stable/contrib/subversion
/freebsd-11-stable/contrib/tcpdump
/freebsd-11-stable/contrib/tcsh
/freebsd-11-stable/contrib/tnftp
/freebsd-11-stable/contrib/top
/freebsd-11-stable/contrib/top/install-sh
/freebsd-11-stable/contrib/tzcode/stdtime
/freebsd-11-stable/contrib/tzcode/zic
/freebsd-11-stable/contrib/tzdata
/freebsd-11-stable/contrib/unbound
/freebsd-11-stable/contrib/vis
/freebsd-11-stable/contrib/wpa
/freebsd-11-stable/contrib/xz
/freebsd-11-stable/crypto/heimdal
/freebsd-11-stable/crypto/openssh
/freebsd-11-stable/crypto/openssl
/freebsd-11-stable/gnu/lib
/freebsd-11-stable/gnu/usr.bin/binutils
/freebsd-11-stable/gnu/usr.bin/cc/cc_tools
/freebsd-11-stable/gnu/usr.bin/gdb
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/sys/cddl/contrib/opensolaris
/freebsd-11-stable/sys/contrib/dev/acpica
/freebsd-11-stable/sys/contrib/ipfilter
/freebsd-11-stable/sys/contrib/libfdt
/freebsd-11-stable/sys/contrib/octeon-sdk
/freebsd-11-stable/sys/contrib/x86emu
/freebsd-11-stable/sys/contrib/xz-embedded
/freebsd-11-stable/usr.sbin/bhyve/atkbdc.h
/freebsd-11-stable/usr.sbin/bhyve/bhyvegc.c
/freebsd-11-stable/usr.sbin/bhyve/bhyvegc.h
/freebsd-11-stable/usr.sbin/bhyve/console.c
/freebsd-11-stable/usr.sbin/bhyve/console.h
/freebsd-11-stable/usr.sbin/bhyve/pci_fbuf.c
/freebsd-11-stable/usr.sbin/bhyve/pci_xhci.c
/freebsd-11-stable/usr.sbin/bhyve/pci_xhci.h
/freebsd-11-stable/usr.sbin/bhyve/ps2kbd.c
/freebsd-11-stable/usr.sbin/bhyve/ps2kbd.h
/freebsd-11-stable/usr.sbin/bhyve/ps2mouse.c
/freebsd-11-stable/usr.sbin/bhyve/ps2mouse.h
/freebsd-11-stable/usr.sbin/bhyve/rfb.c
/freebsd-11-stable/usr.sbin/bhyve/rfb.h
/freebsd-11-stable/usr.sbin/bhyve/sockstream.c
/freebsd-11-stable/usr.sbin/bhyve/sockstream.h
/freebsd-11-stable/usr.sbin/bhyve/usb_emul.c
/freebsd-11-stable/usr.sbin/bhyve/usb_emul.h
/freebsd-11-stable/usr.sbin/bhyve/usb_mouse.c
/freebsd-11-stable/usr.sbin/bhyve/vga.c
/freebsd-11-stable/usr.sbin/bhyve/vga.h
302064 21-Jun-2016 ian

Revert the recent armv6 changes to ALIGNED_POINTER(), restoring the
fully-pessimized implementation that requires a type to be aligned to
its natural size.

On armv6+ the compiler might generate load-/store-multiple instructions
which require 4-byte alignment even though the source code is only
accessing individual uint32_t values in a way that doesn't require any
particular alignment at all. The compiler apparently feels free to
combine multiple accesses into a single instruction that requires a
more-strict alignment, and no set of compiler flags seems to disable
this behavior (at least in clang 3.8).

This fixes alignment faults on arm systems using wifi adapters. The
wifi code uses ALIGNED_POINTER(p, uint32_t) to decide whether it needs
to copy-align tcp headers. Because clang is combining several uint32_t
accesses into a single ldm instruction, we need to say that accessing a
uint32_t requires 4-byte alignment.

Approved by: re(gjb)


301872 13-Jun-2016 ian

Do not define __NO_STRICT_ALIGNMENT for armv6. While the requirements
are no longer natural-alignment strict, there are still some restrictions.

FreeBSD network code assumes data is naturally-aligned or is running
on a platform with no restrictions; pointers are not annotated to
indicate the data pointed to may be packed or unaligned. The clang
optimizer can sometimes combine the load or store of a pair of adjacent
32-bit values into a single doubleword load/store, and that operation
requires at least 4-byte alignment. __NO_STRICT_ALIGNMENT can lead
to tcp headers being only 2-byte aligned.

Note that alignment faults remain disabled on armv6, this change reverts
only the defining of the symbol which leads to some overly-agressive code
shortcuts when building common/shared drivers and network code for arm.

Approved by: re(kib)


301700 08-Jun-2016 andrew

Remove the ARMv4/ARMv5 userland atomic support from struct proc on armv6.
Nothing should use this on armv6 as we use the atomic instructions added in
ARMv6k.

Sponsored by: ABT Systems Ltd


301561 07-Jun-2016 andrew

Start to clean MIDR values using the CPUID scheme. We don't need to know
the exact CPU we are running on to set the cpu functions. Relax the check
to ignore the CPU revision. Even so this may still be too specific.

Reviewed by: mmel
Sponsored by: ABT Systems Ltd
Differential Revision: https://reviews.freebsd.org/D6504


300969 29-May-2016 zbb

Improve ARM debug_monitor for SMP machines

- Reset debug architecture and enable monitor for secondary
CPUs in init_secondary() rather than when configuring watchpoint, etc.
- Disable HW debugging capabilities when one of the CPU cores fails
to set up.
- Use dbg_capable() in a more atomic manner to avoid any mismatch
between CPUs.

Differential Revision: https://reviews.freebsd.org/D6009


300701 26-May-2016 ian

Disable alignment faults on armv6, adjust various alignment-related macros
to match the new state of affairs. The hardware we support has always been
able to do unaligned accesses, we've just never enabled it until now.

This brings FreeBSD into line with all the other major OSes, and should help
with the growing volume of 3rd-party software that assumes unaligned access
will just work on armv6 and armv7.


300694 25-May-2016 ian

Include machine/acle-compat.h in cdefs.h on arm if the compiler doesn't
have ACLE support built in. The ACLE (ARM C Language Extensions) defines
a set of standardized symbols which indicate the architecture version and
features available. ACLE support is built in to modern compilers (both
clang and gcc), but absent from gcc prior to 4.4.

ARM (the company) provides the acle-compat.h header file to define the
right symbols for older versions of gcc. Basically, acle-compat.h does
for arm about the same thing cdefs.h does for freebsd: defines
standardized macros that work no matter which compiler you use. If ARM
hadn't provided this file we would have ended up with a big #ifdef __arm__
section in cdefs.h with our own compatibility shims.

Remove #include <machine/acle-compat.h> from the zillion other places (an
ever-growing list) that it appears. Since style(9) requires sys/types.h
or sys/param.h early in the include list, and both of those lead to
including cdefs.h, only a couple special cases still need to include
acle-compat.h directly.

Loves it: imp


300533 23-May-2016 ian

Use the new(-ish) CP15_SCTLR macro to generate system control reg accesses
where possible. In the places that doesn't work (multi-line inline asm,
and places where the old armv4 cpufuncs mechanism is used), annotate the
accesses with a comment that includes SCTLR. Now a grep -i sctlr can find
all the system control register manipulations.

No functional changes.


300375 21-May-2016 ian

Adjust _ALIGNBYTES to the proper value for arm and armv6 arches. Modern
compilers can emit arm instructions that require 8-byte alignment. The
alignment-sensitive instructions were added in armv5, which has to be
supported by our combined v4/v5 kernels, so the value is set uncoditionally
for all arm architecture versions.

Also adjust the comment to explain in more detail why the macros have the
form and values they do.

Per advice from bde@, maintain the unsignedness of the value of _ALIGNBYTES
(but do so using his second choice of allowing sizeof() to supply the
unsignedness, rather than just hardcoding '8U', which in my mind would
require an even more verbose comment to explain why it's right). Also
explain in the comment that the resulting type of _ALIGN() is equivelent
to uinptr_t on arm (32-bit unsigned int), but it's purposely spelled as
"unsigned" to avoid problems with including other header files. Even
including machine/_types.h to allow use of __uintptr_t causes compilation
failures because of this header being included (indirectly) in asm code.

The discussion that led to this change (albeit at a glacial pace) is at
https://lists.freebsd.org/pipermail/svn-src-head/2014-November/064593.html


300324 20-May-2016 imp

Remove hf appending code from param.h for machine arch name.

Submitted by: ian@ andyt@


300144 18-May-2016 andrew

Implement atomic_cmpset_acq_64 and atomic_cmpset_rel_64 on arm and armeb.
This should allow r300113 to build there.

Sponsored by: ABT Systems Ltd


300050 17-May-2016 eadler

Don't repeat the the word 'the'

(one manual change to fix grammar)

Confirmed With: db
Approved by: secteam (not really, but this is a comment typo fix)


298854 30-Apr-2016 andrew

Add a MULTIDELAY option to allow the ARM kernel to have multiple DELAY
implementations. Early in the boot the kernel will use an approximate,
however after the timer has been probed it will switch to a more accurate
implementation.

Reviewed by: manu
Sponsored by: ABT Systems Ltd
Differential Revision: https://reviews.freebsd.org/D5762


298627 26-Apr-2016 br

Move arm's devmap to some generic place, so it can be used
by other architectures.

Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D6091
Sponsored by: DARPA, AFRL
Sponsored by: HEIF5


298457 22-Apr-2016 skra

Don't use atomic operations for page table entries and handle access
and R/W emulation aborts under pmap lock.

There were two reasons for using of atomic operations:
(1) the pmap code is based on i386 one where they are used,
(2) there was an idea that access and R/W emulation aborts should be
handled as quick as possible, without pmap locking.

However, the atomic operations in i386 pmap code are used only because
page table entries may be modified by hardware. At the beginning, we
were not sure that it's the only reason. So even if arm hardware does
not modify them, we did not risk to not use them at that time. Further,
it turns out after some testing that using of pmap lock for access and
R/W emulation aborts does not bring any extra cost and there was no
measurable difference. Thus, we have decided finally to use pmap lock
for all operations on page table entries and so, there is no reason for
atomic operations on them. This makes the code cleaner and safer.

This decision introduce a question if it's safe to use pmap lock for
access and R/W emulation aborts. Anyhow, there may happen two cases in
general:
(A) Aborts while the pmap lock is locked already - this should not
happen as pmap lock is not recursive. However, under pmap lock only
internal kernel data should be accessed and such data should be mapped
with A bit set and NM bit cleared. If double abort happens, then
a mapping of data which has caused it must be fixed.
(B) Aborts while another lock(s) is/are locked - this already can
happen. There is no difference here if it's either access or R/W
emulation abort, or if it's some other abort.

Reviewed by: kib


298455 22-Apr-2016 skra

Add four functions which check a virtual address for stage 1 privileged
(PL1) and unprivileged (PL0) read/write access. As cp15 virtual to
physical address translation operations are used, interrupts must be
disabled to get consistent result when they are called.

These functions should be used only in very specific occasions like
during abort handling or kernel debugging. One of them is going to be
used in pmap_fault(). However, complete function set is added. It cost
nothing, as they are inlined.

While here, fix comment of #endif.

Reviewed by: kib


298068 15-Apr-2016 andrew

Rename ARM_INTRNG and MIPS_INTRNG to INTRNG. This will help with machine
independent code that needs to know about INTRNG such as PCI drivers.

Obtained from: ABT Systems Ltd
Sponsored by: The FreeBSD Foundation


297539 04-Apr-2016 skra

Remove FDT specific parts from INTRNG. Change its interface to make it
universal.

(1) New struct intr_map_data is defined as a container for arbitrary
description of an interrupt used by a device. Typically, an interrupt
number and configuration relevant to an interrupt controller is encoded
in such description. However, any additional information may be encoded
too like a set of cpus on which an interrupt should be enabled or vendor
specific data needed for setup of an interrupt in controller. The struct
intr_map_data itself is meant to be opaque for INTRNG.

(2) An intr_map_irq() function is created which takes an interrupt
controller identification and struct intr_map_data as arguments and
returns global interrupt number which identifies an interrupt.

(3) A set of functions to be used by bus drivers is created as well as
a corresponding set of methods for interrupt controller drivers. These
sets take both struct resource and struct intr_map_data as one of the
arguments. There is a goal to keep struct intr_map_data in struct
resource, however, this way a final solution is not limited to that.

(4) Other small changes are done to reflect new situation.

This is only first step aiming to create stable interface for interrupt
controller drivers. Thus, some temporary solution is taken. Interrupt
descriptions for devices are stored in INTRNG and two specific mapping
function are created to be temporary used by bus drivers. That's why
the struct intr_map_data is not opaque for INTRNG now. This temporary
solution will be replaced by final one in next step.

Differential Revision: https://reviews.freebsd.org/D5730


297285 26-Mar-2016 mmel

ARM: Fix ATAG handling in LINUX_BOOT_API:
- Don't convert atags address passed from U-Boot. It's real physical
address (and we have 1:1 mapping).
- Size of tags is encoded in words, not in bytes


297284 26-Mar-2016 mmel

ARM: Teach LINUX_BOOT_ABI to recognize DT blob.
This allow us to boot FreeBSD kernel (using uImage encapsulation) directly
from U-boot using 'bootm' command or by Android fastboot loader.
For now, kernel uImage must be marked as Linux, but we can add support for
FreeBSD into U-Boot later.


297230 24-Mar-2016 skra

Generalize IPI support for ARM intrng and use it for interrupt
controller IPI provider.

New struct intr_ipi is defined which keeps all info about an IPI:
its name, counter, send and dispatch methods. Generic intr_ipi_setup(),
intr_ipi_send() and intr_ipi_dispatch() functions are implemented.

An IPI provider must implement two functions:
(1) an intr_ipi_send_t function which is able to send an IPI,
(2) a setup function which initializes itself for an IPI and
calls intr_ipi_setup() with appropriate arguments.

Differential Revision: https://reviews.freebsd.org/D5700


296138 27-Feb-2016 skra

Move IPI related parts back to (ARM) machine specific file now, when
the interrupt framework is also going to be used by another (MIPS)
architecture. IPI implementations may vary much across different
architectures.

An IPI implementation should still define INTR_IPI_COUNT and use
intr_ipi_setup_counters() to setup IPI counters which are inside of
intrcnt[] and intrnames[] arrays. Those are used for sysctl and ddb.
Then, intr_ipi_increment_count() should be used to increment obtained
counter.

Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D5459


296100 26-Feb-2016 andrew

Almost all copies of platform_mp_init_secondary just called
intr_pic_init_secondary. Replace them with a direct call. On BCM2836
and ARMADA XP we need to add this function, but it can be empty.

Reviewed by: ian, imp
Sponsored by: ABT Systems Ltd
Differential Revision: https://reviews.freebsd.org/D5460


296098 26-Feb-2016 andrew

Remove platform_mp_probe as it's almost identical on most ARM SoCs, and
slightly wrong on the others. We should just check if mp_ncpus is set to
more than one CPU as we may wish to run on a single core even when SMP is
available.

Reviewed by: ian
Sponsored by: ABT Systems Ltd
Differential Revision: https://reviews.freebsd.org/D5458


296066 25-Feb-2016 andrew

Remove platform_ipi_send, it's an unneeded as all implementations are
identical.

Sponsored by: ABT Systems Ltd


295920 23-Feb-2016 skra

Remove redundant __ARM_ARCH >= 6 check in armv6 specific files.


295803 19-Feb-2016 skra

Remove not used definitions and fix some style nits.
No functional changes.


295802 19-Feb-2016 skra

Remove AP_KRW definition not needed after r295801.


295801 19-Feb-2016 skra

Rename pte.h to pte-v4.h and start including directly either pte-v4.h
or pte-v6.h in files which needs it.

There are quite internal definitions in pte-v4.h and pte-v6.h headers
specific for corresponding pmap implementation. These headers should be
included only in very few files and an intention is to not hide for
which implementation such files are.

Further, sys/arm/arm/elf_trampoline.c is an example of file which
uses armv4 like pmap implementation for both armv4 and armv6 platforms.
This is another reason why pte.h which includes specific header
according to __ARM_ARCH is not created.


295799 19-Feb-2016 skra

Move common definitions from both pmap-v4.h and pmap-v6.h into pmap.h.
(1) MI interface needed for vm subsystem.
(2) MD interface created for ARM architecture to be used in files
shared by armv4 and armv6 platforms.


295798 19-Feb-2016 skra

Rename pmap.h to pmap-v4.h and remove pmap-v6.h include from it.
Create new pmap.h which includes specific header according to
__ARM_ARCH.

Note that <machine/pmap.h> is included from <vm/pmap.h> so one common
<machine/pmap.h> must exist.


295752 18-Feb-2016 skra

Remove redundant ARM_L2_ADDR_BITS and L2_ADDR_BITS definitions and
replace them by primary ones where needed.


295751 18-Feb-2016 skra

Remove redundant L2_ADDR_MASK definition and replace it by primary one.


295750 18-Feb-2016 skra

Remove unneeded definitions after r291406. Also remove redundant and
not used L1_ADDR_BITS definition.


295703 17-Feb-2016 skra

Do not use PMAP_DOMAIN_KERNEL definition for __ARM_ARCH >= 6 as domains
are not utilized there. Only domain #0 is used and there is no reference
to it in the whole pmap-v6.c. Thus initialize domain access register in
locore-v6.c without reference too.


295696 17-Feb-2016 skra

Remove unneeded vector_page_setprot() for __ARM_ARCH >= 6. A vector
page is always mapped in KVA space and so it's always writeable.


295695 17-Feb-2016 skra

Include pte-v6.h only where needed.


295694 17-Feb-2016 skra

Remove pd_prot and pd_cache members from struct arm_devmap_entry.
The struct is used for definition of static device mappings which
should always have same protection and attributes.


295459 10-Feb-2016 adrian

Break out the shared bits of the arm intrng definitions into sys/intr.h;
leave the machine dependent bits in sys/arm/.

This is in preparation for MIPS INTRNG work.

Submitted by: Stanislav Galabov <sgalabov@gmail.com>


295319 05-Feb-2016 mmel

ARM: Use new ARMv6 naming conventions for cache and TLB functions
in all but ARMv4 specific files.
Expand ARMv6 compatibility stubs in cpu-v4.h. Use physical address
in L2 cache functions if ARM_L2_PIPT is defined.


295315 05-Feb-2016 mmel

ARM: Introduce new cpu-v4.h header and move all ARMv4 specific code
from cpu-v6.h to it.
Remove unneeded cpu-v6.h includes.


295257 04-Feb-2016 skra

Make VM_MEMATTR_xxx definitions independent on pmap internals
for __ARM_ARCH >= 6.

It's TEX class number now, so it still has some meaning.


295252 04-Feb-2016 mmel

ARM: Don't use ugly (and hidden) global variable, control register is
readable at any time.


295213 03-Feb-2016 mmel

ARM: Consistently use cpu_setttb() instead of setttb().
Remove unused #define for drain_writebuf.


295207 03-Feb-2016 mmel

ARM: Replace only once used cpu_icache_sync_all() by ranged equivalent.
Remove it from cpu_functions table.


295206 03-Feb-2016 skra

Partly revert r295168 and define PTE_DEVICE in pmap-v6.h header again.
It turned out that devmap.c is not only file in which PTE_DEVICE
is used and simultaneously, built for both armv4 and armv6 platforms.

When I tried to build all arm kernels before r295168 commit, it was
hid by some other local changes in my tree. I hope that this is just
temporary workaround before VM_MEMATTR_DEVICE could be used instead of
PTE_DEVICE outside of pmap code for __ARM_ARCH < 6.


295200 03-Feb-2016 mmel

ARM: Remove support for xscale i80219 and i80321 CPUs. We haven't single
supported config/board with these CPUs.


295168 02-Feb-2016 skra

Use pmap_preboot_map_attr() directly in arm_devmap_bootstrap()
instead of hiding behind pmap_map_chunk(). It's not longer needed
after old pmap-v6 code was removed.

For compatibility with __ARM_ARCH < 6, define PTE_DEVICE in devmap.c
file. Certainly, it would be nice if VM_MEMATTR_DEVICE could be used
even for __ARM_ARCH < 6.


295166 02-Feb-2016 skra

Make pmap_preboot_map_attr() vm subsystem compliant, so its arguments
do not depend on pmap internals. This is a preparation for hiding
internal pmap definitions as much as possible from the rest of system.

Simultaneously, the protection argument evaluation is fixed. Happily,
it did not effect the mappings. And it's the reason why it was not fixed
earlier.


295149 02-Feb-2016 mmel

ARM: All remaining functions in cpufunc_asm_arm10.S are identical with
functions in cpufunc_asm_arm9.S. Use arm9 variants and remove
cpufunc_asm_arm10.S completly.


295145 02-Feb-2016 mmel

ARM: Remove last unused function, cpu_flush_prefetchbuf(),
from cpu_functions table.


295143 02-Feb-2016 skra

Remove all remaining references to old and not more used struct
pmap_devmap, pmap_devmap_bootstrap() and pmap_devmap[]. It was
replaced in r257660.


295129 01-Feb-2016 skra

Remove all stuff related to __ARM_ARCH >= 6 from pmap.h header except
for <machine/pmap-v6.h> include. It was used by old pmap-v6 code.


295122 01-Feb-2016 mmel

ARM: Remove never used cpu_tlb_flushI and cpu_tlb_flushI_SE() functions
and their implementations.


295096 31-Jan-2016 mmel

ARM: cpufunc_domains, cpufunc_faultstatus and cpufunc_faultaddress
functions are equal for all ARM variants. Remove them from cpu_functions
table.


295095 31-Jan-2016 mmel

ARM: Next round of cpufunc.* cleaning. Nobody uses flush_brnchtgt* functions,
delete them.


295092 31-Jan-2016 mmel

ARM: First round of cpufunc.* cleaning. All abort_fixup functions are
not currently used or defined. Delete them.


295091 31-Jan-2016 mmel

ARM: Rename ARM specific VM_MEMATTR_WT memory attribute to standard one.


295073 30-Jan-2016 mmel

ARM: Remove TLB IPI.
We don't support SMP on ARMv6. All ARMv7 multicore cpus already uses
hardware broadcast for TLB and cache operations.


295049 29-Jan-2016 skra

Retire pmap_pte_init_mmu_v6() which was used by old pmap-v6.


295043 29-Jan-2016 skra

Remove NPTEPG definition which is not used anywhere now after
introduction of new pmap dump interface (r294722). And do not
expose pt_entry_t type.


295042 29-Jan-2016 skra

Use kernel_pmap directly instead of pmap_kernel(). The kernel_pmap is
already used for __ARM_ARCH >= 6 and so even for __ARM_ARCH < 6 on some
common places.


295036 29-Jan-2016 mmel

ARM: remove old pmap-v6 code. The new pmap-v6 is mature enough, and
dual implementation is showstopper for major cleanup.

This patch only removes old code from tree. Cleanups will follow asap.


294987 28-Jan-2016 zbb

SMP support for ARMv6/v7 HW watchpoints

Use per-CPU structure to store HW watchpoints registers state
for each CPU present in the system. Those registers will be restored
upon wake up from the STOP state if requested by the debug_monitor
code. The method is similar to the one introduced to AMD64.

We store all possible 16 registers for HW watchpoints
(maximum allowed by the architecture).
HW breakpoints are not maintained since they are used for single
stepping only.

Pointed out by: kib
Reviewed by: wma
No strong objections from: kib
Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Obtained from: Semihalf
Sponsored by: Juniper Networks Inc.
Differential Revision: https://reviews.freebsd.org/D4338


294754 25-Jan-2016 andrew

Allow us to be told about memory past the first 4GB point, but ignore it.
This allows, for example, UEFI pass a memory map with some ram in this
region, but for us to ignore it. This is the case when running under the
qemu virt machine type.

Sponsored by: ABT Systems Ltd


294740 25-Jan-2016 zbb

Introduce support for HW watchpoints and single stepping for ARMv6/v7

Allows for using hardware watchpoints for 1, 2, 4, 8 byte long addresses.
The default configuration of watchpoint is RW but code allows to select
RO or WO and X.
Since debugging registers are per-CPU (CP14) the watchpoint is set on
the CPU that was lucky (or not) to enter DDB.

HW breakpoints are used to perform single step in KDB.
When HW breakpoint is enabled all watchpoints are temporary disabled
to avoid recursive abort on both watchpoint and breakpoint.
In case of branch, the breakpoint is set to both - next instruction
and possible branch address. This requires at least 2 breakpoints
supported in the CPU however this is a must for ARMv6/v7 CPUs.

Reviewed by: imp
Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Obtained from: Semihalf
Sponsored by: Juniper Networks Inc.
Differential Revision: https://reviews.freebsd.org/D4037


294722 25-Jan-2016 skra

Create new pmap dump interface for minidump and use it for existing
pmap implementations on ARM. This way minidump code can be used without
any platform specific modification.

Also, this is the last piece missing for ARM_NEW_PMAP.

Differential Revision: https://reviews.freebsd.org/D5023


294138 16-Jan-2016 andrew

Use __ARM_ARCH to decide when ARM_TP_ADDRESS needs to be set. This fixes
an issue with clang 3.8.0 where none of the __ARM_ARCH_*__ macros were
defined on some ARMv6 kernel configs.

Sponsored by: ABT Systems Ltd


294098 15-Jan-2016 skra

Add mmu format info into ARM vmcore.
Fix kvatop translation for 64K pages.

Reviewed by: jhb
Approved by: kib (mentor)
Differential Revision: https://reviews.freebsd.org/D4942


292555 21-Dec-2015 ian

Implement OF_decode_addr() for arm. Move most of powerpc's implementation
into a new function that other platforms can share.

This creates a new ofw_reg_to_paddr() function (in a new ofw_subr.c file)
that contains most of the existing ppc implementation, mostly unchanged.
The ppc code now calls the new MI code from the MD code, then creates a
ppc-specific bus_space mapping from the results. The new arm implementation
does the same in an arm-specific way.

This also moves the declaration of OF_decode_addr() from ofw_machdep.h to
openfirm.h, except on sparc64 which uses a different function signature.

This will help all FDT platforms to set up early console access using
OF_decode_addr().


292426 18-Dec-2015 adrian

[intrng] Migrate the intrng code from sys/arm/arm to sys/kern/subr_intr.c.

The ci20 port (by kan@) is going to reuse almost all of the intrng code
since the SoC in question looks suspiciously like someone took an ARM
SoC design and replaced the ARM core with a MIPS core.

* migrate out the code;
* rename ARM_ -> INTR_;
* rename arm_ -> intr_;
* move the interrupt flush routine from intr.c / intrng.c into
arm/machdep_intr.c - removing the code duplication and removing
the ARM specific bits from here.

Thanks to the Star Wars: The Force Awakens premiere line for allowing
me a couple hours of quiet time to finish the universe builds.

Tested:

* make universe

TODO:

* The structure definitions in subr_intr.c still includes machine/intr.h
which requires one duplicates all of the intrng definitions in
the platform code (which kan has done, and I think we don't have to.)

Instead I should break out the generic things (function declarations,
common intr structures, etc) into a separate header.

* Kan has requested I make the PIC based IPI stuff optional.


292276 15-Dec-2015 skra

Local TLB flush is sufficient in pmap_remove_pages().

(1) The pmap argument passed to the function must be current pmap only.
(2) The process must be single threaded as the function is called either
when a process is exiting or from exec_new_vmspace().

Remove pmap_tlb_flush_ng() which is not used anywhere now.

Approved by: kib (mentor)


292260 15-Dec-2015 mmel

ARM: Remove outdated katelib.h.

Approved by: kib (mentor)


291937 07-Dec-2015 kib

Add support for usermode (vdso-like) gettimeofday(2) and
clock_gettime(2) on ARMv7 and ARMv8 systems which have architectural
generic timer hardware. It is similar how the RDTSC timer is used in
userspace on x86.

Fix a permission problem where generic timer access from EL0 (or
userspace on v7) was not properly initialized on APs.

For ARMv7, mark the stack non-executable. The shared page is added for
all arms (including ARMv8 64bit), and the signal trampoline code is
moved to the page.

Reviewed by: andrew
Discussed with: emaste, mmel
Sponsored by: The FreeBSD Foundation
Differential revision: https://reviews.freebsd.org/D4209


291852 05-Dec-2015 andrew

Move the check to see if we are tracing a function with the DTrace Function
Boundary Trace to assembly to reduce the overhead of these checks.

Submitted by: Howard Su <howard0su@gmail.com>
Relnotes: Yes
Differential Revision: https://reviews.freebsd.org/D4266


291650 02-Dec-2015 mmel

ARM: Define PCI_RES_BUS resource for platforms having NEW_PCIB enabled.

Approved by: kib (mentor)


291492 30-Nov-2015 mmel

ARM: create new memory attribute for writethrough cacheable memory.
- add new TEX class for WT cacheable memory
- export new TEX class to kernel as VM_MEMATTR_WT attribute
- add new aliases VM_MEMATTR_WRITE_COMBINING and
VM_MEMATTR_WRITE_BACK, it's used in DRM code

Note:
Only Cortex A8 supports WT caching in HW. On rest of Cortex CPUs,
WT requests is treated as uncacheable.

Approved by: kib (mentor)


291426 28-Nov-2015 mmel

ARM: Implement atomic_swap_int(9). It's used in DRM2 code.

Approved by: kib (mentor)


291425 28-Nov-2015 mmel

ARM: Add support for new KRAIT 300 CPU revision.

Approved by: kib (mentor)


291258 24-Nov-2015 skra

Flush all kernel mappings from TLB(s) in time when they are cleared.
Replace tlb_flush_local() by tlb_flush() as even not global mappings
could be fetched to TLB(s) on other cores by speculative table walk.

From OS point of view, it was not a problem as either such mappings
were not used anymore or they were flushed from TLB(s) when reused.
However, from hardware point of view, it was a problem. Not flushed
mappings could be a target for speculative reads or prefetches (which
might be quite aggresive on ARM cores). As speculative read can fill
cacheline, it can cause a real problem, when physical page is reused,
but mapped with different memory attributes.

Anyhow, it's good to have only valid mappings in TLB(s).

Approved by: kib (mentor)


291131 21-Nov-2015 andrew

Limit arm_base_bs_tag to ARMv4 and ARMv5, we only used it in one place in
armv6 and that can use fdtbus_bs_tag.


290979 17-Nov-2015 zbb

Make PCB structure binary compatible for old and new PMAP on ARM

This structure must be binary compatible regardless of PMAP
version being used. Create reserved section for NEW_PMAP to
make other variables be placed exactly in the same memory
addresses. This fixes kgdb/gdb behavoiur, which uses pcb.h stuctures.
The NEW_PMAP is kernel flag, so it does not propagate to the buildworld,
what makes the tools using pcb.h unable to parse PCB data.

Reviewed by: mmel, kib
Submitted by: Wojciech Macek <wma@semihalf.com>
Obtained from: Semihalf
Sponsored by: Juniper Networks Inc.
Differential Revision: https://reviews.freebsd.org/D4011


290974 17-Nov-2015 andrew

Make pl310_print_config static, it's not called out of pl310.c

Sponsored by: ABT Systems Ltd


290661 10-Nov-2015 mmel

ARM: Refactor interrupt_enable/disable/restore.
Allow manipulation with PSR_A bit on ARMv6+.
Remove declaration of unused functions.

This effectively enables asynchronous aborts on early bootstrap stage,
which previously was not enabled due to an error in enable_interrupts().

PR: 201434
Reported by: Gregory Soutade <soutade at gmail.com>
Approved by: kib (mentor)


290656 10-Nov-2015 skra

Fix cp15 PAR definition and function. While here, add cp15 ATS1CPW
function which checks an address for privileged (PL1) write access.
The function is inlined so it does not bring any cost, but makes
function set for checking privileged access complete.

Approved by: kib (mentor)


290649 10-Nov-2015 kib

Implement atomic_testandset_{32,int,long,64} for ARMv6. Only
little-endian configuration for 64-bit variant is supported.

Reviewed by: mmel
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D4113


290648 10-Nov-2015 mmel

ARM: Remove trailing whitespace from sys/arm/include
No functional changes.

Approved by: kib (mentor)


290614 09-Nov-2015 bz

Now that the PMU implementation is independent of HWPMC
as of r288992 use it to manage the CCNT.

Use the CNNT for get_cyclecount() instead of binuptime() when device pmu
is compiled in; if it fails to attach, fall back to the former method.

Enable by default for the BeagleBoneBlack configuration.

Optained from: Cambridge/L41
Sponsored by: DARPA/AFRL
Reviewed by: andrew
Differential Revision: https://reviews.freebsd.org/D3837


290541 08-Nov-2015 skra

Make usermode variable the bool type. It's already used that way.

Suggested by: kib
Approved by: kib (mentor)


290369 04-Nov-2015 skra

Fix comment about unpriviledged instructions. Now, it matches with
current state after r289372.

While here, do some style and comment cleanups. No functional changes.

Approved by: kib (mentor)


290309 02-Nov-2015 ian

Eliminate the last dregs of the old global arm_root_dma_tag.

In the old days, device drivers passed NULL for the parent tag when creating
a new tag, and on arm platforms that resulted in a global tag representing
overall platform constraints being substituted in the busdma code. Now all
drivers use bus_get_dma_tag() and if there is a need to represent overall
platform constraints they will be inherited from a tag supplied by nexus or
some bus driver in the hierarchy.

The only arm platforms still relying on the old global-tag scheme were some
xscale boards with special PCI-bus constraints. This change provides those
constraints through a tag supplied by the xscale PCI bus driver, and
eliminates the few remaining references to the old global var.

Reviewed by: cognet


290273 02-Nov-2015 zbb

Add support for branch instruction on armv7 with ptrace single step

Previous code supported only "continuous" code without any kind of
branch instructions. To change that, new function was implemented
which parses current instruction and returns an addres where
the jump might happen (alternative addr).
mdthread structure was extended to support two breakpoints
(one directly below current instruction and the second placed
at the alternative location).
One of them must trigger regardless the instruction has or has not been
executed due to condition field.
Upon cleanup, both software breakpoints are removed.

This implementation parses only the most common instructions
that are present in the code (like 99.99% of all), but there
is a chance there are some left, not covered by the parsing routine.
Parsing is done only for 32-bit instruction, no Thumb nor Thumb-2
support is provided.

Reviewed by: kib
Submitted by: Wojciech Macek <wma@semihalf.com>
Obtained from: Semihalf
Sponsored by: Juniper Networks Inc.
Differential Revision: https://reviews.freebsd.org/D4021


290243 01-Nov-2015 gonzo

Treat synchronous VFP exception just like aynchronous: as an FP exception,
not as illegal instruction


290120 28-Oct-2015 jah

Retire pmap_dmap_iscurrent(). It is only a wrapper around pmap_is_current(), and is no longer called.


289892 24-Oct-2015 ian

Provide armv4/v5 implementations of several of the armv6 cache maintenance
functions. This will make it possible to use the same busdma code for all
arm platforms v4 thru v7.


289887 24-Oct-2015 ian

Rename dcache_dma_preread() to dcache_inv_poc_dma() to make it clear that it
is a dcache invalidate to point of coherency just like dcache_inv_poc(), but
a slightly different version specific to dma operations. Elaborate the
comment about how and why it's different.


289759 22-Oct-2015 jah

Use pmap_quick* functions in armv6 busdma, for bounce buffers and cache maintenance. This makes it safe to sync buffers that have no VA mapping associated with the busdma map, but may have other mappings, possibly on different CPUs. This also makes it safe to sync unmapped bounce buffers in non-sleepable thread contexts.

Similar to r286787 for x86, this treats userspace buffers the same as unmapped buffers and no longer borrows the UVA for sync operations.

Submitted by: Svatopluk Kraus <onwahe@gmail.com> (earlier revision)
Tested by: Svatopluk Kraus
Differential Revision: https://reviews.freebsd.org/D3869


289602 19-Oct-2015 ian

Set the correct values in the arm aux control register, based on chip type.

The bits in the aux control register vary based on the processor type. In
the past we've always just set the 'smp' and "broadcast tlb/cache ops' bits,
which worked fine for the first few SoCs we supported. Now that we support
most of the cortex-a series processors, it's important to get the right bits
set based on the processor type.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>


289548 18-Oct-2015 ian

Only decode fdt data which belongs to the GIC controller.

The interrupts-extended property is a list of controller-specific
interrupt tuples for more than one controller. The decode routine of
every PIC gets called in the pre-INTRNG code (nexus doesn't know which
device instance belongs to which fdt node), so the GIC code has to
check each FDT node it is asked to decode to ensure it is the owner.

Because in the pre-INTRNG world there can only be one instance of a GIC,
it's safe to cache the results of a positive lookup in a static variable
to avoid the expensive lookups on subsequent calls.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>
Differential Revision: https://reviews.freebsd.org/D2345


289529 18-Oct-2015 ian

Import ARM_INTRNG, the "next generation" interrupt architecture for arm
and armv6 architecures. The primary enhancement over the old design is
support for hierarchical interrupt controllers (such as a gpio driver
which can receive interrupts from a root PIC and act as a PIC itself for
clients interested in handling a change of gpio pin state as an
interrupt). The new code also provides an infrastructure for mapping
interrupts described in metadata in the form of a "controller reference
plus interrupt number" tuple into the simple "0-n" flat numeric space
understood by rman and the bus resource mechanisms.

Use of the new code is enabled by setting the ARM_INTRNG option, and by
making a few simple changes to the platform's support code. In addition
each existing PIC driver needs changes to be ready for INTRNG; this commit
contains the changes for the arm/gic driver, which most armv6 SoCs use, but
it does not enable the new code yet on any platform.

This project has been many years in the making, starting as a GSoC project
by Jakub Klama (jceel@) in 2012. That didn't get committed right away and
the source base evolved out from under it to some degree. In 2014 I rebased
the diffs to then -current and did some enhancements in the area of mapping
interrupt numbers and storing associated fdt data, then the project went
cold again for a while. Eventually Svata Kraus took that work in progress
and did another big round of work on it, removing most of the remaining
rough edges. Finally I took that and made one more pass through it, mostly
disabling the "INTR_SOLO" feature for now, pending further design
discussions on how to most efficiently dispatch a pending interrupt through
more than one layer of PIC. The current code with the INTR_SOLO feature
disabled uses approximate 100 extra cpu cycles for each cascaded PIC the
interrupt has to be passed to, so what's left to do is about efficiency, not
correct operation.

Differential Revision: https://reviews.freebsd.org/D2047


289522 18-Oct-2015 ian

Rename arm_init_secondary_ic() -> arm_pic_init_secondary(). The latter is
the name the function will have when the new ARM_INTRNG code is integrated,
and doing this rename first will make it easier to toggle the new interrupt
handling code on/off with a config option for debugging.


289372 15-Oct-2015 kib

ARM userspace accessors, e.g. {s,f}uword(9), copy{in,out}(9),
casuword(9) and others, use LDRT and STRT instructions to access
memory with the privileges of userspace. If the *RT instruction
faults on the kernel address, then additional checks must be done to
not confuse the VM system with invalid kernel-mode faults.

Put ARM on line with other FreeBSD architectures and disallow usermode
buffers which intersect with the kernel address space in advance,
before any accesses are performed. In other words, vm_fault(9) is no
longer called when e.g. suword(9) stores to invalid (i.e. not
userspace) address.

Also, switch ARM to use fueword(9) and casueword(9).

Note: there is a pending patch in D3617, which adds the special
processing for faults from LDRT and STRT. The addition of the
processing is useful for potential other uses of the instructions and
for completeness, but standard userspace accessors are better served
by not allowing such faults beforehand.

Reviewed by: andrew
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D3816
MFC after: 2 weeks


288983 07-Oct-2015 kib

A follow-up to r288492. In fact, revert the mentioned commit for
pre-VFPv3 processors, since they do require software support code to
handle denormals. For VFPv3 and later, enable flush-to-zero if
hardware does not claim full denormals arithmetic support by VMVFR1_FZ
field in mvfr1 register.

The end result is that we do use correct fpu environment on Cortexes
with VFPv3, while ARM11 (e.g. rpi) is in non-compliant flush-to-zero
mode. At least CPUs without complete hardware implementation of
IEEE 754 do not cause unhandled floating point exception on underflow,
as it was before r288492.

Noted by: ian
Tested by: gjb
Sponsored by: The FreeBSD Foundation
MFC after: 1 week


288662 04-Oct-2015 rwatson

Add missing stack unwind information to several assembly functions on
ARMv6/7:

- Define _SAVE() macro to allow unwind data to be conditionally defined for
ARM assembly code in the kernel.

- Use _SAVE() to provide unwind information for bcopy_page(), and two (of
many) instances of copyin() and copyout().

Reviewed by: andrew, imp
MFC after: 3 days
Sponsored by: University of Cambridge


288491 02-Oct-2015 kib

FreeBSD does not support SMP on ARMv5. Since processor is always
self-consistent, there is no need in anything but compiler barrier in
the implementation of atomic_thread_fence_*() on ARMv5. Split
implementation of fences for ARMv4/5 and ARMv6; the former use
compiler barriers, the later also perform hardware barriers.

An issue which is fixed by the change is the faults from the CP15
coprocessor accesses in the user mode. This was uncovered by the
pthread_once() changes in r287556.

Reported by: Mattia Rossi <mattia.rossi.mailinglists@gmail.com>
Discussed with: alc, cognet, jhb
Sponsored by: The FreeBSD Foundation
MFC after: 1 week


286960 20-Aug-2015 kib

Typo.


286725 13-Aug-2015 marcel

The Broadcom BCM56060 chip has a Cortex-A9R4 core.

Submitted by: Steve Kiernan <stevek@juniper.net>
Reviewed by: imp@
Differential Revision: https://reviews.freebsd.org/D3357


286584 10-Aug-2015 kib

Make kstack_pages a tunable on arm, x86, and powepc. On i386, the
initial thread stack is not adjusted by the tunable, the stack is
allocated too early to get access to the kernel environment. See
TD0_KSTACK_PAGES for the thread0 stack sizing on i386.

The tunable was tested on x86 only. From the visual inspection, it
seems that it might work on arm and powerpc. The arm
USPACE_SVC_STACK_TOP and powerpc USPACE macros seems to be already
incorrect for the threads with non-default kstack size. I only
changed the macros to use variable instead of constant, since I cannot
test.

On arm64, mips and sparc64, some static data structures are sized by
KSTACK_PAGES, so the tunable is disabled.

Sponsored by: The FreeBSD Foundation
MFC after: 2 week


286327 05-Aug-2015 emaste

Rationalize BSD license on sys/*/include/float.h

Remove the advertising clause from the Regents of the University of
California's license, per the letter dated July 22, 1999.

Update clause numbering.


286296 04-Aug-2015 jah

Add two new pmap functions:
vm_offset_t pmap_quick_enter_page(vm_page_t m)
void pmap_quick_remove_page(vm_offset_t kva)

These will create and destroy a temporary, CPU-local KVA mapping of a specified page.

Guarantees:
--Will not sleep and will not fail.
--Safe to call under a non-sleepable lock or from an ithread

Restrictions:
--Not guaranteed to be safe to call from an interrupt filter or under a spin mutex on all platforms
--Current implementation does not guarantee more than one page of mapping space across all platforms. MI code should not make nested calls to pmap_quick_enter_page.
--MI code should not perform locking while holding onto a mapping created by pmap_quick_enter_page

The idea is to use this in busdma, for bounce buffer copies as well as virtually-indexed cache maintenance on mips and arm.

NOTE: the non-i386, non-amd64 implementations of these functions still need review and testing.

Reviewed by: kib
Approved by: kib (mentor)
Differential Revision: http://reviews.freebsd.org/D3013


285694 19-Jul-2015 andrew

Fix atomic_store_64, it should write the value passed in, not the value
read by the load.

Pointy Hat: andrew


285689 19-Jul-2015 andrew

Clean up the style of the armv6 atomic code.

Sponsored by: ABT Systems Ltd


285687 19-Jul-2015 andrew

Sort the ARM atomic functions to be in alphabetical order.

Sponsored by: ABT Systems Ltd


285631 16-Jul-2015 andrew

Split out the arm and armv6 parts of atomic.h to new files. While here use
__ARM_ARCH to determine which revision of the architecture is applicable.

Sponsored by: ABT Systems Ltd


285283 08-Jul-2015 kib

Add the atomic_thread_fence() family of functions with intent to
provide a semantic defined by the C11 fences with corresponding
memory_order.

atomic_thread_fence_acq() gives r | r, w, where r and w are read and
write accesses, and | denotes the fence itself.

atomic_thread_fence_rel() is r, w | w.

atomic_thread_fence_acq_rel() is the combination of the acquire and
release in single operation. Note that reads after the acq+rel fence
could be made visible before writes preceeding the fence.

atomic_thread_fence_seq_cst() orders all accesses before/after the
fence, and the fence itself is globally ordered against other
sequentially consistent atomic operations.

Reviewed by: alc
Discussed with: bde
Sponsored by: The FreeBSD Foundation
MFC after: 3 weeks


284265 11-Jun-2015 andrew

Stop using VFP in pcpu.h when we mean ARMv6 and later.


284147 08-Jun-2015 alc

Retire VM_FREEPOOL_CACHE as the next step in eliminating PG_CACHE pages.

Differential Revision: https://reviews.freebsd.org/D2712
Reviewed by: kib
Sponsored by: EMC / Isilon Storage Division


284109 07-Jun-2015 andrew

Remove pc_cpu, it was duplicating pc_cpuid so was unneeded.


283812 31-May-2015 andrew

We only support the ARM EABI in head, remove the check on __ARM_EABI__.


283365 24-May-2015 andrew

Add more cp15_ functions, and use them in cpufunc.c where possible.


283297 22-May-2015 imp

Export the eflags field from the elf header. This allows better
discrimination between different subarch binaries, at least for mips
and arm. Arm is implemented, mips is still tbd, so not currently
exported. aarch64 does not export this because aarch64 binaries use
different tags and flags than arm.

Differential Revision: https://reviews.freebsd.org/D2611


283034 17-May-2015 andrew

Clean up struct syscall_args:
1. Align to a 64-bit address so 64-bit data will be correctly aligned.
2. Add a comment explaining why.
3. Remove an unneeded value from the struct.

This fixes an issue where the struct may not be correctly aligned on the
stack in the syscall function. This may lead to accesing a 64-bit value
at a non 64-bit. This will raise an exception and panic the kernel.

We have been lucky where on arm and armv6 both clang and gcc correctly
align the data, even without us asking to, however, on armeb with clang to
not be the case. This tells the compiler we really do need this to be
aligned.

Reported and tested by: jmg (on armeb with clang)
MFC after: 1 Week [1, 2]


282984 15-May-2015 ian

Add assertions that the addresses passed to tlb maintenance are page-aligned.

Perform cache writebacks and invalidations in the correct (inner to outer
or vice versa) order, and add comments that explain that.

Consistantly use 'va' as the variable name for virtual addresses.

Submitted by: Michal Meloun <meloun@miracle.cz>


282934 15-May-2015 ganbold

It appears to be armv7_sleep is a duplication of armv7_cpu_sleep.
For consistency with the naming conventions used by the other
implementations kill armv7_sleep and keep armv7_cpu_sleep.

Differential Revision: https://reviews.freebsd.org/D2537
Submitted by: John Wehle
Reviewed by: ian@, andrew@


282780 11-May-2015 alc

Retire pmap_lazyfix(). This function only existed in the new armv6 pmap
because the i386 pmap on which the new armv6 pmap is based had it, and in
r281707 pmap_lazyfix() was removed from the i386 pmap.

Discussed with: kib
Submitted by: Michal Meloun (via Svatopluk Kraus)


282778 11-May-2015 andrew

Mark thumb entry points as such when building for thumb, otherwise mark
them as arm.


282777 11-May-2015 andrew

Use the Thumb compliant version of the add instruction. We can only use
"add Rd, Rn, Rm" from within an IT (if-then) block.


282776 11-May-2015 andrew

List both registers to use in the 64-bit atomic instructions. We will need
these to build for Thumb-2.


282767 11-May-2015 andrew

cpu-v6.h should only be used in the kernel, add an error to enforce this.


282586 07-May-2015 emaste

Correct PL310_POWER_CTRL offset

Offet for the power control register was specified incorrectly (it had
the same value as the prefetch control register.) This change corrects
the offset value to 0xF80, per the ARM PL310 documentation.

Submitted by: Steve Kiernan <stevek@juniper.net>
Obtained from: Juniper Networks, Inc.


282547 06-May-2015 zbb

Add new CP15 operations and DB_SHOW_COMMAND to print CP15 registers

Submitted by: Wojciech Macek <wma@semihalf.com>
Reviewed by: imp, Michal Meloun <meloun@miracle.cz>
Obtained from: Semihalf


281369 10-Apr-2015 ian

Add a pmap_kremove_device() to undo mappings made with pmap_kenter_device().

Previously we used pmap_kremove(), but with ARM_NEW_PMAP it does the remove
in a way that isn't SMP-coherent (which is appropriate in some circumstances
such as mapping/unmapping sf buffers). With matching enter/remove routines
for device mappings, each low-level implementation can do the right thing.

Reviewed by: Svatopluk Kraus <onwahe@gmail.com>


281156 06-Apr-2015 andrew

Add support to the efi boot1 and loader for 32-bit ARM. This will be used
by the future qemu virt support.

Differential Revision: https://reviews.freebsd.org/D2238
Reviewed by: emaste


281106 05-Apr-2015 andrew

dev/ofw/openfirm.h is not needed in the arm machine/fdt.h


281093 04-Apr-2015 andrew

Re-add machine/bus.h to machine/fdt.h on arm, it's still needed.


281089 04-Apr-2015 andrew

Don't include unneeded files in the arm machine/fdt.h. While here, remove
it from more files.


281087 04-Apr-2015 andrew

Move the definition of fdt_localbus_devmap to a Marvell specific file as
it's only used there.


280985 02-Apr-2015 andrew

Add the generic timer registers to sysreg.h and cpu-v6.h, and use the
access functions in the generic timer driver.

Differential Revision: https://reviews.freebsd.org/D2198
Sponsored by: The FreeBSD Foundation


280847 30-Mar-2015 andrew

Remove support for CPU_XSCALE_80200. None of our configs support it, and
there wasn;t an option to enable it.

While here remove a check for CPU_ARM10 being defined as it has also been
removed.


280842 30-Mar-2015 andrew

Remove support for CPU_FA626TE. It's unused by any of our kernel configs.


280832 29-Mar-2015 andrew

pj4b_config and pj4bv7_setup are only used when CPU_MV_PJ4B is defined.


280824 29-Mar-2015 andrew

Remove arm1136 support. We don't have any configs that use it, and I don't
expect us to add support for any more arm11 SoCs.


280823 29-Mar-2015 andrew

Remove the bootconfig parsing. We never used it and always passed either an
empty string or NULL to the setup functions that called into it.


280817 29-Mar-2015 andrew

Remove ARM9_CACHE_WRITE_THROUGH, none of our configs define it.


280813 29-Mar-2015 andrew

Remove unused cpufunc arm11 and armv6 code. While here only define the
remaining functions in the context we use them in.


280811 29-Mar-2015 andrew

Remove unused arm10_* functions. The remaining functions are only used in
mv configs.


280809 29-Mar-2015 andrew

Remove support for CPU_ARM10. No kernel configs could possibly use this as
it's not an available option. Along with this we will never support this
cpu type as very few arm10 chips were made.


280737 27-Mar-2015 bz

Rather than defining our own magic checks here use INKERNEL() for
the PMC_IN_KERNEL() macro definition.

Add missing macros to extract the return address (LR) from the trapframe.

Discussed with: andrew
Obtained from: Cambridge/L41
Sponsored by: DARPA, AFRL
MFC after: 2 weeks


280712 26-Mar-2015 ian

New pmap code for armv6. Disabled by default, option ARM_NEW_PMAP enables it.

This is pretty much a complete rewrite based on the existing i386 code. The
patches have been circulating for a couple years and have been looked at by
plenty of people, but I'm not putting anybody on the hook as having reviewed
this in any formal sense except myself.

After this has gotten wider testing from the user community, ARM_NEW_PMAP
will become the default and various dregs of the old pmap code will be
removed.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>,
Michal Meloun <meloun@miracle.cz>


280278 20-Mar-2015 zbb

Allow to override default kernel virtual address assignment on ARM

Each plaform performs virtual memory split between kernel and user space
and assigns kernel certain amount of memory space. However, is is sometimes
reasonable to change the default values. Such situation may happen on
systems where the demand for kernel buffers is high, many devices occupying
memory etc. This of course comes with the cost of decreasing user space
memory range so shall be used with care. Most embedded systems will not
suffer from this limtation but rather take advantage of this potential
since default behavior is left unchanged.

Submitted by: Wojciech Macek <wma@semihalf.com>
Reviewed by: imp
Obtained from: Semihalf


279944 13-Mar-2015 emaste

Delete stray clause 3 and renumber.


279811 09-Mar-2015 ian

Add minimum cache line sizes to struct cpuinfo, use them in the new cache
maintenance routines. Also add a routine to invalidate the branch cache.

Submitted by: Michal Meloun


279543 02-Mar-2015 ian

Revert r279338. The casts are apparently bogus, despite the fact that
they've been working in i386 (where this change came from).


279338 26-Feb-2015 ian

Add casting to make atomic ops work for pointers. (Apparently nobody has
ever done atomic ops on pointers before now on arm).

Submitted by: Svatopluk Kraus <onwahe@gmail.com>


279114 21-Feb-2015 ian

Correct a comment which was exactly backwards from reality.


278996 19-Feb-2015 andrew

Allow the ARM unwinder to work through modules. This will be used to add
support for unwinding from dtrace.

Tested by: gnn (with dtrace)
Sponsored by: ABT Systems Ltd


278895 17-Feb-2015 andrew

Pull the ARM ddb unwind code out to a new file. This will allow it to be
used by other places that expect to unwind the stack, e.g. dtrace and
stack(9).

As I have written most of this code I'm changing the license to the
standard FreeBSD license. I have received approval from the other
developers who have changed any of the affected code.

Approved by: ian, imp, rpaulo, eadler (all license change)


278529 10-Feb-2015 gnn

Initial version of DTrace on ARM32.

Submitted by: Howard Su based on work by Oleksandr Tymoshenko
Reviewed by: ian, andrew, rpaulo, markj


278518 10-Feb-2015 zbb

Resolve cache line size from CP15

Switch the cache line size during invalidations/flushes
to be read from CP15 cache type register.

Submitted by: Wojciech Macek <wma@semihalf.com>
Reviewed by: ian, imp
Obtained from: Semihalf


277998 31-Jan-2015 andrew

Stop using load-multiple with lr and pc. This has been deprecated in ARMv7
and clang 3.6 warns about it. As this is used in libc and we build it with
-Werror this warning becomes an error stopping the build.


277835 28-Jan-2015 br

Add ARMv7 performance monitoring counters.

Differential Revision: https://reviews.freebsd.org/D1687
Reviewed by: rpaulo
Sponsored by: DARPA, AFRL


277533 22-Jan-2015 ian

Declare Maxmem on arm. This should have been part of r277532.


277512 21-Jan-2015 ian

Micro-optimize the new arm inline bus_space implementation by grouping all
the data the inline functions access together at the start of the bus_space
struct. The start-of part isn't so important, it's the grouping-together
that's the point: now all the most-accessed data should be in one cache line.

Suggested by: cognet


277473 21-Jan-2015 ian

The versatile platform had two copies of a bus_space that are essentially
duplicates of the standard arm base bus_space, so just use it.


277470 21-Jan-2015 ian

Move bs_unimplemented() to bus_space_generic.c so it can be shared.


277460 21-Jan-2015 ian

Revise the arm bus_space implementation to avoid dereferencing the tag on
every operation to retrieve the bs_cookie value almost nothing actually uses.

The bus_space struct contains a private data pointer (poorly named bs_cookie,
now renamed to bs_privdata) which is used only by a few old armv4 xscale
implementations. The bus_space functions were all defined to take this
value as the first parameter instead of the bus_space_tag_t, requiring all
the inline macro and function expansions to dereference the tag to pass it
to another function, which never uses it. Now all the functions take the tag
as the first parameter and retrieve the privdata if they need it.

Also fix a couple bus_space_unmap() implementations that were calling
kva_free() instead of pmap_unmapdev().

Discussed with: cognet


277454 20-Jan-2015 ian

Add inline implementations of arm bus_space_read/write_N().

Reviewed by: cognet


277415 20-Jan-2015 andrew

Add the User and PL1 read only and reqd write thread ID registers.

Sponsored by: The FreeBSD Foundation


277156 14-Jan-2015 ganbold

Correct cpu type, it was rather Cortex A12 R0.

Approved by: stas (mentor)


277116 13-Jan-2015 ganbold

Add CPU ID for ARM Cortex A17.

Approved by: stas (mentor)


276984 11-Jan-2015 andrew

Rename gic_init_secondary to arm_init_secondary_ic to help with the merge
of the arm_intrng project branch.


276808 08-Jan-2015 ian

Move the inclusion of cpu-v6.h inside the #ifdef _KERNEL block, so that
userland programs (which probably don't actually need machine/cpu.h) compile.


276803 08-Jan-2015 ian

Add accessors for the ARM CP15 performance monitor registers. Also ensure
that some #ifdef SMP code is also conditional on __ARM_ARCH >= 7; we don't
support SMP on armv6, but some drivers and modules are compiled with it
forced on via the compiler command line.


276772 07-Jan-2015 markj

Factor out duplicated code from dumpsys() on each architecture into generic
code in sys/kern/kern_dump.c. Most dumpsys() implementations are nearly
identical and simply redefine a number of constants and helper subroutines;
a generic implementation will make it easier to implement features around
kernel core dumps. This change does not alter any minidump code and should
have no functional impact.

PR: 193873
Differential Revision: https://reviews.freebsd.org/D904
Submitted by: Conrad Meyer <conrad.meyer@isilon.com>
Reviewed by: jhibbits (earlier version)
Sponsored by: EMC / Isilon Storage Division


276638 03-Jan-2015 ian

Add a new trap-v6.c which has support for all armv7 exceptions. This
mostly paves the way for the new pmap code, and shouldn't result in any
noticible behavior differences.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>,
Michal Meloun <meloun@miracle.cz


276596 02-Jan-2015 ian

Fix alignment directives in arm asm code after clang 3.5 import.

The ancient gas we've been using interprets .align 0 as align to the
minimum required alignment for the current section. Clang's integrated
assembler interprets it as align to a byte boundary. Fortunately both
assemblers interpret a non-zero value as align to 2^N so just make sure
we have appropriate non-zero values everywhere.


276539 02-Jan-2015 emaste

Update ELF headers to include additional defines

The elftoolchain project includes these additional defines for various
userland programs. Given that arch-specific defines are still interesting
in the context of userland programs reading or writing ELF metadata, they
should be included in top-level ELF headers.

Remove duplicate defines from ARM and MIPS elf headers.

Submitted by: will (initial version)
Reviewed by: imp, will
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D844


276519 01-Jan-2015 ian

Define a WFI macro that expands to the right form of wait-for-interrupt
depending on the architecture.


276340 28-Dec-2014 ian

Fix a "decl is not a prototype" error noticed by gcc (but not clang).


276335 28-Dec-2014 ian

Eliminate an unused macro whose name clashes now with a function in the
new cpu-v6.h. This should have been part of r276334.


276334 28-Dec-2014 ian

Add new TLB and cache maintainence functions for armv6 and armv7. These
are inline functions that handle all the routine maintenance operations
except the flush-all and invalidate-all routines which are required only
during early kernel init.

These inline functions should be very much faster than the old mechanism
that involved jumping through the big cpufuncs table, especially for
common operations such as invalidating a single TLB entry. Note that
nothing is calling these yet, this just is just required infrastructure
for upcoming changes to the pmap-v6 code.


276333 28-Dec-2014 ian

Add new code to read and parse cpu identification data using the new CPUID
mechanism defined for armv7 (and also present on some armv6 chips including
the arm1176 used on rpi). The information is parsed into a global cpuinfo
structure, which will be used by (upcoming) new cache and tlb maintenance
code to handle cpu-specific variations of the maintence sequences.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>,
Michal Meloun <meloun@miracle.cz


276247 26-Dec-2014 ian

Include acle-compat.h directly (we use its symbols) rather than getting
it via sysreg.h.


276213 25-Dec-2014 ian

Define only the CP15 register operations that are valid for the architecture.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>,
Michal Meloun <meloun@miracle.cz


276212 25-Dec-2014 ian

Add macros for asm barrier instructions with arch-specific implementations.


276206 25-Dec-2014 ian

For data and instruction prefetch aborts, call the same handler in the C
code, passing a 0/1 flag that indicates which type of abort it was. This
sets the stage for unifying the handling of page faults in a single routine.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>,
Michal Meloun <meloun@miracle.cz


276204 25-Dec-2014 ian

Create 'L' variants of all the ENTRY macros for file-static/local symbols.

If it seems like this is getting out of hand, I quite agree. I wonder if
it's safe, here in the 21st century, to lose the distinction between C and
ASM symbols?


276203 25-Dec-2014 ian

Fix the GLOBAL macro so it works (upper vs lowercase X), use it in _EENTRY.


276202 25-Dec-2014 ian

Stylish changes... put tabs where they need to be in macros, move lines
around so that related things are more grouped together, rewrite comments.

No functional changes, this is all so that the functional changes in the
next commit will stand out.


276198 25-Dec-2014 ian

Remove _PROF_PROLOGUE from the EENTRY() macros. These macros define
'extra' entry points which are nested within or provide a synonym name
for another function. It's most likely not safe to be messing with the
IP and LR registers at anything other than the primary entry point to a
function. Anywhere beyond initial function entry, those registers may
be in use as scratch or variable registers.


276190 24-Dec-2014 ian

Cleanup up ARM *frame structures...

- Eliminate unused irqframe
- Eliminate unused saframe
- Instead of splitting r4-sp storage between the stack and switchframe,
just put all the registers in switchframe and eliminate the un_32 struct.

Submitted by: Svatopluk Kraus <onwahe@gmail.com>,
Michal Meloun <meloun@miracle.cz>


276180 24-Dec-2014 andrew

Rename pic_ipi_get to pic_ipi_read for intrng.


276166 24-Dec-2014 ian

Revert a glitched mismerge that got caught up in the prior commit.
The PJ4B family is still armv7, not armv6.


276165 24-Dec-2014 ian

Define the old-school arm arch constants we still use internally based on
the somewhat newer constants predefined by the compiler. This will allow
userland apps to use various machine/foo.h headers without CPUTYPE defined.


276032 21-Dec-2014 andrew

Pull out the fdt mapping code into intr.c. The arm_intrng branch also
defines this function allowing the mapping method to change when we move
to it.


275378 01-Dec-2014 andrew

Pull in the NetBSD global offset table handling code. Clang 3.5 creates
relocations the linker complains about.

Obtained from: NetBSD
MFC after: 1 Week


275264 29-Nov-2014 andrew

Update _ENTRY to use _EENTRY to reduce the common code.


275004 25-Nov-2014 emaste

Revert r274772: it is not valid on MIPS

Reported by: sbruno


274941 24-Nov-2014 ian

The arm PJ4B cpu is armv7 architecture, not v6.

If this feels like deja vu... the last time this was fixed in this file
only ARM_MMU_V6 was fixed, this time it's ARM_ARCH_V6 (and this time I
searched for other occurrances of pj4b in here).


274772 21-Nov-2014 emaste

Use canonical __PIC__ flag

It is automatically set when -fPIC is passed to the compiler.

Reviewed by: dim, kib
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D1179


274668 18-Nov-2014 imp

opt_global.h is included automatically in the build. No need to
explicitly include it in these places.

Sponsored by: Netflix


273783 28-Oct-2014 kib

Add fueword(9) and casueword(9) functions. They are like fuword(9)
and casuword(9), but do not mix value read and indication of fault.

I know (or remember) enough assembly to handle x86 and powerpc. For
arm, mips and sparc64, implement fueword() and casueword() as wrappers
around fuword() and casuword(), which means that the functions cannot
distinguish between -1 and fault.

On architectures where fueword() and casueword() are native, implement
fuword() and casuword() using fueword() and casuword(), to reduce
assembly code duplication.

Sponsored by: The FreeBSD Foundation
Tested by: pho
MFC after: 2 weeks (ia64 needs treating)


273251 18-Oct-2014 andrew

Add an elf not so kgdb detects the kernel as a FreeBSD elf file. The
ELFNOTE macro is based on one from the FreeBSD/ARM Xen tree [1].

Obtained from: Julien Grall <julien.grall AT linaro.org> [1]


272766 08-Oct-2014 markj

Pass up the error status of minidumpsys() to its callers.

PR: 193761
Submitted by: Conrad Meyer <conrad.meyer@isilon.com>
Sponsored by: EMC / Isilon Storage Division


272300 30-Sep-2014 andrew

Make sure __ARM_ARCH is defined in sysreg.h by including acle-compat.h


272209 27-Sep-2014 andrew

Add machine/sysreg.h to simplify accessing the system control coprocessor
registers and use it in the ARMv7 CPU functions.

The sysreg.h file has been checked by hand, however it may contain errors
with the comments on when a register was first introduced. The ARMv7 cpu
functions have been checked by compiling both the previous and this version
and comparing the md5 of the object files.

Submitted by: Svatopluk Kraus <onwahe at gmail.com>
Submitted by: Michal Meloun <meloun at miracle.cz>
Reviewed by: ian, rpaulo
Differential Revision: https://reviews.freebsd.org/D795


271601 14-Sep-2014 ian

Add a common routine for parsing FDT data describing an ARM GIC interrupt.

In the fdt data we've written for ourselves, the interrupt properties
for GIC interrupts have just been a bare interrupt number. In standard
data that conforms to the published bindings, GIC interrupt properties
contain 3-tuples that describe the interrupt as shared vs private, the
interrupt number within the shared/private address space, and configuration
info such as level vs edge triggered.

The new gic_decode_fdt() function parses both types of data, based on the
#interrupt-cells property. Previously, each platform implemented a decode
routine and put a pointer to it into fdt_pic_table. Now they can just
list this function in their table instead if they use arm/gic.c.


271422 11-Sep-2014 andrew

Rename pmap_kenter_temp to pmap_kenter_temporary to be consistent with the
other architectures with this function.

Submitted by: Svatopluk Kraus <onwahe at gmail.com>
Submitted by: Michal Meloun <meloun at miracle.cz>


271398 10-Sep-2014 andrew

Unify interrupts bit definition and usage. While here remove PSR_C_bit.

Submitted by: Svatopluk Kraus <onwahe at gmail.com>,
Michal Meloun <meloun at miracle.cz>
Differential Revision: https://reviews.freebsd.org/D754


271394 10-Sep-2014 andrew

Add more register values to armreg.h and remove CPU_CONTROL_32BP_ENABLE
from asm.h as they were already defined in armreg.h.

Submitted by: Michal Meloun <meloun at miracle.cz>


271310 09-Sep-2014 ian

Rename new to newval in inline asm code, to avoid clashes with C++ new.
Also rename cmp to cmpval just to keep the asm variable names similar to
the C variable names.


270930 01-Sep-2014 ian

Do not generate unwind info in asm functions if _STANDALONE is defined.
The .fnend op causes the assembler to emit RELOC references to unwind
support functions that don't exist in libstand.


270884 31-Aug-2014 br

GIC (Cortex A's interrupt controller) supports up to 1020 IRQs.


270878 31-Aug-2014 ian

The Marvell PJ4B cpu family is armv7, not armv6.


270123 18-Aug-2014 imp

Expand the elf brandelf infrastructure to give access to the whole ELF
header (Elf_Ehdr) to determine if a particular interpretor wants to
accept it or not. Use this mechanism to filter EABI arm on OABI arm
kernels, and vice versa. This method could also be used to implement
OABI on EABI arm kernels, if desired, or to allow a single mips kernel
to run o32, n32 and n64 binaries.

Differential Revision: https://reviews.freebsd.org/D609


270081 17-Aug-2014 ian

When the initarm_* routines were renamed to platform_* and moved to their
own header file, the lovely block of comments explaining what the generic
init code expects of the soc implementations got lost, restore it.


269956 14-Aug-2014 imp

From https://sourceware.org/ml/newlib/2014/msg00113.html
By Richard Earnshaw at ARM
>
>GCC has for a number of years provides a set of pre-defined macros for
>use with determining the ISA and features of the target during
>pre-processing. However, the design was always somewhat cumbersome in
>that each new architecture revision created a new define and then
>removed the previous one. This meant that it was necessary to keep
>updating the support code simply to recognise a new architecture being
>added.
>
>The ACLE specification (ARM C Language Extentions)
>(http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.set.swdev/index.html)
>provides a much more suitable interface and GCC has supported this
>since gcc-4.8.
>
>This patch makes use of the ACLE pre-defines to map to the internal
>feature definitions. To support older versions of GCC a compatibility
>header is provided that maps the traditional pre-defines onto the new
>ACLE ones.

Stop using __FreeBSD_ARCH_armv6__ and switch to __ARM_ARCH >= 6 in the
couple of places in tree. clang already implements ACLE. Add a define
that says we implement version 1.1, even though the implementation
isn't quite complete.


269598 05-Aug-2014 ian

Set the pl310 L2 cache driver to attach during the middle of BUS_PASS_CPU.
Because that's earlier than interrupts are available, set up deferred
configuration of interrupts (which are used only for debugging).


269577 05-Aug-2014 glebius

Merge all MD sf_buf allocators into one MI, residing in kern/subr_sfbuf.c
The MD allocators were very common, however there were some minor
differencies. These differencies were all consolidated in the MI allocator,
under ifdefs. The defines from machine/vmparam.h turn on features required
for a particular machine. For details look in the comment in sys/sf_buf.h.

As result no MD code left in sys/*/*/vm_machdep.c. Some arches still have
machine/sf_buf.h, which is usually quite small.

Tested by: glebius (i386), tuexen (arm32), kevlo (arm32)
Reviewed by: kib
Sponsored by: Netflix
Sponsored by: Nginx, Inc.


269414 02-Aug-2014 ian

When arm 64-bit atomic ops are available, define ARM_HAVE_ATOMIC64. Use
that symbol (which will be correct in both kernel and userland contexts)
rather than just __arm__ to decide whether to use a local implementation.


269406 01-Aug-2014 ian

Use atomic_load/store_64() in the arm implementation of counter(9), and
remove the XXX comments about non-atomic access to the counters.


269405 01-Aug-2014 ian

Add 64-bit atomic ops for armv4, only for kernel code, mostly so that we
don't need any #ifdef stuff to use atomic_load/store_64() elsewhere in
the kernel. For armv4 the atomics are trivial to implement for kernel
code (just disable interrupts), less so for user mode, so this only has
the kernel mode implementations for now.


269403 01-Aug-2014 ian

Add 64-bit atomic ops for armv6. The only safe way to access a 64-bit
value shared across multiple cores is with atomic_load_64() and
atomic_store_64(), because the normal 64-bit load/store instructions
are not atomic on 32-bit arm. Luckily the ldrexd/strexd instructions
that are atomic are fairly cheap on armv6. Because it's fairly simple
to do, this implements all the ops for 64-bit, not just load/store.

Reviewed by: andrew, cognet


269390 01-Aug-2014 ian

Fix unwind-info errors in our hand-written arm assembler code.

We have functions nested within functions, and places where we start a
function then never end it, we just jump to the middle of something else.
We tried to express this with nested ENTRY()/END() macros (which result
in .fnstart and .fnend directives), but it turns out there's no way to
express that nesting in ARM EHABI unwind info, and newer tools treat
multiple .fnstart directives without an intervening .fnend as an error.

These changes introduce two new macros, EENTRY() and EEND(). EENTRY()
creates a global label you can call/jump to just like ENTRY(), but it
doesn't emit a .fnstart. EEND() is a no-op that just documents the
conceptual endpoint that matches up with the same-named EENTRY().

This is based on patches submitted by Stepan Dyatkovskiy, but I made some
changes and added the EEND() stuff, so blame any problems on me.

Submitted by: Stepan Dyatkovskiy <stpworld@narod.ru>


268893 19-Jul-2014 ian

Add dl_unwind_find_exidx() for ARM EABI, required for C++ exception
handling. For statically linked apps this uses the __exidx_start/end
symbols set up by the linker. For dynamically linked apps it finds the
shared object that contains the given address and returns the location and
size of the exidx section in that shared object.

The dl_unwind_find_exidx() name is used by other BSD projects and Android,
and is mentioned in clang 3.5 comments as "the BSD interface" for finding
exidx data. GCC (in libgcc_s) expects the exact same API and functionality
to be provided by a function named __gnu_Unwind_Find_exidx(), so we provide
that with an alias ("strong reference").

Reviewed by: kib@
MFC after: 1 week


267597 17-Jun-2014 tuexen

Different versions of the ARM processor use different registers.
Fix the code used on a Raspberry Pi.

Reviewed by: markm@


266673 25-May-2014 zbb

Delete obsolete and unused PJ4B CPU functions

Since PJ4Bv7 uses armv7_ CPU functions only pj4b_config
function is necessary. Remove obsolete routines.


266621 24-May-2014 ian

Eliminate one of the causes of spurious interrupts on armv6. The arm weak
memory ordering model allows writes to different devices to complete out
of order, leading to a situation where the write that clears an interrupt
source at a device can complete after a write that unmasks and EOIs the
interrupt at the interrupt controller, leading to a spurious re-interrupt.

This adds a generic barrier function specific to the needs of interrupt
controllers, and calls that function from the GIC and TI AINTC controllers.
There may still be other soc-specific controllers that need to make the call.

Reviewed by: cognet, Svatopluk Kraus <onwahe@gmail.com>
MFC after: 3 days


266570 23-May-2014 imp

Remove NetBSD implementation details not relevant to FreeBSD.


266333 17-May-2014 andrew

Add FDT_PLATFORM_DEF2 for when there are multiple platforms needing to use
the same platform methods.


266303 17-May-2014 andrew

Fix a comment s/initarm_/platform_/


266301 17-May-2014 andrew

Add the start of the ARM platform code. This is based on the PowerPC
platform code, it is expected these will be merged in the future when the
ARM code is more complete.

Until more boards can be tested only use this with the Raspberry Pi and
rrename the functions on the other SoCs.

Reviewed by: ian@


266083 14-May-2014 markm

Give suitably-endowed ARMs a register similar to the x86 TSC register.

Here, "suitably endowed" means that the System Control Coprocessor
(#15) has Performance Monitoring Registers, including a CCNT (Cycle
Count) register.

The CCNT register is used in a way similar to the TSC register in
x86 processors by the get_cyclecount(9) function. The entropy-harvesting
thread is a heavy user of this function, and will benefit from not
having to call binuptime(9) instead.

One problem with the CCNT register is that it is 32-bit only, so
the upper 32-bits of the returned number are always 0. The entropy
harvester does not care, but in case any one else does, follow-up
work may include an interrup trap to increment an upper-32-bit
counter on CCNT overflow.

Another problem is that the CCNT register is not readable in user-mode
code; in can be made readable by userland, but then it is also
writable, and so is a good chunk of the PMU system. For that reason,
the CCNT is not enabled for user-mode access in this commit.

Like the x86, there is one CCNT per core, so they don't all run in
perfect sync.

Reviewed by: ian@ (an earlier version)
Tested by: ian@ (same earlier version)
Committed from: WANDBOARD-QUAD


265870 11-May-2014 ian

Add cpu_l2cache_drain_writebuf(), use it to implement generic_bs_barrier().

On modern ARM SoCs the L2 cache controller sits between the CPU and the
AXI bus, and most on-chip memory-mapped devices are on the AXI bus. We
map the device registers using the 'Device' memory attribute, which means
the memory is not cached, but writes to it are buffered. Ensuring that a
write has made it all the way to a device may require that the L2
controller take some action.

There is currently only one implementation of the new function, for the
PL310 cache controller. It invokes a function that the controller
manual calls "cache sync" but it actually has nothing to do with cache at
all, it triggers a drain of all pending store buffer writes and it blocks
until they complete.

The sheeva and xscale L2 controllers (which predate the concept of Device
memory) don't seem to have a corresponding function. It appears that the
standard armv5 drain_writebuf function includes draining all the way
through the L2 controller.


265861 11-May-2014 ian

Make the hardware memory and instruction barrier functions work on armv4
and armv5 as well.


265446 06-May-2014 ian

Add a public routine to set the L2 cache ram latencies. This can be
called by platform init routines to fine-tune cache performance.


265445 06-May-2014 ian

Add defines for the bits in the PL310 debug control register.

This should have been part of r265444.


265111 29-Apr-2014 ian

Make this declaration into a proper function prototype.


265035 27-Apr-2014 ian

Move duplicated code to print l2 cache config into the common code.


265023 27-Apr-2014 ian

There is no difference between IPI_STOP and IPI_STOP_HARD on ARM, so
map them both to the same interrupt number like other arches do.


265020 27-Apr-2014 ian

Remove cpu_idcache_wbinv_all() from kdb_cpu_trap(), it's no longer needed.

This was added ca. 2004 for the purpose of ensuring the caches were in the
right state after the debugger set a breakpoint. kdb_cpu_sync_icache()
was added in 2007 to handle that situation, and now the wbinv_all is
actually harmful because the operation isn't broadcast to other cores.


264994 27-Apr-2014 ian

Provide a proper armv7 implementation of icache_sync_all rather than
using armv7_idcache_wbinv_all, because wbinv_all doesn't broadcast the
operation to other cores. In elf_cpu_load_file() use icache_sync_all()
and explain why it's needed (and why other sync operations aren't).

As part of doing this, all callers of cpu_icache_sync_all() were
inspected to ensure they weren't relying on the old side effect of
doing a wbinv_all along with the icache work.


264990 26-Apr-2014 ian

Call cpu_icache_sync_range() rather than sync_all since we know the range
and flushing the entire icache is needlessly expensive.


264203 06-Apr-2014 ian

Tell VM we now have ARM platforms with physically discontiguous memory.


264135 04-Apr-2014 ian

We don't support any ARM systems with an ISA bus and don't need a freelist
of memory to support ISA addressing limitations.


263998 01-Apr-2014 tijl

Rename __wchar_t so it no longer conflicts with __wchar_t from clang 3.4
-fms-extensions.

MFC after: 2 weeks


263982 01-Apr-2014 br

Add Cortex-A15 cpu id revisions.


263914 29-Mar-2014 andrew

VFP fixes/cleanups for ARM11:
* Save the required VFP registers on context switch. If the exception bit
is set we need to save and restore the FPINST register, and if the fp2v
bit is also set we need to save and restore FPINST2.
* Move saving and restoring the floating point control registers to C.
* Clear the fpexc exception and fp2v flags on a floating-point exception.
* Signal a SIGFPE if the fpexc exception flag is set on an undefined
instruction. This is how the ARM core signals to software there is a
floating-point exception.


263910 29-Mar-2014 andrew

Add more flags for the fpexc register from the ARM1176JZF-S Manual


263679 24-Mar-2014 andrew

Move an else case that was missed in r263676


263676 23-Mar-2014 andrew

Reorder the pmap macros so "ARM_MMU_V6 + ARM_MMU_V7" is first. As they are
identical this allows us to build for both v6 and v7 together.


263637 22-Mar-2014 andrew

Simplify how we build MACHINE_ARCH. There are 3 options that may be set
however only arm, armeb, armv6, and soon armv6hf will be used.


263057 11-Mar-2014 ian

Remove #include <machine/asmacros.h> from files that don't need it.


263056 11-Mar-2014 ian

Remove the unreferenced DATA() macro. That leaves only GET_CURTHREAD_PTR()
which was added by cognet in 2012, so remove the no-longer-applicable
license stuff that referred to all the old contents, and put in a
standard 2-clause BSD license (to cover the 6 lines of useful code left
in here).


262987 10-Mar-2014 ian

Arrange for arm fork_trampoline() to return to userland via the standard
swi_exit code in exception.S instead of having its own inline expansion
of the DO_AST and PULLFRAME macros. That means that now all references
to the PUSH/PULLFRAME and DO_AST macros are localized to exception.S,
so move the macros themselves into there and remove them from asmacros.h


262986 10-Mar-2014 ian

Change the way the asm GET_CURTHREAD_PTR() macro is defined so that code
using it doesn't have to have an "AST_LOCALS" macro somewhere in the file.


262958 09-Mar-2014 ian

Remove all traces of support for ARM chips prior to the arm9 series. We
never actually ran on these chips (other than using SA1 support in an
emulator to do the early porting to FreeBSD long long ago). The clutter
and complexity of some of this code keeps getting in the way of other
maintenance, so it's time to go.


262948 09-Mar-2014 ian

Always call vfp_discard() on thread death, not just when the VFP is
enabled. In vfp_discard(), if the state in the VFP hardware belongs to
the thread which is dying, NULL out pcpu fpcurthread to indicate the
state currently in the hardware belongs to nobody.

Submitted by: Juergen Weiss
Pointy hat to: me


262942 09-Mar-2014 ian

Remove all dregs of a per-thread undefined-exception-mode stack. This is
a leftover from the days when a low-level debugger had hooks in the
undefined exception vector and needed stack space to function. These days
it effectively isn't used because we switch immediately to the svc32 mode
stack on exception entry. For that, the single undef mode stack per core
that gets set up at init time works fine.

The stack wasn't necessary but it was harmful, because the space for it
was carved out of the normal per-thread svc32 stack, in effect cutting
that 8K stack in half. If svc32 mode used more than 4k of stack space it
wandered down into the undef mode stack, and then an undef exception would
overwrite a couple words on the stack while switching to svc32 mode,
corrupting the scv32 stack. Having another stack abut the bottom of the
svc32 stack also effectively mooted the guard page below the stack.

This work is based on analysis and patches submitted by Juergen Weiss.


262941 09-Mar-2014 ian

Rework the VFP code that handles demand-based save and restore of state.

The old code was full of complexity that would only matter if the
kernel itself used the VFP hardware. Now that's reduced to either killing
the userland process or panicking the kernel on an illegal VFP instruction.

This removes most of the complexity from the assembler code, reducing it
to just calling the save code if the outgoing thread used the VFP.

The routine that stores the VFP state now takes a flag that indicates
whether the hardware should be disabled after saving state. Right now it
always is, but this makes the code ready to be used by get/set_mcontext()
(doing so will be addressed in a future commit).

Remove the arm-specific pc_vfpcthread from struct pcpu and use the MI
field pc_fpcurthread instead.

Reviewed by: cognet


262587 28-Feb-2014 ian

Add an armv7 implementation of cpu_sleep(). The arm11/armv6 implementation
we've been using was actually just spinning due to ARM having redefined
the old 'wait for interrupt' operation via the system coprocessor as a nop
and replacing it with a WFI instruction.


262534 26-Feb-2014 ian

Replace many pasted identical definitions of cpu_initclocks() with a common
implementation in arm/machdep.c. Most arm platforms either don't need to
do anything, or just need to call the standard eventtimer init routines.
A generic implementation that does that is now provided via weak linkage.
Any platform that needs to do something different can provide a its own
implementation to override the generic one.


262420 24-Feb-2014 ian

Add a new cache maintenance function, idcache_inv_all, to the table, and
implementations for each of the chips we support. Most chips up through
armv6 can use the armv4 implementation which has a single coprocessor
opcode for this operation. The rather more complex armv7 implementation
comes from netbsd.


262409 23-Feb-2014 ian

Move the declaration for mpentry() into a header file instead of pasting
it into a bunch of different .c files. Remove declarations for the unused
mptramp() function from everywhere except AramadaXP (and I think it's
really not used there either, because the code that references it appears
to be insanely does-nothing in nature).


262123 17-Feb-2014 ian

Give the fdt helper routines static linkage since no global definition
of them is provided anywhere. (gcc was nice enough to warn about this,
clang didn't for some reason.)


261917 15-Feb-2014 zbb

Always clear L1 PTE descriptor when removing superpage on ARM

Invalidate L1 PTE regardles of existance of the corresponding
l2_bucket. This is relevant when superpage is entered via
pmap_enter_object() and will fix crash on entering page
in place of not properly removed superpage.


261808 12-Feb-2014 ian

Use the right symbols for determining arm architecture. Include the
necessary header file which has the new FAULT_WNR symbol defined in it.


261663 09-Feb-2014 andrew

Pass the pagetable used from locore.S to initarm to allow it to map data
in as required.


261656 09-Feb-2014 ian

Use vm_paddr_t, not vm_offset_t, when dealing with physical addresses.

Pointed out by: alc


261649 09-Feb-2014 ian

It turns out a global variable is the only straightforward way to
communicate the kernel's physical load address from where it's known in
initarm() into cpu_mp_start() which is called from non-arm code and
takes no parameters.

This adds the global variable and ensures that all the various copies
of initarm() set it. It uses the variable in cpu_mp_start(), eliminating
the last uses of KERNPHYSADDR outside of locore.S (where we can now
calculate it instead of relying on the constant).


261643 09-Feb-2014 ian

Consolidate code related to setting up physical memory configuration into
a new physmem.c file. The new code provides helper routines that can be
used by legacy SoCs and newer FDT-based systems. There are routines to
add one or more regions of physically contiguous ram, and exclude one or
more physically contiguous regions of ram. Ram can be excluded from crash
dumps, from being given over to the vm system for allocation management,
or both. After all the included and excluded regions have been added,
arm_physmem_init_kernel_globals() processes the regions into the global
dump_avail and phys_avail arrays and realmem and physmem variables that
communicate memory configuration to the rest of the kernel.

Convert all existing SoCs to use the new helper code.


261642 08-Feb-2014 ian

Remove the ARM_USE_SMALL_ALLOC option and code related to it.

This was an optimization used only by a few xscale platforms. Part of
the optimization was to create a direct map for all physical pages, and
that resulted in making multiple mappings of pages in a way that bypassed
the logic in pmap.c to handle VIVT cache aliasing. It also just generally
made the code more complex and hard to maintain for all SoCs.

Reviewed by: cognet


261565 06-Feb-2014 andrew

Use abp_physaddr for the physical address over KERNPHYSADDR. This helps us
remove the need to load the kernel at a fixed address.


261562 06-Feb-2014 andrew

Pass the kernel physical address to initarm through the boot param struct.


261419 02-Feb-2014 cognet

Only use the CPU ID register if SMP is defined. Some non-MPCore armv6 cpu,
such as the one found in the RPi, don't have it, and just hang when we try
to access it.


261417 02-Feb-2014 ian

Add missing semicolon.


261415 02-Feb-2014 cognet

Change the way pcpu and curthread are stored per-core:
the old way was to store pcpu in a register, and get curthread from pcpu,
which is not very atomic, and led to issues if the thread was migrated
to another core between the time we got the pcpu address and the time we
got curthread.
Instead, we now store curthread where pcpu used to be store, and we
calculate the pcpu address based on the cpu id.


261393 02-Feb-2014 ian

Update all arm code that manipulates the PSR registers to use modern syntax.

It turns out the version of gas we're using interprets the old '_all' mask
as 'fc' instead of 'fsxc'. That is, "all" doesn't really mean "all".

This was the cause of the "wrong-endian register restore" bug that's
been causing problems with some cortex-a9 chips. The 'endian' bit in the
spsr register would never get changed (it falls into the 'x' mask group)
and the first return-from-exception would fail if the chip had powered on
with garbage in the spsr register that included the big-endian bit. It's
unknown why this affected only certain cortex-a9 chips.


261137 24-Jan-2014 andrew

Correct the alignment of sp through functions that use UNWINDSVCFRAME. We
were incorrectly adding the trap frame padding to the stack pointer after
reading it's value and unaligning it.


260493 09-Jan-2014 ian

Add a prototype for the new arm_devmap_print_table(). This should have
been part of r260490.


260375 06-Jan-2014 andreast

Fix arm build.

Reviewed by: ian, zbb


260340 05-Jan-2014 ian

Remove dev/fdt/fdt_pci.c, which was code specific to Marvell ARM SoCs,
related to setting up static device mappings. Since it was only used by
arm/mv/mv_pci.c, it's now just static functions within that file, plus
one public function that gets called only from arm/mv/mv_machdep.c.


260327 05-Jan-2014 nwhitehorn

Retire machine/fdt.h as a header used by MI code, as its function is now
obsolete. This involves the following pieces:
- Remove it entirely on PowerPC, where it is not used by MD code either
- Remove all references to machine/fdt.h in non-architecture-specific code
(aside from uart_cpu_fdt.c, shared by ARM and MIPS, and so is somewhat
non-arch-specific).
- Fix code relying on header pollution from machine/fdt.h includes
- Legacy fdtbus.c (still used on x86 FDT systems) now passes resource
requests to its parent (nexus). This allows x86 FDT devices to allocate
both memory and IO requests and removes the last notionally MI use of
fdtbus_bs_tag.
- On those architectures that retain a machine/fdt.h, unused bits like
FDT_MAP_IRQ and FDT_INTR_MAX have been removed.


260161 01-Jan-2014 zbb

Add polarity and level support to ARM GIC

Add suport for setting triggering level and polarity in GIC.
New function pointer was added to nexus which corresponds
to the function which sets level/sense in the hardware (GIC).

Submitted by: Wojciech Macek <wma@semihalf.com>
Obtained from: Semihalf


259640 20-Dec-2013 ganbold

Add identification and necessary type checks for Krait CPU cores. Krait CPU is used in
Qualcomm Snapdragon S4 and Snapdragon 400/600/800 SoCs and has architectural
similarities to ARM Cortex-A15. As for development boards IFC6400 series embedded
boards from Inforce Computing uses Snapdragon S4 Pro/APQ8064.

Approved by: stas (mentor)


258780 30-Nov-2013 eadler

Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with: -arch, rdivacky
Reviewed by: cperciva


258531 24-Nov-2013 gavin

platform_devmap_init() was renamed initarm_devmap_init() in r257669, update
comments to match.


257854 08-Nov-2013 alc

As of r257209, all architectures have defined VM_KMEM_SIZE_SCALE. In other
words, every architecture is now auto-sizing the kmem arena. This revision
changes kmeminit() so that the definition of VM_KMEM_SIZE_SCALE becomes
mandatory and the definition of VM_KMEM_SIZE becomes optional.

Replace or eliminate all existing definitions of VM_KMEM_SIZE. With
auto-sizing enabled, VM_KMEM_SIZE effectively became an alternate spelling
for VM_KMEM_SIZE_MIN on most architectures. Use VM_KMEM_SIZE_MIN for
clarity.

Change kmeminit() so that the effect of defining VM_KMEM_SIZE is similar to
that of setting the tunable vm.kmem_size. Whereas the macros
VM_KMEM_SIZE_{MAX,MIN,SCALE} have had the same effect as the tunables
vm.kmem_size_{max,min,scale}, the effects of VM_KMEM_SIZE and vm.kmem_size
have been distinct. In particular, whereas VM_KMEM_SIZE was overridden by
VM_KMEM_SIZE_{MAX,MIN,SCALE} and vm.kmem_size_{max,min,scale}, vm.kmem_size
was not. Remedy this inconsistency. Now, VM_KMEM_SIZE can be used to set
the size of the kmem arena at compile-time without that value being
overridden by auto-sizing.

Update the nearby comments to reflect the kmem submap being replaced by the
kmem arena. Stop duplicating the auto-sizing formula in every machine-
dependent vmparam.h and place it in kmeminit() where auto-sizing takes
place.

Reviewed by: kib (an earlier version)
Sponsored by: EMC / Isilon Storage Division


257676 05-Nov-2013 ian

Style and comment tweaks, no functional changes.


257673 05-Nov-2013 ian

Add new helper routines for arm static device mapping. The new code
allocates kva space from the top down for the device mappings and builds
entries in an internal table which is automatically used later by
arm_devmap_bootstrap(). The platform code just calls the new
arm_devmap_add_entry() function as many times as it needs to (up to 32
entries allowed; most platforms use 2 or 3 at most).

There is also a new arm_devmap_lastaddr() function that returns the lowest
kva address allocated; this can be used to implement initarm_lastaddr()
which is used to initialize vm_max_kernel_address.

The new code is based on a similar concept developed for the imx family
SoCs recently. They will soon be converted to use this new common code.


257672 05-Nov-2013 ian

Make PTE_DEVICE a synonym for PTE_NOCACHE on armv4, to make it easier to
share the same code on both architectures.


257669 05-Nov-2013 ian

Call initarm_lastaddr() later in the init sequence, after establishing
static device mappings, rather than as the first of the initializations
that a platform can hook into. This allows a platform to allocate KVA
from the top of the address space downwards for things like static device
mapping, and return the final "last usable address" result after that and
other early init work is done.

Because some platforms were doing work in initarm_lastaddr() that needs to
be done early, add a new initarm_early_init() routine and move the early
init code to that routine on those platforms.

Rename platform_devmap_init() to initarm_devmap_init() to match all the
other init routines called from initarm() that are designed to be
implemented by platform code.

Add a comment block that explains when these routines are called and the
type of work expected to be done in each of them.


257660 04-Nov-2013 ian

Move remaining code and data related to static device mapping into the
new devmap.[ch] files. Emphasize the MD nature of these things by using
the prefix arm_devmap_ on the function and type names (already a few of
these things found their way into MI code, hopefully it will be harder to
do by accident in the future).


257648 04-Nov-2013 ian

Begin reducing code duplication in arm pmap.c and pmap-v6.c by factoring
out common code related to mapping device memory into a new devmap.c file.

Remove the growing duplication of code that used pmap_devmap_find_pa() and
then did some math with the returned results to generate a virtual address,
and likewise in reverse to get a physical address. Now there are a pair
of functions, arm_devmap_vtop() and arm_devmap_ptov(), to do that. The
bus_space_map() implementations are rewritten in terms of these.


257549 02-Nov-2013 alc

Don't create a distinct free page pool for segregating allocations that are
accessed through the direct map unless the kernel configuration actually
includes a direct map. Only a few configurations do, and for the rest the
unnecessary free page pool is a small pessimization.

Tested by: zbb
MFC after: 6 weeks


257291 28-Oct-2013 zbb

Fix condition that determines PMAP_NEEDS_PTE_SYNC value for ARM

Use values of the correct defines to determine statement's result.
ARM_ARCH_ symbols are always defined, hence only values are relevant.

Reviewed by: cognet


257282 28-Oct-2013 zbb

Switch off explicit broadcasting of the TLB flush operations for PJ4B CPU

Since CPU_MV_PJ4B describes ARMv7 compliant CPU there is no need for
sending an IPI each time when TLB is flushed in any way.

Tested by: kevlo


257281 28-Oct-2013 zbb

Remove not working and deprecated PJ4Bv6 support

Sheeva PJ4Bv6 - based chips were only prototypes for V7 class Armada
SoC family. Current in-tree support for PJ4Bv6 will not work and also
there should be no platforms in active use that would incorporate that
CPU revision.


257231 27-Oct-2013 cognet

Make sure the PCB is aligned on 8 bytes, we may use ldrd/strd to access it,
which may have strong alignment requirements.


257217 27-Oct-2013 ian

Remove the last dregs of trapframe_t. It turns out only arm was using
this type, so remove it to make arm code more consistant with other
platforms. Thanks to bde@ for pointing out only arm used trapframe_t.


257201 27-Oct-2013 ian

Retire arm_remap_nocache() and the data and constants associated with it.

The only remaining user was the code that allocates bounce pages for armv4
busdma. It's not clear why bounce pages would need uncached memory, but
if that ever changes, kmem_alloc_attr() would be the way to get it.


257200 27-Oct-2013 ian

Remove #include <machine/frame.h> from all the arm code that doesn't
really need it. That would be almost everywhere it was included. Add
it in a couple files that really do need it and were previously getting
it by accident via another header.


257199 27-Oct-2013 ian

Remove all #include <machine/pmap.h> from arm code. It's already
included by vm/pmap.h, which is a prerequisite for arm/machine/pmap.h
so there's no reason to ever include it directly.

Thanks to alc@ for pointing this out.


257189 26-Oct-2013 andrew

Fix an itt instruction. We need to execute both the mov and b instructions
when building for Thumb.


256708 17-Oct-2013 cognet

Spell cpu_l2cache_wb_range correctly.


256707 17-Oct-2013 cognet

- Switch to use WBWA mappings for page tables on armv6, this is needed for SMP.
- Fix PTE_SYNC() for PIPT L2 caches, using the virtual address wasn't so useful.
- Use PTE_SYNC() for >= armv6


256629 16-Oct-2013 br

Add CPU ID for ARM Cortex A5.

Approved by: cognet (mentor)


255361 07-Sep-2013 andrew

On ARM EABI double precision floating point values are stored in the
endian the CPU is in, i.e. little-endian on most ARM cores.

This allows ARMv4 and ARMv5 boards to boot with the ARM EABI.


255352 07-Sep-2013 glebius

Fix of r255318: move sf_buf_alloc()/sf_buf_free() out of #ifdef
ARM_USE_SMALL_ALLOC.


255318 06-Sep-2013 glebius

Fix build with gcc. Move sf_buf_alloc()/sf_buf_free() declarations
to MD headers.


254918 26-Aug-2013 raj

Introduce superpages support for ARMv6/v7.

Promoting base pages to superpages can increase TLB coverage and allow for
efficient use of page table entries. This development provides FreeBSD/ARM
with superpages management mechanism roughly equivalent to what we have for
i386 and amd64 architectures.

1. Add mechanism for automatic promotion of 4KB page mappings to 1MB section
mappings (and demotion when not needed, respectively).

2. Managed and non-kernel mappings are now superpages-aware.

3. The functionality can be enabled by setting "vm.pmap.sp_enabled" tunable to
a non-zero value (either in loader.conf or by modifying "sp_enabled"
variable in pmap-v6.c file). By default, automatic promotion is currently
disabled.

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Reviewed by: alc
Sponsored by: The FreeBSD Foundation, Semihalf


254915 26-Aug-2013 raj

Provide settings for superpage reservation system on ARM.

This allows for enabling and configuring superpages reservation mechanism in
order to allocate and populate 256 4KB base pages (for the purpose of
promotion to a 1MB superpage).

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Reviewed by: alc
Sponsored by: The FreeBSD Foundation, Semihalf


254536 19-Aug-2013 raj

Do not use pv_kva on ARMv6/v7 and save some space on each vm_page. It's only
relevant for older ARM variants (with virtual cache).

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Reviewed by: gber
Sponsored by: The FreeBSD Foundation, Semihalf


254532 19-Aug-2013 raj

Clear all L2 PTE protection bits before their configuration.

Revise L2_S_PROT_MASK to include all of the protection bits. Notice that
clearing these bits does not always take away the corresponding permissions
(for example, permission is granted when the bit is cleared). The bits are
cleared but are to be set or left cleared accordingly in pmap_set_prot(),
pmap_enter_locked(), etc.

Clear L2_XN along with L2_S_PROT_MASK in pmap_set_prot() so that all
permissions related bits are cleared before actual configuration.

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Reviewed by: gber
Sponsored by: The FreeBSD Foundation, Semihalf


254461 17-Aug-2013 andrew

Rename device vfp to option VFP and retire the ARM_VFP_SUPPORT option. This
simplifies enabling as previously both options were required to be enabled,
now we only need a single option.

While here enable VFP on the PandaBoard.


254452 17-Aug-2013 andrew

Remove fpe_sp_state as we don't support fpe.


254166 09-Aug-2013 cognet

Instead of just trying to do it for arm, make sure vm_kmem_size is properly
aligned in kmeminit(), where it'll work for any arch.

Suggested by: alc


254164 09-Aug-2013 cognet

Make sure vm_kmem_size is aligned on a page boundary, since that's what vmem
expects.


253968 05-Aug-2013 andrew

When entering exception handlers we may not have an aligned stack. This is
because an exception may happen at any time. The stack alignment rules on
ARM EABI state the only place the stack must be 8-byte aligned is on a
function boundary.

If an exception happens while a function is setting up or tearing down it's
stack frame it may not be correctly aligned. There is also no requirement
for it to be when the function is a leaf node.

The fix is to align the stack after we have stored a backup of the old stack
pointer, but before we have stored anything in the trapframe. Along with
this we need to adjust the size of the trapframe by 4 bytes to ensure the
stack below it is also correctly aligned.


253857 01-Aug-2013 ganbold

Add identification for Cortex-A7 (R0) cores.

Reviewed by: cognet@


253768 29-Jul-2013 cognet

Explicitely include <machine/pcb.h>, so that we get the definition of
struct pcb.

Submitted by: Zbyszek Bodek <zbb@semihalf.com>
Pointy hat to: cognet


253762 29-Jul-2013 cognet

Define KDB_STOPPEDPCB, so that we can access the backtraces of threads running
on other cores.


253750 28-Jul-2013 avg

Revert r253748,253749

This WIP should not have been committed yet.

Pointyhat to: avg


253748 28-Jul-2013 avg

put contents of cpu.h under _KERNEL

no userland-serviceable parts inside

MFC after: 20 days


253489 20-Jul-2013 andrew

Start adding support to build bits of our code using the Thumb-2
instruction set. Thumb-2 requires an if-then instruction to implement
conditional codes.

When building for ARM mode the it-then instructions do not generate any
assembled instruction as per the ARMv7-A Architecture Reference Manual, and
are safe to use.

While this allows the atomic instructions to be built, it doesn't mean we
fully support Thumb code. It works in small tests, but is still known to
fail in a large number of places.

While here add a check for the armv6t2 architecture.


252434 01-Jul-2013 kib

Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.

On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.

On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.

PowerPC64 is treated the same as amd64.

For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.

Noted by: bde
Sponsored by: The FreeBSD Foundation


252362 28-Jun-2013 ray

Bump max number of IRQs for Cortex-Ax family to cover Exynos5 requirement.

Submitted by: Ruslan Bukin <br@bsdpad.com>


252361 28-Jun-2013 ray

Add identification for Cortex-A15 (R0) cores.

Submitted by: Ruslan Bukin <br@bsdpad.com>


252311 27-Jun-2013 andrew

Add UNWINDSVCFRAME to provide the unwind pseudo ops to allow us to unwind
past a trapframe.

Use this macro in exception_exit as it is the function the unwinder enters
as the functions that store the frame setting lr to point to it.


251712 13-Jun-2013 andrew

Fix the vfp code to work with the 16 register variants of the VFP unit. We
check which variant we are on, and if it is a VFPv3 or v4, and has 32
double registers we save these. This fixes VFP support on Raspberry Pi.

While here clean fmrx and fmxr up to use the register names from vfp.h
as opposed to the raw register names.


251517 08-Jun-2013 andrew

Merge in changes from NetBSD:
* Remove support for non-elf files.
* Add the VFP setjmp magic numbers.
* Add the offsets for the VFP registers within the buffer.


251510 07-Jun-2013 andrew

Reduce the difference to NetBSD.

* Stop pretending we support anything other than ELF by removing code
surrounded by #ifdef __ELF__ ... #endif.
* Remove _JB_MAGIC_SETJMP and _JB_MAGIC__SETJMP, they are defined in
setjmp.h, which is able to be included from asm.
* Fix the spelling of dependent.
* Rename END _END and add END and ASEND to complement ENTRY and ASENTRY
respectively
* Add macros to simplify accessing the Global Offset Table, some of these
will be used in the upcoming update to the setjmp functions.


250930 23-May-2013 gber

Stop using PVF_MOD, PVF_REF & PVF_EXEC flags in pv_entry, use PTE.

Using PVF_MOD, PVF_REF and PVF_EXEC is redundant as we can get the proper
info from PTE bits.
When the mapping is marked as executable and has been referenced we assume
that it has been executed. Similarly, when the mapping is set to be writable
and is referenced, it must have been due to write access to it.
PVF_MOD and PVF_REF flags are kept just for pmap_clearbit() usage,
to pass the information on which bit should be cleared.

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Sponsored by: The FreeBSD Foundation, Semihalf


250929 23-May-2013 gber

Improve, optimize and clean-up ARMv6/v7 memory management related code.

Use pmap_find_pv if needed instead of multiplying its code throughout
pmap-v6.

Avoid possible NULL pointer dereference in pmap_enter_locked()
When trying to get m->md.pv_memattr, make sure that m != NULL,
in particular that vector_page is set to be NULL.

Do not set PGA_REFERENCED flag in pmap_enter_pv().
On ARM any new page reference will result in either entering the new
mapping by calling pmap_enter, etc. or fixing-up the existing mapping in
pmap_fault_fixup().
Therefore we set PGA_REFERENCED flag in the earlier mentioned cases and
setting it later in pmap_enter_pv() is just waste of cycles.

Delete unused pm_pdir pointer from the pmap structure.

Rearrange brackets in the fault cause detection in trap.c
Place the brackets correctly in order to see course of the conditions
instantaneously.

Unify naming in pmap-v6.c and improve style
Use naming common for whole pmap and compatible with other pmaps,
improve style where possible:
pm -> pmap
pg -> m
opg -> om
*pt -> *ptep
*pte -> *ptep
*pde -> *pdep

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Sponsored by: The FreeBSD Foundation, Semihalf


250928 23-May-2013 gber

Switch to AP[2:1] access permissions model. Store "referenced"
bit in PTE.

Enable Access Flag in CPU control. With AF enabled each valid mapping
needs to have referenced bit in PTE set in order to be able to cache
it in the TLB.

AP[0] bit is to be used as reference flag.
All access permissions are encoded by AP[2:1] wherein AP[1] is in fact
"user enable" and AP[2](APX) is "write disable".

All mappings are always set to be valid. Reference emulation is performed
by setting/clearing reference flag in PTE.

md.pvh_attrs are no longer necessary however pv_flags are still being used
for now.

Marking vm_page as "dirty" or "referenced" is being performed on:
- page or flag fault servicing in pmap_fault_fixup(), basing on the fault
type
- vm_fault servicing in pmap_enter() according to the desired protections
and faulty access type
Redundant page marking has been removed as on ARM we know exactly when the
particular page is referenced or is going to be written.

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Sponsored by: The FreeBSD Foundation, Semihalf


250634 14-May-2013 gber

Port the new PV entry allocator from amd64/i386/mips to armv6/v7.

PV entries are now roughly half the size.
Instead of using a shared UMA zone for 28 byte pv entries
(two 8-byte tailq nodes, a 4 byte pointer, a 4 byte address and 4 byte
flags), we allocate a page at a time per process.
This provides 252 pv entries per process (actually, per pmap address space)
and eliminates one of the 8-byte tailq entries since we now can track
per-process pv entries implicitly.
The pointer to the pmap can be eliminated by doing address arithmetic to
find the metadata on the page headers to find a single pointer shared by
all 252 entries. There is an 8-int bitmap for the freelist of those 252
entries.
When in serious low memory condition, allocation of another pv_chunk is
possible by freeing some pages in pmap_pv_reclaim().

Added pv_entry/pv_chunk related statistics to pmap.
pv_entry/pv_chunk statistics can be accessed via sysctl vm.pmap.

Ported PTE freelist of KVA allocation and maintenance from i386.
Using an idea from Stephan Uphoff, use the empty pte's that correspond
to the unused kva in the pv memory block to thread a freelist through.
This allows us to free pages that used to be used for pv entry chunks
since we can now track holes in the kva memory block.

As both ARM pmap.c and pmap-v6.c use the same header and pv_entry, pmap and
md_page structures are different, it was needed to separate code designed
for ARMv6/7 from the one for other ARMs.

Submitted by: Zbigniew Bodek <zbb@semihalf.com>
Reviewed by: alc
Sponsored by: The FreeBSD Foundation, Semihalf


250338 07-May-2013 attilio

Rename VM_NDOMAIN into MAXMEMDOM and move it into machine/param.h in
order to match the MAXCPU concept. The change should also be useful
for consolidation and consistency.

Sponsored by: EMC / Isilon storage division
Obtained from: jeff
Reviewed by: alc


250297 06-May-2013 gber

Fix L2 PTE access permissions management.

Keep following access permissions:

APX AP Kernel User
1 01 R N
1 10 R R
0 01 R/W N
0 11 R/W R/W

Avoid using reserved in ARMv6 APX|AP settings:
- In case of unprivileged (user) access without permission to write,
the access permission bits were being set to reserved for ARMv6
(but valid for ARMv7) value of APX|AP = 111.

Fix-up faulting userland accesses properly:
- Wrong condition statement in pmap_fault_fixup() caused that
any genuine, unprivileged access was being fixed-up instead of
just skip doing anything and return. Staring from now we ensure
proper reaction for illicit user accesses.

L2_S_PROT_R and L2_S_PROT_U names might be misleading as they do not
reflect real permission levels. It will be clarified in following
patches (switch to AP[2:1] permissions model).

Obtained from: Semihalf


249999 27-Apr-2013 wkoszek

Add Xilinx Zynq ARM/FPGA SoC support to FreeBSD/arm port.

Submitted by: Thomas Skibo <ThomasSkibo (at) sbcglobal.net>
Tested by: wkoszek (ZedBoard)
Reviewed by: wkoszek, freebsd-arm@ (no objections raised)


249582 17-Apr-2013 gabor

- Correct mispellings of the word occurrence

Submitted by: Christoph Mallon <christoph.mallon@gmx.de> (via private mail)


249268 08-Apr-2013 glebius

Merge from projects/counters: counter(9).

Introduce counter(9) API, that implements fast and raceless counters,
provided (but not limited to) for gathering of statistical data.

See http://lists.freebsd.org/pipermail/freebsd-arch/2013-April/014204.html
for more details.

In collaboration with: kib
Reviewed by: luigi
Tested by: ae, ray
Sponsored by: Nginx, Inc.


249265 08-Apr-2013 glebius

Merge from projects/counters:

Pad struct pcpu so that its size is denominator of PAGE_SIZE. This
is done to reduce memory waste in UMA_PCPU_ZONE zones.

Sponsored by: Nginx, Inc.


249180 06-Apr-2013 andrew

Hide non-assembler bits behind #ifndef __ASSEMBLER__


248911 29-Mar-2013 ian

Add userland access to at91 gpio functionality via ioctl calls. Also,
add the ability for userland to be notified of changes on gpio pins via
a select(2)/read(2) interface.

Change the interrupt handler from filtered to threaded.

Because of the uiomove() calls in the new interface, change locking from
standard mutex to sx.

Add / restore the at91_gpio_high_z() function.

Reviewed by: imp (long ago)


248907 29-Mar-2013 ian

Add a couple forward declarations, so that board support routines don't have
to pre-include a bunch of header files they don't need just to use this one.


248467 18-Mar-2013 ray

o Switch to use physical addresses in rman for FDT.
o Remove vtophys used to translate virtual address to physical in case rman carry virtual.

Sponsored by: The FreeBSD Foundation


248407 17-Mar-2013 ian

Add a macro that gets the physical address of a memory mapped device
register from a bus space resource.

Note that this macro is just for ARM, and is intended to have a short
lifespan. The DMA engines in some SoCs need the physical address of a
memory-mapped device register as one of the arguments for the transfer.
Several scattered ad-hoc solutions have been converted to use this macro,
which now also serves to mark the places where a more complete fix needs
to be applied (after that fix has been designed).


248361 16-Mar-2013 andrew

Add an END macro to ARM. This is mostly used to tell gas where the bounds
of the functions are when creating the EABI unwind tables.


248280 14-Mar-2013 kib

Add pmap function pmap_copy_pages(), which copies the content of the
pages around, taking array of vm_page_t both for source and
destination. Starting offsets and total transfer size are specified.

The function implements optimal algorithm for copying using the
platform-specific optimizations. For instance, on the architectures
were the direct map is available, no transient mappings are created,
for i386 the per-cpu ephemeral page frame is used. The code was
typically borrowed from the pmap_copy_page() for the same
architecture.

Only i386/amd64, powerpc aim and arm/arm-v6 implementations were
tested at the time of commit. High-level code, not committed yet to
the tree, ensures that the use of the function is only allowed after
explicit enablement.

For sparc64, the existing code has known issues and a stab is added
instead, to allow the kernel linking.

Sponsored by: The FreeBSD Foundation
Tested by: pho (i386, amd64), scottl (amd64), ian (arm and arm-v6)
MFC after: 2 weeks


248153 11-Mar-2013 cognet

Don't use an empty struct.


248119 10-Mar-2013 andrew

__FreeBSD_ARCH_armv6__ is undefined on clang. We can use __ARM_ARCH in
it's place. This makes 'uname -p' correctly output 'armv6' on a kernel
built with clang.


247864 06-Mar-2013 andrew

Fix stack alignment in the kernel to be on an 8 byte boundary as required
by AAPCS.


247610 02-Mar-2013 andrew

Move some virtual memory constants to the top of the file where they are on
other architectures [1].

While here:
- Remove an unused and commented out include.
- Add a comment describing the file that other copies have.
- Fix the style of the defines and add a comment on what each one is.

Suggested by: [1] alc


247587 01-Mar-2013 andrew

Increase the maximum text size on ARM to 64MiB. Without this clang would be
sent a SIGABRT when it is loaded as it is too large. This is the smallest
power of two MiB value that allows us to execute clang.

While here wrap it in an #ifndef to be consistent with the other
architectures.

Submitted by: Daisuke Aoyama <aoyama at peach.ne.jp>


247535 01-Mar-2013 alc

Copy the definition of VM_MAX_AUTOTUNE_MAXUSERS from i386. (See r242847.)

Tested by: andrew


247341 26-Feb-2013 cognet

Export vfp_init() prototype, for use in the MP code.


247314 26-Feb-2013 alc

Be more conservative in auto-sizing and capping the kmem submap. In
fact, use the same values here that we use on 32-bit x86 and MIPS. Some
machines were reported to have problems with the more aggressive values.

Reported and tested by: andrew


247046 20-Feb-2013 alc

Initialize vm_max_kernel_address on non-FDT platforms. (This should have
been included in r246926.)

The second parameter to pmap_bootstrap() is redundant. Eliminate it.

Reviewed by: andrew


246929 18-Feb-2013 alc

Place a cap on the size of the kernel's heap, also known as the kmem
submap. Otherwise, after r246204, the auto-scaling logic in kern_malloc.c
tries to create a kmem submap that consumes the entire kernel map on a
Pandaboard with 1 GB of RAM.

Tested by: gonzo


246926 18-Feb-2013 alc

On arm, like sparc64, the end of the kernel map varies from one type of
machine to another. Therefore, VM_MAX_KERNEL_ADDRESS can't be a constant.
Instead, #define it to be a variable, vm_max_kernel_address, just like we
do on sparc64.

Reviewed by: kib
Tested by: ian


246204 01-Feb-2013 andre

Add VM_KMEM_SIZE_SCALE parameter set to 2 (50%) for all ARM platforms.

VM_KMEM_SIZE_SCALE specifies which fraction of the available physical
memory, after deduction of the kernel itself and other early statically
allocated memory, can be used for the kmem_map. The kmem_map provides
for all UMA/malloc allocations in KVM space.

Previously ARM was using a fixed kmem_map size of (12*1024*1024) = 12MB
without regard to effectively available memory. This is too small for
recent ARM SoC with more than 128MB of RAM.

For reference a description of others related kmem_map parameters:

VM_KMEM_SIZE default start size of kmem_map if SCALE is
not defined
VM_KMEM_SIZE_MIN hard floor on the kmem_map size
VM_KMEM_SIZE_MAX hard ceiling on the kmem_map size
VM_KMEM_SIZE_SCALE fraction of the available real memory to
be used for the kmem_map, limited by the
MIN and MAX parameters.

Tested by: ian
MFC after: 1 week


245637 19-Jan-2013 ian

Eliminate the need for an intermediate array of indices into the arrays of
interrupt counts and names, by making the names into an array of fixed-length
strings that can be directly indexed. This eliminates extra memory accesses
on every interrupt to increment the counts.

As a side effect, it also fixes a bug that would corrupt the names data
if a name was longer than MAXCOMLEN, which led to incorrect vmstat -i output.

Approved by: cognet (mentor)


245551 17-Jan-2013 andrew

* Correct KINFO_PROC_SIZE for ARM EABI.
* Update the syscall interface to pass in the syscall value in register r7.


245475 15-Jan-2013 cognet

Don't define rel/acq variants of some atomic operations as the regular
version for armv6.


245202 09-Jan-2013 cognet

Use get_pcpu() instead of using pcpup, as it's wrong for SMP.

Submitted by: Lukasz Plachno <luk@semihalf.com>


245147 08-Jan-2013 gonzo

Switch default cache type for ARMv6/ARMv7 from write-through to
writeback-writeallocate


245135 07-Jan-2013 gonzo

Implement barriers for AMRv6 and ARMv7

Submitted by: Daisuke Aoyama <aoyama at peach.ne.jp>
Reviewed by: ian, cognet


245083 06-Jan-2013 andrew

Only work around errata when we are on a part where the erratum applies.

Reviewed by: gonzo


245079 05-Jan-2013 gonzo

Add hw.board.serial and hw.board.revision for exporting board-specific info


244919 01-Jan-2013 andrew

Document the known values of the RTL release field in the cache is register


244914 31-Dec-2012 gonzo

PL310 driver update:

- Add pl310.disable tunable to disable L2 cache altogether. In
order to make sure that it's 100% disabled we use cache event
counters for cache line eviction and read allocate events
and panic if any of these counters increased. This is purely
for debugging purpose
- Direct access DEBUG_CTRL and CTRL might be unavailable in
unsecure mode, so use platform-specific functions for
these registers
- Replace #if 1 with proper erratum numbers
- Add erratum 753970 workaround
- Remove wait function for atomic operations
- Protect cache operations with spin mutex in order to prevent race condition
- Disable instruction cache prefetch and make sure data cache
prefetch is enabled in OMAP4-specific intialization


244480 20-Dec-2012 gonzo

Replace generic ARM11 option with more specific
support for ARM1136 and ARM1176

Submitted by: Daisuke Aoyama <aoyama at peach.ne.jp>
Obtained from: NetBSD


244476 20-Dec-2012 gonzo

Fix misleading comment


244414 19-Dec-2012 cognet

Properly implement pmap_[get|set]_memattr

Submitted by: Ian Lepore <freebsd@damnhippie.dyndns.org>


243576 27-Nov-2012 marcel

Don't define intr_disable and intr_restore as macros. The macros
interfere with structure fields of the same name in drivers, like
the intr_disable function pointer in struct cphy_ops in cxgb(4).
Instead define intr_disable and intr_restore as inline functions.

With intr_disable() an inline function, the I32_bit and F32_bit
macros now need to be visible in MI code and given the rather
poor names, this is not at all good. Define ARM_CPSR_F32 and
ARM_CPSR_I32 and use that instead of F32_bit and I32_bit (resp)
for now.


242531 03-Nov-2012 andrew

Merge the FDT versions of initarm.

The copies of initarm used on platforms with FDT support were almost
identical. The differences were pulled out into separate functions that
were called by initarm.

This change merges the, now identical, copies of initarm and a few of it's
support functions. This is a step towards a common kernel on ARMv6.


241080 01-Oct-2012 andrew

Fix the clobber list on the atomic operators that do comparisons. Without
this some compilers will place a cmp instruction before the atomic operation
and expect to be able to use the result afterwards. By adding "cc" to the
list of used registers we tell the compiler to not do this.


241058 29-Sep-2012 alc

Eliminate an unused declaration.


240983 27-Sep-2012 alc

Implementing pmap_kextract(va) as pmap_extract(kernel_pmap, va) is
problematic because some callers to pmap_kextract() expect its
implementation to be lock-less. In particular, uma_dbg_alloc() implicitly
requires this. Otherwise, lock-order reversals occur between pmap locks and
UMA zone locks. So, this change introduces a lock-less implementation of
pmap_kextract().

Disable recursion on the pvh global lock in the new armv6 pmap. While
recursion on this locks occurs in the old arm pmap, it thankfully doesn't
occur in the armv6 pmap.

Tested by: jmg


240846 23-Sep-2012 andrew

Pull out the SoC specific parts of initarm into separate functions


240802 22-Sep-2012 andrew

Create a common set_stackptrs in sys/arm/machdep.c.

On single core devices set_stackptrs is only ever called with cpu = 0 in
initarm and will be identical to the existing function. On SMP this needs
to be implemented for sys/arm/mp_machdep.c, but the implementations are
identical for each SoC.


240492 14-Sep-2012 gber

Add support for MSI in interrupt controlller.

MSI are implemented via software interrupt. PCIe cards will write
into software interrupt register which will cause inbound shared
interrupt which will be interpreted as a MSI.

Obtained from: Marvell, Semihalf


240488 14-Sep-2012 gber

Add support for Armada XP A0.

- Add functions to calculate clocks instead using hardcoded values
- Update reset and timers functions
- Update number of interrupts
- Change name of platform from db88f78100 to db78460
- Correct DRAM size and PCI IRQ routing in dts file.

Obtained from: Semihalf


240486 14-Sep-2012 gber

Support identification of new PJ4B cores.

Obtained from: Semihalf


240181 07-Sep-2012 alc

Eliminate an unused macro.


239701 26-Aug-2012 gonzo

Add support for ARM11 cpufunc

Obtained from: NetBSD (partially)


239696 26-Aug-2012 gonzo

Piggyback MIPS changes and add ARM syscons support for devices with
framebuffer

While here - sort #if defined() order alphabetically


239688 25-Aug-2012 gonzo

ARM11 might have more then 32 interrupts, e.g. BCM2835: 72 interrupts


239268 15-Aug-2012 gonzo

Merging projects/armv6, part 1

Cummulative patch of changes that are not vendor-specific:
- ARMv6 and ARMv7 architecture support
- ARM SMP support
- VFP/Neon support
- ARM Generic Interrupt Controller driver
- Simplification of startup code for all platforms


238347 10-Jul-2012 imp

Revert committal of local change accidentally swept up in r238329.


238329 10-Jul-2012 imp

Remove some unused variables/externs that have been copied too many times...


238189 07-Jul-2012 imp

Create a generic way to support multiple boards within an
arm platform. Add all the atmel boards to the ATMEL kernel for
testing purposes. Until boot loader arg parsing of baord type
is done, this won't actually be able to do the runtime selection.


237517 24-Jun-2012 andrew

Make the wchar_t type machine dependent.

This is required for ARM EABI. Section 7.1.1 of the Procedure Call for the
ARM Architecture (AAPCS) defines wchar_t as either an unsigned int or an
unsigned short with the former preferred.

Because of this requirement we need to move the definition of __wchar_t to
a machine dependent header. It also cleans up the macros defining the limits
of wchar_t by defining __WCHAR_MIN and __WCHAR_MAX in the same machine
dependent header then using them to define WCHAR_MIN and WCHAR_MAX
respectively.

Discussed with: bde


237433 22-Jun-2012 kib

Implement mechanism to export some kernel timekeeping data to
usermode, using shared page. The structures and functions have vdso
prefix, to indicate the intended location of the code in some future.

The versioned per-algorithm data is exported in the format of struct
vdso_timehands, which mostly repeats the content of in-kernel struct
timehands. Usermode reading of the structure can be lockless.
Compatibility export for 32bit processes on 64bit host is also
provided. Kernel also provides usermode with indication about
currently used timecounter, so that libc can fall back to syscall if
configured timecounter is unknown to usermode code.

The shared data updates are initiated both from the tc_windup(), where
a fast task is queued to do the update, and from sysctl handlers which
change timecounter. A manual override switch
kern.timecounter.fast_gettime allows to turn off the mechanism.

Only x86 architectures export the real algorithm data, and there, only
for tsc timecounter. HPET counters page could be exported as well, but
I prefer to not further glue the kernel and libc ABI there until
proper vdso-based solution is developed.

Minimal stubs neccessary for non-x86 architectures to still compile
are provided.

Discussed with: bde
Reviewed by: jhb
Tested by: flo
MFC after: 1 month


237430 22-Jun-2012 kib

Reserve AT_TIMEKEEP auxv entry for providing usermode the pointer to
timekeeping information.

MFC after: 1 week


237168 16-Jun-2012 alc

The page flag PGA_WRITEABLE is set and cleared exclusively by the pmap
layer, but it is read directly by the MI VM layer. This change introduces
pmap_page_is_write_mapped() in order to completely encapsulate all direct
access to PGA_WRITEABLE in the pmap layer.

Aesthetics aside, I am making this change because amd64 will likely begin
using an alternative method to track write mappings, and having
pmap_page_is_write_mapped() in place allows me to make such a change
without further modification to the MI VM layer.

As an added bonus, tidy up some nearby comments concerning page flags.

Reviewed by: kib
MFC after: 6 weeks


237069 14-Jun-2012 imp

Defines for parsing linux ATAGs lists.


237045 14-Jun-2012 imp

More Linux boot support. Create arm_dump_avail_init() to initialize
this array either from Linux boot data, when enabled, or in the
typical way that most ports do it. arm_pyhs_avail_init is coming
soon since it must be a separate function.


237044 14-Jun-2012 imp

Add support for parsing Linux ATAGs such as you'd see from uboot or
redboot. Support is very preiminary and likely needs some work. Also,
do some minor code shuffling of the FreeBSD /boot/loader metadata
parsing code. This code is preliminary and should be used with
caution.


237042 14-Jun-2012 imp

Create default_parse_boot_param which, if FreeBSD /boot/loader support
is enabled, sets values based on the metadata passed in. Otherwise
fake_preload_metadata is called. Change the default parse_boot_param
to default_parse_boot_param. Enable this functionality only on the mv
platform, which is where most of the code is from.

Reviewed by: cognet, Ian Lapore


237040 14-Jun-2012 imp

Modify all the arm platform files to call parse_boot_param passing in
the boot parameters from initarm first thing. parse_boot_param parses
the boot arguments and converts them to the /boot/loader metadata the
rest of the kernel uses. parse_boot_param is a weak alias to
fake_preload_metadata, which all the platforms use now, but may become
more extensive in the future.

Since it is a weak symbol, specific boards may define their own
parse_boot_param to interface to custom boot loaders.

Reviewed by: cognet@, Ian Lapore


236997 13-Jun-2012 fabient

Add ARM callchain support for hwpmc.

Sponsored by: NETASQ
MFC after: 3 days


236992 13-Jun-2012 imp

trim trailing whitespace


236828 10-Jun-2012 andrew

Pull out the common code to initialise proc0 & thread0 from initarm to a
common function.

Reviewed by: imp


236524 03-Jun-2012 imp

Minor rearrangement of the locore <-> initarm interface. Pass in a
structure with the first 4 registers to allow a wider range of boot
loaders to work. Future commits will make use of this to centralize
support for the different loaders.


236307 30-May-2012 gber

Flush D and I caches after setting a breakpoint.

Reviewed by: imp
Obtained from: Semihalf


235941 24-May-2012 bz

MFp4 bz_ipv6_fast:

in_cksum.h required ip.h to be included for struct ip. To be
able to use some general checksum functions like in_addword()
in a non-IPv4 context, limit the (also exported to user space)
IPv4 specific functions to the times, when the ip.h header is
present and IPVERSION is defined (to 4).

We should consider more general checksum (updating) functions
to also allow easier incremental checksum updates in the L3/4
stack and firewalls, as well as ponder further requirements by
certain NIC drivers needing slightly different pseudo values
in offloading cases. Thinking in terms of a better "library".

Sponsored by: The FreeBSD Foundation
Sponsored by: iXsystems

Reviewed by: gnn (as part of the whole)
MFC After: 3 days


235831 23-May-2012 fabient

Soft PMC support for ARM.
Callgraph is not captured, only current location.

Sample system wide profiling: "pmcstat -Sclock.hard -T"


235609 18-May-2012 gber

Add architecture dependent code to support NAND Framework on Marvell SoCs.

Obtained from: Semihalf
Supported by: FreeBSD Foundation, Juniper Networks


235072 06-May-2012 imp

Fix the MACHINE_ARCH for big endian arm to be armeb.


234785 29-Apr-2012 dim

Add a convenience macro for the returns_twice attribute, and apply it to
the prototypes of the appropriate functions (getcontext, savectx,
setjmp, sigsetjmp and vfork).

MFC after: 2 weeks


234337 16-Apr-2012 andrew

Replace the C implementation of __aeabi_read_tp with an assembly version.
This ensures we follow the ABI by preserving registers r1-r3.

Reviewed by: jmallett, imp


234006 07-Apr-2012 stas

- Revert part of r234005, which I did not intend to commit.
Sorry! :(


234005 07-Apr-2012 stas

- Add kernel config file for QEMU-emulated gumstix board.


233628 28-Mar-2012 fabient

Add software PMC support.

New kernel events can be added at various location for sampling or counting.
This will for example allow easy system profiling whatever the processor is
with known tools like pmcstat(8).

Simultaneous usage of software PMC and hardware PMC is possible, for example
looking at the lock acquire failure, page fault while sampling on
instructions.

Sponsored by: NETASQ
MFC after: 1 month


230475 23-Jan-2012 das

Add C11 macros describing subnormal numbers to float.h.

Reviewed by: bde


230366 20-Jan-2012 das

Add parentheses where required. Without them, `sizeof LDBL_MAX'
is a syntax error and shouldn't be, while `1 FLT_ROUNDS' isn't a
syntax error and should be. Thanks to bde for the examples.


230229 16-Jan-2012 das

Fix the value of float_t to match what is implied by FLT_EVAL_METHOD.


230198 16-Jan-2012 das

Fix the definition of FLT_EVAL_METHOD and some minor bugs.


230191 16-Jan-2012 das

Implement FLT_ROUNDS for arm. Some (all?) arm FPUs lack support for
dynamic rounding modes, but FPUless chips that use softfloat can support it
because everything is emulated anyway. (We presently have incomplete
support for hardware FPUs.)

Submitted by: Ian Lepore


228530 15-Dec-2011 raj

ARM pmap fixes:

- Write Buffers have to be drained after write to Page Table even if caches
are in write-through mode.

- Make sure to sync PTE in pmap_zero_page_generic().

Submitted by: Michal Mazur
Reviewed by: cognet
Obtained from: Semihalf
MFC after: 1 month


228469 13-Dec-2011 ed

Replace __signed by signed.

The signed keyword is an integral part of the C syntax. There's no need
to use __signed.


226607 21-Oct-2011 das

People porting FreeBSD to new architectures ought not have to
implement a deprecated FPU control interface in addition to the
standard one. To make this clearer, further deprecate ieeefp.h
by not declaring the function prototypes except on architectures
that implement them already.

Currently i386 and amd64 implement the ieeefp.h interface for
compatibility, and for fp[gs]etprec(), which doesn't exist on
most other hardware. Powerpc, sparc64, and ia64 partially implement
it and probably shouldn't, and other architectures don't implement it
at all.


226443 16-Oct-2011 cognet

Fix 2 bugs :

- A race condition could happen if two threads were using RAS at the same time
as the code didn't reset RAS_END, the RAS code could believe we were not in
a RAS, when we were in fact.
- Using signed value logic to compare addresses wasn't such a good idea.

Many thanks to Ian to investigate on these issues.

Pointy hat to: cognet
PR: arm/161498
Submitted by: Ian Lepore <freebsd At damnhippie DOT dyndns dot org
MFC after: 1 week


226112 07-Oct-2011 kib

Remove unused define.

MFC after: 1 month


225995 04-Oct-2011 marcel

Properly guard definitions of DFLDSIZ, MAXDSIZ, DFLSSIZ, MAXSSIZ and
SGROWSIZ. They can be set in the kernel configuration file.


225973 04-Oct-2011 kib

Convert ARM to the syscallenter/syscallret system call sequence handlers.

Tested by: gber
MFC after: 1 month


224207 19-Jul-2011 attilio

Add the possibility to specify from kernel configs MAXCPU value.
This patch is going to help in cases like mips flavours where you
want a more granular support on MAXCPU.

No MFC is previewed for this patch.

Tested by: pluknet
Approved by: re (kib)


222813 07-Jun-2011 attilio

etire the cpumask_t type and replace it with cpuset_t usage.

This is intended to fix the bug where cpu mask objects are
capped to 32. MAXCPU, then, can now arbitrarely bumped to whatever
value. Anyway, as long as several structures in the kernel are
statically allocated and sized as MAXCPU, it is suggested to keep it
as low as possible for the time being.

Technical notes on this commit itself:
- More functions to handle with cpuset_t objects are introduced.
The most notable are cpusetobj_ffs() (which calculates a ffs(3)
for a cpuset_t object), cpusetobj_strprint() (which prepares a string
representing a cpuset_t object) and cpusetobj_strscan() (which
creates a valid cpuset_t starting from a string representation).
- pc_cpumask and pc_other_cpus are target to be removed soon.
With the moving from cpumask_t to cpuset_t they are now inefficient
and not really useful. Anyway, for the time being, please note that
access to pcpu datas is protected by sched_pin() in order to avoid
migrating the CPU while reading more than one (possible) word
- Please note that size of cpuset_t objects may differ between kernel
and userland. While this is not directly related to the patch itself,
it is good to understand that concept and possibly use the patch
as a reference on how to deal with cpuset_t objects in userland, when
accessing kernland members.
- KTR_CPUMASK is changed and now is represented through a string, to be
set as the example reported in NOTES.

Please additively note that no MAXCPU is bumped in this patch, but
private testing has been done until to MAXCPU=128 on a real 8x8x2(htt)
machine (amd64).

Please note that the FreeBSD version is not yet bumped because of
the upcoming pcpu changes. However, note that this patch is not
targeted for MFC.

People to thank for the time spent on this patch:
- sbruno, pluknet and Nicholas Esborn (nick AT desert DOT net) tested
several revision of the patches and really helped in improving
stability of this work.
- marius fixed several bugs in the sparc64 implementation and reviewed
patches related to ktr.
- jeff and jhb discussed the basic approach followed.
- kib and marcel made targeted review on some specific part of the
patch.
- marius, art, nwhitehorn and andreast reviewed MD specific part of
the patch.
- marius, andreast, gonzo, nwhitehorn and jceel tested MD specific
implementations of the patch.
- Other people have made contributions on other patches that have been
already committed and have been listed separately.

Companies that should be mentioned for having participated at several
degrees:
- Yahoo! for having offered the machines used for testing on big
count of CPUs.
- The FreeBSD Foundation for having sponsored my devsummit attendance,
which has been instrumental.
- Sandvine for having offered offices and infrastructure during
development.

(I really hope I didn't forget anyone, if it happened I apologize in
advance).


221855 13-May-2011 mdf

Move the ZERO_REGION_SIZE to a machine-dependent file, as on many
architectures (i386, for example) the virtual memory space may be
constrained enough that 2MB is a large chunk. Use 64K for arches
other than amd64 and ia64, with special handling for sparc64 due to
differing hardware.

Also commit the comment changes to kmem_init_zero_region() that I
missed due to not saving the file. (Darn the unfamiliar development
environment).

Arch maintainers, please feel free to adjust ZERO_REGION_SIZE as you
see fit.

Requested by: alc
MFC after: 1 week
MFC with: r221853


219653 14-Mar-2011 jkim

Make get_cyclecount(9) little bit more useful where binuptime(9) is used.


218773 17-Feb-2011 alc

Remove pmap fields that are either unused or not fully implemented.

Discussed with: kib


218482 09-Feb-2011 jhb

Whitespace tweak.


218311 05-Feb-2011 imp

phys_addr is a PA not a VA so declare it as a vm_paddr_t not a vm_offset_t.


218310 05-Feb-2011 imp

Make md_tp a register_t not a void *. This will keep us from
accidentally dereferencng it and might be one fewer things to change
if arm64 happens...

Submitted by: rwatson's question on irc...


218073 29-Jan-2011 marcel

Introduce macro FDT_MAP_IRQ to map from an interrupt controller and
interrupt pin pair to a global IRQ number. When multiple PICs exist
on a board, the interrupt pin alone is not unique.


217515 17-Jan-2011 jkim

Add reader/writer lock around mem_range_attr_get() and mem_range_attr_set().
Compile sys/dev/mem/memutil.c for all supported platforms and remove now
unnecessary dev_mem_md_init(). Consistently define mem_range_softc from
mem.c for all platforms. Add missing #include guards for machine/memdev.h
and sys/memrange.h. Clean up some nearby style(9) nits.

MFC after: 1 month


217290 11-Jan-2011 marcel

Don't re-use MODINFOMD_BOOTINFO as MODINFOMD_DTBP. It breaks
compatibility without any means for the kernel to work with
an older loader.


217192 09-Jan-2011 kib

Move repeated MAXSLP definition from machine/vmparam.h to sys/vmmeter.h.
Update the outdated comments describing MAXSLP and the process
selection algorithm for swap out.

Comments wording and reviewed by: alc


217147 08-Jan-2011 tijl

On mixed 32/64 bit architectures (mips, powerpc) use __LP64__ rather than
architecture macros (__mips_n64, __powerpc64__) when 64 bit types (and
corresponding macros) are different from 32 bit. [1]

Correct the type of INT64_MIN, INT64_MAX and UINT64_MAX.

Define (U)INTMAX_C as an alias for (U)INT64_C matching the type definition
for (u)intmax_t. Do this on all architectures for consistency.

Suggested by: bde [1]
Approved by: kib (mentor)


217146 08-Jan-2011 tijl

On 32 bit architectures define (u)int64_t as (unsigned) long long instead
of (unsigned) int __attribute__((__mode__(__DI__))). This aligns better
with macros such as (U)INT64_C, (U)INT64_MAX, etc. which assume (u)int64_t
has type (unsigned) long long.

The mode attribute was used because long long wasn't standardised until
C99. Nowadays compilers should support long long and use of the mode
attribute is discouraged according to GCC Internals documentation.

The type definition has to be marked with __extension__ to support
compilation with "-std=c89 -pedantic".

Discussed with: bde
Approved by: kib (mentor)


217145 08-Jan-2011 tijl

Fix types of some values in machine/_limits.h.

On some architectures UCHAR_MAX and USHRT_MAX had type unsigned int.
However, lacking integer suffixes for types smaller than int, their type
should correspond to that of an object of type unsigned char (or short)
when used in an expression with objects of type int. In that case unsigned
char (short) are promoted to int (i.e. signed) so the type of UCHAR_MAX and
USHRT_MAX should also be int.

Where MIN/MAX constants implicitly have the correct type the suffix has
been removed.

While here, correct some comments.

Reviewed by: bde
Approved by: kib (mentor)


217128 07-Jan-2011 tijl

Remove unused support for 64 bit long on 32 bit architectures.

It was used mainly to discover and fix some 64-bit portability problems
before 64-bit arches were widely available.

Discussed with: bde
Approved by: kib (mentor)


217097 07-Jan-2011 kib

Add AT_STACKPROT elf aux vector. Will be used to inform rtld about the
initial stack protection set by the kernel image activator.


217032 05-Jan-2011 imp

Remove ancient simulation code. Skyeye simulation never really worked
quite right and hasn't been used in ages and is likely broken. QEMU
with GUMSTIX is a more promising road to FreeBSD/arm in emulation
anyway.

Reviewed by: cognet@


216143 03-Dec-2010 brucec

Revert r216134. This checkin broke platforms where bus_space are macros:
they need to be a single statement, and do { } while (0) doesn't work in this
situation so revert until a solution can be devised.


216134 02-Dec-2010 brucec

Disallow passing in a count of zero bytes to the bus_space(9) functions.

Passing a count of zero on i386 and amd64 for [I386|AMD64]_BUS_SPACE_MEM
causes a crash/hang since the 'loop' instruction decrements the counter
before checking if it's zero.

PR: kern/80980
Discussed with: jhb


215054 09-Nov-2010 jhb

- Remove <machine/mutex.h>. Most of the headers were empty, and the
contents of the ones that were not empty were stale and unused.
- Now that <machine/mutex.h> no longer exists, there is no need to allow it
to override various helper macros in <sys/mutex.h>.
- Rename various helper macros for low-level operations on mutexes to live
in the _mtx_* or __mtx_* namespaces. While here, change the names to more
closely match the real API functions they are backing.
- Drop support for including <sys/mutex.h> in assembly source files.

Suggested by: bde (1, 2)


215031 09-Nov-2010 kevlo

Minor cosmetic changes


214972 08-Nov-2010 kevlo

Intel IXP425 SoC is based on the ARMv5TE architecture

MFC after: 3 days


212825 18-Sep-2010 mav

Add basic cpu_sleep() support for Marvell SoCs. This drops my SheevaPlug's
heatsink termperature in open air from 49C to 43C when idle.


211412 17-Aug-2010 kib

Supply some useful information to the started image using ELF aux vectors.
In particular, provide pagesize and pagesizes array, the canary value
for SSP use, number of host CPUs and osreldate.

Tested by: marius (sparc64)
MFC after: 1 month


211197 11-Aug-2010 jhb

Update various places that store or manipulate CPU masks to use cpumask_t
instead of int or u_int. Since cpumask_t is currently u_int on all
platforms this should just be a cosmetic change.


210550 27-Jul-2010 jhb

Very rough first cut at NUMA support for the physical page allocator. For
now it uses a very dumb first-touch allocation policy. This will change in
the future.
- Each architecture indicates the maximum number of supported memory domains
via a new VM_NDOMAIN parameter in <machine/vmparam.h>.
- Each cpu now has a PCPU_GET(domain) member to indicate the memory domain
a CPU belongs to. Domain values are dense and numbered from 0.
- When a platform supports multiple domains, the default freelist
(VM_FREELIST_DEFAULT) is split up into N freelists, one for each domain.
The MD code is required to populate an array of mem_affinity structures.
Each entry in the array defines a range of memory (start and end) and a
domain for the range. Multiple entries may be present for a single
domain. The list is terminated by an entry where all fields are zero.
This array of structures is used to split up phys_avail[] regions that
fall in VM_FREELIST_DEFAULT into per-domain freelists.
- Each memory domain has a separate lookup-array of freelists that is
used when fulfulling a physical memory allocation. Right now the
per-domain freelists are listed in a round-robin order for each domain.
In the future a table such as the ACPI SLIT table may be used to order
the per-domain lookup lists based on the penalty for each memory domain
relative to a specific domain. The lookup lists may be examined via a
new vm.phys.lookup_lists sysctl.
- The first-touch policy is implemented by using PCPU_GET(domain) to
pick a lookup list when allocating memory.

Reviewed by: alc


210247 19-Jul-2010 raj

Eliminate FDT_IMMR_VA define.

This removes platform dependencies from <machine>/fdt.h for the benfit of
portability.


209909 11-Jul-2010 raj

Get rid of bootinfo for good in loader (U-Boot-based) and ARM.

For FDT-enabled platforms the device tree is a modern replacement for bootinfo
config data.


209161 14-Jun-2010 raj

Temporarily bring back the ARM bootinfo (and make tinderbox happy).

BI will be eliminated for good when powerpc transition to FDT is complete.


209131 13-Jun-2010 raj

Convert Marvell ARM platforms to FDT convention.

The following systems are involved:

- DB-88F5182
- DB-88F5281
- DB-88F6281
- DB-78100
- SheevaPlug

This overhaul covers the following major changes:

- All integrated peripherals drivers for Marvell ARM SoC, which are
currently in the FreeBSD source tree are reworked and adjusted so they
derive config data out of the device tree blob (instead of hard coded /
tabelarized values).

- Since the common FDT infrastrucutre (fdtbus, simplebus) is used we say
good by to obio / mbus drivers and numerous hard-coded config data.

Note that world needs to be built WITH_FDT for the affected platforms.

Reviewed by: imp
Sponsored by: The FreeBSD Foundation.


209130 13-Jun-2010 raj

Initial FDT infrastructure elements for ARM.

Reviewed by: imp
Sponsored by: The FreeBSD Foundation


208538 25-May-2010 raj

Initial loader(8) support for Flattened Device Tree.

o This is disabled by default for now, and can be enabled using WITH_FDT at
build time.

o Tested with ARM and PowerPC.

Reviewed by: imp
Sponsored by: The FreeBSD Foundation


208052 14-May-2010 cognet

Catchup with new prototype for db_printf().


207954 12-May-2010 kevlo

The FA526 belongs to the ARM9TDMI family


207611 04-May-2010 kevlo

Add support for FA626TE.
Tested on GM8181 development board.


207410 30-Apr-2010 kmacy

On Alan's advice, rather than do a wholesale conversion on a single
architecture from page queue lock to a hashed array of page locks
(based on a patch by Jeff Roberson), I've implemented page lock
support in the MI code and have only moved vm_page's hold_count
out from under page queue mutex to page lock. This changes
pmap_extract_and_hold on all pmaps.

Supported by: Bitgravity Inc.

Discussed with: alc, jeffr, and kib


207269 27-Apr-2010 kib

Style: use #define<TAB> instead of #define<SPACE>.

Noted by: bde, pluknet gmail com
MFC after: 11 days


207152 24-Apr-2010 kib

Move the constants specifying the size of struct kinfo_proc into
machine-specific header files. Add KINFO_PROC32_SIZE for struct
kinfo_proc32 for architectures providing COMPAT_FREEBSD32. Add
CTASSERT for the size of struct kinfo_proc32.

Submitted by: pluknet
Reviewed by: imp, jhb, nwhitehorn
MFC after: 2 weeks


206404 08-Apr-2010 imp

Add BUS_SPACE_UNRESTRICTED and define it to be ~0, just like all the
other platforms.


204122 20-Feb-2010 kevlo

Show the cpu info for fa526

Submitted by: Yohanes Nugroho <yohanes at gmail dot com>


204121 20-Feb-2010 kevlo

Correct both FA526/FA626TE cpu ids since the cpu id is always
masked with 0xfffffff0


203974 16-Feb-2010 imp

The NetBSD Foundation has granted permission to remove clauses 3 and 4.

Obtained from: NetBSD


203852 14-Feb-2010 kevlo

Correct cpu id for FA526.
While I'm here, add cpu id for FA626TE.


201468 04-Jan-2010 rpaulo

Add support for Cavium Econa CNS11XX ARM boards. These boards were
previously know by StarSemi STR9104.

Tested by the submitter on an Emprex NSD-100 board.

Submitted by: Yohanes Nugroho <yohanes at gmail.com>
Reviewed by: freebsd-arm, stas
Obtained from: //depot/projects/str91xx/...


200928 23-Dec-2009 rpaulo

Intel XScale hwpmc(4) support.

This brings hwpmc(4) support for 2nd and 3rd generation XScale cores.
Right now it's enabled by default to make sure we test this a bit.
When the time comes it can be disabled by default.
Tested on Gateworks boards.

A man page is coming.

Obtained from: //depot/user/rpaulo/xscalepmc/...


197933 10-Oct-2009 kib

Define architectural load bases for PIE binaries. Addresses were selected
by looking at the bases used for non-relocatable executables by gnu ld(1),
and adjusting it slightly.

Discussed with: bz
Reviewed by: kan
Tested by: bz (i386, amd64), bsam (linux)
MFC after: some time


197523 26-Sep-2009 rpaulo

Promote the cpu_class local variable to global and expose it in md_var.h

Reviewed by: freebsd-arm


197316 18-Sep-2009 alc

Add a new sysctl for reporting all of the supported page sizes.

Reviewed by: jhb
MFC after: 3 weeks


196994 08-Sep-2009 phk

Get rid of the _NO_NAMESPACE_POLLUTION kludge by creating an
architecture specific include file containing the _ALIGN*
stuff which <sys/socket.h> needs.


195649 12-Jul-2009 alc

Add support to the virtual memory system for configuring machine-
dependent memory attributes:

Rename vm_cache_mode_t to vm_memattr_t. The new name reflects the
fact that there are machine-dependent memory attributes that have
nothing to do with controlling the cache's behavior.

Introduce vm_object_set_memattr() for setting the default memory
attributes that will be given to an object's pages.

Introduce and use pmap_page_{get,set}_memattr() for getting and
setting a page's machine-dependent memory attributes. Add full
support for these functions on amd64 and i386 and stubs for them on
the other architectures. The function pmap_page_set_memattr() is also
responsible for any other machine-dependent aspects of changing a
page's memory attributes, such as flushing the cache or updating the
direct map. The uses include kmem_alloc_contig(), vm_page_alloc(),
and the device pager:

kmem_alloc_contig() can now be used to allocate kernel memory with
non-default memory attributes on amd64 and i386.

vm_page_alloc() and the device pager will set the memory attributes
for the real or fictitious page according to the object's default
memory attributes.

Update the various pmap functions on amd64 and i386 that map pages to
incorporate each page's memory attributes in the mapping.

Notes: (1) Inherent to this design are safety features that prevent
the specification of inconsistent memory attributes by different
mappings on amd64 and i386. In addition, the device pager provides a
warning when a device driver creates a fictitious page with memory
attributes that are inconsistent with the real page that the
fictitious page is an alias for. (2) Storing the machine-dependent
memory attributes for amd64 and i386 as a dedicated "int" in "struct
md_page" represents a compromise between space efficiency and the ease
of MFCing these changes to RELENG_7.

In collaboration with: jhb

Approved by: re (kib)


195376 05-Jul-2009 sam

Cleanup ALIGNED_POINTER:
o add to platforms where it was missing (arm, i386, powerpc, sparc64, sun4v)
o define as "1" on amd64 and i386 where there is no restriction
o make the type returned consistent with ALIGN
o remove _ALIGNED_POINTER
o make associated comments consistent

Reviewed by: bde, imp, marcel
Approved by: re (kensmith)


195060 26-Jun-2009 alc

Correct the #endif comment.

Noticed by: jmallett
Approved by: re (kib)


195033 26-Jun-2009 alc

This change is the next step in implementing the cache control functionality
required by video card drivers. Specifically, this change introduces
vm_cache_mode_t with an appropriate VM_CACHE_DEFAULT definition on all
architectures. In addition, this changes adds a vm_cache_mode_t parameter
to kmem_alloc_contig() and vm_phys_alloc_contig(). These will be the
interfaces for allocating mapped kernel memory and physical memory,
respectively, with non-default cache modes.

In collaboration with: jhb


194459 18-Jun-2009 thompsa

Track the kernel mapping of a physical page by a new entry in vm_page
structure. When the page is shared, the kernel mapping becomes a special
type of managed page to force the cache off the page mappings. This is
needed to avoid stale entries on all ARM VIVT caches, and VIPT caches
with cache color issue.

Submitted by: Mark Tinguely
Reviewed by: alc
Tested by: Grzegorz Bernacki, thompsa


193847 09-Jun-2009 marcel

Pass the previously returned IRQ back to arm_get_next_irq() so that
the implementation can guarantee forward progress in the event of
a stuck interrupt or interrupt storm. This is especially critical
for fast interrupt handlers, as they can cause a hard hang in that
case. When first called, arm_get_next_irq() is passed -1.

Obtained from: Juniper Networks, Inc.


191873 07-May-2009 alc

Define the kernel pmap in the same way on arm as on every other
architecture.

Eliminate an unused definition.

Tested by: cognet


191309 20-Apr-2009 rwatson

Don't conditionally define CACHE_LINE_SHIFT, as we anticipate sizing
a fair number of static data structures, making this an unlikely
option to try to change without also changing source code. [1]

Change default cache line size on ia64, sparc64, and sun4v to 128
bytes, as this was what rtld-elf was already using on those
platforms. [2]

Suggested by: bde [1], jhb [2]
MFC after: 2 weeks


191278 19-Apr-2009 rwatson

Add description and cautionary note regarding CACHE_LINE_SIZE.

MFC after: 2 weeks
Suggested by: alc


191276 19-Apr-2009 rwatson

For each architecture, define CACHE_LINE_SHIFT and a derived
CACHE_LINE_SIZE constant. These constants are intended to
over-estimate the cache line size, and be used at compile-time
when a run-time tuning alternative isn't appropriate or
available.

Defaults for all architectures are 64 bytes, except powerpc
where it is 128 bytes (used on G5 systems).

MFC after: 2 weeks
Discussed on: arch@


190705 04-Apr-2009 alc

Retire VM_PROT_READ_IS_EXEC. It was intended to be a micro-optimization,
but I see no benefit from it today.

VM_PROT_READ_IS_EXEC was only intended for use on processors that do not
distinguish between read and execute permission. On an mmap(2) or
mprotect(2), it automatically added execute permission if the caller
specified permissions included read permission. The hope was that this
would reduce the number of vm map entries needed to implement an address
space because there would be fewer neighboring vm map entries that differed
only in the presence or absence of VM_PROT_EXECUTE. (See vm/vm_mmap.c
revision 1.56.)

Today, I don't see any real applications that benefit from
VM_PROT_READ_IS_EXEC. In any case, vm map entries are now organized
as a self-adjusting binary search tree instead of an ordered list. So,
the need for coalescing vm map entries is not as great as it once was.


190603 31-Mar-2009 cognet

Fix the userland, RAS, version of atomic_fetchadd_32 :
return the correct value, and do not store the wrong one in the supplied
pointer.

Submitted by: Mark Tinguely <tinguely casselton net>


189926 17-Mar-2009 kib

Add AT_EXECPATH ELF auxinfo entry type. The value's a_ptr is a pointer
to the full path of the image that is being executed.
Increase AT_COUNT.

Remove no longer true comment about types used in Linux ELF binaries,
listed types contain FreeBSD-specific entries.

Reviewed by: kan


188540 12-Feb-2009 cognet

To prevent various race conditions in the RAS code, store and restore the
values in ARM_RAS_START and ARM_RAS_END at context switch time.

MFC after: 1 week


188085 03-Feb-2009 sam

force atomic_cmpset_ptr types to match atomic_cmpset_32;
this matches what powerpc does

Submitted by: stass
MFC after: 2 weeks


187592 22-Jan-2009 cognet

Add a comment explaining what ARM_KERN_DIRECTMAP is all about.

Suggested by: raj


186933 09-Jan-2009 raj

Fix confusing naming of Marvell ARM CPU specific routines.

- The contents of 'feroceon_cpufuncs' dispatch table was really dedicated for the
new Sheeva CPU (in 88F6xxx and MV-78xxx SOCs), and NOT Feroceon.

- Feroceon CPU (in 88F5xxx SOCs) appears as a regular ARM926EJ-S core and does
not require dedicated routines.

This will be accompanied by a file rename commit.


186461 23-Dec-2008 marcel

Add support for the FPA floating-point format on ARM. The
FPA floating-point format is identical to the VFP format,
but is always stored in big-endian.
Introduce _IEEE_WORD_ORDER to describe the byte-order of
the FP representation.

Obtained from: Juniper Networks, Inc


186417 23-Dec-2008 sam

add IXP465 and generic IXP425 definition


186352 20-Dec-2008 sam

Merge support for Gateworks Cambria boards:
o add support for IXP435 cpu's (e.g. 64 irq's)
o add support for Cambria-specific devices: npe, led's (front panel and
octal latch), ehci, mcu, ide cf
o redo memory mapping for xscale/ixp4xx boards: previously memory
was assumed aliased to 0x10000000 but this appears to be true only
for ixp425 systems and breaks operation on others; rework so memory
is assumed to start at 0
o rework NPE configuration support to use NPE id's instead of port #'s;
these changes also rename the associated MAC's to follow the NPE's
they are attached to
o update npe firmware to latest rev (same license) and update default fw
imageid's to match; in particular this adds NPE-A and crypto support
o re-style NPE fw handling code and add a console msg identifying the
attributes of the loaded fw
o fix numerous problems with handling failures during npe setup
o fix npe rx q setup; need to spin waiting for mailbox responses during
early boot stages as qmgr interrupts are not delivered; this fixes
the problem where all 8 traffic classifications were not tied to the
rx q (and eliminates the console msg "remember to fix rx q setup")
o add DELAY to npe MII wait logic for IXP435
o strip down builtin phys->virt address translation table in resource
handling to just those resources that require it and add a console msg
to alert people when this (kludge) table needs to be extended
o purge a bunch of dead netbsd-ism's
o cleanup avila led driver
o add Cambria support to boot2 and rework code for better multi-board support

Notes:
1. NPE-A doesn't work and causes NPE-C to stop working; it is disabled
in the hints
2. USB isn't working yet; controller communicates ok but device
discovery fails
3. Cambria support must be configured separately from IXP425 boards;
multi-board support is TBD

Sponsored by: Hobnob, Gateworks (board donation)
Reviewed by: imp


186212 17-Dec-2008 imp

AT_DEBUG and AT_BRK were OBE like 10 years ago, so retire them.

Reviewed by: peter


185162 22-Nov-2008 kmacy

- bump __FreeBSD version to reflect added buf_ring, memory barriers,
and ifnet functions

- add memory barriers to <machine/atomic.h>
- update drivers to only conditionally define their own

- add lockless producer / consumer ring buffer
- remove ring buffer implementation from cxgb and update its callers

- add if_transmit(struct ifnet *ifp, struct mbuf *m) to ifnet to
allow drivers to efficiently manage multiple hardware queues
(i.e. not serialize all packets through one ifq)
- expose if_qflush to allow drivers to flush any driver managed queues

This work was supported by Bitgravity Inc. and Chelsio Inc.


184728 06-Nov-2008 raj

Support kernel crash mini dumps on ARM architecture.

Obtained from: Juniper Networks, Semihalf


183878 14-Oct-2008 raj

Initial support of loader(8) for ARM machines running U-Boot.

This uses the common U-Boot support lib (sys/boot/uboot, already used on
FreeBSD/powerpc), and assumes the underlying firmware has the modern API for
stand-alone apps enabled in the config (CONFIG_API).

Only netbooting is supported at the moment.

Obtained from: Marvell, Semihalf


183840 13-Oct-2008 raj

Introduce basic support for Marvell families of system-on-chip ARM devices:

* Orion
- 88F5181
- 88F5182
- 88F5281

* Kirkwood
- 88F6281

* Discovery
- MV78100

The above families of SOCs are built around CPU cores compliant with ARMv5TE
instruction set architecture definition. They share a number of integrated
peripherals. This commit brings support for the following basic elements:

* GPIO
* Interrupt controller
* L1, L2 cache
* Timers, watchdog, RTC
* TWSI (I2C)
* UART

Other peripherals drivers will be introduced separately.

Reviewed by: imp, marcel, stass (Thanks guys!)
Obtained from: Marvell, Semihalf


183835 13-Oct-2008 raj

Introduce low-level support for new Marvell core CPUs: 88FR131, 88FR571.

They are compliant with ARMv5TE and integrated on 88F6281 (Kirkwood) and
MV78100 (Discovery) system-on-chip families.

Obtained from: Marvell, Semihalf


182945 11-Sep-2008 cognet

Remove the unused field "pc_prvspace" from the MD fields for the struct
pcpu. There's not even a thing such as a "struct pcup".
While I'm there, remove a comment that makes no sense for arm.

Spotted out by: Mark Tinguely


182933 11-Sep-2008 raj

ARM interrupts improvements.

- Fix nexus_setup_intr() abuse of setting up multiple IRQs in one go. Calling
arm_setup_irqhandler() in loop is bogus, as there's just one cookie given
from the caller and it is overwritten in each iteration so that only the
last handler's cookie value prevails.

- Proper intr masking/unmasking handling: the IRQ source is masked at PIC level
only after the last handler has been removed from the list.

Reviewed by: cognet, imp, sam, stass
Obtained from: Grzegorz Bernacki gjb ! semihalf dot com


182086 23-Aug-2008 imp

Whitespace nit.


181875 19-Aug-2008 jhb

Export 'struct pcpu' to userland w/o requiring _KERNEL. A few ports
already define _KERNEL to get to this and I'm about to add hooks to
libkvm to access per-CPU data.

MFC after: 1 week


181253 03-Aug-2008 cognet

Add "add pc, whatever" as a branch instruction, we use it in memcpy().

MFC after: 3 days


181222 03-Aug-2008 cognet

Add blx as a branch instruction.

MFC after: 3 days


181174 02-Aug-2008 cognet

Add yet another branch instruction.

Obtained from: NetBSD
MFC after: 3 days


179990 25-Jun-2008 ed

Remove the unused major/minor numbers from iodev and memdev.

Now that st_rdev is being automatically generated by the kernel, there
is no need to define static major/minor numbers for the iodev and
memdev. We still need the minor numbers for the memdev, however, to
distinguish between /dev/mem and /dev/kmem.

Approved by: philip (mentor)


179595 06-Jun-2008 benno

Support for the XScale PXA255 SoC as found on the Gumstix Basix and Connex
boards. This is enough to net-boot to multiuser.

Also supported is the SMSC LAN91C111 parts used on the netCF, netDUO and netMMC
add-on boards.

I'll be putting some instructions on how to boot this on the Gumstix boards
online soon.

This is still fairly rough and will be refined over time but I felt it was
better to get this out there where other people can help out.


178366 20-Apr-2008 cognet

On the AT91, we need to write on the EOI register after we handle an
interrupt. So, add a new function pointer, arm_post_filter, which defaults
to NULL, and which will be used as the post_filter arg for
intr_event_create(). Set it properly for the AT91, so that it boots again.

Reported by: hps


177883 03-Apr-2008 imp

Take the first baby step towards unifying and cleaning up arminit():
- Pull all the code to deal with the trampoline stuff into one
centeralized place and use it from everywhere.
- Some minor style tidiness

Reviewed by: tinguely


177661 27-Mar-2008 jb

When building a kernel module, define MAXCPU the same as SMP so
that modules work with and without SMP.


176885 06-Mar-2008 cognet

Remove unused pv_list_count from the vm_page, and pm_count from the struct
pmap.

Submitted by: Mark Tinguely


176589 26-Feb-2008 rwatson

Remove errant % in license comment.

MFC after: 3 days


175982 05-Feb-2008 raj

Improve ARM_TP_ADDRESS and RAS area.

De-hardcode usage of ARM_TP_ADDRESS and RAS local storage, and move this
special purpose page to a more convenient place i.e. after the vectors high
page, more towards the end of address space. Previous location (0xe000_0000)
caused grief if KVA was to go beyond the default limit.

Note that ARM world rebuilding is required after this change since the
location of ARM_TP_ADDRESS is shared between kernel and userland.

Submitted by: Grzegorz Bernacki (gjb AT semihalf dot com)
Reviewed by: imp
Approved by: cognet (mentor)


175840 31-Jan-2008 cognet

Bring in the nice work from Mark Tinguely on arm pmap.
The only downside is that it renames pmap_vac_me_harder() to pmap_fix_cache().
From Mark's email on -arm :
pmap_get_vac_flags(), pmap_vac_me_harder(), pmap_vac_me_kpmap(), and
pmap_vac_me_user() has been rewritten as pmap_fix_cache() to be more
efficient in the kernel map case. I also removed the reference to
the md.kro_mappings, md.krw_mappings, md.uro_mappings, and md.urw_mappings
counts.

In pmap_clearbit(), we can also skip over tests and writeback/invalidations
in the PVF_MOD and PVF_REF cases if those bits are not set in the pv_flag.
PVF_WRITE will turn caching back on and remove the PV_MOD bit.

In pmap_nuke_pv(), the vm_page_flag_clear(pg, PG_WRITEABLE) has been moved
to the pmap_fix_cache().

We can be more agressive in attempting to turn caching back on by calling
pmap_fix_cache() at times that may be appropriate to turn cache on
(a kernel mapping has been removed, a write has been removed or a read
has been removed and we know the mapping does not have multiple write
mappings to a page).

In pmap_remove_pages() the cpu_idcache_wbinv_all() is moved to happen
before the page tables are NULLed because the caches are virtually
indexed and virtually tagged.

In pmap_remove_all(), the pmap_remove_write(m) is added before the
page tables are NULLed because the caches are virtually indexed and
virtually tagged. This also removes the need for the caches fixing routine
(whichever is being used pmap_vac_me_harder() or pmap_fix_cache()) to be
called on any of these mappings.

In pmap_remove(), I simplified the cache cleaning process and removed
extra TLB removals. Basically if more than PMAP_REMOVE_CLEAN_LIST_SIZE
are removed, then just flush the entire cache.


174938 27-Dec-2007 alc

Add configuration knobs for the superpage reservation system. Initially,
the reservation will only be enabled on amd64.


174405 07-Dec-2007 jkoshy

Add stubs to unbreak LINT.


174195 02-Dec-2007 rwatson

Break out stack(9) from ddb(4):

- Introduce per-architecture stack_machdep.c to hold stack_save(9).
- Introduce per-architecture machine/stack.h to capture any common
definitions required between db_trace.c and stack_machdep.c.
- Add new kernel option "options STACK"; we will build in stack(9) if it is
defined, or also if "options DDB" is defined to provide compatibility
with existing users of stack(9).

Add new stack_save_td(9) function, which allows the capture of a stacktrace
of another thread rather than the current thread, which the existing
stack_save(9) was limited to. It requires that the thread be neither
swapped out nor running, which is the responsibility of the consumer to
enforce.

Update stack(9) man page.

Build tested: amd64, arm, i386, ia64, powerpc, sparc64, sun4v
Runtime tested: amd64 (rwatson), arm (cognet), i386 (rwatson)


174170 02-Dec-2007 cognet

Close a race.

The RAS implementation would set the end address, then the start
address. These were used by the kernel to restart a RAS sequence if
it was interrupted. When the thread switching code ran, it would
check these values and adjust the PC and clear them if it did.

However, there's a small flaw in this scheme. Thread T1, sets the end
address and gets preempted. Thread T2 runs and also does a RAS
operation. This resets end to zero. Thread T1 now runs again and
sets start and then begins the RAS sequence, but is preempted before
the RAS sequence executes its last instruction. The kernel code that
would ordinarily restart the RAS sequence doesn't because the PC isn't
between start and 0, so the PC isn't set to the start of the sequence.
So when T1 is resumed again, it is at the wrong location for RAS to
produce the correct results. This causes the wrong results for the
atomic sequence.

The window for the first race is 3 instructions. The window for the
second race is 5-10 instructions depending on the atomic operation.
This makes this failure fairly rare and hard to reproduce.

Mutexs are implemented in libthr using atomic operations. When the
above race would occur, a lock could get stuck locked, causing many
downstream problems, as you might expect.

Also, make sure to reset the start and end address when doing a syscall, or
a malicious process could set them before doing a syscall.

Reviewed by: imp, ups (thanks guys)
Pointy hat to: cognet
MFC After: 3 days


173999 27-Nov-2007 cognet

In atomic_fetchadd_32(), do not blindly increase the value of %3.
It should just contain the value we want to add, as if we're interrupted
between the add and the str, we will restart from the beginning. Just use
a register we can scratch instead.

MFC After: 1 week


173249 01-Nov-2007 kevlo

__CPU_XSCALE_PXA2XX -> CPU_XSCALE_PXA2X0


172738 18-Oct-2007 imp

Merge support from p4 (from NetBSD) for arm9e and arm10, arm11 cores. Not
yet connected to the build, but reduces diffs to p4 repo.

Obtained from: NetBSD


172734 18-Oct-2007 imp

Merge definitions for ARM9E, ARM10 and ARM11 processors from p4 (which
got them from NetBSD).


172613 13-Oct-2007 cognet

Define _ARM_ARCH_5E too, so that we know if pld/strd/ldrd are available.

MFC After: 3 days


172317 25-Sep-2007 alc

Change the management of cached pages (PQ_CACHE) in two fundamental
ways:

(1) Cached pages are no longer kept in the object's resident page
splay tree and memq. Instead, they are kept in a separate per-object
splay tree of cached pages. However, access to this new per-object
splay tree is synchronized by the _free_ page queues lock, not to be
confused with the heavily contended page queues lock. Consequently, a
cached page can be reclaimed by vm_page_alloc(9) without acquiring the
object's lock or the page queues lock.

This solves a problem independently reported by tegge@ and Isilon.
Specifically, they observed the page daemon consuming a great deal of
CPU time because of pages bouncing back and forth between the cache
queue (PQ_CACHE) and the inactive queue (PQ_INACTIVE). The source of
this problem turned out to be a deadlock avoidance strategy employed
when selecting a cached page to reclaim in vm_page_select_cache().
However, the root cause was really that reclaiming a cached page
required the acquisition of an object lock while the page queues lock
was already held. Thus, this change addresses the problem at its
root, by eliminating the need to acquire the object's lock.

Moreover, keeping cached pages in the object's primary splay tree and
memq was, in effect, optimizing for the uncommon case. Cached pages
are reclaimed far, far more often than they are reactivated. Instead,
this change makes reclamation cheaper, especially in terms of
synchronization overhead, and reactivation more expensive, because
reactivated pages will have to be reentered into the object's primary
splay tree and memq.

(2) Cached pages are now stored alongside free pages in the physical
memory allocator's buddy queues, increasing the likelihood that large
allocations of contiguous physical memory (i.e., superpages) will
succeed.

Finally, as a result of this change long-standing restrictions on when
and where a cached page can be reclaimed and returned by
vm_page_alloc(9) are eliminated. Specifically, calls to
vm_page_alloc(9) specifying VM_ALLOC_INTERRUPT can now reclaim and
return a formerly cached page. Consequently, a call to malloc(9)
specifying M_NOWAIT is less likely to fail.

Discussed with: many over the course of the summer, including jeff@,
Justin Husted @ Isilon, peter@, tegge@
Tested by: an earlier version by kris@
Approved by: re (kensmith)


172296 22-Sep-2007 cognet

Twist the RAS logic a bit to avoid branching.

MFC After: 1 week
Approved by: re (blanket)


172104 09-Sep-2007 cognet

In __bswap16_var(), make sure the 16 upper bits are cleared; while
optimizing, gcc4 doesn't always do so.

Reported by: Nathan Whitehorn
Approved by: re (blanket)


171630 27-Jul-2007 cognet

XScale core 3 definitions.

Approved by: re (blanket)


171621 27-Jul-2007 cognet

Fix the cache mode description.

Approved by: re (blanket)


171620 27-Jul-2007 cognet

Properly handle supersections.
Make sure we cache entries in the L2 cache.

Approved by: re (blanket)


171618 27-Jul-2007 cognet

Add a new set of functions to handle L2 cache. Make them no-op for every
CPU except Xscale core 3.

Approved by: re (blanket)


170827 16-Jun-2007 cognet

The iop34x has 128 interrupts.


170582 11-Jun-2007 cognet

Introduce pmap_kenter_supersection(), which maps 16MB super-sections into
the kernel pmap.
Document a bit more the behavior of the xscale core 3.


170473 09-Jun-2007 marcel

Add kdb_cpu_sync_icache(), intended to synchronize instruction
caches with data caches after writing to memory. This typically
is required to make breakpoints work on ia64 and powerpc. For
those architectures the function is implemented.


170388 06-Jun-2007 jeff

- PCPU_ADD is no longer spelled with LAZY_ in the middle.

Submitted by: attilio


170291 04-Jun-2007 attilio

Rework the PCPU_* (MD) interface:
- Rename PCPU_LAZY_INC into PCPU_INC
- Add the PCPU_ADD interface which just does an add on the pcpu member
given a specific value.

Note that for most architectures PCPU_INC and PCPU_ADD are not safe.
This is a point that needs some discussions/work in the next days.

Reviewed by: alc, bde
Approved by: jeff (mentor)


170277 04-Jun-2007 alc

Add the machine-specific definitions for configuring the new physical
memory allocator.

Approved by: re


170072 28-May-2007 alc

Eliminate some unused definitions that came from NetBSD.


169768 19-May-2007 cognet

Use __mcount() instead of _mcount() to reduce diffs with NetBSD.


169756 19-May-2007 cognet

Switch the kernel's pmap domain from 15 to 0.
This should be a no-op, and this is needed for xscale core 3 supersections
support, as they are always part of the domain 0


169291 05-May-2007 alc

Define every architecture as either VM_PHYSSEG_DENSE or
VM_PHYSSEG_SPARSE depending on whether the physical address space is
densely or sparsely populated with memory. The effect of this
definition is to determine which of two implementations of
vm_page_array and PHYS_TO_VM_PAGE() is used. The legacy
implementation is obtained by defining VM_PHYSSEG_DENSE, and a new
implementation that trades off time for space is obtained by defining
VM_PHYSSEG_SPARSE. For now, all architectures except for ia64 and
sparc64 define VM_PHYSSEG_DENSE. Defining VM_PHYSSEG_SPARSE on ia64
allows the entirety of my Itanium 2's memory to be used. Previously,
only the first 1 GB could be used. Defining VM_PHYSSEG_SPARSE on
sparc64 allows USIIIi-based systems to boot without crashing.

This change is a combination of Nathan Whitehorn's patch and my own
work in perforce.

Discussed with: kmacy, marius, Nathan Whitehorn
PR: 112194


167752 21-Mar-2007 kevlo

Remove __P


167429 11-Mar-2007 alc

Push down the implementation of PCPU_LAZY_INC() into the machine-dependent
header file. Reimplement PCPU_LAZY_INC() on amd64 and i386 making it
atomic with respect to interrupts.

Reviewed by: bde, jhb


166901 23-Feb-2007 piso

o break newbus api: add a new argument of type driver_filter_t to
bus_setup_intr()

o add an int return code to all fast handlers

o retire INTR_FAST/IH_FAST

For more info: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=465712+0+current/freebsd-current

Reviewed by: many
Approved by: re@


166063 17-Jan-2007 cognet

- Add bounce pages for arm, largely based on the i386 implementation.
- Add a default parent dma tag, similar to what has been done for sparc64.
- Before invalidating the dcache in POSTREAD, save the bits which are in the
same cachelines than our buffers, but not part of it, and restore them after
the invalidation.


165786 05-Jan-2007 ticso

MFp4: Add missing atomic functions
Based on a patch by: des


164777 30-Nov-2006 cognet

Introduce CPU_XSCALE_CORE3, as XScale Core 3 is significally different than
regular Xscale (it has no mini data cache, has armv6-style 16MB
supersections, and can address 36bits).
Define it for i81342.


164424 19-Nov-2006 sam

correct bus space unmap prototype

Reviewed by: cognet, imp
MFC after: 1 month


164250 13-Nov-2006 ru

Fix a comment.


164198 11-Nov-2006 alc

Eliminate unused global variables.


164080 07-Nov-2006 cognet

Identify the xscale 81342.


164059 07-Nov-2006 cognet

Add atomic_cmpset_acq_32.


163016 04-Oct-2006 jb

PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
MFC after:
Security:
Move the relocation definitions to the common elf header so that DTrace
can use them on one architecture targeted to a different one.

Add the additional ELF types defines in Sun's "Linker and Libraries"
manual.


162954 02-Oct-2006 phk

First part of a little cleanup in the calendar/timezone/RTC handling.

Move relevant variables to <sys/clock.h> and fix #includes as necessary.

Use libkern's much more time- & spamce-efficient BCD routines.


162487 21-Sep-2006 kan

Use __builtin_va_start instead of __builtin_stdarg_start. GCC4 obsoletes
the former and __builtin_va_start was present in all GCC version 3.1 and
later.


161735 30-Aug-2006 cognet

Remove dead code, already defined in sys/cdef.h

Spotted out by: bde


161628 25-Aug-2006 alc

Eliminate unused definitions. (They came from NetBSD.)

Discussed with: cognet, grehan, marcel


161592 24-Aug-2006 cognet

Finally bring it support for the i80219 XScale processor.

Submitted by: Max M. Boyarov <m.boyarov bsd by>


161591 24-Aug-2006 cognet

Use ELFDATA2MSB if we're building big endian.

Noticed by: Oleksandr Tymoshenko <gonzo freebsd org>


161105 08-Aug-2006 cognet

Rewrite ARM_USE_SMALL_ALLOC so that instead of the current behavior, it maps
whole the physical memory, cached, using 1MB section mappings. This reduces
the address space available for user processes a bit, but given the amount of
memory a typical arm machine has, it is not (yet) a big issue.
It then provides a uma_small_alloc() that works as it does for architectures
which have a direct mapping.


160740 27-Jul-2006 cognet

Define BYTE_MSF if we're compiling a big endian kernel, so that DDB can
correctly disassemble instructions on big endian.


160332 14-Jul-2006 cognet

Add remote GDB bits for arm.


159325 06-Jun-2006 alc

Add partial pmap locking.

Eliminate the unused allpmaps list.

Tested by: cognet@


159167 02-Jun-2006 cognet

Don't #error if no CPU is defined but we're not compiling the kernel.


159145 01-Jun-2006 cognet

Don't enable the FIQ in enable_interrupts() if F32_bit is not specified.
This has been committed by mistake.

Reported by: ssouhlal


159101 31-May-2006 cognet

Ooops arm10 is armv5, not armv4.

Submitted by: kevlo


159100 31-May-2006 cognet

Include machine/cpuconf.h in pmap.h in order to get ARM_NMMUS defined,
to appease -Wundef.


158593 15-May-2006 cognet

Add definitions for atomic_subtract_rel_32, atomic_add_rel_32 and
atomic_load_acq_32, needed for hwpmc.


158581 15-May-2006 cognet

Switch to a 64bit time_t, while it's not a big problem to do so.

Suggested by: imp


158531 13-May-2006 cognet

Resurrect Skyeye support :
Add a new option, SKYEYE_WORKAROUNDS, which as the name suggests adds
workarounds for things skyeye doesn't simulate. Specifically :
- Use USART0 instead of DBGU as the console, make it not use DMA, and manually provoke an interrupt when we're done in the transmit function.
- Skyeye maintains an internal counter for clock, but apparently there's
no way to access it, so hack the timecounter code to return a value which
is increased at every clock interrupts. This is gross, but I didn't find a
better way to implement timecounters without hacking Skyeye to get the
counter value.
- Force the write-back of PTEs once we're done writing them, even if they
are supposed to be write-through. I don't know why I have to do that.


158445 11-May-2006 phk

Clean out sysctl machdep.* related defines.

The cmos clock related stuff should really be in MI code.


157725 13-Apr-2006 cognet

Disable/enable fiqs as well as irqs.


157615 09-Apr-2006 cognet

MFp4: Don't write-back the PTEs if they are mapped write-through, this was
apparently only needed because skyeye has bugs in its cache emulation.


156520 09-Mar-2006 cognet

MFp4: Forget the asm inlined version of in_cksum_hdr(). It doesn't work if
the pointer is unaligned, and it just doesn't worth it.


156191 01-Mar-2006 cognet

Try to honor BUS_DMA_COHERENT : if the flag is set, normally allocate memory
with malloc() or contigmalloc() as usual, but try to re-map the allocated
memory into a VA outside the KVA, non-cached, thus making the calls to
bus_dmamap_sync() for these buffers useless.


155391 06-Feb-2006 cognet

Use memory clobbers, to be on the safe side.
Suggested by: jhb


155355 05-Feb-2006 cognet

Backout rev 1.12. It would have been a good thing, if gcc was smart enough
not to generate bad code.


154128 09-Jan-2006 imp

By popular demand, move __HAVE_ACPI and __PCI_REROUTE_INTERRUPT into
param.h. Per request, I've placed these just after the
_NO_NAMESPACE_POLLUTION ifndef. I've not renamed anything yet, but
may since we don't need the __.

Submitted by: bde, jhb, scottl, many others.


153955 01-Jan-2006 imp

Define __HAVE_ACPI and/or __PCI_REROUTE_INTERRUPT, as appropriate for
each platform. These will be used in the pci code in preference to
the complicated #ifdefs we have there now.


153666 22-Dec-2005 jhb

Tweak how the MD code calls the fooclock() methods some. Instead of
passing a pointer to an opaque clockframe structure and requiring the
MD code to supply CLKF_FOO() macros to extract needed values out of the
opaque structure, just pass the needed values directly. In practice this
means passing the pair (usermode, pc) to hardclock() and profclock() and
passing the boolean (usermode) to hardclock_cpu() and hardclock_process().
Other details:
- Axe clockframe and CLKF_FOO() macros on all architectures. Basically,
all the archs were taking a trapframe and converting it into a clockframe
one way or another. Now they can just extract the PC and usermode values
directly out of the trapframe and pass it to fooclock().
- Renamed hardclock_process() to hardclock_cpu() as the latter is more
accurate.
- On Alpha, we now run profclock() at hz (profhz == hz) rather than at
the slower stathz.
- On Alpha, for the TurboLaser machines that don't have an 8254
timecounter, call hardclock() directly. This removes an extra
conditional check from every clock interrupt on Alpha on the BSP.
There is probably room for even further pruning here by changing Alpha
to use the simplified timecounter we use on x86 with the lapic timer
since we don't get interrupts from the 8254 on Alpha anyway.
- On x86, clkintr() shouldn't ever be called now unless using_lapic_timer
is false, so add a KASSERT() to that affect and remove a condition
to slightly optimize the non-lapic case.
- Change prototypeof arm_handler_execute() so that it's first arg is a
trapframe pointer rather than a void pointer for clarity.
- Use KCOUNT macro in profclock() to lookup the kernel profiling bucket.

Tested on: alpha, amd64, arm, i386, ia64, sparc64
Reviewed by: bde (mostly)


153276 09-Dec-2005 cognet

A #define is not enough, we need to cast from u_long * to uint32_t *.


153275 09-Dec-2005 cognet

Define atomic_whatever_long


153168 06-Dec-2005 ru

Drop _MACHINE_ARCH and _MACHINE defines (not to be confused with
MACHINE_ARCH and MACHINE). Their purpose was to be able to test
in cpp(1), but cpp(1) only understands integer type expressions.
Using such unsupported expressions introduced a number of subtle
bugs, which were discovered by compiling with -Wundef.


152743 24-Nov-2005 cognet

Use a magic number to know we were started from the elf wrapper.
Add a dummy _start function to make the non-elf version of the wrapper work.


152654 21-Nov-2005 cognet

Force pmap to write-back the pte cacheline after each pte modification,
even if the pte is supposed to be cached in write through mode (might be a
skyeye bug, I'll have to check).


152653 21-Nov-2005 cognet

Add an alternate ID for the arm920t (the real solution is to have
per-cpu class masks, but oh well).


152189 08-Nov-2005 cognet

There's no need to include <machine/asmacros.h> here.


152128 06-Nov-2005 cognet

MFi386 rev 1.536 (sort of)
Move what can be moved (UMA zones creation, pv_entry_* initialization) from
pmap_init2() to pmap_init().
Create a new function, pmap_postinit(), called from cpu_startup(), to do the
L1 tables allocation.
pmap_init2() is now empty for arm as well.


151340 14-Oct-2005 jhb

Whitespace.


151334 14-Oct-2005 jhb

Change the userland atomic operations on arm to use memory operands for
the modified memory rather than using register operands that held a pointer
to the memory. The biggest effect is that we now correctly tell the
compiler that these functions change the memory that these functions
modify.

Reviewed by: cognet


150936 04-Oct-2005 cognet

dump_avail has nothing to do with ARM_USE_SMALL_ALLOC, so move its
declaration out of the #ifdef.


150867 03-Oct-2005 cognet

Provide a dump_avail[] variable, which contains the page ranges to be
dumped.

For iq31244_machdep.c, attempt to recognize hints provided by the elf
trampoline.


150864 03-Oct-2005 cognet

Add a new API to let platform-specific ports provide functions for big
copy/zeroing.


150858 03-Oct-2005 cognet

asm versions of in_cksum_hdr() and in_pseudo().


150627 27-Sep-2005 jhb

Add a new atomic_fetchadd() primitive that atomically adds a value to a
variable and returns the previous value of the variable.

Tested on: i386, alpha, sparc64, arm (cognet)
Reviewed by: arch@
Submitted by: cognet (arm)
MFC after: 1 week


149337 20-Aug-2005 stefanf

Move MINSIGSTKSZ from <machine/signal.h> to <machine/_limits.h> and rename
it to __MINSIGSTKSZ. Define MINSIGSTKSZ in <sys/signal.h>.

This is done in order to use MINSIGSTKSZ for the macro PTHREAD_STACK_MIN
in <pthread.h> (soon <limits.h>) without having to include the whole
<sys/signal.h> header.

Discussed with: bde


148455 27-Jul-2005 imp

msdosfs_conv.c references cmos_wall_clock and adjkerntz. Since these
are 0 for arm, define them as such to make msdosfs_conv.c compile
again on arm.


148453 27-Jul-2005 jhb

Add extra constraints to tell the compiler that the memory be modified
in the arm __swp() and sparc64 casa() and casax() functions is actually
being used as an input and output and not just the value of the register
that points to the memory location. This was the underlying source of
the mbuf refcount problems on sparc64 a while back. For arm this should be
a nop because __swp() has a constraint to clobber all memory which can
probably be removed now.

Reviewed by: alc, cognet
MFC after: 1 week


148452 27-Jul-2005 jhb

Use a + constraint modifier for a register arg in __bswap16_var().

Reviewed by: cognet


148067 15-Jul-2005 jhb

Convert the atomic_ptr() operations over to operating on uintptr_t
variables rather than void * variables. This makes it easier and simpler
to get asm constraints and volatile keywords correct.

MFC after: 3 days
Tested on: i386, alpha, sparc64
Compiled on: ia64, powerpc, amd64
Kernel toolchain busted on: arm


147555 23-Jun-2005 jhb

Fix a typo.

Approved by: re (scottl)


147191 09-Jun-2005 jkoshy

MFP4:

- Implement sampling modes and logging support in hwpmc(4).

- Separate MI and MD parts of hwpmc(4) and allow sharing of
PMC implementations across different architectures.
Add support for P4 (EMT64) style PMCs to the amd64 code.

- New pmcstat(8) options: -E (exit time counts) -W (counts
every context switch), -R (print log file).

- pmc(3) API changes, improve our ability to keep ABI compatibility
in the future. Add more 'alias' names for commonly used events.

- bug fixes & documentation.


147166 09-Jun-2005 cognet

- MFp4: modify slightly the arm intr API, there's arm CPUs with more than 32
interrupts.
- Implement teardown methods where appropriate.


147114 07-Jun-2005 cognet

Add a new arm-specific option, ARM_USE_SMALL_ALLOC. If defined, it provides
an implementation of uma_small_alloc() which tries to preallocate memory
1MB per 1MB, and maps it into a section mapping.


146948 03-Jun-2005 cognet

Bring in bits I forgot while importing write back support for arm9.


146734 29-May-2005 nyan

Remove bus_{mem,p}io.h and related code for a micro-optimization on i386
and amd64. The optimization is a trivial on recent machines.

Reviewed by: -arch (imp, marcel, dfr)


146649 26-May-2005 cognet

s/_KLD_MODULE/KLD_MODULE/


146619 25-May-2005 cognet

Remove bits specific to CPUs we won't support (< armv4).


146594 24-May-2005 cognet

Use asm versions of in_cksum() and friends.


146592 24-May-2005 cognet

Asm version of bswap16().

Obtained from: NetBSD


146591 24-May-2005 cognet

Make sure we clean the RAS start address once we're done.
This fixes the random segfaults which occurs at high interrupts rate.


145332 20-Apr-2005 marcel

Add empty header (except of the multiple-inclusion protection) to
get hwpmc(4) to compile on this platform.


145253 18-Apr-2005 imp

Break out the definition of bus_space_{tag,handle}_t and a few other types
into _bus.h to help with name space polution from including all of bus.h.
In a few days, I'll commit changes to the MI code to take advantage of thse
sepration (after I've made sure that these changes don't break anything in
the main tree, I've tested in my trees, but you never know...).

Suggested by: bde (in 2002 or 2003 I think)
Reviewed in principle by: jhb


144761 07-Apr-2005 cognet

Import a basic implementation of the restartable atomic sequences to provide
atomic operations to userland (this is OK for UP only, but SMP is still so
far away).


144760 07-Apr-2005 cognet

- Try harder to report dirty page.
- Garbage-collect pmap_update(), it became quite useless.


144637 04-Apr-2005 jhb

Divorce critical sections from spinlocks. Critical sections as denoted by
critical_enter() and critical_exit() are now solely a mechanism for
deferring kernel preemptions. They no longer have any affect on
interrupts. This means that standalone critical sections are now very
cheap as they are simply unlocked integer increments and decrements for the
common case.

Spin mutexes now use a separate KPI implemented in MD code: spinlock_enter()
and spinlock_exit(). This KPI is responsible for providing whatever MD
guarantees are needed to ensure that a thread holding a spin lock won't
be preempted by any other code that will try to lock the same lock. For
now all archs continue to block interrupts in a "spinlock section" as they
did formerly in all critical sections. Note that I've also taken this
opportunity to push a few things into MD code rather than MI. For example,
critical_fork_exit() no longer exists. Instead, MD code ensures that new
threads have the correct state when they are created. Also, we no longer
try to fixup the idlethreads for APs in MI code. Instead, each arch sets
the initial curthread and adjusts the state of the idle thread it borrows
in order to perform the initial context switch.

This change is largely a big NOP, but the cleaner separation it provides
will allow for more efficient alternative locking schemes in other parts
of the kernel (bare critical sections rather than per-CPU spin mutexes
for per-CPU data for example).

Reviewed by: grehan, cognet, arch@, others
Tested on: i386, alpha, sparc64, powerpc, arm, possibly more


143857 20-Mar-2005 cognet

Bring in a version of float.h more correct for softfloat.


143598 14-Mar-2005 scottl

Refactor the bus_dma header files so that the interface is described in
sys/bus_dma.h instead of being copied in every single arch. This slightly
reorders a flag that was specific to AXP and thus changes the ABI there.
The interface still relies on bus_space definitions found in <machine/bus.h>
so it cannot be included on its own yet, but that will be fixed at a later
date. Add an MD <machine/bus_dma.h> for ever arch for consistency and to
allow for future MD augmentation of the API. sparc64 makes heavy use of
this right now due to its different bus_dma implemenation.


143063 02-Mar-2005 joerg

netchild's mega-patch to isolate compiler dependencies into a central
place.

This moves the dependency on GCC's and other compiler's features into
the central sys/cdefs.h file, while the individual source files can
then refer to #ifdef __COMPILER_FEATURE_FOO where they by now used to
refer to #if __GNUC__ > 3.1415 && __BARC__ <= 42.

By now, GCC and ICC (the Intel compiler) have been actively tested on
IA32 platforms by netchild. Extension to other compilers is supposed
to be possible, of course.

Submitted by: netchild
Reviewed by: various developers on arch@, some time ago


142570 26-Feb-2005 cognet

Instead of using sysarch() to store-retrieve the tp, add a magic address,
ARM_TP_ADDRESS, where the tp will be stored. On CPUs that support it, a cache
line will be allocated and locked for this address, so that it will never go
to RAM. On CPUs that does not, a page is allocated for it (it will be a bit
slower, and is wrong for SMP, but should be fine for UP).
The tp is still stored in the mdthread struct, and at each context switch,
ARM_TP_ADDRESS gets updated.

Suggested by: davidxu


142528 26-Feb-2005 cognet

Add the field in the md part of the struct thread required by ARM_[GET|SET]_TP.


142519 25-Feb-2005 cognet

Implement two new sysarch for arm, ARM_GET_TP and ARM_SET_TP, to work around
the lack of tls on arm.


142107 19-Feb-2005 ru

Use a common multi-inclusion protection, and add such a
protection to alpha/include/exec.h.


141820 13-Feb-2005 cognet

Define NIRQ to 64 for CPU_ARM9, because Cirrus Logic EP93XX cores provides
64 irqs.
This should be re-thought later.


141094 01-Feb-2005 njl

Sort functions.


140425 18-Jan-2005 cognet

Start to support the big endian case as well.


140312 15-Jan-2005 cognet

Add the prototype for bus_dmamap_load_mbuf_sg().

Spotted out by: scottl


140001 10-Jan-2005 cognet

Add support for ptrace() and gdb breakpoints.


139735 05-Jan-2005 imp

Start all license statements with /*-


139021 18-Dec-2004 cognet

Make sure gcc doesn't generate something such as swp r3, r4, [r3] for __swp,
as it has unpredictable results.


138413 05-Dec-2004 cognet

Remove an unused field from the struct pv_entry.
While I'm there, fix style.


137975 21-Nov-2004 cognet

Implement breakpoints and single stepping on arm.

Obtained from: NetBSD


137940 20-Nov-2004 cognet

Implement enough to be able to enter and leave DDB.


137939 20-Nov-2004 cognet

Get the kernel stack right now that the u-area is gone.


137919 20-Nov-2004 das

Remove UAREA_PAGES and USPACE definitions. The definitions of
USPACE_SVC_STACK_TOP, USPACE_SVC_STACK_BOTTOM, USPACE_UNDEF_STACK_TOP,
and USPACE_UNDEF_STACK_BOTTOM look wrong to me, so I'm leaving them
alone.

Reviewed by: arch@


137462 09-Nov-2004 cognet

Import a RET macro, that will use bx if the arch supports it.

Obtained from: NetBSD


137362 07-Nov-2004 cognet

Import md bits for mem(4) on arm.
While I'm there, cleanup a bit pmap.h.


137282 05-Nov-2004 cognet

Disable interrupts for atomic_cmpset_32, this one is just not atomic.
Don't export it to userland.


137229 04-Nov-2004 cognet

Protect the function declarations with #ifdef _KERNEL.


137228 04-Nov-2004 cognet

Directly use __pcpu for PCPU_* instead of pcpup.


137227 04-Nov-2004 cognet

Decrease KSTACK_PAGES and UAREA_PAGES.


137226 04-Nov-2004 cognet

Use interrupts_disable() and interrupts_restore() as intr_disable() and
intr_restore() instead of re-implement it.


137224 04-Nov-2004 cognet

Don't barf if no CPU type is defined while compiling kernel modules.


137223 04-Nov-2004 cognet

Implement get_cyclecount().


137222 04-Nov-2004 cognet

Try to implement atomic operations using swp, instead of disabling interrupts.


137216 04-Nov-2004 cognet

Use casts to enforce the return type of bswap16() and bswap32().


136033 01-Oct-2004 cognet

Add optimized version of the bswap macroes for constants if __OPTIMIZED__ is
defined.


135665 23-Sep-2004 cognet

Remove the empty definition of struct osigcontext, as it will never be used.


135664 23-Sep-2004 cognet

Remove the pcb32_cstate field of struct pcb.


135663 23-Sep-2004 cognet

Declare sigcode and szsigcode.


135662 23-Sep-2004 cognet

Define VM_PROT_READ_IS_EXEC.


135661 23-Sep-2004 cognet

Implement _mcount().

Obtained from: NetBSD


135660 23-Sep-2004 cognet

Define STACKALIGNBYTES and STACKALIGN.


135659 23-Sep-2004 cognet

We are using _mcount, not __mcount.
Remove the !__ELF__ case.


135650 23-Sep-2004 cognet

Add new functions to know which irqs are pending, and to mask and unmask
interrupts, as these are CPU specific.
If the interrupt handler is not marked as INTR_FAST, don't unmask the
interrupt until it as been serviced.


135649 23-Sep-2004 cognet

Rename macroes, as we don't need to mess with alignment faults.
Call ast() if TDF_NEEDRESCHED is set too, not just TDF_ASTPENDING.


135645 23-Sep-2004 cognet

Remove bus_space_vaddr(), it does not exists in FreeBSD.


135642 23-Sep-2004 cognet

Add MD syscalls to sync the icache and to drain the write buffer.

Obtained from: NetBSD


135641 23-Sep-2004 cognet

Implement pmap_growkernel() and pmap_extract_and_hold().
Remove the cache state logic : right now, it provides more problems than it
helps.
Add helper functions for mapping devices while bootstrapping.
Reorganize the code a bit, and remove dead code.

Obtained from: NetBSD (partially)


134398 27-Aug-2004 marcel

Move the kernel-specific logic to adjust frompc from MI to MD. For
these two reasons:
1. On ia64 a function pointer does not hold the address of the first
instruction of a functions implementation. It holds the address
of a function descriptor. Hence the user(), btrap(), eintr() and
bintr() prototypes are wrong for getting the actual code address.
2. The logic forces interrupt, trap and exception entry points to
be layed-out contiguously. This can not be achieved on ia64 and is
generally just bad programming.

The MCOUNT_FROMPC_USER macro is used to set the frompc argument to
some kernel address which represents any frompc that falls outside
the kernel text range. The macro can expand to ~0U to bail out in
that case.
The MCOUNT_FROMPC_INTR macro is used to set the frompc argument to
some kernel address to represent a call to a trap or interrupt
handler. This to avoid that the trap or interrupt handler appear to
be called from everywhere in the call graph. The macro can expand
to ~0U to prevent adjusting frompc. Note that the argument is selfpc,
not frompc.

This commit defines the macros on all architectures equivalently to
the original code in sys/libkern/mcount.c. People can take it from
here...

Compile-tested on: alpha, amd64, i386, ia64 and sparc64
Boot-tested on: i386


133084 03-Aug-2004 mux

Instead of calling ia32_pause() conditionally on __i386__ or __amd64__
being defined, define and use a new MD macro, cpu_spinwait(). It only
expands to something on i386 and amd64, so the compiled code should be
identical.

Name of the macro found by: jhb
Reviewed by: jhb


133012 02-Aug-2004 cognet

*blush*
Fix htonl and htons.


133011 02-Aug-2004 cognet

Fix comments.

Spotted out by: mux


132702 27-Jul-2004 rwatson

Correct typo in prior commit: s/cd/td/


132700 27-Jul-2004 rwatson

Pass a thread argument into cpu_critical_{enter,exit}() rather than
dereference curthread. It is called only from critical_{enter,exit}(),
which already dereferences curthread. This doesn't seem to affect SMP
performance in my benchmarks, but improves MySQL transaction throughput
by about 1% on UP on my Xeon.

Head nodding: jhb, bmilekic


132516 21-Jul-2004 cognet

Do not declare curpcb.


132513 21-Jul-2004 cognet

Define pmap_page_is_mapped().


132471 20-Jul-2004 cognet

Nuke disable_intr() and enable_intr(), as it already exists elsewhere.


132383 19-Jul-2004 das

Make FLT_ROUNDS correctly reflect the dynamic rounding mode.


132059 12-Jul-2004 cognet

Update to kdb.


132058 12-Jul-2004 cognet

Remove the kbd_trap() declaration.


132057 12-Jul-2004 cognet

Protect setjmp.h with #ifndef _MACHINE_SETJMP_H_.


132056 12-Jul-2004 cognet

Forward declare "struct pcb", so that one does not need to include
<machine/pcb.h> before including <machine/pmap.h>.


132055 12-Jul-2004 cognet

Implement a stub breakpoint().


132053 12-Jul-2004 cognet

Prototype makectx().


132052 12-Jul-2004 cognet

Import bus_memio.h and bus_pio.h for arm.


132051 12-Jul-2004 cognet

Import a kdb.h for arm, which contains stubs right now.


130644 17-Jun-2004 cognet

Nuke bus_space_mmap(), as it does not exist in FreeBSD.


130585 16-Jun-2004 phk

Do the dreaded s/dev_t/struct cdev */
Bump __FreeBSD_version accordingly.


129444 19-May-2004 bde

Moved most of the "MI" definitions and declarations from <machine/profile.h>
to <sys/gmon.h>. Cleaned them up a little by not attempting to ifdef
for incomplete and out of date support for GUPROF in userland, as in
the sparc64 version.


129393 18-May-2004 stefanf

<stdint.h> should define WINT_M{AX,IN} independent from whether WCHAR_MIN is
defined. Otherwise first including <wchar.h> and then <stdint.h> leads to no
WINT_M{AX,IN} at all.

PR: 64956
Approved by: das (mentor)


129198 14-May-2004 cognet

Import FreeBSD/arm kernel bits.
It only supports sa1110 (on simics) right now, but xscale support should come
soon.
Some of the initial work has been provided by :
Stephane Potvin <sepotvin at videotron.ca>
Most of this comes from NetBSD.


128940 04-May-2004 cognet

Don't declare osigset_t, as it is done in sys/_sigset.h.


128938 04-May-2004 cognet

Add some endianess-related functions and macros.


128937 04-May-2004 cognet

Add the Elf32_Auxinfo declaretion.
Define AT_*.
(Maybe some of this could go in a MI header ?)


128936 04-May-2004 cognet

Define __double_t and __float_t.


127914 05-Apr-2004 imp

Remove advertising clause from University of California Regent's license,
per letter dated July 22, 1999.

Approved by: core


127239 20-Mar-2004 marcel

Introduce the cpumask_t type. The purpose of the type is to create a
level of abstraction for any and all CPU mask and CPU bitmap variables
so that platforms have the ability to break free from the hard limit
of 32 CPUs, simply because we don't have more bits in an u_int. Note
that the type is not supposed to solve massive parallelism, where
the number of CPUs can be larger than the width of the widest integral
type. As such, cpumask_t is not supposed to be a compound type. If
such would be necessary in the future, we can deal with the issues
then and there. For now, it can be assumed that the type is integral
and unsigned.

With this commit, all MD definitions start off as u_int. This allows
us to phase-in cpumask_t at our leasure without breaking anything.
Once cpumask_t is used consistently, platforms can switch to wider
(or smaller) types if such would be beneficial (or not; whatever :-)

Compile-tested on: i386


120422 25-Sep-2003 peter

Add sysentvec->sv_fixlimits() hook so that we can catch cases on 64 bit
systems where the data/stack/etc limits are too big for a 32 bit process.

Move the 5 or so identical instances of ELF_RTLD_ADDR() into imgact_elf.c.

Supply an ia32_fixlimits function. Export the clip/default values to
sysctl under the compat.ia32 heirarchy.

Have mmap(0, ...) respect the current p->p_limits[RLIMIT_DATA].rlim_max
value rather than the sysctl tweakable variable. This allows mmap to
place mappings at sensible locations when limits have been reduced.

Have the imgact_elf.c ld-elf.so.1 placement algorithm use the same
method as mmap(0, ...) now does.

Note that we cannot remove all references to the sysctl tweakable
maxdsiz etc variables because /etc/login.conf specifies a datasize
of 'unlimited'. And that causes exec etc to fail since it can no
longer find space to mmap things.


118382 03-Aug-2003 obrien

Style sync.


115164 19-May-2003 kan

sys/sys/limits.h:

- Fix visibilty test for LONG_BIT and WORD_BIT. `#if defined(__FOO_VISIBLE)'
is alays wrong because __FOO_VISIBLE is always defined (to 0 for
invisibility).

sys/<arch>/include/limits.h
sys/<arch>/include/_limits.h:

- Style fixes.

Submitted by: bde
Reviewed by: bsdmike
Approved by: re (scottl)


114678 04-May-2003 kan

Style fixes.
Remove DBL_DIG, DBL_MIN, DBL_MAX and their FLT_ counterparts, they
were marked for deprecation ever since SUSv1 at least.
Only define ULLONG_MIN/MAX and LLONG_MAX if long long type is
supported.
Restore a lost comment in MI _limits.h file and remove it from
sys/limits.h where it does not belong.


114216 29-Apr-2003 kan

Deprecate machine/limits.h in favor of new sys/limits.h.
Change all in-tree consumers to include <sys/limits.h>

Discussed on: standards@
Partially submitted by: Craig Rodrigues <rodrigc@attbi.com>


113941 23-Apr-2003 kan

Add a new sys/limits.h file which in turn depends on machine/_limits.h
to get actual constant values. This is in preparation for machine/limits.h
retirement.

Discussed on: standards@
Submitted by: Craig Rodrigues <rodrigc@attbi.com> (*)
Modified by: kan


112569 25-Mar-2003 jake

- Add vm_paddr_t, a physical address type. This is required for systems
where physical addresses larger than virtual addresses, such as i386s
with PAE.
- Use this to represent physical addresses in the MI vm system and in the
i386 pmap code. This also changes the paddr parameter to d_mmap_t.
- Fix printf formats to handle physical addresses >4G in the i386 memory
detection code, and due to kvtop returning vm_paddr_t instead of u_long.

Note that this is a name change only; vm_paddr_t is still the same as
vm_offset_t on all currently supported platforms.

Sponsored by: DARPA, Network Associates Laboratories
Discussed with: re, phk (cdevsw change)


108175 22-Dec-2002 tjr

MB_LEN_MAX is not MD, move it to the MI limits.h.


105014 13-Oct-2002 mike

Add standards visibility conditionals. Change any uses of sigset_t to
struct __sigset to avoid depending on objects from <sys/signal.h>.


103436 17-Sep-2002 peter

Initiate deorbit burn for the i386-only a.out related support. Moves are
under way to move the remnants of the a.out toolchain to ports. As the
comment in src/Makefile said, this stuff is deprecated and one should not
expect this to remain beyond 4.0-REL. It has already lasted WAY beyond
that.

Notable exceptions:
gcc - I have not touched the a.out generation stuff there.
ldd/ldconfig - still have some code to interface with a.out rtld.
old as/ld/etc - I have not removed these yet, pending their move to ports.
some includes - necessary for ldd/ldconfig for now.

Tested on: i386 (extensively), alpha


102874 03-Sep-2002 mike

Now that _BSD_CLK_TCK_ and _BSD_CLOCKS_PER_SEC_ are the same on all
architectures, move the definition directly into <time.h> and finish
the removal of <machine/ansi.h>.


102429 26-Aug-2002 mike

Since arm and powerpc aren't far enough to set stathz, take a
preemptive strike and change _BSD_CLK_TCK_ and _BSD_CLOCKS_PER_SEC_
to 128.

Approved by: benno


102315 23-Aug-2002 mike

Move several MI types from <machine/_types.h> to <sys/_types.h>.
These types are unlikely to ever become very MD. They include:
clockid_t, ct_rune_t, fflags_t, intrmask_t, mbstate_t, off_t, pid_t,
rune_t, socklen_t, timer_t, wchar_t, and wint_t.

While moving them, make a few adjustments (submitted by bde):
o __ct_rune_t needs to be precisely `int', not necessarily __int32_t,
since the arg type of the ctype functions is int.
o __rune_t, __wchar_t and __wint_t inherit this via a typedef of
__ct_rune_t.
o Some minor wording changes in the comment blocks for ct_rune_t and
mbstate_t.

Submitted by: bde (partially)


102227 21-Aug-2002 mike

o Merge <machine/ansi.h> and <machine/types.h> into a new header
called <machine/_types.h>.
o <machine/ansi.h> will continue to live so it can define MD clock
macros, which are only MD because of gratuitous differences between
architectures.
o Change all headers to make use of this. This mainly involves
changing:
#ifdef _BSD_FOO_T_
typedef _BSD_FOO_T_ foo_t;
#undef _BSD_FOO_T_
#endif
to:
#ifndef _FOO_T_DECLARED
typedef __foo_t foo_t;
#define _FOO_T_DECLARED
#endif

Concept by: bde
Reviewed by: jake, obrien


100882 29-Jul-2002 mike

Create a new header <machine/_stdint.h> for storing MD parts of
<stdint.h>. Previously, parts were defined in <machine/ansi.h> and
<machine/limits.h>. This resulted in two problems:
(1) Defining macros in <machine/ansi.h> gets in the way of that
header only defining types.
(2) Defining C99 limits in <machine/limits.h> adds pollution to
<limits.h>.


99733 10-Jul-2002 mike

Remove label_t and physadr, which seem to have never been used in
FreeBSD.

Submitted by: bde


99630 09-Jul-2002 mike

Remove an unused type.


99594 08-Jul-2002 mike

Move __offsetof() macro from <machine/ansi.h> to <sys/cdefs.h>. It's
hardly MD, since all our platforms share the same macro. It's not
really compiler dependent either, but this helps in reducing
<machine/ansi.h> to only type definitions.


98710 23-Jun-2002 iedowse

Make vm_pindex_t 64-bit on all platforms. This is necessary to avoid
overflows with the large file sizes that UFS2 permits.

Reviewed by: dillon, alc, tegge


96606 14-May-2002 phk

Move MI stuff out of MD param.h files.

It can all still be overridden in the MD files should need suddenly arise.


96604 14-May-2002 phk

Remove the unused definitions of ctod() and dotc().


96319 10-May-2002 obrien

Sync with the other platforms.


93092 24-Mar-2002 obrien

Guard against redefining __gnuc_va_list.


92812 20-Mar-2002 alfred

Remove __P.


87575 09-Dec-2001 obrien

We need machine/{signal,ucontext}.h to build a cross GCC compiler.
So craft the proper versions of these and commit em.


87574 09-Dec-2001 obrien

Following sys/i386/include/ansi.h rev 1.33, add additional integer types
in <machine/ansi.h> and that are required by <sys/stdint.h>.


87571 09-Dec-2001 obrien

We need machine/types.h to build a cross GCC compiler.
(copied from src/sys/i386/include/types.h rev 1.23, except for the label_t
size, which is '10' everywhere BUT on i386)


87567 09-Dec-2001 obrien

machine/limits.h
(taken from i386/include/limits.h rev 1.19)


87158 01-Dec-2001 mike

o Stop abusing MD headers with non-MD types.
o Hide nonstandard functions and types in <netinet/in.h> when
_POSIX_SOURCE is defined.
o Add some missing types (required by POSIX.1-200x) to <netinet/in.h>.
o Restore vendor ID from Rev 1.1 in <netinet/in.h> and make use of new
__FBSDID() macro.
o Fix some miscellaneous issues in <arpa/inet.h>.
o Correct final argument for the inet_ntop() function (POSIX.1-200x).
o Get rid of the namespace pollution from <sys/types.h> in
<arpa/inet.h>.

Reviewed by: fenner
Partially submitted by: bde


85335 23-Oct-2001 mike

Remove funky right justification.

Pointed out by: bde


85187 19-Oct-2001 obrien

Try two on the preprocessing logic.

Reviewed by: ru


85183 19-Oct-2001 obrien

Blah, fix braino where ru had to remind me of proper preprocessor syntax.
Bad fingers, no cookie.


85108 18-Oct-2001 obrien

My attempts at minimizing the number of #def's got me in trouble.


84783 10-Oct-2001 ps

Make MAXTSIZ, DFLDSIZ, MAXDSIZ, DFLSSIZ, MAXSSIZ, SGROWSIZ loader
tunable.

Reviewed by: peter
MFC after: 2 weeks


82530 30-Aug-2001 mike

o Remove some GCCisms in src/powerpc/include/endian.h.
o Unify <machine/endian.h>'s across all architectures.
o Make bswapXX() functions use a different spelling of u_int16_t and
friends to reduce namespace pollution. The bswapXX() functions
don't actually exist, but we'll probably import these at some
point. Atleast one driver (if_de) depends on bswapXX() for big
endian cases.
o Deprecate byteorder(3) prototypes from <sys/types.h>, these are
now prototyped indirectly in <arpa/inet.h>.
o Deprecate in_addr_t and in_port_t typedefs in <sys/types.h>, these
are now typedef'd in <arpa/inet.h>.
o Change byteorder(3) prototypes to use standards compliant uint32_t
(spelled __uint32_t to reduce namespace pollution).
o Document new preferred headers and standards compliance.

Discussed with: bde
PR: 29946
Reviewed by: bmilekic


77931 09-Jun-2001 obrien

Fix style of defines.


76785 18-May-2001 obrien

Make _BSD_TIME_T_ (time_t) an `int' rather than `long'. This will help
flag errors where programmers assume time_t is a long, which it is not on
64-bit platforms.

Submitted by: bde


76784 18-May-2001 obrien

Style changes -- revert ordering to mostly two revs ago.
Embellish some comments, fix tab'ing.

Requested by: bde


76701 16-May-2001 obrien

Consistently define the rune types.
Follow NetBSD's lead and add a _BSD_MBSTATE_T_ type.


76700 16-May-2001 obrien

Move the int typedefs to the top so they can be used in defining other types.
Ensure every platform has __offsetof.
Make multiple inclusion detection consistent with other
<platform>/include/*.h files.


72569 17-Feb-2001 ume

Correct disordering which is corresponding to bde's fix to
i386/include/ansi.h.


72510 15-Feb-2001 ume

Correct 2nd argument of getnameinfo(3) to socklen_t.

Reviewed by: itojun


72358 11-Feb-2001 markm

RIP <machine/lock.h>.

Some things needed bits of <i386/include/lock.h> - cy.c now has its
own (only) copy of the COM_(UN)LOCK() macros, and IMASK_(UN)LOCK()
has been moved to <i386/include/apic.h> (AKA <machine/apic.h>).
Reviewed by: jhb


71576 24-Jan-2001 jasone

Convert all simplelocks to mutexes and remove the simplelock implementations.


70786 08-Jan-2001 obrien

Remove seconds types we don't use that came in thru the NetBSD heiratage.


70651 04-Jan-2001 obrien

StrongARM platform-specific definitions.