From owner-svn-soc-all@FreeBSD.ORG Sun Jul 10 12:22:10 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id DB4D4106564A for ; Sun, 10 Jul 2011 12:22:07 +0000 (UTC) (envelope-from kibab@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sun, 10 Jul 2011 12:22:07 +0000 Date: Sun, 10 Jul 2011 12:22:07 +0000 From: kibab@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110710122207.DB4D4106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224094 - soc2011/kibab/freebsd-src-head/usr.sbin/syslogd X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2011 12:22:10 -0000 Author: kibab Date: Sun Jul 10 12:22:07 2011 New Revision: 224094 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224094 Log: Task-9: add limiting capabilities on different descriptors. This requires libcapsicum. Modified: soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/Makefile soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/syslogd.c Modified: soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/Makefile ============================================================================== --- soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/Makefile Sun Jul 10 07:25:34 2011 (r224093) +++ soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/Makefile Sun Jul 10 12:22:07 2011 (r224094) @@ -10,7 +10,7 @@ SRCS= syslogd.c ttymsg.c DPADD= ${LIBUTIL} -LDADD= -lutil +LDADD= -lutil -lcapsicum WARNS?= 3 Modified: soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/syslogd.c ============================================================================== --- soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/syslogd.c Sun Jul 10 07:25:34 2011 (r224093) +++ soc2011/kibab/freebsd-src-head/usr.sbin/syslogd/syslogd.c Sun Jul 10 12:22:07 2011 (r224094) @@ -76,6 +76,7 @@ #define TTYMSGTIME 1 /* timeout passed to ttymsg */ #include +#include #include #include #include @@ -502,7 +503,7 @@ int fork_count = 0; /* XXX For debug purposes only, remove in production code! */ int chpid; - if(feature_present("security_capabilities")) { + if(1 || feature_present("security_capabilities")) { dprintf("Running with Capsicum support!\n"); do { chpid = fork(); @@ -517,6 +518,7 @@ parent_duty(chpid); } else { /* Child process */ setproctitle("child process (capability mode)"); + pidfile_close(pfh); } if(fork_count>10) errx(1, "ACHTUNG, high fork count"); @@ -571,6 +573,10 @@ continue; } double_rbuf(fx->s); + } else { + if(lc_limitfd(fx->s, CAP_READ | CAP_EVENT) < 0) { + errx(1, "Cannot limit operations on %s", fx->name); + } } } if (SecureMode <= 1) @@ -596,7 +602,10 @@ fklog = -1; if (fklog < 0) dprintf("can't open %s (%d)\n", _PATH_KLOG, errno); - + /* Limit operations on fklog to read and select only */ + if(lc_limitfd(fklog, CAP_READ | CAP_EVENT) < 0) { + errx(1, "Cannot limit operations on "_PATH_KLOG); + } /* tuck my process id away */ /* * pidfile_write(pfh); this should be done earlier if forking. @@ -612,6 +621,9 @@ err(32, "Could not enter capability mode!"); } else { dprintf("FreeBSD capability mode enabled!\n"); + if (lc_limitfd(STDIN_FILENO, CAP_FSTAT) < 0) errx(1, "lc_limitfd: unable to limit STDIN_FILENO"); + if (lc_limitfd(STDOUT_FILENO, CAP_FSTAT | CAP_SEEK | CAP_WRITE) < 0) errx(1, "lc_limitfd: unable to limit STDOUT_FILENO"); + if (lc_limitfd(STDERR_FILENO, CAP_FSTAT | CAP_SEEK | CAP_WRITE) < 0) errx(1, "lc_limitfd: unable to limit STDERR_FILENO"); } /* prevent SIGHUP and SIGCHLD handlers from running in parallel */ @@ -2046,6 +2058,10 @@ (void)strlcpy(f->f_un.f_fname, p, sizeof(f->f_un.f_fname)); f->f_type = F_FILE; } + /* Limit the set of operations for this fd */ + if(lc_limitfd(f->f_file, CAP_SEEK | CAP_WRITE) < 0) { + errx(1, "Cannot limit operations on %s", p); + } break; case '|': @@ -2759,7 +2775,9 @@ logerror("bind"); continue; } - + if(lc_limitfd(*s, CAP_READ | CAP_EVENT) < 0) { + errx(1, "Cannot limit capabilities on inet sockets"); + } double_rbuf(*s); (*socks)++; From owner-svn-soc-all@FreeBSD.ORG Mon Jul 11 07:11:11 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 24AA8106564A for ; Mon, 11 Jul 2011 07:11:09 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 11 Jul 2011 07:11:09 +0000 Date: Mon, 11 Jul 2011 07:11:09 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110711071109.24AA8106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224116 - soc2011/gk/ino64-head/sys/kern X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2011 07:11:11 -0000 Author: gk Date: Mon Jul 11 07:11:08 2011 New Revision: 224116 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224116 Log: Remove readdir cookies and set d_off in mqueue Modified: soc2011/gk/ino64-head/sys/kern/uipc_mqueue.c Modified: soc2011/gk/ino64-head/sys/kern/uipc_mqueue.c ============================================================================== --- soc2011/gk/ino64-head/sys/kern/uipc_mqueue.c Mon Jul 11 05:57:49 2011 (r224115) +++ soc2011/gk/ino64-head/sys/kern/uipc_mqueue.c Mon Jul 11 07:11:08 2011 (r224116) @@ -1344,8 +1344,6 @@ struct uio *a_uio; struct ucred *a_cred; int *a_eofflag; - int *a_ncookies; - u_long **a_cookies; }; #endif @@ -1361,7 +1359,6 @@ struct mqfs_node *pn; struct dirent entry; struct uio *uio; - int *tmp_ncookies = NULL; off_t offset; int error, i; @@ -1373,15 +1370,9 @@ if (vp->v_type != VDIR) return (ENOTDIR); - if (uio->uio_offset < 0) + if (uio->uio_offset < 0 || uio->uio_resid < sizeof(entry)) return (EINVAL); - if (ap->a_ncookies != NULL) { - tmp_ncookies = ap->a_ncookies; - *ap->a_ncookies = 0; - ap->a_ncookies = NULL; - } - error = 0; offset = 0; @@ -1392,6 +1383,7 @@ if (!pn->mn_fileno) mqfs_fileno_alloc(mi, pn); entry.d_fileno = pn->mn_fileno; + entry.d_off = offset + entry.d_reclen; for (i = 0; i < MQFS_NAMELEN - 1 && pn->mn_name[i] != '\0'; ++i) entry.d_name[i] = pn->mn_name[i]; entry.d_name[i] = 0; @@ -1416,19 +1408,15 @@ if (entry.d_reclen > uio->uio_resid) break; if (offset >= uio->uio_offset) { - error = vfs_read_dirent(ap, &entry, offset); + error = vfs_read_dirent(ap, &entry); if (error) break; + uio->uio_offset = entry.d_off; } - offset += entry.d_reclen; + offset = entry.d_off; } sx_xunlock(&mi->mi_lock); - uio->uio_offset = offset; - - if (tmp_ncookies != NULL) - ap->a_ncookies = tmp_ncookies; - return (error); } From owner-svn-soc-all@FreeBSD.ORG Mon Jul 11 07:11:25 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 11FFD106568B for ; Mon, 11 Jul 2011 07:11:23 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 11 Jul 2011 07:11:23 +0000 Date: Mon, 11 Jul 2011 07:11:23 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110711071123.11FFD106568B@hub.freebsd.org> Cc: Subject: socsvn commit: r224117 - in soc2011/gk/ino64-head/sys/gnu/fs: reiserfs xfs xfs/FreeBSD X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2011 07:11:25 -0000 Author: gk Date: Mon Jul 11 07:11:22 2011 New Revision: 224117 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224117 Log: Remove readdir cookies and set d_off in XFS and ReiserFS Modified: soc2011/gk/ino64-head/sys/gnu/fs/reiserfs/reiserfs_namei.c soc2011/gk/ino64-head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c soc2011/gk/ino64-head/sys/gnu/fs/xfs/xfs_dir2.c Modified: soc2011/gk/ino64-head/sys/gnu/fs/reiserfs/reiserfs_namei.c ============================================================================== --- soc2011/gk/ino64-head/sys/gnu/fs/reiserfs/reiserfs_namei.c Mon Jul 11 07:11:08 2011 (r224116) +++ soc2011/gk/ino64-head/sys/gnu/fs/reiserfs/reiserfs_namei.c Mon Jul 11 07:11:22 2011 (r224117) @@ -13,9 +13,6 @@ const char *name, int namelen, struct path * path_to_entry, struct reiserfs_dir_entry *de); -MALLOC_DEFINE(M_REISERFSCOOKIES, "reiserfs_cookies", - "ReiserFS VOP_READDIR cookies"); - /* ------------------------------------------------------------------- * Lookup functions * -------------------------------------------------------------------*/ @@ -128,8 +125,6 @@ struct uio *a_uio; struct ucred *a_cred; int *a_eofflag; - int *a_ncookies; - u_long **a_cookies; } */*ap) { int error = 0; @@ -146,10 +141,6 @@ INITIALIZE_PATH(path_to_entry); int entry_num, item_num, search_res; - /* The NFS part */ - int ncookies = 0; - u_long *cookies = NULL; - /* * Form key for search the next directory entry using f_pos field of * file structure @@ -166,12 +157,6 @@ reiserfs_log(LOG_DEBUG, "uio_offset = %jd, uio_resid = %d\n", (intmax_t)uio->uio_offset, uio->uio_resid); - if (ap->a_ncookies && ap->a_cookies) { - cookies = (u_long *)malloc( - uio->uio_resid / 16 * sizeof(u_long), - M_REISERFSCOOKIES, M_WAITOK); - } - while (1) { //research: /* @@ -200,12 +185,6 @@ struct reiserfs_de_head *deh = B_I_DEH(bp, ih) + entry_num; - if (ap->a_ncookies == NULL) { - cookies = NULL; - } else { - //ncookies = - } - reiserfs_log(LOG_DEBUG, "walking through directory entries\n"); for (; entry_num < I_ENTRY_COUNT(ih); @@ -253,6 +232,7 @@ /* Copy to user land */ dstdp.d_fileno = d_ino; + dstdp.d_off = d_off + 1; dstdp.d_type = DT_UNKNOWN; dstdp.d_namlen = d_namlen; dstdp.d_reclen = GENERIC_DIRSIZ(&dstdp); @@ -269,11 +249,6 @@ dstdp.d_reclen, uio); if (error) goto end; - if (cookies != NULL) { - cookies[ncookies] = - d_off; - ncookies++; - } } else break; } else { @@ -343,12 +318,6 @@ pathrelse(&path_to_entry); reiserfs_check_path(&path_to_entry); out: - if (error && cookies != NULL) { - free(cookies, M_REISERFSCOOKIES); - } else if (ap->a_ncookies != NULL && ap->a_cookies != NULL) { - *ap->a_ncookies = ncookies; - *ap->a_cookies = cookies; - } return (error); } Modified: soc2011/gk/ino64-head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c ============================================================================== --- soc2011/gk/ino64-head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Mon Jul 11 07:11:08 2011 (r224116) +++ soc2011/gk/ino64-head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Mon Jul 11 07:11:22 2011 (r224117) @@ -973,8 +973,6 @@ struct uio *a_uio; struct ucred *a_cred; int *a_eofflag; - int *a_ncookies; - u_long **a_cookies; } */ *ap) { struct vnode *vp = ap->a_vp; @@ -985,9 +983,6 @@ if (vp->v_type != VDIR) return (EPERM); - if (ap->a_ncookies) { - return (EOPNOTSUPP); - } error = 0; while (!eof){ Modified: soc2011/gk/ino64-head/sys/gnu/fs/xfs/xfs_dir2.c ============================================================================== --- soc2011/gk/ino64-head/sys/gnu/fs/xfs/xfs_dir2.c Mon Jul 11 07:11:08 2011 (r224116) +++ soc2011/gk/ino64-head/sys/gnu/fs/xfs/xfs_dir2.c Mon Jul 11 07:11:22 2011 (r224117) @@ -721,6 +721,7 @@ uio->uio_resid -= reclen; idbp->d_reclen = reclen; idbp->d_fileno = pa->ino; + idbp->d_off = pa->cook; idbp->d_type = DT_UNKNOWN; idbp->d_namlen = namelen; memcpy(idbp->d_name, pa->name, namelen); @@ -759,6 +760,7 @@ idbp = &dtmp; idbp->d_reclen = reclen; idbp->d_fileno = pa->ino; + idbp->d_off = pa->cook; idbp->d_type = DT_UNKNOWN; idbp->d_namlen = namelen; memcpy(idbp->d_name, pa->name, namelen); From owner-svn-soc-all@FreeBSD.ORG Mon Jul 11 07:11:35 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 4D3AA1065686 for ; Mon, 11 Jul 2011 07:11:33 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 11 Jul 2011 07:11:33 +0000 Date: Mon, 11 Jul 2011 07:11:33 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110711071133.4D3AA1065686@hub.freebsd.org> Cc: Subject: socsvn commit: r224118 - soc2011/gk/ino64-head/sys/compat/svr4 X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2011 07:11:35 -0000 Author: gk Date: Mon Jul 11 07:11:33 2011 New Revision: 224118 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224118 Log: Fix typo in svr4 Modified: soc2011/gk/ino64-head/sys/compat/svr4/svr4_misc.c Modified: soc2011/gk/ino64-head/sys/compat/svr4/svr4_misc.c ============================================================================== --- soc2011/gk/ino64-head/sys/compat/svr4/svr4_misc.c Mon Jul 11 07:11:22 2011 (r224117) +++ soc2011/gk/ino64-head/sys/compat/svr4/svr4_misc.c Mon Jul 11 07:11:33 2011 (r224118) @@ -473,7 +473,7 @@ goto out; /* advance past this real entry */ inp += reclen; - off = dbp->d_off; + off = bdp->d_off; /* advance output past SVR4-shaped entry */ outp += svr4_reclen; resid -= svr4_reclen; From owner-svn-soc-all@FreeBSD.ORG Mon Jul 11 07:11:45 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 2453A106564A for ; Mon, 11 Jul 2011 07:11:43 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 11 Jul 2011 07:11:43 +0000 Date: Mon, 11 Jul 2011 07:11:43 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110711071143.2453A106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224119 - soc2011/gk/ino64-head/sbin/growfs X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2011 07:11:45 -0000 Author: gk Date: Mon Jul 11 07:11:42 2011 New Revision: 224119 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224119 Log: Fix growfs on 32 bit archs Modified: soc2011/gk/ino64-head/sbin/growfs/growfs.c Modified: soc2011/gk/ino64-head/sbin/growfs/growfs.c ============================================================================== --- soc2011/gk/ino64-head/sbin/growfs/growfs.c Mon Jul 11 07:11:33 2011 (r224118) +++ soc2011/gk/ino64-head/sbin/growfs/growfs.c Mon Jul 11 07:11:42 2011 (r224119) @@ -1878,9 +1878,10 @@ DBG_LEAVE; if (sblock.fs_magic == FS_UFS1_MAGIC) return (union dinode *)((uintptr_t)inobuf + - (inumber % INOPB(&sblock)) * sizeof(struct ufs1_dinode)); + (uintptr_t)(inumber % INOPB(&sblock)) * + sizeof(struct ufs1_dinode)); return (union dinode *)((uintptr_t)inobuf + - (inumber % INOPB(&sblock)) * sizeof(struct ufs2_dinode)); + (uintptr_t)(inumber % INOPB(&sblock)) * sizeof(struct ufs2_dinode)); } /* ****************************************************** charsperline ***** */ From owner-svn-soc-all@FreeBSD.ORG Mon Jul 11 16:41:39 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id C23DF106566B for ; Mon, 11 Jul 2011 16:41:37 +0000 (UTC) (envelope-from oleksandr@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 11 Jul 2011 16:41:37 +0000 Date: Mon, 11 Jul 2011 16:41:37 +0000 From: oleksandr@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110711164137.C23DF106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r224129 - soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2011 16:41:40 -0000 Author: oleksandr Date: Mon Jul 11 16:41:37 2011 New Revision: 224129 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224129 Log: Add to iostat option -E to show device error Modified: soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c Modified: soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c ============================================================================== --- soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c Mon Jul 11 14:15:27 2011 (r224128) +++ soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c Mon Jul 11 16:41:37 2011 (r224129) @@ -100,6 +100,7 @@ #include #include #include +#include #include #include @@ -136,7 +137,7 @@ volatile sig_atomic_t wresized; /* Tty resized, when non-zero. */ unsigned short wrows; /* Current number of tty rows. */ int dflag = 0, Iflag = 0, Cflag = 0, Tflag = 0, oflag = 0, Kflag = 0; -int xflag = 0, zflag = 0; +int xflag = 0, zflag = 0, Eflag = 0; /* local function declarations */ static void usage(void); @@ -158,7 +159,7 @@ * This isn't mentioned in the man page, or the usage statement, * but it is supported. */ - fprintf(stderr, "usage: iostat [-CdhIKoTxz?] [-c count] [-M core]" + fprintf(stderr, "usage: iostat [-CdEhIKoTxz?] [-c count] [-M core]" " [-n devs] [-N system]\n" "\t [-t type,if,pass] [-w wait] [drives]\n"); } @@ -200,6 +201,9 @@ case 'd': dflag++; break; + case 'E': + Eflag++; + break; case 'h': hflag++; break; @@ -758,7 +762,13 @@ printf("us ni sy in id "); printf("\n"); } - + if (Eflag>0) { + printf(" error device statistics "); + printf( + "device retrable non_retrible " + ); + printf("\n"); + } for (dn = 0; dn < num_devices; dn++) { int di; @@ -804,6 +814,17 @@ block_size : 512) / 1024; } + if (Eflag > 0) { + if (asprintf(&devname, "%s%d", + cur.dinfo->devices[di].device_name, + cur.dinfo->devices[di].unit_number) == -1) + err(1, "asprintf"); + printf("%-8.8s %d %d ", + devname,cur.dinfo->devices[di].dev_error.retriable, + cur.dinfo->devices[di].dev_error.non_retriable); + printf("\n"); + free(devname); + } if (xflag > 0) { if (asprintf(&devname, "%s%d", cur.dinfo->devices[di].device_name, From owner-svn-soc-all@FreeBSD.ORG Tue Jul 12 00:05:30 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 8AD3F106566C for ; Tue, 12 Jul 2011 00:05:27 +0000 (UTC) (envelope-from aalvarez@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Tue, 12 Jul 2011 00:05:27 +0000 Date: Tue, 12 Jul 2011 00:05:27 +0000 From: aalvarez@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110712000527.8AD3F106566C@hub.freebsd.org> Cc: Subject: socsvn commit: r224134 - in soc2011/aalvarez/pbmac: . bin/expr bin/ps bin/rcp bin/realpath bin/sh bin/sh/bltin cddl/compat/opensolaris/include cddl/compat/opensolaris/misc cddl/contrib/opensolaris ... X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2011 00:05:30 -0000 Author: aalvarez Date: Tue Jul 12 00:05:23 2011 New Revision: 224134 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224134 Log: Merge updates from HEAD Added: soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/abi.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/abi.h soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/divmodsi4.S - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/arm/divmodsi4.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/divsi3.S - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/arm/divsi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/softfloat-alias.list - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/arm/softfloat-alias.list soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/udivmodsi4.S - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/arm/udivmodsi4.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/udivsi3.S - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/arm/udivsi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/umodsi3.S - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/arm/umodsi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divmoddi4.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/divmoddi4.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divmodsi4.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/divmodsi4.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/subdf3.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/subdf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/subsf3.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/subsf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/udivmodsi4.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/compiler-rt/lib/udivmodsi4.c soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/ADT/PackedVector.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/ADT/PackedVector.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/DefaultPasses.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/DefaultPasses.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCWin64EH.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/MC/MCWin64EH.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/BranchProbability.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/BranchProbability.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/PassManagerBuilder.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/PassManagerBuilder.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/Win64EH.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/include/llvm/Support/Win64EH.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegisterClassInfo.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/CodeGen/RegisterClassInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCWin64EH.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/MC/MCWin64EH.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/BranchProbability.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/Support/BranchProbability.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/SetTheory.cpp - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/utils/TableGen/SetTheory.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/SetTheory.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/llvm/utils/TableGen/SetTheory.h soc2011/aalvarez/pbmac/contrib/sendmail/cf/ostype/solaris11.m4 - copied unchanged from r224128, mirror/FreeBSD/head/contrib/sendmail/cf/ostype/solaris11.m4 soc2011/aalvarez/pbmac/contrib/tnftp/ (props changed) - copied from r224128, mirror/FreeBSD/head/contrib/tnftp/ soc2011/aalvarez/pbmac/contrib/xz/po/fr.po - copied unchanged from r224128, mirror/FreeBSD/head/contrib/xz/po/fr.po soc2011/aalvarez/pbmac/contrib/xz/po/pl.po - copied unchanged from r224128, mirror/FreeBSD/head/contrib/xz/po/pl.po soc2011/aalvarez/pbmac/etc/devd/usb.conf - copied unchanged from r224128, mirror/FreeBSD/head/etc/devd/usb.conf soc2011/aalvarez/pbmac/etc/rc.d/kld - copied unchanged from r224128, mirror/FreeBSD/head/etc/rc.d/kld soc2011/aalvarez/pbmac/etc/rc.d/netwait - copied unchanged from r224128, mirror/FreeBSD/head/etc/rc.d/netwait soc2011/aalvarez/pbmac/lib/libthr/arch/sparc64/sparc64/_umtx_op_err.S - copied unchanged from r224128, mirror/FreeBSD/head/lib/libthr/arch/sparc64/sparc64/_umtx_op_err.S soc2011/aalvarez/pbmac/lib/libusb/libusb01.c - copied unchanged from r224128, mirror/FreeBSD/head/lib/libusb/libusb01.c soc2011/aalvarez/pbmac/release/ia64/make-memstick.sh - copied unchanged from r224128, mirror/FreeBSD/head/release/ia64/make-memstick.sh soc2011/aalvarez/pbmac/sbin/ifconfig/iffib.c - copied unchanged from r224128, mirror/FreeBSD/head/sbin/ifconfig/iffib.c soc2011/aalvarez/pbmac/share/man/man4/ath_ahb.4 - copied unchanged from r224128, mirror/FreeBSD/head/share/man/man4/ath_ahb.4 soc2011/aalvarez/pbmac/share/man/man4/ath_pci.4 - copied unchanged from r224128, mirror/FreeBSD/head/share/man/man4/ath_pci.4 soc2011/aalvarez/pbmac/share/man/man4/umcs.4 - copied unchanged from r224128, mirror/FreeBSD/head/share/man/man4/umcs.4 soc2011/aalvarez/pbmac/share/man/man9/vm_map_sync.9 - copied unchanged from r224128, mirror/FreeBSD/head/share/man/man9/vm_map_sync.9 soc2011/aalvarez/pbmac/sys/boot/common/disk.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/common/disk.c soc2011/aalvarez/pbmac/sys/boot/common/disk.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/common/disk.h soc2011/aalvarez/pbmac/sys/boot/ficl/amd64/ - copied from r224128, mirror/FreeBSD/head/sys/boot/ficl/amd64/ soc2011/aalvarez/pbmac/sys/boot/forth/beastie.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/beastie.4th.8 soc2011/aalvarez/pbmac/sys/boot/forth/brand.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/brand.4th soc2011/aalvarez/pbmac/sys/boot/forth/brand.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/brand.4th.8 soc2011/aalvarez/pbmac/sys/boot/forth/check-password.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/check-password.4th soc2011/aalvarez/pbmac/sys/boot/forth/check-password.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/check-password.4th.8 soc2011/aalvarez/pbmac/sys/boot/forth/color.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/color.4th soc2011/aalvarez/pbmac/sys/boot/forth/color.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/color.4th.8 soc2011/aalvarez/pbmac/sys/boot/forth/delay.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/delay.4th soc2011/aalvarez/pbmac/sys/boot/forth/delay.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/delay.4th.8 soc2011/aalvarez/pbmac/sys/boot/forth/menu-commands.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/menu-commands.4th soc2011/aalvarez/pbmac/sys/boot/forth/menu.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/menu.4th soc2011/aalvarez/pbmac/sys/boot/forth/menu.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/menu.4th.8 soc2011/aalvarez/pbmac/sys/boot/forth/menu.rc - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/menu.rc soc2011/aalvarez/pbmac/sys/boot/forth/shortcuts.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/shortcuts.4th soc2011/aalvarez/pbmac/sys/boot/forth/version.4th - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/version.4th soc2011/aalvarez/pbmac/sys/boot/forth/version.4th.8 - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/forth/version.4th.8 soc2011/aalvarez/pbmac/sys/boot/ia64/common/icache.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/ia64/common/icache.c soc2011/aalvarez/pbmac/sys/boot/userboot/ - copied from r224128, mirror/FreeBSD/head/sys/boot/userboot/ soc2011/aalvarez/pbmac/sys/contrib/pf/net/if_pflow.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/contrib/pf/net/if_pflow.h soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_lb.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/contrib/pf/net/pf_lb.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_dfs/ - copied from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_dfs/ soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287.ini - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287.ini soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_olc.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_olc.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287_reset.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287_reset.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287an.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287an.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9287phy.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_hal/ar9002/ar9287phy.h soc2011/aalvarez/pbmac/sys/dev/ath/if_athdfs.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/if_athdfs.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/common/jhash.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/cxgbe/common/jhash.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/t4_l2t.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/cxgbe/t4_l2t.c soc2011/aalvarez/pbmac/sys/dev/cxgbe/t4_l2t.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/cxgbe/t4_l2t.h soc2011/aalvarez/pbmac/sys/dev/iicbus/ad7417.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/iicbus/ad7417.c soc2011/aalvarez/pbmac/sys/dev/pci/pci_subr.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/pci/pci_subr.c soc2011/aalvarez/pbmac/sys/dev/rt/ - copied from r224128, mirror/FreeBSD/head/sys/dev/rt/ soc2011/aalvarez/pbmac/sys/dev/usb/net/if_usie.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/net/if_usie.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_usievar.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/net/if_usievar.h soc2011/aalvarez/pbmac/sys/dev/usb/serial/umcs.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/serial/umcs.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/umcs.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/serial/umcs.h soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_audio.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/template/usb_template_audio.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_kbd.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/template/usb_template_kbd.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_modem.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/template/usb_template_modem.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_mouse.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/usb/template/usb_template_mouse.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clkdtrace.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/fs/nfsclient/nfs_clkdtrace.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_kdtrace.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/fs/nfsclient/nfs_kdtrace.h soc2011/aalvarez/pbmac/sys/modules/dtrace/dtnfscl/ - copied from r224128, mirror/FreeBSD/head/sys/modules/dtrace/dtnfscl/ soc2011/aalvarez/pbmac/sys/modules/pfsync/ - copied from r224128, mirror/FreeBSD/head/sys/modules/pfsync/ soc2011/aalvarez/pbmac/sys/modules/usb/umcs/ - copied from r224128, mirror/FreeBSD/head/sys/modules/usb/umcs/ soc2011/aalvarez/pbmac/sys/modules/usb/usie/ - copied from r224128, mirror/FreeBSD/head/sys/modules/usb/usie/ soc2011/aalvarez/pbmac/sys/netinet/in_pcbgroup.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/netinet/in_pcbgroup.c soc2011/aalvarez/pbmac/sys/netinet6/in6_pcbgroup.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/netinet6/in6_pcbgroup.c soc2011/aalvarez/pbmac/sys/powerpc/include/rtas.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/include/rtas.h soc2011/aalvarez/pbmac/sys/powerpc/ofw/ofwcall32.S - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/ofw/ofwcall32.S soc2011/aalvarez/pbmac/sys/powerpc/ofw/ofwcall64.S - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/ofw/ofwcall64.S soc2011/aalvarez/pbmac/sys/powerpc/ofw/ofwmagic.S - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/ofw/ofwmagic.S soc2011/aalvarez/pbmac/sys/powerpc/ofw/rtas.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/ofw/rtas.c soc2011/aalvarez/pbmac/sys/powerpc/powermac/powermac_thermal.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/powermac/powermac_thermal.c soc2011/aalvarez/pbmac/sys/powerpc/powermac/powermac_thermal.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/powermac/powermac_thermal.h soc2011/aalvarez/pbmac/sys/powerpc/powermac/windtunnel.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/powermac/windtunnel.c soc2011/aalvarez/pbmac/sys/powerpc/ps3/ohci_ps3.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/ps3/ohci_ps3.c soc2011/aalvarez/pbmac/sys/powerpc/ps3/ps3disk.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/powerpc/ps3/ps3disk.c soc2011/aalvarez/pbmac/sys/sys/_cpuset.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/sys/_cpuset.h soc2011/aalvarez/pbmac/sys/x86/include/pci_cfgreg.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/x86/include/pci_cfgreg.h soc2011/aalvarez/pbmac/sys/x86/pci/pci_bus.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/x86/pci/pci_bus.c soc2011/aalvarez/pbmac/tools/build/options/WITHOUT_UTMPX - copied unchanged from r224128, mirror/FreeBSD/head/tools/build/options/WITHOUT_UTMPX soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/case10.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/case10.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/case6.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/case6.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/case7.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/case7.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/case8.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/case8.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/case9.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/case9.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/cd5.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/cd5.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/cd6.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/cd6.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/cd7.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/cd7.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/export1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/export1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/set1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/set1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/set2.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/builtins/set2.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/bg4.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/bg4.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-n1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-n1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-n2.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-n2.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-n3.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-n3.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-n4.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-n4.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-x1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-x1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-x2.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-x2.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/execution/set-x3.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/execution/set-x3.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/expansion/cmdsubst11.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/expansion/cmdsubst11.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/expansion/heredoc1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/expansion/heredoc1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/expansion/heredoc2.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/expansion/heredoc2.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/expansion/ifs4.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/expansion/ifs4.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parameters/env1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parameters/env1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/func2.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/func2.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/func3.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/func3.0 soc2011/aalvarez/pbmac/tools/regression/lib/libc/gen/test-posix_spawn.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/lib/libc/gen/test-posix_spawn.c soc2011/aalvarez/pbmac/tools/regression/netinet/ipdivert/ - copied from r224128, mirror/FreeBSD/head/tools/regression/netinet/ipdivert/ soc2011/aalvarez/pbmac/tools/regression/usr.bin/printf/regress.l1.out - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/usr.bin/printf/regress.l1.out soc2011/aalvarez/pbmac/tools/regression/usr.bin/printf/regress.l2.out - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/usr.bin/printf/regress.l2.out soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/ - copied from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/ soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/ - copied from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/ soc2011/aalvarez/pbmac/tools/tools/cxgbetool/ - copied from r224128, mirror/FreeBSD/head/tools/tools/cxgbetool/ soc2011/aalvarez/pbmac/usr.bin/ftp/tnftp_config.h - copied unchanged from r224128, mirror/FreeBSD/head/usr.bin/ftp/tnftp_config.h soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/bsdinstall.8 - copied unchanged from r224128, mirror/FreeBSD/head/usr.sbin/bsdinstall/bsdinstall.8 soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/scripts/docsinstall - copied unchanged from r224128, mirror/FreeBSD/head/usr.sbin/bsdinstall/scripts/docsinstall soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/scripts/netconfig_ipv4 - copied unchanged from r224128, mirror/FreeBSD/head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/scripts/netconfig_ipv6 - copied unchanged from r224128, mirror/FreeBSD/head/usr.sbin/bsdinstall/scripts/netconfig_ipv6 soc2011/aalvarez/pbmac/usr.sbin/makefs/mtree.c - copied unchanged from r224128, mirror/FreeBSD/head/usr.sbin/makefs/mtree.c Replaced: soc2011/aalvarez/pbmac/contrib/tnftp/COPYING - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/COPYING soc2011/aalvarez/pbmac/contrib/tnftp/ChangeLog - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/ChangeLog soc2011/aalvarez/pbmac/contrib/tnftp/INSTALL - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/INSTALL soc2011/aalvarez/pbmac/contrib/tnftp/Makefile.am - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/Makefile.am soc2011/aalvarez/pbmac/contrib/tnftp/Makefile.in - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/Makefile.in soc2011/aalvarez/pbmac/contrib/tnftp/NEWS - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/NEWS soc2011/aalvarez/pbmac/contrib/tnftp/README - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/README soc2011/aalvarez/pbmac/contrib/tnftp/THANKS - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/THANKS soc2011/aalvarez/pbmac/contrib/tnftp/src/ - copied from r224128, mirror/FreeBSD/head/contrib/tnftp/src/ soc2011/aalvarez/pbmac/contrib/tnftp/src/Makefile.am - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/Makefile.am soc2011/aalvarez/pbmac/contrib/tnftp/src/Makefile.in - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/Makefile.in soc2011/aalvarez/pbmac/contrib/tnftp/src/cmds.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/cmds.c soc2011/aalvarez/pbmac/contrib/tnftp/src/cmdtab.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/cmdtab.c soc2011/aalvarez/pbmac/contrib/tnftp/src/complete.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/complete.c soc2011/aalvarez/pbmac/contrib/tnftp/src/domacro.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/domacro.c soc2011/aalvarez/pbmac/contrib/tnftp/src/extern.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/extern.h soc2011/aalvarez/pbmac/contrib/tnftp/src/fetch.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/fetch.c soc2011/aalvarez/pbmac/contrib/tnftp/src/ftp.1 - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/ftp.1 soc2011/aalvarez/pbmac/contrib/tnftp/src/ftp.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/ftp.c soc2011/aalvarez/pbmac/contrib/tnftp/src/ftp_var.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/ftp_var.h soc2011/aalvarez/pbmac/contrib/tnftp/src/main.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/main.c soc2011/aalvarez/pbmac/contrib/tnftp/src/progressbar.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/progressbar.c soc2011/aalvarez/pbmac/contrib/tnftp/src/progressbar.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/progressbar.h soc2011/aalvarez/pbmac/contrib/tnftp/src/ruserpass.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/ruserpass.c soc2011/aalvarez/pbmac/contrib/tnftp/src/util.c - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/util.c soc2011/aalvarez/pbmac/contrib/tnftp/src/version.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/src/version.h soc2011/aalvarez/pbmac/contrib/tnftp/tnftp.h - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/tnftp.h soc2011/aalvarez/pbmac/contrib/tnftp/todo - copied unchanged from r224128, mirror/FreeBSD/head/contrib/tnftp/todo soc2011/aalvarez/pbmac/share/man/man4/geom_map.4 - copied unchanged from r224128, mirror/FreeBSD/head/share/man/man4/geom_map.4 soc2011/aalvarez/pbmac/sys/boot/ficl/amd64/sysdep.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/ficl/amd64/sysdep.c soc2011/aalvarez/pbmac/sys/boot/ficl/amd64/sysdep.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/ficl/amd64/sysdep.h soc2011/aalvarez/pbmac/sys/boot/userboot/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/Makefile soc2011/aalvarez/pbmac/sys/boot/userboot/ficl/ - copied from r224128, mirror/FreeBSD/head/sys/boot/userboot/ficl/ soc2011/aalvarez/pbmac/sys/boot/userboot/ficl/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/ficl/Makefile soc2011/aalvarez/pbmac/sys/boot/userboot/libstand/ - copied from r224128, mirror/FreeBSD/head/sys/boot/userboot/libstand/ soc2011/aalvarez/pbmac/sys/boot/userboot/libstand/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/libstand/Makefile soc2011/aalvarez/pbmac/sys/boot/userboot/libstand/amd64/ - copied from r224128, mirror/FreeBSD/head/sys/boot/userboot/libstand/amd64/ soc2011/aalvarez/pbmac/sys/boot/userboot/libstand/amd64/_setjmp.S - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/libstand/amd64/_setjmp.S soc2011/aalvarez/pbmac/sys/boot/userboot/test/ - copied from r224128, mirror/FreeBSD/head/sys/boot/userboot/test/ soc2011/aalvarez/pbmac/sys/boot/userboot/test/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/test/Makefile soc2011/aalvarez/pbmac/sys/boot/userboot/test/test.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/test/test.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/ - copied from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/ soc2011/aalvarez/pbmac/sys/boot/userboot/userboot.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot.h soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/Makefile soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/autoload.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/autoload.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/bootinfo.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/bootinfo.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/bootinfo32.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/bootinfo32.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/bootinfo64.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/bootinfo64.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/conf.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/conf.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/copy.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/copy.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/devicename.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/devicename.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/elf32_freebsd.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/elf32_freebsd.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/elf64_freebsd.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/elf64_freebsd.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/host.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/host.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/libuserboot.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/libuserboot.h soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/main.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/main.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/userboot_cons.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/userboot_cons.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/userboot_disk.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/userboot_disk.c soc2011/aalvarez/pbmac/sys/boot/userboot/userboot/version - copied unchanged from r224128, mirror/FreeBSD/head/sys/boot/userboot/userboot/version soc2011/aalvarez/pbmac/sys/dev/ath/ath_dfs/null/ - copied from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_dfs/null/ soc2011/aalvarez/pbmac/sys/dev/ath/ath_dfs/null/dfs_null.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/ath/ath_dfs/null/dfs_null.c soc2011/aalvarez/pbmac/sys/dev/rt/if_rt.c - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/rt/if_rt.c soc2011/aalvarez/pbmac/sys/dev/rt/if_rtreg.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/rt/if_rtreg.h soc2011/aalvarez/pbmac/sys/dev/rt/if_rtvar.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/dev/rt/if_rtvar.h soc2011/aalvarez/pbmac/sys/modules/dtrace/dtnfscl/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/modules/dtrace/dtnfscl/Makefile soc2011/aalvarez/pbmac/sys/modules/pfsync/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/modules/pfsync/Makefile soc2011/aalvarez/pbmac/sys/modules/usb/umcs/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/modules/usb/umcs/Makefile soc2011/aalvarez/pbmac/sys/modules/usb/usie/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/sys/modules/usb/usie/Makefile soc2011/aalvarez/pbmac/sys/nfs/nfs_kdtrace.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/nfs/nfs_kdtrace.h soc2011/aalvarez/pbmac/sys/sys/_stdint.h - copied unchanged from r224128, mirror/FreeBSD/head/sys/sys/_stdint.h soc2011/aalvarez/pbmac/tools/build/options/WITHOUT_GPIO - copied unchanged from r224128, mirror/FreeBSD/head/tools/build/options/WITHOUT_GPIO soc2011/aalvarez/pbmac/tools/build/options/WITH_OFED - copied unchanged from r224128, mirror/FreeBSD/head/tools/build/options/WITH_OFED soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote1.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote1.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote2.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote2.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote3.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote3.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote4.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote4.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote5.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote5.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote6.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote6.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote7.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote7.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote8.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote8.0 soc2011/aalvarez/pbmac/tools/regression/bin/sh/parser/dollar-quote9.0 - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/bin/sh/parser/dollar-quote9.0 soc2011/aalvarez/pbmac/tools/regression/netinet/ipdivert/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/netinet/ipdivert/Makefile soc2011/aalvarez/pbmac/tools/regression/netinet/ipdivert/ipdivert.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/regression/netinet/ipdivert/ipdivert.c soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/9287.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/9287.c soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/9287.h - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/9287.h soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/Makefile soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/eeprom.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/eeprom.c soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/eeprom.h - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/eeprom.h soc2011/aalvarez/pbmac/tools/tools/ath/ath_ee_9287_print/main.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/ath/ath_ee_9287_print/main.c soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/Makefile soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_autoconf.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_autoconf.c soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_autoconf.h - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_autoconf.h soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_autoconf.sh - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_autoconf.sh soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_autoconf_format_example.txt - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_autoconf_format_example.txt soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_load_file.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_load_file.c soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_load_file.h - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_load_file.h soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_sections.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_sections.c soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_sections.h - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_sections.h soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_usb.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_usb.c soc2011/aalvarez/pbmac/tools/tools/bus_autoconf/bus_usb.h - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/bus_autoconf/bus_usb.h soc2011/aalvarez/pbmac/tools/tools/cxgbetool/Makefile - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/cxgbetool/Makefile soc2011/aalvarez/pbmac/tools/tools/cxgbetool/cxgbetool.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/cxgbetool/cxgbetool.c soc2011/aalvarez/pbmac/tools/tools/cxgbetool/reg_defs_t4.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/cxgbetool/reg_defs_t4.c soc2011/aalvarez/pbmac/tools/tools/cxgbetool/reg_defs_t4vf.c - copied unchanged from r224128, mirror/FreeBSD/head/tools/tools/cxgbetool/reg_defs_t4vf.c Deleted: soc2011/aalvarez/pbmac/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.html soc2011/aalvarez/pbmac/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.pdf soc2011/aalvarez/pbmac/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.txt soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/StandardPasses.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfTableException.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/MCJIT/TargetSelect.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/DiagChecker.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Tooling/JsonCompileCommandLineDatabase.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Tooling/JsonCompileCommandLineDatabase.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp soc2011/aalvarez/pbmac/contrib/lukemftp/ soc2011/aalvarez/pbmac/etc/rc.d/nfsserver soc2011/aalvarez/pbmac/lib/libusb/libusb20_compat01.c soc2011/aalvarez/pbmac/share/man/man9/vm_map_clean.9 soc2011/aalvarez/pbmac/share/man/man9/vm_page_copy.9 soc2011/aalvarez/pbmac/share/man/man9/vm_page_protect.9 soc2011/aalvarez/pbmac/share/man/man9/vm_page_zero_fill.9 soc2011/aalvarez/pbmac/sys/amd64/pci/pci_bus.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_subr.c soc2011/aalvarez/pbmac/sys/i386/pci/pci_bus.c soc2011/aalvarez/pbmac/sys/powerpc/aim/ofwmagic.S soc2011/aalvarez/pbmac/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk soc2011/aalvarez/pbmac/usr.bin/ftp/config.h Modified: soc2011/aalvarez/pbmac/ (props changed) soc2011/aalvarez/pbmac/Makefile soc2011/aalvarez/pbmac/Makefile.inc1 soc2011/aalvarez/pbmac/ObsoleteFiles.inc soc2011/aalvarez/pbmac/UPDATING soc2011/aalvarez/pbmac/bin/expr/expr.1 soc2011/aalvarez/pbmac/bin/expr/expr.y soc2011/aalvarez/pbmac/bin/ps/extern.h soc2011/aalvarez/pbmac/bin/ps/keyword.c soc2011/aalvarez/pbmac/bin/ps/print.c soc2011/aalvarez/pbmac/bin/ps/ps.1 soc2011/aalvarez/pbmac/bin/rcp/rcp.c soc2011/aalvarez/pbmac/bin/realpath/realpath.1 soc2011/aalvarez/pbmac/bin/realpath/realpath.c soc2011/aalvarez/pbmac/bin/sh/TOUR soc2011/aalvarez/pbmac/bin/sh/alias.c soc2011/aalvarez/pbmac/bin/sh/alias.h soc2011/aalvarez/pbmac/bin/sh/arith.h soc2011/aalvarez/pbmac/bin/sh/arith_yacc.c soc2011/aalvarez/pbmac/bin/sh/bltin/bltin.h soc2011/aalvarez/pbmac/bin/sh/builtins.def soc2011/aalvarez/pbmac/bin/sh/cd.c soc2011/aalvarez/pbmac/bin/sh/cd.h soc2011/aalvarez/pbmac/bin/sh/eval.c soc2011/aalvarez/pbmac/bin/sh/eval.h soc2011/aalvarez/pbmac/bin/sh/exec.h soc2011/aalvarez/pbmac/bin/sh/expand.c soc2011/aalvarez/pbmac/bin/sh/expand.h soc2011/aalvarez/pbmac/bin/sh/histedit.c soc2011/aalvarez/pbmac/bin/sh/input.c soc2011/aalvarez/pbmac/bin/sh/jobs.c soc2011/aalvarez/pbmac/bin/sh/jobs.h soc2011/aalvarez/pbmac/bin/sh/main.c soc2011/aalvarez/pbmac/bin/sh/main.h soc2011/aalvarez/pbmac/bin/sh/mkbuiltins soc2011/aalvarez/pbmac/bin/sh/mkinit.c soc2011/aalvarez/pbmac/bin/sh/mktokens soc2011/aalvarez/pbmac/bin/sh/myhistedit.h soc2011/aalvarez/pbmac/bin/sh/nodetypes soc2011/aalvarez/pbmac/bin/sh/options.c soc2011/aalvarez/pbmac/bin/sh/options.h soc2011/aalvarez/pbmac/bin/sh/parser.c soc2011/aalvarez/pbmac/bin/sh/parser.h soc2011/aalvarez/pbmac/bin/sh/sh.1 soc2011/aalvarez/pbmac/bin/sh/trap.c soc2011/aalvarez/pbmac/bin/sh/trap.h soc2011/aalvarez/pbmac/bin/sh/var.c soc2011/aalvarez/pbmac/bin/sh/var.h soc2011/aalvarez/pbmac/cddl/compat/opensolaris/include/assert.h soc2011/aalvarez/pbmac/cddl/compat/opensolaris/misc/fsshare.c soc2011/aalvarez/pbmac/cddl/contrib/opensolaris/ (props changed) soc2011/aalvarez/pbmac/cddl/contrib/opensolaris/cmd/zfs/zfs.8 soc2011/aalvarez/pbmac/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c soc2011/aalvarez/pbmac/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c soc2011/aalvarez/pbmac/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c soc2011/aalvarez/pbmac/contrib/bind9/ (props changed) soc2011/aalvarez/pbmac/contrib/bind9/CHANGES soc2011/aalvarez/pbmac/contrib/bind9/FAQ.xml soc2011/aalvarez/pbmac/contrib/bind9/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/README.idnkit soc2011/aalvarez/pbmac/contrib/bind9/acconfig.h soc2011/aalvarez/pbmac/contrib/bind9/bin/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/check/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/check/named-checkconf.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/check/named-checkconf.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/check/named-checkconf.html soc2011/aalvarez/pbmac/contrib/bind9/bin/check/named-checkzone.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/check/named-checkzone.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/check/named-checkzone.html soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/dig.1 soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/dig.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/dig.html soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/host.1 soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/host.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/host.html soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/include/dig/dig.h soc2011/aalvarez/pbmac/contrib/bind9/bin/dig/nslookup.c soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-keygen.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-keygen.c soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-keygen.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-signzone.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssec-signzone.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssectool.c soc2011/aalvarez/pbmac/contrib/bind9/bin/dnssec/dnssectool.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/named/bind9.xsl soc2011/aalvarez/pbmac/contrib/bind9/bin/named/bind9.xsl.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/config.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/controlconf.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/convertxsl.pl soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/builtin.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/client.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/config.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/control.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/interfacemgr.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/listenlist.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/log.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/logconf.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/lwaddr.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/lwdclient.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/lwresd.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/lwsearch.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/main.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/notify.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/ns_smf_globals.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/server.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/sortlist.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/statschannel.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/tkeyconf.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/tsigconf.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/types.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/update.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/xfrout.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/include/named/zoneconf.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/interfacemgr.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/listenlist.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/log.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/logconf.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwaddr.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwdclient.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwderror.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwdgabn.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwdgnba.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwdgrbn.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwdnoop.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwresd.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwresd.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwresd.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwresd.html soc2011/aalvarez/pbmac/contrib/bind9/bin/named/lwsearch.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/named.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/named/named.conf.5 soc2011/aalvarez/pbmac/contrib/bind9/bin/named/named.conf.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/named/named.conf.html soc2011/aalvarez/pbmac/contrib/bind9/bin/named/named.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/named/named.html soc2011/aalvarez/pbmac/contrib/bind9/bin/named/notify.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/sortlist.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/statschannel.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/tkeyconf.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/tsigconf.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/unix/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/named/unix/include/named/os.h soc2011/aalvarez/pbmac/contrib/bind9/bin/named/unix/os.c soc2011/aalvarez/pbmac/contrib/bind9/bin/named/zoneconf.c soc2011/aalvarez/pbmac/contrib/bind9/bin/nsupdate/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/nsupdate/nsupdate.c soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/include/rndc/os.h soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc-confgen.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc-confgen.c soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc-confgen.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc-confgen.html soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.8 soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.c soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.conf soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.conf.5 soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.conf.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.conf.html soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.docbook soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/rndc.html soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/unix/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/unix/os.c soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/util.c soc2011/aalvarez/pbmac/contrib/bind9/bin/rndc/util.h soc2011/aalvarez/pbmac/contrib/bind9/doc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Bv9ARM.ch01.html soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Bv9ARM.ch02.html soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Bv9ARM.ch03.html soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Bv9ARM.ch04.html soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Bv9ARM.ch05.html soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Bv9ARM.ch10.html soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/doc/arm/README-SGML soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/dnssec soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/format-options.pl soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/ipv6 soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/migration soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/migration-4to9 soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/rfc-compliance soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/roadmap soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/sdb soc2011/aalvarez/pbmac/contrib/bind9/doc/misc/sort-options.pl soc2011/aalvarez/pbmac/contrib/bind9/isc-config.sh.in soc2011/aalvarez/pbmac/contrib/bind9/lib/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/getaddresses.c soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/include/bind9/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/include/bind9/check.h soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/include/bind9/getaddresses.h soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/include/bind9/version.h soc2011/aalvarez/pbmac/contrib/bind9/lib/bind9/version.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/acache.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/acl.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/api soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/byaddr.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/cache.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/callbacks.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/compress.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/db.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dbiterator.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dbtable.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/diff.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dispatch.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dlz.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dnssec.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/ds.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dst_lib.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dst_openssl.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dst_parse.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dst_parse.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/dst_result.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/forward.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/gen-unix.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/gen.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/gssapi_link.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/hmac_link.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/acache.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/acl.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/adb.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/bit.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/byaddr.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/cache.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/callbacks.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/cert.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/compress.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/db.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/dbiterator.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/dbtable.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/dispatch.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/dlz.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/dnssec.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/ds.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/fixedname.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/forward.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/iptable.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/journal.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/keyflags.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/keytable.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/keyvalues.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/lib.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/log.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/lookup.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/master.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/masterdump.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/message.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/nsec.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/nsec3.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/opcode.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/order.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/peer.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/portlist.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rbt.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rcode.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdata.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdataclass.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdatalist.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdataset.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdatasetiter.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdataslab.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rdatatype.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/request.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/rootns.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/sdb.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/sdlz.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/secalg.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/secproto.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/soa.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/ssu.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/stats.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/tcpmsg.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/time.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/timer.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/tkey.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/ttl.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/version.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/xfrin.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/zonekey.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dns/zt.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dst/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dst/gssapi.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dst/lib.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/include/dst/result.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/iptable.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/key.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/keytable.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/lib.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/log.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/lookup.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/master.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/masterdump.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/message.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/ncache.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/nsec.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/nsec3.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/openssldh_link.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/openssldsa_link.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/opensslrsa_link.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/order.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/peer.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/portlist.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rbt.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rbtdb.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rbtdb.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rbtdb64.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rbtdb64.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rcode.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/ch_3/a_1.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/ch_3/a_1.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/cert_37.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/cert_37.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/cname_5.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/cname_5.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/dname_39.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/dname_39.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ds_43.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ds_43.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/gpos_27.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/gpos_27.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/isdn_20.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/isdn_20.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/key_25.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/key_25.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/loc_29.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/loc_29.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mb_7.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mb_7.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/md_3.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/md_3.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mf_4.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mf_4.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mg_8.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mg_8.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/minfo_14.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/minfo_14.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mr_9.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mr_9.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mx_15.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/mx_15.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ns_2.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ns_2.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nsec_47.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/null_10.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/null_10.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nxt_30.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/nxt_30.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/opt_41.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/opt_41.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/proforma.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/proforma.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ptr_12.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/ptr_12.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/rp_17.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/rp_17.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/rt_21.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/rt_21.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/sig_24.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/sig_24.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/soa_6.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/soa_6.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/spf_99.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/spf_99.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/tkey_249.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/tkey_249.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/txt_16.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/txt_16.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/unspec_103.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/unspec_103.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/x25_19.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/generic/x25_19.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/hs_4/a_1.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/hs_4/a_1.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/a6_38.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/a6_38.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/a_1.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/a_1.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/apl_42.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/apl_42.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/kx_36.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/kx_36.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/px_26.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/px_26.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/srv_33.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/srv_33.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/wks_11.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/in_1/wks_11.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/rdatastructpre.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdata/rdatastructsuf.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdatalist_p.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdataset.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/rdatasetiter.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/request.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/resolver.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/soa.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/spnego.asn1 soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/spnego.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/spnego.h soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/spnego_asn1.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/spnego_asn1.pl soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/ssu.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/stats.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/tcpmsg.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/timer.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/ttl.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/validator.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/version.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/xfrin.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/zonekey.c soc2011/aalvarez/pbmac/contrib/bind9/lib/dns/zt.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/alpha/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/alpha/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/alpha/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/assertions.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/base32.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/base64.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/bitstring.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/buffer.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/bufferlist.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/commandline.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/error.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/event.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/fsaccess.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/hash.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/heap.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/hex.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/hmacmd5.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/hmacsha.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/httpd.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/ia64/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/ia64/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/ia64/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/app.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/assertions.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/base32.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/base64.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/bitstring.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/boolean.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/buffer.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/bufferlist.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/commandline.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/entropy.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/error.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/event.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/eventclass.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/file.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/formatcheck.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/fsaccess.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/hash.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/heap.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/hex.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/hmacmd5.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/hmacsha.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/httpd.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/interfaceiter.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/ipv6.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/iterated_hash.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/lang.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/lex.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/lfsr.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/lib.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/list.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/log.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/magic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/md5.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/msgcat.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/msgs.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/mutexblock.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/netaddr.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/netscope.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/ondestroy.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/os.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/parseint.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/portset.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/print.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/quota.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/radix.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/random.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/ratelimiter.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/refcount.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/region.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/resource.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/result.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/resultclass.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/rwlock.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/serial.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/sha1.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/sha2.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/sockaddr.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/socket.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/stats.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/stdio.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/stdlib.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/string.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/symtab.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/taskpool.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/timer.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/types.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/util.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/version.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/include/isc/xml.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/inet_aton.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/inet_ntop.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/inet_pton.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/iterated_hash.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/lex.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/lfsr.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/lib.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/log.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/md5.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/mips/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/mips/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/mips/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/mips/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/mutexblock.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/netaddr.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/netscope.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nls/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nls/msgcat.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/noatomic/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/noatomic/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/noatomic/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/condition.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/include/isc/condition.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/include/isc/mutex.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/include/isc/once.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/include/isc/thread.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/mutex.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/nothreads/thread.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/ondestroy.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/parseint.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/portset.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/powerpc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/powerpc/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/powerpc/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/condition.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/include/isc/condition.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/include/isc/mutex.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/include/isc/once.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/include/isc/thread.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/pthreads/thread.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/quota.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/radix.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/random.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/ratelimiter.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/refcount.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/region.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/result.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/rwlock.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/serial.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sha1.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sha2.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sockaddr.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sparc64/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sparc64/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/sparc64/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/stats.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/string.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/strtoul.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/symtab.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/task_p.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/taskpool.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/timer.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/timer_p.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/app.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/dir.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/entropy.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/errno2result.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/errno2result.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/file.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/fsaccess.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/ifiter_getifaddrs.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/ifiter_ioctl.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/ifiter_sysctl.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/dir.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/int.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/keyboard.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/net.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/netdb.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/offset.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/stat.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/stdtime.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/strerror.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/syslog.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/include/isc/time.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/interfaceiter.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/ipv6.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/keyboard.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/net.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/os.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/resource.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/socket_p.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/stdio.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/stdtime.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/strerror.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/syslog.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/unix/time.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/version.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_32/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_32/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_32/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_64/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_64/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isc/x86_64/include/isc/atomic.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/alist.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/base64.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/cc.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/ccmsg.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/alist.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/base64.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/cc.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/ccmsg.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/events.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/lib.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/result.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/sexpr.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/symtab.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/symtype.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/types.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/util.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/include/isccc/version.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/lib.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/result.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/sexpr.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/symtab.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccc/version.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/aclconf.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/aclconf.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/cfg.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/grammar.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/log.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/namedconf.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/include/isccfg/version.h soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/log.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/parser.c soc2011/aalvarez/pbmac/contrib/bind9/lib/isccfg/version.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/assert_p.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/context.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/context_p.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/gai_strerror.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/getaddrinfo.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/gethost.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/getipnode.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/getnameinfo.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/getrrset.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/herror.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/context.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/int.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/ipv6.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/lang.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/list.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/lwbuffer.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/lwpacket.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/lwres.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/netdb.h.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/platform.h.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/result.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/stdlib.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/include/lwres/version.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwbuffer.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwconfig.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwinetaton.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwinetntop.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwinetpton.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwpacket.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwres_gabn.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwres_gnba.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwres_grbn.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwres_noop.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/lwresutil.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_buffer.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_buffer.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_config.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_config.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_context.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_context.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gabn.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gabn.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gai_strerror.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gethostent.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gethostent.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getipnode.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getipnode.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getnameinfo.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gnba.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_gnba.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_hstrerror.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_hstrerror.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_inetntop.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_inetntop.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_noop.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_noop.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_packet.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_packet.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_resutil.3 soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/man/lwres_resutil.docbook soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/print.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/strtoul.c soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/unix/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/unix/include/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/unix/include/lwres/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/unix/include/lwres/net.h soc2011/aalvarez/pbmac/contrib/bind9/lib/lwres/version.c soc2011/aalvarez/pbmac/contrib/bind9/make/Makefile.in soc2011/aalvarez/pbmac/contrib/bind9/make/includes.in soc2011/aalvarez/pbmac/contrib/bind9/make/rules.in soc2011/aalvarez/pbmac/contrib/bind9/mkinstalldirs soc2011/aalvarez/pbmac/contrib/bind9/version soc2011/aalvarez/pbmac/contrib/binutils/ (props changed) soc2011/aalvarez/pbmac/contrib/binutils/bfd/coffcode.h soc2011/aalvarez/pbmac/contrib/binutils/bfd/opncls.c soc2011/aalvarez/pbmac/contrib/binutils/bfd/peicode.h soc2011/aalvarez/pbmac/contrib/binutils/gas/config/obj-elf.c soc2011/aalvarez/pbmac/contrib/binutils/gas/config/tc-arm.c soc2011/aalvarez/pbmac/contrib/binutils/gas/frags.c soc2011/aalvarez/pbmac/contrib/binutils/gas/subsegs.c soc2011/aalvarez/pbmac/contrib/binutils/ld/emulparams/elf64bmip-defs.sh soc2011/aalvarez/pbmac/contrib/binutils/ld/ldexp.c soc2011/aalvarez/pbmac/contrib/binutils/ld/sysdep.h soc2011/aalvarez/pbmac/contrib/binutils/opcodes/i386-dis.c soc2011/aalvarez/pbmac/contrib/bzip2/ (props changed) soc2011/aalvarez/pbmac/contrib/compiler-rt/ (props changed) soc2011/aalvarez/pbmac/contrib/compiler-rt/CREDITS.TXT soc2011/aalvarez/pbmac/contrib/compiler-rt/LICENSE.TXT soc2011/aalvarez/pbmac/contrib/compiler-rt/README.txt soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/absvdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/absvsi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/absvti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/adddf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/addsf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/addvdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/addvsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/addvti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/apple_versioning.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/adddf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/addsf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/bswapdi2.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/bswapsi2.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/comparesf2.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/divdf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/divsf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/eqdf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/eqsf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/extendsfdf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/fixdfsivfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/fixsfsivfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/fixunsdfsivfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/fixunssfsivfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/floatsidfvfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/floatsisfvfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/floatunssidfvfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/floatunssisfvfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/gedf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/gesf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/gtdf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/gtsf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/ledf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/lesf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/ltdf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/ltsf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/modsi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/muldf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/mulsf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/nedf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/negdf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/negsf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/nesf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/restore_vfp_d8_d15_regs.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/save_vfp_d8_d15_regs.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/subdf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/subsf3vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/switch16.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/switch32.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/switch8.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/switchu8.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/sync_synchronize.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/truncdfsf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/unorddf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/arm/unordsf2vfp.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ashldi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ashlti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ashrdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ashrti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/assembly.h soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/clear_cache.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/clzdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/clzsi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/clzti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/cmpdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/cmpti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/comparedf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/comparesf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ctzdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ctzsi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ctzti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divdc3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divdf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divsc3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divsf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/divxc3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/enable_execute_stack.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/endianness.h soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/eprintf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/extendsfdf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ffsdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ffsti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixdfdi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixdfsi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixdfti.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixsfdi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixsfsi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixsfti.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunsdfdi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunsdfsi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunsdfti.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunssfdi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunssfsi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunssfti.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunsxfdi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunsxfsi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixunsxfti.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixxfdi.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fixxfti.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatdidf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatdisf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatdixf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatsidf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatsisf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floattidf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floattisf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floattixf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatundidf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatundisf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatundixf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatunsidf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatunsisf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatuntidf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatuntisf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/floatuntixf.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/fp_lib.h soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/gcc_personality_v0.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/ashldi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/ashrdi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/divdi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/floatdidf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/floatdisf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/floatdixf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/floatundidf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/floatundisf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/floatundixf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/lshrdi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/moddi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/muldi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/udivdi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/i386/umoddi3.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/int_lib.h soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/lshrdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/lshrti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/moddi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/modsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/modti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/muldc3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/muldf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/muldi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/mulsc3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/mulsf3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/multi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/mulvdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/mulvsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/mulvti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/mulxc3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negdf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negsf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negvdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negvsi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/negvti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/paritydi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/paritysi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/parityti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/popcountdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/popcountsi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/popcountti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/powidf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/powisf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/powitf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/powixf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ppc/restFP.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ppc/saveFP.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/subvdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/subvsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/subvti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/trampoline_setup.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/truncdfsf2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ucmpdi2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/ucmpti2.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/udivdi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/udivmoddi4.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/udivmodti4.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/udivsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/udivti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/umoddi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/umodsi3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/umodti3.c soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/x86_64/floatundidf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/x86_64/floatundisf.S soc2011/aalvarez/pbmac/contrib/compiler-rt/lib/x86_64/floatundixf.S soc2011/aalvarez/pbmac/contrib/dialog/ (props changed) soc2011/aalvarez/pbmac/contrib/dialog/dialog.h soc2011/aalvarez/pbmac/contrib/ee/ (props changed) soc2011/aalvarez/pbmac/contrib/expat/ (props changed) soc2011/aalvarez/pbmac/contrib/file/ (props changed) soc2011/aalvarez/pbmac/contrib/gcc/ (props changed) soc2011/aalvarez/pbmac/contrib/gcc/c-decl.c soc2011/aalvarez/pbmac/contrib/gcc/c.opt soc2011/aalvarez/pbmac/contrib/gcc/cfg.c soc2011/aalvarez/pbmac/contrib/gcc/common.opt soc2011/aalvarez/pbmac/contrib/gcc/output.h soc2011/aalvarez/pbmac/contrib/gcc/rtl.h soc2011/aalvarez/pbmac/contrib/gcc/tree-nested.c soc2011/aalvarez/pbmac/contrib/gcc/tree.h soc2011/aalvarez/pbmac/contrib/gdb/ (props changed) soc2011/aalvarez/pbmac/contrib/gdb/gdb/ppcfbsd-tdep.c soc2011/aalvarez/pbmac/contrib/gdtoa/ (props changed) soc2011/aalvarez/pbmac/contrib/gnu-sort/ (props changed) soc2011/aalvarez/pbmac/contrib/gperf/src/gen-perf.cc soc2011/aalvarez/pbmac/contrib/gperf/src/key-list.cc soc2011/aalvarez/pbmac/contrib/groff/ (props changed) soc2011/aalvarez/pbmac/contrib/groff/tmac/doc-common soc2011/aalvarez/pbmac/contrib/groff/tmac/doc-syms soc2011/aalvarez/pbmac/contrib/groff/tmac/doc.tmac soc2011/aalvarez/pbmac/contrib/groff/tmac/troffrc soc2011/aalvarez/pbmac/contrib/less/ (props changed) soc2011/aalvarez/pbmac/contrib/less/NEWS soc2011/aalvarez/pbmac/contrib/less/README soc2011/aalvarez/pbmac/contrib/less/command.c soc2011/aalvarez/pbmac/contrib/less/funcs.h soc2011/aalvarez/pbmac/contrib/less/less.man soc2011/aalvarez/pbmac/contrib/less/less.nro soc2011/aalvarez/pbmac/contrib/less/lessecho.man soc2011/aalvarez/pbmac/contrib/less/lessecho.nro soc2011/aalvarez/pbmac/contrib/less/lesskey.man soc2011/aalvarez/pbmac/contrib/less/lesskey.nro soc2011/aalvarez/pbmac/contrib/less/optfunc.c soc2011/aalvarez/pbmac/contrib/less/opttbl.c soc2011/aalvarez/pbmac/contrib/less/version.c soc2011/aalvarez/pbmac/contrib/libpcap/ (props changed) soc2011/aalvarez/pbmac/contrib/libpcap/bpf/net/bpf_filter.c soc2011/aalvarez/pbmac/contrib/libpcap/pcap-bpf.c soc2011/aalvarez/pbmac/contrib/libstdc++/ (props changed) soc2011/aalvarez/pbmac/contrib/llvm/ (props changed) soc2011/aalvarez/pbmac/contrib/llvm/include/llvm-c/Core.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm-c/Disassembler.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/ADT/FoldingSet.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/ADT/StringRef.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/ADT/Triple.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/CallGraph.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/DIBuilder.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/DebugInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/FindUsedTypes.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/IVUsers.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/RegionPass.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Argument.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Attributes.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/FastISel.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/LiveInterval.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/MachineInstr.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/MachineOperand.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/CompilerDriver/Common.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Function.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/InitializePasses.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/IntrinsicInst.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Intrinsics.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/IntrinsicsARM.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/IntrinsicsX86.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/IntrinsicsXCore.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/LinkAllPasses.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCAsmInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCDwarf.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCELFSymbolFlags.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCExpr.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCInstPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/MC/MCStreamer.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Metadata.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Operator.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/Casting.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/Dwarf.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/IRBuilder.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/MemoryBuffer.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/PatternMatch.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/Program.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Support/SourceMgr.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/Target.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetAsmInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetInstrItineraries.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetLowering.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetOptions.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Transforms/Instrumentation.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Transforms/Utils/Local.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h soc2011/aalvarez/pbmac/contrib/llvm/include/llvm/Type.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/Analysis.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/ConstantFolding.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/DIBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/IVUsers.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/InlineCost.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/InstructionSimplify.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/LazyValueInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/Loads.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/RegionPass.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/ScalarEvolution.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Analysis/ValueTracking.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/AsmParser/LLLexer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/AsmParser/LLLexer.h soc2011/aalvarez/pbmac/contrib/llvm/lib/AsmParser/LLParser.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/AsmParser/LLToken.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AllocationOrder.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AllocationOrder.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AntiDepBreaker.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/BranchFolding.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/BranchFolding.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/CallingConvLower.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/IfConversion.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/InlineSpiller.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/LiveDebugVariables.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/LiveRangeEdit.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/MachineFunction.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/MachineInstr.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/MachineVerifier.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegAllocBase.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegAllocFast.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SimpleRegisterCoalescing.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SplitKit.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/SplitKit.h soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/TailDuplication.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/CodeGen/VirtRegMap.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h soc2011/aalvarez/pbmac/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/ELFObjectWriter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/ELFObjectWriter.h soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCAsmInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCAsmStreamer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCAssembler.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCDwarf.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCELF.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCELFStreamer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCExpr.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCInstPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCMachOStreamer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCObjectStreamer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCParser/AsmParser.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/MCStreamer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/MC/WinCOFFStreamer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/APInt.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/Dwarf.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/FoldingSet.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/Host.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/MemoryBuffer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/SourceMgr.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/Unix/Host.inc soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/Unix/Program.inc soc2011/aalvarez/pbmac/contrib/llvm/lib/Support/Windows/Program.inc soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMAsmBackend.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMFixupKinds.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMMCAsmInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/Disassembler/ThumbDisassemblerCore.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Alpha/AlphaISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Alpha/AlphaISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinFrameLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinFrameLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinISelDAGToDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinInstrInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/CBackend/CBackend.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/Mips.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsMCAsmInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTX.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTXISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PTX/PTXSubtarget.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPC.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/TargetLibraryInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/TargetMachine.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/TargetRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86FastISel.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86ISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrCompiler.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrExtension.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrMMX.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86InstrSSE.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86MCAsmInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86MCCodeEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86RegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86RegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/X86/X86Subtarget.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/IPO/DeadTypeElimination.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/GVN.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/LICM.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/Local.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/Attributes.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/AutoUpgrade.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/DebugInfoProbe.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/Function.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/IRBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/InlineAsm.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/Instructions.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/PassManager.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/Type.cpp soc2011/aalvarez/pbmac/contrib/llvm/lib/VMCore/Verifier.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/ (props changed) soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang-c/Index.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/APValue.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/Decl.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/Expr.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/Type.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Driver/Options.td soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Parse/Parser.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/Overload.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/Scope.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/Sema.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Sema/Template.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRState.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/APValue.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/Decl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/Expr.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/Mangle.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/Type.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Analysis/AnalysisContext.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Basic/Targets.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Driver/Driver.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Driver/HostInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Driver/ToolChains.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Driver/Tools.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Driver/Tools.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Headers/emmintrin.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Headers/mmintrin.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Index/CallGraph.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Index/Indexer.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Parse/Parser.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/Sema.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaCXXCast.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicStore.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CXXExprEngine.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FlatStore.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/GRState.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp soc2011/aalvarez/pbmac/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/CodeGenRegisters.h soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/CodeGenTarget.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/CodeGenTarget.h soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/EDEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/FastISelEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/NeonEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/Record.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/TGLexer.cpp soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/TGLexer.h soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/TGParser.h soc2011/aalvarez/pbmac/contrib/llvm/utils/TableGen/TableGen.cpp soc2011/aalvarez/pbmac/contrib/lukemftpd/src/ftpd.c soc2011/aalvarez/pbmac/contrib/ncurses/ (props changed) soc2011/aalvarez/pbmac/contrib/netcat/ (props changed) soc2011/aalvarez/pbmac/contrib/ntp/ (props changed) soc2011/aalvarez/pbmac/contrib/ntp/ntpd/ntp_config.c soc2011/aalvarez/pbmac/contrib/ntp/ntpd/ntp_intres.c soc2011/aalvarez/pbmac/contrib/ntp/ntpd/ntp_io.c soc2011/aalvarez/pbmac/contrib/one-true-awk/ (props changed) soc2011/aalvarez/pbmac/contrib/openbsm/ (props changed) soc2011/aalvarez/pbmac/contrib/openbsm/libbsm/audit_submit.3 soc2011/aalvarez/pbmac/contrib/openpam/ (props changed) soc2011/aalvarez/pbmac/contrib/pf/ (props changed) soc2011/aalvarez/pbmac/contrib/pf/authpf/authpf.8 soc2011/aalvarez/pbmac/contrib/pf/authpf/authpf.c soc2011/aalvarez/pbmac/contrib/pf/authpf/pathnames.h soc2011/aalvarez/pbmac/contrib/pf/ftp-proxy/filter.c soc2011/aalvarez/pbmac/contrib/pf/ftp-proxy/filter.h soc2011/aalvarez/pbmac/contrib/pf/ftp-proxy/ftp-proxy.8 soc2011/aalvarez/pbmac/contrib/pf/ftp-proxy/ftp-proxy.c soc2011/aalvarez/pbmac/contrib/pf/man/pf.4 soc2011/aalvarez/pbmac/contrib/pf/man/pf.conf.5 soc2011/aalvarez/pbmac/contrib/pf/man/pf.os.5 soc2011/aalvarez/pbmac/contrib/pf/man/pflog.4 soc2011/aalvarez/pbmac/contrib/pf/man/pfsync.4 soc2011/aalvarez/pbmac/contrib/pf/pfctl/parse.y soc2011/aalvarez/pbmac/contrib/pf/pfctl/pf_print_state.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl.8 soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl.h soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_altq.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_optimize.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_osfp.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_parser.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_parser.h soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_qstats.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_radix.c soc2011/aalvarez/pbmac/contrib/pf/pfctl/pfctl_table.c soc2011/aalvarez/pbmac/contrib/pf/pflogd/pflogd.8 soc2011/aalvarez/pbmac/contrib/pf/pflogd/pflogd.c soc2011/aalvarez/pbmac/contrib/pf/pflogd/privsep.c soc2011/aalvarez/pbmac/contrib/pf/pflogd/privsep_fdpass.c soc2011/aalvarez/pbmac/contrib/sendmail/ (props changed) soc2011/aalvarez/pbmac/contrib/sendmail/CACerts soc2011/aalvarez/pbmac/contrib/sendmail/FREEBSD-upgrade soc2011/aalvarez/pbmac/contrib/sendmail/KNOWNBUGS soc2011/aalvarez/pbmac/contrib/sendmail/LICENSE soc2011/aalvarez/pbmac/contrib/sendmail/PGPKEYS soc2011/aalvarez/pbmac/contrib/sendmail/RELEASE_NOTES soc2011/aalvarez/pbmac/contrib/sendmail/cf/cf/submit.cf soc2011/aalvarez/pbmac/contrib/sendmail/cf/feature/ldap_routing.m4 soc2011/aalvarez/pbmac/contrib/sendmail/cf/m4/cfhead.m4 soc2011/aalvarez/pbmac/contrib/sendmail/cf/m4/proto.m4 soc2011/aalvarez/pbmac/contrib/sendmail/cf/m4/version.m4 soc2011/aalvarez/pbmac/contrib/sendmail/contrib/qtool.pl soc2011/aalvarez/pbmac/contrib/sendmail/doc/op/op.me soc2011/aalvarez/pbmac/contrib/sendmail/include/sm/conf.h soc2011/aalvarez/pbmac/contrib/sendmail/libmilter/docs/overview.html soc2011/aalvarez/pbmac/contrib/sendmail/libmilter/docs/smfi_stop.html soc2011/aalvarez/pbmac/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html soc2011/aalvarez/pbmac/contrib/sendmail/libmilter/engine.c soc2011/aalvarez/pbmac/contrib/sendmail/libmilter/sm_gethost.c soc2011/aalvarez/pbmac/contrib/sendmail/libmilter/worker.c soc2011/aalvarez/pbmac/contrib/sendmail/libsm/ldap.c soc2011/aalvarez/pbmac/contrib/sendmail/makemap/makemap.c soc2011/aalvarez/pbmac/contrib/sendmail/src/Makefile.m4 soc2011/aalvarez/pbmac/contrib/sendmail/src/conf.c soc2011/aalvarez/pbmac/contrib/sendmail/src/daemon.c soc2011/aalvarez/pbmac/contrib/sendmail/src/deliver.c soc2011/aalvarez/pbmac/contrib/sendmail/src/domain.c soc2011/aalvarez/pbmac/contrib/sendmail/src/envelope.c soc2011/aalvarez/pbmac/contrib/sendmail/src/err.c soc2011/aalvarez/pbmac/contrib/sendmail/src/main.c soc2011/aalvarez/pbmac/contrib/sendmail/src/map.c soc2011/aalvarez/pbmac/contrib/sendmail/src/mci.c soc2011/aalvarez/pbmac/contrib/sendmail/src/parseaddr.c soc2011/aalvarez/pbmac/contrib/sendmail/src/queue.c soc2011/aalvarez/pbmac/contrib/sendmail/src/readcf.c soc2011/aalvarez/pbmac/contrib/sendmail/src/sendmail.8 soc2011/aalvarez/pbmac/contrib/sendmail/src/sendmail.h soc2011/aalvarez/pbmac/contrib/sendmail/src/sm_resolve.c soc2011/aalvarez/pbmac/contrib/sendmail/src/srvrsmtp.c soc2011/aalvarez/pbmac/contrib/sendmail/src/tls.c soc2011/aalvarez/pbmac/contrib/sendmail/src/udb.c soc2011/aalvarez/pbmac/contrib/sendmail/src/usersmtp.c soc2011/aalvarez/pbmac/contrib/sendmail/src/version.c soc2011/aalvarez/pbmac/contrib/tcpdump/ (props changed) soc2011/aalvarez/pbmac/contrib/tcsh/ (props changed) soc2011/aalvarez/pbmac/contrib/top/ (props changed) soc2011/aalvarez/pbmac/contrib/top/commands.c soc2011/aalvarez/pbmac/contrib/top/display.c soc2011/aalvarez/pbmac/contrib/top/install-sh (props changed) soc2011/aalvarez/pbmac/contrib/top/machine.h soc2011/aalvarez/pbmac/contrib/top/top.X soc2011/aalvarez/pbmac/contrib/top/top.c soc2011/aalvarez/pbmac/contrib/top/top.h soc2011/aalvarez/pbmac/contrib/traceroute/traceroute.c soc2011/aalvarez/pbmac/contrib/tzcode/stdtime/ (props changed) soc2011/aalvarez/pbmac/contrib/tzcode/zic/ (props changed) soc2011/aalvarez/pbmac/contrib/tzdata/ (props changed) soc2011/aalvarez/pbmac/contrib/tzdata/antarctica soc2011/aalvarez/pbmac/contrib/tzdata/asia soc2011/aalvarez/pbmac/contrib/tzdata/europe soc2011/aalvarez/pbmac/contrib/tzdata/southamerica soc2011/aalvarez/pbmac/contrib/tzdata/zone.tab soc2011/aalvarez/pbmac/contrib/wpa/ (props changed) soc2011/aalvarez/pbmac/contrib/xz/ (props changed) soc2011/aalvarez/pbmac/contrib/xz/ChangeLog soc2011/aalvarez/pbmac/contrib/xz/FREEBSD-Xlist soc2011/aalvarez/pbmac/contrib/xz/FREEBSD-upgrade soc2011/aalvarez/pbmac/contrib/xz/THANKS soc2011/aalvarez/pbmac/contrib/xz/po/LINGUAS soc2011/aalvarez/pbmac/contrib/xz/po/it.po soc2011/aalvarez/pbmac/contrib/xz/src/common/tuklib_open_stdxxx.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/api/lzma/block.h soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/api/lzma/container.h soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/api/lzma/filter.h soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/api/lzma/version.h soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/alone_decoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/alone_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/block_buffer_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/block_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/common.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/common.h soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/filter_common.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/index.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/index_decoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/index_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/stream_buffer_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/common/stream_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/delta/delta_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/lz/lz_decoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/lz/lz_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/lz/lz_encoder_hash.h soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/lzma/lzma2_decoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/lzma/lzma2_encoder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/simple/arm.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/simple/armthumb.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/simple/ia64.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/simple/powerpc.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/simple/simple_coder.c soc2011/aalvarez/pbmac/contrib/xz/src/liblzma/simple/sparc.c soc2011/aalvarez/pbmac/contrib/xz/src/lzmainfo/lzmainfo.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/coder.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/file_io.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/hardware.h soc2011/aalvarez/pbmac/contrib/xz/src/xz/list.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/message.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/message.h soc2011/aalvarez/pbmac/contrib/xz/src/xz/options.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/signals.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/suffix.c soc2011/aalvarez/pbmac/contrib/xz/src/xz/util.h soc2011/aalvarez/pbmac/contrib/xz/src/xz/xz.1 soc2011/aalvarez/pbmac/contrib/xz/src/xzdec/xzdec.c soc2011/aalvarez/pbmac/crypto/openssh/ (props changed) soc2011/aalvarez/pbmac/crypto/openssl/ (props changed) soc2011/aalvarez/pbmac/etc/defaults/rc.conf soc2011/aalvarez/pbmac/etc/devd/Makefile soc2011/aalvarez/pbmac/etc/devd/uath.conf soc2011/aalvarez/pbmac/etc/network.subr soc2011/aalvarez/pbmac/etc/periodic/daily/800.scrub-zfs soc2011/aalvarez/pbmac/etc/periodic/monthly/Makefile soc2011/aalvarez/pbmac/etc/rc.d/Makefile soc2011/aalvarez/pbmac/etc/rc.d/lockd soc2011/aalvarez/pbmac/etc/rc.d/mountcritremote soc2011/aalvarez/pbmac/etc/rc.d/mountd soc2011/aalvarez/pbmac/etc/rc.d/nfsclient soc2011/aalvarez/pbmac/etc/rc.d/nfsd soc2011/aalvarez/pbmac/etc/rc.d/quota soc2011/aalvarez/pbmac/etc/rc.d/rtadvd soc2011/aalvarez/pbmac/etc/rc.d/statd soc2011/aalvarez/pbmac/etc/rc.d/var soc2011/aalvarez/pbmac/etc/rc.subr soc2011/aalvarez/pbmac/etc/regdomain.xml soc2011/aalvarez/pbmac/etc/sendmail/freebsd.mc soc2011/aalvarez/pbmac/etc/sendmail/freebsd.submit.mc soc2011/aalvarez/pbmac/games/fortune/datfiles/fortunes soc2011/aalvarez/pbmac/gnu/lib/ (props changed) soc2011/aalvarez/pbmac/gnu/usr.bin/Makefile soc2011/aalvarez/pbmac/gnu/usr.bin/binutils/ (props changed) soc2011/aalvarez/pbmac/gnu/usr.bin/cc/cc_tools/ (props changed) soc2011/aalvarez/pbmac/gnu/usr.bin/gdb/ (props changed) soc2011/aalvarez/pbmac/gnu/usr.bin/gdb/kgdb/kthr.c soc2011/aalvarez/pbmac/gnu/usr.bin/grep/Makefile soc2011/aalvarez/pbmac/gnu/usr.bin/groff/tmac/mdoc.local soc2011/aalvarez/pbmac/include/rpc/xdr.h soc2011/aalvarez/pbmac/kerberos5/Makefile soc2011/aalvarez/pbmac/lib/clang/include/clang/Basic/Version.inc soc2011/aalvarez/pbmac/lib/clang/libclangfrontend/Makefile soc2011/aalvarez/pbmac/lib/clang/libllvmasmprinter/Makefile soc2011/aalvarez/pbmac/lib/clang/libllvmcodegen/Makefile soc2011/aalvarez/pbmac/lib/clang/libllvmmc/Makefile soc2011/aalvarez/pbmac/lib/clang/libllvmmipscodegen/Makefile soc2011/aalvarez/pbmac/lib/csu/powerpc64/Makefile soc2011/aalvarez/pbmac/lib/libc/ (props changed) soc2011/aalvarez/pbmac/lib/libc/db/btree/bt_split.c soc2011/aalvarez/pbmac/lib/libc/db/man/mpool.3 soc2011/aalvarez/pbmac/lib/libc/gen/basename.3 soc2011/aalvarez/pbmac/lib/libc/gen/basename.c soc2011/aalvarez/pbmac/lib/libc/gen/feature_present.3 soc2011/aalvarez/pbmac/lib/libc/gen/ftw.c soc2011/aalvarez/pbmac/lib/libc/gen/getutxent.3 soc2011/aalvarez/pbmac/lib/libc/gen/posix_spawn.3 soc2011/aalvarez/pbmac/lib/libc/gen/posix_spawn.c soc2011/aalvarez/pbmac/lib/libc/gen/pututxline.c soc2011/aalvarez/pbmac/lib/libc/gen/sysconf.c soc2011/aalvarez/pbmac/lib/libc/iconv/Symbol.map soc2011/aalvarez/pbmac/lib/libc/iconv/citrus_mapper.c soc2011/aalvarez/pbmac/lib/libc/iconv/iconv.c soc2011/aalvarez/pbmac/lib/libc/iconv/iconvctl.3 soc2011/aalvarez/pbmac/lib/libc/net/sctp_opt_info.3 soc2011/aalvarez/pbmac/lib/libc/net/sctp_sys_calls.c soc2011/aalvarez/pbmac/lib/libc/stdlib/malloc.c soc2011/aalvarez/pbmac/lib/libc/stdlib/ptsname.c soc2011/aalvarez/pbmac/lib/libc/stdtime/ (props changed) soc2011/aalvarez/pbmac/lib/libc/sys/wait.2 soc2011/aalvarez/pbmac/lib/libc/xdr/Makefile.inc soc2011/aalvarez/pbmac/lib/libc/xdr/Symbol.map soc2011/aalvarez/pbmac/lib/libc/xdr/xdr.3 soc2011/aalvarez/pbmac/lib/libc/xdr/xdr_sizeof.c soc2011/aalvarez/pbmac/lib/libcompiler_rt/Makefile soc2011/aalvarez/pbmac/lib/libiconv/Makefile soc2011/aalvarez/pbmac/lib/libkvm/kvm_pcpu.c soc2011/aalvarez/pbmac/lib/liblzma/config.h soc2011/aalvarez/pbmac/lib/libmd/sha256.3 soc2011/aalvarez/pbmac/lib/libmd/sha512.3 soc2011/aalvarez/pbmac/lib/libmemstat/memstat_uma.c soc2011/aalvarez/pbmac/lib/libprocstat/Makefile soc2011/aalvarez/pbmac/lib/libprocstat/libprocstat.c soc2011/aalvarez/pbmac/lib/libstand/bswap.c soc2011/aalvarez/pbmac/lib/libstand/net.c soc2011/aalvarez/pbmac/lib/libstand/stand.h soc2011/aalvarez/pbmac/lib/libstand/tftp.c soc2011/aalvarez/pbmac/lib/libstand/zalloc.c soc2011/aalvarez/pbmac/lib/libstand/zalloc_defs.h soc2011/aalvarez/pbmac/lib/libstand/zalloc_malloc.c soc2011/aalvarez/pbmac/lib/libstand/zalloc_mem.h soc2011/aalvarez/pbmac/lib/libstand/zalloc_protos.h soc2011/aalvarez/pbmac/lib/libthr/arch/sparc64/Makefile.inc soc2011/aalvarez/pbmac/lib/libthr/arch/sparc64/include/pthread_md.h soc2011/aalvarez/pbmac/lib/libthr/arch/sparc64/sparc64/pthread_md.c soc2011/aalvarez/pbmac/lib/libthr/thread/thr_init.c soc2011/aalvarez/pbmac/lib/libusb/Makefile soc2011/aalvarez/pbmac/lib/libusb/libusb10.c soc2011/aalvarez/pbmac/lib/libusb/libusb20.3 soc2011/aalvarez/pbmac/lib/libusb/libusb20.c soc2011/aalvarez/pbmac/lib/libusb/libusb20.h soc2011/aalvarez/pbmac/lib/libusb/libusb20_int.h soc2011/aalvarez/pbmac/lib/libusb/libusb20_ugen20.c soc2011/aalvarez/pbmac/lib/libutil/ (props changed) soc2011/aalvarez/pbmac/lib/libutil/login.conf.5 soc2011/aalvarez/pbmac/lib/libz/ (props changed) soc2011/aalvarez/pbmac/lib/msun/ld128/e_rem_pio2l.h soc2011/aalvarez/pbmac/lib/msun/ld80/e_rem_pio2l.h soc2011/aalvarez/pbmac/lib/msun/src/e_rem_pio2.c soc2011/aalvarez/pbmac/lib/msun/src/s_cosl.c soc2011/aalvarez/pbmac/lib/msun/src/s_sinl.c soc2011/aalvarez/pbmac/lib/msun/src/s_tanl.c soc2011/aalvarez/pbmac/libexec/comsat/comsat.c soc2011/aalvarez/pbmac/libexec/ftpd/ftpd.c soc2011/aalvarez/pbmac/libexec/rtld-elf/Makefile soc2011/aalvarez/pbmac/libexec/rtld-elf/rtld.c soc2011/aalvarez/pbmac/libexec/tftpd/tftp-file.c soc2011/aalvarez/pbmac/libexec/tftpd/tftp-io.c soc2011/aalvarez/pbmac/libexec/tftpd/tftpd.8 soc2011/aalvarez/pbmac/libexec/ulog-helper/Makefile soc2011/aalvarez/pbmac/libexec/ulog-helper/ulog-helper.c soc2011/aalvarez/pbmac/release/Makefile soc2011/aalvarez/pbmac/release/doc/en_US.ISO8859-1/readme/article.sgml soc2011/aalvarez/pbmac/release/doc/en_US.ISO8859-1/relnotes/article.sgml soc2011/aalvarez/pbmac/release/doc/share/sgml/release.ent soc2011/aalvarez/pbmac/release/generate-release.sh soc2011/aalvarez/pbmac/release/ia64/mkisoimages.sh soc2011/aalvarez/pbmac/release/powerpc/mkisoimages.sh soc2011/aalvarez/pbmac/sbin/ (props changed) soc2011/aalvarez/pbmac/sbin/camcontrol/camcontrol.c soc2011/aalvarez/pbmac/sbin/ddb/ddb.8 soc2011/aalvarez/pbmac/sbin/fsck_ffs/suj.c soc2011/aalvarez/pbmac/sbin/geom/class/part/geom_part.c soc2011/aalvarez/pbmac/sbin/geom/class/part/gpart.8 soc2011/aalvarez/pbmac/sbin/geom/class/sched/Makefile soc2011/aalvarez/pbmac/sbin/growfs/growfs.8 soc2011/aalvarez/pbmac/sbin/growfs/growfs.c soc2011/aalvarez/pbmac/sbin/hastctl/Makefile soc2011/aalvarez/pbmac/sbin/hastctl/hastctl.c soc2011/aalvarez/pbmac/sbin/hastd/Makefile soc2011/aalvarez/pbmac/sbin/hastd/activemap.c soc2011/aalvarez/pbmac/sbin/hastd/control.c soc2011/aalvarez/pbmac/sbin/hastd/hast.h soc2011/aalvarez/pbmac/sbin/hastd/primary.c soc2011/aalvarez/pbmac/sbin/hastd/secondary.c soc2011/aalvarez/pbmac/sbin/hastd/subr.c soc2011/aalvarez/pbmac/sbin/ifconfig/Makefile soc2011/aalvarez/pbmac/sbin/ifconfig/af_inet.c soc2011/aalvarez/pbmac/sbin/ifconfig/af_inet6.c soc2011/aalvarez/pbmac/sbin/ifconfig/af_nd6.c soc2011/aalvarez/pbmac/sbin/ifconfig/ifconfig.8 soc2011/aalvarez/pbmac/sbin/ifconfig/ifconfig.c soc2011/aalvarez/pbmac/sbin/ipfw/ (props changed) soc2011/aalvarez/pbmac/sbin/ipfw/ipfw.8 soc2011/aalvarez/pbmac/sbin/ipfw/ipfw2.c soc2011/aalvarez/pbmac/sbin/ipfw/ipfw2.h soc2011/aalvarez/pbmac/sbin/ipfw/main.c soc2011/aalvarez/pbmac/sbin/ipfw/nat.c soc2011/aalvarez/pbmac/sbin/mount/mount.8 soc2011/aalvarez/pbmac/sbin/mount/mount.c soc2011/aalvarez/pbmac/sbin/natd/natd.8 soc2011/aalvarez/pbmac/sbin/newfs/newfs.8 soc2011/aalvarez/pbmac/sbin/newfs/newfs.h soc2011/aalvarez/pbmac/sbin/pflogd/Makefile soc2011/aalvarez/pbmac/sbin/rcorder/rcorder.8 soc2011/aalvarez/pbmac/sbin/rtsol/Makefile soc2011/aalvarez/pbmac/sbin/savecore/savecore.c soc2011/aalvarez/pbmac/sbin/setkey/setkey.8 soc2011/aalvarez/pbmac/sbin/tunefs/tunefs.8 soc2011/aalvarez/pbmac/sbin/umount/umount.8 soc2011/aalvarez/pbmac/sbin/umount/umount.c soc2011/aalvarez/pbmac/share/examples/Makefile soc2011/aalvarez/pbmac/share/examples/etc/make.conf soc2011/aalvarez/pbmac/share/examples/ses/srcs/eltsub.c soc2011/aalvarez/pbmac/share/man/man4/Makefile soc2011/aalvarez/pbmac/share/man/man4/amdsbwd.4 soc2011/aalvarez/pbmac/share/man/man4/ath.4 soc2011/aalvarez/pbmac/share/man/man4/ath_hal.4 soc2011/aalvarez/pbmac/share/man/man4/atkbd.4 soc2011/aalvarez/pbmac/share/man/man4/atrtc.4 soc2011/aalvarez/pbmac/share/man/man4/attimer.4 soc2011/aalvarez/pbmac/share/man/man4/bwn.4 soc2011/aalvarez/pbmac/share/man/man4/cc.4 soc2011/aalvarez/pbmac/share/man/man4/em.4 soc2011/aalvarez/pbmac/share/man/man4/h_ertt.4 soc2011/aalvarez/pbmac/share/man/man4/igb.4 soc2011/aalvarez/pbmac/share/man/man4/jme.4 soc2011/aalvarez/pbmac/share/man/man4/mps.4 soc2011/aalvarez/pbmac/share/man/man4/msk.4 soc2011/aalvarez/pbmac/share/man/man4/ng_ether.4 soc2011/aalvarez/pbmac/share/man/man4/nvram2env.4 soc2011/aalvarez/pbmac/share/man/man4/snd_hda.4 soc2011/aalvarez/pbmac/share/man/man4/ucom.4 soc2011/aalvarez/pbmac/share/man/man4/uep.4 soc2011/aalvarez/pbmac/share/man/man4/vge.4 soc2011/aalvarez/pbmac/share/man/man5/fstab.5 soc2011/aalvarez/pbmac/share/man/man5/make.conf.5 soc2011/aalvarez/pbmac/share/man/man5/rc.conf.5 soc2011/aalvarez/pbmac/share/man/man5/src.conf.5 soc2011/aalvarez/pbmac/share/man/man7/build.7 soc2011/aalvarez/pbmac/share/man/man7/c99.7 soc2011/aalvarez/pbmac/share/man/man7/eventtimers.7 soc2011/aalvarez/pbmac/share/man/man7/ports.7 soc2011/aalvarez/pbmac/share/man/man7/release.7 soc2011/aalvarez/pbmac/share/man/man8/picobsd.8 soc2011/aalvarez/pbmac/share/man/man9/Makefile soc2011/aalvarez/pbmac/share/man/man9/bus_adjust_resource.9 soc2011/aalvarez/pbmac/share/man/man9/copy.9 soc2011/aalvarez/pbmac/share/man/man9/devfs_set_cdevpriv.9 soc2011/aalvarez/pbmac/share/man/man9/device_get_sysctl.9 soc2011/aalvarez/pbmac/share/man/man9/fail.9 soc2011/aalvarez/pbmac/share/man/man9/hhook.9 soc2011/aalvarez/pbmac/share/man/man9/ifnet.9 soc2011/aalvarez/pbmac/share/man/man9/khelp.9 soc2011/aalvarez/pbmac/share/man/man9/uio.9 soc2011/aalvarez/pbmac/share/man/man9/vm_map.9 soc2011/aalvarez/pbmac/share/misc/committers-ports.dot soc2011/aalvarez/pbmac/share/misc/committers-src.dot soc2011/aalvarez/pbmac/share/misc/iso3166 soc2011/aalvarez/pbmac/share/misc/mdoc.template soc2011/aalvarez/pbmac/share/misc/usb_hid_usages soc2011/aalvarez/pbmac/share/mk/bsd.arch.inc.mk (props changed) soc2011/aalvarez/pbmac/share/mk/bsd.doc.mk soc2011/aalvarez/pbmac/share/mk/bsd.own.mk soc2011/aalvarez/pbmac/share/skel/dot.shrc soc2011/aalvarez/pbmac/share/zoneinfo/ (props changed) soc2011/aalvarez/pbmac/sys/ (props changed) soc2011/aalvarez/pbmac/sys/Makefile soc2011/aalvarez/pbmac/sys/amd64/acpica/acpi_wakeup.c soc2011/aalvarez/pbmac/sys/amd64/amd64/intr_machdep.c soc2011/aalvarez/pbmac/sys/amd64/amd64/legacy.c soc2011/aalvarez/pbmac/sys/amd64/amd64/machdep.c soc2011/aalvarez/pbmac/sys/amd64/amd64/mp_machdep.c soc2011/aalvarez/pbmac/sys/amd64/amd64/pmap.c soc2011/aalvarez/pbmac/sys/amd64/amd64/sys_machdep.c soc2011/aalvarez/pbmac/sys/amd64/amd64/vm_machdep.c soc2011/aalvarez/pbmac/sys/amd64/conf/GENERIC soc2011/aalvarez/pbmac/sys/amd64/ia32/ia32_sigtramp.S soc2011/aalvarez/pbmac/sys/amd64/include/_types.h soc2011/aalvarez/pbmac/sys/amd64/include/cpufunc.h soc2011/aalvarez/pbmac/sys/amd64/include/pci_cfgreg.h soc2011/aalvarez/pbmac/sys/amd64/include/pmap.h soc2011/aalvarez/pbmac/sys/amd64/include/smp.h soc2011/aalvarez/pbmac/sys/amd64/include/xen/ (props changed) soc2011/aalvarez/pbmac/sys/arm/arm/pmap.c soc2011/aalvarez/pbmac/sys/arm/arm/sys_machdep.c soc2011/aalvarez/pbmac/sys/arm/at91/at91_machdep.c soc2011/aalvarez/pbmac/sys/arm/conf/CAMBRIA soc2011/aalvarez/pbmac/sys/arm/include/_types.h soc2011/aalvarez/pbmac/sys/arm/include/pmap.h soc2011/aalvarez/pbmac/sys/arm/mv/common.c soc2011/aalvarez/pbmac/sys/arm/sa11x0/assabet_machdep.c soc2011/aalvarez/pbmac/sys/arm/sa11x0/sa11x0.c soc2011/aalvarez/pbmac/sys/boot/ (props changed) soc2011/aalvarez/pbmac/sys/boot/Makefile soc2011/aalvarez/pbmac/sys/boot/Makefile.amd64 soc2011/aalvarez/pbmac/sys/boot/Makefile.arm soc2011/aalvarez/pbmac/sys/boot/Makefile.powerpc soc2011/aalvarez/pbmac/sys/boot/common/Makefile.inc soc2011/aalvarez/pbmac/sys/boot/common/load_elf.c soc2011/aalvarez/pbmac/sys/boot/common/load_elf_obj.c soc2011/aalvarez/pbmac/sys/boot/common/reloc_elf.c soc2011/aalvarez/pbmac/sys/boot/forth/beastie.4th soc2011/aalvarez/pbmac/sys/boot/forth/loader.4th soc2011/aalvarez/pbmac/sys/boot/forth/loader.conf.5 soc2011/aalvarez/pbmac/sys/boot/forth/support.4th soc2011/aalvarez/pbmac/sys/boot/i386/efi/ (props changed) soc2011/aalvarez/pbmac/sys/boot/i386/libi386/biosacpi.c soc2011/aalvarez/pbmac/sys/boot/i386/libi386/bioscd.c soc2011/aalvarez/pbmac/sys/boot/i386/loader/Makefile soc2011/aalvarez/pbmac/sys/boot/i386/zfsboot/Makefile soc2011/aalvarez/pbmac/sys/boot/i386/zfsboot/zfsldr.S soc2011/aalvarez/pbmac/sys/boot/ia64/common/Makefile soc2011/aalvarez/pbmac/sys/boot/ia64/common/exec.c soc2011/aalvarez/pbmac/sys/boot/ia64/common/libia64.h soc2011/aalvarez/pbmac/sys/boot/ia64/efi/ (props changed) soc2011/aalvarez/pbmac/sys/boot/ia64/efi/efimd.c soc2011/aalvarez/pbmac/sys/boot/ia64/efi/main.c soc2011/aalvarez/pbmac/sys/boot/ia64/efi/version soc2011/aalvarez/pbmac/sys/boot/ia64/ski/ (props changed) soc2011/aalvarez/pbmac/sys/boot/pc98/loader/Makefile soc2011/aalvarez/pbmac/sys/boot/powerpc/boot1.chrp/ (props changed) soc2011/aalvarez/pbmac/sys/boot/powerpc/ofw/ (props changed) soc2011/aalvarez/pbmac/sys/boot/powerpc/ofw/Makefile soc2011/aalvarez/pbmac/sys/boot/powerpc/ps3/Makefile soc2011/aalvarez/pbmac/sys/boot/sparc64/loader/Makefile soc2011/aalvarez/pbmac/sys/boot/sparc64/loader/main.c soc2011/aalvarez/pbmac/sys/cam/ata/ata_all.c soc2011/aalvarez/pbmac/sys/cam/ata/ata_da.c soc2011/aalvarez/pbmac/sys/cam/ata/ata_xpt.c soc2011/aalvarez/pbmac/sys/cam/cam_ccb.h soc2011/aalvarez/pbmac/sys/cam/cam_periph.c soc2011/aalvarez/pbmac/sys/cam/cam_periph.h soc2011/aalvarez/pbmac/sys/cam/cam_xpt.c soc2011/aalvarez/pbmac/sys/cam/cam_xpt.h soc2011/aalvarez/pbmac/sys/cam/cam_xpt_internal.h soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_all.c soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_all.h soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_cd.c soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_da.c soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_pass.c soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_ses.h soc2011/aalvarez/pbmac/sys/cam/scsi/scsi_xpt.c soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/kern/opensolaris.c soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/kern/opensolaris_sysevent.c soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/sys/atomic.h soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/sys/kstat.h soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/sys/taskq.h soc2011/aalvarez/pbmac/sys/cddl/compat/opensolaris/sys/time.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/ (props changed) soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h soc2011/aalvarez/pbmac/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h soc2011/aalvarez/pbmac/sys/cddl/dev/cyclic/i386/cyclic_machdep.c soc2011/aalvarez/pbmac/sys/cddl/dev/dtrace/amd64/dtrace_subr.c soc2011/aalvarez/pbmac/sys/cddl/dev/dtrace/i386/dtrace_subr.c soc2011/aalvarez/pbmac/sys/compat/freebsd32/freebsd32_misc.c soc2011/aalvarez/pbmac/sys/compat/freebsd32/freebsd32_proto.h soc2011/aalvarez/pbmac/sys/compat/freebsd32/freebsd32_syscall.h soc2011/aalvarez/pbmac/sys/compat/freebsd32/freebsd32_syscalls.c soc2011/aalvarez/pbmac/sys/compat/freebsd32/freebsd32_sysent.c soc2011/aalvarez/pbmac/sys/compat/freebsd32/syscalls.master soc2011/aalvarez/pbmac/sys/compat/linprocfs/linprocfs.c soc2011/aalvarez/pbmac/sys/conf/ (props changed) soc2011/aalvarez/pbmac/sys/conf/Makefile.arm soc2011/aalvarez/pbmac/sys/conf/Makefile.powerpc soc2011/aalvarez/pbmac/sys/conf/NOTES soc2011/aalvarez/pbmac/sys/conf/files soc2011/aalvarez/pbmac/sys/conf/files.amd64 soc2011/aalvarez/pbmac/sys/conf/files.i386 soc2011/aalvarez/pbmac/sys/conf/files.ia64 soc2011/aalvarez/pbmac/sys/conf/files.mips soc2011/aalvarez/pbmac/sys/conf/files.pc98 soc2011/aalvarez/pbmac/sys/conf/files.powerpc soc2011/aalvarez/pbmac/sys/conf/kern.mk soc2011/aalvarez/pbmac/sys/conf/kern.post.mk soc2011/aalvarez/pbmac/sys/conf/kmod.mk soc2011/aalvarez/pbmac/sys/conf/newvers.sh soc2011/aalvarez/pbmac/sys/conf/options soc2011/aalvarez/pbmac/sys/conf/options.mips soc2011/aalvarez/pbmac/sys/contrib/altq/altq/altq_red.c soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/ (props changed) soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/changes.txt soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/debugger/dbexec.c soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/debugger/dbinput.c soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/debugger/dbutils.c soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/debugger/dbxface.c soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/acconfig.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/acdebug.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/acglobal.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/aclocal.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/acpiosxf.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/acpixf.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/include/acpredef.h soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/osunixxf.c soc2011/aalvarez/pbmac/sys/contrib/dev/acpica/tables/tbinstal.c soc2011/aalvarez/pbmac/sys/contrib/octeon-sdk/ (props changed) soc2011/aalvarez/pbmac/sys/contrib/pf/ (props changed) soc2011/aalvarez/pbmac/sys/contrib/pf/net/if_pflog.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/if_pflog.h soc2011/aalvarez/pbmac/sys/contrib/pf/net/if_pfsync.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/if_pfsync.h soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_if.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_ioctl.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_mtag.h soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_norm.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_osfp.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_ruleset.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pf_table.c soc2011/aalvarez/pbmac/sys/contrib/pf/net/pfvar.h soc2011/aalvarez/pbmac/sys/contrib/x86emu/ (props changed) soc2011/aalvarez/pbmac/sys/ddb/db_command.c soc2011/aalvarez/pbmac/sys/dev/aac/aac.c soc2011/aalvarez/pbmac/sys/dev/aac/aacvar.h soc2011/aalvarez/pbmac/sys/dev/acpica/Osd/OsdDebug.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_cpu.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_hpet.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_pci.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_pcib_acpi.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_resource.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_thermal.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpi_timer.c soc2011/aalvarez/pbmac/sys/dev/acpica/acpivar.h soc2011/aalvarez/pbmac/sys/dev/ahci/ahci.c soc2011/aalvarez/pbmac/sys/dev/amdsbwd/amdsbwd.c soc2011/aalvarez/pbmac/sys/dev/an/if_an.c soc2011/aalvarez/pbmac/sys/dev/ata/ata-sata.c soc2011/aalvarez/pbmac/sys/dev/ata/chipsets/ata-intel.c soc2011/aalvarez/pbmac/sys/dev/ath/ah_osdep.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_desc.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_devid.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_eeprom.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_eeprom_9287.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_eeprom_9287.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_internal.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ah_regdomain.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5210/ar5210_beacon.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5211/ar5211_beacon.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5112.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5212.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5212/ar5212reg.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar2133.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_beacon.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416desc.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416phy.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar5416/ar5416reg.h soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c soc2011/aalvarez/pbmac/sys/dev/ath/if_ath.c soc2011/aalvarez/pbmac/sys/dev/ath/if_ath_ahb.c soc2011/aalvarez/pbmac/sys/dev/ath/if_ath_sysctl.c soc2011/aalvarez/pbmac/sys/dev/ath/if_ath_sysctl.h soc2011/aalvarez/pbmac/sys/dev/ath/if_ath_tx_ht.c soc2011/aalvarez/pbmac/sys/dev/ath/if_athvar.h soc2011/aalvarez/pbmac/sys/dev/atkbdc/atkbd.c soc2011/aalvarez/pbmac/sys/dev/atkbdc/atkbdreg.h soc2011/aalvarez/pbmac/sys/dev/bxe/bxe_debug.h soc2011/aalvarez/pbmac/sys/dev/bxe/bxe_link.c soc2011/aalvarez/pbmac/sys/dev/bxe/if_bxe.c soc2011/aalvarez/pbmac/sys/dev/bxe/if_bxe.h soc2011/aalvarez/pbmac/sys/dev/cardbus/cardbus_cis.c soc2011/aalvarez/pbmac/sys/dev/cxgbe/adapter.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/common/common.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/common/t4fw_interface.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/offload.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/osdep.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/t4_ioctl.h soc2011/aalvarez/pbmac/sys/dev/cxgbe/t4_main.c soc2011/aalvarez/pbmac/sys/dev/cxgbe/t4_sge.c soc2011/aalvarez/pbmac/sys/dev/dc/dcphy.c soc2011/aalvarez/pbmac/sys/dev/dc/if_dc.c soc2011/aalvarez/pbmac/sys/dev/dc/pnphy.c soc2011/aalvarez/pbmac/sys/dev/e1000/if_em.c soc2011/aalvarez/pbmac/sys/dev/e1000/if_igb.c soc2011/aalvarez/pbmac/sys/dev/e1000/if_igb.h soc2011/aalvarez/pbmac/sys/dev/en/if_en_pci.c soc2011/aalvarez/pbmac/sys/dev/et/if_et.c soc2011/aalvarez/pbmac/sys/dev/fdc/fdc_pccard.c soc2011/aalvarez/pbmac/sys/dev/firewire/fwohci.c soc2011/aalvarez/pbmac/sys/dev/fxp/if_fxp.c soc2011/aalvarez/pbmac/sys/dev/gem/if_gem.c soc2011/aalvarez/pbmac/sys/dev/gem/if_gemvar.h soc2011/aalvarez/pbmac/sys/dev/hwpmc/hwpmc_mod.c soc2011/aalvarez/pbmac/sys/dev/iicbus/ds1775.c soc2011/aalvarez/pbmac/sys/dev/iicbus/if_ic.c soc2011/aalvarez/pbmac/sys/dev/iicbus/max6690.c soc2011/aalvarez/pbmac/sys/dev/ipw/if_ipw.c soc2011/aalvarez/pbmac/sys/dev/iwi/if_iwi.c soc2011/aalvarez/pbmac/sys/dev/iwn/if_iwn.c soc2011/aalvarez/pbmac/sys/dev/ixgbe/LICENSE soc2011/aalvarez/pbmac/sys/dev/ixgbe/README soc2011/aalvarez/pbmac/sys/dev/ixgbe/ixgbe.c soc2011/aalvarez/pbmac/sys/dev/ixgbe/ixv.c soc2011/aalvarez/pbmac/sys/dev/lmc/if_lmc.c soc2011/aalvarez/pbmac/sys/dev/md/md.c soc2011/aalvarez/pbmac/sys/dev/mfi/mfi.c soc2011/aalvarez/pbmac/sys/dev/mfi/mfi_cam.c soc2011/aalvarez/pbmac/sys/dev/mfi/mfireg.h soc2011/aalvarez/pbmac/sys/dev/mii/e1000phy.c soc2011/aalvarez/pbmac/sys/dev/mii/miidevs soc2011/aalvarez/pbmac/sys/dev/mmc/mmc.c soc2011/aalvarez/pbmac/sys/dev/mmc/mmcvar.h soc2011/aalvarez/pbmac/sys/dev/msk/if_msk.c soc2011/aalvarez/pbmac/sys/dev/msk/if_mskreg.h soc2011/aalvarez/pbmac/sys/dev/mvs/mvs.c soc2011/aalvarez/pbmac/sys/dev/my/if_my.c soc2011/aalvarez/pbmac/sys/dev/nfe/if_nfe.c soc2011/aalvarez/pbmac/sys/dev/pccard/pccard.c soc2011/aalvarez/pbmac/sys/dev/pccbb/pccbb.c soc2011/aalvarez/pbmac/sys/dev/pccbb/pccbb_pci.c soc2011/aalvarez/pbmac/sys/dev/pci/pci.c soc2011/aalvarez/pbmac/sys/dev/pci/pci_pci.c soc2011/aalvarez/pbmac/sys/dev/pci/pcivar.h soc2011/aalvarez/pbmac/sys/dev/ppbus/if_plip.c soc2011/aalvarez/pbmac/sys/dev/pty/pty.c soc2011/aalvarez/pbmac/sys/dev/puc/puc.c soc2011/aalvarez/pbmac/sys/dev/puc/puc_bfe.h soc2011/aalvarez/pbmac/sys/dev/puc/puc_pccard.c soc2011/aalvarez/pbmac/sys/dev/puc/puc_pci.c soc2011/aalvarez/pbmac/sys/dev/puc/pucdata.c soc2011/aalvarez/pbmac/sys/dev/safe/safe.c soc2011/aalvarez/pbmac/sys/dev/sdhci/sdhci.c soc2011/aalvarez/pbmac/sys/dev/siis/siis.c soc2011/aalvarez/pbmac/sys/dev/sis/if_sis.c soc2011/aalvarez/pbmac/sys/dev/snp/snp.c soc2011/aalvarez/pbmac/sys/dev/sound/macio/i2s.c soc2011/aalvarez/pbmac/sys/dev/sound/pci/hda/hdac.c soc2011/aalvarez/pbmac/sys/dev/sound/pcm/sound.c soc2011/aalvarez/pbmac/sys/dev/sound/usb/uaudio.c soc2011/aalvarez/pbmac/sys/dev/syscons/scterm-teken.c soc2011/aalvarez/pbmac/sys/dev/tdfx/tdfx_pci.c soc2011/aalvarez/pbmac/sys/dev/uart/uart_bus_pci.c soc2011/aalvarez/pbmac/sys/dev/uart/uart_dev_ns8250.c soc2011/aalvarez/pbmac/sys/dev/usb/input/atp.c soc2011/aalvarez/pbmac/sys/dev/usb/input/uep.c soc2011/aalvarez/pbmac/sys/dev/usb/input/uhid.c soc2011/aalvarez/pbmac/sys/dev/usb/input/ukbd.c soc2011/aalvarez/pbmac/sys/dev/usb/input/ums.c soc2011/aalvarez/pbmac/sys/dev/usb/misc/udbp.c soc2011/aalvarez/pbmac/sys/dev/usb/misc/ufm.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_aue.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_axe.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_cdce.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_cue.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_ipheth.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_kue.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_mos.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_rue.c soc2011/aalvarez/pbmac/sys/dev/usb/net/if_udav.c soc2011/aalvarez/pbmac/sys/dev/usb/net/uhso.c soc2011/aalvarez/pbmac/sys/dev/usb/quirk/usb_quirk.c soc2011/aalvarez/pbmac/sys/dev/usb/quirk/usb_quirk.h soc2011/aalvarez/pbmac/sys/dev/usb/serial/u3g.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uark.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/ubsa.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uchcom.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/ucycom.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/ufoma.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uftdi.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/ugensa.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uipaq.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/ulpt.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/umct.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/umodem.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/umoscom.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uplcom.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uslcom.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uvisor.c soc2011/aalvarez/pbmac/sys/dev/usb/serial/uvscom.c soc2011/aalvarez/pbmac/sys/dev/usb/storage/umass.c soc2011/aalvarez/pbmac/sys/dev/usb/storage/urio.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template.h soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_cdce.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_msc.c soc2011/aalvarez/pbmac/sys/dev/usb/template/usb_template_mtp.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_device.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_device.h soc2011/aalvarez/pbmac/sys/dev/usb/usb_freebsd.h soc2011/aalvarez/pbmac/sys/dev/usb/usb_generic.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_hid.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_hub.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_ioctl.h soc2011/aalvarez/pbmac/sys/dev/usb/usb_lookup.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_msctest.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_process.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_request.c soc2011/aalvarez/pbmac/sys/dev/usb/usb_request.h soc2011/aalvarez/pbmac/sys/dev/usb/usb_transfer.c soc2011/aalvarez/pbmac/sys/dev/usb/usbdevs soc2011/aalvarez/pbmac/sys/dev/usb/usbdi.h soc2011/aalvarez/pbmac/sys/dev/usb/usbhid.h soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_rum.c soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_run.c soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_uath.c soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_upgt.c soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_ural.c soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_urtw.c soc2011/aalvarez/pbmac/sys/dev/usb/wlan/if_zyd.c soc2011/aalvarez/pbmac/sys/dev/vr/if_vr.c soc2011/aalvarez/pbmac/sys/dev/vr/if_vrreg.h soc2011/aalvarez/pbmac/sys/dev/wpi/if_wpi.c soc2011/aalvarez/pbmac/sys/dev/xen/blkback/blkback.c soc2011/aalvarez/pbmac/sys/dev/xen/blkfront/blkfront.c soc2011/aalvarez/pbmac/sys/dev/xen/control/control.c soc2011/aalvarez/pbmac/sys/dev/xen/netfront/netfront.c soc2011/aalvarez/pbmac/sys/dev/xl/if_xl.c soc2011/aalvarez/pbmac/sys/fs/nfs/nfs_commonkrpc.c soc2011/aalvarez/pbmac/sys/fs/nfs/nfs_commonsubs.c soc2011/aalvarez/pbmac/sys/fs/nfs/nfs_var.h soc2011/aalvarez/pbmac/sys/fs/nfs/nfsport.h soc2011/aalvarez/pbmac/sys/fs/nfs/nfsproto.h soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clbio.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clcomsubs.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clkrpc.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clnode.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clport.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clrpcops.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clstate.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clsubs.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clvfsops.c soc2011/aalvarez/pbmac/sys/fs/nfsclient/nfs_clvnops.c soc2011/aalvarez/pbmac/sys/fs/nfsserver/nfs_nfsdcache.c soc2011/aalvarez/pbmac/sys/fs/nfsserver/nfs_nfsdkrpc.c soc2011/aalvarez/pbmac/sys/fs/nfsserver/nfs_nfsdport.c soc2011/aalvarez/pbmac/sys/fs/nfsserver/nfs_nfsdserv.c soc2011/aalvarez/pbmac/sys/fs/nfsserver/nfs_nfsdsocket.c soc2011/aalvarez/pbmac/sys/fs/nfsserver/nfs_nfsdstate.c soc2011/aalvarez/pbmac/sys/fs/nwfs/nwfs_io.c soc2011/aalvarez/pbmac/sys/fs/smbfs/smbfs_io.c soc2011/aalvarez/pbmac/sys/fs/smbfs/smbfs_smb.c soc2011/aalvarez/pbmac/sys/fs/tmpfs/tmpfs_subr.c soc2011/aalvarez/pbmac/sys/geom/cache/g_cache.c soc2011/aalvarez/pbmac/sys/geom/concat/g_concat.c soc2011/aalvarez/pbmac/sys/geom/eli/g_eli.c soc2011/aalvarez/pbmac/sys/geom/gate/g_gate.c soc2011/aalvarez/pbmac/sys/geom/geom.h soc2011/aalvarez/pbmac/sys/geom/geom_bsd.c soc2011/aalvarez/pbmac/sys/geom/geom_ccd.c soc2011/aalvarez/pbmac/sys/geom/geom_dev.c soc2011/aalvarez/pbmac/sys/geom/geom_disk.c soc2011/aalvarez/pbmac/sys/geom/geom_disk.h soc2011/aalvarez/pbmac/sys/geom/geom_dump.c soc2011/aalvarez/pbmac/sys/geom/geom_event.c soc2011/aalvarez/pbmac/sys/geom/geom_pc98.c soc2011/aalvarez/pbmac/sys/geom/geom_subr.c soc2011/aalvarez/pbmac/sys/geom/geom_sunlabel.c soc2011/aalvarez/pbmac/sys/geom/geom_vfs.c soc2011/aalvarez/pbmac/sys/geom/label/g_label_gpt.c soc2011/aalvarez/pbmac/sys/geom/mirror/g_mirror.c soc2011/aalvarez/pbmac/sys/geom/mountver/g_mountver.c soc2011/aalvarez/pbmac/sys/geom/multipath/g_multipath.c soc2011/aalvarez/pbmac/sys/geom/nop/g_nop.c soc2011/aalvarez/pbmac/sys/geom/part/g_part.c soc2011/aalvarez/pbmac/sys/geom/part/g_part_bsd.c soc2011/aalvarez/pbmac/sys/geom/part/g_part_ebr.c soc2011/aalvarez/pbmac/sys/geom/part/g_part_gpt.c soc2011/aalvarez/pbmac/sys/geom/part/g_part_mbr.c soc2011/aalvarez/pbmac/sys/geom/part/g_part_pc98.c soc2011/aalvarez/pbmac/sys/geom/raid/g_raid.c soc2011/aalvarez/pbmac/sys/geom/raid3/g_raid3.c soc2011/aalvarez/pbmac/sys/geom/sched/g_sched.c soc2011/aalvarez/pbmac/sys/geom/sched/gs_rr.c soc2011/aalvarez/pbmac/sys/geom/shsec/g_shsec.c soc2011/aalvarez/pbmac/sys/geom/stripe/g_stripe.c soc2011/aalvarez/pbmac/sys/geom/vinum/geom_vinum.c soc2011/aalvarez/pbmac/sys/geom/vinum/geom_vinum_drive.c soc2011/aalvarez/pbmac/sys/geom/vinum/geom_vinum_events.c soc2011/aalvarez/pbmac/sys/geom/vinum/geom_vinum_list.c soc2011/aalvarez/pbmac/sys/geom/vinum/geom_vinum_subr.c soc2011/aalvarez/pbmac/sys/geom/virstor/g_virstor.c soc2011/aalvarez/pbmac/sys/i386/Makefile soc2011/aalvarez/pbmac/sys/i386/conf/GENERIC soc2011/aalvarez/pbmac/sys/i386/i386/intr_machdep.c soc2011/aalvarez/pbmac/sys/i386/i386/legacy.c soc2011/aalvarez/pbmac/sys/i386/i386/machdep.c soc2011/aalvarez/pbmac/sys/i386/i386/mp_machdep.c soc2011/aalvarez/pbmac/sys/i386/i386/pmap.c soc2011/aalvarez/pbmac/sys/i386/i386/sys_machdep.c soc2011/aalvarez/pbmac/sys/i386/i386/vm_machdep.c soc2011/aalvarez/pbmac/sys/i386/include/_types.h soc2011/aalvarez/pbmac/sys/i386/include/cpufunc.h soc2011/aalvarez/pbmac/sys/i386/include/param.h soc2011/aalvarez/pbmac/sys/i386/include/pci_cfgreg.h soc2011/aalvarez/pbmac/sys/i386/include/pmap.h soc2011/aalvarez/pbmac/sys/i386/include/sf_buf.h soc2011/aalvarez/pbmac/sys/i386/include/smp.h soc2011/aalvarez/pbmac/sys/i386/pci/pci_cfgreg.c soc2011/aalvarez/pbmac/sys/i386/xen/mp_machdep.c soc2011/aalvarez/pbmac/sys/i386/xen/pmap.c soc2011/aalvarez/pbmac/sys/ia64/acpica/acpi_machdep.c soc2011/aalvarez/pbmac/sys/ia64/conf/GENERIC soc2011/aalvarez/pbmac/sys/ia64/conf/NOTES soc2011/aalvarez/pbmac/sys/ia64/ia64/busdma_machdep.c soc2011/aalvarez/pbmac/sys/ia64/ia64/clock.c soc2011/aalvarez/pbmac/sys/ia64/ia64/db_machdep.c soc2011/aalvarez/pbmac/sys/ia64/ia64/exception.S soc2011/aalvarez/pbmac/sys/ia64/ia64/interrupt.c soc2011/aalvarez/pbmac/sys/ia64/ia64/machdep.c soc2011/aalvarez/pbmac/sys/ia64/ia64/mp_machdep.c soc2011/aalvarez/pbmac/sys/ia64/ia64/pal.S soc2011/aalvarez/pbmac/sys/ia64/ia64/pmap.c soc2011/aalvarez/pbmac/sys/ia64/include/_types.h soc2011/aalvarez/pbmac/sys/ia64/include/ia64_cpu.h soc2011/aalvarez/pbmac/sys/ia64/include/pcpu.h soc2011/aalvarez/pbmac/sys/ia64/include/pmap.h soc2011/aalvarez/pbmac/sys/ia64/include/sf_buf.h soc2011/aalvarez/pbmac/sys/ia64/include/smp.h soc2011/aalvarez/pbmac/sys/kern/Make.tags.inc soc2011/aalvarez/pbmac/sys/kern/device_if.m soc2011/aalvarez/pbmac/sys/kern/imgact_aout.c soc2011/aalvarez/pbmac/sys/kern/imgact_elf.c soc2011/aalvarez/pbmac/sys/kern/kern_clocksource.c soc2011/aalvarez/pbmac/sys/kern/kern_conf.c soc2011/aalvarez/pbmac/sys/kern/kern_cpuset.c soc2011/aalvarez/pbmac/sys/kern/kern_descrip.c soc2011/aalvarez/pbmac/sys/kern/kern_environment.c soc2011/aalvarez/pbmac/sys/kern/kern_exec.c soc2011/aalvarez/pbmac/sys/kern/kern_exit.c soc2011/aalvarez/pbmac/sys/kern/kern_fail.c soc2011/aalvarez/pbmac/sys/kern/kern_fork.c soc2011/aalvarez/pbmac/sys/kern/kern_idle.c soc2011/aalvarez/pbmac/sys/kern/kern_jail.c soc2011/aalvarez/pbmac/sys/kern/kern_ktr.c soc2011/aalvarez/pbmac/sys/kern/kern_pmc.c soc2011/aalvarez/pbmac/sys/kern/kern_racct.c soc2011/aalvarez/pbmac/sys/kern/kern_rctl.c soc2011/aalvarez/pbmac/sys/kern/kern_rmlock.c soc2011/aalvarez/pbmac/sys/kern/kern_shutdown.c soc2011/aalvarez/pbmac/sys/kern/kern_sig.c soc2011/aalvarez/pbmac/sys/kern/kern_synch.c soc2011/aalvarez/pbmac/sys/kern/kern_thr.c soc2011/aalvarez/pbmac/sys/kern/ksched.c soc2011/aalvarez/pbmac/sys/kern/link_elf.c soc2011/aalvarez/pbmac/sys/kern/sched_4bsd.c soc2011/aalvarez/pbmac/sys/kern/sched_ule.c soc2011/aalvarez/pbmac/sys/kern/subr_devstat.c soc2011/aalvarez/pbmac/sys/kern/subr_kdb.c soc2011/aalvarez/pbmac/sys/kern/subr_msgbuf.c soc2011/aalvarez/pbmac/sys/kern/subr_pcpu.c soc2011/aalvarez/pbmac/sys/kern/subr_prf.c soc2011/aalvarez/pbmac/sys/kern/subr_rman.c soc2011/aalvarez/pbmac/sys/kern/subr_smp.c soc2011/aalvarez/pbmac/sys/kern/subr_trap.c soc2011/aalvarez/pbmac/sys/kern/subr_uio.c soc2011/aalvarez/pbmac/sys/kern/sys_capability.c soc2011/aalvarez/pbmac/sys/kern/sys_process.c soc2011/aalvarez/pbmac/sys/kern/sysv_msg.c soc2011/aalvarez/pbmac/sys/kern/sysv_sem.c soc2011/aalvarez/pbmac/sys/kern/sysv_shm.c soc2011/aalvarez/pbmac/sys/kern/tty.c soc2011/aalvarez/pbmac/sys/kern/tty_inq.c soc2011/aalvarez/pbmac/sys/kern/tty_outq.c soc2011/aalvarez/pbmac/sys/kern/tty_pts.c soc2011/aalvarez/pbmac/sys/kern/tty_ttydisc.c soc2011/aalvarez/pbmac/sys/kern/uipc_shm.c soc2011/aalvarez/pbmac/sys/kern/uipc_socket.c soc2011/aalvarez/pbmac/sys/kern/uipc_syscalls.c soc2011/aalvarez/pbmac/sys/kern/vfs_bio.c soc2011/aalvarez/pbmac/sys/kern/vfs_mount.c soc2011/aalvarez/pbmac/sys/kern/vfs_mountroot.c soc2011/aalvarez/pbmac/sys/kern/vfs_subr.c soc2011/aalvarez/pbmac/sys/kgssapi/gss_impl.c soc2011/aalvarez/pbmac/sys/mips/atheros/ar71xx_chip.c soc2011/aalvarez/pbmac/sys/mips/atheros/ar71xx_machdep.c soc2011/aalvarez/pbmac/sys/mips/atheros/ar71xx_ohci.c soc2011/aalvarez/pbmac/sys/mips/atheros/ar71xx_setup.c soc2011/aalvarez/pbmac/sys/mips/atheros/ar724x_chip.c soc2011/aalvarez/pbmac/sys/mips/atheros/ar91xx_chip.c soc2011/aalvarez/pbmac/sys/mips/cavium/octeon_ebt3000_cf.c soc2011/aalvarez/pbmac/sys/mips/cavium/octeon_mp.c soc2011/aalvarez/pbmac/sys/mips/include/_types.h soc2011/aalvarez/pbmac/sys/mips/include/atomic.h soc2011/aalvarez/pbmac/sys/mips/include/hwfunc.h soc2011/aalvarez/pbmac/sys/mips/include/pmap.h soc2011/aalvarez/pbmac/sys/mips/include/smp.h soc2011/aalvarez/pbmac/sys/mips/mips/genassym.c soc2011/aalvarez/pbmac/sys/mips/mips/mp_machdep.c soc2011/aalvarez/pbmac/sys/mips/mips/pmap.c soc2011/aalvarez/pbmac/sys/mips/mips/trap.c soc2011/aalvarez/pbmac/sys/mips/rmi/dev/xlr/rge.c soc2011/aalvarez/pbmac/sys/mips/rmi/fmn.c soc2011/aalvarez/pbmac/sys/mips/rmi/iodi.c soc2011/aalvarez/pbmac/sys/mips/rmi/xlr_machdep.c soc2011/aalvarez/pbmac/sys/mips/sentry5/s5_machdep.c soc2011/aalvarez/pbmac/sys/mips/sibyte/sb_machdep.c soc2011/aalvarez/pbmac/sys/mips/sibyte/sb_scd.c soc2011/aalvarez/pbmac/sys/modules/Makefile soc2011/aalvarez/pbmac/sys/modules/ath/Makefile soc2011/aalvarez/pbmac/sys/modules/cxgbe/if_cxgbe/Makefile soc2011/aalvarez/pbmac/sys/modules/dtrace/Makefile soc2011/aalvarez/pbmac/sys/modules/dtrace/dtraceall/dtraceall.c soc2011/aalvarez/pbmac/sys/modules/ipdivert/Makefile soc2011/aalvarez/pbmac/sys/modules/kgssapi_krb5/Makefile soc2011/aalvarez/pbmac/sys/modules/nfscl/Makefile soc2011/aalvarez/pbmac/sys/modules/nfscommon/Makefile soc2011/aalvarez/pbmac/sys/modules/pf/Makefile soc2011/aalvarez/pbmac/sys/modules/pflog/Makefile soc2011/aalvarez/pbmac/sys/modules/usb/Makefile soc2011/aalvarez/pbmac/sys/modules/usb/template/Makefile soc2011/aalvarez/pbmac/sys/net/bridgestp.c soc2011/aalvarez/pbmac/sys/net/bridgestp.h soc2011/aalvarez/pbmac/sys/net/if.c soc2011/aalvarez/pbmac/sys/net/if.h soc2011/aalvarez/pbmac/sys/net/if_arcsubr.c soc2011/aalvarez/pbmac/sys/net/if_atmsubr.c soc2011/aalvarez/pbmac/sys/net/if_debug.c soc2011/aalvarez/pbmac/sys/net/if_epair.c soc2011/aalvarez/pbmac/sys/net/if_ethersubr.c soc2011/aalvarez/pbmac/sys/net/if_fddisubr.c soc2011/aalvarez/pbmac/sys/net/if_fwsubr.c soc2011/aalvarez/pbmac/sys/net/if_gif.c soc2011/aalvarez/pbmac/sys/net/if_gre.c soc2011/aalvarez/pbmac/sys/net/if_gre.h soc2011/aalvarez/pbmac/sys/net/if_iso88025subr.c soc2011/aalvarez/pbmac/sys/net/if_lagg.c soc2011/aalvarez/pbmac/sys/net/if_llatbl.h soc2011/aalvarez/pbmac/sys/net/if_spppfr.c soc2011/aalvarez/pbmac/sys/net/if_spppsubr.c soc2011/aalvarez/pbmac/sys/net/if_stf.c soc2011/aalvarez/pbmac/sys/net/if_tun.c soc2011/aalvarez/pbmac/sys/net/if_var.h soc2011/aalvarez/pbmac/sys/net/netisr.c soc2011/aalvarez/pbmac/sys/net/netisr.h soc2011/aalvarez/pbmac/sys/net/netisr_internal.h soc2011/aalvarez/pbmac/sys/net/route.c soc2011/aalvarez/pbmac/sys/net/route.h soc2011/aalvarez/pbmac/sys/net80211/ieee80211_acl.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_ageq.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_dfs.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_ht.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_ioctl.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_ioctl.h soc2011/aalvarez/pbmac/sys/net80211/ieee80211_output.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_power.c soc2011/aalvarez/pbmac/sys/net80211/ieee80211_var.h soc2011/aalvarez/pbmac/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c soc2011/aalvarez/pbmac/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c soc2011/aalvarez/pbmac/sys/netgraph/netflow/netflow.c soc2011/aalvarez/pbmac/sys/netgraph/netflow/netflow_v9.c soc2011/aalvarez/pbmac/sys/netgraph/netflow/ng_netflow.c soc2011/aalvarez/pbmac/sys/netgraph/netflow/ng_netflow.h soc2011/aalvarez/pbmac/sys/netgraph/netgraph.h soc2011/aalvarez/pbmac/sys/netgraph/ng_base.c soc2011/aalvarez/pbmac/sys/netgraph/ng_eiface.c soc2011/aalvarez/pbmac/sys/netgraph/ng_ether.c soc2011/aalvarez/pbmac/sys/netgraph/ng_iface.c soc2011/aalvarez/pbmac/sys/netgraph/ng_nat.c soc2011/aalvarez/pbmac/sys/netgraph/ng_pipe.c soc2011/aalvarez/pbmac/sys/netinet/icmp6.h soc2011/aalvarez/pbmac/sys/netinet/if_ether.c soc2011/aalvarez/pbmac/sys/netinet/in.c soc2011/aalvarez/pbmac/sys/netinet/in_gif.c soc2011/aalvarez/pbmac/sys/netinet/in_pcb.c soc2011/aalvarez/pbmac/sys/netinet/in_pcb.h soc2011/aalvarez/pbmac/sys/netinet/in_proto.c soc2011/aalvarez/pbmac/sys/netinet/ip_divert.c soc2011/aalvarez/pbmac/sys/netinet/ip_fw.h soc2011/aalvarez/pbmac/sys/netinet/ip_icmp.c soc2011/aalvarez/pbmac/sys/netinet/ip_input.c soc2011/aalvarez/pbmac/sys/netinet/ip_ipsec.c soc2011/aalvarez/pbmac/sys/netinet/ip_var.h soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_dn_io.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_dummynet.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_fw2.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_fw_dynamic.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_fw_log.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_fw_nat.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_fw_pfil.c soc2011/aalvarez/pbmac/sys/netinet/ipfw/ip_fw_sockopt.c soc2011/aalvarez/pbmac/sys/netinet/libalias/alias.h soc2011/aalvarez/pbmac/sys/netinet/libalias/alias_db.c soc2011/aalvarez/pbmac/sys/netinet/libalias/alias_ftp.c soc2011/aalvarez/pbmac/sys/netinet/libalias/alias_local.h soc2011/aalvarez/pbmac/sys/netinet/libalias/alias_sctp.h soc2011/aalvarez/pbmac/sys/netinet/libalias/libalias.3 soc2011/aalvarez/pbmac/sys/netinet/raw_ip.c soc2011/aalvarez/pbmac/sys/netinet/sctp.h soc2011/aalvarez/pbmac/sys/netinet/sctp_auth.c soc2011/aalvarez/pbmac/sys/netinet/sctp_indata.c soc2011/aalvarez/pbmac/sys/netinet/sctp_indata.h soc2011/aalvarez/pbmac/sys/netinet/sctp_output.c soc2011/aalvarez/pbmac/sys/netinet/sctp_pcb.c soc2011/aalvarez/pbmac/sys/netinet/sctp_structs.h soc2011/aalvarez/pbmac/sys/netinet/sctp_uio.h soc2011/aalvarez/pbmac/sys/netinet/sctp_usrreq.c soc2011/aalvarez/pbmac/sys/netinet/sctp_var.h soc2011/aalvarez/pbmac/sys/netinet/sctputil.c soc2011/aalvarez/pbmac/sys/netinet/sctputil.h soc2011/aalvarez/pbmac/sys/netinet/siftr.c soc2011/aalvarez/pbmac/sys/netinet/tcp_input.c soc2011/aalvarez/pbmac/sys/netinet/tcp_lro.c soc2011/aalvarez/pbmac/sys/netinet/tcp_output.c soc2011/aalvarez/pbmac/sys/netinet/tcp_subr.c soc2011/aalvarez/pbmac/sys/netinet/tcp_syncache.c soc2011/aalvarez/pbmac/sys/netinet/tcp_timer.c soc2011/aalvarez/pbmac/sys/netinet/tcp_usrreq.c soc2011/aalvarez/pbmac/sys/netinet/udp_usrreq.c soc2011/aalvarez/pbmac/sys/netinet6/icmp6.c soc2011/aalvarez/pbmac/sys/netinet6/in6.c soc2011/aalvarez/pbmac/sys/netinet6/in6.h soc2011/aalvarez/pbmac/sys/netinet6/in6_gif.c soc2011/aalvarez/pbmac/sys/netinet6/in6_pcb.c soc2011/aalvarez/pbmac/sys/netinet6/in6_pcb.h soc2011/aalvarez/pbmac/sys/netinet6/in6_proto.c soc2011/aalvarez/pbmac/sys/netinet6/in6_src.c soc2011/aalvarez/pbmac/sys/netinet6/ip6_input.c soc2011/aalvarez/pbmac/sys/netinet6/ip6_ipsec.c soc2011/aalvarez/pbmac/sys/netinet6/ip6_var.h soc2011/aalvarez/pbmac/sys/netinet6/nd6.c soc2011/aalvarez/pbmac/sys/netinet6/nd6.h soc2011/aalvarez/pbmac/sys/netinet6/nd6_nbr.c soc2011/aalvarez/pbmac/sys/netinet6/nd6_rtr.c soc2011/aalvarez/pbmac/sys/netinet6/send.h soc2011/aalvarez/pbmac/sys/netinet6/udp6_usrreq.c soc2011/aalvarez/pbmac/sys/netipsec/ipsec_input.c soc2011/aalvarez/pbmac/sys/netipsec/ipsec_output.c soc2011/aalvarez/pbmac/sys/netipsec/xform_ipip.c soc2011/aalvarez/pbmac/sys/nfs/bootp_subr.c soc2011/aalvarez/pbmac/sys/nfsclient/nfs_bio.c soc2011/aalvarez/pbmac/sys/nfsclient/nfs_krpc.c soc2011/aalvarez/pbmac/sys/nfsclient/nfs_vfsops.c soc2011/aalvarez/pbmac/sys/nfsserver/nfs_srvkrpc.c soc2011/aalvarez/pbmac/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c soc2011/aalvarez/pbmac/sys/ofed/include/linux/list.h soc2011/aalvarez/pbmac/sys/pc98/conf/GENERIC soc2011/aalvarez/pbmac/sys/pc98/pc98/machdep.c soc2011/aalvarez/pbmac/sys/powerpc/aim/copyinout.c soc2011/aalvarez/pbmac/sys/powerpc/aim/interrupt.c soc2011/aalvarez/pbmac/sys/powerpc/aim/locore32.S soc2011/aalvarez/pbmac/sys/powerpc/aim/locore64.S soc2011/aalvarez/pbmac/sys/powerpc/aim/machdep.c soc2011/aalvarez/pbmac/sys/powerpc/aim/mmu_oea.c soc2011/aalvarez/pbmac/sys/powerpc/aim/mmu_oea64.c soc2011/aalvarez/pbmac/sys/powerpc/aim/moea64_native.c soc2011/aalvarez/pbmac/sys/powerpc/aim/mp_cpudep.c soc2011/aalvarez/pbmac/sys/powerpc/aim/slb.c soc2011/aalvarez/pbmac/sys/powerpc/aim/swtch32.S soc2011/aalvarez/pbmac/sys/powerpc/aim/swtch64.S soc2011/aalvarez/pbmac/sys/powerpc/aim/trap.c soc2011/aalvarez/pbmac/sys/powerpc/aim/trap_subr32.S soc2011/aalvarez/pbmac/sys/powerpc/aim/trap_subr64.S soc2011/aalvarez/pbmac/sys/powerpc/booke/copyinout.c soc2011/aalvarez/pbmac/sys/powerpc/booke/interrupt.c soc2011/aalvarez/pbmac/sys/powerpc/booke/locore.S soc2011/aalvarez/pbmac/sys/powerpc/booke/machdep.c soc2011/aalvarez/pbmac/sys/powerpc/booke/platform_bare.c soc2011/aalvarez/pbmac/sys/powerpc/booke/pmap.c soc2011/aalvarez/pbmac/sys/powerpc/booke/trap.c soc2011/aalvarez/pbmac/sys/powerpc/conf/GENERIC soc2011/aalvarez/pbmac/sys/powerpc/conf/GENERIC64 soc2011/aalvarez/pbmac/sys/powerpc/conf/NOTES soc2011/aalvarez/pbmac/sys/powerpc/include/_types.h soc2011/aalvarez/pbmac/sys/powerpc/include/openpicvar.h soc2011/aalvarez/pbmac/sys/powerpc/include/param.h soc2011/aalvarez/pbmac/sys/powerpc/include/pcpu.h soc2011/aalvarez/pbmac/sys/powerpc/include/pmap.h soc2011/aalvarez/pbmac/sys/powerpc/include/slb.h soc2011/aalvarez/pbmac/sys/powerpc/include/smp.h soc2011/aalvarez/pbmac/sys/powerpc/include/spr.h soc2011/aalvarez/pbmac/sys/powerpc/mpc85xx/mpc85xx.c soc2011/aalvarez/pbmac/sys/powerpc/mpc85xx/mpc85xx.h soc2011/aalvarez/pbmac/sys/powerpc/mpc85xx/openpic_fdt.c soc2011/aalvarez/pbmac/sys/powerpc/ofw/ofw_machdep.c soc2011/aalvarez/pbmac/sys/powerpc/ofw/ofw_real.c soc2011/aalvarez/pbmac/sys/powerpc/powermac/fcu.c soc2011/aalvarez/pbmac/sys/powerpc/powermac/smu.c soc2011/aalvarez/pbmac/sys/powerpc/powermac/smusat.c soc2011/aalvarez/pbmac/sys/powerpc/powerpc/db_trace.c soc2011/aalvarez/pbmac/sys/powerpc/powerpc/intr_machdep.c soc2011/aalvarez/pbmac/sys/powerpc/powerpc/mp_machdep.c soc2011/aalvarez/pbmac/sys/powerpc/powerpc/openpic.c soc2011/aalvarez/pbmac/sys/powerpc/powerpc/pic_if.m soc2011/aalvarez/pbmac/sys/powerpc/ps3/if_glc.c soc2011/aalvarez/pbmac/sys/powerpc/ps3/ps3-hvcall.h soc2011/aalvarez/pbmac/sys/powerpc/ps3/ps3-hvcall.master soc2011/aalvarez/pbmac/sys/powerpc/ps3/ps3bus.c soc2011/aalvarez/pbmac/sys/powerpc/ps3/ps3bus.h soc2011/aalvarez/pbmac/sys/powerpc/ps3/ps3pic.c soc2011/aalvarez/pbmac/sys/rpc/rpc_generic.c soc2011/aalvarez/pbmac/sys/rpc/rpcsec_gss.h soc2011/aalvarez/pbmac/sys/sparc64/conf/GENERIC soc2011/aalvarez/pbmac/sys/sparc64/include/_types.h soc2011/aalvarez/pbmac/sys/sparc64/include/cache.h soc2011/aalvarez/pbmac/sys/sparc64/include/cpu.h soc2011/aalvarez/pbmac/sys/sparc64/include/ktr.h soc2011/aalvarez/pbmac/sys/sparc64/include/pmap.h soc2011/aalvarez/pbmac/sys/sparc64/include/smp.h soc2011/aalvarez/pbmac/sys/sparc64/include/tlb.h soc2011/aalvarez/pbmac/sys/sparc64/include/tsb.h soc2011/aalvarez/pbmac/sys/sparc64/include/vmparam.h soc2011/aalvarez/pbmac/sys/sparc64/sparc64/cache.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/cheetah.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/exception.S soc2011/aalvarez/pbmac/sys/sparc64/sparc64/genassym.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/interrupt.S soc2011/aalvarez/pbmac/sys/sparc64/sparc64/intr_machdep.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/machdep.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/mp_exception.S soc2011/aalvarez/pbmac/sys/sparc64/sparc64/mp_locore.S soc2011/aalvarez/pbmac/sys/sparc64/sparc64/mp_machdep.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/pmap.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/spitfire.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/swtch.S soc2011/aalvarez/pbmac/sys/sparc64/sparc64/sys_machdep.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/tlb.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/vm_machdep.c soc2011/aalvarez/pbmac/sys/sparc64/sparc64/zeus.c soc2011/aalvarez/pbmac/sys/sys/_rmlock.h soc2011/aalvarez/pbmac/sys/sys/_types.h soc2011/aalvarez/pbmac/sys/sys/capability.h soc2011/aalvarez/pbmac/sys/sys/conf.h soc2011/aalvarez/pbmac/sys/sys/cpuset.h soc2011/aalvarez/pbmac/sys/sys/disk.h soc2011/aalvarez/pbmac/sys/sys/diskmbr.h soc2011/aalvarez/pbmac/sys/sys/diskpc98.h soc2011/aalvarez/pbmac/sys/sys/dtrace_bsd.h soc2011/aalvarez/pbmac/sys/sys/file.h soc2011/aalvarez/pbmac/sys/sys/filedesc.h soc2011/aalvarez/pbmac/sys/sys/ktr.h soc2011/aalvarez/pbmac/sys/sys/mbuf.h soc2011/aalvarez/pbmac/sys/sys/msgbuf.h soc2011/aalvarez/pbmac/sys/sys/param.h soc2011/aalvarez/pbmac/sys/sys/pcpu.h soc2011/aalvarez/pbmac/sys/sys/pmckern.h soc2011/aalvarez/pbmac/sys/sys/priv.h soc2011/aalvarez/pbmac/sys/sys/proc.h soc2011/aalvarez/pbmac/sys/sys/racct.h soc2011/aalvarez/pbmac/sys/sys/smp.h soc2011/aalvarez/pbmac/sys/sys/sockio.h soc2011/aalvarez/pbmac/sys/sys/soundcard.h soc2011/aalvarez/pbmac/sys/sys/systm.h soc2011/aalvarez/pbmac/sys/sys/tty.h soc2011/aalvarez/pbmac/sys/sys/ttydevsw.h soc2011/aalvarez/pbmac/sys/sys/types.h soc2011/aalvarez/pbmac/sys/sys/uio.h soc2011/aalvarez/pbmac/sys/sys/vnode.h soc2011/aalvarez/pbmac/sys/teken/demo/teken_demo.c soc2011/aalvarez/pbmac/sys/teken/gensequences soc2011/aalvarez/pbmac/sys/teken/libteken/teken.3 soc2011/aalvarez/pbmac/sys/teken/teken.c soc2011/aalvarez/pbmac/sys/teken/teken_subr.h soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_alloc.c soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_balloc.c soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_extern.h soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_inode.c soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_snapshot.c soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_softdep.c soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_vfsops.c soc2011/aalvarez/pbmac/sys/ufs/ffs/ffs_vnops.c soc2011/aalvarez/pbmac/sys/ufs/ffs/fs.h soc2011/aalvarez/pbmac/sys/ufs/ffs/softdep.h soc2011/aalvarez/pbmac/sys/ufs/ufs/inode.h soc2011/aalvarez/pbmac/sys/ufs/ufs/quota.h soc2011/aalvarez/pbmac/sys/ufs/ufs/ufs_inode.c soc2011/aalvarez/pbmac/sys/ufs/ufs/ufs_lookup.c soc2011/aalvarez/pbmac/sys/ufs/ufs/ufs_quota.c soc2011/aalvarez/pbmac/sys/ufs/ufs/ufs_vnops.c soc2011/aalvarez/pbmac/sys/ufs/ufs/ufsmount.h soc2011/aalvarez/pbmac/sys/vm/device_pager.c soc2011/aalvarez/pbmac/sys/vm/swap_pager.c soc2011/aalvarez/pbmac/sys/vm/vm_extern.h soc2011/aalvarez/pbmac/sys/vm/vm_fault.c soc2011/aalvarez/pbmac/sys/vm/vm_glue.c soc2011/aalvarez/pbmac/sys/vm/vm_map.c soc2011/aalvarez/pbmac/sys/vm/vm_mmap.c soc2011/aalvarez/pbmac/sys/vm/vm_object.c soc2011/aalvarez/pbmac/sys/vm/vm_object.h soc2011/aalvarez/pbmac/sys/vm/vm_page.c soc2011/aalvarez/pbmac/sys/vm/vm_page.h soc2011/aalvarez/pbmac/sys/vm/vm_pageout.c soc2011/aalvarez/pbmac/sys/vm/vm_unix.c soc2011/aalvarez/pbmac/sys/vm/vnode_pager.c soc2011/aalvarez/pbmac/sys/vm/vnode_pager.h soc2011/aalvarez/pbmac/sys/x86/x86/local_apic.c soc2011/aalvarez/pbmac/sys/x86/x86/tsc.c soc2011/aalvarez/pbmac/sys/xen/interface/io/xenbus.h soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbus.c soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbus_if.m soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbusb.c soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbusb.h soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbusb_back.c soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbusb_front.c soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbusb_if.m soc2011/aalvarez/pbmac/sys/xen/xenbus/xenbusvar.h soc2011/aalvarez/pbmac/sys/xen/xenstore/xenstorevar.h soc2011/aalvarez/pbmac/tools/build/make_check/Makefile soc2011/aalvarez/pbmac/tools/build/mk/OptionalObsoleteFiles.inc soc2011/aalvarez/pbmac/tools/build/options/WITHOUT_ACCT soc2011/aalvarez/pbmac/tools/build/options/WITH_BSD_GREP soc2011/aalvarez/pbmac/tools/regression/bin/sh/builtins/alias.1.stderr soc2011/aalvarez/pbmac/tools/regression/kqueue/config.h soc2011/aalvarez/pbmac/tools/regression/kqueue/main.c soc2011/aalvarez/pbmac/tools/regression/kqueue/proc.c soc2011/aalvarez/pbmac/tools/regression/lib/libc/gen/Makefile soc2011/aalvarez/pbmac/tools/regression/netinet/tcpconnect/tcpconnect.c soc2011/aalvarez/pbmac/tools/regression/netinet/tcpdrop/tcpdrop.c soc2011/aalvarez/pbmac/tools/regression/netinet/tcpfullwindowrst/tcpfullwindowrsttest.c soc2011/aalvarez/pbmac/tools/regression/netinet/tcpsocktimewait/tcpsocktimewait.c soc2011/aalvarez/pbmac/tools/regression/netinet/udpconnectjail/udpconnectjail.c soc2011/aalvarez/pbmac/tools/regression/usr.bin/printf/regress.sh soc2011/aalvarez/pbmac/tools/tools/README soc2011/aalvarez/pbmac/tools/tools/ether_reflect/ether_reflect.1 soc2011/aalvarez/pbmac/tools/tools/nanobsd/nanobsd.sh soc2011/aalvarez/pbmac/usr.bin/Makefile soc2011/aalvarez/pbmac/usr.bin/calendar/ (props changed) soc2011/aalvarez/pbmac/usr.bin/calendar/calendars/calendar.freebsd soc2011/aalvarez/pbmac/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all soc2011/aalvarez/pbmac/usr.bin/calendar/io.c soc2011/aalvarez/pbmac/usr.bin/calendar/parsedata.c soc2011/aalvarez/pbmac/usr.bin/calendar/pom.c soc2011/aalvarez/pbmac/usr.bin/clang/tblgen/Makefile soc2011/aalvarez/pbmac/usr.bin/cmp/regular.c soc2011/aalvarez/pbmac/usr.bin/cmp/special.c soc2011/aalvarez/pbmac/usr.bin/csup/ (props changed) soc2011/aalvarez/pbmac/usr.bin/find/function.c soc2011/aalvarez/pbmac/usr.bin/find/main.c soc2011/aalvarez/pbmac/usr.bin/find/option.c soc2011/aalvarez/pbmac/usr.bin/finger/net.c soc2011/aalvarez/pbmac/usr.bin/fstat/fuser.1 soc2011/aalvarez/pbmac/usr.bin/fstat/fuser.c soc2011/aalvarez/pbmac/usr.bin/ftp/Makefile soc2011/aalvarez/pbmac/usr.bin/gcore/elfcore.c soc2011/aalvarez/pbmac/usr.bin/grep/Makefile soc2011/aalvarez/pbmac/usr.bin/grep/fastgrep.c soc2011/aalvarez/pbmac/usr.bin/grep/grep.c soc2011/aalvarez/pbmac/usr.bin/grep/util.c soc2011/aalvarez/pbmac/usr.bin/gzip/Makefile soc2011/aalvarez/pbmac/usr.bin/gzip/gzip.1 soc2011/aalvarez/pbmac/usr.bin/gzip/gzip.c soc2011/aalvarez/pbmac/usr.bin/gzip/zdiff soc2011/aalvarez/pbmac/usr.bin/gzip/zdiff.1 soc2011/aalvarez/pbmac/usr.bin/gzip/zuncompress.c soc2011/aalvarez/pbmac/usr.bin/iconv/Makefile soc2011/aalvarez/pbmac/usr.bin/ipcs/ipc.c soc2011/aalvarez/pbmac/usr.bin/kdump/mksubr soc2011/aalvarez/pbmac/usr.bin/ktrace/ktrace.c soc2011/aalvarez/pbmac/usr.bin/lastcomm/lastcomm.c soc2011/aalvarez/pbmac/usr.bin/lastcomm/readrec.c soc2011/aalvarez/pbmac/usr.bin/ldd/sods.c soc2011/aalvarez/pbmac/usr.bin/man/man.1 soc2011/aalvarez/pbmac/usr.bin/man/man.conf.5 soc2011/aalvarez/pbmac/usr.bin/man/man.sh soc2011/aalvarez/pbmac/usr.bin/mkcsmapper/mkcsmapper.1 soc2011/aalvarez/pbmac/usr.bin/mkesdb/mkesdb.1 soc2011/aalvarez/pbmac/usr.bin/ncal/ncal.1 soc2011/aalvarez/pbmac/usr.bin/ncal/ncal.c soc2011/aalvarez/pbmac/usr.bin/ncplogin/ncplogin.c soc2011/aalvarez/pbmac/usr.bin/netstat/netisr.c soc2011/aalvarez/pbmac/usr.bin/printf/printf.1 soc2011/aalvarez/pbmac/usr.bin/printf/printf.c soc2011/aalvarez/pbmac/usr.bin/procstat/ (props changed) soc2011/aalvarez/pbmac/usr.bin/quota/quota.c soc2011/aalvarez/pbmac/usr.bin/rctl/Makefile soc2011/aalvarez/pbmac/usr.bin/rctl/rctl.8 soc2011/aalvarez/pbmac/usr.bin/rpcgen/rpc_scan.c soc2011/aalvarez/pbmac/usr.bin/showmount/showmount.c soc2011/aalvarez/pbmac/usr.bin/su/su.1 soc2011/aalvarez/pbmac/usr.bin/systat/netstat.c soc2011/aalvarez/pbmac/usr.bin/tar/util.c soc2011/aalvarez/pbmac/usr.bin/tar/write.c soc2011/aalvarez/pbmac/usr.bin/tftp/main.c soc2011/aalvarez/pbmac/usr.bin/tftp/tftp.1 soc2011/aalvarez/pbmac/usr.bin/top/machine.c soc2011/aalvarez/pbmac/usr.bin/top/top.local.1 soc2011/aalvarez/pbmac/usr.bin/users/users.c soc2011/aalvarez/pbmac/usr.bin/vmstat/vmstat.c soc2011/aalvarez/pbmac/usr.bin/w/w.c soc2011/aalvarez/pbmac/usr.bin/xlint/lint1/decl.c soc2011/aalvarez/pbmac/usr.bin/xlint/lint1/scan.l soc2011/aalvarez/pbmac/usr.bin/xlint/lint2/msg.c soc2011/aalvarez/pbmac/usr.bin/xlint/lint2/read.c soc2011/aalvarez/pbmac/usr.sbin/Makefile soc2011/aalvarez/pbmac/usr.sbin/ancontrol/ancontrol.c soc2011/aalvarez/pbmac/usr.sbin/bluetooth/ath3kfw/Makefile soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/Makefile soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/partedit/partedit.c soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/scripts/Makefile soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/scripts/auto soc2011/aalvarez/pbmac/usr.sbin/bsdinstall/scripts/netconfig soc2011/aalvarez/pbmac/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 soc2011/aalvarez/pbmac/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c soc2011/aalvarez/pbmac/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 soc2011/aalvarez/pbmac/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile soc2011/aalvarez/pbmac/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 soc2011/aalvarez/pbmac/usr.sbin/config/main.c soc2011/aalvarez/pbmac/usr.sbin/diskinfo/diskinfo.c soc2011/aalvarez/pbmac/usr.sbin/fdread/fdread.c soc2011/aalvarez/pbmac/usr.sbin/flowctl/Makefile soc2011/aalvarez/pbmac/usr.sbin/flowctl/flowctl.8 soc2011/aalvarez/pbmac/usr.sbin/flowctl/flowctl.c soc2011/aalvarez/pbmac/usr.sbin/ftp-proxy/ftp-proxy/Makefile soc2011/aalvarez/pbmac/usr.sbin/gpioctl/gpioctl.8 soc2011/aalvarez/pbmac/usr.sbin/ifmcstat/ifmcstat.c soc2011/aalvarez/pbmac/usr.sbin/jail/Makefile soc2011/aalvarez/pbmac/usr.sbin/jail/jail.c soc2011/aalvarez/pbmac/usr.sbin/jls/Makefile soc2011/aalvarez/pbmac/usr.sbin/jls/jls.c soc2011/aalvarez/pbmac/usr.sbin/kbdmap/kbdmap.c soc2011/aalvarez/pbmac/usr.sbin/lastlogin/lastlogin.8 soc2011/aalvarez/pbmac/usr.sbin/lastlogin/lastlogin.c soc2011/aalvarez/pbmac/usr.sbin/makefs/Makefile soc2011/aalvarez/pbmac/usr.sbin/makefs/cd9660/cd9660_write.c soc2011/aalvarez/pbmac/usr.sbin/makefs/ffs.c soc2011/aalvarez/pbmac/usr.sbin/makefs/ffs/ffs_bswap.c soc2011/aalvarez/pbmac/usr.sbin/makefs/ffs/ffs_subr.c soc2011/aalvarez/pbmac/usr.sbin/makefs/makefs.8 soc2011/aalvarez/pbmac/usr.sbin/makefs/makefs.c soc2011/aalvarez/pbmac/usr.sbin/makefs/makefs.h soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_config.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_drive.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_evt.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_flash.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_patrol.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_show.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfi_volume.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfiutil.8 soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfiutil.c soc2011/aalvarez/pbmac/usr.sbin/mfiutil/mfiutil.h soc2011/aalvarez/pbmac/usr.sbin/mountd/mountd.c soc2011/aalvarez/pbmac/usr.sbin/mtest/mtest.c soc2011/aalvarez/pbmac/usr.sbin/ndiscvt/ (props changed) soc2011/aalvarez/pbmac/usr.sbin/nfsd/nfsd.c soc2011/aalvarez/pbmac/usr.sbin/nfsuserd/nfsuserd.c soc2011/aalvarez/pbmac/usr.sbin/pc-sysinstall/backend-query/enable-net.sh soc2011/aalvarez/pbmac/usr.sbin/pc-sysinstall/backend-query/test-netup.sh soc2011/aalvarez/pbmac/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh soc2011/aalvarez/pbmac/usr.sbin/pc-sysinstall/backend/functions-networking.sh soc2011/aalvarez/pbmac/usr.sbin/pmccontrol/pmccontrol.c soc2011/aalvarez/pbmac/usr.sbin/pmcstat/pmcpl_calltree.c soc2011/aalvarez/pbmac/usr.sbin/ppp/nat_cmd.c soc2011/aalvarez/pbmac/usr.sbin/pw/pw_user.c soc2011/aalvarez/pbmac/usr.sbin/pwd_mkdb/pwd_mkdb.c soc2011/aalvarez/pbmac/usr.sbin/rpc.lockd/lockd.c soc2011/aalvarez/pbmac/usr.sbin/rpc.statd/statd.c soc2011/aalvarez/pbmac/usr.sbin/rpc.yppasswdd/yppasswdd_main.c soc2011/aalvarez/pbmac/usr.sbin/rpc.ypupdated/update.c soc2011/aalvarez/pbmac/usr.sbin/rpc.ypupdated/ypupdated_main.c soc2011/aalvarez/pbmac/usr.sbin/rpc.ypupdated/ypupdated_server.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/advcap.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/config.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/config.h soc2011/aalvarez/pbmac/usr.sbin/rtadvd/dump.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/dump.h soc2011/aalvarez/pbmac/usr.sbin/rtadvd/if.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/if.h soc2011/aalvarez/pbmac/usr.sbin/rtadvd/pathnames.h soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rrenum.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rrenum.h soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rtadvd.8 soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rtadvd.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rtadvd.conf soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rtadvd.conf.5 soc2011/aalvarez/pbmac/usr.sbin/rtadvd/rtadvd.h soc2011/aalvarez/pbmac/usr.sbin/rtadvd/timer.c soc2011/aalvarez/pbmac/usr.sbin/rtadvd/timer.h soc2011/aalvarez/pbmac/usr.sbin/rtsold/dump.c soc2011/aalvarez/pbmac/usr.sbin/rtsold/if.c soc2011/aalvarez/pbmac/usr.sbin/rtsold/probe.c soc2011/aalvarez/pbmac/usr.sbin/rtsold/rtsock.c soc2011/aalvarez/pbmac/usr.sbin/rtsold/rtsol.c soc2011/aalvarez/pbmac/usr.sbin/rtsold/rtsold.8 soc2011/aalvarez/pbmac/usr.sbin/rtsold/rtsold.c soc2011/aalvarez/pbmac/usr.sbin/rtsold/rtsold.h soc2011/aalvarez/pbmac/usr.sbin/sysinstall/modules.c soc2011/aalvarez/pbmac/usr.sbin/tcpdrop/tcpdrop.c soc2011/aalvarez/pbmac/usr.sbin/usbdump/usbdump.8 soc2011/aalvarez/pbmac/usr.sbin/wpa/ndis_events/ndis_events.c soc2011/aalvarez/pbmac/usr.sbin/wpa/wpa_supplicant/Packet32.c soc2011/aalvarez/pbmac/usr.sbin/ypserv/yp_main.c soc2011/aalvarez/pbmac/usr.sbin/zic/ (props changed) Modified: soc2011/aalvarez/pbmac/Makefile ============================================================================== --- soc2011/aalvarez/pbmac/Makefile Mon Jul 11 22:01:39 2011 (r224133) +++ soc2011/aalvarez/pbmac/Makefile Tue Jul 12 00:05:23 2011 (r224134) @@ -19,7 +19,7 @@ # kernel - buildkernel + installkernel. # kernel-toolchain - Builds the subset of world necessary to build a kernel # doxygen - Build API documentation of the kernel, needs doxygen. -# update - Convenient way to update your source tree (cvs). +# update - Convenient way to update your source tree(s). # check-old - List obsolete directories/files/libraries. # check-old-dirs - List obsolete directories. # check-old-files - List obsolete files. Modified: soc2011/aalvarez/pbmac/Makefile.inc1 ============================================================================== --- soc2011/aalvarez/pbmac/Makefile.inc1 Mon Jul 11 22:01:39 2011 (r224133) +++ soc2011/aalvarez/pbmac/Makefile.inc1 Tue Jul 12 00:05:23 2011 (r224134) @@ -12,6 +12,7 @@ # -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel # -DNO_PORTSUPDATE do not update ports in ${MAKE} update # -DNO_DOCUPDATE do not update doc in ${MAKE} update +# -DNO_WWWUPDATE do not update www in ${MAKE} update # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list # TARGET="machine" to crossbuild world for a different machine type @@ -904,7 +905,7 @@ # # update # -# Update the source tree, by running cvsup and/or running cvs to update to the +# Update the source tree(s), by running cvsup/cvs/svn to update to the # latest copy. # update: @@ -927,6 +928,9 @@ .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) @${SUP} ${SUPFLAGS} ${DOCSUPFILE} .endif +.if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE) + @${SUP} ${SUPFLAGS} ${WWWSUPFILE} +.endif .endif .if defined(CVS_UPDATE) @cd ${.CURDIR} ; \ Modified: soc2011/aalvarez/pbmac/ObsoleteFiles.inc ============================================================================== --- soc2011/aalvarez/pbmac/ObsoleteFiles.inc Mon Jul 11 22:01:39 2011 (r224133) +++ soc2011/aalvarez/pbmac/ObsoleteFiles.inc Tue Jul 12 00:05:23 2011 (r224134) @@ -38,6 +38,31 @@ # xargs -n1 | sort | uniq -d; # done +# 20110709: vm_map_clean.9 -> vm_map_sync.9 +OLD_FILES+=usr/share/man/man9/vm_map_clean.9.gz +# 20110709: Catch up with removal of these functions. +OLD_FILES+=usr/share/man/man9/vm_page_copy.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_protect.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_zero_fill.9.gz +# 20110707: script no longer needed by /etc/rc.d/nfsd +OLD_FILES+=etc/rc.d/nfsserver +# 20110705: files moved so both NFS clients can share them +OLD_FILES+=usr/include/nfsclient/krpc.h +OLD_FILES+=usr/include/nfsclient/nfsdiskless.h +# 20110705: the switch of default NFS client to the new one +OLD_FILES+=sbin/mount_newnfs +OLD_FILES+=usr/share/man/man8/mount_newnfs.8.gz +OLD_FILES+=usr/include/nfsclient/nfs_kdtrace.h +# 20110628: calendar.msk removed +OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.msk +# 20110517: libpkg removed +OLD_FILES+=usr/include/pkg.h +OLD_FILES+=usr/lib/libpkg.a +OLD_FILES+=usr/lib/libpkg.so +OLD_LIBS+=usr/lib/libpkg.so.0 +OLD_FILES+=usr/lib/libpkg_p.a +# 20110517: libsbuf version bump +OLD_LIBS+=lib/libsbuf.so.5 # 20110502: new clang import which bumps version from 2.9 to 3.0 OLD_FILES+=usr/include/clang/2.9/emmintrin.h OLD_FILES+=usr/include/clang/2.9/mm_malloc.h @@ -66,6 +91,8 @@ OLD_FILES+=usr/libexec/cc1obj OLD_LIBS+=usr/lib/libobjc.so.4 OLD_DIRS+=usr/include/objc +# 20110331: firmware.img created at build time +OLD_FILES+=usr/share/examples/kld/firmware/fwimage/firmware.img # 20110224: sticky.8 -> sticky.7 OLD_FILES+=usr/share/man/man8/sticky.8.gz # 20110220: new clang import which bumps version from 2.8 to 2.9 @@ -76,6 +103,8 @@ OLD_FILES+=usr/include/clang/2.8/tmmintrin.h OLD_FILES+=usr/include/clang/2.8/xmmintrin.h OLD_DIRS+=usr/include/clang/2.8 +# 20110119: netinet/sctp_cc_functions.h removed +OLD_FILES+=usr/include/netinet/sctp_cc_functions.h # 20110119: Remove SYSCTL_*X* sysctl additions. OLD_FILES+=usr/share/man/man9/SYSCTL_XINT.9.gz \ usr/share/man/man9/SYSCTL_XLONG.9.gz @@ -131,6 +160,8 @@ OLD_FILES+=usr/share/man/man9/vgonel.9.gz # 20101112: removed gasp.info OLD_FILES+=usr/share/info/gasp.info.gz +# 20101109: machine/mutex.h removed +OLD_FILES+=usr/include/machine/mutex.h # 20101109: headers moved from machine/ to x86/ .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" OLD_FILES+=usr/include/machine/mptable.h Modified: soc2011/aalvarez/pbmac/UPDATING ============================================================================== --- soc2011/aalvarez/pbmac/UPDATING Mon Jul 11 22:01:39 2011 (r224133) +++ soc2011/aalvarez/pbmac/UPDATING Tue Jul 12 00:05:23 2011 (r224134) @@ -22,9 +22,54 @@ machines to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20110628: + The packet filter (pf) code has been updated to OpenBSD 4.5. + You need to update userland tools to be in sync with kernel. + This update breaks backward compatibility with earlier pfsync(4) + versions. Care must be taken when updating redundant firewall setups. + +20110608: + The following sysctls and tunables are retired on x86 platforms: + machdep.hlt_cpus + machdep.hlt_logical_cpus + The following sysctl is retired: + machdep.hyperthreading_allowed + The sysctls were supposed to provide a way to dynamically offline and + online selected CPUs on x86 platforms, but the implementation has not + been reliable especially with SCHED_ULE scheduler. + machdep.hyperthreading_allowed tunable is still available to ignore + hyperthreading CPUs at OS level. + Individual CPUs can be disabled using hint.lapic.X.disabled tunable, + where X is an APIC ID of a CPU. Be advised, though, that disabling + CPUs in non-uniform fashion will result in non-uniform topology and + may lead to sub-optimal system performance with SCHED_ULE, which is + a default scheduler. + +20110607: + cpumask_t type is retired and cpuset_t is used in order to describe + a mask of CPUs. + +20110531: + Changes to ifconfig(8) for dynamic address family detection mandate + that you are running a kernel of 20110525 or later. Make sure to + follow the update procedure to boot a new kernel before installing + world. + 20110513: Support for sun4v architecture is officially dropped +20110503: + Several KPI breaking changes have been committed to the mii(4) layer, + the PHY drivers and consequently some Ethernet drivers using mii(4). + This means that miibus.ko and the modules of the affected Ethernet + drivers need to be recompiled. + + Note to kernel developers: Given that the OUI bit reversion problem + was fixed as part of these changes all mii(4) commits related to OUIs, + i.e. to sys/dev/mii/miidevs, PHY driver probing and vendor specific + handling, no longer can be merged verbatim to stable/8 and previous + branches. + 20110430: Users of the Atheros AR71xx SoC code now need to add 'device ar71xx_pci' into their kernel configurations along with 'device pci'. Modified: soc2011/aalvarez/pbmac/bin/expr/expr.1 ============================================================================== --- soc2011/aalvarez/pbmac/bin/expr/expr.1 Mon Jul 11 22:01:39 2011 (r224133) +++ soc2011/aalvarez/pbmac/bin/expr/expr.1 Tue Jul 12 00:05:23 2011 (r224134) @@ -50,25 +50,25 @@ All operators and operands must be passed as separate arguments. Several of the operators have special meaning to command interpreters and must therefore be quoted appropriately. -All integer operands are interpreted in base 10. +All integer operands are interpreted in base 10 and must consist of only +an optional leading minus sign followed by one or more digits (unless +less strict parsing has been enabled for backwards compatibilty with +prior versions of +.Nm +in +.Fx ) . .Pp -Arithmetic operations are performed using signed integer math. -If the -.Fl e -flag is specified, arithmetic uses the C +Arithmetic operations are performed using signed integer math with a +range according to the C .Vt intmax_t -data type (the largest integral type available), and -.Nm -will detect arithmetic overflow and return an error indication. -If a numeric operand is specified which is so large as to overflow -conversion to an integer, it is parsed as a string instead. -If +data type (the largest signed integral type available). +All conversions and operations are checked for overflow. +Overflow results in program termination with an error message on stdout +and with an error status. +.Pp +The .Fl e -is not specified, arithmetic operations and parsing of integer -arguments will overflow silently according to the rules of the C -standard, using the -.Vt long -data type. +option enables backwards compatible behaviour as detailed below. .Pp Operators are listed below in order of increasing precedence; all are left-associative. @@ -82,7 +82,9 @@ .Ar expr1 if it is neither an empty string nor zero; otherwise, returns the evaluation of -.Ar expr2 . +.Ar expr2 +if it is not an empty string; +otherwise, returns zero. .It Ar expr1 Li & Ar expr2 Return the evaluation of .Ar expr1 @@ -163,25 +165,26 @@ .Fa utility argument of .Dq Li expr ) -is used to determine whether compatibility mode should be enabled. +is used to determine whether backwards compatibility mode should be enabled. This feature is intended for use as a transition and debugging aid, when .Nm is used in complex scripts which cannot easily be recast to avoid the non-portable usage. -Enabling compatibility mode -also implicitly enables the +Enabling backwards compatibility mode also implicitly enables the .Fl e option, since this matches the historic behavior of .Nm in -.Fx . +.Fx . This option makes number parsing less strict and permits leading +white space and an optional leading plus sign. In addition, empty operands +have an implied value of zero in numeric context. For historical reasons, defining the environment variable .Ev EXPR_COMPAT -also enables compatibility mode. +also enables backwards compatibility mode. .Sh ENVIRONMENT .Bl -tag -width ".Ev EXPR_COMPAT" .It Ev EXPR_COMPAT -If set, enables compatibility mode. +If set, enables backwards compatibility mode. .El .Sh EXIT STATUS The @@ -270,8 +273,37 @@ The .Nm utility conforms to -.St -p1003.1-2001 , -provided that compatibility mode is not enabled. +.St -p1003.1-2008 , +provided that backwards compatibility mode is not enabled. +.Pp +Backwards compatibility mode performs less strict checks of numeric arguments: +.Bl -bullet +.It +An empty operand string is interpreted as 0. +.El +.Bl -bullet +.It +Leading white space and/or a plus sign before an otherwise valid positive +numberic operand are allowed and will be ignored. +.El +.Pp +The extended arithmetic range and overflow checks do not conflict with +POSIX's requirement that arithmetic be done using signed longs, since +they only make a difference to the result in cases where using signed +longs would give undefined behavior. +.Pp +According to the +.Tn POSIX +standard, the use of string arguments +.Va length , +.Va substr , +.Va index , +or +.Va match +produces undefined results. In this version of +.Nm , +these arguments are treated just as their respective string values. +.Pp The .Fl e flag is an extension. Modified: soc2011/aalvarez/pbmac/bin/expr/expr.y ============================================================================== --- soc2011/aalvarez/pbmac/bin/expr/expr.y Mon Jul 11 22:01:39 2011 (r224133) +++ soc2011/aalvarez/pbmac/bin/expr/expr.y Tue Jul 12 00:05:23 2011 (r224134) @@ -1,6 +1,6 @@ %{ /*- - * Written by Pace Willisson (pace@blitz.com) + * Written by Pace Willisson (pace@blitz.com) * and placed in the public domain. * * Largely rewritten by J.T. Conklin (jtc@wimsey.com) @@ -21,7 +21,7 @@ #include #include #include - + /* * POSIX specifies a specific error code for syntax errors. We exit * with this code for all errors. @@ -40,15 +40,20 @@ } u; } ; -struct val *result; - -int chk_div(intmax_t, intmax_t); -int chk_minus(intmax_t, intmax_t, intmax_t); -int chk_plus(intmax_t, intmax_t, intmax_t); -int chk_times(intmax_t, intmax_t, intmax_t); +char **av; +int nonposix; +struct val *result; + +void assert_to_integer(struct val *); +void assert_div(intmax_t, intmax_t); +void assert_minus(intmax_t, intmax_t, intmax_t); +void assert_plus(intmax_t, intmax_t, intmax_t); +void assert_times(intmax_t, intmax_t, intmax_t); +int compare_vals(struct val *, struct val *); void free_value(struct val *); +int is_integer(const char *); +int is_string(struct val *); int is_zero_or_null(struct val *); -int isstring(struct val *); struct val *make_integer(intmax_t); struct val *make_str(const char *); struct val *op_and(struct val *, struct val *); @@ -65,14 +70,12 @@ struct val *op_plus(struct val *, struct val *); struct val *op_rem(struct val *, struct val *); struct val *op_times(struct val *, struct val *); -intmax_t to_integer(struct val *); +int to_integer(struct val *); void to_string(struct val *); int yyerror(const char *); int yylex(void); int yyparse(void); -static int eflag; -char **av; %} %union @@ -96,23 +99,22 @@ expr: TOKEN | '(' expr ')' { $$ = $2; } - | expr '|' expr { $$ = op_or ($1, $3); } - | expr '&' expr { $$ = op_and ($1, $3); } - | expr '=' expr { $$ = op_eq ($1, $3); } - | expr '>' expr { $$ = op_gt ($1, $3); } - | expr '<' expr { $$ = op_lt ($1, $3); } - | expr GE expr { $$ = op_ge ($1, $3); } - | expr LE expr { $$ = op_le ($1, $3); } - | expr NE expr { $$ = op_ne ($1, $3); } - | expr '+' expr { $$ = op_plus ($1, $3); } - | expr '-' expr { $$ = op_minus ($1, $3); } - | expr '*' expr { $$ = op_times ($1, $3); } - | expr '/' expr { $$ = op_div ($1, $3); } - | expr '%' expr { $$ = op_rem ($1, $3); } - | expr ':' expr { $$ = op_colon ($1, $3); } + | expr '|' expr { $$ = op_or($1, $3); } + | expr '&' expr { $$ = op_and($1, $3); } + | expr '=' expr { $$ = op_eq($1, $3); } + | expr '>' expr { $$ = op_gt($1, $3); } + | expr '<' expr { $$ = op_lt($1, $3); } + | expr GE expr { $$ = op_ge($1, $3); } + | expr LE expr { $$ = op_le($1, $3); } + | expr NE expr { $$ = op_ne($1, $3); } + | expr '+' expr { $$ = op_plus($1, $3); } + | expr '-' expr { $$ = op_minus($1, $3); } + | expr '*' expr { $$ = op_times($1, $3); } + | expr '/' expr { $$ = op_div($1, $3); } + | expr '%' expr { $$ = op_rem($1, $3); } + | expr ':' expr { $$ = op_colon($1, $3); } ; - %% struct val * @@ -120,89 +122,65 @@ { struct val *vp; - vp = (struct val *) malloc (sizeof (*vp)); - if (vp == NULL) { + vp = (struct val *)malloc(sizeof(*vp)); + if (vp == NULL) errx(ERR_EXIT, "malloc() failed"); - } vp->type = integer; vp->u.i = i; - return vp; + return (vp); } struct val * make_str(const char *s) { struct val *vp; - char *ep; - vp = (struct val *) malloc (sizeof (*vp)); - if (vp == NULL || ((vp->u.s = strdup (s)) == NULL)) { + vp = (struct val *)malloc(sizeof(*vp)); + if (vp == NULL || ((vp->u.s = strdup(s)) == NULL)) errx(ERR_EXIT, "malloc() failed"); - } - /* - * Previously we tried to scan the string to see if it ``looked like'' - * an integer (erroneously, as it happened). Let strtoimax() do the - * dirty work. We could cache the value, except that we are using - * a union and need to preserve the original string form until we - * are certain that it is not needed. - * - * IEEE Std.1003.1-2001 says: - * /integer/ An argument consisting only of an (optional) unary minus - * followed by digits. - * - * This means that arguments which consist of digits followed by - * non-digits MUST NOT be considered integers. strtoimax() will - * figure this out for us. - */ - if (eflag) - (void)strtoimax(s, &ep, 10); + if (is_integer(s)) + vp->type = numeric_string; else - (void)strtol(s, &ep, 10); - - if (*ep != '\0') vp->type = string; - else - vp->type = numeric_string; - return vp; + return (vp); } - void free_value(struct val *vp) { if (vp->type == string || vp->type == numeric_string) - free (vp->u.s); + free(vp->u.s); } - -intmax_t +int to_integer(struct val *vp) { intmax_t i; - if (vp->type == integer) - return 1; - - if (vp->type == string) - return 0; - - /* vp->type == numeric_string, make it numeric */ - errno = 0; - if (eflag) { + /* we can only convert numeric_string to integer, here */ + if (vp->type == numeric_string) { + errno = 0; i = strtoimax(vp->u.s, (char **)NULL, 10); - if (errno == ERANGE) - err(ERR_EXIT, NULL); - } else { - i = strtol(vp->u.s, (char **)NULL, 10); + /* just keep as numeric_string, if the conversion fails */ + if (errno != ERANGE) { + free(vp->u.s); + vp->u.i = i; + vp->type = integer; + } } + return (vp->type == integer); +} - free (vp->u.s); - vp->u.i = i; - vp->type = integer; - return 1; +void +assert_to_integer(struct val *vp) +{ + if (vp->type == string) + errx(ERR_EXIT, "not a decimal number: '%s'", vp->u.s); + if (!to_integer(vp)) + errx(ERR_EXIT, "operand too large: '%s'", vp->u.s); } void @@ -228,15 +206,31 @@ vp->u.s = tmp; } +int +is_integer(const char *s) +{ + if (nonposix) { + if (*s == '\0') + return (1); + while (isspace((unsigned char)*s)) + s++; + } + if (*s == '-' || (nonposix && *s == '+')) + s++; + if (*s == '\0') + return (0); + while (isdigit((unsigned char)*s)) + s++; + return (*s == '\0'); +} int -isstring(struct val *vp) +is_string(struct val *vp) { /* only TRUE if this string is not a valid integer */ return (vp->type == string); } - int yylex(void) { @@ -247,10 +241,10 @@ p = *av++; - if (strlen (p) == 1) { - if (strchr ("|&=<>+-*/%:()", *p)) + if (strlen(p) == 1) { + if (strchr("|&=<>+-*/%:()", *p)) return (*p); - } else if (strlen (p) == 2 && p[1] == '=') { + } else if (strlen(p) == 2 && p[1] == '=') { switch (*p) { case '>': return (GE); case '<': return (LE); @@ -258,19 +252,17 @@ } } - yylval.val = make_str (p); + yylval.val = make_str(p); return (TOKEN); } int is_zero_or_null(struct val *vp) { - if (vp->type == integer) { + if (vp->type == integer) return (vp->u.i == 0); - } else { - return (*vp->u.s == 0 || (to_integer (vp) && vp->u.i == 0)); - } - /* NOTREACHED */ + + return (*vp->u.s == 0 || (to_integer(vp) && vp->u.i == 0)); } int @@ -278,23 +270,22 @@ { int c; - setlocale (LC_ALL, ""); + setlocale(LC_ALL, ""); if (getenv("EXPR_COMPAT") != NULL || check_utility_compat("expr")) { av = argv + 1; - eflag = 1; + nonposix = 1; } else { - while ((c = getopt(argc, argv, "e")) != -1) + while ((c = getopt(argc, argv, "e")) != -1) { switch (c) { case 'e': - eflag = 1; + nonposix = 1; break; - default: - fprintf(stderr, + errx(ERR_EXIT, "usage: expr [-e] expression\n"); - exit(ERR_EXIT); } + } av = argv + optind; } @@ -314,164 +305,104 @@ errx(ERR_EXIT, "syntax error"); } - struct val * op_or(struct val *a, struct val *b) { - if (is_zero_or_null (a)) { - free_value (a); - return (b); - } else { - free_value (b); + if (!is_zero_or_null(a)) { + free_value(b); return (a); } + free_value(a); + if (!is_zero_or_null(b)) + return (b); + free_value(b); + return (make_integer((intmax_t)0)); } - + struct val * op_and(struct val *a, struct val *b) { - if (is_zero_or_null (a) || is_zero_or_null (b)) { - free_value (a); - free_value (b); - return (make_integer ((intmax_t)0)); + if (is_zero_or_null(a) || is_zero_or_null(b)) { + free_value(a); + free_value(b); + return (make_integer((intmax_t)0)); } else { - free_value (b); + free_value(b); return (a); } } -struct val * -op_eq(struct val *a, struct val *b) +int +compare_vals(struct val *a, struct val *b) { - struct val *r; + int r; - if (isstring (a) || isstring (b)) { - to_string (a); - to_string (b); - r = make_integer ((intmax_t)(strcoll (a->u.s, b->u.s) == 0)); - } else { - (void)to_integer(a); - (void)to_integer(b); - r = make_integer ((intmax_t)(a->u.i == b->u.i)); + if (is_string(a) || is_string(b)) { + to_string(a); + to_string(b); + r = strcoll(a->u.s, b->u.s); + } else { + assert_to_integer(a); + assert_to_integer(b); + if (a->u.i > b->u.i) + r = 1; + else if (a->u.i < b->u.i) + r = -1; + else + r = 0; } - free_value (a); - free_value (b); - return r; + free_value(a); + free_value(b); + return (r); } struct val * -op_gt(struct val *a, struct val *b) +op_eq(struct val *a, struct val *b) { - struct val *r; - - if (isstring (a) || isstring (b)) { - to_string (a); - to_string (b); - r = make_integer ((intmax_t)(strcoll (a->u.s, b->u.s) > 0)); - } else { - (void)to_integer(a); - (void)to_integer(b); - r = make_integer ((intmax_t)(a->u.i > b->u.i)); - } + return (make_integer((intmax_t)(compare_vals(a, b) == 0))); +} - free_value (a); - free_value (b); - return r; +struct val * +op_gt(struct val *a, struct val *b) +{ + return (make_integer((intmax_t)(compare_vals(a, b) > 0))); } struct val * op_lt(struct val *a, struct val *b) { - struct val *r; - - if (isstring (a) || isstring (b)) { - to_string (a); - to_string (b); - r = make_integer ((intmax_t)(strcoll (a->u.s, b->u.s) < 0)); - } else { - (void)to_integer(a); - (void)to_integer(b); - r = make_integer ((intmax_t)(a->u.i < b->u.i)); - } - - free_value (a); - free_value (b); - return r; + return (make_integer((intmax_t)(compare_vals(a, b) < 0))); } struct val * op_ge(struct val *a, struct val *b) { - struct val *r; - - if (isstring (a) || isstring (b)) { - to_string (a); - to_string (b); - r = make_integer ((intmax_t)(strcoll (a->u.s, b->u.s) >= 0)); - } else { - (void)to_integer(a); - (void)to_integer(b); - r = make_integer ((intmax_t)(a->u.i >= b->u.i)); - } - - free_value (a); - free_value (b); - return r; + return (make_integer((intmax_t)(compare_vals(a, b) >= 0))); } struct val * op_le(struct val *a, struct val *b) { - struct val *r; - - if (isstring (a) || isstring (b)) { - to_string (a); - to_string (b); - r = make_integer ((intmax_t)(strcoll (a->u.s, b->u.s) <= 0)); - } else { - (void)to_integer(a); - (void)to_integer(b); - r = make_integer ((intmax_t)(a->u.i <= b->u.i)); - } - - free_value (a); - free_value (b); - return r; + return (make_integer((intmax_t)(compare_vals(a, b) <= 0))); } struct val * op_ne(struct val *a, struct val *b) { - struct val *r; - - if (isstring (a) || isstring (b)) { - to_string (a); - to_string (b); - r = make_integer ((intmax_t)(strcoll (a->u.s, b->u.s) != 0)); - } else { - (void)to_integer(a); - (void)to_integer(b); - r = make_integer ((intmax_t)(a->u.i != b->u.i)); - } - - free_value (a); - free_value (b); - return r; + return (make_integer((intmax_t)(compare_vals(a, b) != 0))); } -int -chk_plus(intmax_t a, intmax_t b, intmax_t r) +void +assert_plus(intmax_t a, intmax_t b, intmax_t r) { - - /* sum of two positive numbers must be positive */ - if (a > 0 && b > 0 && r <= 0) - return 1; - /* sum of two negative numbers must be negative */ - if (a < 0 && b < 0 && r >= 0) - return 1; - /* all other cases are OK */ - return 0; + /* + * sum of two positive numbers must be positive, + * sum of two negative numbers must be negative + */ + if ((a > 0 && b > 0 && r <= 0) || + (a < 0 && b < 0 && r >= 0)) + errx(ERR_EXIT, "overflow"); } struct val * @@ -479,36 +410,24 @@ { struct val *r; - if (!to_integer(a) || !to_integer(b)) { - errx(ERR_EXIT, "non-numeric argument"); - } - - if (eflag) { - r = make_integer(a->u.i + b->u.i); - if (chk_plus(a->u.i, b->u.i, r->u.i)) { - errx(ERR_EXIT, "overflow"); - } - } else - r = make_integer((long)a->u.i + (long)b->u.i); + assert_to_integer(a); + assert_to_integer(b); + r = make_integer(a->u.i + b->u.i); + assert_plus(a->u.i, b->u.i, r->u.i); - free_value (a); - free_value (b); - return r; + free_value(a); + free_value(b); + return (r); } -int -chk_minus(intmax_t a, intmax_t b, intmax_t r) +void +assert_minus(intmax_t a, intmax_t b, intmax_t r) { - /* special case subtraction of INTMAX_MIN */ - if (b == INTMAX_MIN) { - if (a >= 0) - return 1; - else - return 0; - } - /* this is allowed for b != INTMAX_MIN */ - return chk_plus (a, -b, r); + if (b == INTMAX_MIN && a < 0) + errx(ERR_EXIT, "overflow"); + /* check addition of negative subtrahend */ + assert_plus(a, -b, r); } struct val * @@ -516,33 +435,25 @@ { struct val *r; - if (!to_integer(a) || !to_integer(b)) { - errx(ERR_EXIT, "non-numeric argument"); - } - - if (eflag) { - r = make_integer(a->u.i - b->u.i); - if (chk_minus(a->u.i, b->u.i, r->u.i)) { - errx(ERR_EXIT, "overflow"); - } - } else - r = make_integer((long)a->u.i - (long)b->u.i); + assert_to_integer(a); + assert_to_integer(b); + r = make_integer(a->u.i - b->u.i); + assert_minus(a->u.i, b->u.i, r->u.i); - free_value (a); - free_value (b); - return r; + free_value(a); + free_value(b); + return (r); } -int -chk_times(intmax_t a, intmax_t b, intmax_t r) +void +assert_times(intmax_t a, intmax_t b, intmax_t r) { - /* special case: first operand is 0, no overflow possible */ - if (a == 0) - return 0; - /* verify that result of division matches second operand */ - if (r / a != b) - return 1; - return 0; + /* + * if first operand is 0, no overflow is possible, + * else result of division test must match second operand + */ + if (a != 0 && r / a != b) + errx(ERR_EXIT, "overflow"); } struct val * @@ -550,32 +461,24 @@ { struct val *r; - if (!to_integer(a) || !to_integer(b)) { - errx(ERR_EXIT, "non-numeric argument"); - } - - if (eflag) { - r = make_integer(a->u.i * b->u.i); - if (chk_times(a->u.i, b->u.i, r->u.i)) { - errx(ERR_EXIT, "overflow"); - } - } else - r = make_integer((long)a->u.i * (long)b->u.i); + assert_to_integer(a); + assert_to_integer(b); + r = make_integer(a->u.i * b->u.i); + assert_times(a->u.i, b->u.i, r->u.i); - free_value (a); - free_value (b); + free_value(a); + free_value(b); return (r); } -int -chk_div(intmax_t a, intmax_t b) +void +assert_div(intmax_t a, intmax_t b) { - /* div by zero has been taken care of before */ + if (b == 0) + errx(ERR_EXIT, "division by zero"); /* only INTMAX_MIN / -1 causes overflow */ if (a == INTMAX_MIN && b == -1) - return 1; - /* everything else is OK */ - return 0; + errx(ERR_EXIT, "overflow"); } struct val * @@ -583,51 +486,33 @@ { struct val *r; - if (!to_integer(a) || !to_integer(b)) { - errx(ERR_EXIT, "non-numeric argument"); - } - - if (b->u.i == 0) { - errx(ERR_EXIT, "division by zero"); - } - - if (eflag) { - r = make_integer(a->u.i / b->u.i); - if (chk_div(a->u.i, b->u.i)) { - errx(ERR_EXIT, "overflow"); - } - } else - r = make_integer((long)a->u.i / (long)b->u.i); + assert_to_integer(a); + assert_to_integer(b); + /* assert based on operands only, not on result */ + assert_div(a->u.i, b->u.i); + r = make_integer(a->u.i / b->u.i); - free_value (a); - free_value (b); - return r; + free_value(a); + free_value(b); + return (r); } - *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 00:30:56 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id BB2681065670 for ; Wed, 13 Jul 2011 00:30:51 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 00:30:51 +0000 Date: Wed, 13 Jul 2011 00:30:51 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713003051.BB2681065670@hub.freebsd.org> Cc: Subject: socsvn commit: r224166 - in soc2011/shm: TESLA/examples/example2 TESLA/instrumenter-tests TESLA/instrumenter-tests/tests TESLA/libtesla clang/examples/TeslaInstrumenter sys sys/amd64 sys/amd64/acpi... X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 00:30:56 -0000 Author: shm Date: Wed Jul 13 00:30:41 2011 New Revision: 224166 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224166 Log: * merge : the great merge 2/3 Added: soc2011/shm/TESLA/examples/example2/instrumentation.spec soc2011/shm/TESLA/instrumenter-tests/tests/boassign.c soc2011/shm/TESLA/instrumenter-tests/tests/boassign.ins soc2011/shm/TESLA/instrumenter-tests/tests/boassign.out soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.c soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.ins soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.out soc2011/shm/sys/ soc2011/shm/sys/Makefile soc2011/shm/sys/amd64/ soc2011/shm/sys/amd64/Makefile soc2011/shm/sys/amd64/acpica/ soc2011/shm/sys/amd64/acpica/Makefile soc2011/shm/sys/amd64/acpica/OsdEnvironment.c soc2011/shm/sys/amd64/acpica/acpi_machdep.c soc2011/shm/sys/amd64/acpica/acpi_switch.S soc2011/shm/sys/amd64/acpica/acpi_wakecode.S soc2011/shm/sys/amd64/acpica/acpi_wakeup.c soc2011/shm/sys/amd64/acpica/genwakecode.sh soc2011/shm/sys/amd64/acpica/genwakedata.sh soc2011/shm/sys/amd64/acpica/madt.c soc2011/shm/sys/amd64/amd64/ soc2011/shm/sys/amd64/amd64/amd64_mem.c soc2011/shm/sys/amd64/amd64/apic_vector.S soc2011/shm/sys/amd64/amd64/atomic.c soc2011/shm/sys/amd64/amd64/autoconf.c soc2011/shm/sys/amd64/amd64/bios.c soc2011/shm/sys/amd64/amd64/bpf_jit_machdep.c soc2011/shm/sys/amd64/amd64/bpf_jit_machdep.h soc2011/shm/sys/amd64/amd64/busdma_machdep.c soc2011/shm/sys/amd64/amd64/cpu_switch.S soc2011/shm/sys/amd64/amd64/db_disasm.c soc2011/shm/sys/amd64/amd64/db_interface.c soc2011/shm/sys/amd64/amd64/db_trace.c soc2011/shm/sys/amd64/amd64/dump_machdep.c soc2011/shm/sys/amd64/amd64/elf_machdep.c soc2011/shm/sys/amd64/amd64/exception.S soc2011/shm/sys/amd64/amd64/fpu.c soc2011/shm/sys/amd64/amd64/gdb_machdep.c soc2011/shm/sys/amd64/amd64/genassym.c soc2011/shm/sys/amd64/amd64/identcpu.c soc2011/shm/sys/amd64/amd64/in_cksum.c soc2011/shm/sys/amd64/amd64/initcpu.c soc2011/shm/sys/amd64/amd64/intr_machdep.c soc2011/shm/sys/amd64/amd64/io.c soc2011/shm/sys/amd64/amd64/io_apic.c soc2011/shm/sys/amd64/amd64/legacy.c soc2011/shm/sys/amd64/amd64/local_apic.c soc2011/shm/sys/amd64/amd64/locore.S soc2011/shm/sys/amd64/amd64/machdep.c soc2011/shm/sys/amd64/amd64/mca.c soc2011/shm/sys/amd64/amd64/mem.c soc2011/shm/sys/amd64/amd64/minidump_machdep.c soc2011/shm/sys/amd64/amd64/mp_machdep.c soc2011/shm/sys/amd64/amd64/mp_watchdog.c soc2011/shm/sys/amd64/amd64/mpboot.S soc2011/shm/sys/amd64/amd64/mptable.c soc2011/shm/sys/amd64/amd64/mptable_pci.c soc2011/shm/sys/amd64/amd64/msi.c soc2011/shm/sys/amd64/amd64/nexus.c soc2011/shm/sys/amd64/amd64/pmap.c soc2011/shm/sys/amd64/amd64/prof_machdep.c soc2011/shm/sys/amd64/amd64/sigtramp.S soc2011/shm/sys/amd64/amd64/stack_machdep.c soc2011/shm/sys/amd64/amd64/support.S soc2011/shm/sys/amd64/amd64/sys_machdep.c soc2011/shm/sys/amd64/amd64/trap.c soc2011/shm/sys/amd64/amd64/tsc.c soc2011/shm/sys/amd64/amd64/uio_machdep.c soc2011/shm/sys/amd64/amd64/uma_machdep.c soc2011/shm/sys/amd64/amd64/vm_machdep.c soc2011/shm/sys/amd64/compile/ soc2011/shm/sys/amd64/compile/.cvsignore soc2011/shm/sys/amd64/compile/TESLA/ soc2011/shm/sys/amd64/compile/TESLA/Makefile soc2011/shm/sys/amd64/compile/TESLA/config.c soc2011/shm/sys/amd64/compile/TESLA/env.c soc2011/shm/sys/amd64/compile/TESLA/hints.c soc2011/shm/sys/amd64/compile/TESLA/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aac/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aac/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aac/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_data/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_data/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_data/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_dns/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_dns/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_dns/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_http/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_http/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/accf_http/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_aiboost/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_aiboost/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_aiboost/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_asus/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_asus/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_asus/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_dock/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_dock/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_dock/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_fujitsu/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_fujitsu/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_fujitsu/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_hp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_hp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_hp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_ibm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_ibm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_ibm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_panasonic/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_panasonic/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_panasonic/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_sony/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_sony/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_sony/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_toshiba/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_toshiba/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_toshiba/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_video/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_video/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_video/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_wmi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_wmi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/acpi/acpi_wmi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ae/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ae/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ae/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/age/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/age/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/age/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/agp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/agp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/agp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aha/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aha/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aha/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ahci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ahci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ahci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_eisa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_eisa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_eisa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_isa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_isa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_isa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_pci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_pci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/ahc_pci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/ahd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aic7xxx/aicasm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aio/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aio/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/aio/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/alc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/alc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/alc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ale/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ale/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ale/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amdsbwd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amdsbwd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amdsbwd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amdtemp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amdtemp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amdtemp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/amr_cam/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/amr_cam/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/amr_cam/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/amr_linux/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/amr_linux/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/amr_linux/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/amr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/an/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/an/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/an/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/arcmsr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/arcmsr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/arcmsr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/asmc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/asmc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/asmc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atacard/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atacard/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atacard/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atacore/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atacore/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atacore/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atadisk/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atadisk/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atadisk/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ataisa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ataisa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ataisa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataacard/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataacard/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataacard/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataacerlabs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataacerlabs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataacerlabs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataadaptec/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataadaptec/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataadaptec/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataahci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataahci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataahci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataamd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataamd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataamd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataati/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataati/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataati/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacenatek/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacenatek/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacenatek/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacypress/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacypress/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacypress/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacyrix/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacyrix/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atacyrix/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atahighpoint/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atahighpoint/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atahighpoint/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataintel/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataintel/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataintel/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataite/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataite/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataite/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atajmicron/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atajmicron/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atajmicron/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atamarvell/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atamarvell/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atamarvell/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atamicron/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atamicron/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atamicron/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanational/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanational/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanational/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanetcell/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanetcell/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanetcell/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanvidia/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanvidia/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atanvidia/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atapromise/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atapromise/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atapromise/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataserverworks/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataserverworks/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/ataserverworks/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atasiliconimage/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atasiliconimage/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atasiliconimage/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atasis/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atasis/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atasis/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atavia/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atavia/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/chipsets/atavia/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapicam/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapicam/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapicam/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapicd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapicd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapicd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapifd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapifd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapifd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapist/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapist/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/atapist/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ataraid/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ataraid/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ata/ataraid/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ath/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ath/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ath/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bce/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bce/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bce/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bfe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bfe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bfe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bridgestp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bridgestp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bridgestp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bwn/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bwn/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/bwn/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cam/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cam/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cam/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cardbus/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cardbus/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cardbus/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cas/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cas/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cas/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cbb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cbb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cbb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cd9660/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cd9660/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cd9660/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cd9660_iconv/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cd9660_iconv/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cd9660_iconv/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ciss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ciss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ciss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cmx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cmx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cmx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coda/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coda/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coda/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coda5/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coda5/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coda5/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coretemp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coretemp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/coretemp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cpuctl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cpuctl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cpuctl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cpufreq/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cpufreq/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cpufreq/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/crypto/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/crypto/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/crypto/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cryptodev/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cryptodev/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cryptodev/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/cxgb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/cxgb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/cxgb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/cxgb_t3fw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/cxgb_t3fw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/cxgb_t3fw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/iw_cxgb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/iw_cxgb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/iw_cxgb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/toecore/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/toecore/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cxgb/toecore/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cyclic/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cyclic/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/cyclic/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dcons/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dcons/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dcons/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dcons_crom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dcons_crom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dcons_crom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/de/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/de/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/de/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dpms/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dpms/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dpms/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/drm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/drm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/drm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/i915/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/i915/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/i915/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/mach64/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/mach64/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/mach64/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/mga/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/mga/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/mga/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/r128/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/r128/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/r128/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/radeon/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/radeon/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/radeon/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/savage/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/savage/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/savage/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/sis/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/sis/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/sis/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/tdfx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/tdfx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/drm/tdfx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtmalloc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtmalloc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtmalloc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtnfsclient/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtnfsclient/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtnfsclient/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtrace/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtrace/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtrace/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtrace_test/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtrace_test/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtrace_test/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtraceall/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtraceall/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/dtraceall/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/fbt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/fbt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/fbt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/lockstat/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/lockstat/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/lockstat/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/profile/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/profile/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/profile/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/prototype/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/prototype/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/prototype/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/sdt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/sdt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/sdt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/systrace/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/systrace/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dtrace/systrace/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dummynet/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dummynet/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/dummynet/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ed/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ed/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ed/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/em/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/en/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/en/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/en/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/et/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/et/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/et/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/exca/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/exca/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/exca/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ext2fs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ext2fs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ext2fs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fatm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fatm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fatm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fdc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fdc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fdc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fdescfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fdescfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fdescfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/firewire/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/firewire/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/firewire/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/fwe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/fwe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/fwe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/fwip/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/fwip/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/fwip/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/sbp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/sbp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/sbp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/sbp_targ/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/sbp_targ/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firewire/sbp_targ/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firmware/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firmware/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/firmware/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fxp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fxp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/fxp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/gem/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/gem/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/gem/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_bde/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_bde/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_bde/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_bsd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_bsd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_bsd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_cache/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_cache/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_cache/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_ccd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_ccd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_ccd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_concat/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_concat/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_concat/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_eli/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_eli/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_eli/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_fox/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_fox/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_fox/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_gate/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_gate/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_gate/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_journal/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_journal/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_journal/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_label/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_label/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_label/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_linux_lvm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_linux_lvm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_linux_lvm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_mbr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_mbr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_mbr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_mirror/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_mirror/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_mirror/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_multipath/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_multipath/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_multipath/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_nop/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_nop/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_nop/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_apm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_apm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_apm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_bsd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_bsd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_bsd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_ebr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_ebr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_ebr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_gpt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_gpt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_gpt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_mbr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_mbr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_mbr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_pc98/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_pc98/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_pc98/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_vtoc8/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_vtoc8/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_part/geom_part_vtoc8/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_pc98/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_pc98/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_pc98/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_raid3/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_raid3/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_raid3/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/gs_sched/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/gs_sched/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/gs_sched/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/gsched_rr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/gsched_rr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sched/gsched_rr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_shsec/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_shsec/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_shsec/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_stripe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_stripe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_stripe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sunlabel/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sunlabel/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_sunlabel/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_uzip/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_uzip/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_uzip/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_vinum/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_vinum/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_vinum/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_virstor/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_virstor/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_virstor/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_vol_ffs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_vol_ffs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_vol_ffs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_zero/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_zero/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/geom/geom_zero/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hatm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hatm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hatm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hifn/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hifn/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hifn/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hme/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hme/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hme/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptiop/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptiop/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptiop/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptmv/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptmv/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptmv/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptrr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptrr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hptrr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hwpmc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hwpmc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/hwpmc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/alpm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/alpm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/alpm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/amdpm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/amdpm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/amdpm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/amdsmb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/amdsmb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/amdsmb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/ichsmb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/ichsmb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/ichsmb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/intpm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/intpm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/intpm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/lpbb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/lpbb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/lpbb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/nfsmb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/nfsmb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/nfsmb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/pcf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/pcf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/pcf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/viapm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/viapm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/controllers/viapm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/if_ic/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/if_ic/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/if_ic/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iic/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iic/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iic/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicbb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicbb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicbb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicbus/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicbus/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicbus/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicsmb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicsmb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/iicsmb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/smb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/smb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/smb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/smbus/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/smbus/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/i2c/smbus/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ichwd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ichwd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ichwd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ida/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ida/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ida/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_bridge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_bridge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_bridge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_disc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_disc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_disc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_edsc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_edsc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_edsc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_ef/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_ef/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_ef/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_epair/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_epair/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_epair/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_faith/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_faith/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_faith/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_gif/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_gif/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_gif/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_gre/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_gre/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_gre/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_lagg/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_lagg/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_lagg/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_ndis/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_ndis/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_ndis/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_stf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_stf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_stf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_tap/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_tap/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_tap/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_tun/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_tun/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_tun/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_vlan/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_vlan/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/if_vlan/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/igb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iir/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iir/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iir/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/io/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/io/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/io/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ip_mroute_mod/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ip_mroute_mod/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ip_mroute_mod/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipdivert/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipdivert/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipdivert/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfilter/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfilter/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfilter/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfw_nat/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfw_nat/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipfw_nat/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipmi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipmi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipmi/ipmi_linux/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipmi/ipmi_linux/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipmi/ipmi_linux/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipmi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ips/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ips/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ips/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_bss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_bss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_bss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_ibss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_ibss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_ibss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_monitor/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_monitor/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ipwfw/ipw_monitor/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iscsi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iscsi/initiator/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iscsi/initiator/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iscsi/initiator/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/isp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/isp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/isp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1040/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1040/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1040/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1040_it/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1040_it/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1040_it/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1080/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1080/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1080/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1080_it/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1080_it/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_1080_it/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_12160/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_12160/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_12160/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_12160_it/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_12160_it/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_12160_it/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2100/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2100/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2100/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2200/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2200/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2200/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2300/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2300/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2300/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2322/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2322/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2322/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2400/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2400/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2400/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2400_multi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2400_multi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2400_multi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2500/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2500/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2500/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2500_multi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2500_multi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/isp_2500_multi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/ispfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/ispfw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ispfw/ispfw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_bss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_bss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_bss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_ibss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_ibss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_ibss/iwi_ibss (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_ibss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_monitor/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_monitor/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwifw/iwi_monitor/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwn/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwn/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwn/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn1000/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn1000/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn1000/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn4965/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn4965/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn4965/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn5000/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn5000/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn5000/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn5150/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn5150/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn5150/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn6000/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn6000/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/iwnfw/iwn6000/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ixgb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ixgb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ixgb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/jme/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/jme/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/jme/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/joy/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/joy/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/joy/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/kbdmux/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/kbdmux/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/kbdmux/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/krpc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/krpc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/krpc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ksyms/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ksyms/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ksyms/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/le/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/le/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/le/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/libalias/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/libalias/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/libalias/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/cuseeme/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/cuseeme/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/cuseeme/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/dummy/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/dummy/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/dummy/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/ftp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/ftp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/ftp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/irc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/irc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/irc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/nbt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/nbt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/nbt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/pptp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/pptp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/pptp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/skinny/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/skinny/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/skinny/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/smedia/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/smedia/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libalias/modules/smedia/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libiconv/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libiconv/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libiconv/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libmbpool/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libmbpool/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libmbpool/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libmchain/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libmchain/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/libmchain/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lindev/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lindev/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lindev/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linprocfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linprocfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linprocfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linsysfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linsysfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linsysfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linux/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linux/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/linux/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lmc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lmc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lmc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lpt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lpt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/lpt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_biba/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_biba/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_biba/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_bsdextended/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_bsdextended/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_bsdextended/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_ifoff/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_ifoff/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_ifoff/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_lomac/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_lomac/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_lomac/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_mls/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_mls/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_mls/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_none/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_none/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_none/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_partition/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_partition/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_partition/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_portacl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_portacl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_portacl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_seeotheruids/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_seeotheruids/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_seeotheruids/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_stub/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_stub/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_stub/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_test/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_test/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mac_test/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/malo/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/malo/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/malo/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mcd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mcd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mcd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/md/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/md/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/md/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mem/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mem/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mem/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/mfi_linux/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/mfi_linux/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/mfi_linux/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/mfip/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/mfip/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mfi/mfip/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mii/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mii/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mii/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mlx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mlx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mlx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mly/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mly/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mly/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mmc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mmc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mmc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mmcsd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mmcsd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mmcsd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mpt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mpt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mpt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mqueue/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mqueue/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mqueue/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msdosfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msdosfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msdosfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msdosfs_iconv/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msdosfs_iconv/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msdosfs_iconv/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msk/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msk/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/msk/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mvs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mvs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mvs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mwl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mwl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mwl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_eth_z8e/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_eth_z8e/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_eth_z8e/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_ethp_z8e/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_ethp_z8e/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_ethp_z8e/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_rss_eth_z8e/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_rss_eth_z8e/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_rss_eth_z8e/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_rss_ethp_z8e/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_rss_ethp_z8e/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/mxge/mxge_rss_ethp_z8e/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/my/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/my/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/my/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ndis/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ndis/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ndis/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/UI/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/UI/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/UI/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/async/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/async/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/async/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/atm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/atm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/atm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/atmbase/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/atmbase/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/atmbase/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/ccatm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/ccatm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/ccatm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/sscfu/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/sscfu/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/sscfu/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/sscop/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/sscop/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/sscop/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/uni/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/uni/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atm/uni/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atmllc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atmllc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/atmllc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/bluetooth/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/bluetooth/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/bluetooth/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/bt3c/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/bt3c/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/bt3c/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/hci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/hci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/hci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/l2cap/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/l2cap/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/l2cap/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/socket/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/socket/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/socket/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ubt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ubt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ubt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ubtbcmfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ubtbcmfw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bluetooth/ubtbcmfw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bpf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bpf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bpf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bridge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bridge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/bridge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/car/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/car/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/car/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/cisco/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/cisco/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/cisco/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/deflate/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/deflate/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/deflate/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/device/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/device/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/device/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/echo/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/echo/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/echo/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/eiface/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/eiface/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/eiface/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/etf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/etf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/etf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ether/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ether/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ether/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ether_echo/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ether_echo/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ether_echo/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/fec/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/fec/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/fec/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/frame_relay/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/frame_relay/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/frame_relay/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/gif/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/gif/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/gif/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/gif_demux/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/gif_demux/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/gif_demux/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/hole/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/hole/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/hole/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/hub/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/hub/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/hub/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/iface/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/iface/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/iface/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ip_input/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ip_input/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ip_input/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ipfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ipfw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ipfw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ksocket/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ksocket/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ksocket/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/l2tp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/l2tp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/l2tp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/lmi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/lmi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/lmi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/mppc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/mppc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/mppc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/nat/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/nat/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/nat/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/netflow/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/netflow/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/netflow/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/netgraph/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/netgraph/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/netgraph/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/one2many/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/one2many/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/one2many/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pipe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pipe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pipe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ppp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ppp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/ppp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pppoe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pppoe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pppoe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pptpgre/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pptpgre/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pptpgre/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pred1/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pred1/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/pred1/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/rfc1490/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/rfc1490/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/rfc1490/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/socket/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/socket/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/socket/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/source/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/source/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/source/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/split/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/split/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/split/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/sppp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/sppp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/sppp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tag/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tag/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tag/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tcpmss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tcpmss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tcpmss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tee/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tee/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tee/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tty/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tty/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/tty/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/vjc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/vjc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/vjc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/vlan/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/vlan/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/netgraph/vlan/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfs_common/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfs_common/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfs_common/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfscl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfscl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfscl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsclient/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsclient/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsclient/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfscommon/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfscommon/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfscommon/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfslockd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfslockd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfslockd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsserver/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsserver/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfsserver/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfssvc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfssvc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nfssvc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nmdm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nmdm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nmdm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ntfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ntfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ntfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ntfs_iconv/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ntfs_iconv/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ntfs_iconv/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nullfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nullfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nullfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nve/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nve/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nve/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nvram/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nvram/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nvram/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nxge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nxge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/nxge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/opensolaris/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/opensolaris/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/opensolaris/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/padlock/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/padlock/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/padlock/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/patm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/patm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/patm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pccard/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pccard/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pccard/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pcn/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pcn/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pcn/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pflog/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pflog/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pflog/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/plip/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/plip/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/plip/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/portalfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/portalfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/portalfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppbus/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppbus/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppbus/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ppi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pps/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pps/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pps/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/procfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/procfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/procfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pseudofs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pseudofs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/pseudofs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/puc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/puc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/puc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ral/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ral/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ral/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2561/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2561/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2561/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2561s/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2561s/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2561s/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2661/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2661/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ralfw/rt2661/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/random/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/random/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/random/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rc4/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rc4/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rc4/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/addr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/addr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/addr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/cma/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/cma/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/cma/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/core/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/core/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/core/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/iwcm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/iwcm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/iwcm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/krping/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/krping/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rdma/krping/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/re/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/re/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/re/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/reiserfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/reiserfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/reiserfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/rl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/runfw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/runfw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/runfw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/s3/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/s3/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/s3/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/safe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/safe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/safe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scsi_low/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scsi_low/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/scsi_low/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sdhci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sdhci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sdhci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sem/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sem/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sem/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/siba_bwn/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/siba_bwn/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/siba_bwn/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/siis/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/siis/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/siis/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sis/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sis/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sis/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sk/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sk/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sk/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/smbfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/smbfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/smbfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sn/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sn/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sn/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/snp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/snp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/snp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ad1816/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ad1816/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ad1816/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/als4000/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/als4000/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/als4000/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/atiixp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/atiixp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/atiixp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/cmi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/cmi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/cmi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/cs4281/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/cs4281/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/cs4281/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/csa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/csa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/csa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/driver/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/driver/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/driver/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ds1/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ds1/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ds1/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/emu10k1/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/emu10k1/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/emu10k1/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/emu10kx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/emu10kx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/emu10kx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/envy24/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/envy24/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/envy24/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/envy24ht/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/envy24ht/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/envy24ht/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/es137x/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/es137x/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/es137x/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ess/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ess/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ess/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/fm801/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/fm801/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/fm801/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/hda/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/hda/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/hda/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ich/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ich/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/ich/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/maestro/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/maestro/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/maestro/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/maestro3/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/maestro3/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/maestro3/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/mss/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/mss/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/mss/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/neomagic/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/neomagic/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/neomagic/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sb16/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sb16/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sb16/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sb8/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sb8/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sb8/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sbc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sbc/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/sbc/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/solo/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/solo/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/solo/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/spicds/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/spicds/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/spicds/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/t4dwave/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/t4dwave/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/t4dwave/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/uaudio/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/uaudio/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/uaudio/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/via8233/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/via8233/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/via8233/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/via82c686/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/via82c686/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/via82c686/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/vibes/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/vibes/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/driver/vibes/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/sound/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/sound/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sound/sound/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/speaker/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/speaker/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/speaker/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/bmp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/bmp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/bmp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/pcx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/pcx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/splash/pcx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sppp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sppp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sppp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ste/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ste/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ste/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/stge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/stge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/stge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sym/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sym/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sym/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/blank/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/blank/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/blank/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/daemon/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/daemon/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/daemon/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/dragon/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/dragon/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/dragon/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/fade/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/fade/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/fade/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/fire/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/fire/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/fire/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/green/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/green/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/green/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/logo/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/logo/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/logo/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/rain/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/rain/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/rain/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/snake/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/snake/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/snake/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/star/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/star/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/star/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/warp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/warp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/syscons/warp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvmsg/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvmsg/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvmsg/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvsem/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvsem/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvsem/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvshm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvshm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/sysvipc/sysvshm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ti/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ti/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ti/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tmpfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tmpfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tmpfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/trm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/trm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/trm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/twa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/twa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/twa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/twe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/twe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/twe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/tx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/txp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/txp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/txp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/uart/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/uart/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/uart/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ubsec/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ubsec/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ubsec/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/udf/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/udf/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/udf/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/udf_iconv/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/udf_iconv/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/udf_iconv/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ufs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ufs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/ufs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/unionfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/unionfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/unionfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/atp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/atp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/atp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/aue/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/aue/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/aue/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/axe/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/axe/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/axe/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/cdce/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/cdce/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/cdce/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/cue/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/cue/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/cue/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ehci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ehci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ehci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/kue/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/kue/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/kue/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/musb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/musb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/musb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ohci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ohci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ohci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/quirk/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/quirk/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/quirk/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/rue/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/rue/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/rue/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/rum/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/rum/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/rum/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/run/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/run/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/run/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/template/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/template/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/template/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/u3g/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/u3g/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/u3g/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uark/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uark/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uark/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uath/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uath/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uath/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ubsa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ubsa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ubsa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ubser/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ubser/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ubser/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uchcom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uchcom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uchcom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ucom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ucom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ucom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ucycom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ucycom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ucycom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/udav/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/udav/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/udav/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/udbp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/udbp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/udbp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uether/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uether/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uether/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ufm/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ufm/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ufm/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ufoma/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ufoma/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ufoma/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uftdi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uftdi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uftdi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ugensa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ugensa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ugensa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhid/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhid/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhid/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhso/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhso/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uhso/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uipaq/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uipaq/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uipaq/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ukbd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ukbd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ukbd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ulpt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ulpt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ulpt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umass/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umass/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umass/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umct/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umct/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umct/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umodem/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umodem/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umodem/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umoscom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umoscom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/umoscom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ums/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ums/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ums/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/upgt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/upgt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/upgt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uplcom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uplcom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uplcom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ural/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ural/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/ural/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/urio/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/urio/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/urio/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/urtw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/urtw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/urtw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/usb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/usb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/usb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/usfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/usfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/usfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uslcom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uslcom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uslcom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uss820dci/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uss820dci/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uss820dci/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uvisor/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uvisor/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uvisor/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uvscom/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uvscom/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/uvscom/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/zyd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/zyd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/usb/zyd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/utopia/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/utopia/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/utopia/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vesa/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vesa/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vesa/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vge/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vge/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vge/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vkbd/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vkbd/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vkbd/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vpo/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vpo/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vpo/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vx/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vx/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/vx/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wb/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wb/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wb/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_acl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_acl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_acl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_amrr/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_amrr/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_amrr/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_ccmp/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_ccmp/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_ccmp/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_rssadapt/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_rssadapt/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_rssadapt/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_tkip/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_tkip/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_tkip/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_wep/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_wep/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_wep/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_xauth/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_xauth/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wlan_xauth/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wpi/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wpi/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wpi/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wpifw/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wpifw/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/wpifw/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/x86bios/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/x86bios/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/x86bios/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/xfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/xfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/xfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/xl/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/xl/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/xl/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/zfs/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/zfs/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/zfs/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/zlib/ soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/zlib/@ (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/modules/usr/home/shm/tesla/shm/sys/modules/zlib/machine (contents, props changed) soc2011/shm/sys/amd64/compile/TESLA/opt_aac.h soc2011/shm/sys/amd64/compile/TESLA/opt_accept_filter_data.h soc2011/shm/sys/amd64/compile/TESLA/opt_accept_filter_dns.h soc2011/shm/sys/amd64/compile/TESLA/opt_accept_filter_http.h soc2011/shm/sys/amd64/compile/TESLA/opt_acpi.h soc2011/shm/sys/amd64/compile/TESLA/opt_adaptive_lockmgrs.h soc2011/shm/sys/amd64/compile/TESLA/opt_adaptive_mutexes.h soc2011/shm/sys/amd64/compile/TESLA/opt_adw.h soc2011/shm/sys/amd64/compile/TESLA/opt_agp.h soc2011/shm/sys/amd64/compile/TESLA/opt_ah.h soc2011/shm/sys/amd64/compile/TESLA/opt_aic79xx.h soc2011/shm/sys/amd64/compile/TESLA/opt_aic7xxx.h soc2011/shm/sys/amd64/compile/TESLA/opt_alq.h soc2011/shm/sys/amd64/compile/TESLA/opt_altq.h soc2011/shm/sys/amd64/compile/TESLA/opt_ata.h soc2011/shm/sys/amd64/compile/TESLA/opt_atalk.h soc2011/shm/sys/amd64/compile/TESLA/opt_ath.h soc2011/shm/sys/amd64/compile/TESLA/opt_atkbd.h soc2011/shm/sys/amd64/compile/TESLA/opt_atpic.h soc2011/shm/sys/amd64/compile/TESLA/opt_auto_eoi.h soc2011/shm/sys/amd64/compile/TESLA/opt_bce.h soc2011/shm/sys/amd64/compile/TESLA/opt_bktr.h soc2011/shm/sys/amd64/compile/TESLA/opt_bootp.h soc2011/shm/sys/amd64/compile/TESLA/opt_bpf.h soc2011/shm/sys/amd64/compile/TESLA/opt_bus.h soc2011/shm/sys/amd64/compile/TESLA/opt_bwi.h soc2011/shm/sys/amd64/compile/TESLA/opt_cam.h soc2011/shm/sys/amd64/compile/TESLA/opt_carp.h soc2011/shm/sys/amd64/compile/TESLA/opt_cd.h soc2011/shm/sys/amd64/compile/TESLA/opt_cfi.h soc2011/shm/sys/amd64/compile/TESLA/opt_clock.h soc2011/shm/sys/amd64/compile/TESLA/opt_coda.h soc2011/shm/sys/amd64/compile/TESLA/opt_comconsole.h soc2011/shm/sys/amd64/compile/TESLA/opt_compat.h soc2011/shm/sys/amd64/compile/TESLA/opt_config.h soc2011/shm/sys/amd64/compile/TESLA/opt_cpu.h soc2011/shm/sys/amd64/compile/TESLA/opt_cy_pci_fastintr.h soc2011/shm/sys/amd64/compile/TESLA/opt_dcons.h soc2011/shm/sys/amd64/compile/TESLA/opt_ddb.h soc2011/shm/sys/amd64/compile/TESLA/opt_debug_cluster.h soc2011/shm/sys/amd64/compile/TESLA/opt_debug_lockf.h soc2011/shm/sys/amd64/compile/TESLA/opt_debug_si.h soc2011/shm/sys/amd64/compile/TESLA/opt_device_polling.h soc2011/shm/sys/amd64/compile/TESLA/opt_directio.h soc2011/shm/sys/amd64/compile/TESLA/opt_dontuse.h soc2011/shm/sys/amd64/compile/TESLA/opt_dpt.h soc2011/shm/sys/amd64/compile/TESLA/opt_drm.h soc2011/shm/sys/amd64/compile/TESLA/opt_ed.h soc2011/shm/sys/amd64/compile/TESLA/opt_ef.h soc2011/shm/sys/amd64/compile/TESLA/opt_eisa.h soc2011/shm/sys/amd64/compile/TESLA/opt_enc.h soc2011/shm/sys/amd64/compile/TESLA/opt_fb.h soc2011/shm/sys/amd64/compile/TESLA/opt_fdc.h soc2011/shm/sys/amd64/compile/TESLA/opt_ffs.h soc2011/shm/sys/amd64/compile/TESLA/opt_ffs_broken_fixme.h soc2011/shm/sys/amd64/compile/TESLA/opt_gdb.h soc2011/shm/sys/amd64/compile/TESLA/opt_geom.h soc2011/shm/sys/amd64/compile/TESLA/opt_global.h soc2011/shm/sys/amd64/compile/TESLA/opt_hifn.h soc2011/shm/sys/amd64/compile/TESLA/opt_hwpmc_hooks.h soc2011/shm/sys/amd64/compile/TESLA/opt_inet.h soc2011/shm/sys/amd64/compile/TESLA/opt_inet6.h soc2011/shm/sys/amd64/compile/TESLA/opt_init_path.h soc2011/shm/sys/amd64/compile/TESLA/opt_intpm.h soc2011/shm/sys/amd64/compile/TESLA/opt_intr_filter.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipdivert.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipdn.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipfilter.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipfw.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipsec.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipstealth.h soc2011/shm/sys/amd64/compile/TESLA/opt_ipx.h soc2011/shm/sys/amd64/compile/TESLA/opt_isa.h soc2011/shm/sys/amd64/compile/TESLA/opt_iscsi_initiator.h soc2011/shm/sys/amd64/compile/TESLA/opt_isp.h soc2011/shm/sys/amd64/compile/TESLA/opt_kbd.h soc2011/shm/sys/amd64/compile/TESLA/opt_kdb.h soc2011/shm/sys/amd64/compile/TESLA/opt_kdtrace.h soc2011/shm/sys/amd64/compile/TESLA/opt_kgssapi.h soc2011/shm/sys/amd64/compile/TESLA/opt_krpc.h soc2011/shm/sys/amd64/compile/TESLA/opt_kstack_max_pages.h soc2011/shm/sys/amd64/compile/TESLA/opt_kstack_pages.h soc2011/shm/sys/amd64/compile/TESLA/opt_ktr.h soc2011/shm/sys/amd64/compile/TESLA/opt_ktrace.h soc2011/shm/sys/amd64/compile/TESLA/opt_libalias.h soc2011/shm/sys/amd64/compile/TESLA/opt_libiconv.h soc2011/shm/sys/amd64/compile/TESLA/opt_libmbpool.h soc2011/shm/sys/amd64/compile/TESLA/opt_libmchain.h soc2011/shm/sys/amd64/compile/TESLA/opt_lpt.h soc2011/shm/sys/amd64/compile/TESLA/opt_mac.h soc2011/shm/sys/amd64/compile/TESLA/opt_malo.h soc2011/shm/sys/amd64/compile/TESLA/opt_maxmem.h soc2011/shm/sys/amd64/compile/TESLA/opt_maxusers.h soc2011/shm/sys/amd64/compile/TESLA/opt_mbuf_profiling.h soc2011/shm/sys/amd64/compile/TESLA/opt_mbuf_stress_test.h soc2011/shm/sys/amd64/compile/TESLA/opt_mca.h soc2011/shm/sys/amd64/compile/TESLA/opt_md.h soc2011/shm/sys/amd64/compile/TESLA/opt_mfi.h soc2011/shm/sys/amd64/compile/TESLA/opt_mp_watchdog.h soc2011/shm/sys/amd64/compile/TESLA/opt_mpath.h soc2011/shm/sys/amd64/compile/TESLA/opt_mprof.h soc2011/shm/sys/amd64/compile/TESLA/opt_mrouting.h soc2011/shm/sys/amd64/compile/TESLA/opt_msgbuf.h soc2011/shm/sys/amd64/compile/TESLA/opt_mwl.h soc2011/shm/sys/amd64/compile/TESLA/opt_natm.h soc2011/shm/sys/amd64/compile/TESLA/opt_ncp.h soc2011/shm/sys/amd64/compile/TESLA/opt_ncr.h soc2011/shm/sys/amd64/compile/TESLA/opt_netgraph.h soc2011/shm/sys/amd64/compile/TESLA/opt_netsmb.h soc2011/shm/sys/amd64/compile/TESLA/opt_nfs.h soc2011/shm/sys/amd64/compile/TESLA/opt_nfslockd.h soc2011/shm/sys/amd64/compile/TESLA/opt_nfsroot.h soc2011/shm/sys/amd64/compile/TESLA/opt_no_adaptive_rwlocks.h soc2011/shm/sys/amd64/compile/TESLA/opt_no_adaptive_sx.h soc2011/shm/sys/amd64/compile/TESLA/opt_ntp.h soc2011/shm/sys/amd64/compile/TESLA/opt_panic.h soc2011/shm/sys/amd64/compile/TESLA/opt_param.h soc2011/shm/sys/amd64/compile/TESLA/opt_pcfclock.h soc2011/shm/sys/amd64/compile/TESLA/opt_perfmon.h soc2011/shm/sys/amd64/compile/TESLA/opt_pf.h soc2011/shm/sys/amd64/compile/TESLA/opt_plip.h soc2011/shm/sys/amd64/compile/TESLA/opt_pmap.h soc2011/shm/sys/amd64/compile/TESLA/opt_posix.h soc2011/shm/sys/amd64/compile/TESLA/opt_ppb_1284.h soc2011/shm/sys/amd64/compile/TESLA/opt_ppc.h soc2011/shm/sys/amd64/compile/TESLA/opt_printf.h soc2011/shm/sys/amd64/compile/TESLA/opt_pseudofs.h soc2011/shm/sys/amd64/compile/TESLA/opt_psm.h soc2011/shm/sys/amd64/compile/TESLA/opt_pt.h soc2011/shm/sys/amd64/compile/TESLA/opt_quota.h soc2011/shm/sys/amd64/compile/TESLA/opt_rootdevname.h soc2011/shm/sys/amd64/compile/TESLA/opt_route.h soc2011/shm/sys/amd64/compile/TESLA/opt_sa.h soc2011/shm/sys/amd64/compile/TESLA/opt_safe.h soc2011/shm/sys/amd64/compile/TESLA/opt_sched.h soc2011/shm/sys/amd64/compile/TESLA/opt_scsi.h soc2011/shm/sys/amd64/compile/TESLA/opt_sctp.h soc2011/shm/sys/amd64/compile/TESLA/opt_ses.h soc2011/shm/sys/amd64/compile/TESLA/opt_show_busybufs.h soc2011/shm/sys/amd64/compile/TESLA/opt_sio.h soc2011/shm/sys/amd64/compile/TESLA/opt_sleepqueue_profiling.h soc2011/shm/sys/amd64/compile/TESLA/opt_slhci.h soc2011/shm/sys/amd64/compile/TESLA/opt_slip.h soc2011/shm/sys/amd64/compile/TESLA/opt_snd.h soc2011/shm/sys/amd64/compile/TESLA/opt_splash.h soc2011/shm/sys/amd64/compile/TESLA/opt_spx_hack.h soc2011/shm/sys/amd64/compile/TESLA/opt_stack.h soc2011/shm/sys/amd64/compile/TESLA/opt_suiddir.h soc2011/shm/sys/amd64/compile/TESLA/opt_swap.h soc2011/shm/sys/amd64/compile/TESLA/opt_sym.h soc2011/shm/sys/amd64/compile/TESLA/opt_syscons.h soc2011/shm/sys/amd64/compile/TESLA/opt_sysctl.h soc2011/shm/sys/amd64/compile/TESLA/opt_sysvipc.h soc2011/shm/sys/amd64/compile/TESLA/opt_tcpdebug.h soc2011/shm/sys/amd64/compile/TESLA/opt_tdma.h soc2011/shm/sys/amd64/compile/TESLA/opt_teken.h soc2011/shm/sys/amd64/compile/TESLA/opt_ti.h soc2011/shm/sys/amd64/compile/TESLA/opt_tty.h soc2011/shm/sys/amd64/compile/TESLA/opt_turnstile_profiling.h soc2011/shm/sys/amd64/compile/TESLA/opt_twa.h soc2011/shm/sys/amd64/compile/TESLA/opt_u3g.h soc2011/shm/sys/amd64/compile/TESLA/opt_uart.h soc2011/shm/sys/amd64/compile/TESLA/opt_ubsec.h soc2011/shm/sys/amd64/compile/TESLA/opt_ufs.h soc2011/shm/sys/amd64/compile/TESLA/opt_ukbd.h soc2011/shm/sys/amd64/compile/TESLA/opt_uplcom.h soc2011/shm/sys/amd64/compile/TESLA/opt_usb.h soc2011/shm/sys/amd64/compile/TESLA/opt_uvscom.h soc2011/shm/sys/amd64/compile/TESLA/opt_vesa.h soc2011/shm/sys/amd64/compile/TESLA/opt_vfs_aio.h soc2011/shm/sys/amd64/compile/TESLA/opt_vga.h soc2011/shm/sys/amd64/compile/TESLA/opt_vlan.h soc2011/shm/sys/amd64/compile/TESLA/opt_vm.h soc2011/shm/sys/amd64/compile/TESLA/opt_vpo.h soc2011/shm/sys/amd64/compile/TESLA/opt_watchdog.h soc2011/shm/sys/amd64/compile/TESLA/opt_wavelan.h soc2011/shm/sys/amd64/compile/TESLA/opt_witness.h soc2011/shm/sys/amd64/compile/TESLA/opt_wlan.h soc2011/shm/sys/amd64/compile/TESLA/opt_x86bios.h soc2011/shm/sys/amd64/compile/TESLA/opt_xbonehack.h soc2011/shm/sys/amd64/compile/TESLA/opt_xbox.h soc2011/shm/sys/amd64/compile/TESLA/opt_xfs.h soc2011/shm/sys/amd64/compile/TESLA/opt_zero.h soc2011/shm/sys/amd64/compile/TESLA/version soc2011/shm/sys/amd64/conf/ soc2011/shm/sys/amd64/conf/.cvsignore soc2011/shm/sys/amd64/conf/DEFAULTS soc2011/shm/sys/amd64/conf/GENERIC soc2011/shm/sys/amd64/conf/GENERIC.hints soc2011/shm/sys/amd64/conf/LINT soc2011/shm/sys/amd64/conf/LINT-VIMAGE soc2011/shm/sys/amd64/conf/Makefile soc2011/shm/sys/amd64/conf/NOTES soc2011/shm/sys/amd64/conf/TESLA soc2011/shm/sys/amd64/conf/XENHVM soc2011/shm/sys/amd64/conf/majestic soc2011/shm/sys/amd64/ia32/ soc2011/shm/sys/amd64/ia32/ia32_exception.S soc2011/shm/sys/amd64/ia32/ia32_misc.c soc2011/shm/sys/amd64/ia32/ia32_reg.c soc2011/shm/sys/amd64/ia32/ia32_signal.c soc2011/shm/sys/amd64/ia32/ia32_sigtramp.S soc2011/shm/sys/amd64/ia32/ia32_syscall.c soc2011/shm/sys/amd64/include/ soc2011/shm/sys/amd64/include/_bus.h soc2011/shm/sys/amd64/include/_inttypes.h soc2011/shm/sys/amd64/include/_limits.h soc2011/shm/sys/amd64/include/_stdint.h soc2011/shm/sys/amd64/include/_types.h soc2011/shm/sys/amd64/include/acpica_machdep.h soc2011/shm/sys/amd64/include/apicreg.h soc2011/shm/sys/amd64/include/apicvar.h soc2011/shm/sys/amd64/include/asm.h soc2011/shm/sys/amd64/include/asmacros.h soc2011/shm/sys/amd64/include/atomic.h soc2011/shm/sys/amd64/include/bus.h soc2011/shm/sys/amd64/include/bus_dma.h soc2011/shm/sys/amd64/include/clock.h soc2011/shm/sys/amd64/include/cpu.h soc2011/shm/sys/amd64/include/cpufunc.h soc2011/shm/sys/amd64/include/cputypes.h soc2011/shm/sys/amd64/include/db_machdep.h soc2011/shm/sys/amd64/include/elf.h soc2011/shm/sys/amd64/include/endian.h soc2011/shm/sys/amd64/include/exec.h soc2011/shm/sys/amd64/include/float.h soc2011/shm/sys/amd64/include/floatingpoint.h soc2011/shm/sys/amd64/include/fpu.h soc2011/shm/sys/amd64/include/frame.h soc2011/shm/sys/amd64/include/gdb_machdep.h soc2011/shm/sys/amd64/include/ieeefp.h soc2011/shm/sys/amd64/include/in_cksum.h soc2011/shm/sys/amd64/include/intr_machdep.h soc2011/shm/sys/amd64/include/iodev.h soc2011/shm/sys/amd64/include/kdb.h soc2011/shm/sys/amd64/include/legacyvar.h soc2011/shm/sys/amd64/include/limits.h soc2011/shm/sys/amd64/include/mca.h soc2011/shm/sys/amd64/include/md_var.h soc2011/shm/sys/amd64/include/memdev.h soc2011/shm/sys/amd64/include/metadata.h soc2011/shm/sys/amd64/include/minidump.h soc2011/shm/sys/amd64/include/mp_watchdog.h soc2011/shm/sys/amd64/include/mptable.h soc2011/shm/sys/amd64/include/mutex.h soc2011/shm/sys/amd64/include/nexusvar.h soc2011/shm/sys/amd64/include/param.h soc2011/shm/sys/amd64/include/pc/ soc2011/shm/sys/amd64/include/pc/bios.h soc2011/shm/sys/amd64/include/pc/display.h soc2011/shm/sys/amd64/include/pcb.h soc2011/shm/sys/amd64/include/pci_cfgreg.h soc2011/shm/sys/amd64/include/pcpu.h soc2011/shm/sys/amd64/include/pmap.h soc2011/shm/sys/amd64/include/pmc_mdep.h soc2011/shm/sys/amd64/include/ppireg.h soc2011/shm/sys/amd64/include/proc.h soc2011/shm/sys/amd64/include/profile.h soc2011/shm/sys/amd64/include/psl.h soc2011/shm/sys/amd64/include/ptrace.h soc2011/shm/sys/amd64/include/reg.h soc2011/shm/sys/amd64/include/reloc.h soc2011/shm/sys/amd64/include/resource.h soc2011/shm/sys/amd64/include/runq.h soc2011/shm/sys/amd64/include/segments.h soc2011/shm/sys/amd64/include/setjmp.h soc2011/shm/sys/amd64/include/sf_buf.h soc2011/shm/sys/amd64/include/sigframe.h soc2011/shm/sys/amd64/include/signal.h soc2011/shm/sys/amd64/include/smp.h soc2011/shm/sys/amd64/include/specialreg.h soc2011/shm/sys/amd64/include/stack.h soc2011/shm/sys/amd64/include/stdarg.h soc2011/shm/sys/amd64/include/sysarch.h soc2011/shm/sys/amd64/include/timerreg.h soc2011/shm/sys/amd64/include/trap.h soc2011/shm/sys/amd64/include/tss.h soc2011/shm/sys/amd64/include/ucontext.h soc2011/shm/sys/amd64/include/varargs.h soc2011/shm/sys/amd64/include/vm.h soc2011/shm/sys/amd64/include/vmparam.h soc2011/shm/sys/amd64/include/xen/ soc2011/shm/sys/amd64/include/xen/hypercall.h soc2011/shm/sys/amd64/include/xen/synch_bitops.h soc2011/shm/sys/amd64/include/xen/xen-os.h soc2011/shm/sys/amd64/include/xen/xenfunc.h soc2011/shm/sys/amd64/include/xen/xenpmap.h soc2011/shm/sys/amd64/include/xen/xenvar.h soc2011/shm/sys/amd64/isa/ soc2011/shm/sys/amd64/isa/atpic.c soc2011/shm/sys/amd64/isa/atpic_vector.S soc2011/shm/sys/amd64/isa/clock.c soc2011/shm/sys/amd64/isa/elcr.c soc2011/shm/sys/amd64/isa/icu.h soc2011/shm/sys/amd64/isa/isa.c soc2011/shm/sys/amd64/isa/isa.h soc2011/shm/sys/amd64/isa/isa_dma.c soc2011/shm/sys/amd64/isa/nmi.c soc2011/shm/sys/amd64/linux32/ soc2011/shm/sys/amd64/linux32/Makefile soc2011/shm/sys/amd64/linux32/linux.h soc2011/shm/sys/amd64/linux32/linux32_dummy.c soc2011/shm/sys/amd64/linux32/linux32_genassym.c soc2011/shm/sys/amd64/linux32/linux32_ipc64.h soc2011/shm/sys/amd64/linux32/linux32_locore.s soc2011/shm/sys/amd64/linux32/linux32_machdep.c soc2011/shm/sys/amd64/linux32/linux32_proto.h soc2011/shm/sys/amd64/linux32/linux32_support.s soc2011/shm/sys/amd64/linux32/linux32_syscall.h soc2011/shm/sys/amd64/linux32/linux32_sysent.c soc2011/shm/sys/amd64/linux32/linux32_sysvec.c soc2011/shm/sys/amd64/linux32/syscalls.conf soc2011/shm/sys/amd64/linux32/syscalls.master soc2011/shm/sys/amd64/pci/ soc2011/shm/sys/amd64/pci/pci_bus.c soc2011/shm/sys/amd64/pci/pci_cfgreg.c soc2011/shm/sys/arm/ soc2011/shm/sys/arm/arm/ soc2011/shm/sys/arm/arm/autoconf.c soc2011/shm/sys/arm/arm/bcopy_page.S soc2011/shm/sys/arm/arm/bcopyinout.S soc2011/shm/sys/arm/arm/bcopyinout_xscale.S soc2011/shm/sys/arm/arm/blockio.S soc2011/shm/sys/arm/arm/bootconfig.c soc2011/shm/sys/arm/arm/bus_space_asm_generic.S soc2011/shm/sys/arm/arm/bus_space_generic.c soc2011/shm/sys/arm/arm/busdma_machdep.c soc2011/shm/sys/arm/arm/copystr.S soc2011/shm/sys/arm/arm/cpufunc.c soc2011/shm/sys/arm/arm/cpufunc_asm.S soc2011/shm/sys/arm/arm/cpufunc_asm_arm10.S soc2011/shm/sys/arm/arm/cpufunc_asm_arm11.S soc2011/shm/sys/arm/arm/cpufunc_asm_arm7tdmi.S soc2011/shm/sys/arm/arm/cpufunc_asm_arm8.S soc2011/shm/sys/arm/arm/cpufunc_asm_arm9.S soc2011/shm/sys/arm/arm/cpufunc_asm_armv4.S soc2011/shm/sys/arm/arm/cpufunc_asm_armv5.S soc2011/shm/sys/arm/arm/cpufunc_asm_armv5_ec.S soc2011/shm/sys/arm/arm/cpufunc_asm_ixp12x0.S soc2011/shm/sys/arm/arm/cpufunc_asm_sa1.S soc2011/shm/sys/arm/arm/cpufunc_asm_sa11x0.S soc2011/shm/sys/arm/arm/cpufunc_asm_sheeva.S soc2011/shm/sys/arm/arm/cpufunc_asm_xscale.S soc2011/shm/sys/arm/arm/cpufunc_asm_xscale_c3.S soc2011/shm/sys/arm/arm/db_disasm.c soc2011/shm/sys/arm/arm/db_interface.c soc2011/shm/sys/arm/arm/db_trace.c soc2011/shm/sys/arm/arm/disassem.c soc2011/shm/sys/arm/arm/dump_machdep.c soc2011/shm/sys/arm/arm/elf_machdep.c soc2011/shm/sys/arm/arm/elf_trampoline.c soc2011/shm/sys/arm/arm/exception.S soc2011/shm/sys/arm/arm/fiq.c soc2011/shm/sys/arm/arm/fiq_subr.S soc2011/shm/sys/arm/arm/fusu.S soc2011/shm/sys/arm/arm/gdb_machdep.c soc2011/shm/sys/arm/arm/genassym.c soc2011/shm/sys/arm/arm/identcpu.c soc2011/shm/sys/arm/arm/in_cksum.c soc2011/shm/sys/arm/arm/in_cksum_arm.S soc2011/shm/sys/arm/arm/inckern.S soc2011/shm/sys/arm/arm/intr.c soc2011/shm/sys/arm/arm/irq_dispatch.S soc2011/shm/sys/arm/arm/locore.S soc2011/shm/sys/arm/arm/machdep.c soc2011/shm/sys/arm/arm/mem.c soc2011/shm/sys/arm/arm/minidump_machdep.c soc2011/shm/sys/arm/arm/nexus.c soc2011/shm/sys/arm/arm/pmap.c soc2011/shm/sys/arm/arm/setcpsr.S soc2011/shm/sys/arm/arm/setstack.s soc2011/shm/sys/arm/arm/stack_machdep.c soc2011/shm/sys/arm/arm/support.S soc2011/shm/sys/arm/arm/swtch.S soc2011/shm/sys/arm/arm/sys_machdep.c soc2011/shm/sys/arm/arm/trap.c soc2011/shm/sys/arm/arm/uio_machdep.c soc2011/shm/sys/arm/arm/undefined.c soc2011/shm/sys/arm/arm/vectors.S soc2011/shm/sys/arm/arm/vm_machdep.c soc2011/shm/sys/arm/at91/ soc2011/shm/sys/arm/at91/at91.c soc2011/shm/sys/arm/at91/at91_cfata.c soc2011/shm/sys/arm/at91/at91_machdep.c soc2011/shm/sys/arm/at91/at91_mci.c soc2011/shm/sys/arm/at91/at91_mcireg.h soc2011/shm/sys/arm/at91/at91_pdcreg.h soc2011/shm/sys/arm/at91/at91_pio.c soc2011/shm/sys/arm/at91/at91_pio_rm9200.h soc2011/shm/sys/arm/at91/at91_pioreg.h soc2011/shm/sys/arm/at91/at91_piovar.h soc2011/shm/sys/arm/at91/at91_pmc.c soc2011/shm/sys/arm/at91/at91_pmcreg.h soc2011/shm/sys/arm/at91/at91_pmcvar.h soc2011/shm/sys/arm/at91/at91_rtc.c soc2011/shm/sys/arm/at91/at91_rtcreg.h soc2011/shm/sys/arm/at91/at91_spi.c soc2011/shm/sys/arm/at91/at91_spireg.h soc2011/shm/sys/arm/at91/at91_ssc.c soc2011/shm/sys/arm/at91/at91_sscreg.h soc2011/shm/sys/arm/at91/at91_st.c soc2011/shm/sys/arm/at91/at91_streg.h soc2011/shm/sys/arm/at91/at91_twi.c soc2011/shm/sys/arm/at91/at91_twiio.h soc2011/shm/sys/arm/at91/at91_twireg.h soc2011/shm/sys/arm/at91/at91_usartreg.h soc2011/shm/sys/arm/at91/at91board.h soc2011/shm/sys/arm/at91/at91rm92reg.h soc2011/shm/sys/arm/at91/at91var.h soc2011/shm/sys/arm/at91/board_bwct.c soc2011/shm/sys/arm/at91/board_hl200.c soc2011/shm/sys/arm/at91/board_kb920x.c soc2011/shm/sys/arm/at91/board_tsc4370.c soc2011/shm/sys/arm/at91/files.at91 soc2011/shm/sys/arm/at91/hints.at91rm9200 soc2011/shm/sys/arm/at91/hints.at91sam9261 soc2011/shm/sys/arm/at91/if_ate.c soc2011/shm/sys/arm/at91/if_atereg.h soc2011/shm/sys/arm/at91/std.at91 soc2011/shm/sys/arm/at91/std.bwct soc2011/shm/sys/arm/at91/std.hl200 soc2011/shm/sys/arm/at91/std.kb920x soc2011/shm/sys/arm/at91/std.tsc4370 soc2011/shm/sys/arm/at91/uart_bus_at91usart.c soc2011/shm/sys/arm/at91/uart_cpu_at91rm9200usart.c soc2011/shm/sys/arm/at91/uart_dev_at91usart.c soc2011/shm/sys/arm/compile/ soc2011/shm/sys/arm/compile/.cvsignore soc2011/shm/sys/arm/conf/ soc2011/shm/sys/arm/conf/.cvsignore soc2011/shm/sys/arm/conf/AVILA soc2011/shm/sys/arm/conf/AVILA.hints soc2011/shm/sys/arm/conf/BWCT soc2011/shm/sys/arm/conf/BWCT.hints soc2011/shm/sys/arm/conf/CAMBRIA soc2011/shm/sys/arm/conf/CAMBRIA.hints soc2011/shm/sys/arm/conf/CRB soc2011/shm/sys/arm/conf/DB-78XXX soc2011/shm/sys/arm/conf/DB-88F5XXX soc2011/shm/sys/arm/conf/DB-88F6XXX soc2011/shm/sys/arm/conf/DEFAULTS soc2011/shm/sys/arm/conf/EP80219 soc2011/shm/sys/arm/conf/GUMSTIX soc2011/shm/sys/arm/conf/GUMSTIX.hints soc2011/shm/sys/arm/conf/HL200 soc2011/shm/sys/arm/conf/IQ31244 soc2011/shm/sys/arm/conf/KB920X soc2011/shm/sys/arm/conf/KB920X.hints soc2011/shm/sys/arm/conf/NSLU soc2011/shm/sys/arm/conf/NSLU.hints soc2011/shm/sys/arm/conf/SHEEVAPLUG soc2011/shm/sys/arm/conf/SIMICS soc2011/shm/sys/arm/conf/SKYEYE soc2011/shm/sys/arm/include/ soc2011/shm/sys/arm/include/_bus.h soc2011/shm/sys/arm/include/_inttypes.h soc2011/shm/sys/arm/include/_limits.h soc2011/shm/sys/arm/include/_stdint.h soc2011/shm/sys/arm/include/_types.h soc2011/shm/sys/arm/include/armreg.h soc2011/shm/sys/arm/include/asm.h soc2011/shm/sys/arm/include/asmacros.h soc2011/shm/sys/arm/include/atomic.h soc2011/shm/sys/arm/include/blockio.h soc2011/shm/sys/arm/include/bootconfig.h soc2011/shm/sys/arm/include/bootinfo.h soc2011/shm/sys/arm/include/bus.h soc2011/shm/sys/arm/include/bus_dma.h soc2011/shm/sys/arm/include/clock.h soc2011/shm/sys/arm/include/cpu.h soc2011/shm/sys/arm/include/cpuconf.h soc2011/shm/sys/arm/include/cpufunc.h soc2011/shm/sys/arm/include/db_machdep.h soc2011/shm/sys/arm/include/disassem.h soc2011/shm/sys/arm/include/elf.h soc2011/shm/sys/arm/include/endian.h soc2011/shm/sys/arm/include/exec.h soc2011/shm/sys/arm/include/fiq.h soc2011/shm/sys/arm/include/float.h soc2011/shm/sys/arm/include/floatingpoint.h soc2011/shm/sys/arm/include/fp.h soc2011/shm/sys/arm/include/frame.h soc2011/shm/sys/arm/include/gdb_machdep.h soc2011/shm/sys/arm/include/ieee.h soc2011/shm/sys/arm/include/ieeefp.h soc2011/shm/sys/arm/include/in_cksum.h soc2011/shm/sys/arm/include/intr.h soc2011/shm/sys/arm/include/katelib.h soc2011/shm/sys/arm/include/kdb.h soc2011/shm/sys/arm/include/limits.h soc2011/shm/sys/arm/include/machdep.h soc2011/shm/sys/arm/include/md_var.h soc2011/shm/sys/arm/include/memdev.h soc2011/shm/sys/arm/include/metadata.h soc2011/shm/sys/arm/include/minidump.h soc2011/shm/sys/arm/include/mutex.h soc2011/shm/sys/arm/include/param.h soc2011/shm/sys/arm/include/pcb.h soc2011/shm/sys/arm/include/pcpu.h soc2011/shm/sys/arm/include/pmap.h soc2011/shm/sys/arm/include/pmc_mdep.h soc2011/shm/sys/arm/include/proc.h soc2011/shm/sys/arm/include/profile.h soc2011/shm/sys/arm/include/psl.h soc2011/shm/sys/arm/include/pte.h soc2011/shm/sys/arm/include/ptrace.h soc2011/shm/sys/arm/include/reg.h soc2011/shm/sys/arm/include/reloc.h soc2011/shm/sys/arm/include/resource.h soc2011/shm/sys/arm/include/runq.h soc2011/shm/sys/arm/include/setjmp.h soc2011/shm/sys/arm/include/sf_buf.h soc2011/shm/sys/arm/include/sigframe.h soc2011/shm/sys/arm/include/signal.h soc2011/shm/sys/arm/include/smp.h soc2011/shm/sys/arm/include/stack.h soc2011/shm/sys/arm/include/stdarg.h soc2011/shm/sys/arm/include/swi.h soc2011/shm/sys/arm/include/sysarch.h soc2011/shm/sys/arm/include/trap.h soc2011/shm/sys/arm/include/ucontext.h soc2011/shm/sys/arm/include/undefined.h soc2011/shm/sys/arm/include/utrap.h soc2011/shm/sys/arm/include/vm.h soc2011/shm/sys/arm/include/vmparam.h soc2011/shm/sys/arm/mv/ soc2011/shm/sys/arm/mv/bus_space.c soc2011/shm/sys/arm/mv/common.c soc2011/shm/sys/arm/mv/discovery/ soc2011/shm/sys/arm/mv/discovery/db78xxx.c soc2011/shm/sys/arm/mv/discovery/discovery.c soc2011/shm/sys/arm/mv/discovery/files.db78xxx soc2011/shm/sys/arm/mv/discovery/std.db78xxx soc2011/shm/sys/arm/mv/files.mv soc2011/shm/sys/arm/mv/gpio.c soc2011/shm/sys/arm/mv/ic.c soc2011/shm/sys/arm/mv/kirkwood/ soc2011/shm/sys/arm/mv/kirkwood/db88f6xxx.c soc2011/shm/sys/arm/mv/kirkwood/files.db88f6xxx soc2011/shm/sys/arm/mv/kirkwood/files.kirkwood soc2011/shm/sys/arm/mv/kirkwood/files.sheevaplug soc2011/shm/sys/arm/mv/kirkwood/kirkwood.c soc2011/shm/sys/arm/mv/kirkwood/sheevaplug.c soc2011/shm/sys/arm/mv/kirkwood/std.db88f6xxx soc2011/shm/sys/arm/mv/kirkwood/std.kirkwood soc2011/shm/sys/arm/mv/kirkwood/std.sheevaplug soc2011/shm/sys/arm/mv/mv_machdep.c soc2011/shm/sys/arm/mv/mv_pci.c soc2011/shm/sys/arm/mv/mv_sata.c soc2011/shm/sys/arm/mv/mvreg.h soc2011/shm/sys/arm/mv/mvvar.h soc2011/shm/sys/arm/mv/mvwin.h soc2011/shm/sys/arm/mv/obio.c soc2011/shm/sys/arm/mv/orion/ soc2011/shm/sys/arm/mv/orion/db88f5xxx.c soc2011/shm/sys/arm/mv/orion/files.db88f5xxx soc2011/shm/sys/arm/mv/orion/orion.c soc2011/shm/sys/arm/mv/orion/std.db88f5xxx soc2011/shm/sys/arm/mv/rtc.c soc2011/shm/sys/arm/mv/std.mv soc2011/shm/sys/arm/mv/timer.c soc2011/shm/sys/arm/mv/twsi.c soc2011/shm/sys/arm/sa11x0/ soc2011/shm/sys/arm/sa11x0/assabet_machdep.c soc2011/shm/sys/arm/sa11x0/files.sa11x0 soc2011/shm/sys/arm/sa11x0/sa11x0.c soc2011/shm/sys/arm/sa11x0/sa11x0_dmacreg.h soc2011/shm/sys/arm/sa11x0/sa11x0_gpioreg.h soc2011/shm/sys/arm/sa11x0/sa11x0_io.c soc2011/shm/sys/arm/sa11x0/sa11x0_io_asm.S soc2011/shm/sys/arm/sa11x0/sa11x0_irq.S soc2011/shm/sys/arm/sa11x0/sa11x0_irqhandler.c soc2011/shm/sys/arm/sa11x0/sa11x0_ost.c soc2011/shm/sys/arm/sa11x0/sa11x0_ostreg.h soc2011/shm/sys/arm/sa11x0/sa11x0_ppcreg.h soc2011/shm/sys/arm/sa11x0/sa11x0_reg.h soc2011/shm/sys/arm/sa11x0/sa11x0_var.h soc2011/shm/sys/arm/sa11x0/std.sa11x0 soc2011/shm/sys/arm/sa11x0/uart_bus_sa1110.c soc2011/shm/sys/arm/sa11x0/uart_cpu_sa1110.c soc2011/shm/sys/arm/sa11x0/uart_dev_sa1110.c soc2011/shm/sys/arm/sa11x0/uart_dev_sa1110.h soc2011/shm/sys/arm/xscale/ soc2011/shm/sys/arm/xscale/i80321/ soc2011/shm/sys/arm/xscale/i80321/ep80219_machdep.c soc2011/shm/sys/arm/xscale/i80321/files.ep80219 soc2011/shm/sys/arm/xscale/i80321/files.i80219 soc2011/shm/sys/arm/xscale/i80321/files.i80321 soc2011/shm/sys/arm/xscale/i80321/files.iq31244 soc2011/shm/sys/arm/xscale/i80321/i80321.c soc2011/shm/sys/arm/xscale/i80321/i80321_aau.c soc2011/shm/sys/arm/xscale/i80321/i80321_dma.c soc2011/shm/sys/arm/xscale/i80321/i80321_intr.h soc2011/shm/sys/arm/xscale/i80321/i80321_mcu.c soc2011/shm/sys/arm/xscale/i80321/i80321_pci.c soc2011/shm/sys/arm/xscale/i80321/i80321_space.c soc2011/shm/sys/arm/xscale/i80321/i80321_timer.c soc2011/shm/sys/arm/xscale/i80321/i80321_wdog.c soc2011/shm/sys/arm/xscale/i80321/i80321reg.h soc2011/shm/sys/arm/xscale/i80321/i80321var.h soc2011/shm/sys/arm/xscale/i80321/iq31244_7seg.c soc2011/shm/sys/arm/xscale/i80321/iq31244_machdep.c soc2011/shm/sys/arm/xscale/i80321/iq80321.c soc2011/shm/sys/arm/xscale/i80321/iq80321reg.h soc2011/shm/sys/arm/xscale/i80321/iq80321var.h soc2011/shm/sys/arm/xscale/i80321/obio.c soc2011/shm/sys/arm/xscale/i80321/obio_space.c soc2011/shm/sys/arm/xscale/i80321/obiovar.h soc2011/shm/sys/arm/xscale/i80321/std.ep80219 soc2011/shm/sys/arm/xscale/i80321/std.i80219 soc2011/shm/sys/arm/xscale/i80321/std.i80321 soc2011/shm/sys/arm/xscale/i80321/std.iq31244 soc2011/shm/sys/arm/xscale/i80321/uart_bus_i80321.c soc2011/shm/sys/arm/xscale/i80321/uart_cpu_i80321.c soc2011/shm/sys/arm/xscale/i8134x/ soc2011/shm/sys/arm/xscale/i8134x/crb_machdep.c soc2011/shm/sys/arm/xscale/i8134x/files.crb soc2011/shm/sys/arm/xscale/i8134x/files.i81342 soc2011/shm/sys/arm/xscale/i8134x/i81342.c soc2011/shm/sys/arm/xscale/i8134x/i81342_mcu.c soc2011/shm/sys/arm/xscale/i8134x/i81342_pci.c soc2011/shm/sys/arm/xscale/i8134x/i81342_space.c soc2011/shm/sys/arm/xscale/i8134x/i81342reg.h soc2011/shm/sys/arm/xscale/i8134x/i81342var.h soc2011/shm/sys/arm/xscale/i8134x/iq81342_7seg.c soc2011/shm/sys/arm/xscale/i8134x/iq81342reg.h soc2011/shm/sys/arm/xscale/i8134x/iq81342var.h soc2011/shm/sys/arm/xscale/i8134x/obio.c soc2011/shm/sys/arm/xscale/i8134x/obio_space.c soc2011/shm/sys/arm/xscale/i8134x/obiovar.h soc2011/shm/sys/arm/xscale/i8134x/std.crb soc2011/shm/sys/arm/xscale/i8134x/std.i81342 soc2011/shm/sys/arm/xscale/i8134x/uart_bus_i81342.c soc2011/shm/sys/arm/xscale/i8134x/uart_cpu_i81342.c soc2011/shm/sys/arm/xscale/ixp425/ soc2011/shm/sys/arm/xscale/ixp425/avila_ata.c soc2011/shm/sys/arm/xscale/ixp425/avila_led.c soc2011/shm/sys/arm/xscale/ixp425/avila_machdep.c soc2011/shm/sys/arm/xscale/ixp425/cambria_exp_space.c soc2011/shm/sys/arm/xscale/ixp425/cambria_fled.c soc2011/shm/sys/arm/xscale/ixp425/cambria_led.c soc2011/shm/sys/arm/xscale/ixp425/files.avila soc2011/shm/sys/arm/xscale/ixp425/files.ixp425 soc2011/shm/sys/arm/xscale/ixp425/if_npe.c soc2011/shm/sys/arm/xscale/ixp425/if_npereg.h soc2011/shm/sys/arm/xscale/ixp425/ixdp425_pci.c soc2011/shm/sys/arm/xscale/ixp425/ixdp425reg.h soc2011/shm/sys/arm/xscale/ixp425/ixp425.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_a4x_io.S soc2011/shm/sys/arm/xscale/ixp425/ixp425_a4x_space.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_iic.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_intr.h soc2011/shm/sys/arm/xscale/ixp425/ixp425_mem.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_npe.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_npereg.h soc2011/shm/sys/arm/xscale/ixp425/ixp425_npevar.h soc2011/shm/sys/arm/xscale/ixp425/ixp425_pci.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_pci_asm.S soc2011/shm/sys/arm/xscale/ixp425/ixp425_pci_space.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_qmgr.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_qmgr.h soc2011/shm/sys/arm/xscale/ixp425/ixp425_space.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_timer.c soc2011/shm/sys/arm/xscale/ixp425/ixp425_wdog.c soc2011/shm/sys/arm/xscale/ixp425/ixp425reg.h soc2011/shm/sys/arm/xscale/ixp425/ixp425var.h soc2011/shm/sys/arm/xscale/ixp425/std.avila soc2011/shm/sys/arm/xscale/ixp425/std.ixp425 soc2011/shm/sys/arm/xscale/ixp425/std.ixp435 soc2011/shm/sys/arm/xscale/ixp425/uart_bus_ixp425.c soc2011/shm/sys/arm/xscale/ixp425/uart_cpu_ixp425.c soc2011/shm/sys/arm/xscale/pxa/ soc2011/shm/sys/arm/xscale/pxa/files.pxa soc2011/shm/sys/arm/xscale/pxa/if_smc_smi.c soc2011/shm/sys/arm/xscale/pxa/pxa_gpio.c soc2011/shm/sys/arm/xscale/pxa/pxa_icu.c soc2011/shm/sys/arm/xscale/pxa/pxa_machdep.c soc2011/shm/sys/arm/xscale/pxa/pxa_obio.c soc2011/shm/sys/arm/xscale/pxa/pxa_smi.c soc2011/shm/sys/arm/xscale/pxa/pxa_space.c soc2011/shm/sys/arm/xscale/pxa/pxa_timer.c soc2011/shm/sys/arm/xscale/pxa/pxareg.h soc2011/shm/sys/arm/xscale/pxa/pxavar.h soc2011/shm/sys/arm/xscale/pxa/std.pxa soc2011/shm/sys/arm/xscale/pxa/uart_bus_pxa.c soc2011/shm/sys/arm/xscale/pxa/uart_cpu_pxa.c soc2011/shm/sys/arm/xscale/std.xscale soc2011/shm/sys/arm/xscale/xscalereg.h soc2011/shm/sys/arm/xscale/xscalevar.h soc2011/shm/sys/boot/ soc2011/shm/sys/boot/Makefile soc2011/shm/sys/boot/Makefile.inc soc2011/shm/sys/boot/README soc2011/shm/sys/boot/arm/ soc2011/shm/sys/boot/arm/Makefile soc2011/shm/sys/boot/arm/Makefile.inc soc2011/shm/sys/boot/arm/at91/ soc2011/shm/sys/boot/arm/at91/Makefile soc2011/shm/sys/boot/arm/at91/Makefile.inc soc2011/shm/sys/boot/arm/at91/boot0/ soc2011/shm/sys/boot/arm/at91/boot0/Makefile soc2011/shm/sys/boot/arm/at91/boot0/README soc2011/shm/sys/boot/arm/at91/boot0/linker.cfg soc2011/shm/sys/boot/arm/at91/boot0/main.c soc2011/shm/sys/boot/arm/at91/boot0iic/ soc2011/shm/sys/boot/arm/at91/boot0iic/Makefile soc2011/shm/sys/boot/arm/at91/boot0iic/main.c soc2011/shm/sys/boot/arm/at91/boot0spi/ soc2011/shm/sys/boot/arm/at91/boot0spi/Makefile soc2011/shm/sys/boot/arm/at91/boot0spi/main.c soc2011/shm/sys/boot/arm/at91/boot2/ soc2011/shm/sys/boot/arm/at91/boot2/Makefile soc2011/shm/sys/boot/arm/at91/boot2/board.h soc2011/shm/sys/boot/arm/at91/boot2/boot2.c soc2011/shm/sys/boot/arm/at91/boot2/bwct_board.c soc2011/shm/sys/boot/arm/at91/boot2/centipad_board.c soc2011/shm/sys/boot/arm/at91/boot2/kb920x_board.c soc2011/shm/sys/boot/arm/at91/bootiic/ soc2011/shm/sys/boot/arm/at91/bootiic/Makefile soc2011/shm/sys/boot/arm/at91/bootiic/README soc2011/shm/sys/boot/arm/at91/bootiic/env_vars.c soc2011/shm/sys/boot/arm/at91/bootiic/env_vars.h soc2011/shm/sys/boot/arm/at91/bootiic/loader_prompt.c soc2011/shm/sys/boot/arm/at91/bootiic/loader_prompt.h soc2011/shm/sys/boot/arm/at91/bootiic/main.c soc2011/shm/sys/boot/arm/at91/bootspi/ soc2011/shm/sys/boot/arm/at91/bootspi/Makefile soc2011/shm/sys/boot/arm/at91/bootspi/README soc2011/shm/sys/boot/arm/at91/bootspi/ee.c soc2011/shm/sys/boot/arm/at91/bootspi/ee.h soc2011/shm/sys/boot/arm/at91/bootspi/env_vars.c soc2011/shm/sys/boot/arm/at91/bootspi/env_vars.h soc2011/shm/sys/boot/arm/at91/bootspi/loader_prompt.c soc2011/shm/sys/boot/arm/at91/bootspi/loader_prompt.h soc2011/shm/sys/boot/arm/at91/bootspi/main.c soc2011/shm/sys/boot/arm/at91/libat91/ soc2011/shm/sys/boot/arm/at91/libat91/Makefile soc2011/shm/sys/boot/arm/at91/libat91/arm_init.S soc2011/shm/sys/boot/arm/at91/libat91/at91rm9200.h soc2011/shm/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.c soc2011/shm/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.h soc2011/shm/sys/boot/arm/at91/libat91/delay.c soc2011/shm/sys/boot/arm/at91/libat91/eeprom.c soc2011/shm/sys/boot/arm/at91/libat91/emac.c soc2011/shm/sys/boot/arm/at91/libat91/emac.h soc2011/shm/sys/boot/arm/at91/libat91/emac_init.c soc2011/shm/sys/boot/arm/at91/libat91/getc.c soc2011/shm/sys/boot/arm/at91/libat91/lib.h soc2011/shm/sys/boot/arm/at91/libat91/lib_AT91RM9200.h soc2011/shm/sys/boot/arm/at91/libat91/mci_device.h soc2011/shm/sys/boot/arm/at91/libat91/memcmp.c soc2011/shm/sys/boot/arm/at91/libat91/memcpy.c soc2011/shm/sys/boot/arm/at91/libat91/memset.c soc2011/shm/sys/boot/arm/at91/libat91/p_string.c soc2011/shm/sys/boot/arm/at91/libat91/printf.c soc2011/shm/sys/boot/arm/at91/libat91/putchar.c soc2011/shm/sys/boot/arm/at91/libat91/reset.c soc2011/shm/sys/boot/arm/at91/libat91/sd-card.c soc2011/shm/sys/boot/arm/at91/libat91/sd-card.h soc2011/shm/sys/boot/arm/at91/libat91/spi_flash.c soc2011/shm/sys/boot/arm/at91/libat91/spi_flash.h soc2011/shm/sys/boot/arm/at91/libat91/strcmp.c soc2011/shm/sys/boot/arm/at91/libat91/strcpy.c soc2011/shm/sys/boot/arm/at91/libat91/strcvt.c soc2011/shm/sys/boot/arm/at91/libat91/strlen.c soc2011/shm/sys/boot/arm/at91/libat91/tag_list.c soc2011/shm/sys/boot/arm/at91/libat91/tag_list.h soc2011/shm/sys/boot/arm/at91/libat91/xmodem.c soc2011/shm/sys/boot/arm/at91/linker.cfg soc2011/shm/sys/boot/arm/ixp425/ soc2011/shm/sys/boot/arm/ixp425/Makefile.inc soc2011/shm/sys/boot/arm/ixp425/boot2/ soc2011/shm/sys/boot/arm/ixp425/boot2/Makefile soc2011/shm/sys/boot/arm/ixp425/boot2/arm_init.S soc2011/shm/sys/boot/arm/ixp425/boot2/boot2.c soc2011/shm/sys/boot/arm/ixp425/boot2/cf_ata.h soc2011/shm/sys/boot/arm/ixp425/boot2/ixp425_board.c soc2011/shm/sys/boot/arm/ixp425/boot2/lib.h soc2011/shm/sys/boot/arm/uboot/ soc2011/shm/sys/boot/arm/uboot/Makefile soc2011/shm/sys/boot/arm/uboot/conf.c soc2011/shm/sys/boot/arm/uboot/help.uboot soc2011/shm/sys/boot/arm/uboot/ldscript.arm soc2011/shm/sys/boot/arm/uboot/start.S soc2011/shm/sys/boot/arm/uboot/version soc2011/shm/sys/boot/common/ soc2011/shm/sys/boot/common/Makefile.inc soc2011/shm/sys/boot/common/bcache.c soc2011/shm/sys/boot/common/boot.c soc2011/shm/sys/boot/common/bootstrap.h soc2011/shm/sys/boot/common/commands.c soc2011/shm/sys/boot/common/console.c soc2011/shm/sys/boot/common/dev_net.c soc2011/shm/sys/boot/common/dev_net.h soc2011/shm/sys/boot/common/devopen.c soc2011/shm/sys/boot/common/help.common soc2011/shm/sys/boot/common/interp.c soc2011/shm/sys/boot/common/interp_backslash.c soc2011/shm/sys/boot/common/interp_forth.c soc2011/shm/sys/boot/common/interp_parse.c soc2011/shm/sys/boot/common/isapnp.c soc2011/shm/sys/boot/common/isapnp.h soc2011/shm/sys/boot/common/load_elf.c soc2011/shm/sys/boot/common/load_elf32.c soc2011/shm/sys/boot/common/load_elf32_obj.c soc2011/shm/sys/boot/common/load_elf64.c soc2011/shm/sys/boot/common/load_elf64_obj.c soc2011/shm/sys/boot/common/load_elf_obj.c soc2011/shm/sys/boot/common/loader.8 soc2011/shm/sys/boot/common/ls.c soc2011/shm/sys/boot/common/merge_help.awk soc2011/shm/sys/boot/common/misc.c soc2011/shm/sys/boot/common/module.c soc2011/shm/sys/boot/common/newvers.sh (contents, props changed) soc2011/shm/sys/boot/common/panic.c soc2011/shm/sys/boot/common/pnp.c soc2011/shm/sys/boot/common/reloc_elf.c soc2011/shm/sys/boot/common/reloc_elf32.c soc2011/shm/sys/boot/common/reloc_elf64.c soc2011/shm/sys/boot/common/ufsread.c soc2011/shm/sys/boot/efi/ soc2011/shm/sys/boot/efi/Makefile soc2011/shm/sys/boot/efi/Makefile.inc soc2011/shm/sys/boot/efi/include/ soc2011/shm/sys/boot/efi/include/README soc2011/shm/sys/boot/efi/include/efi.h soc2011/shm/sys/boot/efi/include/efi_nii.h soc2011/shm/sys/boot/efi/include/efiapi.h soc2011/shm/sys/boot/efi/include/eficon.h soc2011/shm/sys/boot/efi/include/efidebug.h soc2011/shm/sys/boot/efi/include/efidef.h soc2011/shm/sys/boot/efi/include/efidevp.h soc2011/shm/sys/boot/efi/include/efierr.h soc2011/shm/sys/boot/efi/include/efifpswa.h soc2011/shm/sys/boot/efi/include/efifs.h soc2011/shm/sys/boot/efi/include/efilib.h soc2011/shm/sys/boot/efi/include/efinet.h soc2011/shm/sys/boot/efi/include/efipart.h soc2011/shm/sys/boot/efi/include/efiprot.h soc2011/shm/sys/boot/efi/include/efipxebc.h soc2011/shm/sys/boot/efi/include/efiser.h soc2011/shm/sys/boot/efi/include/efistdarg.h soc2011/shm/sys/boot/efi/include/i386/ soc2011/shm/sys/boot/efi/include/i386/efibind.h soc2011/shm/sys/boot/efi/include/i386/pe.h soc2011/shm/sys/boot/efi/include/ia64/ soc2011/shm/sys/boot/efi/include/ia64/efibind.h soc2011/shm/sys/boot/efi/include/ia64/pe.h soc2011/shm/sys/boot/efi/libefi/ soc2011/shm/sys/boot/efi/libefi/Makefile soc2011/shm/sys/boot/efi/libefi/delay.c soc2011/shm/sys/boot/efi/libefi/efi_console.c soc2011/shm/sys/boot/efi/libefi/efinet.c soc2011/shm/sys/boot/efi/libefi/efipart.c soc2011/shm/sys/boot/efi/libefi/errno.c soc2011/shm/sys/boot/efi/libefi/handles.c soc2011/shm/sys/boot/efi/libefi/libefi.c soc2011/shm/sys/boot/efi/libefi/time.c soc2011/shm/sys/boot/ficl/ soc2011/shm/sys/boot/ficl/Makefile soc2011/shm/sys/boot/ficl/arm/ soc2011/shm/sys/boot/ficl/arm/sysdep.c soc2011/shm/sys/boot/ficl/arm/sysdep.h soc2011/shm/sys/boot/ficl/dict.c soc2011/shm/sys/boot/ficl/ficl.c soc2011/shm/sys/boot/ficl/ficl.h soc2011/shm/sys/boot/ficl/fileaccess.c soc2011/shm/sys/boot/ficl/float.c soc2011/shm/sys/boot/ficl/i386/ soc2011/shm/sys/boot/ficl/i386/sysdep.c soc2011/shm/sys/boot/ficl/i386/sysdep.h soc2011/shm/sys/boot/ficl/ia64/ soc2011/shm/sys/boot/ficl/ia64/sysdep.c soc2011/shm/sys/boot/ficl/ia64/sysdep.h soc2011/shm/sys/boot/ficl/loader.c soc2011/shm/sys/boot/ficl/math64.c soc2011/shm/sys/boot/ficl/math64.h soc2011/shm/sys/boot/ficl/mips/ soc2011/shm/sys/boot/ficl/mips/sysdep.c soc2011/shm/sys/boot/ficl/mips/sysdep.h soc2011/shm/sys/boot/ficl/powerpc/ soc2011/shm/sys/boot/ficl/powerpc/sysdep.c soc2011/shm/sys/boot/ficl/powerpc/sysdep.h soc2011/shm/sys/boot/ficl/prefix.c soc2011/shm/sys/boot/ficl/search.c soc2011/shm/sys/boot/ficl/softwords/ soc2011/shm/sys/boot/ficl/softwords/classes.fr soc2011/shm/sys/boot/ficl/softwords/ficlclass.fr soc2011/shm/sys/boot/ficl/softwords/ficllocal.fr soc2011/shm/sys/boot/ficl/softwords/fileaccess.fr soc2011/shm/sys/boot/ficl/softwords/forml.fr soc2011/shm/sys/boot/ficl/softwords/freebsd.fr soc2011/shm/sys/boot/ficl/softwords/ifbrack.fr soc2011/shm/sys/boot/ficl/softwords/jhlocal.fr soc2011/shm/sys/boot/ficl/softwords/marker.fr soc2011/shm/sys/boot/ficl/softwords/oo.fr soc2011/shm/sys/boot/ficl/softwords/prefix.fr soc2011/shm/sys/boot/ficl/softwords/softcore.awk soc2011/shm/sys/boot/ficl/softwords/softcore.fr soc2011/shm/sys/boot/ficl/softwords/string.fr soc2011/shm/sys/boot/ficl/sparc64/ soc2011/shm/sys/boot/ficl/sparc64/sysdep.c soc2011/shm/sys/boot/ficl/sparc64/sysdep.h soc2011/shm/sys/boot/ficl/stack.c soc2011/shm/sys/boot/ficl/testmain.c soc2011/shm/sys/boot/ficl/tools.c soc2011/shm/sys/boot/ficl/unix.c soc2011/shm/sys/boot/ficl/vm.c soc2011/shm/sys/boot/ficl/words.c soc2011/shm/sys/boot/forth/ soc2011/shm/sys/boot/forth/beastie.4th soc2011/shm/sys/boot/forth/frames.4th soc2011/shm/sys/boot/forth/loader.4th soc2011/shm/sys/boot/forth/loader.4th.8 soc2011/shm/sys/boot/forth/loader.conf soc2011/shm/sys/boot/forth/loader.conf.5 soc2011/shm/sys/boot/forth/loader.rc soc2011/shm/sys/boot/forth/pnp.4th soc2011/shm/sys/boot/forth/screen.4th soc2011/shm/sys/boot/forth/support.4th soc2011/shm/sys/boot/i386/ soc2011/shm/sys/boot/i386/Makefile soc2011/shm/sys/boot/i386/Makefile.inc soc2011/shm/sys/boot/i386/boot0/ soc2011/shm/sys/boot/i386/boot0/Makefile soc2011/shm/sys/boot/i386/boot0/boot0.S soc2011/shm/sys/boot/i386/boot0/boot0ext.S soc2011/shm/sys/boot/i386/boot0ext/ soc2011/shm/sys/boot/i386/boot0ext/Makefile soc2011/shm/sys/boot/i386/boot0sio/ soc2011/shm/sys/boot/i386/boot0sio/Makefile soc2011/shm/sys/boot/i386/boot2/ soc2011/shm/sys/boot/i386/boot2/Makefile soc2011/shm/sys/boot/i386/boot2/boot1.S soc2011/shm/sys/boot/i386/boot2/boot2.c soc2011/shm/sys/boot/i386/boot2/lib.h soc2011/shm/sys/boot/i386/boot2/sio.S soc2011/shm/sys/boot/i386/btx/ soc2011/shm/sys/boot/i386/btx/Makefile soc2011/shm/sys/boot/i386/btx/Makefile.inc soc2011/shm/sys/boot/i386/btx/btx/ soc2011/shm/sys/boot/i386/btx/btx/Makefile soc2011/shm/sys/boot/i386/btx/btx/btx.S soc2011/shm/sys/boot/i386/btx/btxldr/ soc2011/shm/sys/boot/i386/btx/btxldr/Makefile soc2011/shm/sys/boot/i386/btx/btxldr/btxldr.S soc2011/shm/sys/boot/i386/btx/lib/ soc2011/shm/sys/boot/i386/btx/lib/Makefile soc2011/shm/sys/boot/i386/btx/lib/btxcsu.s soc2011/shm/sys/boot/i386/btx/lib/btxsys.s soc2011/shm/sys/boot/i386/btx/lib/btxv86.h soc2011/shm/sys/boot/i386/btx/lib/btxv86.s soc2011/shm/sys/boot/i386/cdboot/ soc2011/shm/sys/boot/i386/cdboot/Makefile soc2011/shm/sys/boot/i386/cdboot/cdboot.s soc2011/shm/sys/boot/i386/gptboot/ soc2011/shm/sys/boot/i386/gptboot/Makefile soc2011/shm/sys/boot/i386/gptboot/gptboot.c soc2011/shm/sys/boot/i386/gptboot/gptldr.S soc2011/shm/sys/boot/i386/gptzfsboot/ soc2011/shm/sys/boot/i386/gptzfsboot/Makefile soc2011/shm/sys/boot/i386/kgzldr/ soc2011/shm/sys/boot/i386/kgzldr/Makefile soc2011/shm/sys/boot/i386/kgzldr/boot.c soc2011/shm/sys/boot/i386/kgzldr/crt.s soc2011/shm/sys/boot/i386/kgzldr/kgzldr.h soc2011/shm/sys/boot/i386/kgzldr/lib.c soc2011/shm/sys/boot/i386/kgzldr/sio.s soc2011/shm/sys/boot/i386/kgzldr/start.s soc2011/shm/sys/boot/i386/libfirewire/ soc2011/shm/sys/boot/i386/libfirewire/Makefile soc2011/shm/sys/boot/i386/libfirewire/dconsole.c soc2011/shm/sys/boot/i386/libfirewire/firewire.c soc2011/shm/sys/boot/i386/libfirewire/fwohci.c soc2011/shm/sys/boot/i386/libfirewire/fwohci.h soc2011/shm/sys/boot/i386/libfirewire/fwohcireg.h soc2011/shm/sys/boot/i386/libi386/ soc2011/shm/sys/boot/i386/libi386/Makefile soc2011/shm/sys/boot/i386/libi386/amd64_tramp.S soc2011/shm/sys/boot/i386/libi386/biosacpi.c soc2011/shm/sys/boot/i386/libi386/bioscd.c soc2011/shm/sys/boot/i386/libi386/biosdisk.c soc2011/shm/sys/boot/i386/libi386/biosmem.c soc2011/shm/sys/boot/i386/libi386/biospci.c soc2011/shm/sys/boot/i386/libi386/biospnp.c soc2011/shm/sys/boot/i386/libi386/biossmap.c soc2011/shm/sys/boot/i386/libi386/bootinfo.c soc2011/shm/sys/boot/i386/libi386/bootinfo32.c soc2011/shm/sys/boot/i386/libi386/bootinfo64.c soc2011/shm/sys/boot/i386/libi386/comconsole.c soc2011/shm/sys/boot/i386/libi386/devicename.c soc2011/shm/sys/boot/i386/libi386/elf32_freebsd.c soc2011/shm/sys/boot/i386/libi386/elf64_freebsd.c soc2011/shm/sys/boot/i386/libi386/i386_copy.c soc2011/shm/sys/boot/i386/libi386/i386_module.c soc2011/shm/sys/boot/i386/libi386/libi386.h soc2011/shm/sys/boot/i386/libi386/nullconsole.c soc2011/shm/sys/boot/i386/libi386/pread.c soc2011/shm/sys/boot/i386/libi386/pxe.c soc2011/shm/sys/boot/i386/libi386/pxe.h soc2011/shm/sys/boot/i386/libi386/pxetramp.s soc2011/shm/sys/boot/i386/libi386/smbios.c soc2011/shm/sys/boot/i386/libi386/time.c soc2011/shm/sys/boot/i386/libi386/vidconsole.c soc2011/shm/sys/boot/i386/loader/ soc2011/shm/sys/boot/i386/loader/Makefile soc2011/shm/sys/boot/i386/loader/conf.c soc2011/shm/sys/boot/i386/loader/help.i386 soc2011/shm/sys/boot/i386/loader/loader.rc soc2011/shm/sys/boot/i386/loader/main.c soc2011/shm/sys/boot/i386/loader/version soc2011/shm/sys/boot/i386/mbr/ soc2011/shm/sys/boot/i386/mbr/Makefile soc2011/shm/sys/boot/i386/mbr/mbr.s soc2011/shm/sys/boot/i386/pmbr/ soc2011/shm/sys/boot/i386/pmbr/Makefile soc2011/shm/sys/boot/i386/pmbr/pmbr.s soc2011/shm/sys/boot/i386/pxeldr/ soc2011/shm/sys/boot/i386/pxeldr/Makefile soc2011/shm/sys/boot/i386/pxeldr/pxeboot.8 soc2011/shm/sys/boot/i386/pxeldr/pxeldr.S soc2011/shm/sys/boot/i386/zfsboot/ soc2011/shm/sys/boot/i386/zfsboot/Makefile soc2011/shm/sys/boot/i386/zfsboot/zfsboot.c soc2011/shm/sys/boot/i386/zfsboot/zfsboot.c.orig soc2011/shm/sys/boot/i386/zfsboot/zfsldr.S soc2011/shm/sys/boot/i386/zfsloader/ soc2011/shm/sys/boot/i386/zfsloader/Makefile soc2011/shm/sys/boot/ia64/ soc2011/shm/sys/boot/ia64/Makefile soc2011/shm/sys/boot/ia64/Makefile.inc soc2011/shm/sys/boot/ia64/common/ soc2011/shm/sys/boot/ia64/common/Makefile soc2011/shm/sys/boot/ia64/common/autoload.c soc2011/shm/sys/boot/ia64/common/bootinfo.c soc2011/shm/sys/boot/ia64/common/copy.c soc2011/shm/sys/boot/ia64/common/devicename.c soc2011/shm/sys/boot/ia64/common/exec.c soc2011/shm/sys/boot/ia64/common/libia64.h soc2011/shm/sys/boot/ia64/efi/ soc2011/shm/sys/boot/ia64/efi/Makefile soc2011/shm/sys/boot/ia64/efi/conf.c soc2011/shm/sys/boot/ia64/efi/efimd.c soc2011/shm/sys/boot/ia64/efi/ldscript.ia64 soc2011/shm/sys/boot/ia64/efi/main.c soc2011/shm/sys/boot/ia64/efi/start.S soc2011/shm/sys/boot/ia64/efi/version soc2011/shm/sys/boot/ia64/ski/ soc2011/shm/sys/boot/ia64/ski/Makefile soc2011/shm/sys/boot/ia64/ski/acpi_stub.c soc2011/shm/sys/boot/ia64/ski/conf.c soc2011/shm/sys/boot/ia64/ski/delay.c soc2011/shm/sys/boot/ia64/ski/efi_stub.c soc2011/shm/sys/boot/ia64/ski/exit.c soc2011/shm/sys/boot/ia64/ski/ldscript.ia64 soc2011/shm/sys/boot/ia64/ski/libski.h soc2011/shm/sys/boot/ia64/ski/main.c soc2011/shm/sys/boot/ia64/ski/pal_stub.S soc2011/shm/sys/boot/ia64/ski/sal_stub.c soc2011/shm/sys/boot/ia64/ski/skiconsole.c soc2011/shm/sys/boot/ia64/ski/skifs.c soc2011/shm/sys/boot/ia64/ski/skiload.cmd soc2011/shm/sys/boot/ia64/ski/skimd.c soc2011/shm/sys/boot/ia64/ski/ssc.c soc2011/shm/sys/boot/ia64/ski/start.S soc2011/shm/sys/boot/ia64/ski/time.c soc2011/shm/sys/boot/ia64/ski/version soc2011/shm/sys/boot/ofw/ soc2011/shm/sys/boot/ofw/Makefile soc2011/shm/sys/boot/ofw/Makefile.inc soc2011/shm/sys/boot/ofw/common/ soc2011/shm/sys/boot/ofw/common/Makefile.inc soc2011/shm/sys/boot/ofw/common/main.c soc2011/shm/sys/boot/ofw/libofw/ soc2011/shm/sys/boot/ofw/libofw/Makefile soc2011/shm/sys/boot/ofw/libofw/devicename.c soc2011/shm/sys/boot/ofw/libofw/elf_freebsd.c soc2011/shm/sys/boot/ofw/libofw/libofw.h soc2011/shm/sys/boot/ofw/libofw/ofw_console.c soc2011/shm/sys/boot/ofw/libofw/ofw_copy.c soc2011/shm/sys/boot/ofw/libofw/ofw_disk.c soc2011/shm/sys/boot/ofw/libofw/ofw_memory.c soc2011/shm/sys/boot/ofw/libofw/ofw_module.c soc2011/shm/sys/boot/ofw/libofw/ofw_net.c soc2011/shm/sys/boot/ofw/libofw/ofw_reboot.c soc2011/shm/sys/boot/ofw/libofw/ofw_time.c soc2011/shm/sys/boot/ofw/libofw/openfirm.c soc2011/shm/sys/boot/ofw/libofw/openfirm.h soc2011/shm/sys/boot/pc98/ soc2011/shm/sys/boot/pc98/Makefile soc2011/shm/sys/boot/pc98/Makefile.inc soc2011/shm/sys/boot/pc98/boot0/ soc2011/shm/sys/boot/pc98/boot0.5/ soc2011/shm/sys/boot/pc98/boot0.5/Makefile soc2011/shm/sys/boot/pc98/boot0.5/boot.s soc2011/shm/sys/boot/pc98/boot0.5/boot0.5.s soc2011/shm/sys/boot/pc98/boot0.5/disk.s soc2011/shm/sys/boot/pc98/boot0.5/ldscript soc2011/shm/sys/boot/pc98/boot0.5/putssjis.s soc2011/shm/sys/boot/pc98/boot0.5/selector.s soc2011/shm/sys/boot/pc98/boot0.5/start.s soc2011/shm/sys/boot/pc98/boot0.5/support.s soc2011/shm/sys/boot/pc98/boot0.5/syscons.s soc2011/shm/sys/boot/pc98/boot0/Makefile soc2011/shm/sys/boot/pc98/boot0/boot0.s soc2011/shm/sys/boot/pc98/boot2/ soc2011/shm/sys/boot/pc98/boot2/Makefile soc2011/shm/sys/boot/pc98/boot2/boot1.S soc2011/shm/sys/boot/pc98/boot2/boot2.c soc2011/shm/sys/boot/pc98/btx/ soc2011/shm/sys/boot/pc98/btx/Makefile soc2011/shm/sys/boot/pc98/btx/Makefile.inc soc2011/shm/sys/boot/pc98/btx/btx/ soc2011/shm/sys/boot/pc98/btx/btx/Makefile soc2011/shm/sys/boot/pc98/btx/btx/btx.S soc2011/shm/sys/boot/pc98/btx/btxldr/ soc2011/shm/sys/boot/pc98/btx/btxldr/Makefile soc2011/shm/sys/boot/pc98/btx/btxldr/btxldr.S soc2011/shm/sys/boot/pc98/btx/lib/ soc2011/shm/sys/boot/pc98/btx/lib/Makefile soc2011/shm/sys/boot/pc98/btx/lib/btxcsu.s soc2011/shm/sys/boot/pc98/btx/lib/btxsys.s soc2011/shm/sys/boot/pc98/btx/lib/btxv86.h soc2011/shm/sys/boot/pc98/btx/lib/btxv86.s soc2011/shm/sys/boot/pc98/cdboot/ soc2011/shm/sys/boot/pc98/cdboot/Makefile soc2011/shm/sys/boot/pc98/cdboot/cdboot.s soc2011/shm/sys/boot/pc98/kgzldr/ soc2011/shm/sys/boot/pc98/kgzldr/Makefile soc2011/shm/sys/boot/pc98/kgzldr/crt.s soc2011/shm/sys/boot/pc98/libpc98/ soc2011/shm/sys/boot/pc98/libpc98/Makefile soc2011/shm/sys/boot/pc98/libpc98/bioscd.c soc2011/shm/sys/boot/pc98/libpc98/biosdisk.c soc2011/shm/sys/boot/pc98/libpc98/biosmem.c soc2011/shm/sys/boot/pc98/libpc98/biossmap.c soc2011/shm/sys/boot/pc98/libpc98/comconsole.c soc2011/shm/sys/boot/pc98/libpc98/i386_module.c soc2011/shm/sys/boot/pc98/libpc98/libpc98.h soc2011/shm/sys/boot/pc98/libpc98/pc98_sys.c soc2011/shm/sys/boot/pc98/libpc98/time.c soc2011/shm/sys/boot/pc98/libpc98/vidconsole.c soc2011/shm/sys/boot/pc98/loader/ soc2011/shm/sys/boot/pc98/loader/Makefile soc2011/shm/sys/boot/pc98/loader/conf.c soc2011/shm/sys/boot/pc98/loader/help.pc98 soc2011/shm/sys/boot/pc98/loader/main.c soc2011/shm/sys/boot/powerpc/ soc2011/shm/sys/boot/powerpc/Makefile soc2011/shm/sys/boot/powerpc/Makefile.inc soc2011/shm/sys/boot/powerpc/boot1.chrp/ soc2011/shm/sys/boot/powerpc/boot1.chrp/Makefile soc2011/shm/sys/boot/powerpc/boot1.chrp/Makefile.hfs soc2011/shm/sys/boot/powerpc/boot1.chrp/boot1.c soc2011/shm/sys/boot/powerpc/boot1.chrp/bootinfo.txt soc2011/shm/sys/boot/powerpc/boot1.chrp/generate-hfs.sh soc2011/shm/sys/boot/powerpc/boot1.chrp/hfs.tmpl.bz2.uu soc2011/shm/sys/boot/powerpc/ofw/ soc2011/shm/sys/boot/powerpc/ofw/Makefile soc2011/shm/sys/boot/powerpc/ofw/conf.c soc2011/shm/sys/boot/powerpc/ofw/help.ofw soc2011/shm/sys/boot/powerpc/ofw/ldscript.powerpc soc2011/shm/sys/boot/powerpc/ofw/metadata.c soc2011/shm/sys/boot/powerpc/ofw/start.c soc2011/shm/sys/boot/powerpc/ofw/version soc2011/shm/sys/boot/powerpc/uboot/ soc2011/shm/sys/boot/powerpc/uboot/Makefile soc2011/shm/sys/boot/powerpc/uboot/conf.c soc2011/shm/sys/boot/powerpc/uboot/help.uboot soc2011/shm/sys/boot/powerpc/uboot/ldscript.powerpc soc2011/shm/sys/boot/powerpc/uboot/start.S soc2011/shm/sys/boot/powerpc/uboot/version soc2011/shm/sys/boot/sparc64/ soc2011/shm/sys/boot/sparc64/Makefile soc2011/shm/sys/boot/sparc64/Makefile.inc soc2011/shm/sys/boot/sparc64/boot1/ soc2011/shm/sys/boot/sparc64/boot1/Makefile soc2011/shm/sys/boot/sparc64/boot1/_start.s soc2011/shm/sys/boot/sparc64/boot1/boot1.c soc2011/shm/sys/boot/sparc64/loader/ soc2011/shm/sys/boot/sparc64/loader/Makefile soc2011/shm/sys/boot/sparc64/loader/help.sparc64 soc2011/shm/sys/boot/sparc64/loader/locore.S soc2011/shm/sys/boot/sparc64/loader/main.c soc2011/shm/sys/boot/sparc64/loader/metadata.c soc2011/shm/sys/boot/sparc64/loader/version soc2011/shm/sys/boot/uboot/ soc2011/shm/sys/boot/uboot/Makefile soc2011/shm/sys/boot/uboot/Makefile.inc soc2011/shm/sys/boot/uboot/common/ soc2011/shm/sys/boot/uboot/common/Makefile.inc soc2011/shm/sys/boot/uboot/common/main.c soc2011/shm/sys/boot/uboot/common/metadata.c soc2011/shm/sys/boot/uboot/lib/ soc2011/shm/sys/boot/uboot/lib/Makefile soc2011/shm/sys/boot/uboot/lib/api_public.h soc2011/shm/sys/boot/uboot/lib/console.c soc2011/shm/sys/boot/uboot/lib/copy.c soc2011/shm/sys/boot/uboot/lib/devicename.c soc2011/shm/sys/boot/uboot/lib/disk.c soc2011/shm/sys/boot/uboot/lib/elf_freebsd.c soc2011/shm/sys/boot/uboot/lib/glue.c soc2011/shm/sys/boot/uboot/lib/glue.h soc2011/shm/sys/boot/uboot/lib/libuboot.h soc2011/shm/sys/boot/uboot/lib/module.c soc2011/shm/sys/boot/uboot/lib/net.c soc2011/shm/sys/boot/uboot/lib/reboot.c soc2011/shm/sys/boot/uboot/lib/time.c soc2011/shm/sys/boot/zfs/ soc2011/shm/sys/boot/zfs/Makefile soc2011/shm/sys/boot/zfs/zfs.c soc2011/shm/sys/boot/zfs/zfs.c.orig soc2011/shm/sys/boot/zfs/zfsimpl.c soc2011/shm/sys/bsm/ soc2011/shm/sys/bsm/audit.h soc2011/shm/sys/bsm/audit_domain.h soc2011/shm/sys/bsm/audit_errno.h soc2011/shm/sys/bsm/audit_fcntl.h soc2011/shm/sys/bsm/audit_internal.h soc2011/shm/sys/bsm/audit_kevents.h soc2011/shm/sys/bsm/audit_record.h soc2011/shm/sys/bsm/audit_socket_type.h soc2011/shm/sys/cam/ soc2011/shm/sys/cam/README.quirks soc2011/shm/sys/cam/ata/ soc2011/shm/sys/cam/ata/ata_all.c soc2011/shm/sys/cam/ata/ata_all.h soc2011/shm/sys/cam/ata/ata_da.c soc2011/shm/sys/cam/ata/ata_pmp.c soc2011/shm/sys/cam/ata/ata_xpt.c soc2011/shm/sys/cam/cam.c soc2011/shm/sys/cam/cam.h soc2011/shm/sys/cam/cam_ccb.h soc2011/shm/sys/cam/cam_debug.h soc2011/shm/sys/cam/cam_periph.c soc2011/shm/sys/cam/cam_periph.h soc2011/shm/sys/cam/cam_queue.c soc2011/shm/sys/cam/cam_queue.h soc2011/shm/sys/cam/cam_sim.c soc2011/shm/sys/cam/cam_sim.h soc2011/shm/sys/cam/cam_xpt.c soc2011/shm/sys/cam/cam_xpt.h soc2011/shm/sys/cam/cam_xpt_internal.h soc2011/shm/sys/cam/cam_xpt_periph.h soc2011/shm/sys/cam/cam_xpt_sim.h soc2011/shm/sys/cam/scsi/ soc2011/shm/sys/cam/scsi/scsi_all.c soc2011/shm/sys/cam/scsi/scsi_all.h soc2011/shm/sys/cam/scsi/scsi_cd.c soc2011/shm/sys/cam/scsi/scsi_cd.h soc2011/shm/sys/cam/scsi/scsi_ch.c soc2011/shm/sys/cam/scsi/scsi_ch.h soc2011/shm/sys/cam/scsi/scsi_da.c soc2011/shm/sys/cam/scsi/scsi_da.h soc2011/shm/sys/cam/scsi/scsi_dvcfg.h soc2011/shm/sys/cam/scsi/scsi_iu.h soc2011/shm/sys/cam/scsi/scsi_low.c soc2011/shm/sys/cam/scsi/scsi_low.h soc2011/shm/sys/cam/scsi/scsi_low_pisa.c soc2011/shm/sys/cam/scsi/scsi_low_pisa.h soc2011/shm/sys/cam/scsi/scsi_message.h soc2011/shm/sys/cam/scsi/scsi_pass.c soc2011/shm/sys/cam/scsi/scsi_pass.h soc2011/shm/sys/cam/scsi/scsi_pt.c soc2011/shm/sys/cam/scsi/scsi_pt.h soc2011/shm/sys/cam/scsi/scsi_sa.c soc2011/shm/sys/cam/scsi/scsi_sa.h soc2011/shm/sys/cam/scsi/scsi_ses.c soc2011/shm/sys/cam/scsi/scsi_ses.h soc2011/shm/sys/cam/scsi/scsi_sg.c soc2011/shm/sys/cam/scsi/scsi_sg.h soc2011/shm/sys/cam/scsi/scsi_targ_bh.c soc2011/shm/sys/cam/scsi/scsi_target.c soc2011/shm/sys/cam/scsi/scsi_targetio.h soc2011/shm/sys/cam/scsi/scsi_xpt.c soc2011/shm/sys/cddl/ soc2011/shm/sys/cddl/boot/ soc2011/shm/sys/cddl/boot/zfs/ soc2011/shm/sys/cddl/boot/zfs/README soc2011/shm/sys/cddl/boot/zfs/fletcher.c soc2011/shm/sys/cddl/boot/zfs/lzjb.c soc2011/shm/sys/cddl/boot/zfs/sha256.c soc2011/shm/sys/cddl/boot/zfs/zfsimpl.h soc2011/shm/sys/cddl/boot/zfs/zfsimpl.h.orig soc2011/shm/sys/cddl/boot/zfs/zfssubr.c soc2011/shm/sys/cddl/compat/ soc2011/shm/sys/cddl/compat/opensolaris/ soc2011/shm/sys/cddl/compat/opensolaris/kern/ soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_acl.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_kobj.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_kstat.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_lookup.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_misc.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_policy.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_policy.c.orig soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_string.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_uio.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_uio.c.orig soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c soc2011/shm/sys/cddl/compat/opensolaris/kern/opensolaris_zone.c soc2011/shm/sys/cddl/compat/opensolaris/rpc/ soc2011/shm/sys/cddl/compat/opensolaris/rpc/xdr.h soc2011/shm/sys/cddl/compat/opensolaris/sys/ soc2011/shm/sys/cddl/compat/opensolaris/sys/acl.h soc2011/shm/sys/cddl/compat/opensolaris/sys/atomic.h soc2011/shm/sys/cddl/compat/opensolaris/sys/bitmap.h soc2011/shm/sys/cddl/compat/opensolaris/sys/byteorder.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cmn_err.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cpupart.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cpuvar.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cpuvar_defs.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cred.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cyclic.h soc2011/shm/sys/cddl/compat/opensolaris/sys/cyclic_impl.h soc2011/shm/sys/cddl/compat/opensolaris/sys/debug.h soc2011/shm/sys/cddl/compat/opensolaris/sys/dirent.h soc2011/shm/sys/cddl/compat/opensolaris/sys/dkio.h soc2011/shm/sys/cddl/compat/opensolaris/sys/dnlc.h soc2011/shm/sys/cddl/compat/opensolaris/sys/elf.h soc2011/shm/sys/cddl/compat/opensolaris/sys/feature_tests.h soc2011/shm/sys/cddl/compat/opensolaris/sys/file.h soc2011/shm/sys/cddl/compat/opensolaris/sys/kcondvar.h soc2011/shm/sys/cddl/compat/opensolaris/sys/kidmap.h soc2011/shm/sys/cddl/compat/opensolaris/sys/kmem.h soc2011/shm/sys/cddl/compat/opensolaris/sys/kobj.h soc2011/shm/sys/cddl/compat/opensolaris/sys/kstat.h soc2011/shm/sys/cddl/compat/opensolaris/sys/lock.h soc2011/shm/sys/cddl/compat/opensolaris/sys/misc.h soc2011/shm/sys/cddl/compat/opensolaris/sys/misc.h.orig soc2011/shm/sys/cddl/compat/opensolaris/sys/mman.h soc2011/shm/sys/cddl/compat/opensolaris/sys/mntent.h soc2011/shm/sys/cddl/compat/opensolaris/sys/mnttab.h soc2011/shm/sys/cddl/compat/opensolaris/sys/modctl.h soc2011/shm/sys/cddl/compat/opensolaris/sys/mount.h soc2011/shm/sys/cddl/compat/opensolaris/sys/mutex.h soc2011/shm/sys/cddl/compat/opensolaris/sys/objfs.h soc2011/shm/sys/cddl/compat/opensolaris/sys/param.h soc2011/shm/sys/cddl/compat/opensolaris/sys/pathname.h soc2011/shm/sys/cddl/compat/opensolaris/sys/pcpu.h soc2011/shm/sys/cddl/compat/opensolaris/sys/policy.h soc2011/shm/sys/cddl/compat/opensolaris/sys/policy.h.orig soc2011/shm/sys/cddl/compat/opensolaris/sys/proc.h soc2011/shm/sys/cddl/compat/opensolaris/sys/random.h soc2011/shm/sys/cddl/compat/opensolaris/sys/refstr.h soc2011/shm/sys/cddl/compat/opensolaris/sys/rwlock.h soc2011/shm/sys/cddl/compat/opensolaris/sys/sdt.h soc2011/shm/sys/cddl/compat/opensolaris/sys/sema.h soc2011/shm/sys/cddl/compat/opensolaris/sys/sid.h soc2011/shm/sys/cddl/compat/opensolaris/sys/sid.h.orig soc2011/shm/sys/cddl/compat/opensolaris/sys/sig.h soc2011/shm/sys/cddl/compat/opensolaris/sys/stat.h soc2011/shm/sys/cddl/compat/opensolaris/sys/string.h soc2011/shm/sys/cddl/compat/opensolaris/sys/sunddi.h soc2011/shm/sys/cddl/compat/opensolaris/sys/sysmacros.h soc2011/shm/sys/cddl/compat/opensolaris/sys/systm.h soc2011/shm/sys/cddl/compat/opensolaris/sys/taskq.h soc2011/shm/sys/cddl/compat/opensolaris/sys/time.h soc2011/shm/sys/cddl/compat/opensolaris/sys/types.h soc2011/shm/sys/cddl/compat/opensolaris/sys/uio.h soc2011/shm/sys/cddl/compat/opensolaris/sys/uio.h.orig soc2011/shm/sys/cddl/compat/opensolaris/sys/varargs.h soc2011/shm/sys/cddl/compat/opensolaris/sys/vfs.h soc2011/shm/sys/cddl/compat/opensolaris/sys/vnode.h soc2011/shm/sys/cddl/compat/opensolaris/sys/vnode.h.orig soc2011/shm/sys/cddl/compat/opensolaris/sys/zone.h soc2011/shm/sys/cddl/contrib/ soc2011/shm/sys/cddl/contrib/opensolaris/ soc2011/shm/sys/cddl/contrib/opensolaris/OPENSOLARIS.LICENSE soc2011/shm/sys/cddl/contrib/opensolaris/common/ soc2011/shm/sys/cddl/contrib/opensolaris/common/acl/ soc2011/shm/sys/cddl/contrib/opensolaris/common/acl/acl_common.c soc2011/shm/sys/cddl/contrib/opensolaris/common/acl/acl_common.h soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/ soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/amd64/ soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/amd64/opensolaris_atomic.S soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/i386/ soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/i386/opensolaris_atomic.S soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/ia64/ soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/ia64/opensolaris_atomic.S soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/sparc64/ soc2011/shm/sys/cddl/contrib/opensolaris/common/atomic/sparc64/opensolaris_atomic.S soc2011/shm/sys/cddl/contrib/opensolaris/common/avl/ soc2011/shm/sys/cddl/contrib/opensolaris/common/avl/avl.c soc2011/shm/sys/cddl/contrib/opensolaris/common/nvpair/ soc2011/shm/sys/cddl/contrib/opensolaris/common/nvpair/nvpair.c soc2011/shm/sys/cddl/contrib/opensolaris/common/nvpair/nvpair_alloc_fixed.c soc2011/shm/sys/cddl/contrib/opensolaris/common/unicode/ soc2011/shm/sys/cddl/contrib/opensolaris/common/unicode/u8_textprep.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/ soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_comutil.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_comutil.h soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_deleg.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_deleg.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_deleg.h soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_deleg.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_namecheck.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_namecheck.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_namecheck.h soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_namecheck.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.h soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zprop_common.c soc2011/shm/sys/cddl/contrib/opensolaris/common/zfs/zprop_common.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/Makefile.files soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/ctf/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/ctf/ctf_mod.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/ctf/ctf_subr.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/lockstat.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/profile.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/sdt_subr.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/dtrace/systrace.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/vnode.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bplist.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_object.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scrub.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scrub.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/fletcher.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/gzip.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lzjb.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/refcount.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sha256.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bplist.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_tx.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_zfetch.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_deleg.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_deleg.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_prop.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_prop.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_synctask.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/refcount.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/rrwlock.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_boot.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/uberblock.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/uberblock_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/uberblock_impl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/unique.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_disk.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_file.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_impl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_leaf.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_context.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_context.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ctldir.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ctldir.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_dir.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_dir.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_fuid.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_fuid.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_rlock.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil_impl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_checksum.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zvol.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/uberblock.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/unique.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs.conf soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_byteswap.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fuid.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fuid.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_checksum.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/os/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/os/callb.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/os/list.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/os/nvpair_alloc_system.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/acl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/acl.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/acl_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/asm_linkage.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/avl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/avl_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/bitmap.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/byteorder.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/callb.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/ccompile.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/cmn_err.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/compress.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/cpupart.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/cpuvar.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/cred.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/ctf.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/errorq.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/extdirent.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fasttrap.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/feature_tests.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fm/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fm/fs/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fm/fs/zfs.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fm/fs/zfs.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fm/protocol.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fm/util.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fs/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/gfs.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/idmap.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/isa_defs.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/list.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/list_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/note.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/nvpair.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/nvpair_impl.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/processor.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/procset.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/synch.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/eventdefs.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/eventdefs.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/sysmacros.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/taskq.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/u8_textprep.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/u8_textprep_data.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/vnode.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/vnode.h.orig soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/sys/zmod.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/adler32.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/crc32.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/deflate.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/deflate.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inffast.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inffast.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inffixed.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inflate.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inflate.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inftrees.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/inftrees.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/opensolaris_crc32.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/trees.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/zconf.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/zlib.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/zmod.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/zmod_subr.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/zutil.c soc2011/shm/sys/cddl/contrib/opensolaris/uts/common/zmod/zutil.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/intel/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/intel/sys/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/intel/sys/fasttrap_isa.h soc2011/shm/sys/cddl/contrib/opensolaris/uts/sparc/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/sparc/sys/ soc2011/shm/sys/cddl/contrib/opensolaris/uts/sparc/sys/fasttrap_isa.h soc2011/shm/sys/cddl/dev/ soc2011/shm/sys/cddl/dev/cyclic/ soc2011/shm/sys/cddl/dev/cyclic/amd64/ soc2011/shm/sys/cddl/dev/cyclic/amd64/cyclic_machdep.c soc2011/shm/sys/cddl/dev/cyclic/cyclic.c soc2011/shm/sys/cddl/dev/cyclic/cyclic_test.c soc2011/shm/sys/cddl/dev/cyclic/i386/ soc2011/shm/sys/cddl/dev/cyclic/i386/cyclic_machdep.c soc2011/shm/sys/cddl/dev/dtmalloc/ soc2011/shm/sys/cddl/dev/dtmalloc/dtmalloc.c soc2011/shm/sys/cddl/dev/dtrace/ soc2011/shm/sys/cddl/dev/dtrace/amd64/ soc2011/shm/sys/cddl/dev/dtrace/amd64/dis_tables.c soc2011/shm/sys/cddl/dev/dtrace/amd64/dis_tables.h soc2011/shm/sys/cddl/dev/dtrace/amd64/dtrace_asm.S soc2011/shm/sys/cddl/dev/dtrace/amd64/dtrace_isa.c soc2011/shm/sys/cddl/dev/dtrace/amd64/dtrace_subr.c soc2011/shm/sys/cddl/dev/dtrace/amd64/instr_size.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_anon.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_cddl.h soc2011/shm/sys/cddl/dev/dtrace/dtrace_clone.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_debug.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_hacks.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_ioctl.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_load.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_modevent.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_sysctl.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_test.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_unload.c soc2011/shm/sys/cddl/dev/dtrace/dtrace_vtime.c soc2011/shm/sys/cddl/dev/dtrace/i386/ soc2011/shm/sys/cddl/dev/dtrace/i386/dis_tables.c soc2011/shm/sys/cddl/dev/dtrace/i386/dis_tables.h soc2011/shm/sys/cddl/dev/dtrace/i386/dtrace_asm.S soc2011/shm/sys/cddl/dev/dtrace/i386/dtrace_isa.c soc2011/shm/sys/cddl/dev/dtrace/i386/dtrace_subr.c soc2011/shm/sys/cddl/dev/dtrace/i386/instr_size.c soc2011/shm/sys/cddl/dev/fbt/ soc2011/shm/sys/cddl/dev/fbt/fbt.c soc2011/shm/sys/cddl/dev/lockstat/ soc2011/shm/sys/cddl/dev/lockstat/lockstat.c soc2011/shm/sys/cddl/dev/profile/ soc2011/shm/sys/cddl/dev/profile/profile.c soc2011/shm/sys/cddl/dev/prototype.c soc2011/shm/sys/cddl/dev/sdt/ soc2011/shm/sys/cddl/dev/sdt/sdt.c soc2011/shm/sys/cddl/dev/systrace/ soc2011/shm/sys/cddl/dev/systrace/systrace.c soc2011/shm/sys/compat/ soc2011/shm/sys/compat/freebsd32/ soc2011/shm/sys/compat/freebsd32/Makefile soc2011/shm/sys/compat/freebsd32/freebsd32.h soc2011/shm/sys/compat/freebsd32/freebsd32_ioctl.c soc2011/shm/sys/compat/freebsd32/freebsd32_ioctl.h soc2011/shm/sys/compat/freebsd32/freebsd32_ipc.h soc2011/shm/sys/compat/freebsd32/freebsd32_misc.c soc2011/shm/sys/compat/freebsd32/freebsd32_proto.h soc2011/shm/sys/compat/freebsd32/freebsd32_signal.h soc2011/shm/sys/compat/freebsd32/freebsd32_syscall.h soc2011/shm/sys/compat/freebsd32/freebsd32_syscalls.c soc2011/shm/sys/compat/freebsd32/freebsd32_sysent.c soc2011/shm/sys/compat/freebsd32/freebsd32_util.h soc2011/shm/sys/compat/freebsd32/syscalls.conf soc2011/shm/sys/compat/freebsd32/syscalls.master soc2011/shm/sys/compat/ia32/ soc2011/shm/sys/compat/ia32/ia32_genassym.c soc2011/shm/sys/compat/ia32/ia32_reg.h soc2011/shm/sys/compat/ia32/ia32_signal.h soc2011/shm/sys/compat/ia32/ia32_sysvec.c soc2011/shm/sys/compat/ia32/ia32_util.h soc2011/shm/sys/compat/linprocfs/ soc2011/shm/sys/compat/linprocfs/linprocfs.c soc2011/shm/sys/compat/linsysfs/ soc2011/shm/sys/compat/linsysfs/linsysfs.c soc2011/shm/sys/compat/linux/ soc2011/shm/sys/compat/linux/linux_emul.c soc2011/shm/sys/compat/linux/linux_emul.h soc2011/shm/sys/compat/linux/linux_file.c soc2011/shm/sys/compat/linux/linux_file.h soc2011/shm/sys/compat/linux/linux_futex.c soc2011/shm/sys/compat/linux/linux_futex.h soc2011/shm/sys/compat/linux/linux_getcwd.c soc2011/shm/sys/compat/linux/linux_ioctl.c soc2011/shm/sys/compat/linux/linux_ioctl.h soc2011/shm/sys/compat/linux/linux_ipc.c soc2011/shm/sys/compat/linux/linux_ipc.h soc2011/shm/sys/compat/linux/linux_mib.c soc2011/shm/sys/compat/linux/linux_mib.h soc2011/shm/sys/compat/linux/linux_misc.c soc2011/shm/sys/compat/linux/linux_misc.h soc2011/shm/sys/compat/linux/linux_signal.c soc2011/shm/sys/compat/linux/linux_signal.h soc2011/shm/sys/compat/linux/linux_socket.c soc2011/shm/sys/compat/linux/linux_socket.h soc2011/shm/sys/compat/linux/linux_stats.c soc2011/shm/sys/compat/linux/linux_sysctl.c soc2011/shm/sys/compat/linux/linux_sysproto.h soc2011/shm/sys/compat/linux/linux_time.c soc2011/shm/sys/compat/linux/linux_uid16.c soc2011/shm/sys/compat/linux/linux_util.c soc2011/shm/sys/compat/linux/linux_util.h soc2011/shm/sys/compat/ndis/ soc2011/shm/sys/compat/ndis/cfg_var.h soc2011/shm/sys/compat/ndis/hal_var.h soc2011/shm/sys/compat/ndis/kern_ndis.c soc2011/shm/sys/compat/ndis/kern_windrv.c soc2011/shm/sys/compat/ndis/ndis_var.h soc2011/shm/sys/compat/ndis/ntoskrnl_var.h soc2011/shm/sys/compat/ndis/pe_var.h soc2011/shm/sys/compat/ndis/resource_var.h soc2011/shm/sys/compat/ndis/subr_hal.c soc2011/shm/sys/compat/ndis/subr_ndis.c soc2011/shm/sys/compat/ndis/subr_ntoskrnl.c soc2011/shm/sys/compat/ndis/subr_pe.c soc2011/shm/sys/compat/ndis/subr_usbd.c soc2011/shm/sys/compat/ndis/usbd_var.h soc2011/shm/sys/compat/ndis/winx32_wrap.S soc2011/shm/sys/compat/ndis/winx64_wrap.S soc2011/shm/sys/compat/netbsd/ soc2011/shm/sys/compat/netbsd/dvcfg.h soc2011/shm/sys/compat/netbsd/physio_proc.h soc2011/shm/sys/compat/svr4/ soc2011/shm/sys/compat/svr4/Makefile soc2011/shm/sys/compat/svr4/imgact_svr4.c soc2011/shm/sys/compat/svr4/svr4.h soc2011/shm/sys/compat/svr4/svr4_acl.h soc2011/shm/sys/compat/svr4/svr4_dirent.h soc2011/shm/sys/compat/svr4/svr4_errno.h soc2011/shm/sys/compat/svr4/svr4_exec.h soc2011/shm/sys/compat/svr4/svr4_fcntl.c soc2011/shm/sys/compat/svr4/svr4_fcntl.h soc2011/shm/sys/compat/svr4/svr4_filio.c soc2011/shm/sys/compat/svr4/svr4_filio.h soc2011/shm/sys/compat/svr4/svr4_fuser.h soc2011/shm/sys/compat/svr4/svr4_hrt.h soc2011/shm/sys/compat/svr4/svr4_ioctl.c soc2011/shm/sys/compat/svr4/svr4_ioctl.h soc2011/shm/sys/compat/svr4/svr4_ipc.c soc2011/shm/sys/compat/svr4/svr4_ipc.h soc2011/shm/sys/compat/svr4/svr4_misc.c soc2011/shm/sys/compat/svr4/svr4_mman.h soc2011/shm/sys/compat/svr4/svr4_proto.h soc2011/shm/sys/compat/svr4/svr4_resource.c soc2011/shm/sys/compat/svr4/svr4_resource.h soc2011/shm/sys/compat/svr4/svr4_siginfo.h soc2011/shm/sys/compat/svr4/svr4_signal.c soc2011/shm/sys/compat/svr4/svr4_signal.h soc2011/shm/sys/compat/svr4/svr4_socket.c soc2011/shm/sys/compat/svr4/svr4_socket.h soc2011/shm/sys/compat/svr4/svr4_sockio.c soc2011/shm/sys/compat/svr4/svr4_sockio.h soc2011/shm/sys/compat/svr4/svr4_sockmod.h soc2011/shm/sys/compat/svr4/svr4_stat.c soc2011/shm/sys/compat/svr4/svr4_stat.h soc2011/shm/sys/compat/svr4/svr4_statvfs.h soc2011/shm/sys/compat/svr4/svr4_stream.c soc2011/shm/sys/compat/svr4/svr4_stropts.h soc2011/shm/sys/compat/svr4/svr4_syscall.h soc2011/shm/sys/compat/svr4/svr4_syscallnames.c soc2011/shm/sys/compat/svr4/svr4_sysconfig.h soc2011/shm/sys/compat/svr4/svr4_sysent.c soc2011/shm/sys/compat/svr4/svr4_systeminfo.h soc2011/shm/sys/compat/svr4/svr4_sysvec.c soc2011/shm/sys/compat/svr4/svr4_termios.c soc2011/shm/sys/compat/svr4/svr4_termios.h soc2011/shm/sys/compat/svr4/svr4_time.h soc2011/shm/sys/compat/svr4/svr4_timod.h soc2011/shm/sys/compat/svr4/svr4_types.h soc2011/shm/sys/compat/svr4/svr4_ucontext.h soc2011/shm/sys/compat/svr4/svr4_ulimit.h soc2011/shm/sys/compat/svr4/svr4_ustat.h soc2011/shm/sys/compat/svr4/svr4_util.h soc2011/shm/sys/compat/svr4/svr4_utsname.h soc2011/shm/sys/compat/svr4/svr4_wait.h soc2011/shm/sys/compat/svr4/syscalls.conf soc2011/shm/sys/compat/svr4/syscalls.master soc2011/shm/sys/compat/x86bios/ soc2011/shm/sys/compat/x86bios/x86bios.c soc2011/shm/sys/compat/x86bios/x86bios.h soc2011/shm/sys/compat/x86bios/x86bios_alloc.c soc2011/shm/sys/conf/ soc2011/shm/sys/conf/Makefile.amd64 soc2011/shm/sys/conf/Makefile.arm soc2011/shm/sys/conf/Makefile.i386 soc2011/shm/sys/conf/Makefile.ia64 soc2011/shm/sys/conf/Makefile.mips soc2011/shm/sys/conf/Makefile.pc98 soc2011/shm/sys/conf/Makefile.powerpc soc2011/shm/sys/conf/Makefile.sparc64 soc2011/shm/sys/conf/Makefile.sun4v soc2011/shm/sys/conf/NOTES soc2011/shm/sys/conf/defines soc2011/shm/sys/conf/files soc2011/shm/sys/conf/files.amd64 soc2011/shm/sys/conf/files.arm soc2011/shm/sys/conf/files.i386 soc2011/shm/sys/conf/files.ia64 soc2011/shm/sys/conf/files.mips soc2011/shm/sys/conf/files.pc98 soc2011/shm/sys/conf/files.powerpc soc2011/shm/sys/conf/files.sparc64 soc2011/shm/sys/conf/files.sun4v soc2011/shm/sys/conf/kern.mk soc2011/shm/sys/conf/kern.post.mk soc2011/shm/sys/conf/kern.pre.mk soc2011/shm/sys/conf/kmod.mk soc2011/shm/sys/conf/kmod_syms.awk soc2011/shm/sys/conf/ldscript.amd64 soc2011/shm/sys/conf/ldscript.arm soc2011/shm/sys/conf/ldscript.i386 soc2011/shm/sys/conf/ldscript.ia64 soc2011/shm/sys/conf/ldscript.mips soc2011/shm/sys/conf/ldscript.mips.cfe soc2011/shm/sys/conf/ldscript.powerpc soc2011/shm/sys/conf/ldscript.sparc64 soc2011/shm/sys/conf/makeLINT.mk soc2011/shm/sys/conf/makeLINT.sed soc2011/shm/sys/conf/newvers.sh soc2011/shm/sys/conf/options soc2011/shm/sys/conf/options.amd64 soc2011/shm/sys/conf/options.arm soc2011/shm/sys/conf/options.i386 soc2011/shm/sys/conf/options.ia64 soc2011/shm/sys/conf/options.mips soc2011/shm/sys/conf/options.pc98 soc2011/shm/sys/conf/options.powerpc soc2011/shm/sys/conf/options.sparc64 soc2011/shm/sys/conf/options.sun4v soc2011/shm/sys/conf/systags.sh soc2011/shm/sys/contrib/ soc2011/shm/sys/contrib/altq/ soc2011/shm/sys/contrib/altq/altq/ soc2011/shm/sys/contrib/altq/altq/altq.h soc2011/shm/sys/contrib/altq/altq/altq_cbq.c soc2011/shm/sys/contrib/altq/altq/altq_cbq.h soc2011/shm/sys/contrib/altq/altq/altq_cdnr.c soc2011/shm/sys/contrib/altq/altq/altq_cdnr.h soc2011/shm/sys/contrib/altq/altq/altq_classq.h soc2011/shm/sys/contrib/altq/altq/altq_hfsc.c soc2011/shm/sys/contrib/altq/altq/altq_hfsc.h soc2011/shm/sys/contrib/altq/altq/altq_priq.c soc2011/shm/sys/contrib/altq/altq/altq_priq.h soc2011/shm/sys/contrib/altq/altq/altq_red.c soc2011/shm/sys/contrib/altq/altq/altq_red.h soc2011/shm/sys/contrib/altq/altq/altq_rio.c soc2011/shm/sys/contrib/altq/altq/altq_rio.h soc2011/shm/sys/contrib/altq/altq/altq_rmclass.c soc2011/shm/sys/contrib/altq/altq/altq_rmclass.h soc2011/shm/sys/contrib/altq/altq/altq_rmclass_debug.h soc2011/shm/sys/contrib/altq/altq/altq_subr.c soc2011/shm/sys/contrib/altq/altq/altq_var.h soc2011/shm/sys/contrib/altq/altq/altqconf.h soc2011/shm/sys/contrib/altq/altq/if_altq.h soc2011/shm/sys/contrib/dev/ soc2011/shm/sys/contrib/dev/acpica/ soc2011/shm/sys/contrib/dev/acpica/acpica_prep.sh (contents, props changed) soc2011/shm/sys/contrib/dev/acpica/changes.txt soc2011/shm/sys/contrib/dev/acpica/common/ soc2011/shm/sys/contrib/dev/acpica/common/adfile.c soc2011/shm/sys/contrib/dev/acpica/common/adisasm.c soc2011/shm/sys/contrib/dev/acpica/common/adwalk.c soc2011/shm/sys/contrib/dev/acpica/common/dmextern.c soc2011/shm/sys/contrib/dev/acpica/common/dmrestag.c soc2011/shm/sys/contrib/dev/acpica/common/dmtable.c soc2011/shm/sys/contrib/dev/acpica/common/dmtbdump.c soc2011/shm/sys/contrib/dev/acpica/common/dmtbinfo.c soc2011/shm/sys/contrib/dev/acpica/common/getopt.c soc2011/shm/sys/contrib/dev/acpica/compiler/ soc2011/shm/sys/contrib/dev/acpica/compiler/aslanalyze.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslcodegen.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslcompile.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslcompiler.h soc2011/shm/sys/contrib/dev/acpica/compiler/aslcompiler.l soc2011/shm/sys/contrib/dev/acpica/compiler/aslcompiler.y soc2011/shm/sys/contrib/dev/acpica/compiler/asldefine.h soc2011/shm/sys/contrib/dev/acpica/compiler/aslerror.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslfiles.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslfold.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslglobal.h soc2011/shm/sys/contrib/dev/acpica/compiler/asllength.c soc2011/shm/sys/contrib/dev/acpica/compiler/asllisting.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslload.c soc2011/shm/sys/contrib/dev/acpica/compiler/asllookup.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslmain.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslmap.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslopcodes.c soc2011/shm/sys/contrib/dev/acpica/compiler/asloperands.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslopt.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslpredef.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslresource.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslrestype1.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslrestype2.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslstartup.c soc2011/shm/sys/contrib/dev/acpica/compiler/aslstubs.c soc2011/shm/sys/contrib/dev/acpica/compiler/asltransform.c soc2011/shm/sys/contrib/dev/acpica/compiler/asltree.c soc2011/shm/sys/contrib/dev/acpica/compiler/asltypes.h soc2011/shm/sys/contrib/dev/acpica/compiler/aslutils.c soc2011/shm/sys/contrib/dev/acpica/debugger/ soc2011/shm/sys/contrib/dev/acpica/debugger/dbcmds.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbdisply.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbexec.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbfileio.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbhistry.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbinput.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbstats.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbutils.c soc2011/shm/sys/contrib/dev/acpica/debugger/dbxface.c soc2011/shm/sys/contrib/dev/acpica/disassembler/ soc2011/shm/sys/contrib/dev/acpica/disassembler/dmbuffer.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmnames.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmobject.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmopcode.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmresrc.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmresrcl.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmresrcs.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmutils.c soc2011/shm/sys/contrib/dev/acpica/disassembler/dmwalk.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/ soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsfield.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsinit.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsmethod.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsmthdat.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsobject.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsopcode.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dsutils.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dswexec.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dswload.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dswscope.c soc2011/shm/sys/contrib/dev/acpica/dispatcher/dswstate.c soc2011/shm/sys/contrib/dev/acpica/events/ soc2011/shm/sys/contrib/dev/acpica/events/evevent.c soc2011/shm/sys/contrib/dev/acpica/events/evgpe.c soc2011/shm/sys/contrib/dev/acpica/events/evgpeblk.c soc2011/shm/sys/contrib/dev/acpica/events/evmisc.c soc2011/shm/sys/contrib/dev/acpica/events/evregion.c soc2011/shm/sys/contrib/dev/acpica/events/evrgnini.c soc2011/shm/sys/contrib/dev/acpica/events/evsci.c soc2011/shm/sys/contrib/dev/acpica/events/evxface.c soc2011/shm/sys/contrib/dev/acpica/events/evxfevnt.c soc2011/shm/sys/contrib/dev/acpica/events/evxfregn.c soc2011/shm/sys/contrib/dev/acpica/executer/ soc2011/shm/sys/contrib/dev/acpica/executer/exconfig.c soc2011/shm/sys/contrib/dev/acpica/executer/exconvrt.c soc2011/shm/sys/contrib/dev/acpica/executer/excreate.c soc2011/shm/sys/contrib/dev/acpica/executer/exdebug.c soc2011/shm/sys/contrib/dev/acpica/executer/exdump.c soc2011/shm/sys/contrib/dev/acpica/executer/exfield.c soc2011/shm/sys/contrib/dev/acpica/executer/exfldio.c soc2011/shm/sys/contrib/dev/acpica/executer/exmisc.c soc2011/shm/sys/contrib/dev/acpica/executer/exmutex.c soc2011/shm/sys/contrib/dev/acpica/executer/exnames.c soc2011/shm/sys/contrib/dev/acpica/executer/exoparg1.c soc2011/shm/sys/contrib/dev/acpica/executer/exoparg2.c soc2011/shm/sys/contrib/dev/acpica/executer/exoparg3.c soc2011/shm/sys/contrib/dev/acpica/executer/exoparg6.c soc2011/shm/sys/contrib/dev/acpica/executer/exprep.c soc2011/shm/sys/contrib/dev/acpica/executer/exregion.c soc2011/shm/sys/contrib/dev/acpica/executer/exresnte.c soc2011/shm/sys/contrib/dev/acpica/executer/exresolv.c soc2011/shm/sys/contrib/dev/acpica/executer/exresop.c soc2011/shm/sys/contrib/dev/acpica/executer/exstore.c soc2011/shm/sys/contrib/dev/acpica/executer/exstoren.c soc2011/shm/sys/contrib/dev/acpica/executer/exstorob.c soc2011/shm/sys/contrib/dev/acpica/executer/exsystem.c soc2011/shm/sys/contrib/dev/acpica/executer/exutils.c soc2011/shm/sys/contrib/dev/acpica/hardware/ soc2011/shm/sys/contrib/dev/acpica/hardware/hwacpi.c soc2011/shm/sys/contrib/dev/acpica/hardware/hwgpe.c soc2011/shm/sys/contrib/dev/acpica/hardware/hwregs.c soc2011/shm/sys/contrib/dev/acpica/hardware/hwsleep.c soc2011/shm/sys/contrib/dev/acpica/hardware/hwtimer.c soc2011/shm/sys/contrib/dev/acpica/hardware/hwvalid.c soc2011/shm/sys/contrib/dev/acpica/hardware/hwxface.c soc2011/shm/sys/contrib/dev/acpica/include/ soc2011/shm/sys/contrib/dev/acpica/include/acapps.h soc2011/shm/sys/contrib/dev/acpica/include/accommon.h soc2011/shm/sys/contrib/dev/acpica/include/acconfig.h soc2011/shm/sys/contrib/dev/acpica/include/acdebug.h soc2011/shm/sys/contrib/dev/acpica/include/acdisasm.h soc2011/shm/sys/contrib/dev/acpica/include/acdispat.h soc2011/shm/sys/contrib/dev/acpica/include/acevents.h soc2011/shm/sys/contrib/dev/acpica/include/acexcep.h soc2011/shm/sys/contrib/dev/acpica/include/acglobal.h soc2011/shm/sys/contrib/dev/acpica/include/achware.h soc2011/shm/sys/contrib/dev/acpica/include/acinterp.h soc2011/shm/sys/contrib/dev/acpica/include/aclocal.h soc2011/shm/sys/contrib/dev/acpica/include/acmacros.h soc2011/shm/sys/contrib/dev/acpica/include/acnames.h soc2011/shm/sys/contrib/dev/acpica/include/acnamesp.h soc2011/shm/sys/contrib/dev/acpica/include/acobject.h soc2011/shm/sys/contrib/dev/acpica/include/acopcode.h soc2011/shm/sys/contrib/dev/acpica/include/acoutput.h soc2011/shm/sys/contrib/dev/acpica/include/acparser.h soc2011/shm/sys/contrib/dev/acpica/include/acpi.h soc2011/shm/sys/contrib/dev/acpica/include/acpiosxf.h soc2011/shm/sys/contrib/dev/acpica/include/acpixf.h soc2011/shm/sys/contrib/dev/acpica/include/acpredef.h soc2011/shm/sys/contrib/dev/acpica/include/acresrc.h soc2011/shm/sys/contrib/dev/acpica/include/acrestyp.h soc2011/shm/sys/contrib/dev/acpica/include/acstruct.h soc2011/shm/sys/contrib/dev/acpica/include/actables.h soc2011/shm/sys/contrib/dev/acpica/include/actbl.h soc2011/shm/sys/contrib/dev/acpica/include/actbl1.h soc2011/shm/sys/contrib/dev/acpica/include/actbl2.h soc2011/shm/sys/contrib/dev/acpica/include/actypes.h soc2011/shm/sys/contrib/dev/acpica/include/acutils.h soc2011/shm/sys/contrib/dev/acpica/include/amlcode.h soc2011/shm/sys/contrib/dev/acpica/include/amlresrc.h soc2011/shm/sys/contrib/dev/acpica/include/platform/ soc2011/shm/sys/contrib/dev/acpica/include/platform/acenv.h soc2011/shm/sys/contrib/dev/acpica/include/platform/acfreebsd.h soc2011/shm/sys/contrib/dev/acpica/include/platform/acgcc.h soc2011/shm/sys/contrib/dev/acpica/namespace/ soc2011/shm/sys/contrib/dev/acpica/namespace/nsaccess.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsalloc.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsdump.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsdumpdv.c soc2011/shm/sys/contrib/dev/acpica/namespace/nseval.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsinit.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsload.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsnames.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsobject.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsparse.c soc2011/shm/sys/contrib/dev/acpica/namespace/nspredef.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsrepair.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsrepair2.c soc2011/shm/sys/contrib/dev/acpica/namespace/nssearch.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsutils.c soc2011/shm/sys/contrib/dev/acpica/namespace/nswalk.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsxfeval.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsxfname.c soc2011/shm/sys/contrib/dev/acpica/namespace/nsxfobj.c soc2011/shm/sys/contrib/dev/acpica/osunixxf.c soc2011/shm/sys/contrib/dev/acpica/parser/ soc2011/shm/sys/contrib/dev/acpica/parser/psargs.c soc2011/shm/sys/contrib/dev/acpica/parser/psloop.c soc2011/shm/sys/contrib/dev/acpica/parser/psopcode.c soc2011/shm/sys/contrib/dev/acpica/parser/psparse.c soc2011/shm/sys/contrib/dev/acpica/parser/psscope.c soc2011/shm/sys/contrib/dev/acpica/parser/pstree.c soc2011/shm/sys/contrib/dev/acpica/parser/psutils.c soc2011/shm/sys/contrib/dev/acpica/parser/pswalk.c soc2011/shm/sys/contrib/dev/acpica/parser/psxface.c soc2011/shm/sys/contrib/dev/acpica/resources/ soc2011/shm/sys/contrib/dev/acpica/resources/rsaddr.c soc2011/shm/sys/contrib/dev/acpica/resources/rscalc.c soc2011/shm/sys/contrib/dev/acpica/resources/rscreate.c soc2011/shm/sys/contrib/dev/acpica/resources/rsdump.c soc2011/shm/sys/contrib/dev/acpica/resources/rsinfo.c soc2011/shm/sys/contrib/dev/acpica/resources/rsio.c soc2011/shm/sys/contrib/dev/acpica/resources/rsirq.c soc2011/shm/sys/contrib/dev/acpica/resources/rslist.c soc2011/shm/sys/contrib/dev/acpica/resources/rsmemory.c soc2011/shm/sys/contrib/dev/acpica/resources/rsmisc.c soc2011/shm/sys/contrib/dev/acpica/resources/rsutils.c soc2011/shm/sys/contrib/dev/acpica/resources/rsxface.c soc2011/shm/sys/contrib/dev/acpica/tables/ soc2011/shm/sys/contrib/dev/acpica/tables/tbfadt.c soc2011/shm/sys/contrib/dev/acpica/tables/tbfind.c soc2011/shm/sys/contrib/dev/acpica/tables/tbinstal.c soc2011/shm/sys/contrib/dev/acpica/tables/tbutils.c soc2011/shm/sys/contrib/dev/acpica/tables/tbxface.c soc2011/shm/sys/contrib/dev/acpica/tables/tbxfroot.c soc2011/shm/sys/contrib/dev/acpica/tools/ soc2011/shm/sys/contrib/dev/acpica/tools/acpiexec/ soc2011/shm/sys/contrib/dev/acpica/tools/acpiexec/aecommon.h soc2011/shm/sys/contrib/dev/acpica/utilities/ soc2011/shm/sys/contrib/dev/acpica/utilities/utalloc.c soc2011/shm/sys/contrib/dev/acpica/utilities/utcache.c soc2011/shm/sys/contrib/dev/acpica/utilities/utcopy.c soc2011/shm/sys/contrib/dev/acpica/utilities/utdebug.c soc2011/shm/sys/contrib/dev/acpica/utilities/utdelete.c soc2011/shm/sys/contrib/dev/acpica/utilities/uteval.c soc2011/shm/sys/contrib/dev/acpica/utilities/utglobal.c soc2011/shm/sys/contrib/dev/acpica/utilities/utids.c soc2011/shm/sys/contrib/dev/acpica/utilities/utinit.c soc2011/shm/sys/contrib/dev/acpica/utilities/utlock.c soc2011/shm/sys/contrib/dev/acpica/utilities/utmath.c soc2011/shm/sys/contrib/dev/acpica/utilities/utmisc.c soc2011/shm/sys/contrib/dev/acpica/utilities/utmutex.c soc2011/shm/sys/contrib/dev/acpica/utilities/utobject.c soc2011/shm/sys/contrib/dev/acpica/utilities/utresrc.c soc2011/shm/sys/contrib/dev/acpica/utilities/utstate.c soc2011/shm/sys/contrib/dev/acpica/utilities/uttrack.c soc2011/shm/sys/contrib/dev/acpica/utilities/utxface.c soc2011/shm/sys/contrib/dev/ipw/ soc2011/shm/sys/contrib/dev/ipw/LICENSE soc2011/shm/sys/contrib/dev/ipw/ipw2100-1.3-i.fw.uu soc2011/shm/sys/contrib/dev/ipw/ipw2100-1.3-p.fw.uu soc2011/shm/sys/contrib/dev/ipw/ipw2100-1.3.fw.uu soc2011/shm/sys/contrib/dev/iwi/ soc2011/shm/sys/contrib/dev/iwi/LICENSE soc2011/shm/sys/contrib/dev/iwi/Makefile soc2011/shm/sys/contrib/dev/iwi/ipw2200-bss.fw.uu soc2011/shm/sys/contrib/dev/iwi/ipw2200-ibss.fw.uu soc2011/shm/sys/contrib/dev/iwi/ipw2200-sniffer.fw.uu soc2011/shm/sys/contrib/dev/iwn/ soc2011/shm/sys/contrib/dev/iwn/LICENSE soc2011/shm/sys/contrib/dev/iwn/iwlwifi-1000-128.50.3.1.fw.uu soc2011/shm/sys/contrib/dev/iwn/iwlwifi-4965-228.61.2.24.fw.uu soc2011/shm/sys/contrib/dev/iwn/iwlwifi-5000-8.24.2.12.fw.uu soc2011/shm/sys/contrib/dev/iwn/iwlwifi-5150-8.24.2.2.fw.uu soc2011/shm/sys/contrib/dev/iwn/iwlwifi-6000-9.193.4.1.fw.uu soc2011/shm/sys/contrib/dev/mwl/ soc2011/shm/sys/contrib/dev/mwl/LICENSE soc2011/shm/sys/contrib/dev/mwl/Makefile soc2011/shm/sys/contrib/dev/mwl/mw88W8363.fw.uu soc2011/shm/sys/contrib/dev/mwl/mwlboot.fw.uu soc2011/shm/sys/contrib/dev/npe/ soc2011/shm/sys/contrib/dev/npe/IxNpeMicrocode.dat.uu soc2011/shm/sys/contrib/dev/npe/LICENSE soc2011/shm/sys/contrib/dev/nve/ soc2011/shm/sys/contrib/dev/nve/adapter.h soc2011/shm/sys/contrib/dev/nve/amd64/ soc2011/shm/sys/contrib/dev/nve/amd64/nvenetlib.README soc2011/shm/sys/contrib/dev/nve/amd64/nvenetlib.o.bz2.uu soc2011/shm/sys/contrib/dev/nve/basetype.h soc2011/shm/sys/contrib/dev/nve/drvinfo.h soc2011/shm/sys/contrib/dev/nve/i386/ soc2011/shm/sys/contrib/dev/nve/i386/nvenetlib.README soc2011/shm/sys/contrib/dev/nve/i386/nvenetlib.o.bz2.uu soc2011/shm/sys/contrib/dev/nve/nvenet_version.h soc2011/shm/sys/contrib/dev/nve/os.h soc2011/shm/sys/contrib/dev/nve/phy.h soc2011/shm/sys/contrib/dev/ral/ soc2011/shm/sys/contrib/dev/ral/LICENSE soc2011/shm/sys/contrib/dev/ral/Makefile soc2011/shm/sys/contrib/dev/ral/rt2561.fw.uu soc2011/shm/sys/contrib/dev/ral/rt2561s.fw.uu soc2011/shm/sys/contrib/dev/ral/rt2661.fw.uu soc2011/shm/sys/contrib/dev/ral/rt2661_ucode.h soc2011/shm/sys/contrib/dev/ral/rt2860.fw.uu soc2011/shm/sys/contrib/dev/run/ soc2011/shm/sys/contrib/dev/run/LICENSE soc2011/shm/sys/contrib/dev/run/rt2870.fw.uu soc2011/shm/sys/contrib/dev/uath/ soc2011/shm/sys/contrib/dev/uath/ar5523.bin.uu soc2011/shm/sys/contrib/dev/wpi/ soc2011/shm/sys/contrib/dev/wpi/LICENSE soc2011/shm/sys/contrib/dev/wpi/iwlwifi-3945-2.14.4.fw.uu soc2011/shm/sys/contrib/ia64/ soc2011/shm/sys/contrib/ia64/libuwx/ soc2011/shm/sys/contrib/ia64/libuwx/src/ soc2011/shm/sys/contrib/ia64/libuwx/src/Makefile soc2011/shm/sys/contrib/ia64/libuwx/src/uwx.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_bstream.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_bstream.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_context.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_context.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_env.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_env.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_scoreboard.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_scoreboard.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_self.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_self.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_self_context.s soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_self_info.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_step.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_step.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_str.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_str.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_swap.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_swap.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_symbols.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_symbols.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_trace.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_trace.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_uinfo.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_uinfo.h soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_utable.c soc2011/shm/sys/contrib/ia64/libuwx/src/uwx_utable.h soc2011/shm/sys/contrib/ia64/libuwx/test/ soc2011/shm/sys/contrib/ia64/libuwx/test/Makefile soc2011/shm/sys/contrib/ia64/libuwx/test/dump_context.c soc2011/shm/sys/contrib/ia64/libuwx/test/dumpmyself.c soc2011/shm/sys/contrib/ia64/libuwx/test/primeregs.s soc2011/shm/sys/contrib/ipfilter/ soc2011/shm/sys/contrib/ipfilter/netinet/ soc2011/shm/sys/contrib/ipfilter/netinet/IPFILTER.LICENCE soc2011/shm/sys/contrib/ipfilter/netinet/QNX_OCL.txt soc2011/shm/sys/contrib/ipfilter/netinet/fil.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_auth.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_auth.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_compat.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_fil.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_frag.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_frag.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_htable.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_htable.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_irc_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_log.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_lookup.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_lookup.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_nat.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_nat.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_pool.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_pool.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_pptp_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_proxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_proxy.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_rpcb_pxy.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_rules.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_rules.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_scan.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_scan.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_state.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_state.h soc2011/shm/sys/contrib/ipfilter/netinet/ip_sync.c soc2011/shm/sys/contrib/ipfilter/netinet/ip_sync.h soc2011/shm/sys/contrib/ipfilter/netinet/ipl.h soc2011/shm/sys/contrib/ipfilter/netinet/mlfk_ipl.c soc2011/shm/sys/contrib/ngatm/ soc2011/shm/sys/contrib/ngatm/FREEBSD-Xlist soc2011/shm/sys/contrib/ngatm/FREEBSD-upgrade soc2011/shm/sys/contrib/ngatm/netnatm/ soc2011/shm/sys/contrib/ngatm/netnatm/addr.h soc2011/shm/sys/contrib/ngatm/netnatm/api/ soc2011/shm/sys/contrib/ngatm/netnatm/api/atmapi.h soc2011/shm/sys/contrib/ngatm/netnatm/api/cc_conn.c soc2011/shm/sys/contrib/ngatm/netnatm/api/cc_data.c soc2011/shm/sys/contrib/ngatm/netnatm/api/cc_dump.c soc2011/shm/sys/contrib/ngatm/netnatm/api/cc_port.c soc2011/shm/sys/contrib/ngatm/netnatm/api/cc_sig.c soc2011/shm/sys/contrib/ngatm/netnatm/api/cc_user.c soc2011/shm/sys/contrib/ngatm/netnatm/api/ccatm.h soc2011/shm/sys/contrib/ngatm/netnatm/api/ccpriv.h soc2011/shm/sys/contrib/ngatm/netnatm/api/unisap.c soc2011/shm/sys/contrib/ngatm/netnatm/api/unisap.h soc2011/shm/sys/contrib/ngatm/netnatm/genfiles soc2011/shm/sys/contrib/ngatm/netnatm/misc/ soc2011/shm/sys/contrib/ngatm/netnatm/misc/straddr.c soc2011/shm/sys/contrib/ngatm/netnatm/misc/unimsg_common.c soc2011/shm/sys/contrib/ngatm/netnatm/msg/ soc2011/shm/sys/contrib/ngatm/netnatm/msg/geniec.awk soc2011/shm/sys/contrib/ngatm/netnatm/msg/genieh.awk soc2011/shm/sys/contrib/ngatm/netnatm/msg/genmsgc.awk soc2011/shm/sys/contrib/ngatm/netnatm/msg/genmsgh.awk soc2011/shm/sys/contrib/ngatm/netnatm/msg/ie.def soc2011/shm/sys/contrib/ngatm/netnatm/msg/msg.def soc2011/shm/sys/contrib/ngatm/netnatm/msg/parseie.awk soc2011/shm/sys/contrib/ngatm/netnatm/msg/parsemsg.awk soc2011/shm/sys/contrib/ngatm/netnatm/msg/priv.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/privmsg.c soc2011/shm/sys/contrib/ngatm/netnatm/msg/traffic.c soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_config.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_hdr.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_ie.c soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_ie.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_ietab.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_msg.c soc2011/shm/sys/contrib/ngatm/netnatm/msg/uni_msg.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/unimsglib.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/uniprint.h soc2011/shm/sys/contrib/ngatm/netnatm/msg/unistruct.h soc2011/shm/sys/contrib/ngatm/netnatm/saal/ soc2011/shm/sys/contrib/ngatm/netnatm/saal/saal_sscfu.c soc2011/shm/sys/contrib/ngatm/netnatm/saal/saal_sscop.c soc2011/shm/sys/contrib/ngatm/netnatm/saal/sscfu.h soc2011/shm/sys/contrib/ngatm/netnatm/saal/sscfudef.h soc2011/shm/sys/contrib/ngatm/netnatm/saal/sscfupriv.h soc2011/shm/sys/contrib/ngatm/netnatm/saal/sscop.h soc2011/shm/sys/contrib/ngatm/netnatm/saal/sscopdef.h soc2011/shm/sys/contrib/ngatm/netnatm/saal/sscoppriv.h soc2011/shm/sys/contrib/ngatm/netnatm/sig/ soc2011/shm/sys/contrib/ngatm/netnatm/sig/genmsgcpyc.awk soc2011/shm/sys/contrib/ngatm/netnatm/sig/genmsgcpyh.awk soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_call.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_coord.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_party.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_print.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_reset.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_uni.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_unimsgcpy.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/sig_verify.c soc2011/shm/sys/contrib/ngatm/netnatm/sig/uni.h soc2011/shm/sys/contrib/ngatm/netnatm/sig/unidef.h soc2011/shm/sys/contrib/ngatm/netnatm/sig/unimkmsg.h soc2011/shm/sys/contrib/ngatm/netnatm/sig/unimsgcpy.h soc2011/shm/sys/contrib/ngatm/netnatm/sig/unipriv.h soc2011/shm/sys/contrib/ngatm/netnatm/sig/unisig.h soc2011/shm/sys/contrib/ngatm/netnatm/unimsg.h soc2011/shm/sys/contrib/pf/ soc2011/shm/sys/contrib/pf/net/ soc2011/shm/sys/contrib/pf/net/if_pflog.c soc2011/shm/sys/contrib/pf/net/if_pflog.h soc2011/shm/sys/contrib/pf/net/if_pfsync.c soc2011/shm/sys/contrib/pf/net/if_pfsync.h soc2011/shm/sys/contrib/pf/net/pf.c soc2011/shm/sys/contrib/pf/net/pf_if.c soc2011/shm/sys/contrib/pf/net/pf_ioctl.c soc2011/shm/sys/contrib/pf/net/pf_mtag.h soc2011/shm/sys/contrib/pf/net/pf_norm.c soc2011/shm/sys/contrib/pf/net/pf_osfp.c soc2011/shm/sys/contrib/pf/net/pf_ruleset.c soc2011/shm/sys/contrib/pf/net/pf_subr.c soc2011/shm/sys/contrib/pf/net/pf_table.c soc2011/shm/sys/contrib/pf/net/pfvar.h soc2011/shm/sys/contrib/pf/netinet/ soc2011/shm/sys/contrib/pf/netinet/in4_cksum.c soc2011/shm/sys/contrib/rdma/ soc2011/shm/sys/contrib/rdma/core_priv.h soc2011/shm/sys/contrib/rdma/ib_addr.h soc2011/shm/sys/contrib/rdma/ib_cache.h soc2011/shm/sys/contrib/rdma/ib_cm.h soc2011/shm/sys/contrib/rdma/ib_fmr_pool.h soc2011/shm/sys/contrib/rdma/ib_mad.h soc2011/shm/sys/contrib/rdma/ib_marshall.h soc2011/shm/sys/contrib/rdma/ib_pack.h soc2011/shm/sys/contrib/rdma/ib_sa.h soc2011/shm/sys/contrib/rdma/ib_smi.h soc2011/shm/sys/contrib/rdma/ib_umem.h soc2011/shm/sys/contrib/rdma/ib_user_cm.h soc2011/shm/sys/contrib/rdma/ib_user_mad.h soc2011/shm/sys/contrib/rdma/ib_user_sa.h soc2011/shm/sys/contrib/rdma/ib_user_verbs.h soc2011/shm/sys/contrib/rdma/ib_verbs.h soc2011/shm/sys/contrib/rdma/iw_cm.h soc2011/shm/sys/contrib/rdma/krping/ soc2011/shm/sys/contrib/rdma/krping/getopt.c soc2011/shm/sys/contrib/rdma/krping/getopt.h soc2011/shm/sys/contrib/rdma/krping/krping.c soc2011/shm/sys/contrib/rdma/krping/krping.h soc2011/shm/sys/contrib/rdma/krping/krping_dev.c soc2011/shm/sys/contrib/rdma/rdma_addr.c soc2011/shm/sys/contrib/rdma/rdma_cache.c soc2011/shm/sys/contrib/rdma/rdma_cm.h soc2011/shm/sys/contrib/rdma/rdma_cm_ib.h soc2011/shm/sys/contrib/rdma/rdma_cma.c soc2011/shm/sys/contrib/rdma/rdma_device.c soc2011/shm/sys/contrib/rdma/rdma_iwcm.c soc2011/shm/sys/contrib/rdma/rdma_user_cm.h soc2011/shm/sys/contrib/rdma/rdma_verbs.c soc2011/shm/sys/contrib/rdma/types.h soc2011/shm/sys/contrib/x86emu/ soc2011/shm/sys/contrib/x86emu/x86emu.c soc2011/shm/sys/contrib/x86emu/x86emu.h soc2011/shm/sys/contrib/x86emu/x86emu_regs.h soc2011/shm/sys/contrib/x86emu/x86emu_util.c soc2011/shm/sys/crypto/ soc2011/shm/sys/crypto/blowfish/ soc2011/shm/sys/crypto/blowfish/arch/ soc2011/shm/sys/crypto/blowfish/arch/i386/ soc2011/shm/sys/crypto/blowfish/arch/i386/bf_enc.S soc2011/shm/sys/crypto/blowfish/arch/i386/bf_enc_586.S soc2011/shm/sys/crypto/blowfish/arch/i386/bf_enc_686.S soc2011/shm/sys/crypto/blowfish/bf_ecb.c soc2011/shm/sys/crypto/blowfish/bf_enc.c soc2011/shm/sys/crypto/blowfish/bf_locl.h soc2011/shm/sys/crypto/blowfish/bf_pi.h soc2011/shm/sys/crypto/blowfish/bf_skey.c soc2011/shm/sys/crypto/blowfish/blowfish.h soc2011/shm/sys/crypto/camellia/ soc2011/shm/sys/crypto/camellia/camellia-api.c soc2011/shm/sys/crypto/camellia/camellia.c soc2011/shm/sys/crypto/camellia/camellia.h soc2011/shm/sys/crypto/des/ soc2011/shm/sys/crypto/des/arch/ soc2011/shm/sys/crypto/des/arch/i386/ soc2011/shm/sys/crypto/des/arch/i386/des_enc.S soc2011/shm/sys/crypto/des/des.h soc2011/shm/sys/crypto/des/des_ecb.c soc2011/shm/sys/crypto/des/des_enc.c soc2011/shm/sys/crypto/des/des_locl.h soc2011/shm/sys/crypto/des/des_setkey.c soc2011/shm/sys/crypto/des/podd.h soc2011/shm/sys/crypto/des/sk.h soc2011/shm/sys/crypto/des/spr.h soc2011/shm/sys/crypto/rc4/ soc2011/shm/sys/crypto/rc4/rc4.c soc2011/shm/sys/crypto/rc4/rc4.h soc2011/shm/sys/crypto/rijndael/ soc2011/shm/sys/crypto/rijndael/Makefile soc2011/shm/sys/crypto/rijndael/rijndael-alg-fst.c soc2011/shm/sys/crypto/rijndael/rijndael-api-fst.c soc2011/shm/sys/crypto/rijndael/rijndael-api-fst.h soc2011/shm/sys/crypto/rijndael/rijndael-api.c soc2011/shm/sys/crypto/rijndael/rijndael.h soc2011/shm/sys/crypto/rijndael/rijndael_local.h soc2011/shm/sys/crypto/rijndael/test00.c soc2011/shm/sys/crypto/sha1.c soc2011/shm/sys/crypto/sha1.h soc2011/shm/sys/crypto/sha2/ soc2011/shm/sys/crypto/sha2/sha2.c soc2011/shm/sys/crypto/sha2/sha2.h soc2011/shm/sys/crypto/via/ soc2011/shm/sys/crypto/via/padlock.c soc2011/shm/sys/crypto/via/padlock.h soc2011/shm/sys/crypto/via/padlock_cipher.c soc2011/shm/sys/crypto/via/padlock_hash.c soc2011/shm/sys/ddb/ soc2011/shm/sys/ddb/db_access.c soc2011/shm/sys/ddb/db_access.h soc2011/shm/sys/ddb/db_break.c soc2011/shm/sys/ddb/db_break.h soc2011/shm/sys/ddb/db_capture.c soc2011/shm/sys/ddb/db_command.c soc2011/shm/sys/ddb/db_command.h soc2011/shm/sys/ddb/db_examine.c soc2011/shm/sys/ddb/db_expr.c soc2011/shm/sys/ddb/db_input.c soc2011/shm/sys/ddb/db_lex.c soc2011/shm/sys/ddb/db_lex.h soc2011/shm/sys/ddb/db_main.c soc2011/shm/sys/ddb/db_output.c soc2011/shm/sys/ddb/db_output.h soc2011/shm/sys/ddb/db_print.c soc2011/shm/sys/ddb/db_ps.c soc2011/shm/sys/ddb/db_run.c soc2011/shm/sys/ddb/db_script.c soc2011/shm/sys/ddb/db_sym.c soc2011/shm/sys/ddb/db_sym.h soc2011/shm/sys/ddb/db_textdump.c soc2011/shm/sys/ddb/db_thread.c soc2011/shm/sys/ddb/db_variables.c soc2011/shm/sys/ddb/db_variables.h soc2011/shm/sys/ddb/db_watch.c soc2011/shm/sys/ddb/db_watch.h soc2011/shm/sys/ddb/db_write_cmd.c soc2011/shm/sys/ddb/ddb.h soc2011/shm/sys/dev/ soc2011/shm/sys/dev/aac/ soc2011/shm/sys/dev/aac/aac.c soc2011/shm/sys/dev/aac/aac_cam.c soc2011/shm/sys/dev/aac/aac_debug.c soc2011/shm/sys/dev/aac/aac_disk.c soc2011/shm/sys/dev/aac/aac_linux.c soc2011/shm/sys/dev/aac/aac_pci.c soc2011/shm/sys/dev/aac/aac_tables.h soc2011/shm/sys/dev/aac/aacreg.h soc2011/shm/sys/dev/aac/aacvar.h soc2011/shm/sys/dev/acpi_support/ soc2011/shm/sys/dev/acpi_support/acpi_aiboost.c soc2011/shm/sys/dev/acpi_support/acpi_asus.c soc2011/shm/sys/dev/acpi_support/acpi_fujitsu.c soc2011/shm/sys/dev/acpi_support/acpi_hp.c soc2011/shm/sys/dev/acpi_support/acpi_ibm.c soc2011/shm/sys/dev/acpi_support/acpi_panasonic.c soc2011/shm/sys/dev/acpi_support/acpi_sony.c soc2011/shm/sys/dev/acpi_support/acpi_toshiba.c soc2011/shm/sys/dev/acpi_support/acpi_wmi.c soc2011/shm/sys/dev/acpi_support/acpi_wmi_if.m soc2011/shm/sys/dev/acpica/ soc2011/shm/sys/dev/acpica/Osd/ soc2011/shm/sys/dev/acpica/Osd/OsdDebug.c soc2011/shm/sys/dev/acpica/Osd/OsdHardware.c soc2011/shm/sys/dev/acpica/Osd/OsdInterrupt.c soc2011/shm/sys/dev/acpica/Osd/OsdMemory.c soc2011/shm/sys/dev/acpica/Osd/OsdSchedule.c soc2011/shm/sys/dev/acpica/Osd/OsdStream.c soc2011/shm/sys/dev/acpica/Osd/OsdSynch.c soc2011/shm/sys/dev/acpica/Osd/OsdTable.c soc2011/shm/sys/dev/acpica/acpi.c soc2011/shm/sys/dev/acpica/acpi_acad.c soc2011/shm/sys/dev/acpica/acpi_battery.c soc2011/shm/sys/dev/acpica/acpi_button.c soc2011/shm/sys/dev/acpica/acpi_cmbat.c soc2011/shm/sys/dev/acpica/acpi_cpu.c soc2011/shm/sys/dev/acpica/acpi_dock.c soc2011/shm/sys/dev/acpica/acpi_ec.c soc2011/shm/sys/dev/acpica/acpi_hpet.c soc2011/shm/sys/dev/acpica/acpi_hpet.h soc2011/shm/sys/dev/acpica/acpi_if.m soc2011/shm/sys/dev/acpica/acpi_isab.c soc2011/shm/sys/dev/acpica/acpi_lid.c soc2011/shm/sys/dev/acpica/acpi_package.c soc2011/shm/sys/dev/acpica/acpi_pci.c soc2011/shm/sys/dev/acpica/acpi_pci_link.c soc2011/shm/sys/dev/acpica/acpi_pcib.c soc2011/shm/sys/dev/acpica/acpi_pcib_acpi.c soc2011/shm/sys/dev/acpica/acpi_pcib_pci.c soc2011/shm/sys/dev/acpica/acpi_pcibvar.h soc2011/shm/sys/dev/acpica/acpi_perf.c soc2011/shm/sys/dev/acpica/acpi_powerres.c soc2011/shm/sys/dev/acpica/acpi_quirk.c soc2011/shm/sys/dev/acpica/acpi_quirks soc2011/shm/sys/dev/acpica/acpi_resource.c soc2011/shm/sys/dev/acpica/acpi_smbat.c soc2011/shm/sys/dev/acpica/acpi_smbus.h soc2011/shm/sys/dev/acpica/acpi_thermal.c soc2011/shm/sys/dev/acpica/acpi_throttle.c soc2011/shm/sys/dev/acpica/acpi_timer.c soc2011/shm/sys/dev/acpica/acpi_video.c soc2011/shm/sys/dev/acpica/acpiio.h soc2011/shm/sys/dev/acpica/acpivar.h soc2011/shm/sys/dev/adb/ soc2011/shm/sys/dev/adb/adb.h soc2011/shm/sys/dev/adb/adb_bus.c soc2011/shm/sys/dev/adb/adb_hb_if.m soc2011/shm/sys/dev/adb/adb_if.m soc2011/shm/sys/dev/adb/adb_kbd.c soc2011/shm/sys/dev/adb/adb_mouse.c soc2011/shm/sys/dev/adb/adbvar.h soc2011/shm/sys/dev/adlink/ soc2011/shm/sys/dev/adlink/adlink.c soc2011/shm/sys/dev/advansys/ soc2011/shm/sys/dev/advansys/adv_eisa.c soc2011/shm/sys/dev/advansys/adv_isa.c soc2011/shm/sys/dev/advansys/adv_pci.c soc2011/shm/sys/dev/advansys/advansys.c soc2011/shm/sys/dev/advansys/advansys.h soc2011/shm/sys/dev/advansys/advlib.c soc2011/shm/sys/dev/advansys/advlib.h soc2011/shm/sys/dev/advansys/advmcode.c soc2011/shm/sys/dev/advansys/advmcode.h soc2011/shm/sys/dev/advansys/adw_pci.c soc2011/shm/sys/dev/advansys/adwcam.c soc2011/shm/sys/dev/advansys/adwlib.c soc2011/shm/sys/dev/advansys/adwlib.h soc2011/shm/sys/dev/advansys/adwmcode.c soc2011/shm/sys/dev/advansys/adwmcode.h soc2011/shm/sys/dev/advansys/adwvar.h soc2011/shm/sys/dev/ae/ soc2011/shm/sys/dev/ae/if_ae.c soc2011/shm/sys/dev/ae/if_aereg.h soc2011/shm/sys/dev/ae/if_aevar.h soc2011/shm/sys/dev/age/ soc2011/shm/sys/dev/age/if_age.c soc2011/shm/sys/dev/age/if_agereg.h soc2011/shm/sys/dev/age/if_agevar.h soc2011/shm/sys/dev/agp/ soc2011/shm/sys/dev/agp/agp.c soc2011/shm/sys/dev/agp/agp_ali.c soc2011/shm/sys/dev/agp/agp_amd.c soc2011/shm/sys/dev/agp/agp_amd64.c soc2011/shm/sys/dev/agp/agp_ati.c soc2011/shm/sys/dev/agp/agp_i810.c soc2011/shm/sys/dev/agp/agp_if.m soc2011/shm/sys/dev/agp/agp_intel.c soc2011/shm/sys/dev/agp/agp_nvidia.c soc2011/shm/sys/dev/agp/agp_sis.c soc2011/shm/sys/dev/agp/agp_via.c soc2011/shm/sys/dev/agp/agppriv.h soc2011/shm/sys/dev/agp/agpreg.h soc2011/shm/sys/dev/agp/agpvar.h soc2011/shm/sys/dev/aha/ soc2011/shm/sys/dev/aha/aha.c soc2011/shm/sys/dev/aha/aha_isa.c soc2011/shm/sys/dev/aha/aha_mca.c soc2011/shm/sys/dev/aha/ahareg.h soc2011/shm/sys/dev/ahb/ soc2011/shm/sys/dev/ahb/ahb.c soc2011/shm/sys/dev/ahb/ahbreg.h soc2011/shm/sys/dev/ahci/ soc2011/shm/sys/dev/ahci/ahci.c soc2011/shm/sys/dev/ahci/ahci.h soc2011/shm/sys/dev/aic/ soc2011/shm/sys/dev/aic/aic.c soc2011/shm/sys/dev/aic/aic6360reg.h soc2011/shm/sys/dev/aic/aic_cbus.c soc2011/shm/sys/dev/aic/aic_isa.c soc2011/shm/sys/dev/aic/aic_pccard.c soc2011/shm/sys/dev/aic/aicvar.h soc2011/shm/sys/dev/aic7xxx/ soc2011/shm/sys/dev/aic7xxx/ahc_eisa.c soc2011/shm/sys/dev/aic7xxx/ahc_isa.c soc2011/shm/sys/dev/aic7xxx/ahc_pci.c soc2011/shm/sys/dev/aic7xxx/ahd_pci.c soc2011/shm/sys/dev/aic7xxx/aic7770.c soc2011/shm/sys/dev/aic7xxx/aic79xx.c soc2011/shm/sys/dev/aic7xxx/aic79xx.h soc2011/shm/sys/dev/aic7xxx/aic79xx.reg soc2011/shm/sys/dev/aic7xxx/aic79xx.seq soc2011/shm/sys/dev/aic7xxx/aic79xx_inline.h soc2011/shm/sys/dev/aic7xxx/aic79xx_osm.c soc2011/shm/sys/dev/aic7xxx/aic79xx_osm.h soc2011/shm/sys/dev/aic7xxx/aic79xx_pci.c soc2011/shm/sys/dev/aic7xxx/aic7xxx.c soc2011/shm/sys/dev/aic7xxx/aic7xxx.h soc2011/shm/sys/dev/aic7xxx/aic7xxx.reg soc2011/shm/sys/dev/aic7xxx/aic7xxx.seq soc2011/shm/sys/dev/aic7xxx/aic7xxx_93cx6.c soc2011/shm/sys/dev/aic7xxx/aic7xxx_93cx6.h soc2011/shm/sys/dev/aic7xxx/aic7xxx_inline.h soc2011/shm/sys/dev/aic7xxx/aic7xxx_osm.c soc2011/shm/sys/dev/aic7xxx/aic7xxx_osm.h soc2011/shm/sys/dev/aic7xxx/aic7xxx_pci.c soc2011/shm/sys/dev/aic7xxx/aic_osm_lib.c soc2011/shm/sys/dev/aic7xxx/aic_osm_lib.h soc2011/shm/sys/dev/aic7xxx/aicasm/ soc2011/shm/sys/dev/aic7xxx/aicasm/Makefile soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm.c soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm.h soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_gram.y soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_insformat.h soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_scan.l soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_symbol.c soc2011/shm/sys/dev/aic7xxx/aicasm/aicasm_symbol.h soc2011/shm/sys/dev/alc/ soc2011/shm/sys/dev/alc/if_alc.c soc2011/shm/sys/dev/alc/if_alcreg.h soc2011/shm/sys/dev/alc/if_alcvar.h soc2011/shm/sys/dev/ale/ soc2011/shm/sys/dev/ale/if_ale.c soc2011/shm/sys/dev/ale/if_alereg.h soc2011/shm/sys/dev/ale/if_alevar.h soc2011/shm/sys/dev/amd/ soc2011/shm/sys/dev/amd/amd.c soc2011/shm/sys/dev/amd/amd.h soc2011/shm/sys/dev/amdsbwd/ soc2011/shm/sys/dev/amdsbwd/amdsbwd.c soc2011/shm/sys/dev/amdtemp/ soc2011/shm/sys/dev/amdtemp/amdtemp.c soc2011/shm/sys/dev/amr/ soc2011/shm/sys/dev/amr/amr.c soc2011/shm/sys/dev/amr/amr_cam.c soc2011/shm/sys/dev/amr/amr_disk.c soc2011/shm/sys/dev/amr/amr_linux.c soc2011/shm/sys/dev/amr/amr_pci.c soc2011/shm/sys/dev/amr/amr_tables.h soc2011/shm/sys/dev/amr/amrio.h soc2011/shm/sys/dev/amr/amrreg.h soc2011/shm/sys/dev/amr/amrvar.h soc2011/shm/sys/dev/an/ soc2011/shm/sys/dev/an/if_aironet_ieee.h soc2011/shm/sys/dev/an/if_an.c soc2011/shm/sys/dev/an/if_an_isa.c soc2011/shm/sys/dev/an/if_an_pccard.c soc2011/shm/sys/dev/an/if_an_pci.c soc2011/shm/sys/dev/an/if_anreg.h soc2011/shm/sys/dev/arcmsr/ soc2011/shm/sys/dev/arcmsr/arcmsr.c soc2011/shm/sys/dev/arcmsr/arcmsr.h soc2011/shm/sys/dev/asmc/ soc2011/shm/sys/dev/asmc/asmc.c soc2011/shm/sys/dev/asmc/asmcvar.h soc2011/shm/sys/dev/asr/ soc2011/shm/sys/dev/asr/asr.c soc2011/shm/sys/dev/asr/dptalign.h soc2011/shm/sys/dev/asr/dptsig.h soc2011/shm/sys/dev/asr/i2oadptr.h soc2011/shm/sys/dev/asr/i2obscsi.h soc2011/shm/sys/dev/asr/i2odep.h soc2011/shm/sys/dev/asr/i2odpt.h soc2011/shm/sys/dev/asr/i2oexec.h soc2011/shm/sys/dev/asr/i2omsg.h soc2011/shm/sys/dev/asr/i2otypes.h soc2011/shm/sys/dev/asr/i2outil.h soc2011/shm/sys/dev/asr/osd_defs.h soc2011/shm/sys/dev/asr/osd_unix.h soc2011/shm/sys/dev/asr/osd_util.h soc2011/shm/sys/dev/asr/sys_info.h soc2011/shm/sys/dev/ata/ soc2011/shm/sys/dev/ata/ata-all.c soc2011/shm/sys/dev/ata/ata-all.h soc2011/shm/sys/dev/ata/ata-card.c soc2011/shm/sys/dev/ata/ata-cbus.c soc2011/shm/sys/dev/ata/ata-disk.c soc2011/shm/sys/dev/ata/ata-disk.h soc2011/shm/sys/dev/ata/ata-dma.c soc2011/shm/sys/dev/ata/ata-isa.c soc2011/shm/sys/dev/ata/ata-lowlevel.c soc2011/shm/sys/dev/ata/ata-pci.c soc2011/shm/sys/dev/ata/ata-pci.h soc2011/shm/sys/dev/ata/ata-queue.c soc2011/shm/sys/dev/ata/ata-raid-ddf.h soc2011/shm/sys/dev/ata/ata-raid.c soc2011/shm/sys/dev/ata/ata-raid.h soc2011/shm/sys/dev/ata/ata-sata.c soc2011/shm/sys/dev/ata/ata_if.m soc2011/shm/sys/dev/ata/atapi-cam.c soc2011/shm/sys/dev/ata/atapi-cd.c soc2011/shm/sys/dev/ata/atapi-cd.h soc2011/shm/sys/dev/ata/atapi-fd.c soc2011/shm/sys/dev/ata/atapi-fd.h soc2011/shm/sys/dev/ata/atapi-tape.c soc2011/shm/sys/dev/ata/atapi-tape.h soc2011/shm/sys/dev/ata/chipsets/ soc2011/shm/sys/dev/ata/chipsets/ata-acard.c soc2011/shm/sys/dev/ata/chipsets/ata-acerlabs.c soc2011/shm/sys/dev/ata/chipsets/ata-adaptec.c soc2011/shm/sys/dev/ata/chipsets/ata-ahci.c soc2011/shm/sys/dev/ata/chipsets/ata-amd.c soc2011/shm/sys/dev/ata/chipsets/ata-ati.c soc2011/shm/sys/dev/ata/chipsets/ata-cenatek.c soc2011/shm/sys/dev/ata/chipsets/ata-cypress.c soc2011/shm/sys/dev/ata/chipsets/ata-cyrix.c soc2011/shm/sys/dev/ata/chipsets/ata-highpoint.c soc2011/shm/sys/dev/ata/chipsets/ata-intel.c soc2011/shm/sys/dev/ata/chipsets/ata-ite.c soc2011/shm/sys/dev/ata/chipsets/ata-jmicron.c soc2011/shm/sys/dev/ata/chipsets/ata-marvell.c soc2011/shm/sys/dev/ata/chipsets/ata-micron.c soc2011/shm/sys/dev/ata/chipsets/ata-national.c soc2011/shm/sys/dev/ata/chipsets/ata-netcell.c soc2011/shm/sys/dev/ata/chipsets/ata-nvidia.c soc2011/shm/sys/dev/ata/chipsets/ata-promise.c soc2011/shm/sys/dev/ata/chipsets/ata-serverworks.c soc2011/shm/sys/dev/ata/chipsets/ata-siliconimage.c soc2011/shm/sys/dev/ata/chipsets/ata-sis.c soc2011/shm/sys/dev/ata/chipsets/ata-via.c soc2011/shm/sys/dev/ath/ soc2011/shm/sys/dev/ath/ah_osdep.c soc2011/shm/sys/dev/ath/ah_osdep.h soc2011/shm/sys/dev/ath/ath_hal/ soc2011/shm/sys/dev/ath/ath_hal/ah.c soc2011/shm/sys/dev/ath/ath_hal/ah.h soc2011/shm/sys/dev/ath/ath_hal/ah_debug.h soc2011/shm/sys/dev/ath/ath_hal/ah_decode.h soc2011/shm/sys/dev/ath/ath_hal/ah_desc.h soc2011/shm/sys/dev/ath/ath_hal/ah_devid.h soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom.h soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v1.c soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v1.h soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v14.c soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v14.h soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v3.c soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v3.h soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v4k.c soc2011/shm/sys/dev/ath/ath_hal/ah_eeprom_v4k.h soc2011/shm/sys/dev/ath/ath_hal/ah_internal.h soc2011/shm/sys/dev/ath/ath_hal/ah_regdomain.c soc2011/shm/sys/dev/ath/ath_hal/ah_soc.h soc2011/shm/sys/dev/ath/ath_hal/ar5210/ soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210.h soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_beacon.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_interrupts.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_keycache.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_phy.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_power.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210desc.h soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210phy.h soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5210reg.h soc2011/shm/sys/dev/ath/ath_hal/ar5210/ar5k_0007.ini soc2011/shm/sys/dev/ath/ath_hal/ar5211/ soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211.h soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_beacon.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_interrupts.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_keycache.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_phy.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_power.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_recv.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211desc.h soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211phy.h soc2011/shm/sys/dev/ath/ath_hal/ar5211/ar5211reg.h soc2011/shm/sys/dev/ath/ath_hal/ar5211/boss.ini soc2011/shm/sys/dev/ath/ath_hal/ar5212/ soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar2316.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar2317.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar2413.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar2425.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5111.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5112.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212.h soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212.ini soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_eeprom.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_gpio.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_interrupts.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_keycache.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_phy.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_power.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_rfgain.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212desc.h soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212phy.h soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5212reg.h soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5311reg.h soc2011/shm/sys/dev/ath/ath_hal/ar5212/ar5413.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312.h soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_eeprom.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_gpio.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_interrupts.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_misc.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_power.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312phy.h soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5312reg.h soc2011/shm/sys/dev/ath/ath_hal/ar5312/ar5315_gpio.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar2133.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416.ini soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_beacon.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_cal.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_cal_adcdc.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_cal_adcgain.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_cal_iq.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_eeprom.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_keycache.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_phy.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_power.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416desc.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416phy.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar5416reg.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9160.ini soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9160_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9280.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9280.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9280_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9280v1.ini soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9280v2.ini soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9285.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9285.h soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9285.ini soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9285_attach.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9285_reset.c soc2011/shm/sys/dev/ath/ath_hal/ar5416/ar9285v2.ini soc2011/shm/sys/dev/ath/ath_rate/ soc2011/shm/sys/dev/ath/ath_rate/amrr/ soc2011/shm/sys/dev/ath/ath_rate/amrr/amrr.c soc2011/shm/sys/dev/ath/ath_rate/amrr/amrr.h soc2011/shm/sys/dev/ath/ath_rate/onoe/ soc2011/shm/sys/dev/ath/ath_rate/onoe/onoe.c soc2011/shm/sys/dev/ath/ath_rate/onoe/onoe.h soc2011/shm/sys/dev/ath/ath_rate/sample/ soc2011/shm/sys/dev/ath/ath_rate/sample/sample.c soc2011/shm/sys/dev/ath/ath_rate/sample/sample.h soc2011/shm/sys/dev/ath/if_ath.c soc2011/shm/sys/dev/ath/if_ath_pci.c soc2011/shm/sys/dev/ath/if_athioctl.h soc2011/shm/sys/dev/ath/if_athrate.h soc2011/shm/sys/dev/ath/if_athvar.h soc2011/shm/sys/dev/atkbdc/ soc2011/shm/sys/dev/atkbdc/atkbd.c soc2011/shm/sys/dev/atkbdc/atkbd_atkbdc.c soc2011/shm/sys/dev/atkbdc/atkbdc.c soc2011/shm/sys/dev/atkbdc/atkbdc_ebus.c soc2011/shm/sys/dev/atkbdc/atkbdc_isa.c soc2011/shm/sys/dev/atkbdc/atkbdc_subr.c soc2011/shm/sys/dev/atkbdc/atkbdc_subr.h soc2011/shm/sys/dev/atkbdc/atkbdcreg.h soc2011/shm/sys/dev/atkbdc/atkbdreg.h soc2011/shm/sys/dev/atkbdc/psm.c soc2011/shm/sys/dev/atkbdc/psm.h soc2011/shm/sys/dev/auxio/ soc2011/shm/sys/dev/auxio/auxio.c soc2011/shm/sys/dev/auxio/auxioreg.h soc2011/shm/sys/dev/bce/ soc2011/shm/sys/dev/bce/if_bce.c soc2011/shm/sys/dev/bce/if_bcefw.h soc2011/shm/sys/dev/bce/if_bcereg.h soc2011/shm/sys/dev/bfe/ soc2011/shm/sys/dev/bfe/if_bfe.c soc2011/shm/sys/dev/bfe/if_bfereg.h soc2011/shm/sys/dev/bge/ soc2011/shm/sys/dev/bge/if_bge.c soc2011/shm/sys/dev/bge/if_bgereg.h soc2011/shm/sys/dev/bktr/ soc2011/shm/sys/dev/bktr/CHANGELOG.TXT (contents, props changed) soc2011/shm/sys/dev/bktr/bktr_audio.c soc2011/shm/sys/dev/bktr/bktr_audio.h soc2011/shm/sys/dev/bktr/bktr_card.c soc2011/shm/sys/dev/bktr/bktr_card.h soc2011/shm/sys/dev/bktr/bktr_core.c soc2011/shm/sys/dev/bktr/bktr_core.h soc2011/shm/sys/dev/bktr/bktr_i2c.c soc2011/shm/sys/dev/bktr/bktr_i2c.h soc2011/shm/sys/dev/bktr/bktr_mem.c soc2011/shm/sys/dev/bktr/bktr_mem.h soc2011/shm/sys/dev/bktr/bktr_os.c soc2011/shm/sys/dev/bktr/bktr_os.h soc2011/shm/sys/dev/bktr/bktr_reg.h soc2011/shm/sys/dev/bktr/bktr_tuner.c soc2011/shm/sys/dev/bktr/bktr_tuner.h soc2011/shm/sys/dev/bktr/ioctl_bt848.h soc2011/shm/sys/dev/bktr/ioctl_meteor.h soc2011/shm/sys/dev/bktr/msp34xx.c soc2011/shm/sys/dev/bm/ soc2011/shm/sys/dev/bm/if_bm.c soc2011/shm/sys/dev/bm/if_bmreg.h soc2011/shm/sys/dev/bm/if_bmvar.h soc2011/shm/sys/dev/buslogic/ soc2011/shm/sys/dev/buslogic/bt.c soc2011/shm/sys/dev/buslogic/bt_eisa.c soc2011/shm/sys/dev/buslogic/bt_isa.c soc2011/shm/sys/dev/buslogic/bt_mca.c soc2011/shm/sys/dev/buslogic/bt_pci.c soc2011/shm/sys/dev/buslogic/btreg.h soc2011/shm/sys/dev/bwi/ soc2011/shm/sys/dev/bwi/bitops.h soc2011/shm/sys/dev/bwi/bwimac.c soc2011/shm/sys/dev/bwi/bwimac.h soc2011/shm/sys/dev/bwi/bwiphy.c soc2011/shm/sys/dev/bwi/bwiphy.h soc2011/shm/sys/dev/bwi/bwirf.c soc2011/shm/sys/dev/bwi/bwirf.h soc2011/shm/sys/dev/bwi/if_bwi.c soc2011/shm/sys/dev/bwi/if_bwi_pci.c soc2011/shm/sys/dev/bwi/if_bwireg.h soc2011/shm/sys/dev/bwi/if_bwivar.h soc2011/shm/sys/dev/bwn/ soc2011/shm/sys/dev/bwn/if_bwn.c soc2011/shm/sys/dev/bwn/if_bwnreg.h soc2011/shm/sys/dev/bwn/if_bwnvar.h soc2011/shm/sys/dev/cardbus/ soc2011/shm/sys/dev/cardbus/cardbus.c soc2011/shm/sys/dev/cardbus/cardbus_cis.c soc2011/shm/sys/dev/cardbus/cardbus_cis.h soc2011/shm/sys/dev/cardbus/cardbus_device.c soc2011/shm/sys/dev/cardbus/cardbusreg.h soc2011/shm/sys/dev/cardbus/cardbusvar.h soc2011/shm/sys/dev/cas/ soc2011/shm/sys/dev/cas/if_cas.c soc2011/shm/sys/dev/cas/if_casreg.h soc2011/shm/sys/dev/cas/if_casvar.h soc2011/shm/sys/dev/ce/ soc2011/shm/sys/dev/ce/ceddk.c soc2011/shm/sys/dev/ce/ceddk.h soc2011/shm/sys/dev/ce/if_ce.c soc2011/shm/sys/dev/ce/ng_ce.h soc2011/shm/sys/dev/ce/tau32-ddk.c soc2011/shm/sys/dev/ce/tau32-ddk.h soc2011/shm/sys/dev/cfe/ soc2011/shm/sys/dev/cfe/cfe_api.c soc2011/shm/sys/dev/cfe/cfe_api.h soc2011/shm/sys/dev/cfe/cfe_api_int.h soc2011/shm/sys/dev/cfe/cfe_console.c soc2011/shm/sys/dev/cfe/cfe_error.h soc2011/shm/sys/dev/cfe/cfe_ioctl.h soc2011/shm/sys/dev/cfe/cfe_resource.c soc2011/shm/sys/dev/cfi/ soc2011/shm/sys/dev/cfi/cfi_bus_ixp4xx.c soc2011/shm/sys/dev/cfi/cfi_bus_lbc.c soc2011/shm/sys/dev/cfi/cfi_core.c soc2011/shm/sys/dev/cfi/cfi_dev.c soc2011/shm/sys/dev/cfi/cfi_disk.c soc2011/shm/sys/dev/cfi/cfi_reg.h soc2011/shm/sys/dev/cfi/cfi_var.h soc2011/shm/sys/dev/ciss/ soc2011/shm/sys/dev/ciss/ciss.c soc2011/shm/sys/dev/ciss/cissio.h soc2011/shm/sys/dev/ciss/cissreg.h soc2011/shm/sys/dev/ciss/cissvar.h soc2011/shm/sys/dev/cm/ soc2011/shm/sys/dev/cm/if_cm_isa.c soc2011/shm/sys/dev/cm/smc90cx6.c soc2011/shm/sys/dev/cm/smc90cx6reg.h soc2011/shm/sys/dev/cm/smc90cx6var.h soc2011/shm/sys/dev/cmx/ soc2011/shm/sys/dev/cmx/cmx.c soc2011/shm/sys/dev/cmx/cmx_pccard.c soc2011/shm/sys/dev/cmx/cmxreg.h soc2011/shm/sys/dev/cmx/cmxvar.h soc2011/shm/sys/dev/coretemp/ soc2011/shm/sys/dev/coretemp/coretemp.c soc2011/shm/sys/dev/cp/ soc2011/shm/sys/dev/cp/cpddk.c soc2011/shm/sys/dev/cp/cpddk.h soc2011/shm/sys/dev/cp/if_cp.c soc2011/shm/sys/dev/cp/ng_cp.h soc2011/shm/sys/dev/cpuctl/ soc2011/shm/sys/dev/cpuctl/cpuctl.c soc2011/shm/sys/dev/cpufreq/ soc2011/shm/sys/dev/cpufreq/ichss.c soc2011/shm/sys/dev/cs/ soc2011/shm/sys/dev/cs/if_cs.c soc2011/shm/sys/dev/cs/if_cs_isa.c soc2011/shm/sys/dev/cs/if_cs_pccard.c soc2011/shm/sys/dev/cs/if_csreg.h soc2011/shm/sys/dev/cs/if_csvar.h soc2011/shm/sys/dev/ct/ soc2011/shm/sys/dev/ct/bshw_machdep.c soc2011/shm/sys/dev/ct/bshwvar.h soc2011/shm/sys/dev/ct/ct.c soc2011/shm/sys/dev/ct/ct_isa.c soc2011/shm/sys/dev/ct/ct_machdep.h soc2011/shm/sys/dev/ct/ctvar.h soc2011/shm/sys/dev/ctau/ soc2011/shm/sys/dev/ctau/am8530.h soc2011/shm/sys/dev/ctau/ctau.c soc2011/shm/sys/dev/ctau/ctau2fw.h soc2011/shm/sys/dev/ctau/ctaue1fw.h soc2011/shm/sys/dev/ctau/ctaufw.h soc2011/shm/sys/dev/ctau/ctaug7fw.h soc2011/shm/sys/dev/ctau/ctaureg.h soc2011/shm/sys/dev/ctau/ctddk.c soc2011/shm/sys/dev/ctau/ctddk.h soc2011/shm/sys/dev/ctau/ds2153.h soc2011/shm/sys/dev/ctau/hdc64570.h soc2011/shm/sys/dev/ctau/if_ct.c soc2011/shm/sys/dev/ctau/lxt318.h soc2011/shm/sys/dev/ctau/ng_ct.h soc2011/shm/sys/dev/cx/ soc2011/shm/sys/dev/cx/cronyxfw.h soc2011/shm/sys/dev/cx/csigma.c soc2011/shm/sys/dev/cx/csigmafw.h soc2011/shm/sys/dev/cx/cxddk.c soc2011/shm/sys/dev/cx/cxddk.h soc2011/shm/sys/dev/cx/cxreg.h soc2011/shm/sys/dev/cx/if_cx.c soc2011/shm/sys/dev/cx/machdep.h soc2011/shm/sys/dev/cx/ng_cx.h soc2011/shm/sys/dev/cxgb/ soc2011/shm/sys/dev/cxgb/bin2h.pl soc2011/shm/sys/dev/cxgb/common/ soc2011/shm/sys/dev/cxgb/common/cxgb_ael1002.c soc2011/shm/sys/dev/cxgb/common/cxgb_aq100x.c soc2011/shm/sys/dev/cxgb/common/cxgb_common.h soc2011/shm/sys/dev/cxgb/common/cxgb_ctl_defs.h soc2011/shm/sys/dev/cxgb/common/cxgb_firmware_exports.h soc2011/shm/sys/dev/cxgb/common/cxgb_mc5.c soc2011/shm/sys/dev/cxgb/common/cxgb_mv88e1xxx.c soc2011/shm/sys/dev/cxgb/common/cxgb_regs.h soc2011/shm/sys/dev/cxgb/common/cxgb_sge_defs.h soc2011/shm/sys/dev/cxgb/common/cxgb_t3_cpl.h soc2011/shm/sys/dev/cxgb/common/cxgb_t3_hw.c soc2011/shm/sys/dev/cxgb/common/cxgb_tcb.h soc2011/shm/sys/dev/cxgb/common/cxgb_tn1010.c soc2011/shm/sys/dev/cxgb/common/cxgb_vsc7323.c soc2011/shm/sys/dev/cxgb/common/cxgb_vsc8211.c soc2011/shm/sys/dev/cxgb/common/cxgb_xgmac.c soc2011/shm/sys/dev/cxgb/common/jhash.h soc2011/shm/sys/dev/cxgb/cxgb_adapter.h soc2011/shm/sys/dev/cxgb/cxgb_include.h soc2011/shm/sys/dev/cxgb/cxgb_ioctl.h soc2011/shm/sys/dev/cxgb/cxgb_main.c soc2011/shm/sys/dev/cxgb/cxgb_offload.c soc2011/shm/sys/dev/cxgb/cxgb_offload.h soc2011/shm/sys/dev/cxgb/cxgb_osdep.h soc2011/shm/sys/dev/cxgb/cxgb_sge.c soc2011/shm/sys/dev/cxgb/cxgb_t3fw.c soc2011/shm/sys/dev/cxgb/cxgb_t3fw.h soc2011/shm/sys/dev/cxgb/sys/ soc2011/shm/sys/dev/cxgb/sys/mbufq.h soc2011/shm/sys/dev/cxgb/sys/mvec.h soc2011/shm/sys/dev/cxgb/sys/uipc_mvec.c soc2011/shm/sys/dev/cxgb/t3b_protocol_sram.h soc2011/shm/sys/dev/cxgb/t3b_tp_eeprom.h soc2011/shm/sys/dev/cxgb/t3c_protocol_sram.h soc2011/shm/sys/dev/cxgb/t3c_tp_eeprom.h soc2011/shm/sys/dev/cxgb/t3cdev.h soc2011/shm/sys/dev/cxgb/ulp/ soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/ soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.h soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.h soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cq.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_dbg.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_ev.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_hal.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_hal.h soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_mem.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.h soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_resource.c soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_resource.h soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_user.h soc2011/shm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_wr.h soc2011/shm/sys/dev/cxgb/ulp/toecore/ soc2011/shm/sys/dev/cxgb/ulp/toecore/cxgb_toedev.h soc2011/shm/sys/dev/cxgb/ulp/toecore/toedev.c soc2011/shm/sys/dev/cxgb/ulp/tom/ soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_cpl_socket.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_ddp.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_defs.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_l2t.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_l2t.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_listen.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_t3_ddp.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_tcp.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_tcp_offload.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_tcp_offload.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_toepcb.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_tom.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_tom.h soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_tom_sysctl.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_vm.c soc2011/shm/sys/dev/cxgb/ulp/tom/cxgb_vm.h soc2011/shm/sys/dev/cy/ soc2011/shm/sys/dev/cy/cy.c soc2011/shm/sys/dev/cy/cy_isa.c soc2011/shm/sys/dev/cy/cy_pci.c soc2011/shm/sys/dev/cy/cyreg.h soc2011/shm/sys/dev/cy/cyvar.h soc2011/shm/sys/dev/dc/ soc2011/shm/sys/dev/dc/dcphy.c soc2011/shm/sys/dev/dc/if_dc.c soc2011/shm/sys/dev/dc/if_dcreg.h soc2011/shm/sys/dev/dc/pnphy.c soc2011/shm/sys/dev/dcons/ soc2011/shm/sys/dev/dcons/dcons.c soc2011/shm/sys/dev/dcons/dcons.h soc2011/shm/sys/dev/dcons/dcons_crom.c soc2011/shm/sys/dev/dcons/dcons_os.c soc2011/shm/sys/dev/dcons/dcons_os.h soc2011/shm/sys/dev/de/ soc2011/shm/sys/dev/de/dc21040reg.h soc2011/shm/sys/dev/de/if_de.c soc2011/shm/sys/dev/de/if_devar.h soc2011/shm/sys/dev/digi/ soc2011/shm/sys/dev/digi/CX.bios.h soc2011/shm/sys/dev/digi/CX.c soc2011/shm/sys/dev/digi/CX.fepos.h soc2011/shm/sys/dev/digi/CX_PCI.bios.h soc2011/shm/sys/dev/digi/CX_PCI.c soc2011/shm/sys/dev/digi/CX_PCI.fepos.h soc2011/shm/sys/dev/digi/EPCX.bios.h soc2011/shm/sys/dev/digi/EPCX.c soc2011/shm/sys/dev/digi/EPCX.fepos.h soc2011/shm/sys/dev/digi/EPCX_PCI.bios.h soc2011/shm/sys/dev/digi/EPCX_PCI.c soc2011/shm/sys/dev/digi/EPCX_PCI.fepos.h soc2011/shm/sys/dev/digi/Xe.bios.h soc2011/shm/sys/dev/digi/Xe.c soc2011/shm/sys/dev/digi/Xe.fepos.h soc2011/shm/sys/dev/digi/Xem.bios.h soc2011/shm/sys/dev/digi/Xem.c soc2011/shm/sys/dev/digi/Xem.fepos.h soc2011/shm/sys/dev/digi/Xr.bios.h soc2011/shm/sys/dev/digi/Xr.c soc2011/shm/sys/dev/digi/Xr.fepos.h soc2011/shm/sys/dev/digi/digi.c soc2011/shm/sys/dev/digi/digi.h soc2011/shm/sys/dev/digi/digi_isa.c soc2011/shm/sys/dev/digi/digi_mod.h soc2011/shm/sys/dev/digi/digi_pci.c soc2011/shm/sys/dev/digi/digi_pci.h soc2011/shm/sys/dev/digi/digireg.h soc2011/shm/sys/dev/dpms/ soc2011/shm/sys/dev/dpms/dpms.c soc2011/shm/sys/dev/dpt/ soc2011/shm/sys/dev/dpt/dpt.h soc2011/shm/sys/dev/dpt/dpt_eisa.c soc2011/shm/sys/dev/dpt/dpt_isa.c soc2011/shm/sys/dev/dpt/dpt_pci.c soc2011/shm/sys/dev/dpt/dpt_scsi.c soc2011/shm/sys/dev/drm/ soc2011/shm/sys/dev/drm/ati_pcigart.c soc2011/shm/sys/dev/drm/drm-preprocess.sh soc2011/shm/sys/dev/drm/drm-subprocess.pl soc2011/shm/sys/dev/drm/drm.h soc2011/shm/sys/dev/drm/drmP.h soc2011/shm/sys/dev/drm/drm_agpsupport.c soc2011/shm/sys/dev/drm/drm_atomic.h soc2011/shm/sys/dev/drm/drm_auth.c soc2011/shm/sys/dev/drm/drm_bufs.c soc2011/shm/sys/dev/drm/drm_context.c soc2011/shm/sys/dev/drm/drm_dma.c soc2011/shm/sys/dev/drm/drm_drawable.c soc2011/shm/sys/dev/drm/drm_drv.c soc2011/shm/sys/dev/drm/drm_fops.c soc2011/shm/sys/dev/drm/drm_internal.h soc2011/shm/sys/dev/drm/drm_ioctl.c soc2011/shm/sys/dev/drm/drm_irq.c soc2011/shm/sys/dev/drm/drm_linux_list.h soc2011/shm/sys/dev/drm/drm_lock.c soc2011/shm/sys/dev/drm/drm_memory.c soc2011/shm/sys/dev/drm/drm_pci.c soc2011/shm/sys/dev/drm/drm_pciids.h soc2011/shm/sys/dev/drm/drm_sarea.h soc2011/shm/sys/dev/drm/drm_scatter.c soc2011/shm/sys/dev/drm/drm_sysctl.c soc2011/shm/sys/dev/drm/drm_vm.c soc2011/shm/sys/dev/drm/i915_dma.c soc2011/shm/sys/dev/drm/i915_drm.h soc2011/shm/sys/dev/drm/i915_drv.c soc2011/shm/sys/dev/drm/i915_drv.h soc2011/shm/sys/dev/drm/i915_irq.c soc2011/shm/sys/dev/drm/i915_mem.c soc2011/shm/sys/dev/drm/i915_reg.h soc2011/shm/sys/dev/drm/i915_suspend.c soc2011/shm/sys/dev/drm/mach64_dma.c soc2011/shm/sys/dev/drm/mach64_drm.h soc2011/shm/sys/dev/drm/mach64_drv.c soc2011/shm/sys/dev/drm/mach64_drv.h soc2011/shm/sys/dev/drm/mach64_irq.c soc2011/shm/sys/dev/drm/mach64_state.c soc2011/shm/sys/dev/drm/mga_dma.c soc2011/shm/sys/dev/drm/mga_drm.h soc2011/shm/sys/dev/drm/mga_drv.c soc2011/shm/sys/dev/drm/mga_drv.h soc2011/shm/sys/dev/drm/mga_irq.c soc2011/shm/sys/dev/drm/mga_state.c soc2011/shm/sys/dev/drm/mga_ucode.h soc2011/shm/sys/dev/drm/mga_warp.c soc2011/shm/sys/dev/drm/r128_cce.c soc2011/shm/sys/dev/drm/r128_drm.h soc2011/shm/sys/dev/drm/r128_drv.c soc2011/shm/sys/dev/drm/r128_drv.h soc2011/shm/sys/dev/drm/r128_irq.c soc2011/shm/sys/dev/drm/r128_state.c soc2011/shm/sys/dev/drm/r300_cmdbuf.c soc2011/shm/sys/dev/drm/r300_reg.h soc2011/shm/sys/dev/drm/r600_blit.c soc2011/shm/sys/dev/drm/r600_cp.c soc2011/shm/sys/dev/drm/r600_microcode.h soc2011/shm/sys/dev/drm/radeon_cp.c soc2011/shm/sys/dev/drm/radeon_cs.c soc2011/shm/sys/dev/drm/radeon_drm.h soc2011/shm/sys/dev/drm/radeon_drv.c soc2011/shm/sys/dev/drm/radeon_drv.h soc2011/shm/sys/dev/drm/radeon_irq.c soc2011/shm/sys/dev/drm/radeon_mem.c soc2011/shm/sys/dev/drm/radeon_microcode.h soc2011/shm/sys/dev/drm/radeon_state.c soc2011/shm/sys/dev/drm/savage_bci.c soc2011/shm/sys/dev/drm/savage_drm.h soc2011/shm/sys/dev/drm/savage_drv.c soc2011/shm/sys/dev/drm/savage_drv.h soc2011/shm/sys/dev/drm/savage_state.c soc2011/shm/sys/dev/drm/sis_drm.h soc2011/shm/sys/dev/drm/sis_drv.c soc2011/shm/sys/dev/drm/sis_drv.h soc2011/shm/sys/dev/drm/sis_ds.c soc2011/shm/sys/dev/drm/sis_ds.h soc2011/shm/sys/dev/drm/sis_mm.c soc2011/shm/sys/dev/drm/tdfx_drv.c soc2011/shm/sys/dev/drm/tdfx_drv.h soc2011/shm/sys/dev/e1000/ soc2011/shm/sys/dev/e1000/LICENSE soc2011/shm/sys/dev/e1000/README soc2011/shm/sys/dev/e1000/e1000_80003es2lan.c soc2011/shm/sys/dev/e1000/e1000_80003es2lan.h soc2011/shm/sys/dev/e1000/e1000_82540.c soc2011/shm/sys/dev/e1000/e1000_82541.c soc2011/shm/sys/dev/e1000/e1000_82541.h soc2011/shm/sys/dev/e1000/e1000_82542.c soc2011/shm/sys/dev/e1000/e1000_82543.c soc2011/shm/sys/dev/e1000/e1000_82543.h soc2011/shm/sys/dev/e1000/e1000_82571.c soc2011/shm/sys/dev/e1000/e1000_82571.h soc2011/shm/sys/dev/e1000/e1000_82575.c soc2011/shm/sys/dev/e1000/e1000_82575.h soc2011/shm/sys/dev/e1000/e1000_api.c soc2011/shm/sys/dev/e1000/e1000_api.h soc2011/shm/sys/dev/e1000/e1000_defines.h soc2011/shm/sys/dev/e1000/e1000_hw.h soc2011/shm/sys/dev/e1000/e1000_ich8lan.c soc2011/shm/sys/dev/e1000/e1000_ich8lan.h soc2011/shm/sys/dev/e1000/e1000_mac.c soc2011/shm/sys/dev/e1000/e1000_mac.h soc2011/shm/sys/dev/e1000/e1000_manage.c soc2011/shm/sys/dev/e1000/e1000_manage.h soc2011/shm/sys/dev/e1000/e1000_nvm.c soc2011/shm/sys/dev/e1000/e1000_nvm.h soc2011/shm/sys/dev/e1000/e1000_osdep.c soc2011/shm/sys/dev/e1000/e1000_osdep.h soc2011/shm/sys/dev/e1000/e1000_phy.c soc2011/shm/sys/dev/e1000/e1000_phy.h soc2011/shm/sys/dev/e1000/e1000_regs.h soc2011/shm/sys/dev/e1000/if_em.c soc2011/shm/sys/dev/e1000/if_em.h soc2011/shm/sys/dev/e1000/if_igb.c soc2011/shm/sys/dev/e1000/if_igb.h soc2011/shm/sys/dev/e1000/if_lem.c soc2011/shm/sys/dev/e1000/if_lem.h soc2011/shm/sys/dev/ed/ soc2011/shm/sys/dev/ed/ax88x90reg.h soc2011/shm/sys/dev/ed/dl100xxreg.h soc2011/shm/sys/dev/ed/if_ed.c soc2011/shm/sys/dev/ed/if_ed98.h soc2011/shm/sys/dev/ed/if_ed_3c503.c soc2011/shm/sys/dev/ed/if_ed_cbus.c soc2011/shm/sys/dev/ed/if_ed_hpp.c soc2011/shm/sys/dev/ed/if_ed_isa.c soc2011/shm/sys/dev/ed/if_ed_novell.c soc2011/shm/sys/dev/ed/if_ed_pccard.c soc2011/shm/sys/dev/ed/if_ed_pci.c soc2011/shm/sys/dev/ed/if_ed_rtl80x9.c soc2011/shm/sys/dev/ed/if_ed_sic.c soc2011/shm/sys/dev/ed/if_ed_wd80x3.c soc2011/shm/sys/dev/ed/if_edreg.h soc2011/shm/sys/dev/ed/if_edvar.h soc2011/shm/sys/dev/ed/rtl80x9reg.h soc2011/shm/sys/dev/ed/tc5299jreg.h soc2011/shm/sys/dev/eisa/ soc2011/shm/sys/dev/eisa/eisa_if.m soc2011/shm/sys/dev/eisa/eisaconf.c soc2011/shm/sys/dev/eisa/eisaconf.h soc2011/shm/sys/dev/en/ soc2011/shm/sys/dev/en/if_en_pci.c soc2011/shm/sys/dev/en/midway.c soc2011/shm/sys/dev/en/midwayreg.h soc2011/shm/sys/dev/en/midwayvar.h soc2011/shm/sys/dev/ep/ soc2011/shm/sys/dev/ep/if_ep.c soc2011/shm/sys/dev/ep/if_ep_eisa.c soc2011/shm/sys/dev/ep/if_ep_isa.c soc2011/shm/sys/dev/ep/if_ep_mca.c soc2011/shm/sys/dev/ep/if_ep_pccard.c soc2011/shm/sys/dev/ep/if_epreg.h soc2011/shm/sys/dev/ep/if_epvar.h soc2011/shm/sys/dev/esp/ soc2011/shm/sys/dev/esp/esp_sbus.c soc2011/shm/sys/dev/esp/ncr53c9x.c soc2011/shm/sys/dev/esp/ncr53c9xreg.h soc2011/shm/sys/dev/esp/ncr53c9xvar.h soc2011/shm/sys/dev/et/ soc2011/shm/sys/dev/et/if_et.c soc2011/shm/sys/dev/et/if_etreg.h soc2011/shm/sys/dev/et/if_etvar.h soc2011/shm/sys/dev/ex/ soc2011/shm/sys/dev/ex/if_ex.c soc2011/shm/sys/dev/ex/if_ex_isa.c soc2011/shm/sys/dev/ex/if_ex_pccard.c soc2011/shm/sys/dev/ex/if_exreg.h soc2011/shm/sys/dev/ex/if_exvar.h soc2011/shm/sys/dev/exca/ soc2011/shm/sys/dev/exca/exca.c soc2011/shm/sys/dev/exca/excareg.h soc2011/shm/sys/dev/exca/excavar.h soc2011/shm/sys/dev/fatm/ soc2011/shm/sys/dev/fatm/firmware.h soc2011/shm/sys/dev/fatm/if_fatm.c soc2011/shm/sys/dev/fatm/if_fatm_rate.h soc2011/shm/sys/dev/fatm/if_fatmreg.h soc2011/shm/sys/dev/fatm/if_fatmvar.h soc2011/shm/sys/dev/fb/ soc2011/shm/sys/dev/fb/boot_font.c soc2011/shm/sys/dev/fb/creator.c soc2011/shm/sys/dev/fb/creatorreg.h soc2011/shm/sys/dev/fb/fb.c soc2011/shm/sys/dev/fb/fbreg.h soc2011/shm/sys/dev/fb/gallant12x22.c soc2011/shm/sys/dev/fb/gfb.h soc2011/shm/sys/dev/fb/machfb.c soc2011/shm/sys/dev/fb/machfbreg.h soc2011/shm/sys/dev/fb/s3_pci.c soc2011/shm/sys/dev/fb/splash.c soc2011/shm/sys/dev/fb/splash_bmp.c soc2011/shm/sys/dev/fb/splash_pcx.c soc2011/shm/sys/dev/fb/splashreg.h soc2011/shm/sys/dev/fb/vesa.c soc2011/shm/sys/dev/fb/vesa.h soc2011/shm/sys/dev/fb/vga.c soc2011/shm/sys/dev/fb/vgareg.h soc2011/shm/sys/dev/fdc/ soc2011/shm/sys/dev/fdc/fdc.c soc2011/shm/sys/dev/fdc/fdc_acpi.c soc2011/shm/sys/dev/fdc/fdc_isa.c soc2011/shm/sys/dev/fdc/fdc_pccard.c soc2011/shm/sys/dev/fdc/fdcvar.h soc2011/shm/sys/dev/fe/ soc2011/shm/sys/dev/fe/if_fe.c soc2011/shm/sys/dev/fe/if_fe_cbus.c soc2011/shm/sys/dev/fe/if_fe_isa.c soc2011/shm/sys/dev/fe/if_fe_pccard.c soc2011/shm/sys/dev/fe/if_fereg.h soc2011/shm/sys/dev/fe/if_fevar.h soc2011/shm/sys/dev/fe/mb86960.h soc2011/shm/sys/dev/firewire/ soc2011/shm/sys/dev/firewire/00README soc2011/shm/sys/dev/firewire/firewire.c soc2011/shm/sys/dev/firewire/firewire.h soc2011/shm/sys/dev/firewire/firewire_phy.h soc2011/shm/sys/dev/firewire/firewirereg.h soc2011/shm/sys/dev/firewire/fwcrom.c soc2011/shm/sys/dev/firewire/fwdev.c soc2011/shm/sys/dev/firewire/fwdma.c soc2011/shm/sys/dev/firewire/fwdma.h soc2011/shm/sys/dev/firewire/fwmem.c soc2011/shm/sys/dev/firewire/fwmem.h soc2011/shm/sys/dev/firewire/fwohci.c soc2011/shm/sys/dev/firewire/fwohci_pci.c soc2011/shm/sys/dev/firewire/fwohcireg.h soc2011/shm/sys/dev/firewire/fwohcivar.h soc2011/shm/sys/dev/firewire/fwphyreg.h soc2011/shm/sys/dev/firewire/iec13213.h soc2011/shm/sys/dev/firewire/iec68113.h soc2011/shm/sys/dev/firewire/if_fwe.c soc2011/shm/sys/dev/firewire/if_fwevar.h soc2011/shm/sys/dev/firewire/if_fwip.c soc2011/shm/sys/dev/firewire/if_fwipvar.h soc2011/shm/sys/dev/firewire/sbp.c soc2011/shm/sys/dev/firewire/sbp.h soc2011/shm/sys/dev/firewire/sbp_targ.c soc2011/shm/sys/dev/flash/ soc2011/shm/sys/dev/flash/at45d.c soc2011/shm/sys/dev/fxp/ soc2011/shm/sys/dev/fxp/if_fxp.c soc2011/shm/sys/dev/fxp/if_fxpreg.h soc2011/shm/sys/dev/fxp/if_fxpvar.h soc2011/shm/sys/dev/fxp/rcvbundl.h soc2011/shm/sys/dev/gem/ soc2011/shm/sys/dev/gem/if_gem.c soc2011/shm/sys/dev/gem/if_gem_pci.c soc2011/shm/sys/dev/gem/if_gem_sbus.c soc2011/shm/sys/dev/gem/if_gemreg.h soc2011/shm/sys/dev/gem/if_gemvar.h soc2011/shm/sys/dev/glxsb/ soc2011/shm/sys/dev/glxsb/glxsb.c soc2011/shm/sys/dev/glxsb/glxsb.h soc2011/shm/sys/dev/glxsb/glxsb_hash.c soc2011/shm/sys/dev/hatm/ soc2011/shm/sys/dev/hatm/if_hatm.c soc2011/shm/sys/dev/hatm/if_hatm_intr.c soc2011/shm/sys/dev/hatm/if_hatm_ioctl.c soc2011/shm/sys/dev/hatm/if_hatm_rx.c soc2011/shm/sys/dev/hatm/if_hatm_tx.c soc2011/shm/sys/dev/hatm/if_hatmconf.h soc2011/shm/sys/dev/hatm/if_hatmreg.h soc2011/shm/sys/dev/hatm/if_hatmvar.h soc2011/shm/sys/dev/hifn/ soc2011/shm/sys/dev/hifn/hifn7751.c soc2011/shm/sys/dev/hifn/hifn7751reg.h soc2011/shm/sys/dev/hifn/hifn7751var.h soc2011/shm/sys/dev/hme/ soc2011/shm/sys/dev/hme/if_hme.c soc2011/shm/sys/dev/hme/if_hme_pci.c soc2011/shm/sys/dev/hme/if_hme_sbus.c soc2011/shm/sys/dev/hme/if_hmereg.h soc2011/shm/sys/dev/hme/if_hmevar.h soc2011/shm/sys/dev/hptiop/ soc2011/shm/sys/dev/hptiop/hptiop.c soc2011/shm/sys/dev/hptiop/hptiop.h soc2011/shm/sys/dev/hptmv/ soc2011/shm/sys/dev/hptmv/access601.h soc2011/shm/sys/dev/hptmv/amd64-elf.raid.o.uu soc2011/shm/sys/dev/hptmv/array.h soc2011/shm/sys/dev/hptmv/atapi.h soc2011/shm/sys/dev/hptmv/command.h soc2011/shm/sys/dev/hptmv/entry.c soc2011/shm/sys/dev/hptmv/global.h soc2011/shm/sys/dev/hptmv/gui_lib.c soc2011/shm/sys/dev/hptmv/hptintf.h soc2011/shm/sys/dev/hptmv/hptproc.c soc2011/shm/sys/dev/hptmv/i386-elf.raid.o.uu soc2011/shm/sys/dev/hptmv/ioctl.c soc2011/shm/sys/dev/hptmv/mv.c soc2011/shm/sys/dev/hptmv/mvOs.h soc2011/shm/sys/dev/hptmv/mvSata.h soc2011/shm/sys/dev/hptmv/mvStorageDev.h soc2011/shm/sys/dev/hptmv/osbsd.h soc2011/shm/sys/dev/hptmv/raid5n.h soc2011/shm/sys/dev/hptmv/readme.txt soc2011/shm/sys/dev/hptmv/vdevice.h soc2011/shm/sys/dev/hptrr/ soc2011/shm/sys/dev/hptrr/amd64-elf.hptrr_lib.o.uu soc2011/shm/sys/dev/hptrr/array.h soc2011/shm/sys/dev/hptrr/him.h soc2011/shm/sys/dev/hptrr/himfuncs.h soc2011/shm/sys/dev/hptrr/hptintf.h soc2011/shm/sys/dev/hptrr/hptrr_config.c soc2011/shm/sys/dev/hptrr/hptrr_config.h soc2011/shm/sys/dev/hptrr/hptrr_os_bsd.c soc2011/shm/sys/dev/hptrr/hptrr_osm_bsd.c soc2011/shm/sys/dev/hptrr/i386-elf.hptrr_lib.o.uu soc2011/shm/sys/dev/hptrr/ldm.h soc2011/shm/sys/dev/hptrr/list.h soc2011/shm/sys/dev/hptrr/os_bsd.h soc2011/shm/sys/dev/hptrr/osm.h soc2011/shm/sys/dev/hwpmc/ soc2011/shm/sys/dev/hwpmc/hwpmc_amd.c soc2011/shm/sys/dev/hwpmc/hwpmc_amd.h soc2011/shm/sys/dev/hwpmc/hwpmc_arm.c soc2011/shm/sys/dev/hwpmc/hwpmc_core.c soc2011/shm/sys/dev/hwpmc/hwpmc_core.h soc2011/shm/sys/dev/hwpmc/hwpmc_ia64.c soc2011/shm/sys/dev/hwpmc/hwpmc_intel.c soc2011/shm/sys/dev/hwpmc/hwpmc_logging.c soc2011/shm/sys/dev/hwpmc/hwpmc_mod.c soc2011/shm/sys/dev/hwpmc/hwpmc_pentium.c soc2011/shm/sys/dev/hwpmc/hwpmc_pentium.h soc2011/shm/sys/dev/hwpmc/hwpmc_piv.c soc2011/shm/sys/dev/hwpmc/hwpmc_piv.h soc2011/shm/sys/dev/hwpmc/hwpmc_powerpc.c soc2011/shm/sys/dev/hwpmc/hwpmc_ppro.c soc2011/shm/sys/dev/hwpmc/hwpmc_ppro.h soc2011/shm/sys/dev/hwpmc/hwpmc_sparc64.c soc2011/shm/sys/dev/hwpmc/hwpmc_tsc.c soc2011/shm/sys/dev/hwpmc/hwpmc_tsc.h soc2011/shm/sys/dev/hwpmc/hwpmc_uncore.c soc2011/shm/sys/dev/hwpmc/hwpmc_uncore.h soc2011/shm/sys/dev/hwpmc/hwpmc_x86.c soc2011/shm/sys/dev/hwpmc/pmc_events.h soc2011/shm/sys/dev/ic/ soc2011/shm/sys/dev/ic/cd1400.h soc2011/shm/sys/dev/ic/cd180.h soc2011/shm/sys/dev/ic/esp.h soc2011/shm/sys/dev/ic/hd64570.h soc2011/shm/sys/dev/ic/i8237.h soc2011/shm/sys/dev/ic/i8251.h soc2011/shm/sys/dev/ic/i8253reg.h soc2011/shm/sys/dev/ic/i8255.h soc2011/shm/sys/dev/ic/i82586.h soc2011/shm/sys/dev/ic/i8259.h soc2011/shm/sys/dev/ic/nec765.h soc2011/shm/sys/dev/ic/ns16550.h soc2011/shm/sys/dev/ic/quicc.h soc2011/shm/sys/dev/ic/rsa.h soc2011/shm/sys/dev/ic/sab82532.h soc2011/shm/sys/dev/ic/via6522reg.h soc2011/shm/sys/dev/ic/wd33c93reg.h soc2011/shm/sys/dev/ic/z8530.h soc2011/shm/sys/dev/ichsmb/ soc2011/shm/sys/dev/ichsmb/ichsmb.c soc2011/shm/sys/dev/ichsmb/ichsmb_pci.c soc2011/shm/sys/dev/ichsmb/ichsmb_reg.h soc2011/shm/sys/dev/ichsmb/ichsmb_var.h soc2011/shm/sys/dev/ichwd/ soc2011/shm/sys/dev/ichwd/ichwd.c soc2011/shm/sys/dev/ichwd/ichwd.h soc2011/shm/sys/dev/ida/ soc2011/shm/sys/dev/ida/ida.c soc2011/shm/sys/dev/ida/ida_disk.c soc2011/shm/sys/dev/ida/ida_eisa.c soc2011/shm/sys/dev/ida/ida_pci.c soc2011/shm/sys/dev/ida/idaio.h soc2011/shm/sys/dev/ida/idareg.h soc2011/shm/sys/dev/ida/idavar.h soc2011/shm/sys/dev/ie/ soc2011/shm/sys/dev/ie/if_ie.c soc2011/shm/sys/dev/ie/if_ie507.h soc2011/shm/sys/dev/ie/if_ie_isa.c soc2011/shm/sys/dev/ie/if_iee16.h soc2011/shm/sys/dev/ie/if_iereg.h soc2011/shm/sys/dev/ie/if_ievar.h soc2011/shm/sys/dev/ieee488/ soc2011/shm/sys/dev/ieee488/ibfoo.c soc2011/shm/sys/dev/ieee488/ibfoo_int.h soc2011/shm/sys/dev/ieee488/pcii.c soc2011/shm/sys/dev/ieee488/tnt4882.c soc2011/shm/sys/dev/ieee488/tnt4882.h soc2011/shm/sys/dev/ieee488/ugpib.h soc2011/shm/sys/dev/ieee488/upd7210.c soc2011/shm/sys/dev/ieee488/upd7210.h soc2011/shm/sys/dev/if_ndis/ soc2011/shm/sys/dev/if_ndis/if_ndis.c soc2011/shm/sys/dev/if_ndis/if_ndis_pccard.c soc2011/shm/sys/dev/if_ndis/if_ndis_pci.c soc2011/shm/sys/dev/if_ndis/if_ndis_usb.c soc2011/shm/sys/dev/if_ndis/if_ndisvar.h soc2011/shm/sys/dev/iicbus/ soc2011/shm/sys/dev/iicbus/ad7418.c soc2011/shm/sys/dev/iicbus/ds133x.c soc2011/shm/sys/dev/iicbus/ds1672.c soc2011/shm/sys/dev/iicbus/icee.c soc2011/shm/sys/dev/iicbus/if_ic.c soc2011/shm/sys/dev/iicbus/iic.c soc2011/shm/sys/dev/iicbus/iic.h soc2011/shm/sys/dev/iicbus/iicbb.c soc2011/shm/sys/dev/iicbus/iicbb_if.m soc2011/shm/sys/dev/iicbus/iicbus.c soc2011/shm/sys/dev/iicbus/iicbus.h soc2011/shm/sys/dev/iicbus/iicbus_if.m soc2011/shm/sys/dev/iicbus/iiconf.c soc2011/shm/sys/dev/iicbus/iiconf.h soc2011/shm/sys/dev/iicbus/iicsmb.c soc2011/shm/sys/dev/iir/ soc2011/shm/sys/dev/iir/iir.c soc2011/shm/sys/dev/iir/iir.h soc2011/shm/sys/dev/iir/iir_ctrl.c soc2011/shm/sys/dev/iir/iir_pci.c soc2011/shm/sys/dev/io/ soc2011/shm/sys/dev/io/iodev.c soc2011/shm/sys/dev/io/iodev.h soc2011/shm/sys/dev/ipmi/ soc2011/shm/sys/dev/ipmi/ipmi.c soc2011/shm/sys/dev/ipmi/ipmi_acpi.c soc2011/shm/sys/dev/ipmi/ipmi_isa.c soc2011/shm/sys/dev/ipmi/ipmi_kcs.c soc2011/shm/sys/dev/ipmi/ipmi_linux.c soc2011/shm/sys/dev/ipmi/ipmi_pci.c soc2011/shm/sys/dev/ipmi/ipmi_smbios.c soc2011/shm/sys/dev/ipmi/ipmi_smbus.c soc2011/shm/sys/dev/ipmi/ipmi_smic.c soc2011/shm/sys/dev/ipmi/ipmi_ssif.c soc2011/shm/sys/dev/ipmi/ipmivars.h soc2011/shm/sys/dev/ips/ soc2011/shm/sys/dev/ips/ips.c soc2011/shm/sys/dev/ips/ips.h soc2011/shm/sys/dev/ips/ips_commands.c soc2011/shm/sys/dev/ips/ips_disk.c soc2011/shm/sys/dev/ips/ips_disk.h soc2011/shm/sys/dev/ips/ips_ioctl.c soc2011/shm/sys/dev/ips/ips_ioctl.h soc2011/shm/sys/dev/ips/ips_pci.c soc2011/shm/sys/dev/ips/ipsreg.h soc2011/shm/sys/dev/ipw/ soc2011/shm/sys/dev/ipw/if_ipw.c soc2011/shm/sys/dev/ipw/if_ipwreg.h soc2011/shm/sys/dev/ipw/if_ipwvar.h soc2011/shm/sys/dev/iscsi/ soc2011/shm/sys/dev/iscsi/initiator/ soc2011/shm/sys/dev/iscsi/initiator/isc_cam.c soc2011/shm/sys/dev/iscsi/initiator/isc_sm.c soc2011/shm/sys/dev/iscsi/initiator/isc_soc.c soc2011/shm/sys/dev/iscsi/initiator/isc_subr.c soc2011/shm/sys/dev/iscsi/initiator/iscsi.c soc2011/shm/sys/dev/iscsi/initiator/iscsi.h soc2011/shm/sys/dev/iscsi/initiator/iscsi_subr.c soc2011/shm/sys/dev/iscsi/initiator/iscsivar.h soc2011/shm/sys/dev/isp/ soc2011/shm/sys/dev/isp/DriverManual.txt soc2011/shm/sys/dev/isp/Hardware.txt soc2011/shm/sys/dev/isp/isp.c soc2011/shm/sys/dev/isp/isp_freebsd.c soc2011/shm/sys/dev/isp/isp_freebsd.h soc2011/shm/sys/dev/isp/isp_ioctl.h soc2011/shm/sys/dev/isp/isp_library.c soc2011/shm/sys/dev/isp/isp_library.h soc2011/shm/sys/dev/isp/isp_pci.c soc2011/shm/sys/dev/isp/isp_sbus.c soc2011/shm/sys/dev/isp/isp_stds.h soc2011/shm/sys/dev/isp/isp_target.c soc2011/shm/sys/dev/isp/isp_target.h soc2011/shm/sys/dev/isp/ispmbox.h soc2011/shm/sys/dev/isp/ispreg.h soc2011/shm/sys/dev/isp/ispvar.h soc2011/shm/sys/dev/ispfw/ soc2011/shm/sys/dev/ispfw/asm_1000.h soc2011/shm/sys/dev/ispfw/asm_1040.h soc2011/shm/sys/dev/ispfw/asm_1080.h soc2011/shm/sys/dev/ispfw/asm_12160.h soc2011/shm/sys/dev/ispfw/asm_2100.h soc2011/shm/sys/dev/ispfw/asm_2200.h soc2011/shm/sys/dev/ispfw/asm_2300.h soc2011/shm/sys/dev/ispfw/asm_2322.h soc2011/shm/sys/dev/ispfw/asm_2400.h soc2011/shm/sys/dev/ispfw/asm_2500.h soc2011/shm/sys/dev/ispfw/ispfw.c soc2011/shm/sys/dev/iwi/ soc2011/shm/sys/dev/iwi/if_iwi.c soc2011/shm/sys/dev/iwi/if_iwireg.h soc2011/shm/sys/dev/iwi/if_iwivar.h soc2011/shm/sys/dev/iwn/ soc2011/shm/sys/dev/iwn/if_iwn.c soc2011/shm/sys/dev/iwn/if_iwnreg.h soc2011/shm/sys/dev/iwn/if_iwnvar.h soc2011/shm/sys/dev/ixgb/ soc2011/shm/sys/dev/ixgb/LICENSE soc2011/shm/sys/dev/ixgb/README soc2011/shm/sys/dev/ixgb/if_ixgb.c soc2011/shm/sys/dev/ixgb/if_ixgb.h soc2011/shm/sys/dev/ixgb/if_ixgb_osdep.h soc2011/shm/sys/dev/ixgb/ixgb_ee.c soc2011/shm/sys/dev/ixgb/ixgb_ee.h soc2011/shm/sys/dev/ixgb/ixgb_hw.c soc2011/shm/sys/dev/ixgb/ixgb_hw.h soc2011/shm/sys/dev/ixgb/ixgb_ids.h soc2011/shm/sys/dev/ixgbe/ soc2011/shm/sys/dev/ixgbe/LICENSE soc2011/shm/sys/dev/ixgbe/README soc2011/shm/sys/dev/ixgbe/ixgbe.c soc2011/shm/sys/dev/ixgbe/ixgbe.h soc2011/shm/sys/dev/ixgbe/ixgbe_82598.c soc2011/shm/sys/dev/ixgbe/ixgbe_82599.c soc2011/shm/sys/dev/ixgbe/ixgbe_api.c soc2011/shm/sys/dev/ixgbe/ixgbe_api.h soc2011/shm/sys/dev/ixgbe/ixgbe_common.c soc2011/shm/sys/dev/ixgbe/ixgbe_common.h soc2011/shm/sys/dev/ixgbe/ixgbe_osdep.h soc2011/shm/sys/dev/ixgbe/ixgbe_phy.c soc2011/shm/sys/dev/ixgbe/ixgbe_phy.h soc2011/shm/sys/dev/ixgbe/ixgbe_type.h soc2011/shm/sys/dev/jme/ soc2011/shm/sys/dev/jme/if_jme.c soc2011/shm/sys/dev/jme/if_jmereg.h soc2011/shm/sys/dev/jme/if_jmevar.h soc2011/shm/sys/dev/joy/ soc2011/shm/sys/dev/joy/joy.c soc2011/shm/sys/dev/joy/joy_isa.c soc2011/shm/sys/dev/joy/joy_pccard.c soc2011/shm/sys/dev/joy/joyvar.h soc2011/shm/sys/dev/kbd/ soc2011/shm/sys/dev/kbd/kbd.c soc2011/shm/sys/dev/kbd/kbdreg.h soc2011/shm/sys/dev/kbd/kbdtables.h soc2011/shm/sys/dev/kbdmux/ soc2011/shm/sys/dev/kbdmux/kbdmux.c soc2011/shm/sys/dev/ksyms/ soc2011/shm/sys/dev/ksyms/ksyms.c soc2011/shm/sys/dev/le/ soc2011/shm/sys/dev/le/am7990.c soc2011/shm/sys/dev/le/am79900.c soc2011/shm/sys/dev/le/am79900reg.h soc2011/shm/sys/dev/le/am79900var.h soc2011/shm/sys/dev/le/am7990reg.h soc2011/shm/sys/dev/le/am7990var.h soc2011/shm/sys/dev/le/if_le_cbus.c soc2011/shm/sys/dev/le/if_le_isa.c soc2011/shm/sys/dev/le/if_le_lebuffer.c soc2011/shm/sys/dev/le/if_le_ledma.c soc2011/shm/sys/dev/le/if_le_pci.c soc2011/shm/sys/dev/le/lance.c soc2011/shm/sys/dev/le/lancereg.h soc2011/shm/sys/dev/le/lancevar.h soc2011/shm/sys/dev/le/lebuffer_sbus.c soc2011/shm/sys/dev/led/ soc2011/shm/sys/dev/led/led.c soc2011/shm/sys/dev/led/led.h soc2011/shm/sys/dev/lge/ soc2011/shm/sys/dev/lge/if_lge.c soc2011/shm/sys/dev/lge/if_lgereg.h soc2011/shm/sys/dev/lindev/ soc2011/shm/sys/dev/lindev/full.c soc2011/shm/sys/dev/lindev/lindev.c soc2011/shm/sys/dev/lindev/lindev.h soc2011/shm/sys/dev/lmc/ soc2011/shm/sys/dev/lmc/if_lmc.c soc2011/shm/sys/dev/lmc/if_lmc.h soc2011/shm/sys/dev/malo/ soc2011/shm/sys/dev/malo/if_malo.c soc2011/shm/sys/dev/malo/if_malo.h soc2011/shm/sys/dev/malo/if_malo_pci.c soc2011/shm/sys/dev/malo/if_malohal.c soc2011/shm/sys/dev/malo/if_malohal.h soc2011/shm/sys/dev/malo/if_maloioctl.h soc2011/shm/sys/dev/mc146818/ soc2011/shm/sys/dev/mc146818/mc146818.c soc2011/shm/sys/dev/mc146818/mc146818reg.h soc2011/shm/sys/dev/mc146818/mc146818var.h soc2011/shm/sys/dev/mca/ soc2011/shm/sys/dev/mca/mca_bus.c soc2011/shm/sys/dev/mca/mca_busreg.h soc2011/shm/sys/dev/mca/mca_busvar.h soc2011/shm/sys/dev/mcd/ soc2011/shm/sys/dev/mcd/mcd.c soc2011/shm/sys/dev/mcd/mcd_isa.c soc2011/shm/sys/dev/mcd/mcdreg.h soc2011/shm/sys/dev/mcd/mcdvar.h soc2011/shm/sys/dev/md/ soc2011/shm/sys/dev/md/md.c soc2011/shm/sys/dev/mem/ soc2011/shm/sys/dev/mem/memdev.c soc2011/shm/sys/dev/mem/memutil.c soc2011/shm/sys/dev/mfi/ soc2011/shm/sys/dev/mfi/mfi.c soc2011/shm/sys/dev/mfi/mfi_cam.c soc2011/shm/sys/dev/mfi/mfi_debug.c soc2011/shm/sys/dev/mfi/mfi_disk.c soc2011/shm/sys/dev/mfi/mfi_ioctl.h soc2011/shm/sys/dev/mfi/mfi_linux.c soc2011/shm/sys/dev/mfi/mfi_pci.c soc2011/shm/sys/dev/mfi/mfireg.h soc2011/shm/sys/dev/mfi/mfivar.h soc2011/shm/sys/dev/mge/ soc2011/shm/sys/dev/mge/if_mge.c soc2011/shm/sys/dev/mge/if_mgevar.h soc2011/shm/sys/dev/mii/ soc2011/shm/sys/dev/mii/acphy.c soc2011/shm/sys/dev/mii/acphyreg.h soc2011/shm/sys/dev/mii/amphy.c soc2011/shm/sys/dev/mii/amphyreg.h soc2011/shm/sys/dev/mii/atphy.c soc2011/shm/sys/dev/mii/atphyreg.h soc2011/shm/sys/dev/mii/axphy.c soc2011/shm/sys/dev/mii/axphyreg.h soc2011/shm/sys/dev/mii/bmtphy.c soc2011/shm/sys/dev/mii/bmtphyreg.h soc2011/shm/sys/dev/mii/brgphy.c soc2011/shm/sys/dev/mii/brgphyreg.h soc2011/shm/sys/dev/mii/ciphy.c soc2011/shm/sys/dev/mii/ciphyreg.h soc2011/shm/sys/dev/mii/e1000phy.c soc2011/shm/sys/dev/mii/e1000phyreg.h soc2011/shm/sys/dev/mii/exphy.c soc2011/shm/sys/dev/mii/gentbi.c soc2011/shm/sys/dev/mii/icsphy.c soc2011/shm/sys/dev/mii/icsphyreg.h soc2011/shm/sys/dev/mii/inphy.c soc2011/shm/sys/dev/mii/inphyreg.h soc2011/shm/sys/dev/mii/ip1000phy.c soc2011/shm/sys/dev/mii/ip1000phyreg.h soc2011/shm/sys/dev/mii/jmphy.c soc2011/shm/sys/dev/mii/jmphyreg.h soc2011/shm/sys/dev/mii/lxtphy.c soc2011/shm/sys/dev/mii/lxtphyreg.h soc2011/shm/sys/dev/mii/mii.c soc2011/shm/sys/dev/mii/mii.h soc2011/shm/sys/dev/mii/mii_physubr.c soc2011/shm/sys/dev/mii/miibus_if.m soc2011/shm/sys/dev/mii/miidevs soc2011/shm/sys/dev/mii/miivar.h soc2011/shm/sys/dev/mii/mlphy.c soc2011/shm/sys/dev/mii/nsgphy.c soc2011/shm/sys/dev/mii/nsgphyreg.h soc2011/shm/sys/dev/mii/nsphy.c soc2011/shm/sys/dev/mii/nsphyreg.h soc2011/shm/sys/dev/mii/nsphyter.c soc2011/shm/sys/dev/mii/nsphyterreg.h soc2011/shm/sys/dev/mii/pnaphy.c soc2011/shm/sys/dev/mii/qsphy.c soc2011/shm/sys/dev/mii/qsphyreg.h soc2011/shm/sys/dev/mii/rgephy.c soc2011/shm/sys/dev/mii/rgephyreg.h soc2011/shm/sys/dev/mii/rlphy.c soc2011/shm/sys/dev/mii/rlswitch.c soc2011/shm/sys/dev/mii/ruephy.c soc2011/shm/sys/dev/mii/ruephyreg.h soc2011/shm/sys/dev/mii/smcphy.c soc2011/shm/sys/dev/mii/tdkphy.c soc2011/shm/sys/dev/mii/tdkphyreg.h soc2011/shm/sys/dev/mii/tlphy.c soc2011/shm/sys/dev/mii/tlphyreg.h soc2011/shm/sys/dev/mii/truephy.c soc2011/shm/sys/dev/mii/truephyreg.h soc2011/shm/sys/dev/mii/ukphy.c soc2011/shm/sys/dev/mii/ukphy_subr.c soc2011/shm/sys/dev/mii/xmphy.c soc2011/shm/sys/dev/mii/xmphyreg.h soc2011/shm/sys/dev/mk48txx/ soc2011/shm/sys/dev/mk48txx/mk48txx.c soc2011/shm/sys/dev/mk48txx/mk48txxreg.h soc2011/shm/sys/dev/mk48txx/mk48txxvar.h soc2011/shm/sys/dev/mlx/ soc2011/shm/sys/dev/mlx/mlx.c soc2011/shm/sys/dev/mlx/mlx_compat.h soc2011/shm/sys/dev/mlx/mlx_disk.c soc2011/shm/sys/dev/mlx/mlx_pci.c soc2011/shm/sys/dev/mlx/mlxio.h soc2011/shm/sys/dev/mlx/mlxreg.h soc2011/shm/sys/dev/mlx/mlxvar.h soc2011/shm/sys/dev/mly/ soc2011/shm/sys/dev/mly/mly.c soc2011/shm/sys/dev/mly/mly_tables.h soc2011/shm/sys/dev/mly/mlyio.h soc2011/shm/sys/dev/mly/mlyreg.h soc2011/shm/sys/dev/mly/mlyvar.h soc2011/shm/sys/dev/mmc/ soc2011/shm/sys/dev/mmc/bridge.h soc2011/shm/sys/dev/mmc/mmc.c soc2011/shm/sys/dev/mmc/mmcbr_if.m soc2011/shm/sys/dev/mmc/mmcbrvar.h soc2011/shm/sys/dev/mmc/mmcbus_if.m soc2011/shm/sys/dev/mmc/mmcreg.h soc2011/shm/sys/dev/mmc/mmcsd.c soc2011/shm/sys/dev/mmc/mmcvar.h soc2011/shm/sys/dev/mn/ soc2011/shm/sys/dev/mn/if_mn.c soc2011/shm/sys/dev/mpt/ soc2011/shm/sys/dev/mpt/mpilib/ soc2011/shm/sys/dev/mpt/mpilib/mpi.h soc2011/shm/sys/dev/mpt/mpilib/mpi_cnfg.h soc2011/shm/sys/dev/mpt/mpilib/mpi_fc.h soc2011/shm/sys/dev/mpt/mpilib/mpi_inb.h soc2011/shm/sys/dev/mpt/mpilib/mpi_init.h soc2011/shm/sys/dev/mpt/mpilib/mpi_ioc.h soc2011/shm/sys/dev/mpt/mpilib/mpi_lan.h soc2011/shm/sys/dev/mpt/mpilib/mpi_raid.h soc2011/shm/sys/dev/mpt/mpilib/mpi_sas.h soc2011/shm/sys/dev/mpt/mpilib/mpi_targ.h soc2011/shm/sys/dev/mpt/mpilib/mpi_tool.h soc2011/shm/sys/dev/mpt/mpilib/mpi_type.h soc2011/shm/sys/dev/mpt/mpt.c soc2011/shm/sys/dev/mpt/mpt.h soc2011/shm/sys/dev/mpt/mpt_cam.c soc2011/shm/sys/dev/mpt/mpt_cam.h soc2011/shm/sys/dev/mpt/mpt_debug.c soc2011/shm/sys/dev/mpt/mpt_pci.c soc2011/shm/sys/dev/mpt/mpt_raid.c soc2011/shm/sys/dev/mpt/mpt_raid.h soc2011/shm/sys/dev/mpt/mpt_reg.h soc2011/shm/sys/dev/mpt/mpt_user.c soc2011/shm/sys/dev/mse/ soc2011/shm/sys/dev/mse/mse.c soc2011/shm/sys/dev/mse/mse_cbus.c soc2011/shm/sys/dev/mse/mse_isa.c soc2011/shm/sys/dev/mse/msevar.h soc2011/shm/sys/dev/msk/ soc2011/shm/sys/dev/msk/if_msk.c soc2011/shm/sys/dev/msk/if_mskreg.h soc2011/shm/sys/dev/mvs/ soc2011/shm/sys/dev/mvs/mvs.c soc2011/shm/sys/dev/mvs/mvs.h soc2011/shm/sys/dev/mvs/mvs_if.m soc2011/shm/sys/dev/mvs/mvs_pci.c soc2011/shm/sys/dev/mvs/mvs_soc.c soc2011/shm/sys/dev/mwl/ soc2011/shm/sys/dev/mwl/if_mwl.c soc2011/shm/sys/dev/mwl/if_mwl_pci.c soc2011/shm/sys/dev/mwl/if_mwlioctl.h soc2011/shm/sys/dev/mwl/if_mwlvar.h soc2011/shm/sys/dev/mwl/mwldiag.h soc2011/shm/sys/dev/mwl/mwlhal.c soc2011/shm/sys/dev/mwl/mwlhal.h soc2011/shm/sys/dev/mwl/mwlreg.h soc2011/shm/sys/dev/mxge/ soc2011/shm/sys/dev/mxge/eth_z8e.h soc2011/shm/sys/dev/mxge/ethp_z8e.h soc2011/shm/sys/dev/mxge/if_mxge.c soc2011/shm/sys/dev/mxge/if_mxge_var.h soc2011/shm/sys/dev/mxge/mcp_gen_header.h soc2011/shm/sys/dev/mxge/mxge_eth_z8e.c soc2011/shm/sys/dev/mxge/mxge_ethp_z8e.c soc2011/shm/sys/dev/mxge/mxge_lro.c soc2011/shm/sys/dev/mxge/mxge_mcp.h soc2011/shm/sys/dev/mxge/mxge_rss_eth_z8e.c soc2011/shm/sys/dev/mxge/mxge_rss_ethp_z8e.c soc2011/shm/sys/dev/mxge/rss_eth_z8e.h soc2011/shm/sys/dev/mxge/rss_ethp_z8e.h soc2011/shm/sys/dev/my/ soc2011/shm/sys/dev/my/if_my.c soc2011/shm/sys/dev/my/if_myreg.h soc2011/shm/sys/dev/ncv/ soc2011/shm/sys/dev/ncv/ncr53c500.c soc2011/shm/sys/dev/ncv/ncr53c500_pccard.c soc2011/shm/sys/dev/ncv/ncr53c500hw.h soc2011/shm/sys/dev/ncv/ncr53c500hwtab.h soc2011/shm/sys/dev/ncv/ncr53c500reg.h soc2011/shm/sys/dev/ncv/ncr53c500var.h soc2011/shm/sys/dev/nfe/ soc2011/shm/sys/dev/nfe/if_nfe.c soc2011/shm/sys/dev/nfe/if_nfereg.h soc2011/shm/sys/dev/nfe/if_nfevar.h soc2011/shm/sys/dev/nge/ soc2011/shm/sys/dev/nge/if_nge.c soc2011/shm/sys/dev/nge/if_ngereg.h soc2011/shm/sys/dev/nmdm/ soc2011/shm/sys/dev/nmdm/nmdm.c soc2011/shm/sys/dev/nsp/ soc2011/shm/sys/dev/nsp/nsp.c soc2011/shm/sys/dev/nsp/nsp_pccard.c soc2011/shm/sys/dev/nsp/nspreg.h soc2011/shm/sys/dev/nsp/nspvar.h soc2011/shm/sys/dev/null/ soc2011/shm/sys/dev/null/null.c soc2011/shm/sys/dev/nve/ soc2011/shm/sys/dev/nve/if_nve.c soc2011/shm/sys/dev/nve/if_nvereg.h soc2011/shm/sys/dev/nvram/ soc2011/shm/sys/dev/nvram/nvram.c soc2011/shm/sys/dev/nxge/ soc2011/shm/sys/dev/nxge/if_nxge.c soc2011/shm/sys/dev/nxge/if_nxge.h soc2011/shm/sys/dev/nxge/include/ soc2011/shm/sys/dev/nxge/include/build-version.h soc2011/shm/sys/dev/nxge/include/version.h soc2011/shm/sys/dev/nxge/include/xge-debug.h soc2011/shm/sys/dev/nxge/include/xge-defs.h soc2011/shm/sys/dev/nxge/include/xge-list.h soc2011/shm/sys/dev/nxge/include/xge-os-pal.h soc2011/shm/sys/dev/nxge/include/xge-queue.h soc2011/shm/sys/dev/nxge/include/xgehal-channel.h soc2011/shm/sys/dev/nxge/include/xgehal-config.h soc2011/shm/sys/dev/nxge/include/xgehal-device.h soc2011/shm/sys/dev/nxge/include/xgehal-driver.h soc2011/shm/sys/dev/nxge/include/xgehal-event.h soc2011/shm/sys/dev/nxge/include/xgehal-fifo.h soc2011/shm/sys/dev/nxge/include/xgehal-mgmt.h soc2011/shm/sys/dev/nxge/include/xgehal-mgmtaux.h soc2011/shm/sys/dev/nxge/include/xgehal-mm.h soc2011/shm/sys/dev/nxge/include/xgehal-regs.h soc2011/shm/sys/dev/nxge/include/xgehal-ring.h soc2011/shm/sys/dev/nxge/include/xgehal-stats.h soc2011/shm/sys/dev/nxge/include/xgehal-types.h soc2011/shm/sys/dev/nxge/include/xgehal.h soc2011/shm/sys/dev/nxge/xge-osdep.h soc2011/shm/sys/dev/nxge/xgehal/ soc2011/shm/sys/dev/nxge/xgehal/xge-queue.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-channel-fp.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-channel.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-config.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-device-fp.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-device.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-driver.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-fifo-fp.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-fifo.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-mgmt.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-mgmtaux.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-mm.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-ring-fp.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-ring.c soc2011/shm/sys/dev/nxge/xgehal/xgehal-stats.c soc2011/shm/sys/dev/nxge/xgell-version.h soc2011/shm/sys/dev/ofw/ soc2011/shm/sys/dev/ofw/ofw_bus.h soc2011/shm/sys/dev/ofw/ofw_bus_if.m soc2011/shm/sys/dev/ofw/ofw_bus_subr.c soc2011/shm/sys/dev/ofw/ofw_bus_subr.h soc2011/shm/sys/dev/ofw/ofw_console.c soc2011/shm/sys/dev/ofw/ofw_disk.c soc2011/shm/sys/dev/ofw/ofw_if.m soc2011/shm/sys/dev/ofw/ofw_iicbus.c soc2011/shm/sys/dev/ofw/ofw_pci.h soc2011/shm/sys/dev/ofw/ofw_standard.c soc2011/shm/sys/dev/ofw/ofwvar.h soc2011/shm/sys/dev/ofw/openfirm.c soc2011/shm/sys/dev/ofw/openfirm.h soc2011/shm/sys/dev/ofw/openfirmio.c soc2011/shm/sys/dev/ofw/openfirmio.h soc2011/shm/sys/dev/ofw/openpromio.c soc2011/shm/sys/dev/ofw/openpromio.h soc2011/shm/sys/dev/patm/ soc2011/shm/sys/dev/patm/genrtab/ soc2011/shm/sys/dev/patm/genrtab/Makefile soc2011/shm/sys/dev/patm/genrtab/genrtab.c soc2011/shm/sys/dev/patm/idt77252reg.h soc2011/shm/sys/dev/patm/if_patm.c soc2011/shm/sys/dev/patm/if_patm_attach.c soc2011/shm/sys/dev/patm/if_patm_intr.c soc2011/shm/sys/dev/patm/if_patm_ioctl.c soc2011/shm/sys/dev/patm/if_patm_rtables.c soc2011/shm/sys/dev/patm/if_patm_rx.c soc2011/shm/sys/dev/patm/if_patm_tx.c soc2011/shm/sys/dev/patm/if_patmvar.h soc2011/shm/sys/dev/pbio/ soc2011/shm/sys/dev/pbio/pbio.c soc2011/shm/sys/dev/pbio/pbioio.h soc2011/shm/sys/dev/pccard/ soc2011/shm/sys/dev/pccard/card_if.m soc2011/shm/sys/dev/pccard/pccard.c soc2011/shm/sys/dev/pccard/pccard_cis.c soc2011/shm/sys/dev/pccard/pccard_cis.h soc2011/shm/sys/dev/pccard/pccard_cis_quirks.c soc2011/shm/sys/dev/pccard/pccard_device.c soc2011/shm/sys/dev/pccard/pccarddevs soc2011/shm/sys/dev/pccard/pccardreg.h soc2011/shm/sys/dev/pccard/pccardvar.h soc2011/shm/sys/dev/pccard/pccardvarp.h soc2011/shm/sys/dev/pccard/power_if.m soc2011/shm/sys/dev/pccbb/ soc2011/shm/sys/dev/pccbb/pccbb.c soc2011/shm/sys/dev/pccbb/pccbb_isa.c soc2011/shm/sys/dev/pccbb/pccbb_pci.c soc2011/shm/sys/dev/pccbb/pccbbdevid.h soc2011/shm/sys/dev/pccbb/pccbbreg.h soc2011/shm/sys/dev/pccbb/pccbbvar.h soc2011/shm/sys/dev/pcf/ soc2011/shm/sys/dev/pcf/envctrl.c soc2011/shm/sys/dev/pcf/pcf.c soc2011/shm/sys/dev/pcf/pcf_ebus.c soc2011/shm/sys/dev/pcf/pcf_isa.c soc2011/shm/sys/dev/pcf/pcfvar.h soc2011/shm/sys/dev/pci/ soc2011/shm/sys/dev/pci/eisa_pci.c soc2011/shm/sys/dev/pci/fixup_pci.c soc2011/shm/sys/dev/pci/hostb_pci.c soc2011/shm/sys/dev/pci/ignore_pci.c soc2011/shm/sys/dev/pci/isa_pci.c soc2011/shm/sys/dev/pci/pci.c soc2011/shm/sys/dev/pci/pci_if.m soc2011/shm/sys/dev/pci/pci_pci.c soc2011/shm/sys/dev/pci/pci_private.h soc2011/shm/sys/dev/pci/pci_user.c soc2011/shm/sys/dev/pci/pcib_if.m soc2011/shm/sys/dev/pci/pcib_private.h soc2011/shm/sys/dev/pci/pcireg.h soc2011/shm/sys/dev/pci/pcivar.h soc2011/shm/sys/dev/pci/vga_pci.c soc2011/shm/sys/dev/pcn/ soc2011/shm/sys/dev/pcn/if_pcn.c soc2011/shm/sys/dev/pcn/if_pcnreg.h soc2011/shm/sys/dev/pdq/ soc2011/shm/sys/dev/pdq/if_fea.c soc2011/shm/sys/dev/pdq/if_fpa.c soc2011/shm/sys/dev/pdq/pdq.c soc2011/shm/sys/dev/pdq/pdq_freebsd.h soc2011/shm/sys/dev/pdq/pdq_ifsubr.c soc2011/shm/sys/dev/pdq/pdqreg.h soc2011/shm/sys/dev/pdq/pdqvar.h soc2011/shm/sys/dev/powermac_nvram/ soc2011/shm/sys/dev/powermac_nvram/powermac_nvram.c soc2011/shm/sys/dev/powermac_nvram/powermac_nvramvar.h soc2011/shm/sys/dev/ppbus/ soc2011/shm/sys/dev/ppbus/if_plip.c soc2011/shm/sys/dev/ppbus/immio.c soc2011/shm/sys/dev/ppbus/lpbb.c soc2011/shm/sys/dev/ppbus/lpt.c soc2011/shm/sys/dev/ppbus/lpt.h soc2011/shm/sys/dev/ppbus/lptio.h soc2011/shm/sys/dev/ppbus/pcfclock.c soc2011/shm/sys/dev/ppbus/ppb_1284.c soc2011/shm/sys/dev/ppbus/ppb_1284.h soc2011/shm/sys/dev/ppbus/ppb_base.c soc2011/shm/sys/dev/ppbus/ppb_msq.c soc2011/shm/sys/dev/ppbus/ppb_msq.h soc2011/shm/sys/dev/ppbus/ppbconf.c soc2011/shm/sys/dev/ppbus/ppbconf.h soc2011/shm/sys/dev/ppbus/ppbio.h soc2011/shm/sys/dev/ppbus/ppbus_if.m soc2011/shm/sys/dev/ppbus/ppi.c soc2011/shm/sys/dev/ppbus/ppi.h soc2011/shm/sys/dev/ppbus/pps.c soc2011/shm/sys/dev/ppbus/vpo.c soc2011/shm/sys/dev/ppbus/vpoio.c soc2011/shm/sys/dev/ppbus/vpoio.h soc2011/shm/sys/dev/ppc/ soc2011/shm/sys/dev/ppc/ppc.c soc2011/shm/sys/dev/ppc/ppc_acpi.c soc2011/shm/sys/dev/ppc/ppc_isa.c soc2011/shm/sys/dev/ppc/ppc_pci.c soc2011/shm/sys/dev/ppc/ppc_puc.c soc2011/shm/sys/dev/ppc/ppcreg.h soc2011/shm/sys/dev/ppc/ppcvar.h soc2011/shm/sys/dev/pst/ soc2011/shm/sys/dev/pst/pst-iop.c soc2011/shm/sys/dev/pst/pst-iop.h soc2011/shm/sys/dev/pst/pst-pci.c soc2011/shm/sys/dev/pst/pst-raid.c soc2011/shm/sys/dev/puc/ soc2011/shm/sys/dev/puc/puc.c soc2011/shm/sys/dev/puc/puc_bfe.h soc2011/shm/sys/dev/puc/puc_bus.h soc2011/shm/sys/dev/puc/puc_cfg.c soc2011/shm/sys/dev/puc/puc_cfg.h soc2011/shm/sys/dev/puc/puc_pccard.c soc2011/shm/sys/dev/puc/puc_pci.c soc2011/shm/sys/dev/puc/pucdata.c soc2011/shm/sys/dev/quicc/ soc2011/shm/sys/dev/quicc/quicc_bfe.h soc2011/shm/sys/dev/quicc/quicc_bfe_ocp.c soc2011/shm/sys/dev/quicc/quicc_bus.h soc2011/shm/sys/dev/quicc/quicc_core.c soc2011/shm/sys/dev/ral/ soc2011/shm/sys/dev/ral/if_ral_pci.c soc2011/shm/sys/dev/ral/rt2560.c soc2011/shm/sys/dev/ral/rt2560reg.h soc2011/shm/sys/dev/ral/rt2560var.h soc2011/shm/sys/dev/ral/rt2661.c soc2011/shm/sys/dev/ral/rt2661reg.h soc2011/shm/sys/dev/ral/rt2661var.h soc2011/shm/sys/dev/random/ soc2011/shm/sys/dev/random/harvest.c soc2011/shm/sys/dev/random/hash.c soc2011/shm/sys/dev/random/hash.h soc2011/shm/sys/dev/random/nehemiah.c soc2011/shm/sys/dev/random/nehemiah.h soc2011/shm/sys/dev/random/probe.c soc2011/shm/sys/dev/random/randomdev.c soc2011/shm/sys/dev/random/randomdev.h soc2011/shm/sys/dev/random/randomdev_soft.c soc2011/shm/sys/dev/random/randomdev_soft.h soc2011/shm/sys/dev/random/yarrow.c soc2011/shm/sys/dev/random/yarrow.h soc2011/shm/sys/dev/rc/ soc2011/shm/sys/dev/rc/rc.c soc2011/shm/sys/dev/rc/rcreg.h soc2011/shm/sys/dev/re/ soc2011/shm/sys/dev/re/if_re.c soc2011/shm/sys/dev/rndtest/ soc2011/shm/sys/dev/rndtest/rndtest.c soc2011/shm/sys/dev/rndtest/rndtest.h soc2011/shm/sys/dev/rp/ soc2011/shm/sys/dev/rp/rp.c soc2011/shm/sys/dev/rp/rp_isa.c soc2011/shm/sys/dev/rp/rp_pci.c soc2011/shm/sys/dev/rp/rpreg.h soc2011/shm/sys/dev/rp/rpvar.h soc2011/shm/sys/dev/safe/ soc2011/shm/sys/dev/safe/safe.c soc2011/shm/sys/dev/safe/safereg.h soc2011/shm/sys/dev/safe/safevar.h soc2011/shm/sys/dev/sbni/ soc2011/shm/sys/dev/sbni/if_sbni.c soc2011/shm/sys/dev/sbni/if_sbni_isa.c soc2011/shm/sys/dev/sbni/if_sbni_pci.c soc2011/shm/sys/dev/sbni/if_sbnireg.h soc2011/shm/sys/dev/sbni/if_sbnivar.h soc2011/shm/sys/dev/scc/ soc2011/shm/sys/dev/scc/scc_bfe.h soc2011/shm/sys/dev/scc/scc_bfe_ebus.c soc2011/shm/sys/dev/scc/scc_bfe_macio.c soc2011/shm/sys/dev/scc/scc_bfe_quicc.c soc2011/shm/sys/dev/scc/scc_bfe_sbus.c soc2011/shm/sys/dev/scc/scc_bus.h soc2011/shm/sys/dev/scc/scc_core.c soc2011/shm/sys/dev/scc/scc_dev_quicc.c soc2011/shm/sys/dev/scc/scc_dev_sab82532.c soc2011/shm/sys/dev/scc/scc_dev_z8530.c soc2011/shm/sys/dev/scc/scc_if.m soc2011/shm/sys/dev/scd/ soc2011/shm/sys/dev/scd/scd.c soc2011/shm/sys/dev/scd/scd_isa.c soc2011/shm/sys/dev/scd/scdreg.h soc2011/shm/sys/dev/scd/scdvar.h soc2011/shm/sys/dev/sdhci/ soc2011/shm/sys/dev/sdhci/sdhci.c soc2011/shm/sys/dev/sdhci/sdhci.h soc2011/shm/sys/dev/sec/ soc2011/shm/sys/dev/sec/sec.c soc2011/shm/sys/dev/sec/sec.h soc2011/shm/sys/dev/sf/ soc2011/shm/sys/dev/sf/if_sf.c soc2011/shm/sys/dev/sf/if_sfreg.h soc2011/shm/sys/dev/sf/starfire_rx.h soc2011/shm/sys/dev/sf/starfire_tx.h soc2011/shm/sys/dev/sge/ soc2011/shm/sys/dev/sge/if_sge.c soc2011/shm/sys/dev/sge/if_sgereg.h soc2011/shm/sys/dev/si/ soc2011/shm/sys/dev/si/si.c soc2011/shm/sys/dev/si/si.h soc2011/shm/sys/dev/si/si2_z280.c soc2011/shm/sys/dev/si/si3_t225.c soc2011/shm/sys/dev/si/si_eisa.c soc2011/shm/sys/dev/si/si_isa.c soc2011/shm/sys/dev/si/si_pci.c soc2011/shm/sys/dev/si/sireg.h soc2011/shm/sys/dev/si/sivar.h soc2011/shm/sys/dev/siba/ soc2011/shm/sys/dev/siba/siba.c soc2011/shm/sys/dev/siba/siba_bwn.c soc2011/shm/sys/dev/siba/siba_cc.c soc2011/shm/sys/dev/siba/siba_core.c soc2011/shm/sys/dev/siba/siba_ids.h soc2011/shm/sys/dev/siba/siba_pcib.c soc2011/shm/sys/dev/siba/siba_pcibvar.h soc2011/shm/sys/dev/siba/sibareg.h soc2011/shm/sys/dev/siba/sibavar.h soc2011/shm/sys/dev/siis/ soc2011/shm/sys/dev/siis/siis.c soc2011/shm/sys/dev/siis/siis.h soc2011/shm/sys/dev/sio/ soc2011/shm/sys/dev/sio/sio.c soc2011/shm/sys/dev/sio/sio_isa.c soc2011/shm/sys/dev/sio/sio_pccard.c soc2011/shm/sys/dev/sio/sio_pci.c soc2011/shm/sys/dev/sio/sio_puc.c soc2011/shm/sys/dev/sio/sioreg.h soc2011/shm/sys/dev/sio/siovar.h soc2011/shm/sys/dev/sis/ soc2011/shm/sys/dev/sis/if_sis.c soc2011/shm/sys/dev/sis/if_sisreg.h soc2011/shm/sys/dev/sk/ soc2011/shm/sys/dev/sk/if_sk.c soc2011/shm/sys/dev/sk/if_skreg.h soc2011/shm/sys/dev/sk/xmaciireg.h soc2011/shm/sys/dev/sk/yukonreg.h soc2011/shm/sys/dev/smbus/ soc2011/shm/sys/dev/smbus/smb.c soc2011/shm/sys/dev/smbus/smb.h soc2011/shm/sys/dev/smbus/smbconf.c soc2011/shm/sys/dev/smbus/smbconf.h soc2011/shm/sys/dev/smbus/smbus.c soc2011/shm/sys/dev/smbus/smbus.h soc2011/shm/sys/dev/smbus/smbus_if.m soc2011/shm/sys/dev/smc/ soc2011/shm/sys/dev/smc/if_smc.c soc2011/shm/sys/dev/smc/if_smcreg.h soc2011/shm/sys/dev/smc/if_smcvar.h soc2011/shm/sys/dev/sn/ soc2011/shm/sys/dev/sn/if_sn.c soc2011/shm/sys/dev/sn/if_sn_isa.c soc2011/shm/sys/dev/sn/if_sn_pccard.c soc2011/shm/sys/dev/sn/if_snreg.h soc2011/shm/sys/dev/sn/if_snvar.h soc2011/shm/sys/dev/sn/ositech.h soc2011/shm/sys/dev/snc/ soc2011/shm/sys/dev/snc/dp83932.c soc2011/shm/sys/dev/snc/dp83932reg.h soc2011/shm/sys/dev/snc/dp83932subr.c soc2011/shm/sys/dev/snc/dp83932subr.h soc2011/shm/sys/dev/snc/dp83932var.h soc2011/shm/sys/dev/snc/if_snc.c soc2011/shm/sys/dev/snc/if_snc_cbus.c soc2011/shm/sys/dev/snc/if_snc_pccard.c soc2011/shm/sys/dev/snc/if_sncreg.h soc2011/shm/sys/dev/snc/if_sncvar.h soc2011/shm/sys/dev/snp/ soc2011/shm/sys/dev/snp/snp.c soc2011/shm/sys/dev/sound/ soc2011/shm/sys/dev/sound/chip.h soc2011/shm/sys/dev/sound/clone.c soc2011/shm/sys/dev/sound/clone.h soc2011/shm/sys/dev/sound/driver.c soc2011/shm/sys/dev/sound/isa/ soc2011/shm/sys/dev/sound/isa/ad1816.c soc2011/shm/sys/dev/sound/isa/ad1816.h soc2011/shm/sys/dev/sound/isa/ess.c soc2011/shm/sys/dev/sound/isa/gusc.c soc2011/shm/sys/dev/sound/isa/mss.c soc2011/shm/sys/dev/sound/isa/mss.h soc2011/shm/sys/dev/sound/isa/sb.h soc2011/shm/sys/dev/sound/isa/sb16.c soc2011/shm/sys/dev/sound/isa/sb8.c soc2011/shm/sys/dev/sound/isa/sbc.c soc2011/shm/sys/dev/sound/isa/sndbuf_dma.c soc2011/shm/sys/dev/sound/macio/ soc2011/shm/sys/dev/sound/macio/aoa.c soc2011/shm/sys/dev/sound/macio/aoa.h soc2011/shm/sys/dev/sound/macio/davbus.c soc2011/shm/sys/dev/sound/macio/davbusreg.h soc2011/shm/sys/dev/sound/macio/i2s.c soc2011/shm/sys/dev/sound/macio/snapper.c soc2011/shm/sys/dev/sound/macio/tumbler.c soc2011/shm/sys/dev/sound/midi/ soc2011/shm/sys/dev/sound/midi/midi.c soc2011/shm/sys/dev/sound/midi/midi.h soc2011/shm/sys/dev/sound/midi/midiq.h soc2011/shm/sys/dev/sound/midi/mpu401.c soc2011/shm/sys/dev/sound/midi/mpu401.h soc2011/shm/sys/dev/sound/midi/mpu_if.m soc2011/shm/sys/dev/sound/midi/mpufoi_if.m soc2011/shm/sys/dev/sound/midi/sequencer.c soc2011/shm/sys/dev/sound/midi/sequencer.h soc2011/shm/sys/dev/sound/midi/synth_if.m soc2011/shm/sys/dev/sound/pci/ soc2011/shm/sys/dev/sound/pci/als4000.c soc2011/shm/sys/dev/sound/pci/als4000.h soc2011/shm/sys/dev/sound/pci/atiixp.c soc2011/shm/sys/dev/sound/pci/atiixp.h soc2011/shm/sys/dev/sound/pci/aureal.c soc2011/shm/sys/dev/sound/pci/aureal.h soc2011/shm/sys/dev/sound/pci/cmi.c soc2011/shm/sys/dev/sound/pci/cmireg.h soc2011/shm/sys/dev/sound/pci/cs4281.c soc2011/shm/sys/dev/sound/pci/cs4281.h soc2011/shm/sys/dev/sound/pci/csa.c soc2011/shm/sys/dev/sound/pci/csapcm.c soc2011/shm/sys/dev/sound/pci/csareg.h soc2011/shm/sys/dev/sound/pci/csavar.h soc2011/shm/sys/dev/sound/pci/ds1-fw.h soc2011/shm/sys/dev/sound/pci/ds1.c soc2011/shm/sys/dev/sound/pci/ds1.h soc2011/shm/sys/dev/sound/pci/emu10k1.c soc2011/shm/sys/dev/sound/pci/emu10kx-midi.c soc2011/shm/sys/dev/sound/pci/emu10kx-pcm.c soc2011/shm/sys/dev/sound/pci/emu10kx.c soc2011/shm/sys/dev/sound/pci/emu10kx.h soc2011/shm/sys/dev/sound/pci/envy24.c soc2011/shm/sys/dev/sound/pci/envy24.h soc2011/shm/sys/dev/sound/pci/envy24ht.c soc2011/shm/sys/dev/sound/pci/envy24ht.h soc2011/shm/sys/dev/sound/pci/es137x.c soc2011/shm/sys/dev/sound/pci/es137x.h soc2011/shm/sys/dev/sound/pci/fm801.c soc2011/shm/sys/dev/sound/pci/hda/ soc2011/shm/sys/dev/sound/pci/hda/hda_reg.h soc2011/shm/sys/dev/sound/pci/hda/hdac.c soc2011/shm/sys/dev/sound/pci/hda/hdac.h soc2011/shm/sys/dev/sound/pci/hda/hdac_private.h soc2011/shm/sys/dev/sound/pci/hda/hdac_reg.h soc2011/shm/sys/dev/sound/pci/ich.c soc2011/shm/sys/dev/sound/pci/ich.h soc2011/shm/sys/dev/sound/pci/maestro.c soc2011/shm/sys/dev/sound/pci/maestro3.c soc2011/shm/sys/dev/sound/pci/maestro_reg.h soc2011/shm/sys/dev/sound/pci/neomagic-coeff.h soc2011/shm/sys/dev/sound/pci/neomagic.c soc2011/shm/sys/dev/sound/pci/neomagic.h soc2011/shm/sys/dev/sound/pci/solo.c soc2011/shm/sys/dev/sound/pci/spicds.c soc2011/shm/sys/dev/sound/pci/spicds.h soc2011/shm/sys/dev/sound/pci/t4dwave.c soc2011/shm/sys/dev/sound/pci/t4dwave.h soc2011/shm/sys/dev/sound/pci/via8233.c soc2011/shm/sys/dev/sound/pci/via8233.h soc2011/shm/sys/dev/sound/pci/via82c686.c soc2011/shm/sys/dev/sound/pci/via82c686.h soc2011/shm/sys/dev/sound/pci/vibes.c soc2011/shm/sys/dev/sound/pci/vibes.h soc2011/shm/sys/dev/sound/pcm/ soc2011/shm/sys/dev/sound/pcm/ac97.c soc2011/shm/sys/dev/sound/pcm/ac97.h soc2011/shm/sys/dev/sound/pcm/ac97_if.m soc2011/shm/sys/dev/sound/pcm/ac97_patch.c soc2011/shm/sys/dev/sound/pcm/ac97_patch.h soc2011/shm/sys/dev/sound/pcm/buffer.c soc2011/shm/sys/dev/sound/pcm/buffer.h soc2011/shm/sys/dev/sound/pcm/channel.c soc2011/shm/sys/dev/sound/pcm/channel.h soc2011/shm/sys/dev/sound/pcm/channel_if.m soc2011/shm/sys/dev/sound/pcm/dsp.c soc2011/shm/sys/dev/sound/pcm/dsp.h soc2011/shm/sys/dev/sound/pcm/feeder.c soc2011/shm/sys/dev/sound/pcm/feeder.h soc2011/shm/sys/dev/sound/pcm/feeder_chain.c soc2011/shm/sys/dev/sound/pcm/feeder_eq.c soc2011/shm/sys/dev/sound/pcm/feeder_format.c soc2011/shm/sys/dev/sound/pcm/feeder_if.m soc2011/shm/sys/dev/sound/pcm/feeder_matrix.c soc2011/shm/sys/dev/sound/pcm/feeder_mixer.c soc2011/shm/sys/dev/sound/pcm/feeder_rate.c soc2011/shm/sys/dev/sound/pcm/feeder_volume.c soc2011/shm/sys/dev/sound/pcm/g711.h soc2011/shm/sys/dev/sound/pcm/intpcm.h soc2011/shm/sys/dev/sound/pcm/matrix.h soc2011/shm/sys/dev/sound/pcm/matrix_map.h soc2011/shm/sys/dev/sound/pcm/mixer.c soc2011/shm/sys/dev/sound/pcm/mixer.h soc2011/shm/sys/dev/sound/pcm/mixer_if.m soc2011/shm/sys/dev/sound/pcm/pcm.h soc2011/shm/sys/dev/sound/pcm/sndstat.c soc2011/shm/sys/dev/sound/pcm/sndstat.h soc2011/shm/sys/dev/sound/pcm/sound.c soc2011/shm/sys/dev/sound/pcm/sound.h soc2011/shm/sys/dev/sound/pcm/vchan.c soc2011/shm/sys/dev/sound/pcm/vchan.h soc2011/shm/sys/dev/sound/sbus/ soc2011/shm/sys/dev/sound/sbus/apcdmareg.h soc2011/shm/sys/dev/sound/sbus/cs4231.c soc2011/shm/sys/dev/sound/sbus/cs4231.h soc2011/shm/sys/dev/sound/unit.c soc2011/shm/sys/dev/sound/unit.h soc2011/shm/sys/dev/sound/usb/ soc2011/shm/sys/dev/sound/usb/uaudio.c soc2011/shm/sys/dev/sound/usb/uaudio.h soc2011/shm/sys/dev/sound/usb/uaudio_pcm.c soc2011/shm/sys/dev/sound/usb/uaudioreg.h soc2011/shm/sys/dev/sound/version.h soc2011/shm/sys/dev/speaker/ soc2011/shm/sys/dev/speaker/speaker.h soc2011/shm/sys/dev/speaker/spkr.c soc2011/shm/sys/dev/spibus/ soc2011/shm/sys/dev/spibus/spi.h soc2011/shm/sys/dev/spibus/spibus.c soc2011/shm/sys/dev/spibus/spibus_if.m soc2011/shm/sys/dev/spibus/spibusvar.h soc2011/shm/sys/dev/ste/ soc2011/shm/sys/dev/ste/if_ste.c soc2011/shm/sys/dev/ste/if_stereg.h soc2011/shm/sys/dev/stg/ soc2011/shm/sys/dev/stg/tmc18c30.c soc2011/shm/sys/dev/stg/tmc18c30.h soc2011/shm/sys/dev/stg/tmc18c30_isa.c soc2011/shm/sys/dev/stg/tmc18c30_pccard.c soc2011/shm/sys/dev/stg/tmc18c30_pci.c soc2011/shm/sys/dev/stg/tmc18c30_subr.c soc2011/shm/sys/dev/stg/tmc18c30reg.h soc2011/shm/sys/dev/stg/tmc18c30var.h soc2011/shm/sys/dev/stge/ soc2011/shm/sys/dev/stge/if_stge.c soc2011/shm/sys/dev/stge/if_stgereg.h soc2011/shm/sys/dev/streams/ soc2011/shm/sys/dev/streams/streams.c soc2011/shm/sys/dev/sym/ soc2011/shm/sys/dev/sym/README.sym soc2011/shm/sys/dev/sym/sym_conf.h soc2011/shm/sys/dev/sym/sym_defs.h soc2011/shm/sys/dev/sym/sym_fw.h soc2011/shm/sys/dev/sym/sym_fw1.h soc2011/shm/sys/dev/sym/sym_fw2.h soc2011/shm/sys/dev/sym/sym_hipd.c soc2011/shm/sys/dev/syscons/ soc2011/shm/sys/dev/syscons/apm/ soc2011/shm/sys/dev/syscons/apm/apm_saver.c soc2011/shm/sys/dev/syscons/blank/ soc2011/shm/sys/dev/syscons/blank/blank_saver.c soc2011/shm/sys/dev/syscons/daemon/ soc2011/shm/sys/dev/syscons/daemon/daemon_saver.c soc2011/shm/sys/dev/syscons/dragon/ soc2011/shm/sys/dev/syscons/dragon/dragon_saver.c soc2011/shm/sys/dev/syscons/fade/ soc2011/shm/sys/dev/syscons/fade/fade_saver.c soc2011/shm/sys/dev/syscons/fire/ soc2011/shm/sys/dev/syscons/fire/fire_saver.c soc2011/shm/sys/dev/syscons/green/ soc2011/shm/sys/dev/syscons/green/green_saver.c soc2011/shm/sys/dev/syscons/logo/ soc2011/shm/sys/dev/syscons/logo/logo.c soc2011/shm/sys/dev/syscons/logo/logo_saver.c soc2011/shm/sys/dev/syscons/rain/ soc2011/shm/sys/dev/syscons/rain/rain_saver.c soc2011/shm/sys/dev/syscons/scgfbrndr.c soc2011/shm/sys/dev/syscons/schistory.c soc2011/shm/sys/dev/syscons/scmouse.c soc2011/shm/sys/dev/syscons/scterm-teken.c soc2011/shm/sys/dev/syscons/scterm.c soc2011/shm/sys/dev/syscons/scvesactl.c soc2011/shm/sys/dev/syscons/scvgarndr.c soc2011/shm/sys/dev/syscons/scvidctl.c soc2011/shm/sys/dev/syscons/scvtb.c soc2011/shm/sys/dev/syscons/snake/ soc2011/shm/sys/dev/syscons/snake/snake_saver.c soc2011/shm/sys/dev/syscons/star/ soc2011/shm/sys/dev/syscons/star/star_saver.c soc2011/shm/sys/dev/syscons/syscons.c soc2011/shm/sys/dev/syscons/syscons.h soc2011/shm/sys/dev/syscons/sysmouse.c soc2011/shm/sys/dev/syscons/teken/ soc2011/shm/sys/dev/syscons/teken/Makefile soc2011/shm/sys/dev/syscons/teken/gensequences soc2011/shm/sys/dev/syscons/teken/sequences soc2011/shm/sys/dev/syscons/teken/teken.c soc2011/shm/sys/dev/syscons/teken/teken.h soc2011/shm/sys/dev/syscons/teken/teken_demo.c soc2011/shm/sys/dev/syscons/teken/teken_scs.h soc2011/shm/sys/dev/syscons/teken/teken_stress.c soc2011/shm/sys/dev/syscons/teken/teken_subr.h soc2011/shm/sys/dev/syscons/teken/teken_subr_compat.h soc2011/shm/sys/dev/syscons/teken/teken_wcwidth.h soc2011/shm/sys/dev/syscons/warp/ soc2011/shm/sys/dev/syscons/warp/warp_saver.c soc2011/shm/sys/dev/tdfx/ soc2011/shm/sys/dev/tdfx/tdfx_io.h soc2011/shm/sys/dev/tdfx/tdfx_linux.c soc2011/shm/sys/dev/tdfx/tdfx_linux.h soc2011/shm/sys/dev/tdfx/tdfx_pci.c soc2011/shm/sys/dev/tdfx/tdfx_pci.h soc2011/shm/sys/dev/tdfx/tdfx_vars.h soc2011/shm/sys/dev/ti/ soc2011/shm/sys/dev/ti/if_ti.c soc2011/shm/sys/dev/ti/if_tireg.h soc2011/shm/sys/dev/ti/ti_fw.h soc2011/shm/sys/dev/ti/ti_fw2.h soc2011/shm/sys/dev/tl/ soc2011/shm/sys/dev/tl/if_tl.c soc2011/shm/sys/dev/tl/if_tlreg.h soc2011/shm/sys/dev/trm/ soc2011/shm/sys/dev/trm/trm.c soc2011/shm/sys/dev/trm/trm.h soc2011/shm/sys/dev/tsec/ soc2011/shm/sys/dev/tsec/if_tsec.c soc2011/shm/sys/dev/tsec/if_tsec.h soc2011/shm/sys/dev/tsec/if_tsec_ocp.c soc2011/shm/sys/dev/tsec/if_tsecreg.h soc2011/shm/sys/dev/twa/ soc2011/shm/sys/dev/twa/tw_cl.h soc2011/shm/sys/dev/twa/tw_cl_externs.h soc2011/shm/sys/dev/twa/tw_cl_fwif.h soc2011/shm/sys/dev/twa/tw_cl_init.c soc2011/shm/sys/dev/twa/tw_cl_intr.c soc2011/shm/sys/dev/twa/tw_cl_io.c soc2011/shm/sys/dev/twa/tw_cl_ioctl.h soc2011/shm/sys/dev/twa/tw_cl_misc.c soc2011/shm/sys/dev/twa/tw_cl_share.h soc2011/shm/sys/dev/twa/tw_osl.h soc2011/shm/sys/dev/twa/tw_osl_cam.c soc2011/shm/sys/dev/twa/tw_osl_externs.h soc2011/shm/sys/dev/twa/tw_osl_freebsd.c soc2011/shm/sys/dev/twa/tw_osl_includes.h soc2011/shm/sys/dev/twa/tw_osl_inline.h soc2011/shm/sys/dev/twa/tw_osl_ioctl.h soc2011/shm/sys/dev/twa/tw_osl_share.h soc2011/shm/sys/dev/twa/tw_osl_types.h soc2011/shm/sys/dev/twe/ soc2011/shm/sys/dev/twe/twe.c soc2011/shm/sys/dev/twe/twe_compat.h soc2011/shm/sys/dev/twe/twe_freebsd.c soc2011/shm/sys/dev/twe/twe_tables.h soc2011/shm/sys/dev/twe/tweio.h soc2011/shm/sys/dev/twe/twereg.h soc2011/shm/sys/dev/twe/twevar.h soc2011/shm/sys/dev/tx/ soc2011/shm/sys/dev/tx/if_tx.c soc2011/shm/sys/dev/tx/if_txreg.h soc2011/shm/sys/dev/tx/if_txvar.h soc2011/shm/sys/dev/txp/ soc2011/shm/sys/dev/txp/3c990img.h soc2011/shm/sys/dev/txp/if_txp.c soc2011/shm/sys/dev/txp/if_txpreg.h soc2011/shm/sys/dev/uart/ soc2011/shm/sys/dev/uart/uart.h soc2011/shm/sys/dev/uart/uart_bus.h soc2011/shm/sys/dev/uart/uart_bus_acpi.c soc2011/shm/sys/dev/uart/uart_bus_ebus.c soc2011/shm/sys/dev/uart/uart_bus_isa.c soc2011/shm/sys/dev/uart/uart_bus_mbus.c soc2011/shm/sys/dev/uart/uart_bus_ocp.c soc2011/shm/sys/dev/uart/uart_bus_pccard.c soc2011/shm/sys/dev/uart/uart_bus_pci.c soc2011/shm/sys/dev/uart/uart_bus_puc.c soc2011/shm/sys/dev/uart/uart_bus_scc.c soc2011/shm/sys/dev/uart/uart_core.c soc2011/shm/sys/dev/uart/uart_cpu.h soc2011/shm/sys/dev/uart/uart_cpu_amd64.c soc2011/shm/sys/dev/uart/uart_cpu_i386.c soc2011/shm/sys/dev/uart/uart_cpu_ia64.c soc2011/shm/sys/dev/uart/uart_cpu_mv.c soc2011/shm/sys/dev/uart/uart_cpu_pc98.c soc2011/shm/sys/dev/uart/uart_cpu_powerpc.c soc2011/shm/sys/dev/uart/uart_cpu_sparc64.c soc2011/shm/sys/dev/uart/uart_dbg.c soc2011/shm/sys/dev/uart/uart_dev_ns8250.c soc2011/shm/sys/dev/uart/uart_dev_quicc.c soc2011/shm/sys/dev/uart/uart_dev_sab82532.c soc2011/shm/sys/dev/uart/uart_dev_z8530.c soc2011/shm/sys/dev/uart/uart_if.m soc2011/shm/sys/dev/uart/uart_kbd_sun.c soc2011/shm/sys/dev/uart/uart_kbd_sun.h soc2011/shm/sys/dev/uart/uart_kbd_sun_tables.h soc2011/shm/sys/dev/uart/uart_subr.c soc2011/shm/sys/dev/uart/uart_tty.c soc2011/shm/sys/dev/ubsec/ soc2011/shm/sys/dev/ubsec/ubsec.c soc2011/shm/sys/dev/ubsec/ubsecreg.h soc2011/shm/sys/dev/ubsec/ubsecvar.h soc2011/shm/sys/dev/usb/ soc2011/shm/sys/dev/usb/controller/ soc2011/shm/sys/dev/usb/controller/at91dci.c soc2011/shm/sys/dev/usb/controller/at91dci.h soc2011/shm/sys/dev/usb/controller/at91dci_atmelarm.c soc2011/shm/sys/dev/usb/controller/atmegadci.c soc2011/shm/sys/dev/usb/controller/atmegadci.h soc2011/shm/sys/dev/usb/controller/atmegadci_atmelarm.c soc2011/shm/sys/dev/usb/controller/avr32dci.c soc2011/shm/sys/dev/usb/controller/avr32dci.h soc2011/shm/sys/dev/usb/controller/ehci.c soc2011/shm/sys/dev/usb/controller/ehci.h soc2011/shm/sys/dev/usb/controller/ehci_ixp4xx.c soc2011/shm/sys/dev/usb/controller/ehci_mbus.c soc2011/shm/sys/dev/usb/controller/ehci_pci.c soc2011/shm/sys/dev/usb/controller/ehcireg.h soc2011/shm/sys/dev/usb/controller/musb_otg.c soc2011/shm/sys/dev/usb/controller/musb_otg.h soc2011/shm/sys/dev/usb/controller/musb_otg_atmelarm.c soc2011/shm/sys/dev/usb/controller/ohci.c soc2011/shm/sys/dev/usb/controller/ohci.h soc2011/shm/sys/dev/usb/controller/ohci_atmelarm.c soc2011/shm/sys/dev/usb/controller/ohci_pci.c soc2011/shm/sys/dev/usb/controller/ohcireg.h soc2011/shm/sys/dev/usb/controller/uhci.c soc2011/shm/sys/dev/usb/controller/uhci.h soc2011/shm/sys/dev/usb/controller/uhci_pci.c soc2011/shm/sys/dev/usb/controller/uhcireg.h soc2011/shm/sys/dev/usb/controller/usb_controller.c soc2011/shm/sys/dev/usb/controller/uss820dci.c soc2011/shm/sys/dev/usb/controller/uss820dci.h soc2011/shm/sys/dev/usb/controller/uss820dci_atmelarm.c soc2011/shm/sys/dev/usb/input/ soc2011/shm/sys/dev/usb/input/atp.c soc2011/shm/sys/dev/usb/input/uep.c soc2011/shm/sys/dev/usb/input/uhid.c soc2011/shm/sys/dev/usb/input/ukbd.c soc2011/shm/sys/dev/usb/input/ums.c soc2011/shm/sys/dev/usb/input/usb_rdesc.h soc2011/shm/sys/dev/usb/misc/ soc2011/shm/sys/dev/usb/misc/udbp.c soc2011/shm/sys/dev/usb/misc/udbp.h soc2011/shm/sys/dev/usb/misc/ufm.c soc2011/shm/sys/dev/usb/net/ soc2011/shm/sys/dev/usb/net/if_aue.c soc2011/shm/sys/dev/usb/net/if_auereg.h soc2011/shm/sys/dev/usb/net/if_axe.c soc2011/shm/sys/dev/usb/net/if_axereg.h soc2011/shm/sys/dev/usb/net/if_cdce.c soc2011/shm/sys/dev/usb/net/if_cdcereg.h soc2011/shm/sys/dev/usb/net/if_cue.c soc2011/shm/sys/dev/usb/net/if_cuereg.h soc2011/shm/sys/dev/usb/net/if_kue.c soc2011/shm/sys/dev/usb/net/if_kuefw.h soc2011/shm/sys/dev/usb/net/if_kuereg.h soc2011/shm/sys/dev/usb/net/if_rue.c soc2011/shm/sys/dev/usb/net/if_ruereg.h soc2011/shm/sys/dev/usb/net/if_udav.c soc2011/shm/sys/dev/usb/net/if_udavreg.h soc2011/shm/sys/dev/usb/net/uhso.c soc2011/shm/sys/dev/usb/net/usb_ethernet.c soc2011/shm/sys/dev/usb/net/usb_ethernet.h soc2011/shm/sys/dev/usb/quirk/ soc2011/shm/sys/dev/usb/quirk/usb_quirk.c soc2011/shm/sys/dev/usb/quirk/usb_quirk.h soc2011/shm/sys/dev/usb/serial/ soc2011/shm/sys/dev/usb/serial/u3g.c soc2011/shm/sys/dev/usb/serial/uark.c soc2011/shm/sys/dev/usb/serial/ubsa.c soc2011/shm/sys/dev/usb/serial/ubser.c soc2011/shm/sys/dev/usb/serial/uchcom.c soc2011/shm/sys/dev/usb/serial/ucycom.c soc2011/shm/sys/dev/usb/serial/ufoma.c soc2011/shm/sys/dev/usb/serial/uftdi.c soc2011/shm/sys/dev/usb/serial/uftdi_reg.h soc2011/shm/sys/dev/usb/serial/ugensa.c soc2011/shm/sys/dev/usb/serial/uipaq.c soc2011/shm/sys/dev/usb/serial/ulpt.c soc2011/shm/sys/dev/usb/serial/umct.c soc2011/shm/sys/dev/usb/serial/umodem.c soc2011/shm/sys/dev/usb/serial/umoscom.c soc2011/shm/sys/dev/usb/serial/uplcom.c soc2011/shm/sys/dev/usb/serial/usb_serial.c soc2011/shm/sys/dev/usb/serial/usb_serial.h soc2011/shm/sys/dev/usb/serial/uslcom.c soc2011/shm/sys/dev/usb/serial/uvisor.c soc2011/shm/sys/dev/usb/serial/uvscom.c soc2011/shm/sys/dev/usb/storage/ soc2011/shm/sys/dev/usb/storage/rio500_usb.h soc2011/shm/sys/dev/usb/storage/umass.c soc2011/shm/sys/dev/usb/storage/urio.c soc2011/shm/sys/dev/usb/storage/ustorage_fs.c soc2011/shm/sys/dev/usb/template/ soc2011/shm/sys/dev/usb/template/usb_template.c soc2011/shm/sys/dev/usb/template/usb_template.h soc2011/shm/sys/dev/usb/template/usb_template_cdce.c soc2011/shm/sys/dev/usb/template/usb_template_msc.c soc2011/shm/sys/dev/usb/template/usb_template_mtp.c soc2011/shm/sys/dev/usb/ufm_ioctl.h soc2011/shm/sys/dev/usb/usb.h soc2011/shm/sys/dev/usb/usb_bus.h soc2011/shm/sys/dev/usb/usb_busdma.c soc2011/shm/sys/dev/usb/usb_busdma.h soc2011/shm/sys/dev/usb/usb_cdc.h soc2011/shm/sys/dev/usb/usb_compat_linux.c soc2011/shm/sys/dev/usb/usb_compat_linux.h soc2011/shm/sys/dev/usb/usb_controller.h soc2011/shm/sys/dev/usb/usb_core.c soc2011/shm/sys/dev/usb/usb_core.h soc2011/shm/sys/dev/usb/usb_debug.c soc2011/shm/sys/dev/usb/usb_debug.h soc2011/shm/sys/dev/usb/usb_dev.c soc2011/shm/sys/dev/usb/usb_dev.h soc2011/shm/sys/dev/usb/usb_device.c soc2011/shm/sys/dev/usb/usb_device.h soc2011/shm/sys/dev/usb/usb_dynamic.c soc2011/shm/sys/dev/usb/usb_dynamic.h soc2011/shm/sys/dev/usb/usb_endian.h soc2011/shm/sys/dev/usb/usb_error.c soc2011/shm/sys/dev/usb/usb_freebsd.h soc2011/shm/sys/dev/usb/usb_generic.c soc2011/shm/sys/dev/usb/usb_generic.h soc2011/shm/sys/dev/usb/usb_handle_request.c soc2011/shm/sys/dev/usb/usb_hid.c soc2011/shm/sys/dev/usb/usb_hub.c soc2011/shm/sys/dev/usb/usb_hub.h soc2011/shm/sys/dev/usb/usb_if.m soc2011/shm/sys/dev/usb/usb_ioctl.h soc2011/shm/sys/dev/usb/usb_lookup.c soc2011/shm/sys/dev/usb/usb_mbuf.c soc2011/shm/sys/dev/usb/usb_mbuf.h soc2011/shm/sys/dev/usb/usb_msctest.c soc2011/shm/sys/dev/usb/usb_msctest.h soc2011/shm/sys/dev/usb/usb_parse.c soc2011/shm/sys/dev/usb/usb_pci.h soc2011/shm/sys/dev/usb/usb_process.c soc2011/shm/sys/dev/usb/usb_process.h soc2011/shm/sys/dev/usb/usb_request.c soc2011/shm/sys/dev/usb/usb_request.h soc2011/shm/sys/dev/usb/usb_transfer.c soc2011/shm/sys/dev/usb/usb_transfer.h soc2011/shm/sys/dev/usb/usb_util.c soc2011/shm/sys/dev/usb/usb_util.h soc2011/shm/sys/dev/usb/usbdevs soc2011/shm/sys/dev/usb/usbdi.h soc2011/shm/sys/dev/usb/usbdi_util.h soc2011/shm/sys/dev/usb/usbhid.h soc2011/shm/sys/dev/usb/wlan/ soc2011/shm/sys/dev/usb/wlan/if_rum.c soc2011/shm/sys/dev/usb/wlan/if_rumfw.h soc2011/shm/sys/dev/usb/wlan/if_rumreg.h soc2011/shm/sys/dev/usb/wlan/if_rumvar.h soc2011/shm/sys/dev/usb/wlan/if_run.c soc2011/shm/sys/dev/usb/wlan/if_runreg.h soc2011/shm/sys/dev/usb/wlan/if_runvar.h soc2011/shm/sys/dev/usb/wlan/if_uath.c soc2011/shm/sys/dev/usb/wlan/if_uathreg.h soc2011/shm/sys/dev/usb/wlan/if_uathvar.h soc2011/shm/sys/dev/usb/wlan/if_upgt.c soc2011/shm/sys/dev/usb/wlan/if_upgtvar.h soc2011/shm/sys/dev/usb/wlan/if_ural.c soc2011/shm/sys/dev/usb/wlan/if_uralreg.h soc2011/shm/sys/dev/usb/wlan/if_uralvar.h soc2011/shm/sys/dev/usb/wlan/if_urtw.c soc2011/shm/sys/dev/usb/wlan/if_urtwreg.h soc2011/shm/sys/dev/usb/wlan/if_urtwvar.h soc2011/shm/sys/dev/usb/wlan/if_zyd.c soc2011/shm/sys/dev/usb/wlan/if_zydfw.h soc2011/shm/sys/dev/usb/wlan/if_zydreg.h soc2011/shm/sys/dev/utopia/ soc2011/shm/sys/dev/utopia/idtphy.c soc2011/shm/sys/dev/utopia/idtphy.h soc2011/shm/sys/dev/utopia/suni.c soc2011/shm/sys/dev/utopia/suni.h soc2011/shm/sys/dev/utopia/utopia.c soc2011/shm/sys/dev/utopia/utopia.h soc2011/shm/sys/dev/utopia/utopia_priv.h soc2011/shm/sys/dev/vge/ soc2011/shm/sys/dev/vge/if_vge.c soc2011/shm/sys/dev/vge/if_vgereg.h soc2011/shm/sys/dev/vge/if_vgevar.h soc2011/shm/sys/dev/vkbd/ soc2011/shm/sys/dev/vkbd/vkbd.c soc2011/shm/sys/dev/vkbd/vkbd_var.h soc2011/shm/sys/dev/vr/ soc2011/shm/sys/dev/vr/if_vr.c soc2011/shm/sys/dev/vr/if_vrreg.h soc2011/shm/sys/dev/vx/ soc2011/shm/sys/dev/vx/if_vx.c soc2011/shm/sys/dev/vx/if_vx_eisa.c soc2011/shm/sys/dev/vx/if_vx_pci.c soc2011/shm/sys/dev/vx/if_vxreg.h soc2011/shm/sys/dev/vx/if_vxvar.h soc2011/shm/sys/dev/watchdog/ soc2011/shm/sys/dev/watchdog/watchdog.c soc2011/shm/sys/dev/wb/ soc2011/shm/sys/dev/wb/if_wb.c soc2011/shm/sys/dev/wb/if_wbreg.h soc2011/shm/sys/dev/wds/ soc2011/shm/sys/dev/wds/wd7000.c soc2011/shm/sys/dev/wi/ soc2011/shm/sys/dev/wi/if_wavelan_ieee.h soc2011/shm/sys/dev/wi/if_wi.c soc2011/shm/sys/dev/wi/if_wi_pccard.c soc2011/shm/sys/dev/wi/if_wi_pci.c soc2011/shm/sys/dev/wi/if_wireg.h soc2011/shm/sys/dev/wi/if_wivar.h soc2011/shm/sys/dev/wl/ soc2011/shm/sys/dev/wl/if_wl.c soc2011/shm/sys/dev/wl/if_wl.h soc2011/shm/sys/dev/wl/if_wl_i82586.h soc2011/shm/sys/dev/wpi/ soc2011/shm/sys/dev/wpi/if_wpi.c soc2011/shm/sys/dev/wpi/if_wpireg.h soc2011/shm/sys/dev/wpi/if_wpivar.h soc2011/shm/sys/dev/xe/ soc2011/shm/sys/dev/xe/if_xe.c soc2011/shm/sys/dev/xe/if_xe_pccard.c soc2011/shm/sys/dev/xe/if_xereg.h soc2011/shm/sys/dev/xe/if_xevar.h soc2011/shm/sys/dev/xen/ soc2011/shm/sys/dev/xen/balloon/ soc2011/shm/sys/dev/xen/balloon/balloon.c soc2011/shm/sys/dev/xen/blkback/ soc2011/shm/sys/dev/xen/blkback/blkback.c soc2011/shm/sys/dev/xen/blkfront/ soc2011/shm/sys/dev/xen/blkfront/blkfront.c soc2011/shm/sys/dev/xen/blkfront/block.h soc2011/shm/sys/dev/xen/console/ soc2011/shm/sys/dev/xen/console/console.c soc2011/shm/sys/dev/xen/console/xencons_ring.c soc2011/shm/sys/dev/xen/console/xencons_ring.h soc2011/shm/sys/dev/xen/evtchn/ soc2011/shm/sys/dev/xen/evtchn/evtchn_dev.c soc2011/shm/sys/dev/xen/netback/ soc2011/shm/sys/dev/xen/netback/netback.c soc2011/shm/sys/dev/xen/netfront/ soc2011/shm/sys/dev/xen/netfront/mbufq.h soc2011/shm/sys/dev/xen/netfront/netfront.c soc2011/shm/sys/dev/xen/pcifront/ soc2011/shm/sys/dev/xen/pcifront/pcifront.c soc2011/shm/sys/dev/xen/xenpci/ soc2011/shm/sys/dev/xen/xenpci/evtchn.c soc2011/shm/sys/dev/xen/xenpci/machine_reboot.c soc2011/shm/sys/dev/xen/xenpci/xenpci.c soc2011/shm/sys/dev/xen/xenpci/xenpcivar.h soc2011/shm/sys/dev/xl/ soc2011/shm/sys/dev/xl/if_xl.c soc2011/shm/sys/dev/xl/if_xlreg.h soc2011/shm/sys/fs/ soc2011/shm/sys/fs/cd9660/ soc2011/shm/sys/fs/cd9660/TODO soc2011/shm/sys/fs/cd9660/TODO.hibler soc2011/shm/sys/fs/cd9660/cd9660_bmap.c soc2011/shm/sys/fs/cd9660/cd9660_iconv.c soc2011/shm/sys/fs/cd9660/cd9660_lookup.c soc2011/shm/sys/fs/cd9660/cd9660_mount.h soc2011/shm/sys/fs/cd9660/cd9660_node.c soc2011/shm/sys/fs/cd9660/cd9660_node.h soc2011/shm/sys/fs/cd9660/cd9660_rrip.c soc2011/shm/sys/fs/cd9660/cd9660_rrip.h soc2011/shm/sys/fs/cd9660/cd9660_util.c soc2011/shm/sys/fs/cd9660/cd9660_vfsops.c soc2011/shm/sys/fs/cd9660/cd9660_vnops.c soc2011/shm/sys/fs/cd9660/iso.h soc2011/shm/sys/fs/cd9660/iso_rrip.h soc2011/shm/sys/fs/coda/ soc2011/shm/sys/fs/coda/README soc2011/shm/sys/fs/coda/TODO soc2011/shm/sys/fs/coda/cnode.h soc2011/shm/sys/fs/coda/coda.h soc2011/shm/sys/fs/coda/coda_fbsd.c soc2011/shm/sys/fs/coda/coda_io.h soc2011/shm/sys/fs/coda/coda_opstats.h soc2011/shm/sys/fs/coda/coda_pioctl.h soc2011/shm/sys/fs/coda/coda_psdev.c soc2011/shm/sys/fs/coda/coda_psdev.h soc2011/shm/sys/fs/coda/coda_subr.c soc2011/shm/sys/fs/coda/coda_subr.h soc2011/shm/sys/fs/coda/coda_venus.c soc2011/shm/sys/fs/coda/coda_venus.h soc2011/shm/sys/fs/coda/coda_vfsops.c soc2011/shm/sys/fs/coda/coda_vfsops.h soc2011/shm/sys/fs/coda/coda_vnops.c soc2011/shm/sys/fs/coda/coda_vnops.h soc2011/shm/sys/fs/deadfs/ soc2011/shm/sys/fs/deadfs/dead_vnops.c soc2011/shm/sys/fs/devfs/ soc2011/shm/sys/fs/devfs/devfs.h soc2011/shm/sys/fs/devfs/devfs_devs.c soc2011/shm/sys/fs/devfs/devfs_int.h soc2011/shm/sys/fs/devfs/devfs_rule.c soc2011/shm/sys/fs/devfs/devfs_vfsops.c soc2011/shm/sys/fs/devfs/devfs_vnops.c soc2011/shm/sys/fs/fdescfs/ soc2011/shm/sys/fs/fdescfs/fdesc.h soc2011/shm/sys/fs/fdescfs/fdesc_vfsops.c soc2011/shm/sys/fs/fdescfs/fdesc_vnops.c soc2011/shm/sys/fs/fifofs/ soc2011/shm/sys/fs/fifofs/fifo.h soc2011/shm/sys/fs/fifofs/fifo_vnops.c soc2011/shm/sys/fs/hpfs/ soc2011/shm/sys/fs/hpfs/hpfs.h soc2011/shm/sys/fs/hpfs/hpfs_alsubr.c soc2011/shm/sys/fs/hpfs/hpfs_ioctl.h soc2011/shm/sys/fs/hpfs/hpfs_lookup.c soc2011/shm/sys/fs/hpfs/hpfs_subr.c soc2011/shm/sys/fs/hpfs/hpfs_subr.h soc2011/shm/sys/fs/hpfs/hpfs_vfsops.c soc2011/shm/sys/fs/hpfs/hpfs_vnops.c soc2011/shm/sys/fs/hpfs/hpfsmount.h soc2011/shm/sys/fs/msdosfs/ soc2011/shm/sys/fs/msdosfs/bootsect.h soc2011/shm/sys/fs/msdosfs/bpb.h soc2011/shm/sys/fs/msdosfs/denode.h soc2011/shm/sys/fs/msdosfs/direntry.h soc2011/shm/sys/fs/msdosfs/fat.h soc2011/shm/sys/fs/msdosfs/msdosfs_conv.c soc2011/shm/sys/fs/msdosfs/msdosfs_denode.c soc2011/shm/sys/fs/msdosfs/msdosfs_fat.c soc2011/shm/sys/fs/msdosfs/msdosfs_fileno.c soc2011/shm/sys/fs/msdosfs/msdosfs_iconv.c soc2011/shm/sys/fs/msdosfs/msdosfs_lookup.c soc2011/shm/sys/fs/msdosfs/msdosfs_vfsops.c soc2011/shm/sys/fs/msdosfs/msdosfs_vnops.c soc2011/shm/sys/fs/msdosfs/msdosfsmount.h soc2011/shm/sys/fs/nfs/ soc2011/shm/sys/fs/nfs/nfs.h soc2011/shm/sys/fs/nfs/nfs_commonacl.c soc2011/shm/sys/fs/nfs/nfs_commonkrpc.c soc2011/shm/sys/fs/nfs/nfs_commonport.c soc2011/shm/sys/fs/nfs/nfs_commonsubs.c soc2011/shm/sys/fs/nfs/nfs_var.h soc2011/shm/sys/fs/nfs/nfscl.h soc2011/shm/sys/fs/nfs/nfsclstate.h soc2011/shm/sys/fs/nfs/nfsdport.h soc2011/shm/sys/fs/nfs/nfskpiport.h soc2011/shm/sys/fs/nfs/nfsm_subs.h soc2011/shm/sys/fs/nfs/nfsport.h soc2011/shm/sys/fs/nfs/nfsproto.h soc2011/shm/sys/fs/nfs/nfsrvcache.h soc2011/shm/sys/fs/nfs/nfsrvstate.h soc2011/shm/sys/fs/nfs/nfsv4_errstr.h soc2011/shm/sys/fs/nfs/rpcv2.h soc2011/shm/sys/fs/nfs/xdr_subs.h soc2011/shm/sys/fs/nfsclient/ soc2011/shm/sys/fs/nfsclient/nfs.h soc2011/shm/sys/fs/nfsclient/nfs_clbio.c soc2011/shm/sys/fs/nfsclient/nfs_clcomsubs.c soc2011/shm/sys/fs/nfsclient/nfs_clkrpc.c soc2011/shm/sys/fs/nfsclient/nfs_cllock.c soc2011/shm/sys/fs/nfsclient/nfs_clnfsiod.c soc2011/shm/sys/fs/nfsclient/nfs_clnode.c soc2011/shm/sys/fs/nfsclient/nfs_clport.c soc2011/shm/sys/fs/nfsclient/nfs_clrpcops.c soc2011/shm/sys/fs/nfsclient/nfs_clstate.c soc2011/shm/sys/fs/nfsclient/nfs_clsubs.c soc2011/shm/sys/fs/nfsclient/nfs_clvfsops.c soc2011/shm/sys/fs/nfsclient/nfs_clvnops.c soc2011/shm/sys/fs/nfsclient/nfs_lock.h soc2011/shm/sys/fs/nfsclient/nfsargs.h soc2011/shm/sys/fs/nfsclient/nfsdiskless.h soc2011/shm/sys/fs/nfsclient/nfsmount.h soc2011/shm/sys/fs/nfsclient/nfsnode.h soc2011/shm/sys/fs/nfsclient/nlminfo.h soc2011/shm/sys/fs/nfsserver/ soc2011/shm/sys/fs/nfsserver/nfs_nfsdcache.c soc2011/shm/sys/fs/nfsserver/nfs_nfsdkrpc.c soc2011/shm/sys/fs/nfsserver/nfs_nfsdport.c soc2011/shm/sys/fs/nfsserver/nfs_nfsdserv.c soc2011/shm/sys/fs/nfsserver/nfs_nfsdsocket.c soc2011/shm/sys/fs/nfsserver/nfs_nfsdstate.c soc2011/shm/sys/fs/nfsserver/nfs_nfsdsubs.c soc2011/shm/sys/fs/ntfs/ soc2011/shm/sys/fs/ntfs/ntfs.h soc2011/shm/sys/fs/ntfs/ntfs_compr.c soc2011/shm/sys/fs/ntfs/ntfs_compr.h soc2011/shm/sys/fs/ntfs/ntfs_iconv.c soc2011/shm/sys/fs/ntfs/ntfs_ihash.c soc2011/shm/sys/fs/ntfs/ntfs_ihash.h soc2011/shm/sys/fs/ntfs/ntfs_inode.h soc2011/shm/sys/fs/ntfs/ntfs_subr.c soc2011/shm/sys/fs/ntfs/ntfs_subr.h soc2011/shm/sys/fs/ntfs/ntfs_vfsops.c soc2011/shm/sys/fs/ntfs/ntfs_vfsops.h soc2011/shm/sys/fs/ntfs/ntfs_vnops.c soc2011/shm/sys/fs/ntfs/ntfsmount.h soc2011/shm/sys/fs/nullfs/ soc2011/shm/sys/fs/nullfs/null.h soc2011/shm/sys/fs/nullfs/null_subr.c soc2011/shm/sys/fs/nullfs/null_vfsops.c soc2011/shm/sys/fs/nullfs/null_vnops.c soc2011/shm/sys/fs/nwfs/ soc2011/shm/sys/fs/nwfs/nwfs.h soc2011/shm/sys/fs/nwfs/nwfs_io.c soc2011/shm/sys/fs/nwfs/nwfs_ioctl.c soc2011/shm/sys/fs/nwfs/nwfs_mount.h soc2011/shm/sys/fs/nwfs/nwfs_node.c soc2011/shm/sys/fs/nwfs/nwfs_node.h soc2011/shm/sys/fs/nwfs/nwfs_subr.c soc2011/shm/sys/fs/nwfs/nwfs_subr.h soc2011/shm/sys/fs/nwfs/nwfs_vfsops.c soc2011/shm/sys/fs/nwfs/nwfs_vnops.c soc2011/shm/sys/fs/portalfs/ soc2011/shm/sys/fs/portalfs/portal.h soc2011/shm/sys/fs/portalfs/portal_vfsops.c soc2011/shm/sys/fs/portalfs/portal_vnops.c soc2011/shm/sys/fs/procfs/ soc2011/shm/sys/fs/procfs/README soc2011/shm/sys/fs/procfs/procfs.c soc2011/shm/sys/fs/procfs/procfs.h soc2011/shm/sys/fs/procfs/procfs_ctl.c soc2011/shm/sys/fs/procfs/procfs_dbregs.c soc2011/shm/sys/fs/procfs/procfs_fpregs.c soc2011/shm/sys/fs/procfs/procfs_ioctl.c soc2011/shm/sys/fs/procfs/procfs_map.c soc2011/shm/sys/fs/procfs/procfs_mem.c soc2011/shm/sys/fs/procfs/procfs_note.c soc2011/shm/sys/fs/procfs/procfs_osrel.c soc2011/shm/sys/fs/procfs/procfs_regs.c soc2011/shm/sys/fs/procfs/procfs_rlimit.c soc2011/shm/sys/fs/procfs/procfs_status.c soc2011/shm/sys/fs/procfs/procfs_type.c soc2011/shm/sys/fs/pseudofs/ soc2011/shm/sys/fs/pseudofs/pseudofs.c soc2011/shm/sys/fs/pseudofs/pseudofs.h soc2011/shm/sys/fs/pseudofs/pseudofs_fileno.c soc2011/shm/sys/fs/pseudofs/pseudofs_internal.h soc2011/shm/sys/fs/pseudofs/pseudofs_vncache.c soc2011/shm/sys/fs/pseudofs/pseudofs_vnops.c soc2011/shm/sys/fs/smbfs/ soc2011/shm/sys/fs/smbfs/smbfs.h soc2011/shm/sys/fs/smbfs/smbfs_io.c soc2011/shm/sys/fs/smbfs/smbfs_node.c soc2011/shm/sys/fs/smbfs/smbfs_node.h soc2011/shm/sys/fs/smbfs/smbfs_smb.c soc2011/shm/sys/fs/smbfs/smbfs_subr.c soc2011/shm/sys/fs/smbfs/smbfs_subr.h soc2011/shm/sys/fs/smbfs/smbfs_vfsops.c soc2011/shm/sys/fs/smbfs/smbfs_vnops.c soc2011/shm/sys/fs/tmpfs/ soc2011/shm/sys/fs/tmpfs/tmpfs.h soc2011/shm/sys/fs/tmpfs/tmpfs_fifoops.c soc2011/shm/sys/fs/tmpfs/tmpfs_fifoops.h soc2011/shm/sys/fs/tmpfs/tmpfs_subr.c soc2011/shm/sys/fs/tmpfs/tmpfs_vfsops.c soc2011/shm/sys/fs/tmpfs/tmpfs_vnops.c soc2011/shm/sys/fs/tmpfs/tmpfs_vnops.h soc2011/shm/sys/fs/udf/ soc2011/shm/sys/fs/udf/ecma167-udf.h soc2011/shm/sys/fs/udf/osta.c soc2011/shm/sys/fs/udf/osta.h soc2011/shm/sys/fs/udf/udf.h soc2011/shm/sys/fs/udf/udf_iconv.c soc2011/shm/sys/fs/udf/udf_mount.h soc2011/shm/sys/fs/udf/udf_vfsops.c soc2011/shm/sys/fs/udf/udf_vnops.c soc2011/shm/sys/fs/unionfs/ soc2011/shm/sys/fs/unionfs/union.h soc2011/shm/sys/fs/unionfs/union_subr.c soc2011/shm/sys/fs/unionfs/union_vfsops.c soc2011/shm/sys/fs/unionfs/union_vnops.c soc2011/shm/sys/gdb/ soc2011/shm/sys/gdb/gdb.h soc2011/shm/sys/gdb/gdb_cons.c soc2011/shm/sys/gdb/gdb_int.h soc2011/shm/sys/gdb/gdb_main.c soc2011/shm/sys/gdb/gdb_packet.c soc2011/shm/sys/geom/ soc2011/shm/sys/geom/bde/ soc2011/shm/sys/geom/bde/g_bde.c soc2011/shm/sys/geom/bde/g_bde.h soc2011/shm/sys/geom/bde/g_bde_crypt.c soc2011/shm/sys/geom/bde/g_bde_lock.c soc2011/shm/sys/geom/bde/g_bde_work.c soc2011/shm/sys/geom/cache/ soc2011/shm/sys/geom/cache/g_cache.c soc2011/shm/sys/geom/cache/g_cache.h soc2011/shm/sys/geom/concat/ soc2011/shm/sys/geom/concat/g_concat.c soc2011/shm/sys/geom/concat/g_concat.h soc2011/shm/sys/geom/eli/ soc2011/shm/sys/geom/eli/g_eli.c soc2011/shm/sys/geom/eli/g_eli.h soc2011/shm/sys/geom/eli/g_eli_crypto.c soc2011/shm/sys/geom/eli/g_eli_ctl.c soc2011/shm/sys/geom/eli/g_eli_integrity.c soc2011/shm/sys/geom/eli/g_eli_key.c soc2011/shm/sys/geom/eli/g_eli_privacy.c soc2011/shm/sys/geom/eli/pkcs5v2.c soc2011/shm/sys/geom/eli/pkcs5v2.h soc2011/shm/sys/geom/gate/ soc2011/shm/sys/geom/gate/g_gate.c soc2011/shm/sys/geom/gate/g_gate.h soc2011/shm/sys/geom/geom.h soc2011/shm/sys/geom/geom_aes.c soc2011/shm/sys/geom/geom_bsd.c soc2011/shm/sys/geom/geom_bsd_enc.c soc2011/shm/sys/geom/geom_ccd.c soc2011/shm/sys/geom/geom_ctl.c soc2011/shm/sys/geom/geom_ctl.h soc2011/shm/sys/geom/geom_dev.c soc2011/shm/sys/geom/geom_disk.c soc2011/shm/sys/geom/geom_disk.h soc2011/shm/sys/geom/geom_dump.c soc2011/shm/sys/geom/geom_event.c soc2011/shm/sys/geom/geom_fox.c soc2011/shm/sys/geom/geom_int.h soc2011/shm/sys/geom/geom_io.c soc2011/shm/sys/geom/geom_kern.c soc2011/shm/sys/geom/geom_mbr.c soc2011/shm/sys/geom/geom_mbr_enc.c soc2011/shm/sys/geom/geom_pc98.c soc2011/shm/sys/geom/geom_pc98_enc.c soc2011/shm/sys/geom/geom_redboot.c soc2011/shm/sys/geom/geom_slice.c soc2011/shm/sys/geom/geom_slice.h soc2011/shm/sys/geom/geom_subr.c soc2011/shm/sys/geom/geom_sunlabel.c soc2011/shm/sys/geom/geom_sunlabel_enc.c soc2011/shm/sys/geom/geom_vfs.c soc2011/shm/sys/geom/geom_vfs.h soc2011/shm/sys/geom/geom_vol_ffs.c soc2011/shm/sys/geom/journal/ soc2011/shm/sys/geom/journal/g_journal.c soc2011/shm/sys/geom/journal/g_journal.h soc2011/shm/sys/geom/journal/g_journal_ufs.c soc2011/shm/sys/geom/label/ soc2011/shm/sys/geom/label/g_label.c soc2011/shm/sys/geom/label/g_label.h soc2011/shm/sys/geom/label/g_label_ext2fs.c soc2011/shm/sys/geom/label/g_label_gpt.c soc2011/shm/sys/geom/label/g_label_iso9660.c soc2011/shm/sys/geom/label/g_label_msdosfs.c soc2011/shm/sys/geom/label/g_label_msdosfs.h soc2011/shm/sys/geom/label/g_label_ntfs.c soc2011/shm/sys/geom/label/g_label_reiserfs.c soc2011/shm/sys/geom/label/g_label_ufs.c soc2011/shm/sys/geom/linux_lvm/ soc2011/shm/sys/geom/linux_lvm/g_linux_lvm.c soc2011/shm/sys/geom/linux_lvm/g_linux_lvm.h soc2011/shm/sys/geom/mirror/ soc2011/shm/sys/geom/mirror/g_mirror.c soc2011/shm/sys/geom/mirror/g_mirror.h soc2011/shm/sys/geom/mirror/g_mirror_ctl.c soc2011/shm/sys/geom/multipath/ soc2011/shm/sys/geom/multipath/g_multipath.c soc2011/shm/sys/geom/multipath/g_multipath.h soc2011/shm/sys/geom/nop/ soc2011/shm/sys/geom/nop/g_nop.c soc2011/shm/sys/geom/nop/g_nop.h soc2011/shm/sys/geom/notes soc2011/shm/sys/geom/part/ soc2011/shm/sys/geom/part/g_part.c soc2011/shm/sys/geom/part/g_part.h soc2011/shm/sys/geom/part/g_part_apm.c soc2011/shm/sys/geom/part/g_part_bsd.c soc2011/shm/sys/geom/part/g_part_ebr.c soc2011/shm/sys/geom/part/g_part_gpt.c soc2011/shm/sys/geom/part/g_part_if.m soc2011/shm/sys/geom/part/g_part_mbr.c soc2011/shm/sys/geom/part/g_part_pc98.c soc2011/shm/sys/geom/part/g_part_vtoc8.c soc2011/shm/sys/geom/raid3/ soc2011/shm/sys/geom/raid3/g_raid3.c soc2011/shm/sys/geom/raid3/g_raid3.h soc2011/shm/sys/geom/raid3/g_raid3_ctl.c soc2011/shm/sys/geom/sched/ soc2011/shm/sys/geom/sched/README soc2011/shm/sys/geom/sched/g_sched.c soc2011/shm/sys/geom/sched/g_sched.h soc2011/shm/sys/geom/sched/gs_rr.c soc2011/shm/sys/geom/sched/gs_scheduler.h soc2011/shm/sys/geom/sched/subr_disk.c soc2011/shm/sys/geom/shsec/ soc2011/shm/sys/geom/shsec/g_shsec.c soc2011/shm/sys/geom/shsec/g_shsec.h soc2011/shm/sys/geom/stripe/ soc2011/shm/sys/geom/stripe/g_stripe.c soc2011/shm/sys/geom/stripe/g_stripe.h soc2011/shm/sys/geom/uzip/ soc2011/shm/sys/geom/uzip/g_uzip.c soc2011/shm/sys/geom/vinum/ soc2011/shm/sys/geom/vinum/geom_vinum.c soc2011/shm/sys/geom/vinum/geom_vinum.h soc2011/shm/sys/geom/vinum/geom_vinum_create.c soc2011/shm/sys/geom/vinum/geom_vinum_drive.c soc2011/shm/sys/geom/vinum/geom_vinum_events.c soc2011/shm/sys/geom/vinum/geom_vinum_init.c soc2011/shm/sys/geom/vinum/geom_vinum_list.c soc2011/shm/sys/geom/vinum/geom_vinum_move.c soc2011/shm/sys/geom/vinum/geom_vinum_plex.c soc2011/shm/sys/geom/vinum/geom_vinum_raid5.c soc2011/shm/sys/geom/vinum/geom_vinum_raid5.h soc2011/shm/sys/geom/vinum/geom_vinum_rename.c soc2011/shm/sys/geom/vinum/geom_vinum_rm.c soc2011/shm/sys/geom/vinum/geom_vinum_share.c soc2011/shm/sys/geom/vinum/geom_vinum_share.h soc2011/shm/sys/geom/vinum/geom_vinum_state.c soc2011/shm/sys/geom/vinum/geom_vinum_subr.c soc2011/shm/sys/geom/vinum/geom_vinum_var.h soc2011/shm/sys/geom/vinum/geom_vinum_volume.c soc2011/shm/sys/geom/virstor/ soc2011/shm/sys/geom/virstor/binstream.c soc2011/shm/sys/geom/virstor/binstream.h soc2011/shm/sys/geom/virstor/g_virstor.c soc2011/shm/sys/geom/virstor/g_virstor.h soc2011/shm/sys/geom/virstor/g_virstor_md.c soc2011/shm/sys/geom/virstor/g_virstor_md.h soc2011/shm/sys/geom/zero/ soc2011/shm/sys/geom/zero/g_zero.c soc2011/shm/sys/gnu/ soc2011/shm/sys/gnu/dev/ soc2011/shm/sys/gnu/dev/sound/ soc2011/shm/sys/gnu/dev/sound/pci/ soc2011/shm/sys/gnu/dev/sound/pci/csaimg.h (contents, props changed) soc2011/shm/sys/gnu/dev/sound/pci/emu10k1-alsa.h soc2011/shm/sys/gnu/dev/sound/pci/maestro3_dsp.h soc2011/shm/sys/gnu/dev/sound/pci/maestro3_reg.h soc2011/shm/sys/gnu/dev/sound/pci/p16v-alsa.h soc2011/shm/sys/gnu/dev/sound/pci/p17v-alsa.h soc2011/shm/sys/gnu/fs/ soc2011/shm/sys/gnu/fs/ext2fs/ soc2011/shm/sys/gnu/fs/ext2fs/COPYRIGHT.INFO soc2011/shm/sys/gnu/fs/ext2fs/ext2_alloc.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_balloc.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_bitops.h soc2011/shm/sys/gnu/fs/ext2fs/ext2_bmap.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_extern.h soc2011/shm/sys/gnu/fs/ext2fs/ext2_fs.h soc2011/shm/sys/gnu/fs/ext2fs/ext2_fs_sb.h soc2011/shm/sys/gnu/fs/ext2fs/ext2_inode.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_inode_cnv.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_linux_balloc.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_linux_ialloc.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_lookup.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_mount.h soc2011/shm/sys/gnu/fs/ext2fs/ext2_readwrite.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_subr.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_vfsops.c soc2011/shm/sys/gnu/fs/ext2fs/ext2_vnops.c soc2011/shm/sys/gnu/fs/ext2fs/fs.h soc2011/shm/sys/gnu/fs/ext2fs/i386-bitops.h soc2011/shm/sys/gnu/fs/ext2fs/inode.h soc2011/shm/sys/gnu/fs/reiserfs/ soc2011/shm/sys/gnu/fs/reiserfs/README soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_fs.h soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_fs_i.h soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_fs_sb.h soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_hashes.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_inode.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_item_ops.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_mount.h soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_namei.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_prints.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_stree.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_vfsops.c soc2011/shm/sys/gnu/fs/reiserfs/reiserfs_vnops.c soc2011/shm/sys/gnu/fs/xfs/ soc2011/shm/sys/gnu/fs/xfs/FreeBSD/ soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/ soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/atomic.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/debug.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/debug.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/kdb.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/kdb.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/kmem.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/kmem.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/ktrace.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/ktrace.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/move.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/mrlock.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/mrlock.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/mutex.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/rwlock.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/rwsem.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/sema.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/spin.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/support.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/sv.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/time.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/uuid.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/support/uuid.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_buf.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_buf.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_compat.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_config.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_cred.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_dmistubs.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_frw.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_frw.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_fs_subr.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_fs_subr.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_globals.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_ioctl.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_iops.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_node.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_stats.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_stats.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_super.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_super.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_sysctl.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_sysctl.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_version.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_vfs.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_vfs.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_vnode.c soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_vnode.h soc2011/shm/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c soc2011/shm/sys/gnu/fs/xfs/xfs.h soc2011/shm/sys/gnu/fs/xfs/xfs_acl.c soc2011/shm/sys/gnu/fs/xfs/xfs_acl.h soc2011/shm/sys/gnu/fs/xfs/xfs_ag.h soc2011/shm/sys/gnu/fs/xfs/xfs_alloc.c soc2011/shm/sys/gnu/fs/xfs/xfs_alloc.h soc2011/shm/sys/gnu/fs/xfs/xfs_alloc_btree.c soc2011/shm/sys/gnu/fs/xfs/xfs_alloc_btree.h soc2011/shm/sys/gnu/fs/xfs/xfs_arch.h soc2011/shm/sys/gnu/fs/xfs/xfs_attr.c soc2011/shm/sys/gnu/fs/xfs/xfs_attr.h soc2011/shm/sys/gnu/fs/xfs/xfs_attr_leaf.c soc2011/shm/sys/gnu/fs/xfs/xfs_attr_leaf.h soc2011/shm/sys/gnu/fs/xfs/xfs_attr_sf.h soc2011/shm/sys/gnu/fs/xfs/xfs_behavior.c soc2011/shm/sys/gnu/fs/xfs/xfs_behavior.h soc2011/shm/sys/gnu/fs/xfs/xfs_bit.c soc2011/shm/sys/gnu/fs/xfs/xfs_bit.h soc2011/shm/sys/gnu/fs/xfs/xfs_bmap.c soc2011/shm/sys/gnu/fs/xfs/xfs_bmap.h soc2011/shm/sys/gnu/fs/xfs/xfs_bmap_btree.c soc2011/shm/sys/gnu/fs/xfs/xfs_bmap_btree.h soc2011/shm/sys/gnu/fs/xfs/xfs_btree.c soc2011/shm/sys/gnu/fs/xfs/xfs_btree.h soc2011/shm/sys/gnu/fs/xfs/xfs_buf_item.c soc2011/shm/sys/gnu/fs/xfs/xfs_buf_item.h soc2011/shm/sys/gnu/fs/xfs/xfs_cap.c soc2011/shm/sys/gnu/fs/xfs/xfs_cap.h soc2011/shm/sys/gnu/fs/xfs/xfs_clnt.h soc2011/shm/sys/gnu/fs/xfs/xfs_da_btree.c soc2011/shm/sys/gnu/fs/xfs/xfs_da_btree.h soc2011/shm/sys/gnu/fs/xfs/xfs_dfrag.c soc2011/shm/sys/gnu/fs/xfs/xfs_dfrag.h soc2011/shm/sys/gnu/fs/xfs/xfs_dinode.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_block.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_block.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_data.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_data.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_leaf.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_leaf.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_node.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_node.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_sf.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_sf.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_trace.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir2_trace.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir_leaf.c soc2011/shm/sys/gnu/fs/xfs/xfs_dir_leaf.h soc2011/shm/sys/gnu/fs/xfs/xfs_dir_sf.h soc2011/shm/sys/gnu/fs/xfs/xfs_dmapi.h soc2011/shm/sys/gnu/fs/xfs/xfs_dmops.c soc2011/shm/sys/gnu/fs/xfs/xfs_error.c soc2011/shm/sys/gnu/fs/xfs/xfs_error.h soc2011/shm/sys/gnu/fs/xfs/xfs_extfree_item.c soc2011/shm/sys/gnu/fs/xfs/xfs_extfree_item.h soc2011/shm/sys/gnu/fs/xfs/xfs_fs.h soc2011/shm/sys/gnu/fs/xfs/xfs_fsops.c soc2011/shm/sys/gnu/fs/xfs/xfs_fsops.h soc2011/shm/sys/gnu/fs/xfs/xfs_ialloc.c soc2011/shm/sys/gnu/fs/xfs/xfs_ialloc.h soc2011/shm/sys/gnu/fs/xfs/xfs_ialloc_btree.c soc2011/shm/sys/gnu/fs/xfs/xfs_ialloc_btree.h soc2011/shm/sys/gnu/fs/xfs/xfs_iget.c soc2011/shm/sys/gnu/fs/xfs/xfs_imap.h soc2011/shm/sys/gnu/fs/xfs/xfs_inode.c soc2011/shm/sys/gnu/fs/xfs/xfs_inode.h soc2011/shm/sys/gnu/fs/xfs/xfs_inode_item.c soc2011/shm/sys/gnu/fs/xfs/xfs_inode_item.h soc2011/shm/sys/gnu/fs/xfs/xfs_inum.h soc2011/shm/sys/gnu/fs/xfs/xfs_iocore.c soc2011/shm/sys/gnu/fs/xfs/xfs_iomap.c soc2011/shm/sys/gnu/fs/xfs/xfs_iomap.h soc2011/shm/sys/gnu/fs/xfs/xfs_itable.c soc2011/shm/sys/gnu/fs/xfs/xfs_itable.h soc2011/shm/sys/gnu/fs/xfs/xfs_log.c soc2011/shm/sys/gnu/fs/xfs/xfs_log.h soc2011/shm/sys/gnu/fs/xfs/xfs_log_priv.h soc2011/shm/sys/gnu/fs/xfs/xfs_log_recover.c soc2011/shm/sys/gnu/fs/xfs/xfs_log_recover.h soc2011/shm/sys/gnu/fs/xfs/xfs_mac.c soc2011/shm/sys/gnu/fs/xfs/xfs_mac.h soc2011/shm/sys/gnu/fs/xfs/xfs_mount.c soc2011/shm/sys/gnu/fs/xfs/xfs_mount.h soc2011/shm/sys/gnu/fs/xfs/xfs_qmops.c soc2011/shm/sys/gnu/fs/xfs/xfs_quota.h soc2011/shm/sys/gnu/fs/xfs/xfs_refcache.c soc2011/shm/sys/gnu/fs/xfs/xfs_refcache.h soc2011/shm/sys/gnu/fs/xfs/xfs_rename.c soc2011/shm/sys/gnu/fs/xfs/xfs_rtalloc.c soc2011/shm/sys/gnu/fs/xfs/xfs_rtalloc.h soc2011/shm/sys/gnu/fs/xfs/xfs_rw.c soc2011/shm/sys/gnu/fs/xfs/xfs_rw.h soc2011/shm/sys/gnu/fs/xfs/xfs_sb.h soc2011/shm/sys/gnu/fs/xfs/xfs_trans.c soc2011/shm/sys/gnu/fs/xfs/xfs_trans.h soc2011/shm/sys/gnu/fs/xfs/xfs_trans_ail.c soc2011/shm/sys/gnu/fs/xfs/xfs_trans_buf.c soc2011/shm/sys/gnu/fs/xfs/xfs_trans_extfree.c soc2011/shm/sys/gnu/fs/xfs/xfs_trans_inode.c soc2011/shm/sys/gnu/fs/xfs/xfs_trans_item.c soc2011/shm/sys/gnu/fs/xfs/xfs_trans_priv.h soc2011/shm/sys/gnu/fs/xfs/xfs_trans_space.h soc2011/shm/sys/gnu/fs/xfs/xfs_types.h soc2011/shm/sys/gnu/fs/xfs/xfs_utils.c soc2011/shm/sys/gnu/fs/xfs/xfs_utils.h soc2011/shm/sys/gnu/fs/xfs/xfs_vfsops.c soc2011/shm/sys/gnu/fs/xfs/xfs_vnodeops.c soc2011/shm/sys/gnu/fs/xfs/xfsidbg.c soc2011/shm/sys/i386/ soc2011/shm/sys/i386/Makefile soc2011/shm/sys/i386/acpica/ soc2011/shm/sys/i386/acpica/Makefile soc2011/shm/sys/i386/acpica/OsdEnvironment.c soc2011/shm/sys/i386/acpica/acpi_machdep.c soc2011/shm/sys/i386/acpica/acpi_wakecode.S soc2011/shm/sys/i386/acpica/acpi_wakeup.c soc2011/shm/sys/i386/acpica/genwakecode.sh soc2011/shm/sys/i386/acpica/madt.c soc2011/shm/sys/i386/bios/ soc2011/shm/sys/i386/bios/apm.c soc2011/shm/sys/i386/bios/apm.h soc2011/shm/sys/i386/bios/mca_machdep.c soc2011/shm/sys/i386/bios/mca_machdep.h soc2011/shm/sys/i386/bios/smapi.c soc2011/shm/sys/i386/bios/smapi_bios.S soc2011/shm/sys/i386/bios/smbios.c soc2011/shm/sys/i386/bios/vpd.c soc2011/shm/sys/i386/compile/ soc2011/shm/sys/i386/compile/.cvsignore soc2011/shm/sys/i386/conf/ soc2011/shm/sys/i386/conf/.cvsignore soc2011/shm/sys/i386/conf/DEFAULTS soc2011/shm/sys/i386/conf/GENERIC soc2011/shm/sys/i386/conf/GENERIC.hints soc2011/shm/sys/i386/conf/Makefile soc2011/shm/sys/i386/conf/NOTES soc2011/shm/sys/i386/conf/PAE soc2011/shm/sys/i386/conf/XBOX soc2011/shm/sys/i386/conf/XEN soc2011/shm/sys/i386/cpufreq/ soc2011/shm/sys/i386/cpufreq/est.c soc2011/shm/sys/i386/cpufreq/hwpstate.c soc2011/shm/sys/i386/cpufreq/p4tcc.c soc2011/shm/sys/i386/cpufreq/powernow.c soc2011/shm/sys/i386/cpufreq/smist.c soc2011/shm/sys/i386/i386/ soc2011/shm/sys/i386/i386/apic_vector.s soc2011/shm/sys/i386/i386/atomic.c soc2011/shm/sys/i386/i386/autoconf.c soc2011/shm/sys/i386/i386/bios.c soc2011/shm/sys/i386/i386/bioscall.s soc2011/shm/sys/i386/i386/bpf_jit_machdep.c soc2011/shm/sys/i386/i386/bpf_jit_machdep.h soc2011/shm/sys/i386/i386/busdma_machdep.c soc2011/shm/sys/i386/i386/db_disasm.c soc2011/shm/sys/i386/i386/db_interface.c soc2011/shm/sys/i386/i386/db_trace.c soc2011/shm/sys/i386/i386/dump_machdep.c soc2011/shm/sys/i386/i386/elan-mmcr.c soc2011/shm/sys/i386/i386/elf_machdep.c soc2011/shm/sys/i386/i386/exception.s soc2011/shm/sys/i386/i386/gdb_machdep.c soc2011/shm/sys/i386/i386/genassym.c soc2011/shm/sys/i386/i386/geode.c soc2011/shm/sys/i386/i386/i686_mem.c soc2011/shm/sys/i386/i386/identcpu.c soc2011/shm/sys/i386/i386/in_cksum.c soc2011/shm/sys/i386/i386/initcpu.c soc2011/shm/sys/i386/i386/intr_machdep.c soc2011/shm/sys/i386/i386/io.c soc2011/shm/sys/i386/i386/io_apic.c soc2011/shm/sys/i386/i386/k6_mem.c soc2011/shm/sys/i386/i386/legacy.c soc2011/shm/sys/i386/i386/local_apic.c soc2011/shm/sys/i386/i386/locore.s soc2011/shm/sys/i386/i386/longrun.c soc2011/shm/sys/i386/i386/machdep.c soc2011/shm/sys/i386/i386/mca.c soc2011/shm/sys/i386/i386/mem.c soc2011/shm/sys/i386/i386/minidump_machdep.c soc2011/shm/sys/i386/i386/mp_clock.c soc2011/shm/sys/i386/i386/mp_machdep.c soc2011/shm/sys/i386/i386/mp_watchdog.c soc2011/shm/sys/i386/i386/mpboot.s soc2011/shm/sys/i386/i386/mptable.c soc2011/shm/sys/i386/i386/mptable_pci.c soc2011/shm/sys/i386/i386/msi.c soc2011/shm/sys/i386/i386/nexus.c soc2011/shm/sys/i386/i386/perfmon.c soc2011/shm/sys/i386/i386/pmap.c soc2011/shm/sys/i386/i386/ptrace_machdep.c soc2011/shm/sys/i386/i386/stack_machdep.c soc2011/shm/sys/i386/i386/support.s soc2011/shm/sys/i386/i386/swtch.s soc2011/shm/sys/i386/i386/symbols.raw soc2011/shm/sys/i386/i386/sys_machdep.c soc2011/shm/sys/i386/i386/trap.c soc2011/shm/sys/i386/i386/tsc.c soc2011/shm/sys/i386/i386/uio_machdep.c soc2011/shm/sys/i386/i386/vm86.c soc2011/shm/sys/i386/i386/vm86bios.s soc2011/shm/sys/i386/i386/vm_machdep.c soc2011/shm/sys/i386/ibcs2/ soc2011/shm/sys/i386/ibcs2/Makefile soc2011/shm/sys/i386/ibcs2/coff.h soc2011/shm/sys/i386/ibcs2/ibcs2_dirent.h soc2011/shm/sys/i386/ibcs2/ibcs2_errno.c soc2011/shm/sys/i386/ibcs2/ibcs2_errno.h soc2011/shm/sys/i386/ibcs2/ibcs2_fcntl.c soc2011/shm/sys/i386/ibcs2/ibcs2_fcntl.h soc2011/shm/sys/i386/ibcs2/ibcs2_ioctl.c soc2011/shm/sys/i386/ibcs2/ibcs2_ioctl.h soc2011/shm/sys/i386/ibcs2/ibcs2_ipc.c soc2011/shm/sys/i386/ibcs2/ibcs2_ipc.h soc2011/shm/sys/i386/ibcs2/ibcs2_isc.c soc2011/shm/sys/i386/ibcs2/ibcs2_isc_syscall.h soc2011/shm/sys/i386/ibcs2/ibcs2_isc_sysent.c soc2011/shm/sys/i386/ibcs2/ibcs2_misc.c soc2011/shm/sys/i386/ibcs2/ibcs2_mount.h soc2011/shm/sys/i386/ibcs2/ibcs2_msg.c soc2011/shm/sys/i386/ibcs2/ibcs2_other.c soc2011/shm/sys/i386/ibcs2/ibcs2_proto.h soc2011/shm/sys/i386/ibcs2/ibcs2_signal.c soc2011/shm/sys/i386/ibcs2/ibcs2_signal.h soc2011/shm/sys/i386/ibcs2/ibcs2_socksys.c soc2011/shm/sys/i386/ibcs2/ibcs2_socksys.h soc2011/shm/sys/i386/ibcs2/ibcs2_stat.c soc2011/shm/sys/i386/ibcs2/ibcs2_stat.h soc2011/shm/sys/i386/ibcs2/ibcs2_statfs.h soc2011/shm/sys/i386/ibcs2/ibcs2_stropts.h soc2011/shm/sys/i386/ibcs2/ibcs2_syscall.h soc2011/shm/sys/i386/ibcs2/ibcs2_sysent.c soc2011/shm/sys/i386/ibcs2/ibcs2_sysi86.c soc2011/shm/sys/i386/ibcs2/ibcs2_sysvec.c soc2011/shm/sys/i386/ibcs2/ibcs2_termios.h soc2011/shm/sys/i386/ibcs2/ibcs2_time.h soc2011/shm/sys/i386/ibcs2/ibcs2_types.h soc2011/shm/sys/i386/ibcs2/ibcs2_unistd.h soc2011/shm/sys/i386/ibcs2/ibcs2_ustat.h soc2011/shm/sys/i386/ibcs2/ibcs2_util.c soc2011/shm/sys/i386/ibcs2/ibcs2_util.h soc2011/shm/sys/i386/ibcs2/ibcs2_utime.h soc2011/shm/sys/i386/ibcs2/ibcs2_utsname.h soc2011/shm/sys/i386/ibcs2/ibcs2_xenix.c soc2011/shm/sys/i386/ibcs2/ibcs2_xenix.h soc2011/shm/sys/i386/ibcs2/ibcs2_xenix_syscall.h soc2011/shm/sys/i386/ibcs2/ibcs2_xenix_sysent.c soc2011/shm/sys/i386/ibcs2/imgact_coff.c soc2011/shm/sys/i386/ibcs2/syscalls.conf soc2011/shm/sys/i386/ibcs2/syscalls.isc soc2011/shm/sys/i386/ibcs2/syscalls.isc.conf soc2011/shm/sys/i386/ibcs2/syscalls.master soc2011/shm/sys/i386/ibcs2/syscalls.xenix soc2011/shm/sys/i386/ibcs2/syscalls.xenix.conf soc2011/shm/sys/i386/include/ soc2011/shm/sys/i386/include/_bus.h soc2011/shm/sys/i386/include/_inttypes.h soc2011/shm/sys/i386/include/_limits.h soc2011/shm/sys/i386/include/_stdint.h soc2011/shm/sys/i386/include/_types.h soc2011/shm/sys/i386/include/acpica_machdep.h soc2011/shm/sys/i386/include/apicreg.h soc2011/shm/sys/i386/include/apicvar.h soc2011/shm/sys/i386/include/apm_bios.h soc2011/shm/sys/i386/include/apm_segments.h soc2011/shm/sys/i386/include/asm.h soc2011/shm/sys/i386/include/asmacros.h soc2011/shm/sys/i386/include/atomic.h soc2011/shm/sys/i386/include/bootinfo.h soc2011/shm/sys/i386/include/bus.h soc2011/shm/sys/i386/include/bus_dma.h soc2011/shm/sys/i386/include/clock.h soc2011/shm/sys/i386/include/cpu.h soc2011/shm/sys/i386/include/cpufunc.h soc2011/shm/sys/i386/include/cputypes.h soc2011/shm/sys/i386/include/cserial.h soc2011/shm/sys/i386/include/db_machdep.h soc2011/shm/sys/i386/include/elan_mmcr.h soc2011/shm/sys/i386/include/elf.h soc2011/shm/sys/i386/include/endian.h soc2011/shm/sys/i386/include/exec.h soc2011/shm/sys/i386/include/float.h soc2011/shm/sys/i386/include/floatingpoint.h soc2011/shm/sys/i386/include/frame.h soc2011/shm/sys/i386/include/gdb_machdep.h soc2011/shm/sys/i386/include/ieeefp.h soc2011/shm/sys/i386/include/if_wl_wavelan.h soc2011/shm/sys/i386/include/in_cksum.h soc2011/shm/sys/i386/include/intr_machdep.h soc2011/shm/sys/i386/include/ioctl_bt848.h soc2011/shm/sys/i386/include/ioctl_meteor.h soc2011/shm/sys/i386/include/iodev.h soc2011/shm/sys/i386/include/kdb.h soc2011/shm/sys/i386/include/legacyvar.h soc2011/shm/sys/i386/include/limits.h soc2011/shm/sys/i386/include/mca.h soc2011/shm/sys/i386/include/md_var.h soc2011/shm/sys/i386/include/memdev.h soc2011/shm/sys/i386/include/metadata.h soc2011/shm/sys/i386/include/minidump.h soc2011/shm/sys/i386/include/mp_watchdog.h soc2011/shm/sys/i386/include/mptable.h soc2011/shm/sys/i386/include/mutex.h soc2011/shm/sys/i386/include/nexusvar.h soc2011/shm/sys/i386/include/npx.h soc2011/shm/sys/i386/include/param.h soc2011/shm/sys/i386/include/pc/ soc2011/shm/sys/i386/include/pc/bios.h soc2011/shm/sys/i386/include/pc/display.h soc2011/shm/sys/i386/include/pcaudioio.h soc2011/shm/sys/i386/include/pcb.h soc2011/shm/sys/i386/include/pcb_ext.h soc2011/shm/sys/i386/include/pci_cfgreg.h soc2011/shm/sys/i386/include/pcpu.h soc2011/shm/sys/i386/include/perfmon.h soc2011/shm/sys/i386/include/pmap.h soc2011/shm/sys/i386/include/pmc_mdep.h soc2011/shm/sys/i386/include/ppireg.h soc2011/shm/sys/i386/include/privatespace.h soc2011/shm/sys/i386/include/proc.h soc2011/shm/sys/i386/include/profile.h soc2011/shm/sys/i386/include/psl.h soc2011/shm/sys/i386/include/ptrace.h soc2011/shm/sys/i386/include/reg.h soc2011/shm/sys/i386/include/reloc.h soc2011/shm/sys/i386/include/resource.h soc2011/shm/sys/i386/include/runq.h soc2011/shm/sys/i386/include/segments.h soc2011/shm/sys/i386/include/setjmp.h soc2011/shm/sys/i386/include/sf_buf.h soc2011/shm/sys/i386/include/sigframe.h soc2011/shm/sys/i386/include/signal.h soc2011/shm/sys/i386/include/smapi.h soc2011/shm/sys/i386/include/smp.h soc2011/shm/sys/i386/include/speaker.h soc2011/shm/sys/i386/include/specialreg.h soc2011/shm/sys/i386/include/stack.h soc2011/shm/sys/i386/include/stdarg.h soc2011/shm/sys/i386/include/sysarch.h soc2011/shm/sys/i386/include/timerreg.h soc2011/shm/sys/i386/include/trap.h soc2011/shm/sys/i386/include/tss.h soc2011/shm/sys/i386/include/ucontext.h soc2011/shm/sys/i386/include/varargs.h soc2011/shm/sys/i386/include/vm.h soc2011/shm/sys/i386/include/vm86.h soc2011/shm/sys/i386/include/vmparam.h soc2011/shm/sys/i386/include/xbox.h soc2011/shm/sys/i386/include/xen/ soc2011/shm/sys/i386/include/xen/features.h soc2011/shm/sys/i386/include/xen/hypercall.h soc2011/shm/sys/i386/include/xen/synch_bitops.h soc2011/shm/sys/i386/include/xen/xen-os.h soc2011/shm/sys/i386/include/xen/xen_clock_util.h soc2011/shm/sys/i386/include/xen/xenfunc.h soc2011/shm/sys/i386/include/xen/xenpmap.h soc2011/shm/sys/i386/include/xen/xenstored.h soc2011/shm/sys/i386/include/xen/xenvar.h soc2011/shm/sys/i386/isa/ soc2011/shm/sys/i386/isa/atpic.c soc2011/shm/sys/i386/isa/atpic_vector.s soc2011/shm/sys/i386/isa/ccbque.h soc2011/shm/sys/i386/isa/clock.c soc2011/shm/sys/i386/isa/elcr.c soc2011/shm/sys/i386/isa/elink.c soc2011/shm/sys/i386/isa/elink.h soc2011/shm/sys/i386/isa/icu.h soc2011/shm/sys/i386/isa/isa.c soc2011/shm/sys/i386/isa/isa.h soc2011/shm/sys/i386/isa/isa_dma.c soc2011/shm/sys/i386/isa/nmi.c soc2011/shm/sys/i386/isa/npx.c soc2011/shm/sys/i386/isa/pmtimer.c soc2011/shm/sys/i386/isa/prof_machdep.c soc2011/shm/sys/i386/isa/spic.c soc2011/shm/sys/i386/isa/spicreg.h soc2011/shm/sys/i386/linux/ soc2011/shm/sys/i386/linux/Makefile soc2011/shm/sys/i386/linux/imgact_linux.c soc2011/shm/sys/i386/linux/linux.h soc2011/shm/sys/i386/linux/linux_dummy.c soc2011/shm/sys/i386/linux/linux_genassym.c soc2011/shm/sys/i386/linux/linux_ipc64.h soc2011/shm/sys/i386/linux/linux_locore.s soc2011/shm/sys/i386/linux/linux_machdep.c soc2011/shm/sys/i386/linux/linux_proto.h soc2011/shm/sys/i386/linux/linux_ptrace.c soc2011/shm/sys/i386/linux/linux_support.s soc2011/shm/sys/i386/linux/linux_syscall.h soc2011/shm/sys/i386/linux/linux_sysent.c soc2011/shm/sys/i386/linux/linux_sysvec.c soc2011/shm/sys/i386/linux/syscalls.conf soc2011/shm/sys/i386/linux/syscalls.master soc2011/shm/sys/i386/pci/ soc2011/shm/sys/i386/pci/pci_bus.c soc2011/shm/sys/i386/pci/pci_cfgreg.c soc2011/shm/sys/i386/pci/pci_pir.c soc2011/shm/sys/i386/svr4/ soc2011/shm/sys/i386/svr4/svr4_genassym.c soc2011/shm/sys/i386/svr4/svr4_locore.s soc2011/shm/sys/i386/svr4/svr4_machdep.c soc2011/shm/sys/i386/svr4/svr4_machdep.h soc2011/shm/sys/i386/xbox/ soc2011/shm/sys/i386/xbox/pic16l.s soc2011/shm/sys/i386/xbox/xbox.c soc2011/shm/sys/i386/xbox/xboxfb.c soc2011/shm/sys/i386/xen/ soc2011/shm/sys/i386/xen/clock.c soc2011/shm/sys/i386/xen/exception.s soc2011/shm/sys/i386/xen/locore.s soc2011/shm/sys/i386/xen/mp_machdep.c soc2011/shm/sys/i386/xen/mptable.c soc2011/shm/sys/i386/xen/pmap.c soc2011/shm/sys/i386/xen/xen_clock_util.c soc2011/shm/sys/i386/xen/xen_machdep.c soc2011/shm/sys/i386/xen/xen_rtc.c soc2011/shm/sys/ia64/ soc2011/shm/sys/ia64/acpica/ soc2011/shm/sys/ia64/acpica/OsdEnvironment.c soc2011/shm/sys/ia64/acpica/acpi_machdep.c soc2011/shm/sys/ia64/acpica/acpi_wakeup.c soc2011/shm/sys/ia64/acpica/madt.c soc2011/shm/sys/ia64/compile/ soc2011/shm/sys/ia64/compile/.cvsignore soc2011/shm/sys/ia64/conf/ soc2011/shm/sys/ia64/conf/.cvsignore soc2011/shm/sys/ia64/conf/DEFAULTS soc2011/shm/sys/ia64/conf/GENERIC soc2011/shm/sys/ia64/conf/GENERIC.hints soc2011/shm/sys/ia64/conf/Makefile soc2011/shm/sys/ia64/conf/NOTES soc2011/shm/sys/ia64/conf/SKI soc2011/shm/sys/ia64/disasm/ soc2011/shm/sys/ia64/disasm/disasm.h soc2011/shm/sys/ia64/disasm/disasm_decode.c soc2011/shm/sys/ia64/disasm/disasm_extract.c soc2011/shm/sys/ia64/disasm/disasm_format.c soc2011/shm/sys/ia64/disasm/disasm_int.h soc2011/shm/sys/ia64/ia32/ soc2011/shm/sys/ia64/ia32/ia32_misc.c soc2011/shm/sys/ia64/ia32/ia32_reg.c soc2011/shm/sys/ia64/ia32/ia32_signal.c soc2011/shm/sys/ia64/ia32/ia32_trap.c soc2011/shm/sys/ia64/ia64/ soc2011/shm/sys/ia64/ia64/autoconf.c soc2011/shm/sys/ia64/ia64/bus_machdep.c soc2011/shm/sys/ia64/ia64/busdma_machdep.c soc2011/shm/sys/ia64/ia64/clock.c soc2011/shm/sys/ia64/ia64/context.S soc2011/shm/sys/ia64/ia64/db_machdep.c soc2011/shm/sys/ia64/ia64/dump_machdep.c soc2011/shm/sys/ia64/ia64/efi.c soc2011/shm/sys/ia64/ia64/elf_machdep.c soc2011/shm/sys/ia64/ia64/emulate.c soc2011/shm/sys/ia64/ia64/exception.S soc2011/shm/sys/ia64/ia64/gdb_machdep.c soc2011/shm/sys/ia64/ia64/genassym.c soc2011/shm/sys/ia64/ia64/highfp.c soc2011/shm/sys/ia64/ia64/in_cksum.c soc2011/shm/sys/ia64/ia64/interrupt.c soc2011/shm/sys/ia64/ia64/iodev_machdep.c soc2011/shm/sys/ia64/ia64/locore.S soc2011/shm/sys/ia64/ia64/machdep.c soc2011/shm/sys/ia64/ia64/mca.c soc2011/shm/sys/ia64/ia64/mem.c soc2011/shm/sys/ia64/ia64/mp_machdep.c soc2011/shm/sys/ia64/ia64/nexus.c soc2011/shm/sys/ia64/ia64/pal.S soc2011/shm/sys/ia64/ia64/pmap.c soc2011/shm/sys/ia64/ia64/ptrace_machdep.c soc2011/shm/sys/ia64/ia64/sal.c soc2011/shm/sys/ia64/ia64/sapic.c soc2011/shm/sys/ia64/ia64/setjmp.S soc2011/shm/sys/ia64/ia64/ssc.c soc2011/shm/sys/ia64/ia64/sscdisk.c soc2011/shm/sys/ia64/ia64/stack_machdep.c soc2011/shm/sys/ia64/ia64/support.S soc2011/shm/sys/ia64/ia64/sys_machdep.c soc2011/shm/sys/ia64/ia64/syscall.S soc2011/shm/sys/ia64/ia64/trap.c soc2011/shm/sys/ia64/ia64/uio_machdep.c soc2011/shm/sys/ia64/ia64/uma_machdep.c soc2011/shm/sys/ia64/ia64/unaligned.c soc2011/shm/sys/ia64/ia64/unwind.c soc2011/shm/sys/ia64/ia64/vm_machdep.c soc2011/shm/sys/ia64/include/ soc2011/shm/sys/ia64/include/_bus.h soc2011/shm/sys/ia64/include/_inttypes.h soc2011/shm/sys/ia64/include/_limits.h soc2011/shm/sys/ia64/include/_regset.h soc2011/shm/sys/ia64/include/_stdint.h soc2011/shm/sys/ia64/include/_types.h soc2011/shm/sys/ia64/include/acpica_machdep.h soc2011/shm/sys/ia64/include/asm.h soc2011/shm/sys/ia64/include/atomic.h soc2011/shm/sys/ia64/include/bootinfo.h soc2011/shm/sys/ia64/include/bus.h soc2011/shm/sys/ia64/include/bus_dma.h soc2011/shm/sys/ia64/include/clock.h soc2011/shm/sys/ia64/include/cpu.h soc2011/shm/sys/ia64/include/cpufunc.h soc2011/shm/sys/ia64/include/db_machdep.h soc2011/shm/sys/ia64/include/dig64.h soc2011/shm/sys/ia64/include/efi.h soc2011/shm/sys/ia64/include/elf.h soc2011/shm/sys/ia64/include/endian.h soc2011/shm/sys/ia64/include/exec.h soc2011/shm/sys/ia64/include/float.h soc2011/shm/sys/ia64/include/floatingpoint.h soc2011/shm/sys/ia64/include/fpu.h soc2011/shm/sys/ia64/include/frame.h soc2011/shm/sys/ia64/include/gdb_machdep.h soc2011/shm/sys/ia64/include/ia64_cpu.h soc2011/shm/sys/ia64/include/ieee.h soc2011/shm/sys/ia64/include/ieeefp.h soc2011/shm/sys/ia64/include/in_cksum.h soc2011/shm/sys/ia64/include/intr.h soc2011/shm/sys/ia64/include/intrcnt.h soc2011/shm/sys/ia64/include/iodev.h soc2011/shm/sys/ia64/include/kdb.h soc2011/shm/sys/ia64/include/limits.h soc2011/shm/sys/ia64/include/mca.h soc2011/shm/sys/ia64/include/md_var.h soc2011/shm/sys/ia64/include/memdev.h soc2011/shm/sys/ia64/include/mutex.h soc2011/shm/sys/ia64/include/pal.h soc2011/shm/sys/ia64/include/param.h soc2011/shm/sys/ia64/include/pc/ soc2011/shm/sys/ia64/include/pc/display.h soc2011/shm/sys/ia64/include/pcb.h soc2011/shm/sys/ia64/include/pci_cfgreg.h soc2011/shm/sys/ia64/include/pcpu.h soc2011/shm/sys/ia64/include/pmap.h soc2011/shm/sys/ia64/include/pmc_mdep.h soc2011/shm/sys/ia64/include/proc.h soc2011/shm/sys/ia64/include/profile.h soc2011/shm/sys/ia64/include/pte.h soc2011/shm/sys/ia64/include/ptrace.h soc2011/shm/sys/ia64/include/reg.h soc2011/shm/sys/ia64/include/reloc.h soc2011/shm/sys/ia64/include/resource.h soc2011/shm/sys/ia64/include/runq.h soc2011/shm/sys/ia64/include/sal.h soc2011/shm/sys/ia64/include/setjmp.h soc2011/shm/sys/ia64/include/sf_buf.h soc2011/shm/sys/ia64/include/sigframe.h soc2011/shm/sys/ia64/include/signal.h soc2011/shm/sys/ia64/include/smp.h soc2011/shm/sys/ia64/include/stdarg.h soc2011/shm/sys/ia64/include/sysarch.h soc2011/shm/sys/ia64/include/ucontext.h soc2011/shm/sys/ia64/include/unwind.h soc2011/shm/sys/ia64/include/varargs.h soc2011/shm/sys/ia64/include/vm.h soc2011/shm/sys/ia64/include/vmparam.h soc2011/shm/sys/ia64/isa/ soc2011/shm/sys/ia64/isa/isa.c soc2011/shm/sys/ia64/isa/isa_dma.c soc2011/shm/sys/ia64/pci/ soc2011/shm/sys/ia64/pci/pci_cfgreg.c soc2011/shm/sys/isa/ soc2011/shm/sys/isa/atrtc.c soc2011/shm/sys/isa/isa_common.c soc2011/shm/sys/isa/isa_common.h soc2011/shm/sys/isa/isa_dmareg.h soc2011/shm/sys/isa/isa_if.m soc2011/shm/sys/isa/isahint.c soc2011/shm/sys/isa/isareg.h soc2011/shm/sys/isa/isavar.h soc2011/shm/sys/isa/orm.c soc2011/shm/sys/isa/pnp.c soc2011/shm/sys/isa/pnpparse.c soc2011/shm/sys/isa/pnpreg.h soc2011/shm/sys/isa/pnpvar.h soc2011/shm/sys/isa/rtc.h soc2011/shm/sys/isa/syscons_isa.c soc2011/shm/sys/isa/vga_isa.c soc2011/shm/sys/kern/ soc2011/shm/sys/kern/Make.tags.inc soc2011/shm/sys/kern/Makefile soc2011/shm/sys/kern/bus_if.m soc2011/shm/sys/kern/clock_if.m soc2011/shm/sys/kern/cpufreq_if.m soc2011/shm/sys/kern/device_if.m soc2011/shm/sys/kern/genassym.sh soc2011/shm/sys/kern/imgact_aout.c soc2011/shm/sys/kern/imgact_elf.c soc2011/shm/sys/kern/imgact_elf32.c soc2011/shm/sys/kern/imgact_elf64.c soc2011/shm/sys/kern/imgact_gzip.c soc2011/shm/sys/kern/imgact_shell.c soc2011/shm/sys/kern/inflate.c soc2011/shm/sys/kern/init_main.c soc2011/shm/sys/kern/init_sysent.c soc2011/shm/sys/kern/kern_acct.c soc2011/shm/sys/kern/kern_alq.c soc2011/shm/sys/kern/kern_clock.c soc2011/shm/sys/kern/kern_condvar.c soc2011/shm/sys/kern/kern_conf.c soc2011/shm/sys/kern/kern_cons.c soc2011/shm/sys/kern/kern_context.c soc2011/shm/sys/kern/kern_cpu.c soc2011/shm/sys/kern/kern_cpuset.c soc2011/shm/sys/kern/kern_ctf.c soc2011/shm/sys/kern/kern_descrip.c soc2011/shm/sys/kern/kern_dtrace.c soc2011/shm/sys/kern/kern_environment.c soc2011/shm/sys/kern/kern_event.c soc2011/shm/sys/kern/kern_exec.c soc2011/shm/sys/kern/kern_exit.c soc2011/shm/sys/kern/kern_fail.c soc2011/shm/sys/kern/kern_fork.c soc2011/shm/sys/kern/kern_idle.c soc2011/shm/sys/kern/kern_intr.c soc2011/shm/sys/kern/kern_jail.c soc2011/shm/sys/kern/kern_kthread.c soc2011/shm/sys/kern/kern_ktr.c soc2011/shm/sys/kern/kern_ktrace.c soc2011/shm/sys/kern/kern_linker.c soc2011/shm/sys/kern/kern_lock.c soc2011/shm/sys/kern/kern_lockf.c soc2011/shm/sys/kern/kern_lockstat.c soc2011/shm/sys/kern/kern_malloc.c soc2011/shm/sys/kern/kern_mbuf.c soc2011/shm/sys/kern/kern_mib.c soc2011/shm/sys/kern/kern_module.c soc2011/shm/sys/kern/kern_mtxpool.c soc2011/shm/sys/kern/kern_mutex.c soc2011/shm/sys/kern/kern_ntptime.c soc2011/shm/sys/kern/kern_osd.c soc2011/shm/sys/kern/kern_physio.c soc2011/shm/sys/kern/kern_pmc.c soc2011/shm/sys/kern/kern_poll.c soc2011/shm/sys/kern/kern_priv.c soc2011/shm/sys/kern/kern_proc.c soc2011/shm/sys/kern/kern_prot.c soc2011/shm/sys/kern/kern_resource.c soc2011/shm/sys/kern/kern_rmlock.c soc2011/shm/sys/kern/kern_rwlock.c soc2011/shm/sys/kern/kern_sdt.c soc2011/shm/sys/kern/kern_sema.c soc2011/shm/sys/kern/kern_shutdown.c soc2011/shm/sys/kern/kern_sig.c soc2011/shm/sys/kern/kern_subr.c soc2011/shm/sys/kern/kern_switch.c soc2011/shm/sys/kern/kern_sx.c soc2011/shm/sys/kern/kern_synch.c soc2011/shm/sys/kern/kern_syscalls.c soc2011/shm/sys/kern/kern_sysctl.c soc2011/shm/sys/kern/kern_tc.c soc2011/shm/sys/kern/kern_thr.c soc2011/shm/sys/kern/kern_thread.c soc2011/shm/sys/kern/kern_time.c soc2011/shm/sys/kern/kern_timeout.c soc2011/shm/sys/kern/kern_umtx.c soc2011/shm/sys/kern/kern_uuid.c soc2011/shm/sys/kern/kern_xxx.c soc2011/shm/sys/kern/ksched.c soc2011/shm/sys/kern/link_elf.c soc2011/shm/sys/kern/link_elf_obj.c soc2011/shm/sys/kern/linker_if.m soc2011/shm/sys/kern/makesyscalls.sh soc2011/shm/sys/kern/md4c.c soc2011/shm/sys/kern/md5c.c soc2011/shm/sys/kern/p1003_1b.c soc2011/shm/sys/kern/posix4_mib.c soc2011/shm/sys/kern/sched_4bsd.c soc2011/shm/sys/kern/sched_ule.c soc2011/shm/sys/kern/serdev_if.m soc2011/shm/sys/kern/stack_protector.c soc2011/shm/sys/kern/subr_acl_nfs4.c soc2011/shm/sys/kern/subr_acl_posix1e.c soc2011/shm/sys/kern/subr_autoconf.c soc2011/shm/sys/kern/subr_blist.c soc2011/shm/sys/kern/subr_bufring.c soc2011/shm/sys/kern/subr_bus.c soc2011/shm/sys/kern/subr_clock.c soc2011/shm/sys/kern/subr_devstat.c soc2011/shm/sys/kern/subr_disk.c soc2011/shm/sys/kern/subr_eventhandler.c soc2011/shm/sys/kern/subr_fattime.c soc2011/shm/sys/kern/subr_firmware.c soc2011/shm/sys/kern/subr_hints.c soc2011/shm/sys/kern/subr_kdb.c soc2011/shm/sys/kern/subr_kobj.c soc2011/shm/sys/kern/subr_lock.c soc2011/shm/sys/kern/subr_log.c soc2011/shm/sys/kern/subr_mbpool.c soc2011/shm/sys/kern/subr_mchain.c soc2011/shm/sys/kern/subr_module.c soc2011/shm/sys/kern/subr_msgbuf.c soc2011/shm/sys/kern/subr_param.c soc2011/shm/sys/kern/subr_pcpu.c soc2011/shm/sys/kern/subr_power.c soc2011/shm/sys/kern/subr_prf.c soc2011/shm/sys/kern/subr_prof.c soc2011/shm/sys/kern/subr_rman.c soc2011/shm/sys/kern/subr_rtc.c soc2011/shm/sys/kern/subr_sbuf.c soc2011/shm/sys/kern/subr_scanf.c soc2011/shm/sys/kern/subr_sglist.c soc2011/shm/sys/kern/subr_sleepqueue.c soc2011/shm/sys/kern/subr_smp.c soc2011/shm/sys/kern/subr_stack.c soc2011/shm/sys/kern/subr_taskqueue.c soc2011/shm/sys/kern/subr_trap.c soc2011/shm/sys/kern/subr_turnstile.c soc2011/shm/sys/kern/subr_unit.c soc2011/shm/sys/kern/subr_witness.c soc2011/shm/sys/kern/sys_generic.c soc2011/shm/sys/kern/sys_pipe.c soc2011/shm/sys/kern/sys_process.c soc2011/shm/sys/kern/sys_socket.c soc2011/shm/sys/kern/syscalls.c soc2011/shm/sys/kern/syscalls.master soc2011/shm/sys/kern/systrace_args.c soc2011/shm/sys/kern/sysv_ipc.c soc2011/shm/sys/kern/sysv_msg.c soc2011/shm/sys/kern/sysv_sem.c soc2011/shm/sys/kern/sysv_shm.c soc2011/shm/sys/kern/tty.c soc2011/shm/sys/kern/tty_compat.c soc2011/shm/sys/kern/tty_info.c soc2011/shm/sys/kern/tty_inq.c soc2011/shm/sys/kern/tty_outq.c soc2011/shm/sys/kern/tty_pts.c soc2011/shm/sys/kern/tty_pty.c soc2011/shm/sys/kern/tty_tty.c soc2011/shm/sys/kern/tty_ttydisc.c soc2011/shm/sys/kern/uipc_accf.c soc2011/shm/sys/kern/uipc_cow.c soc2011/shm/sys/kern/uipc_debug.c soc2011/shm/sys/kern/uipc_domain.c soc2011/shm/sys/kern/uipc_mbuf.c soc2011/shm/sys/kern/uipc_mbuf2.c soc2011/shm/sys/kern/uipc_mqueue.c soc2011/shm/sys/kern/uipc_sem.c soc2011/shm/sys/kern/uipc_shm.c soc2011/shm/sys/kern/uipc_sockbuf.c soc2011/shm/sys/kern/uipc_socket.c soc2011/shm/sys/kern/uipc_syscalls.c soc2011/shm/sys/kern/uipc_usrreq.c soc2011/shm/sys/kern/vfs_acl.c soc2011/shm/sys/kern/vfs_aio.c soc2011/shm/sys/kern/vfs_bio.c soc2011/shm/sys/kern/vfs_cache.c soc2011/shm/sys/kern/vfs_cluster.c soc2011/shm/sys/kern/vfs_default.c soc2011/shm/sys/kern/vfs_export.c soc2011/shm/sys/kern/vfs_extattr.c soc2011/shm/sys/kern/vfs_hash.c soc2011/shm/sys/kern/vfs_init.c soc2011/shm/sys/kern/vfs_lookup.c soc2011/shm/sys/kern/vfs_mount.c soc2011/shm/sys/kern/vfs_subr.c soc2011/shm/sys/kern/vfs_syscalls.c soc2011/shm/sys/kern/vfs_vnops.c soc2011/shm/sys/kern/vnode_if.src soc2011/shm/sys/kgssapi/ soc2011/shm/sys/kgssapi/gss_accept_sec_context.c soc2011/shm/sys/kgssapi/gss_acquire_cred.c soc2011/shm/sys/kgssapi/gss_add_oid_set_member.c soc2011/shm/sys/kgssapi/gss_canonicalize_name.c soc2011/shm/sys/kgssapi/gss_create_empty_oid_set.c soc2011/shm/sys/kgssapi/gss_delete_sec_context.c soc2011/shm/sys/kgssapi/gss_display_status.c soc2011/shm/sys/kgssapi/gss_export_name.c soc2011/shm/sys/kgssapi/gss_get_mic.c soc2011/shm/sys/kgssapi/gss_impl.c soc2011/shm/sys/kgssapi/gss_import_name.c soc2011/shm/sys/kgssapi/gss_init_sec_context.c soc2011/shm/sys/kgssapi/gss_names.c soc2011/shm/sys/kgssapi/gss_pname_to_uid.c soc2011/shm/sys/kgssapi/gss_release_buffer.c soc2011/shm/sys/kgssapi/gss_release_cred.c soc2011/shm/sys/kgssapi/gss_release_name.c soc2011/shm/sys/kgssapi/gss_release_oid_set.c soc2011/shm/sys/kgssapi/gss_set_cred_option.c soc2011/shm/sys/kgssapi/gss_test_oid_set_member.c soc2011/shm/sys/kgssapi/gss_unwrap.c soc2011/shm/sys/kgssapi/gss_verify_mic.c soc2011/shm/sys/kgssapi/gss_wrap.c soc2011/shm/sys/kgssapi/gss_wrap_size_limit.c soc2011/shm/sys/kgssapi/gssapi.h soc2011/shm/sys/kgssapi/gssapi_impl.h soc2011/shm/sys/kgssapi/gssd.x soc2011/shm/sys/kgssapi/gssd_prot.c soc2011/shm/sys/kgssapi/gsstest.c soc2011/shm/sys/kgssapi/kgss_if.m soc2011/shm/sys/kgssapi/krb5/ soc2011/shm/sys/kgssapi/krb5/kcrypto.c soc2011/shm/sys/kgssapi/krb5/kcrypto.h soc2011/shm/sys/kgssapi/krb5/kcrypto_aes.c soc2011/shm/sys/kgssapi/krb5/kcrypto_arcfour.c soc2011/shm/sys/kgssapi/krb5/kcrypto_des.c soc2011/shm/sys/kgssapi/krb5/kcrypto_des3.c soc2011/shm/sys/kgssapi/krb5/krb5_mech.c soc2011/shm/sys/libkern/ soc2011/shm/sys/libkern/arc4random.c soc2011/shm/sys/libkern/arm/ soc2011/shm/sys/libkern/arm/divsi3.S soc2011/shm/sys/libkern/arm/ffs.S soc2011/shm/sys/libkern/arm/muldi3.c soc2011/shm/sys/libkern/ashldi3.c soc2011/shm/sys/libkern/ashrdi3.c soc2011/shm/sys/libkern/bcd.c soc2011/shm/sys/libkern/bcmp.c soc2011/shm/sys/libkern/bsearch.c soc2011/shm/sys/libkern/cmpdi2.c soc2011/shm/sys/libkern/crc32.c soc2011/shm/sys/libkern/divdi3.c soc2011/shm/sys/libkern/ffs.c soc2011/shm/sys/libkern/ffsl.c soc2011/shm/sys/libkern/fls.c soc2011/shm/sys/libkern/flsl.c soc2011/shm/sys/libkern/fnmatch.c soc2011/shm/sys/libkern/gets.c soc2011/shm/sys/libkern/ia64/ soc2011/shm/sys/libkern/ia64/__divdi3.S soc2011/shm/sys/libkern/ia64/__divsi3.S soc2011/shm/sys/libkern/ia64/__moddi3.S soc2011/shm/sys/libkern/ia64/__modsi3.S soc2011/shm/sys/libkern/ia64/__udivdi3.S soc2011/shm/sys/libkern/ia64/__udivsi3.S soc2011/shm/sys/libkern/ia64/__umoddi3.S soc2011/shm/sys/libkern/ia64/__umodsi3.S soc2011/shm/sys/libkern/ia64/bswap16.S soc2011/shm/sys/libkern/ia64/bswap32.S soc2011/shm/sys/libkern/ia64/byte_swap_2.S soc2011/shm/sys/libkern/ia64/byte_swap_4.S soc2011/shm/sys/libkern/iconv.c soc2011/shm/sys/libkern/iconv_converter_if.m soc2011/shm/sys/libkern/iconv_xlat.c soc2011/shm/sys/libkern/iconv_xlat16.c soc2011/shm/sys/libkern/index.c soc2011/shm/sys/libkern/inet_aton.c soc2011/shm/sys/libkern/inet_ntoa.c soc2011/shm/sys/libkern/jenkins.h soc2011/shm/sys/libkern/lshrdi3.c soc2011/shm/sys/libkern/mcount.c soc2011/shm/sys/libkern/memcmp.c soc2011/shm/sys/libkern/memmove.c soc2011/shm/sys/libkern/memset.c soc2011/shm/sys/libkern/moddi3.c soc2011/shm/sys/libkern/qdivrem.c soc2011/shm/sys/libkern/qsort.c soc2011/shm/sys/libkern/qsort_r.c soc2011/shm/sys/libkern/quad.h soc2011/shm/sys/libkern/random.c soc2011/shm/sys/libkern/rindex.c soc2011/shm/sys/libkern/scanc.c soc2011/shm/sys/libkern/skpc.c soc2011/shm/sys/libkern/strcasecmp.c soc2011/shm/sys/libkern/strcat.c soc2011/shm/sys/libkern/strcmp.c soc2011/shm/sys/libkern/strcpy.c soc2011/shm/sys/libkern/strcspn.c soc2011/shm/sys/libkern/strdup.c soc2011/shm/sys/libkern/strlcat.c soc2011/shm/sys/libkern/strlcpy.c soc2011/shm/sys/libkern/strlen.c soc2011/shm/sys/libkern/strncmp.c soc2011/shm/sys/libkern/strncpy.c soc2011/shm/sys/libkern/strsep.c soc2011/shm/sys/libkern/strspn.c soc2011/shm/sys/libkern/strstr.c soc2011/shm/sys/libkern/strtol.c soc2011/shm/sys/libkern/strtoq.c soc2011/shm/sys/libkern/strtoul.c soc2011/shm/sys/libkern/strtouq.c soc2011/shm/sys/libkern/strvalid.c soc2011/shm/sys/libkern/ucmpdi2.c soc2011/shm/sys/libkern/udivdi3.c soc2011/shm/sys/libkern/umoddi3.c soc2011/shm/sys/mips/ soc2011/shm/sys/mips/adm5120/ soc2011/shm/sys/mips/adm5120/adm5120_machdep.c soc2011/shm/sys/mips/adm5120/adm5120reg.h soc2011/shm/sys/mips/adm5120/admpci.c soc2011/shm/sys/mips/adm5120/console.c soc2011/shm/sys/mips/adm5120/files.adm5120 soc2011/shm/sys/mips/adm5120/if_admsw.c soc2011/shm/sys/mips/adm5120/if_admswreg.h soc2011/shm/sys/mips/adm5120/if_admswvar.h soc2011/shm/sys/mips/adm5120/obio.c soc2011/shm/sys/mips/adm5120/obiovar.h soc2011/shm/sys/mips/adm5120/std.adm5120 soc2011/shm/sys/mips/adm5120/uart_bus_adm5120.c soc2011/shm/sys/mips/adm5120/uart_cpu_adm5120.c soc2011/shm/sys/mips/adm5120/uart_dev_adm5120.c soc2011/shm/sys/mips/adm5120/uart_dev_adm5120.h soc2011/shm/sys/mips/compile/ soc2011/shm/sys/mips/compile/.cvsignore soc2011/shm/sys/mips/conf/ soc2011/shm/sys/mips/conf/.cvsignore soc2011/shm/sys/mips/conf/ADM5120 soc2011/shm/sys/mips/conf/ADM5120.hints soc2011/shm/sys/mips/conf/DEFAULTS soc2011/shm/sys/mips/conf/IDT soc2011/shm/sys/mips/conf/IDT.hints soc2011/shm/sys/mips/conf/MALTA soc2011/shm/sys/mips/conf/MALTA.hints soc2011/shm/sys/mips/conf/QEMU soc2011/shm/sys/mips/conf/SENTRY5 soc2011/shm/sys/mips/conf/SENTRY5.hints soc2011/shm/sys/mips/idt/ soc2011/shm/sys/mips/idt/files.idt soc2011/shm/sys/mips/idt/idt_machdep.c soc2011/shm/sys/mips/idt/idtpci.c soc2011/shm/sys/mips/idt/idtreg.h soc2011/shm/sys/mips/idt/if_kr.c soc2011/shm/sys/mips/idt/if_krreg.h soc2011/shm/sys/mips/idt/obio.c soc2011/shm/sys/mips/idt/obiovar.h soc2011/shm/sys/mips/idt/std.idt soc2011/shm/sys/mips/idt/uart_bus_rc32434.c soc2011/shm/sys/mips/idt/uart_cpu_rc32434.c soc2011/shm/sys/mips/include/ soc2011/shm/sys/mips/include/_bus.h soc2011/shm/sys/mips/include/_bus_octeon.h soc2011/shm/sys/mips/include/_inttypes.h soc2011/shm/sys/mips/include/_limits.h soc2011/shm/sys/mips/include/_stdint.h soc2011/shm/sys/mips/include/_types.h soc2011/shm/sys/mips/include/archtype.h soc2011/shm/sys/mips/include/asm.h soc2011/shm/sys/mips/include/asmacros.h soc2011/shm/sys/mips/include/atomic.h soc2011/shm/sys/mips/include/bootinfo.h soc2011/shm/sys/mips/include/bswap.h soc2011/shm/sys/mips/include/bus.h soc2011/shm/sys/mips/include/bus_dma.h soc2011/shm/sys/mips/include/bus_octeon.h soc2011/shm/sys/mips/include/cache.h soc2011/shm/sys/mips/include/cache_mipsNN.h soc2011/shm/sys/mips/include/cache_r4k.h soc2011/shm/sys/mips/include/clock.h soc2011/shm/sys/mips/include/clockvar.h soc2011/shm/sys/mips/include/cpu.h soc2011/shm/sys/mips/include/cpufunc.h soc2011/shm/sys/mips/include/cpuinfo.h soc2011/shm/sys/mips/include/cpuregs.h soc2011/shm/sys/mips/include/cputypes.h soc2011/shm/sys/mips/include/db_machdep.h soc2011/shm/sys/mips/include/defs.h soc2011/shm/sys/mips/include/elf.h soc2011/shm/sys/mips/include/endian.h soc2011/shm/sys/mips/include/exec.h soc2011/shm/sys/mips/include/float.h soc2011/shm/sys/mips/include/floatingpoint.h soc2011/shm/sys/mips/include/fpu.h soc2011/shm/sys/mips/include/frame.h soc2011/shm/sys/mips/include/gdb_machdep.h soc2011/shm/sys/mips/include/hwfunc.h soc2011/shm/sys/mips/include/ieee.h soc2011/shm/sys/mips/include/ieeefp.h soc2011/shm/sys/mips/include/in_cksum.h soc2011/shm/sys/mips/include/intr.h soc2011/shm/sys/mips/include/intr_machdep.h soc2011/shm/sys/mips/include/iodev.h soc2011/shm/sys/mips/include/kdb.h soc2011/shm/sys/mips/include/limits.h soc2011/shm/sys/mips/include/locore.h soc2011/shm/sys/mips/include/md_var.h soc2011/shm/sys/mips/include/memdev.h soc2011/shm/sys/mips/include/metadata.h soc2011/shm/sys/mips/include/minidump.h soc2011/shm/sys/mips/include/mips_opcode.h soc2011/shm/sys/mips/include/mp_watchdog.h soc2011/shm/sys/mips/include/mutex.h soc2011/shm/sys/mips/include/param.h soc2011/shm/sys/mips/include/pcb.h soc2011/shm/sys/mips/include/pci_cfgreg.h soc2011/shm/sys/mips/include/pcpu.h soc2011/shm/sys/mips/include/pltfm.h soc2011/shm/sys/mips/include/pmap.h soc2011/shm/sys/mips/include/pmc_mdep.h soc2011/shm/sys/mips/include/ppireg.h soc2011/shm/sys/mips/include/proc.h soc2011/shm/sys/mips/include/profile.h soc2011/shm/sys/mips/include/psl.h soc2011/shm/sys/mips/include/pte.h soc2011/shm/sys/mips/include/ptrace.h soc2011/shm/sys/mips/include/queue.h soc2011/shm/sys/mips/include/reg.h soc2011/shm/sys/mips/include/regdef.h soc2011/shm/sys/mips/include/regnum.h soc2011/shm/sys/mips/include/reloc.h soc2011/shm/sys/mips/include/resource.h soc2011/shm/sys/mips/include/rm7000.h soc2011/shm/sys/mips/include/runq.h soc2011/shm/sys/mips/include/segments.h soc2011/shm/sys/mips/include/setjmp.h soc2011/shm/sys/mips/include/sf_buf.h soc2011/shm/sys/mips/include/sigframe.h soc2011/shm/sys/mips/include/signal.h soc2011/shm/sys/mips/include/smp.h soc2011/shm/sys/mips/include/stdarg.h soc2011/shm/sys/mips/include/sysarch.h soc2011/shm/sys/mips/include/timerreg.h soc2011/shm/sys/mips/include/trap.h soc2011/shm/sys/mips/include/ucontext.h soc2011/shm/sys/mips/include/varargs.h soc2011/shm/sys/mips/include/vm.h soc2011/shm/sys/mips/include/vmparam.h soc2011/shm/sys/mips/malta/ soc2011/shm/sys/mips/malta/files.malta soc2011/shm/sys/mips/malta/gt.c soc2011/shm/sys/mips/malta/gt_pci.c soc2011/shm/sys/mips/malta/gtreg.h soc2011/shm/sys/mips/malta/gtvar.h soc2011/shm/sys/mips/malta/malta_machdep.c soc2011/shm/sys/mips/malta/maltareg.h soc2011/shm/sys/mips/malta/obio.c soc2011/shm/sys/mips/malta/obiovar.h soc2011/shm/sys/mips/malta/std.malta soc2011/shm/sys/mips/malta/uart_bus_maltausart.c soc2011/shm/sys/mips/malta/uart_cpu_maltausart.c soc2011/shm/sys/mips/malta/yamon.c soc2011/shm/sys/mips/malta/yamon.h soc2011/shm/sys/mips/mips/ soc2011/shm/sys/mips/mips/autoconf.c soc2011/shm/sys/mips/mips/busdma_machdep.c soc2011/shm/sys/mips/mips/cache.c soc2011/shm/sys/mips/mips/cache_mipsNN.c soc2011/shm/sys/mips/mips/copystr.S soc2011/shm/sys/mips/mips/cpu.c soc2011/shm/sys/mips/mips/db_disasm.c soc2011/shm/sys/mips/mips/db_interface.c soc2011/shm/sys/mips/mips/db_trace.c soc2011/shm/sys/mips/mips/dump_machdep.c soc2011/shm/sys/mips/mips/elf64_machdep.c soc2011/shm/sys/mips/mips/elf_machdep.c soc2011/shm/sys/mips/mips/exception.S soc2011/shm/sys/mips/mips/fp.S soc2011/shm/sys/mips/mips/gdb_machdep.c soc2011/shm/sys/mips/mips/genassym.c soc2011/shm/sys/mips/mips/in_cksum.c soc2011/shm/sys/mips/mips/intr_machdep.c soc2011/shm/sys/mips/mips/locore.S soc2011/shm/sys/mips/mips/machdep.c soc2011/shm/sys/mips/mips/mainbus.c soc2011/shm/sys/mips/mips/mem.c soc2011/shm/sys/mips/mips/mp_machdep.c soc2011/shm/sys/mips/mips/nexus.c soc2011/shm/sys/mips/mips/pm_machdep.c soc2011/shm/sys/mips/mips/pmap.c soc2011/shm/sys/mips/mips/psraccess.S soc2011/shm/sys/mips/mips/stack_machdep.c soc2011/shm/sys/mips/mips/support.S soc2011/shm/sys/mips/mips/swtch.S soc2011/shm/sys/mips/mips/tick.c soc2011/shm/sys/mips/mips/tlb.S soc2011/shm/sys/mips/mips/trap.c soc2011/shm/sys/mips/mips/uio_machdep.c soc2011/shm/sys/mips/mips/vm_machdep.c soc2011/shm/sys/mips/sentry5/ soc2011/shm/sys/mips/sentry5/files.sentry5 soc2011/shm/sys/mips/sentry5/obio.c soc2011/shm/sys/mips/sentry5/obiovar.h soc2011/shm/sys/mips/sentry5/s5_machdep.c soc2011/shm/sys/mips/sentry5/s5reg.h soc2011/shm/sys/mips/sentry5/siba_cc.c soc2011/shm/sys/mips/sentry5/siba_mips.c soc2011/shm/sys/mips/sentry5/siba_sdram.c soc2011/shm/sys/mips/sentry5/uart_bus_sbusart.c soc2011/shm/sys/mips/sentry5/uart_cpu_sbusart.c soc2011/shm/sys/modules/ soc2011/shm/sys/modules/3dfx/ soc2011/shm/sys/modules/3dfx/Makefile soc2011/shm/sys/modules/3dfx_linux/ soc2011/shm/sys/modules/3dfx_linux/Makefile soc2011/shm/sys/modules/Makefile soc2011/shm/sys/modules/Makefile.inc soc2011/shm/sys/modules/aac/ soc2011/shm/sys/modules/aac/Makefile soc2011/shm/sys/modules/aac/Makefile.inc soc2011/shm/sys/modules/aac/aac_linux/ soc2011/shm/sys/modules/aac/aac_linux/Makefile soc2011/shm/sys/modules/accf_data/ soc2011/shm/sys/modules/accf_data/Makefile soc2011/shm/sys/modules/accf_dns/ soc2011/shm/sys/modules/accf_dns/Makefile soc2011/shm/sys/modules/accf_http/ soc2011/shm/sys/modules/accf_http/Makefile soc2011/shm/sys/modules/acpi/ soc2011/shm/sys/modules/acpi/Makefile soc2011/shm/sys/modules/acpi/Makefile.inc soc2011/shm/sys/modules/acpi/acpi/ soc2011/shm/sys/modules/acpi/acpi/Makefile soc2011/shm/sys/modules/acpi/acpi_aiboost/ soc2011/shm/sys/modules/acpi/acpi_aiboost/Makefile soc2011/shm/sys/modules/acpi/acpi_asus/ soc2011/shm/sys/modules/acpi/acpi_asus/Makefile soc2011/shm/sys/modules/acpi/acpi_dock/ soc2011/shm/sys/modules/acpi/acpi_dock/Makefile soc2011/shm/sys/modules/acpi/acpi_fujitsu/ soc2011/shm/sys/modules/acpi/acpi_fujitsu/Makefile soc2011/shm/sys/modules/acpi/acpi_hp/ soc2011/shm/sys/modules/acpi/acpi_hp/Makefile soc2011/shm/sys/modules/acpi/acpi_ibm/ soc2011/shm/sys/modules/acpi/acpi_ibm/Makefile soc2011/shm/sys/modules/acpi/acpi_panasonic/ soc2011/shm/sys/modules/acpi/acpi_panasonic/Makefile soc2011/shm/sys/modules/acpi/acpi_sony/ soc2011/shm/sys/modules/acpi/acpi_sony/Makefile soc2011/shm/sys/modules/acpi/acpi_toshiba/ soc2011/shm/sys/modules/acpi/acpi_toshiba/Makefile soc2011/shm/sys/modules/acpi/acpi_video/ soc2011/shm/sys/modules/acpi/acpi_video/Makefile soc2011/shm/sys/modules/acpi/acpi_wmi/ soc2011/shm/sys/modules/acpi/acpi_wmi/Makefile soc2011/shm/sys/modules/ae/ soc2011/shm/sys/modules/ae/Makefile soc2011/shm/sys/modules/age/ soc2011/shm/sys/modules/age/Makefile soc2011/shm/sys/modules/agp/ soc2011/shm/sys/modules/agp/Makefile soc2011/shm/sys/modules/aha/ soc2011/shm/sys/modules/aha/Makefile soc2011/shm/sys/modules/ahb/ soc2011/shm/sys/modules/ahb/Makefile soc2011/shm/sys/modules/ahci/ soc2011/shm/sys/modules/ahci/Makefile soc2011/shm/sys/modules/aic/ soc2011/shm/sys/modules/aic/Makefile soc2011/shm/sys/modules/aic7xxx/ soc2011/shm/sys/modules/aic7xxx/Makefile soc2011/shm/sys/modules/aic7xxx/Makefile.inc soc2011/shm/sys/modules/aic7xxx/ahc/ soc2011/shm/sys/modules/aic7xxx/ahc/Makefile soc2011/shm/sys/modules/aic7xxx/ahc/Makefile.inc soc2011/shm/sys/modules/aic7xxx/ahc/ahc_eisa/ soc2011/shm/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile soc2011/shm/sys/modules/aic7xxx/ahc/ahc_isa/ soc2011/shm/sys/modules/aic7xxx/ahc/ahc_isa/Makefile soc2011/shm/sys/modules/aic7xxx/ahc/ahc_pci/ soc2011/shm/sys/modules/aic7xxx/ahc/ahc_pci/Makefile soc2011/shm/sys/modules/aic7xxx/ahd/ soc2011/shm/sys/modules/aic7xxx/ahd/Makefile soc2011/shm/sys/modules/aic7xxx/aicasm/ soc2011/shm/sys/modules/aic7xxx/aicasm/Makefile soc2011/shm/sys/modules/aio/ soc2011/shm/sys/modules/aio/Makefile soc2011/shm/sys/modules/alc/ soc2011/shm/sys/modules/alc/Makefile soc2011/shm/sys/modules/ale/ soc2011/shm/sys/modules/ale/Makefile soc2011/shm/sys/modules/amd/ soc2011/shm/sys/modules/amd/Makefile soc2011/shm/sys/modules/amdsbwd/ soc2011/shm/sys/modules/amdsbwd/Makefile soc2011/shm/sys/modules/amdtemp/ soc2011/shm/sys/modules/amdtemp/Makefile soc2011/shm/sys/modules/amr/ soc2011/shm/sys/modules/amr/Makefile soc2011/shm/sys/modules/amr/amr_cam/ soc2011/shm/sys/modules/amr/amr_cam/Makefile soc2011/shm/sys/modules/amr/amr_linux/ soc2011/shm/sys/modules/amr/amr_linux/Makefile soc2011/shm/sys/modules/an/ soc2011/shm/sys/modules/an/Makefile soc2011/shm/sys/modules/aout/ soc2011/shm/sys/modules/aout/Makefile soc2011/shm/sys/modules/apm/ soc2011/shm/sys/modules/apm/Makefile soc2011/shm/sys/modules/arcmsr/ soc2011/shm/sys/modules/arcmsr/Makefile soc2011/shm/sys/modules/arcnet/ soc2011/shm/sys/modules/arcnet/Makefile soc2011/shm/sys/modules/asmc/ soc2011/shm/sys/modules/asmc/Makefile soc2011/shm/sys/modules/asr/ soc2011/shm/sys/modules/asr/Makefile soc2011/shm/sys/modules/ata/ soc2011/shm/sys/modules/ata/Makefile soc2011/shm/sys/modules/ata/Makefile.inc soc2011/shm/sys/modules/ata/atacam/ soc2011/shm/sys/modules/ata/atacam/Makefile soc2011/shm/sys/modules/ata/atacard/ soc2011/shm/sys/modules/ata/atacard/Makefile soc2011/shm/sys/modules/ata/atacbus/ soc2011/shm/sys/modules/ata/atacbus/Makefile soc2011/shm/sys/modules/ata/atacore/ soc2011/shm/sys/modules/ata/atacore/Makefile soc2011/shm/sys/modules/ata/atadevel/ soc2011/shm/sys/modules/ata/atadevel/Makefile soc2011/shm/sys/modules/ata/atadevel/ata-devel.c soc2011/shm/sys/modules/ata/atadisk/ soc2011/shm/sys/modules/ata/atadisk/Makefile soc2011/shm/sys/modules/ata/ataisa/ soc2011/shm/sys/modules/ata/ataisa/Makefile soc2011/shm/sys/modules/ata/atapci/ soc2011/shm/sys/modules/ata/atapci/Makefile soc2011/shm/sys/modules/ata/atapci/Makefile.inc soc2011/shm/sys/modules/ata/atapci/chipsets/ soc2011/shm/sys/modules/ata/atapci/chipsets/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/Makefile.inc soc2011/shm/sys/modules/ata/atapci/chipsets/ataacard/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataacard/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataacerlabs/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataacerlabs/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataadaptec/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataadaptec/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataahci/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataahci/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataamd/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataamd/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataati/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataati/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atacenatek/ soc2011/shm/sys/modules/ata/atapci/chipsets/atacenatek/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atacypress/ soc2011/shm/sys/modules/ata/atapci/chipsets/atacypress/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atacyrix/ soc2011/shm/sys/modules/ata/atapci/chipsets/atacyrix/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atahighpoint/ soc2011/shm/sys/modules/ata/atapci/chipsets/atahighpoint/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataintel/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataintel/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataite/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataite/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atajmicron/ soc2011/shm/sys/modules/ata/atapci/chipsets/atajmicron/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atamarvell/ soc2011/shm/sys/modules/ata/atapci/chipsets/atamarvell/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atamicron/ soc2011/shm/sys/modules/ata/atapci/chipsets/atamicron/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atanational/ soc2011/shm/sys/modules/ata/atapci/chipsets/atanational/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atanetcell/ soc2011/shm/sys/modules/ata/atapci/chipsets/atanetcell/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atanvidia/ soc2011/shm/sys/modules/ata/atapci/chipsets/atanvidia/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atapromise/ soc2011/shm/sys/modules/ata/atapci/chipsets/atapromise/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/ataserverworks/ soc2011/shm/sys/modules/ata/atapci/chipsets/ataserverworks/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atasiliconimage/ soc2011/shm/sys/modules/ata/atapci/chipsets/atasiliconimage/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atasis/ soc2011/shm/sys/modules/ata/atapci/chipsets/atasis/Makefile soc2011/shm/sys/modules/ata/atapci/chipsets/atavia/ soc2011/shm/sys/modules/ata/atapci/chipsets/atavia/Makefile soc2011/shm/sys/modules/ata/atapicam/ soc2011/shm/sys/modules/ata/atapicam/Makefile soc2011/shm/sys/modules/ata/atapicd/ soc2011/shm/sys/modules/ata/atapicd/Makefile soc2011/shm/sys/modules/ata/atapifd/ soc2011/shm/sys/modules/ata/atapifd/Makefile soc2011/shm/sys/modules/ata/atapist/ soc2011/shm/sys/modules/ata/atapist/Makefile soc2011/shm/sys/modules/ata/ataraid/ soc2011/shm/sys/modules/ata/ataraid/Makefile soc2011/shm/sys/modules/ath/ soc2011/shm/sys/modules/ath/Makefile soc2011/shm/sys/modules/auxio/ soc2011/shm/sys/modules/auxio/Makefile soc2011/shm/sys/modules/bce/ soc2011/shm/sys/modules/bce/Makefile soc2011/shm/sys/modules/bfe/ soc2011/shm/sys/modules/bfe/Makefile soc2011/shm/sys/modules/bge/ soc2011/shm/sys/modules/bge/Makefile soc2011/shm/sys/modules/bios/ soc2011/shm/sys/modules/bios/Makefile soc2011/shm/sys/modules/bios/smapi/ soc2011/shm/sys/modules/bios/smapi/Makefile soc2011/shm/sys/modules/bios/smbios/ soc2011/shm/sys/modules/bios/smbios/Makefile soc2011/shm/sys/modules/bios/vpd/ soc2011/shm/sys/modules/bios/vpd/Makefile soc2011/shm/sys/modules/bktr/ soc2011/shm/sys/modules/bktr/Makefile soc2011/shm/sys/modules/bktr/Makefile.inc soc2011/shm/sys/modules/bktr/bktr/ soc2011/shm/sys/modules/bktr/bktr/Makefile soc2011/shm/sys/modules/bktr/bktr_mem/ soc2011/shm/sys/modules/bktr/bktr_mem/Makefile soc2011/shm/sys/modules/bm/ soc2011/shm/sys/modules/bm/Makefile soc2011/shm/sys/modules/bridgestp/ soc2011/shm/sys/modules/bridgestp/Makefile soc2011/shm/sys/modules/bwi/ soc2011/shm/sys/modules/bwi/Makefile soc2011/shm/sys/modules/bwn/ soc2011/shm/sys/modules/bwn/Makefile soc2011/shm/sys/modules/cam/ soc2011/shm/sys/modules/cam/Makefile soc2011/shm/sys/modules/canbepm/ soc2011/shm/sys/modules/canbepm/Makefile soc2011/shm/sys/modules/canbus/ soc2011/shm/sys/modules/canbus/Makefile soc2011/shm/sys/modules/cardbus/ soc2011/shm/sys/modules/cardbus/Makefile soc2011/shm/sys/modules/cas/ soc2011/shm/sys/modules/cas/Makefile soc2011/shm/sys/modules/cbb/ soc2011/shm/sys/modules/cbb/Makefile soc2011/shm/sys/modules/cd9660/ soc2011/shm/sys/modules/cd9660/Makefile soc2011/shm/sys/modules/cd9660_iconv/ soc2011/shm/sys/modules/cd9660_iconv/Makefile soc2011/shm/sys/modules/ce/ soc2011/shm/sys/modules/ce/Makefile soc2011/shm/sys/modules/ciss/ soc2011/shm/sys/modules/ciss/Makefile soc2011/shm/sys/modules/cm/ soc2011/shm/sys/modules/cm/Makefile soc2011/shm/sys/modules/cmx/ soc2011/shm/sys/modules/cmx/Makefile soc2011/shm/sys/modules/coda/ soc2011/shm/sys/modules/coda/Makefile soc2011/shm/sys/modules/coda5/ soc2011/shm/sys/modules/coda5/Makefile soc2011/shm/sys/modules/coff/ soc2011/shm/sys/modules/coff/Makefile soc2011/shm/sys/modules/coretemp/ soc2011/shm/sys/modules/coretemp/Makefile soc2011/shm/sys/modules/cp/ soc2011/shm/sys/modules/cp/Makefile soc2011/shm/sys/modules/cpuctl/ soc2011/shm/sys/modules/cpuctl/Makefile soc2011/shm/sys/modules/cpufreq/ soc2011/shm/sys/modules/cpufreq/Makefile soc2011/shm/sys/modules/crypto/ soc2011/shm/sys/modules/crypto/Makefile soc2011/shm/sys/modules/cryptodev/ soc2011/shm/sys/modules/cryptodev/Makefile soc2011/shm/sys/modules/cs/ soc2011/shm/sys/modules/cs/Makefile soc2011/shm/sys/modules/ctau/ soc2011/shm/sys/modules/ctau/Makefile soc2011/shm/sys/modules/cx/ soc2011/shm/sys/modules/cx/Makefile soc2011/shm/sys/modules/cxgb/ soc2011/shm/sys/modules/cxgb/Makefile soc2011/shm/sys/modules/cxgb/cxgb/ soc2011/shm/sys/modules/cxgb/cxgb/Makefile soc2011/shm/sys/modules/cxgb/cxgb_t3fw/ soc2011/shm/sys/modules/cxgb/cxgb_t3fw/Makefile soc2011/shm/sys/modules/cxgb/iw_cxgb/ soc2011/shm/sys/modules/cxgb/iw_cxgb/Makefile soc2011/shm/sys/modules/cxgb/toecore/ soc2011/shm/sys/modules/cxgb/toecore/Makefile soc2011/shm/sys/modules/cxgb/tom/ soc2011/shm/sys/modules/cxgb/tom/Makefile soc2011/shm/sys/modules/cyclic/ soc2011/shm/sys/modules/cyclic/Makefile soc2011/shm/sys/modules/dc/ soc2011/shm/sys/modules/dc/Makefile soc2011/shm/sys/modules/dcons/ soc2011/shm/sys/modules/dcons/Makefile soc2011/shm/sys/modules/dcons_crom/ soc2011/shm/sys/modules/dcons_crom/Makefile soc2011/shm/sys/modules/de/ soc2011/shm/sys/modules/de/Makefile soc2011/shm/sys/modules/digi/ soc2011/shm/sys/modules/digi/Makefile (contents, props changed) soc2011/shm/sys/modules/digi/Makefile.inc (contents, props changed) soc2011/shm/sys/modules/digi/digi/ soc2011/shm/sys/modules/digi/digi/Makefile soc2011/shm/sys/modules/digi/digi_CX/ soc2011/shm/sys/modules/digi/digi_CX/Makefile soc2011/shm/sys/modules/digi/digi_CX_PCI/ soc2011/shm/sys/modules/digi/digi_CX_PCI/Makefile soc2011/shm/sys/modules/digi/digi_EPCX/ soc2011/shm/sys/modules/digi/digi_EPCX/Makefile soc2011/shm/sys/modules/digi/digi_EPCX_PCI/ soc2011/shm/sys/modules/digi/digi_EPCX_PCI/Makefile soc2011/shm/sys/modules/digi/digi_Xe/ soc2011/shm/sys/modules/digi/digi_Xe/Makefile soc2011/shm/sys/modules/digi/digi_Xem/ soc2011/shm/sys/modules/digi/digi_Xem/Makefile soc2011/shm/sys/modules/digi/digi_Xr/ soc2011/shm/sys/modules/digi/digi_Xr/Makefile soc2011/shm/sys/modules/dpms/ soc2011/shm/sys/modules/dpms/Makefile soc2011/shm/sys/modules/dpt/ soc2011/shm/sys/modules/dpt/Makefile soc2011/shm/sys/modules/drm/ soc2011/shm/sys/modules/drm/Makefile soc2011/shm/sys/modules/drm/Makefile.inc soc2011/shm/sys/modules/drm/drm/ soc2011/shm/sys/modules/drm/drm/Makefile soc2011/shm/sys/modules/drm/i915/ soc2011/shm/sys/modules/drm/i915/Makefile soc2011/shm/sys/modules/drm/mach64/ soc2011/shm/sys/modules/drm/mach64/Makefile soc2011/shm/sys/modules/drm/mga/ soc2011/shm/sys/modules/drm/mga/Makefile soc2011/shm/sys/modules/drm/r128/ soc2011/shm/sys/modules/drm/r128/Makefile soc2011/shm/sys/modules/drm/radeon/ soc2011/shm/sys/modules/drm/radeon/Makefile soc2011/shm/sys/modules/drm/savage/ soc2011/shm/sys/modules/drm/savage/Makefile soc2011/shm/sys/modules/drm/sis/ soc2011/shm/sys/modules/drm/sis/Makefile soc2011/shm/sys/modules/drm/tdfx/ soc2011/shm/sys/modules/drm/tdfx/Makefile soc2011/shm/sys/modules/dtrace/ soc2011/shm/sys/modules/dtrace/Makefile soc2011/shm/sys/modules/dtrace/Makefile.inc soc2011/shm/sys/modules/dtrace/dtmalloc/ soc2011/shm/sys/modules/dtrace/dtmalloc/Makefile soc2011/shm/sys/modules/dtrace/dtnfsclient/ soc2011/shm/sys/modules/dtrace/dtnfsclient/Makefile soc2011/shm/sys/modules/dtrace/dtrace/ soc2011/shm/sys/modules/dtrace/dtrace/Makefile soc2011/shm/sys/modules/dtrace/dtrace_test/ soc2011/shm/sys/modules/dtrace/dtrace_test/Makefile soc2011/shm/sys/modules/dtrace/dtraceall/ soc2011/shm/sys/modules/dtrace/dtraceall/Makefile soc2011/shm/sys/modules/dtrace/dtraceall/dtraceall.c soc2011/shm/sys/modules/dtrace/fasttrap/ soc2011/shm/sys/modules/dtrace/fasttrap/Makefile soc2011/shm/sys/modules/dtrace/fbt/ soc2011/shm/sys/modules/dtrace/fbt/Makefile soc2011/shm/sys/modules/dtrace/lockstat/ soc2011/shm/sys/modules/dtrace/lockstat/Makefile soc2011/shm/sys/modules/dtrace/profile/ soc2011/shm/sys/modules/dtrace/profile/Makefile soc2011/shm/sys/modules/dtrace/prototype/ soc2011/shm/sys/modules/dtrace/prototype/Makefile soc2011/shm/sys/modules/dtrace/sdt/ soc2011/shm/sys/modules/dtrace/sdt/Makefile soc2011/shm/sys/modules/dtrace/systrace/ soc2011/shm/sys/modules/dtrace/systrace/Makefile soc2011/shm/sys/modules/dummynet/ soc2011/shm/sys/modules/dummynet/Makefile soc2011/shm/sys/modules/ed/ soc2011/shm/sys/modules/ed/Makefile soc2011/shm/sys/modules/elink/ soc2011/shm/sys/modules/elink/Makefile soc2011/shm/sys/modules/em/ soc2011/shm/sys/modules/em/Makefile soc2011/shm/sys/modules/en/ soc2011/shm/sys/modules/en/Makefile soc2011/shm/sys/modules/ep/ soc2011/shm/sys/modules/ep/Makefile soc2011/shm/sys/modules/epic/ soc2011/shm/sys/modules/epic/Makefile soc2011/shm/sys/modules/esp/ soc2011/shm/sys/modules/esp/Makefile soc2011/shm/sys/modules/et/ soc2011/shm/sys/modules/et/Makefile soc2011/shm/sys/modules/ex/ soc2011/shm/sys/modules/ex/Makefile soc2011/shm/sys/modules/exca/ soc2011/shm/sys/modules/exca/Makefile soc2011/shm/sys/modules/ext2fs/ soc2011/shm/sys/modules/ext2fs/Makefile soc2011/shm/sys/modules/fatm/ soc2011/shm/sys/modules/fatm/Makefile soc2011/shm/sys/modules/fdc/ soc2011/shm/sys/modules/fdc/Makefile soc2011/shm/sys/modules/fdescfs/ soc2011/shm/sys/modules/fdescfs/Makefile soc2011/shm/sys/modules/fe/ soc2011/shm/sys/modules/fe/Makefile soc2011/shm/sys/modules/firewire/ soc2011/shm/sys/modules/firewire/Makefile soc2011/shm/sys/modules/firewire/Makefile.inc soc2011/shm/sys/modules/firewire/firewire/ soc2011/shm/sys/modules/firewire/firewire/Makefile soc2011/shm/sys/modules/firewire/fwe/ soc2011/shm/sys/modules/firewire/fwe/Makefile soc2011/shm/sys/modules/firewire/fwip/ soc2011/shm/sys/modules/firewire/fwip/Makefile soc2011/shm/sys/modules/firewire/sbp/ soc2011/shm/sys/modules/firewire/sbp/Makefile soc2011/shm/sys/modules/firewire/sbp_targ/ soc2011/shm/sys/modules/firewire/sbp_targ/Makefile soc2011/shm/sys/modules/firmware/ soc2011/shm/sys/modules/firmware/Makefile soc2011/shm/sys/modules/fxp/ soc2011/shm/sys/modules/fxp/Makefile soc2011/shm/sys/modules/gem/ soc2011/shm/sys/modules/gem/Makefile soc2011/shm/sys/modules/geom/ soc2011/shm/sys/modules/geom/Makefile soc2011/shm/sys/modules/geom/Makefile.inc soc2011/shm/sys/modules/geom/geom_bde/ soc2011/shm/sys/modules/geom/geom_bde/Makefile soc2011/shm/sys/modules/geom/geom_bsd/ soc2011/shm/sys/modules/geom/geom_bsd/Makefile soc2011/shm/sys/modules/geom/geom_cache/ soc2011/shm/sys/modules/geom/geom_cache/Makefile soc2011/shm/sys/modules/geom/geom_ccd/ soc2011/shm/sys/modules/geom/geom_ccd/Makefile soc2011/shm/sys/modules/geom/geom_concat/ soc2011/shm/sys/modules/geom/geom_concat/Makefile soc2011/shm/sys/modules/geom/geom_eli/ soc2011/shm/sys/modules/geom/geom_eli/Makefile soc2011/shm/sys/modules/geom/geom_fox/ soc2011/shm/sys/modules/geom/geom_fox/Makefile soc2011/shm/sys/modules/geom/geom_gate/ soc2011/shm/sys/modules/geom/geom_gate/Makefile soc2011/shm/sys/modules/geom/geom_journal/ soc2011/shm/sys/modules/geom/geom_journal/Makefile soc2011/shm/sys/modules/geom/geom_label/ soc2011/shm/sys/modules/geom/geom_label/Makefile soc2011/shm/sys/modules/geom/geom_linux_lvm/ soc2011/shm/sys/modules/geom/geom_linux_lvm/Makefile soc2011/shm/sys/modules/geom/geom_mbr/ soc2011/shm/sys/modules/geom/geom_mbr/Makefile soc2011/shm/sys/modules/geom/geom_mirror/ soc2011/shm/sys/modules/geom/geom_mirror/Makefile soc2011/shm/sys/modules/geom/geom_multipath/ soc2011/shm/sys/modules/geom/geom_multipath/Makefile soc2011/shm/sys/modules/geom/geom_nop/ soc2011/shm/sys/modules/geom/geom_nop/Makefile soc2011/shm/sys/modules/geom/geom_part/ soc2011/shm/sys/modules/geom/geom_part/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_apm/ soc2011/shm/sys/modules/geom/geom_part/geom_part_apm/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_bsd/ soc2011/shm/sys/modules/geom/geom_part/geom_part_bsd/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_ebr/ soc2011/shm/sys/modules/geom/geom_part/geom_part_ebr/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_gpt/ soc2011/shm/sys/modules/geom/geom_part/geom_part_gpt/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_mbr/ soc2011/shm/sys/modules/geom/geom_part/geom_part_mbr/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_pc98/ soc2011/shm/sys/modules/geom/geom_part/geom_part_pc98/Makefile soc2011/shm/sys/modules/geom/geom_part/geom_part_vtoc8/ soc2011/shm/sys/modules/geom/geom_part/geom_part_vtoc8/Makefile soc2011/shm/sys/modules/geom/geom_pc98/ soc2011/shm/sys/modules/geom/geom_pc98/Makefile soc2011/shm/sys/modules/geom/geom_raid3/ soc2011/shm/sys/modules/geom/geom_raid3/Makefile soc2011/shm/sys/modules/geom/geom_sched/ soc2011/shm/sys/modules/geom/geom_sched/Makefile soc2011/shm/sys/modules/geom/geom_sched/Makefile.inc soc2011/shm/sys/modules/geom/geom_sched/gs_sched/ soc2011/shm/sys/modules/geom/geom_sched/gs_sched/Makefile soc2011/shm/sys/modules/geom/geom_sched/gsched_rr/ soc2011/shm/sys/modules/geom/geom_sched/gsched_rr/Makefile soc2011/shm/sys/modules/geom/geom_shsec/ soc2011/shm/sys/modules/geom/geom_shsec/Makefile soc2011/shm/sys/modules/geom/geom_stripe/ soc2011/shm/sys/modules/geom/geom_stripe/Makefile soc2011/shm/sys/modules/geom/geom_sunlabel/ soc2011/shm/sys/modules/geom/geom_sunlabel/Makefile soc2011/shm/sys/modules/geom/geom_uzip/ soc2011/shm/sys/modules/geom/geom_uzip/Makefile soc2011/shm/sys/modules/geom/geom_vinum/ soc2011/shm/sys/modules/geom/geom_vinum/Makefile soc2011/shm/sys/modules/geom/geom_virstor/ soc2011/shm/sys/modules/geom/geom_virstor/Makefile soc2011/shm/sys/modules/geom/geom_vol_ffs/ soc2011/shm/sys/modules/geom/geom_vol_ffs/Makefile soc2011/shm/sys/modules/geom/geom_zero/ soc2011/shm/sys/modules/geom/geom_zero/Makefile soc2011/shm/sys/modules/glxsb/ soc2011/shm/sys/modules/glxsb/Makefile soc2011/shm/sys/modules/hatm/ soc2011/shm/sys/modules/hatm/Makefile soc2011/shm/sys/modules/hifn/ soc2011/shm/sys/modules/hifn/Makefile soc2011/shm/sys/modules/hme/ soc2011/shm/sys/modules/hme/Makefile soc2011/shm/sys/modules/hpfs/ soc2011/shm/sys/modules/hpfs/Makefile soc2011/shm/sys/modules/hptiop/ soc2011/shm/sys/modules/hptiop/Makefile soc2011/shm/sys/modules/hptmv/ soc2011/shm/sys/modules/hptmv/Makefile soc2011/shm/sys/modules/hptrr/ soc2011/shm/sys/modules/hptrr/Makefile soc2011/shm/sys/modules/hwpmc/ soc2011/shm/sys/modules/hwpmc/Makefile soc2011/shm/sys/modules/i2c/ soc2011/shm/sys/modules/i2c/Makefile soc2011/shm/sys/modules/i2c/Makefile.inc soc2011/shm/sys/modules/i2c/controllers/ soc2011/shm/sys/modules/i2c/controllers/Makefile soc2011/shm/sys/modules/i2c/controllers/Makefile.inc soc2011/shm/sys/modules/i2c/controllers/alpm/ soc2011/shm/sys/modules/i2c/controllers/alpm/Makefile soc2011/shm/sys/modules/i2c/controllers/amdpm/ soc2011/shm/sys/modules/i2c/controllers/amdpm/Makefile soc2011/shm/sys/modules/i2c/controllers/amdsmb/ soc2011/shm/sys/modules/i2c/controllers/amdsmb/Makefile soc2011/shm/sys/modules/i2c/controllers/ichsmb/ soc2011/shm/sys/modules/i2c/controllers/ichsmb/Makefile soc2011/shm/sys/modules/i2c/controllers/intpm/ soc2011/shm/sys/modules/i2c/controllers/intpm/Makefile soc2011/shm/sys/modules/i2c/controllers/lpbb/ soc2011/shm/sys/modules/i2c/controllers/lpbb/Makefile soc2011/shm/sys/modules/i2c/controllers/nfsmb/ soc2011/shm/sys/modules/i2c/controllers/nfsmb/Makefile soc2011/shm/sys/modules/i2c/controllers/pcf/ soc2011/shm/sys/modules/i2c/controllers/pcf/Makefile soc2011/shm/sys/modules/i2c/controllers/viapm/ soc2011/shm/sys/modules/i2c/controllers/viapm/Makefile soc2011/shm/sys/modules/i2c/if_ic/ soc2011/shm/sys/modules/i2c/if_ic/Makefile soc2011/shm/sys/modules/i2c/iic/ soc2011/shm/sys/modules/i2c/iic/Makefile soc2011/shm/sys/modules/i2c/iicbb/ soc2011/shm/sys/modules/i2c/iicbb/Makefile soc2011/shm/sys/modules/i2c/iicbus/ soc2011/shm/sys/modules/i2c/iicbus/Makefile soc2011/shm/sys/modules/i2c/iicsmb/ soc2011/shm/sys/modules/i2c/iicsmb/Makefile soc2011/shm/sys/modules/i2c/smb/ soc2011/shm/sys/modules/i2c/smb/Makefile soc2011/shm/sys/modules/i2c/smbus/ soc2011/shm/sys/modules/i2c/smbus/Makefile soc2011/shm/sys/modules/ibcs2/ soc2011/shm/sys/modules/ibcs2/Makefile soc2011/shm/sys/modules/ichwd/ soc2011/shm/sys/modules/ichwd/Makefile soc2011/shm/sys/modules/ida/ soc2011/shm/sys/modules/ida/Makefile soc2011/shm/sys/modules/ie/ soc2011/shm/sys/modules/ie/Makefile soc2011/shm/sys/modules/if_bridge/ soc2011/shm/sys/modules/if_bridge/Makefile soc2011/shm/sys/modules/if_disc/ soc2011/shm/sys/modules/if_disc/Makefile soc2011/shm/sys/modules/if_edsc/ soc2011/shm/sys/modules/if_edsc/Makefile soc2011/shm/sys/modules/if_ef/ soc2011/shm/sys/modules/if_ef/Makefile soc2011/shm/sys/modules/if_epair/ soc2011/shm/sys/modules/if_epair/Makefile soc2011/shm/sys/modules/if_faith/ soc2011/shm/sys/modules/if_faith/Makefile soc2011/shm/sys/modules/if_gif/ soc2011/shm/sys/modules/if_gif/Makefile soc2011/shm/sys/modules/if_gre/ soc2011/shm/sys/modules/if_gre/Makefile soc2011/shm/sys/modules/if_lagg/ soc2011/shm/sys/modules/if_lagg/Makefile soc2011/shm/sys/modules/if_ndis/ soc2011/shm/sys/modules/if_ndis/Makefile soc2011/shm/sys/modules/if_stf/ soc2011/shm/sys/modules/if_stf/Makefile soc2011/shm/sys/modules/if_tap/ soc2011/shm/sys/modules/if_tap/Makefile soc2011/shm/sys/modules/if_tun/ soc2011/shm/sys/modules/if_tun/Makefile soc2011/shm/sys/modules/if_vlan/ soc2011/shm/sys/modules/if_vlan/Makefile soc2011/shm/sys/modules/igb/ soc2011/shm/sys/modules/igb/Makefile soc2011/shm/sys/modules/iir/ soc2011/shm/sys/modules/iir/Makefile soc2011/shm/sys/modules/io/ soc2011/shm/sys/modules/io/Makefile soc2011/shm/sys/modules/ip6_mroute_mod/ soc2011/shm/sys/modules/ip6_mroute_mod/Makefile soc2011/shm/sys/modules/ip_mroute_mod/ soc2011/shm/sys/modules/ip_mroute_mod/Makefile soc2011/shm/sys/modules/ipdivert/ soc2011/shm/sys/modules/ipdivert/Makefile soc2011/shm/sys/modules/ipfilter/ soc2011/shm/sys/modules/ipfilter/Makefile soc2011/shm/sys/modules/ipfw/ soc2011/shm/sys/modules/ipfw/Makefile soc2011/shm/sys/modules/ipfw_nat/ soc2011/shm/sys/modules/ipfw_nat/Makefile soc2011/shm/sys/modules/ipmi/ soc2011/shm/sys/modules/ipmi/Makefile soc2011/shm/sys/modules/ipmi/ipmi_linux/ soc2011/shm/sys/modules/ipmi/ipmi_linux/Makefile soc2011/shm/sys/modules/ips/ soc2011/shm/sys/modules/ips/Makefile soc2011/shm/sys/modules/ipw/ soc2011/shm/sys/modules/ipw/Makefile soc2011/shm/sys/modules/ipwfw/ soc2011/shm/sys/modules/ipwfw/Makefile soc2011/shm/sys/modules/ipwfw/ipw_bss/ soc2011/shm/sys/modules/ipwfw/ipw_bss/Makefile soc2011/shm/sys/modules/ipwfw/ipw_ibss/ soc2011/shm/sys/modules/ipwfw/ipw_ibss/Makefile soc2011/shm/sys/modules/ipwfw/ipw_monitor/ soc2011/shm/sys/modules/ipwfw/ipw_monitor/Makefile soc2011/shm/sys/modules/iscsi/ soc2011/shm/sys/modules/iscsi/Makefile soc2011/shm/sys/modules/iscsi/initiator/ soc2011/shm/sys/modules/iscsi/initiator/Makefile soc2011/shm/sys/modules/isp/ soc2011/shm/sys/modules/isp/Makefile soc2011/shm/sys/modules/ispfw/ soc2011/shm/sys/modules/ispfw/Makefile soc2011/shm/sys/modules/ispfw/isp_1000/ soc2011/shm/sys/modules/ispfw/isp_1000/Makefile soc2011/shm/sys/modules/ispfw/isp_1040/ soc2011/shm/sys/modules/ispfw/isp_1040/Makefile soc2011/shm/sys/modules/ispfw/isp_1040_it/ soc2011/shm/sys/modules/ispfw/isp_1040_it/Makefile soc2011/shm/sys/modules/ispfw/isp_1080/ soc2011/shm/sys/modules/ispfw/isp_1080/Makefile soc2011/shm/sys/modules/ispfw/isp_1080_it/ soc2011/shm/sys/modules/ispfw/isp_1080_it/Makefile soc2011/shm/sys/modules/ispfw/isp_12160/ soc2011/shm/sys/modules/ispfw/isp_12160/Makefile soc2011/shm/sys/modules/ispfw/isp_12160_it/ soc2011/shm/sys/modules/ispfw/isp_12160_it/Makefile soc2011/shm/sys/modules/ispfw/isp_2100/ soc2011/shm/sys/modules/ispfw/isp_2100/Makefile soc2011/shm/sys/modules/ispfw/isp_2200/ soc2011/shm/sys/modules/ispfw/isp_2200/Makefile soc2011/shm/sys/modules/ispfw/isp_2300/ soc2011/shm/sys/modules/ispfw/isp_2300/Makefile soc2011/shm/sys/modules/ispfw/isp_2322/ soc2011/shm/sys/modules/ispfw/isp_2322/Makefile soc2011/shm/sys/modules/ispfw/isp_2400/ soc2011/shm/sys/modules/ispfw/isp_2400/Makefile soc2011/shm/sys/modules/ispfw/isp_2400_multi/ soc2011/shm/sys/modules/ispfw/isp_2400_multi/Makefile soc2011/shm/sys/modules/ispfw/isp_2500/ soc2011/shm/sys/modules/ispfw/isp_2500/Makefile soc2011/shm/sys/modules/ispfw/isp_2500_multi/ soc2011/shm/sys/modules/ispfw/isp_2500_multi/Makefile soc2011/shm/sys/modules/ispfw/ispfw/ soc2011/shm/sys/modules/ispfw/ispfw/Makefile soc2011/shm/sys/modules/iwi/ soc2011/shm/sys/modules/iwi/Makefile soc2011/shm/sys/modules/iwifw/ soc2011/shm/sys/modules/iwifw/Makefile soc2011/shm/sys/modules/iwifw/iwi_bss/ soc2011/shm/sys/modules/iwifw/iwi_bss/Makefile soc2011/shm/sys/modules/iwifw/iwi_ibss/ soc2011/shm/sys/modules/iwifw/iwi_ibss/Makefile soc2011/shm/sys/modules/iwifw/iwi_monitor/ soc2011/shm/sys/modules/iwifw/iwi_monitor/Makefile soc2011/shm/sys/modules/iwn/ soc2011/shm/sys/modules/iwn/Makefile soc2011/shm/sys/modules/iwnfw/ soc2011/shm/sys/modules/iwnfw/Makefile soc2011/shm/sys/modules/iwnfw/Makefile.inc soc2011/shm/sys/modules/iwnfw/iwn1000/ soc2011/shm/sys/modules/iwnfw/iwn1000/Makefile soc2011/shm/sys/modules/iwnfw/iwn4965/ soc2011/shm/sys/modules/iwnfw/iwn4965/Makefile soc2011/shm/sys/modules/iwnfw/iwn5000/ soc2011/shm/sys/modules/iwnfw/iwn5000/Makefile soc2011/shm/sys/modules/iwnfw/iwn5150/ soc2011/shm/sys/modules/iwnfw/iwn5150/Makefile soc2011/shm/sys/modules/iwnfw/iwn6000/ soc2011/shm/sys/modules/iwnfw/iwn6000/Makefile soc2011/shm/sys/modules/ixgb/ soc2011/shm/sys/modules/ixgb/Makefile soc2011/shm/sys/modules/ixgbe/ soc2011/shm/sys/modules/ixgbe/Makefile soc2011/shm/sys/modules/jme/ soc2011/shm/sys/modules/jme/Makefile soc2011/shm/sys/modules/joy/ soc2011/shm/sys/modules/joy/Makefile soc2011/shm/sys/modules/kbdmux/ soc2011/shm/sys/modules/kbdmux/Makefile soc2011/shm/sys/modules/kgssapi/ soc2011/shm/sys/modules/kgssapi/Makefile soc2011/shm/sys/modules/kgssapi_krb5/ soc2011/shm/sys/modules/kgssapi_krb5/Makefile soc2011/shm/sys/modules/krpc/ soc2011/shm/sys/modules/krpc/Makefile soc2011/shm/sys/modules/ksyms/ soc2011/shm/sys/modules/ksyms/Makefile soc2011/shm/sys/modules/le/ soc2011/shm/sys/modules/le/Makefile soc2011/shm/sys/modules/lge/ soc2011/shm/sys/modules/lge/Makefile soc2011/shm/sys/modules/libalias/ soc2011/shm/sys/modules/libalias/Makefile soc2011/shm/sys/modules/libalias/libalias/ soc2011/shm/sys/modules/libalias/libalias/Makefile soc2011/shm/sys/modules/libalias/modules/ soc2011/shm/sys/modules/libalias/modules/Makefile soc2011/shm/sys/modules/libalias/modules/Makefile.inc soc2011/shm/sys/modules/libalias/modules/cuseeme/ soc2011/shm/sys/modules/libalias/modules/cuseeme/Makefile soc2011/shm/sys/modules/libalias/modules/dummy/ soc2011/shm/sys/modules/libalias/modules/dummy/Makefile soc2011/shm/sys/modules/libalias/modules/ftp/ soc2011/shm/sys/modules/libalias/modules/ftp/Makefile soc2011/shm/sys/modules/libalias/modules/irc/ soc2011/shm/sys/modules/libalias/modules/irc/Makefile soc2011/shm/sys/modules/libalias/modules/modules.inc soc2011/shm/sys/modules/libalias/modules/nbt/ soc2011/shm/sys/modules/libalias/modules/nbt/Makefile soc2011/shm/sys/modules/libalias/modules/pptp/ soc2011/shm/sys/modules/libalias/modules/pptp/Makefile soc2011/shm/sys/modules/libalias/modules/skinny/ soc2011/shm/sys/modules/libalias/modules/skinny/Makefile soc2011/shm/sys/modules/libalias/modules/smedia/ soc2011/shm/sys/modules/libalias/modules/smedia/Makefile soc2011/shm/sys/modules/libiconv/ soc2011/shm/sys/modules/libiconv/Makefile soc2011/shm/sys/modules/libmbpool/ soc2011/shm/sys/modules/libmbpool/Makefile soc2011/shm/sys/modules/libmchain/ soc2011/shm/sys/modules/libmchain/Makefile soc2011/shm/sys/modules/lindev/ soc2011/shm/sys/modules/lindev/Makefile soc2011/shm/sys/modules/linprocfs/ soc2011/shm/sys/modules/linprocfs/Makefile soc2011/shm/sys/modules/linsysfs/ soc2011/shm/sys/modules/linsysfs/Makefile soc2011/shm/sys/modules/linux/ soc2011/shm/sys/modules/linux/Makefile soc2011/shm/sys/modules/lmc/ soc2011/shm/sys/modules/lmc/Makefile soc2011/shm/sys/modules/lpt/ soc2011/shm/sys/modules/lpt/Makefile soc2011/shm/sys/modules/mac_biba/ soc2011/shm/sys/modules/mac_biba/Makefile soc2011/shm/sys/modules/mac_bsdextended/ soc2011/shm/sys/modules/mac_bsdextended/Makefile soc2011/shm/sys/modules/mac_ifoff/ soc2011/shm/sys/modules/mac_ifoff/Makefile soc2011/shm/sys/modules/mac_lomac/ soc2011/shm/sys/modules/mac_lomac/Makefile soc2011/shm/sys/modules/mac_mls/ soc2011/shm/sys/modules/mac_mls/Makefile soc2011/shm/sys/modules/mac_none/ soc2011/shm/sys/modules/mac_none/Makefile soc2011/shm/sys/modules/mac_partition/ soc2011/shm/sys/modules/mac_partition/Makefile soc2011/shm/sys/modules/mac_portacl/ soc2011/shm/sys/modules/mac_portacl/Makefile soc2011/shm/sys/modules/mac_seeotheruids/ soc2011/shm/sys/modules/mac_seeotheruids/Makefile soc2011/shm/sys/modules/mac_stub/ soc2011/shm/sys/modules/mac_stub/Makefile soc2011/shm/sys/modules/mac_test/ soc2011/shm/sys/modules/mac_test/Makefile soc2011/shm/sys/modules/malo/ soc2011/shm/sys/modules/malo/Makefile soc2011/shm/sys/modules/mcd/ soc2011/shm/sys/modules/mcd/Makefile soc2011/shm/sys/modules/md/ soc2011/shm/sys/modules/md/Makefile soc2011/shm/sys/modules/mem/ soc2011/shm/sys/modules/mem/Makefile soc2011/shm/sys/modules/mfi/ soc2011/shm/sys/modules/mfi/Makefile soc2011/shm/sys/modules/mfi/mfi_linux/ soc2011/shm/sys/modules/mfi/mfi_linux/Makefile soc2011/shm/sys/modules/mfi/mfip/ soc2011/shm/sys/modules/mfi/mfip/Makefile soc2011/shm/sys/modules/mii/ soc2011/shm/sys/modules/mii/Makefile soc2011/shm/sys/modules/mlx/ soc2011/shm/sys/modules/mlx/Makefile soc2011/shm/sys/modules/mly/ soc2011/shm/sys/modules/mly/Makefile soc2011/shm/sys/modules/mmc/ soc2011/shm/sys/modules/mmc/Makefile soc2011/shm/sys/modules/mmcsd/ soc2011/shm/sys/modules/mmcsd/Makefile soc2011/shm/sys/modules/mpt/ soc2011/shm/sys/modules/mpt/Makefile soc2011/shm/sys/modules/mqueue/ soc2011/shm/sys/modules/mqueue/Makefile soc2011/shm/sys/modules/msdosfs/ soc2011/shm/sys/modules/msdosfs/Makefile soc2011/shm/sys/modules/msdosfs_iconv/ soc2011/shm/sys/modules/msdosfs_iconv/Makefile soc2011/shm/sys/modules/mse/ soc2011/shm/sys/modules/mse/Makefile soc2011/shm/sys/modules/msk/ soc2011/shm/sys/modules/msk/Makefile soc2011/shm/sys/modules/mvs/ soc2011/shm/sys/modules/mvs/Makefile soc2011/shm/sys/modules/mwl/ soc2011/shm/sys/modules/mwl/Makefile soc2011/shm/sys/modules/mwlfw/ soc2011/shm/sys/modules/mwlfw/Makefile soc2011/shm/sys/modules/mxge/ soc2011/shm/sys/modules/mxge/Makefile soc2011/shm/sys/modules/mxge/mxge/ soc2011/shm/sys/modules/mxge/mxge/Makefile soc2011/shm/sys/modules/mxge/mxge_eth_z8e/ soc2011/shm/sys/modules/mxge/mxge_eth_z8e/Makefile soc2011/shm/sys/modules/mxge/mxge_ethp_z8e/ soc2011/shm/sys/modules/mxge/mxge_ethp_z8e/Makefile soc2011/shm/sys/modules/mxge/mxge_rss_eth_z8e/ soc2011/shm/sys/modules/mxge/mxge_rss_eth_z8e/Makefile soc2011/shm/sys/modules/mxge/mxge_rss_ethp_z8e/ soc2011/shm/sys/modules/mxge/mxge_rss_ethp_z8e/Makefile soc2011/shm/sys/modules/my/ soc2011/shm/sys/modules/my/Makefile soc2011/shm/sys/modules/ncp/ soc2011/shm/sys/modules/ncp/Makefile soc2011/shm/sys/modules/ncv/ soc2011/shm/sys/modules/ncv/Makefile soc2011/shm/sys/modules/ndis/ soc2011/shm/sys/modules/ndis/Makefile soc2011/shm/sys/modules/netgraph/ soc2011/shm/sys/modules/netgraph/Makefile soc2011/shm/sys/modules/netgraph/Makefile.inc soc2011/shm/sys/modules/netgraph/UI/ soc2011/shm/sys/modules/netgraph/UI/Makefile soc2011/shm/sys/modules/netgraph/async/ soc2011/shm/sys/modules/netgraph/async/Makefile soc2011/shm/sys/modules/netgraph/atm/ soc2011/shm/sys/modules/netgraph/atm/Makefile soc2011/shm/sys/modules/netgraph/atm/Makefile.inc soc2011/shm/sys/modules/netgraph/atm/atm/ soc2011/shm/sys/modules/netgraph/atm/atm/Makefile soc2011/shm/sys/modules/netgraph/atm/atmbase/ soc2011/shm/sys/modules/netgraph/atm/atmbase/Makefile soc2011/shm/sys/modules/netgraph/atm/ccatm/ soc2011/shm/sys/modules/netgraph/atm/ccatm/Makefile soc2011/shm/sys/modules/netgraph/atm/sscfu/ soc2011/shm/sys/modules/netgraph/atm/sscfu/Makefile soc2011/shm/sys/modules/netgraph/atm/sscop/ soc2011/shm/sys/modules/netgraph/atm/sscop/Makefile soc2011/shm/sys/modules/netgraph/atm/uni/ soc2011/shm/sys/modules/netgraph/atm/uni/Makefile soc2011/shm/sys/modules/netgraph/atmllc/ soc2011/shm/sys/modules/netgraph/atmllc/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/ soc2011/shm/sys/modules/netgraph/bluetooth/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/Makefile.inc soc2011/shm/sys/modules/netgraph/bluetooth/bluetooth/ soc2011/shm/sys/modules/netgraph/bluetooth/bluetooth/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/bt3c/ soc2011/shm/sys/modules/netgraph/bluetooth/bt3c/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/h4/ soc2011/shm/sys/modules/netgraph/bluetooth/h4/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/hci/ soc2011/shm/sys/modules/netgraph/bluetooth/hci/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/l2cap/ soc2011/shm/sys/modules/netgraph/bluetooth/l2cap/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/socket/ soc2011/shm/sys/modules/netgraph/bluetooth/socket/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/ubt/ soc2011/shm/sys/modules/netgraph/bluetooth/ubt/Makefile soc2011/shm/sys/modules/netgraph/bluetooth/ubtbcmfw/ soc2011/shm/sys/modules/netgraph/bluetooth/ubtbcmfw/Makefile soc2011/shm/sys/modules/netgraph/bpf/ soc2011/shm/sys/modules/netgraph/bpf/Makefile soc2011/shm/sys/modules/netgraph/bridge/ soc2011/shm/sys/modules/netgraph/bridge/Makefile soc2011/shm/sys/modules/netgraph/car/ soc2011/shm/sys/modules/netgraph/car/Makefile soc2011/shm/sys/modules/netgraph/cisco/ soc2011/shm/sys/modules/netgraph/cisco/Makefile soc2011/shm/sys/modules/netgraph/deflate/ soc2011/shm/sys/modules/netgraph/deflate/Makefile soc2011/shm/sys/modules/netgraph/device/ soc2011/shm/sys/modules/netgraph/device/Makefile soc2011/shm/sys/modules/netgraph/echo/ soc2011/shm/sys/modules/netgraph/echo/Makefile soc2011/shm/sys/modules/netgraph/eiface/ soc2011/shm/sys/modules/netgraph/eiface/Makefile soc2011/shm/sys/modules/netgraph/etf/ soc2011/shm/sys/modules/netgraph/etf/Makefile soc2011/shm/sys/modules/netgraph/ether/ soc2011/shm/sys/modules/netgraph/ether/Makefile soc2011/shm/sys/modules/netgraph/ether_echo/ soc2011/shm/sys/modules/netgraph/ether_echo/Makefile soc2011/shm/sys/modules/netgraph/fec/ soc2011/shm/sys/modules/netgraph/fec/Makefile soc2011/shm/sys/modules/netgraph/frame_relay/ soc2011/shm/sys/modules/netgraph/frame_relay/Makefile soc2011/shm/sys/modules/netgraph/gif/ soc2011/shm/sys/modules/netgraph/gif/Makefile soc2011/shm/sys/modules/netgraph/gif_demux/ soc2011/shm/sys/modules/netgraph/gif_demux/Makefile soc2011/shm/sys/modules/netgraph/hole/ soc2011/shm/sys/modules/netgraph/hole/Makefile soc2011/shm/sys/modules/netgraph/hub/ soc2011/shm/sys/modules/netgraph/hub/Makefile soc2011/shm/sys/modules/netgraph/iface/ soc2011/shm/sys/modules/netgraph/iface/Makefile soc2011/shm/sys/modules/netgraph/ip_input/ soc2011/shm/sys/modules/netgraph/ip_input/Makefile soc2011/shm/sys/modules/netgraph/ipfw/ soc2011/shm/sys/modules/netgraph/ipfw/Makefile soc2011/shm/sys/modules/netgraph/ksocket/ soc2011/shm/sys/modules/netgraph/ksocket/Makefile soc2011/shm/sys/modules/netgraph/l2tp/ soc2011/shm/sys/modules/netgraph/l2tp/Makefile soc2011/shm/sys/modules/netgraph/lmi/ soc2011/shm/sys/modules/netgraph/lmi/Makefile soc2011/shm/sys/modules/netgraph/mppc/ soc2011/shm/sys/modules/netgraph/mppc/Makefile soc2011/shm/sys/modules/netgraph/nat/ soc2011/shm/sys/modules/netgraph/nat/Makefile soc2011/shm/sys/modules/netgraph/netflow/ soc2011/shm/sys/modules/netgraph/netflow/Makefile soc2011/shm/sys/modules/netgraph/netgraph/ soc2011/shm/sys/modules/netgraph/netgraph/Makefile soc2011/shm/sys/modules/netgraph/one2many/ soc2011/shm/sys/modules/netgraph/one2many/Makefile soc2011/shm/sys/modules/netgraph/pipe/ soc2011/shm/sys/modules/netgraph/pipe/Makefile soc2011/shm/sys/modules/netgraph/ppp/ soc2011/shm/sys/modules/netgraph/ppp/Makefile soc2011/shm/sys/modules/netgraph/pppoe/ soc2011/shm/sys/modules/netgraph/pppoe/Makefile soc2011/shm/sys/modules/netgraph/pptpgre/ soc2011/shm/sys/modules/netgraph/pptpgre/Makefile soc2011/shm/sys/modules/netgraph/pred1/ soc2011/shm/sys/modules/netgraph/pred1/Makefile soc2011/shm/sys/modules/netgraph/rfc1490/ soc2011/shm/sys/modules/netgraph/rfc1490/Makefile soc2011/shm/sys/modules/netgraph/sample/ soc2011/shm/sys/modules/netgraph/sample/Makefile soc2011/shm/sys/modules/netgraph/socket/ soc2011/shm/sys/modules/netgraph/socket/Makefile soc2011/shm/sys/modules/netgraph/source/ soc2011/shm/sys/modules/netgraph/source/Makefile soc2011/shm/sys/modules/netgraph/split/ soc2011/shm/sys/modules/netgraph/split/Makefile soc2011/shm/sys/modules/netgraph/sppp/ soc2011/shm/sys/modules/netgraph/sppp/Makefile soc2011/shm/sys/modules/netgraph/tag/ soc2011/shm/sys/modules/netgraph/tag/Makefile soc2011/shm/sys/modules/netgraph/tcpmss/ soc2011/shm/sys/modules/netgraph/tcpmss/Makefile soc2011/shm/sys/modules/netgraph/tee/ soc2011/shm/sys/modules/netgraph/tee/Makefile soc2011/shm/sys/modules/netgraph/tty/ soc2011/shm/sys/modules/netgraph/tty/Makefile soc2011/shm/sys/modules/netgraph/vjc/ soc2011/shm/sys/modules/netgraph/vjc/Makefile soc2011/shm/sys/modules/netgraph/vlan/ soc2011/shm/sys/modules/netgraph/vlan/Makefile soc2011/shm/sys/modules/nfe/ soc2011/shm/sys/modules/nfe/Makefile soc2011/shm/sys/modules/nfs_common/ soc2011/shm/sys/modules/nfs_common/Makefile soc2011/shm/sys/modules/nfscl/ soc2011/shm/sys/modules/nfscl/Makefile soc2011/shm/sys/modules/nfsclient/ soc2011/shm/sys/modules/nfsclient/Makefile soc2011/shm/sys/modules/nfscommon/ soc2011/shm/sys/modules/nfscommon/Makefile soc2011/shm/sys/modules/nfsd/ soc2011/shm/sys/modules/nfsd/Makefile soc2011/shm/sys/modules/nfslockd/ soc2011/shm/sys/modules/nfslockd/Makefile soc2011/shm/sys/modules/nfsserver/ soc2011/shm/sys/modules/nfsserver/Makefile soc2011/shm/sys/modules/nfssvc/ soc2011/shm/sys/modules/nfssvc/Makefile soc2011/shm/sys/modules/nge/ soc2011/shm/sys/modules/nge/Makefile soc2011/shm/sys/modules/nmdm/ soc2011/shm/sys/modules/nmdm/Makefile soc2011/shm/sys/modules/nsp/ soc2011/shm/sys/modules/nsp/Makefile soc2011/shm/sys/modules/ntfs/ soc2011/shm/sys/modules/ntfs/Makefile soc2011/shm/sys/modules/ntfs_iconv/ soc2011/shm/sys/modules/ntfs_iconv/Makefile soc2011/shm/sys/modules/nullfs/ soc2011/shm/sys/modules/nullfs/Makefile soc2011/shm/sys/modules/nve/ soc2011/shm/sys/modules/nve/Makefile soc2011/shm/sys/modules/nvram/ soc2011/shm/sys/modules/nvram/Makefile soc2011/shm/sys/modules/nwfs/ soc2011/shm/sys/modules/nwfs/Makefile soc2011/shm/sys/modules/nxge/ soc2011/shm/sys/modules/nxge/Makefile soc2011/shm/sys/modules/opensolaris/ soc2011/shm/sys/modules/opensolaris/Makefile soc2011/shm/sys/modules/padlock/ soc2011/shm/sys/modules/padlock/Makefile soc2011/shm/sys/modules/patm/ soc2011/shm/sys/modules/patm/Makefile soc2011/shm/sys/modules/pccard/ soc2011/shm/sys/modules/pccard/Makefile soc2011/shm/sys/modules/pcfclock/ soc2011/shm/sys/modules/pcfclock/Makefile soc2011/shm/sys/modules/pcn/ soc2011/shm/sys/modules/pcn/Makefile soc2011/shm/sys/modules/pf/ soc2011/shm/sys/modules/pf/Makefile soc2011/shm/sys/modules/pflog/ soc2011/shm/sys/modules/pflog/Makefile soc2011/shm/sys/modules/plip/ soc2011/shm/sys/modules/plip/Makefile soc2011/shm/sys/modules/pmc/ soc2011/shm/sys/modules/pmc/Makefile soc2011/shm/sys/modules/portalfs/ soc2011/shm/sys/modules/portalfs/Makefile soc2011/shm/sys/modules/powermac_nvram/ soc2011/shm/sys/modules/powermac_nvram/Makefile soc2011/shm/sys/modules/ppbus/ soc2011/shm/sys/modules/ppbus/Makefile soc2011/shm/sys/modules/ppc/ soc2011/shm/sys/modules/ppc/Makefile soc2011/shm/sys/modules/ppi/ soc2011/shm/sys/modules/ppi/Makefile soc2011/shm/sys/modules/pps/ soc2011/shm/sys/modules/pps/Makefile soc2011/shm/sys/modules/procfs/ soc2011/shm/sys/modules/procfs/Makefile soc2011/shm/sys/modules/pseudofs/ soc2011/shm/sys/modules/pseudofs/Makefile soc2011/shm/sys/modules/pst/ soc2011/shm/sys/modules/pst/Makefile soc2011/shm/sys/modules/puc/ soc2011/shm/sys/modules/puc/Makefile soc2011/shm/sys/modules/ral/ soc2011/shm/sys/modules/ral/Makefile soc2011/shm/sys/modules/ralfw/ soc2011/shm/sys/modules/ralfw/Makefile soc2011/shm/sys/modules/ralfw/Makefile.inc soc2011/shm/sys/modules/ralfw/rt2561/ soc2011/shm/sys/modules/ralfw/rt2561/Makefile soc2011/shm/sys/modules/ralfw/rt2561s/ soc2011/shm/sys/modules/ralfw/rt2561s/Makefile soc2011/shm/sys/modules/ralfw/rt2661/ soc2011/shm/sys/modules/ralfw/rt2661/Makefile soc2011/shm/sys/modules/random/ soc2011/shm/sys/modules/random/Makefile soc2011/shm/sys/modules/rc/ soc2011/shm/sys/modules/rc/Makefile soc2011/shm/sys/modules/rc4/ soc2011/shm/sys/modules/rc4/Makefile soc2011/shm/sys/modules/rdma/ soc2011/shm/sys/modules/rdma/Makefile soc2011/shm/sys/modules/rdma/addr/ soc2011/shm/sys/modules/rdma/addr/Makefile soc2011/shm/sys/modules/rdma/cma/ soc2011/shm/sys/modules/rdma/cma/Makefile soc2011/shm/sys/modules/rdma/core/ soc2011/shm/sys/modules/rdma/core/Makefile soc2011/shm/sys/modules/rdma/iwcm/ soc2011/shm/sys/modules/rdma/iwcm/Makefile soc2011/shm/sys/modules/rdma/krping/ soc2011/shm/sys/modules/rdma/krping/Makefile soc2011/shm/sys/modules/re/ soc2011/shm/sys/modules/re/Makefile soc2011/shm/sys/modules/reiserfs/ soc2011/shm/sys/modules/reiserfs/Makefile soc2011/shm/sys/modules/rl/ soc2011/shm/sys/modules/rl/Makefile soc2011/shm/sys/modules/rndtest/ soc2011/shm/sys/modules/rndtest/Makefile soc2011/shm/sys/modules/rp/ soc2011/shm/sys/modules/rp/Makefile soc2011/shm/sys/modules/runfw/ soc2011/shm/sys/modules/runfw/Makefile soc2011/shm/sys/modules/s3/ soc2011/shm/sys/modules/s3/Makefile soc2011/shm/sys/modules/safe/ soc2011/shm/sys/modules/safe/Makefile soc2011/shm/sys/modules/sbni/ soc2011/shm/sys/modules/sbni/Makefile soc2011/shm/sys/modules/scc/ soc2011/shm/sys/modules/scc/Makefile soc2011/shm/sys/modules/scd/ soc2011/shm/sys/modules/scd/Makefile soc2011/shm/sys/modules/scsi_low/ soc2011/shm/sys/modules/scsi_low/Makefile soc2011/shm/sys/modules/sdhci/ soc2011/shm/sys/modules/sdhci/Makefile soc2011/shm/sys/modules/sem/ soc2011/shm/sys/modules/sem/Makefile soc2011/shm/sys/modules/sf/ soc2011/shm/sys/modules/sf/Makefile soc2011/shm/sys/modules/sge/ soc2011/shm/sys/modules/sge/Makefile soc2011/shm/sys/modules/siba_bwn/ soc2011/shm/sys/modules/siba_bwn/Makefile soc2011/shm/sys/modules/siis/ soc2011/shm/sys/modules/siis/Makefile soc2011/shm/sys/modules/sio/ soc2011/shm/sys/modules/sio/Makefile soc2011/shm/sys/modules/sis/ soc2011/shm/sys/modules/sis/Makefile soc2011/shm/sys/modules/sk/ soc2011/shm/sys/modules/sk/Makefile soc2011/shm/sys/modules/smbfs/ soc2011/shm/sys/modules/smbfs/Makefile soc2011/shm/sys/modules/sn/ soc2011/shm/sys/modules/sn/Makefile soc2011/shm/sys/modules/snc/ soc2011/shm/sys/modules/snc/Makefile soc2011/shm/sys/modules/snp/ soc2011/shm/sys/modules/snp/Makefile soc2011/shm/sys/modules/sound/ soc2011/shm/sys/modules/sound/Makefile soc2011/shm/sys/modules/sound/Makefile.inc soc2011/shm/sys/modules/sound/driver/ soc2011/shm/sys/modules/sound/driver/Makefile soc2011/shm/sys/modules/sound/driver/Makefile.inc soc2011/shm/sys/modules/sound/driver/ad1816/ soc2011/shm/sys/modules/sound/driver/ad1816/Makefile soc2011/shm/sys/modules/sound/driver/ai2s/ soc2011/shm/sys/modules/sound/driver/ai2s/Makefile soc2011/shm/sys/modules/sound/driver/als4000/ soc2011/shm/sys/modules/sound/driver/als4000/Makefile soc2011/shm/sys/modules/sound/driver/atiixp/ soc2011/shm/sys/modules/sound/driver/atiixp/Makefile soc2011/shm/sys/modules/sound/driver/audiocs/ soc2011/shm/sys/modules/sound/driver/audiocs/Makefile soc2011/shm/sys/modules/sound/driver/cmi/ soc2011/shm/sys/modules/sound/driver/cmi/Makefile soc2011/shm/sys/modules/sound/driver/cs4281/ soc2011/shm/sys/modules/sound/driver/cs4281/Makefile soc2011/shm/sys/modules/sound/driver/csa/ soc2011/shm/sys/modules/sound/driver/csa/Makefile soc2011/shm/sys/modules/sound/driver/davbus/ soc2011/shm/sys/modules/sound/driver/davbus/Makefile soc2011/shm/sys/modules/sound/driver/driver/ soc2011/shm/sys/modules/sound/driver/driver/Makefile soc2011/shm/sys/modules/sound/driver/ds1/ soc2011/shm/sys/modules/sound/driver/ds1/Makefile soc2011/shm/sys/modules/sound/driver/emu10k1/ soc2011/shm/sys/modules/sound/driver/emu10k1/Makefile soc2011/shm/sys/modules/sound/driver/emu10kx/ soc2011/shm/sys/modules/sound/driver/emu10kx/Makefile soc2011/shm/sys/modules/sound/driver/envy24/ soc2011/shm/sys/modules/sound/driver/envy24/Makefile soc2011/shm/sys/modules/sound/driver/envy24ht/ soc2011/shm/sys/modules/sound/driver/envy24ht/Makefile soc2011/shm/sys/modules/sound/driver/es137x/ soc2011/shm/sys/modules/sound/driver/es137x/Makefile soc2011/shm/sys/modules/sound/driver/ess/ soc2011/shm/sys/modules/sound/driver/ess/Makefile soc2011/shm/sys/modules/sound/driver/fm801/ soc2011/shm/sys/modules/sound/driver/fm801/Makefile soc2011/shm/sys/modules/sound/driver/hda/ soc2011/shm/sys/modules/sound/driver/hda/Makefile soc2011/shm/sys/modules/sound/driver/ich/ soc2011/shm/sys/modules/sound/driver/ich/Makefile (contents, props changed) soc2011/shm/sys/modules/sound/driver/maestro/ soc2011/shm/sys/modules/sound/driver/maestro/Makefile soc2011/shm/sys/modules/sound/driver/maestro3/ soc2011/shm/sys/modules/sound/driver/maestro3/Makefile soc2011/shm/sys/modules/sound/driver/mss/ soc2011/shm/sys/modules/sound/driver/mss/Makefile soc2011/shm/sys/modules/sound/driver/neomagic/ soc2011/shm/sys/modules/sound/driver/neomagic/Makefile soc2011/shm/sys/modules/sound/driver/sb16/ soc2011/shm/sys/modules/sound/driver/sb16/Makefile soc2011/shm/sys/modules/sound/driver/sb8/ soc2011/shm/sys/modules/sound/driver/sb8/Makefile soc2011/shm/sys/modules/sound/driver/sbc/ soc2011/shm/sys/modules/sound/driver/sbc/Makefile soc2011/shm/sys/modules/sound/driver/solo/ soc2011/shm/sys/modules/sound/driver/solo/Makefile soc2011/shm/sys/modules/sound/driver/spicds/ soc2011/shm/sys/modules/sound/driver/spicds/Makefile soc2011/shm/sys/modules/sound/driver/t4dwave/ soc2011/shm/sys/modules/sound/driver/t4dwave/Makefile soc2011/shm/sys/modules/sound/driver/uaudio/ soc2011/shm/sys/modules/sound/driver/uaudio/Makefile soc2011/shm/sys/modules/sound/driver/via8233/ soc2011/shm/sys/modules/sound/driver/via8233/Makefile soc2011/shm/sys/modules/sound/driver/via82c686/ soc2011/shm/sys/modules/sound/driver/via82c686/Makefile soc2011/shm/sys/modules/sound/driver/vibes/ soc2011/shm/sys/modules/sound/driver/vibes/Makefile soc2011/shm/sys/modules/sound/sound/ soc2011/shm/sys/modules/sound/sound/Makefile soc2011/shm/sys/modules/speaker/ soc2011/shm/sys/modules/speaker/Makefile soc2011/shm/sys/modules/splash/ soc2011/shm/sys/modules/splash/Makefile soc2011/shm/sys/modules/splash/Makefile.inc soc2011/shm/sys/modules/splash/bmp/ soc2011/shm/sys/modules/splash/bmp/Makefile soc2011/shm/sys/modules/splash/pcx/ soc2011/shm/sys/modules/splash/pcx/Makefile soc2011/shm/sys/modules/sppp/ soc2011/shm/sys/modules/sppp/Makefile soc2011/shm/sys/modules/ste/ soc2011/shm/sys/modules/ste/Makefile soc2011/shm/sys/modules/stg/ soc2011/shm/sys/modules/stg/Makefile soc2011/shm/sys/modules/stge/ soc2011/shm/sys/modules/stge/Makefile soc2011/shm/sys/modules/streams/ soc2011/shm/sys/modules/streams/Makefile soc2011/shm/sys/modules/svr4/ soc2011/shm/sys/modules/svr4/Makefile soc2011/shm/sys/modules/svr4/README soc2011/shm/sys/modules/svr4/TO-DO soc2011/shm/sys/modules/sym/ soc2011/shm/sys/modules/sym/Makefile soc2011/shm/sys/modules/syscons/ soc2011/shm/sys/modules/syscons/Makefile soc2011/shm/sys/modules/syscons/Makefile.inc soc2011/shm/sys/modules/syscons/apm/ soc2011/shm/sys/modules/syscons/apm/Makefile soc2011/shm/sys/modules/syscons/blank/ soc2011/shm/sys/modules/syscons/blank/Makefile soc2011/shm/sys/modules/syscons/daemon/ soc2011/shm/sys/modules/syscons/daemon/Makefile soc2011/shm/sys/modules/syscons/dragon/ soc2011/shm/sys/modules/syscons/dragon/Makefile soc2011/shm/sys/modules/syscons/fade/ soc2011/shm/sys/modules/syscons/fade/Makefile soc2011/shm/sys/modules/syscons/fire/ soc2011/shm/sys/modules/syscons/fire/Makefile soc2011/shm/sys/modules/syscons/green/ soc2011/shm/sys/modules/syscons/green/Makefile soc2011/shm/sys/modules/syscons/logo/ soc2011/shm/sys/modules/syscons/logo/Makefile soc2011/shm/sys/modules/syscons/rain/ soc2011/shm/sys/modules/syscons/rain/Makefile soc2011/shm/sys/modules/syscons/snake/ soc2011/shm/sys/modules/syscons/snake/Makefile soc2011/shm/sys/modules/syscons/star/ soc2011/shm/sys/modules/syscons/star/Makefile soc2011/shm/sys/modules/syscons/warp/ soc2011/shm/sys/modules/syscons/warp/Makefile soc2011/shm/sys/modules/sysvipc/ soc2011/shm/sys/modules/sysvipc/Makefile soc2011/shm/sys/modules/sysvipc/Makefile.inc soc2011/shm/sys/modules/sysvipc/sysvmsg/ soc2011/shm/sys/modules/sysvipc/sysvmsg/Makefile soc2011/shm/sys/modules/sysvipc/sysvsem/ soc2011/shm/sys/modules/sysvipc/sysvsem/Makefile soc2011/shm/sys/modules/sysvipc/sysvshm/ soc2011/shm/sys/modules/sysvipc/sysvshm/Makefile soc2011/shm/sys/modules/ti/ soc2011/shm/sys/modules/ti/Makefile soc2011/shm/sys/modules/tl/ soc2011/shm/sys/modules/tl/Makefile soc2011/shm/sys/modules/tmpfs/ soc2011/shm/sys/modules/tmpfs/Makefile soc2011/shm/sys/modules/trm/ soc2011/shm/sys/modules/trm/Makefile soc2011/shm/sys/modules/twa/ soc2011/shm/sys/modules/twa/Makefile soc2011/shm/sys/modules/twe/ soc2011/shm/sys/modules/twe/Makefile soc2011/shm/sys/modules/tx/ soc2011/shm/sys/modules/tx/Makefile soc2011/shm/sys/modules/txp/ soc2011/shm/sys/modules/txp/Makefile soc2011/shm/sys/modules/uart/ soc2011/shm/sys/modules/uart/Makefile soc2011/shm/sys/modules/ubsec/ soc2011/shm/sys/modules/ubsec/Makefile soc2011/shm/sys/modules/ubser/ soc2011/shm/sys/modules/ubser/Makefile soc2011/shm/sys/modules/uchcom/ soc2011/shm/sys/modules/uchcom/Makefile soc2011/shm/sys/modules/ucycom/ soc2011/shm/sys/modules/ucycom/Makefile soc2011/shm/sys/modules/udf/ soc2011/shm/sys/modules/udf/Makefile soc2011/shm/sys/modules/udf_iconv/ soc2011/shm/sys/modules/udf_iconv/Makefile soc2011/shm/sys/modules/ufs/ soc2011/shm/sys/modules/ufs/Makefile soc2011/shm/sys/modules/unionfs/ soc2011/shm/sys/modules/unionfs/Makefile soc2011/shm/sys/modules/usb/ soc2011/shm/sys/modules/usb/Makefile soc2011/shm/sys/modules/usb/at91dci/ soc2011/shm/sys/modules/usb/at91dci/Makefile soc2011/shm/sys/modules/usb/atmegadci/ soc2011/shm/sys/modules/usb/atmegadci/Makefile soc2011/shm/sys/modules/usb/atp/ soc2011/shm/sys/modules/usb/atp/Makefile soc2011/shm/sys/modules/usb/aue/ soc2011/shm/sys/modules/usb/aue/Makefile soc2011/shm/sys/modules/usb/axe/ soc2011/shm/sys/modules/usb/axe/Makefile soc2011/shm/sys/modules/usb/cdce/ soc2011/shm/sys/modules/usb/cdce/Makefile soc2011/shm/sys/modules/usb/cue/ soc2011/shm/sys/modules/usb/cue/Makefile soc2011/shm/sys/modules/usb/ehci/ soc2011/shm/sys/modules/usb/ehci/Makefile soc2011/shm/sys/modules/usb/kue/ soc2011/shm/sys/modules/usb/kue/Makefile soc2011/shm/sys/modules/usb/musb/ soc2011/shm/sys/modules/usb/musb/Makefile soc2011/shm/sys/modules/usb/ohci/ soc2011/shm/sys/modules/usb/ohci/Makefile soc2011/shm/sys/modules/usb/quirk/ soc2011/shm/sys/modules/usb/quirk/Makefile soc2011/shm/sys/modules/usb/rue/ soc2011/shm/sys/modules/usb/rue/Makefile soc2011/shm/sys/modules/usb/rum/ soc2011/shm/sys/modules/usb/rum/Makefile soc2011/shm/sys/modules/usb/run/ soc2011/shm/sys/modules/usb/run/Makefile soc2011/shm/sys/modules/usb/template/ soc2011/shm/sys/modules/usb/template/Makefile soc2011/shm/sys/modules/usb/u3g/ soc2011/shm/sys/modules/usb/u3g/Makefile soc2011/shm/sys/modules/usb/uark/ soc2011/shm/sys/modules/usb/uark/Makefile soc2011/shm/sys/modules/usb/uath/ soc2011/shm/sys/modules/usb/uath/Makefile soc2011/shm/sys/modules/usb/ubsa/ soc2011/shm/sys/modules/usb/ubsa/Makefile soc2011/shm/sys/modules/usb/ubser/ soc2011/shm/sys/modules/usb/ubser/Makefile soc2011/shm/sys/modules/usb/uchcom/ soc2011/shm/sys/modules/usb/uchcom/Makefile soc2011/shm/sys/modules/usb/ucom/ soc2011/shm/sys/modules/usb/ucom/Makefile soc2011/shm/sys/modules/usb/ucycom/ soc2011/shm/sys/modules/usb/ucycom/Makefile soc2011/shm/sys/modules/usb/udav/ soc2011/shm/sys/modules/usb/udav/Makefile soc2011/shm/sys/modules/usb/udbp/ soc2011/shm/sys/modules/usb/udbp/Makefile soc2011/shm/sys/modules/usb/uep/ soc2011/shm/sys/modules/usb/uep/Makefile soc2011/shm/sys/modules/usb/uether/ soc2011/shm/sys/modules/usb/uether/Makefile soc2011/shm/sys/modules/usb/ufm/ soc2011/shm/sys/modules/usb/ufm/Makefile soc2011/shm/sys/modules/usb/ufoma/ soc2011/shm/sys/modules/usb/ufoma/Makefile soc2011/shm/sys/modules/usb/uftdi/ soc2011/shm/sys/modules/usb/uftdi/Makefile soc2011/shm/sys/modules/usb/ugensa/ soc2011/shm/sys/modules/usb/ugensa/Makefile soc2011/shm/sys/modules/usb/uhci/ soc2011/shm/sys/modules/usb/uhci/Makefile soc2011/shm/sys/modules/usb/uhid/ soc2011/shm/sys/modules/usb/uhid/Makefile soc2011/shm/sys/modules/usb/uhso/ soc2011/shm/sys/modules/usb/uhso/Makefile soc2011/shm/sys/modules/usb/uipaq/ soc2011/shm/sys/modules/usb/uipaq/Makefile soc2011/shm/sys/modules/usb/ukbd/ soc2011/shm/sys/modules/usb/ukbd/Makefile soc2011/shm/sys/modules/usb/ulpt/ soc2011/shm/sys/modules/usb/ulpt/Makefile soc2011/shm/sys/modules/usb/umass/ soc2011/shm/sys/modules/usb/umass/Makefile soc2011/shm/sys/modules/usb/umct/ soc2011/shm/sys/modules/usb/umct/Makefile soc2011/shm/sys/modules/usb/umodem/ soc2011/shm/sys/modules/usb/umodem/Makefile soc2011/shm/sys/modules/usb/umoscom/ soc2011/shm/sys/modules/usb/umoscom/Makefile soc2011/shm/sys/modules/usb/ums/ soc2011/shm/sys/modules/usb/ums/Makefile soc2011/shm/sys/modules/usb/upgt/ soc2011/shm/sys/modules/usb/upgt/Makefile soc2011/shm/sys/modules/usb/uplcom/ soc2011/shm/sys/modules/usb/uplcom/Makefile soc2011/shm/sys/modules/usb/ural/ soc2011/shm/sys/modules/usb/ural/Makefile soc2011/shm/sys/modules/usb/urio/ soc2011/shm/sys/modules/usb/urio/Makefile soc2011/shm/sys/modules/usb/urtw/ soc2011/shm/sys/modules/usb/urtw/Makefile soc2011/shm/sys/modules/usb/usb/ soc2011/shm/sys/modules/usb/usb/Makefile soc2011/shm/sys/modules/usb/usfs/ soc2011/shm/sys/modules/usb/usfs/Makefile soc2011/shm/sys/modules/usb/uslcom/ soc2011/shm/sys/modules/usb/uslcom/Makefile soc2011/shm/sys/modules/usb/uss820dci/ soc2011/shm/sys/modules/usb/uss820dci/Makefile soc2011/shm/sys/modules/usb/uvisor/ soc2011/shm/sys/modules/usb/uvisor/Makefile soc2011/shm/sys/modules/usb/uvscom/ soc2011/shm/sys/modules/usb/uvscom/Makefile soc2011/shm/sys/modules/usb/zyd/ soc2011/shm/sys/modules/usb/zyd/Makefile soc2011/shm/sys/modules/utopia/ soc2011/shm/sys/modules/utopia/Makefile soc2011/shm/sys/modules/vesa/ soc2011/shm/sys/modules/vesa/Makefile soc2011/shm/sys/modules/vge/ soc2011/shm/sys/modules/vge/Makefile soc2011/shm/sys/modules/vkbd/ soc2011/shm/sys/modules/vkbd/Makefile soc2011/shm/sys/modules/vpo/ soc2011/shm/sys/modules/vpo/Makefile soc2011/shm/sys/modules/vr/ soc2011/shm/sys/modules/vr/Makefile soc2011/shm/sys/modules/vx/ soc2011/shm/sys/modules/vx/Makefile soc2011/shm/sys/modules/wb/ soc2011/shm/sys/modules/wb/Makefile soc2011/shm/sys/modules/wi/ soc2011/shm/sys/modules/wi/Makefile soc2011/shm/sys/modules/wlan/ soc2011/shm/sys/modules/wlan/Makefile soc2011/shm/sys/modules/wlan_acl/ soc2011/shm/sys/modules/wlan_acl/Makefile soc2011/shm/sys/modules/wlan_amrr/ soc2011/shm/sys/modules/wlan_amrr/Makefile soc2011/shm/sys/modules/wlan_ccmp/ soc2011/shm/sys/modules/wlan_ccmp/Makefile soc2011/shm/sys/modules/wlan_rssadapt/ soc2011/shm/sys/modules/wlan_rssadapt/Makefile soc2011/shm/sys/modules/wlan_tkip/ soc2011/shm/sys/modules/wlan_tkip/Makefile soc2011/shm/sys/modules/wlan_wep/ soc2011/shm/sys/modules/wlan_wep/Makefile soc2011/shm/sys/modules/wlan_xauth/ soc2011/shm/sys/modules/wlan_xauth/Makefile soc2011/shm/sys/modules/wpi/ soc2011/shm/sys/modules/wpi/Makefile soc2011/shm/sys/modules/wpifw/ soc2011/shm/sys/modules/wpifw/Makefile soc2011/shm/sys/modules/x86bios/ soc2011/shm/sys/modules/x86bios/Makefile soc2011/shm/sys/modules/x86emu/ soc2011/shm/sys/modules/x86emu/Makefile soc2011/shm/sys/modules/xe/ soc2011/shm/sys/modules/xe/Makefile soc2011/shm/sys/modules/xfs/ soc2011/shm/sys/modules/xfs/Makefile soc2011/shm/sys/modules/xl/ soc2011/shm/sys/modules/xl/Makefile soc2011/shm/sys/modules/zfs/ soc2011/shm/sys/modules/zfs/Makefile soc2011/shm/sys/modules/zfs/Makefile.orig soc2011/shm/sys/modules/zlib/ soc2011/shm/sys/modules/zlib/Makefile soc2011/shm/sys/net/ soc2011/shm/sys/net/bpf.c soc2011/shm/sys/net/bpf.h soc2011/shm/sys/net/bpf_buffer.c soc2011/shm/sys/net/bpf_buffer.h soc2011/shm/sys/net/bpf_filter.c soc2011/shm/sys/net/bpf_jitter.c soc2011/shm/sys/net/bpf_jitter.h soc2011/shm/sys/net/bpf_zerocopy.c soc2011/shm/sys/net/bpf_zerocopy.h soc2011/shm/sys/net/bpfdesc.h soc2011/shm/sys/net/bridgestp.c soc2011/shm/sys/net/bridgestp.h soc2011/shm/sys/net/ethernet.h soc2011/shm/sys/net/fddi.h soc2011/shm/sys/net/firewire.h soc2011/shm/sys/net/flowtable.c soc2011/shm/sys/net/flowtable.h soc2011/shm/sys/net/ieee8023ad_lacp.c soc2011/shm/sys/net/ieee8023ad_lacp.h soc2011/shm/sys/net/if.c soc2011/shm/sys/net/if.h soc2011/shm/sys/net/if_arc.h soc2011/shm/sys/net/if_arcsubr.c soc2011/shm/sys/net/if_arp.h soc2011/shm/sys/net/if_atm.h soc2011/shm/sys/net/if_atmsubr.c soc2011/shm/sys/net/if_bridge.c soc2011/shm/sys/net/if_bridgevar.h soc2011/shm/sys/net/if_clone.c soc2011/shm/sys/net/if_clone.h soc2011/shm/sys/net/if_dead.c soc2011/shm/sys/net/if_disc.c soc2011/shm/sys/net/if_dl.h soc2011/shm/sys/net/if_edsc.c soc2011/shm/sys/net/if_ef.c soc2011/shm/sys/net/if_enc.c soc2011/shm/sys/net/if_enc.h soc2011/shm/sys/net/if_epair.c soc2011/shm/sys/net/if_ethersubr.c soc2011/shm/sys/net/if_faith.c soc2011/shm/sys/net/if_fddisubr.c soc2011/shm/sys/net/if_fwsubr.c soc2011/shm/sys/net/if_gif.c soc2011/shm/sys/net/if_gif.h soc2011/shm/sys/net/if_gre.c soc2011/shm/sys/net/if_gre.h soc2011/shm/sys/net/if_iso88025subr.c soc2011/shm/sys/net/if_lagg.c soc2011/shm/sys/net/if_lagg.h soc2011/shm/sys/net/if_llatbl.c soc2011/shm/sys/net/if_llatbl.h soc2011/shm/sys/net/if_llc.h soc2011/shm/sys/net/if_loop.c soc2011/shm/sys/net/if_media.c soc2011/shm/sys/net/if_media.h soc2011/shm/sys/net/if_mib.c soc2011/shm/sys/net/if_mib.h soc2011/shm/sys/net/if_sppp.h soc2011/shm/sys/net/if_spppfr.c soc2011/shm/sys/net/if_spppsubr.c soc2011/shm/sys/net/if_stf.c soc2011/shm/sys/net/if_stf.h soc2011/shm/sys/net/if_tap.c soc2011/shm/sys/net/if_tap.h soc2011/shm/sys/net/if_tapvar.h soc2011/shm/sys/net/if_tun.c soc2011/shm/sys/net/if_tun.h soc2011/shm/sys/net/if_types.h soc2011/shm/sys/net/if_var.h soc2011/shm/sys/net/if_vlan.c soc2011/shm/sys/net/if_vlan_var.h soc2011/shm/sys/net/iso88025.h soc2011/shm/sys/net/netisr.c soc2011/shm/sys/net/netisr.h soc2011/shm/sys/net/pfil.c soc2011/shm/sys/net/pfil.h soc2011/shm/sys/net/pfkeyv2.h soc2011/shm/sys/net/ppp_defs.h soc2011/shm/sys/net/radix.c soc2011/shm/sys/net/radix.h soc2011/shm/sys/net/radix_mpath.c soc2011/shm/sys/net/radix_mpath.h soc2011/shm/sys/net/raw_cb.c soc2011/shm/sys/net/raw_cb.h soc2011/shm/sys/net/raw_usrreq.c soc2011/shm/sys/net/route.c soc2011/shm/sys/net/route.h soc2011/shm/sys/net/rtsock.c soc2011/shm/sys/net/slcompress.c soc2011/shm/sys/net/slcompress.h soc2011/shm/sys/net/vnet.c soc2011/shm/sys/net/vnet.h soc2011/shm/sys/net/zlib.c soc2011/shm/sys/net/zlib.h soc2011/shm/sys/net80211/ soc2011/shm/sys/net80211/_ieee80211.h soc2011/shm/sys/net80211/ieee80211.c soc2011/shm/sys/net80211/ieee80211.h soc2011/shm/sys/net80211/ieee80211_acl.c soc2011/shm/sys/net80211/ieee80211_action.c soc2011/shm/sys/net80211/ieee80211_action.h soc2011/shm/sys/net80211/ieee80211_adhoc.c soc2011/shm/sys/net80211/ieee80211_adhoc.h soc2011/shm/sys/net80211/ieee80211_ageq.c soc2011/shm/sys/net80211/ieee80211_ageq.h soc2011/shm/sys/net80211/ieee80211_amrr.c soc2011/shm/sys/net80211/ieee80211_amrr.h soc2011/shm/sys/net80211/ieee80211_crypto.c soc2011/shm/sys/net80211/ieee80211_crypto.h soc2011/shm/sys/net80211/ieee80211_crypto_ccmp.c soc2011/shm/sys/net80211/ieee80211_crypto_none.c soc2011/shm/sys/net80211/ieee80211_crypto_tkip.c soc2011/shm/sys/net80211/ieee80211_crypto_wep.c soc2011/shm/sys/net80211/ieee80211_ddb.c soc2011/shm/sys/net80211/ieee80211_dfs.c soc2011/shm/sys/net80211/ieee80211_dfs.h soc2011/shm/sys/net80211/ieee80211_freebsd.c soc2011/shm/sys/net80211/ieee80211_freebsd.h soc2011/shm/sys/net80211/ieee80211_hostap.c soc2011/shm/sys/net80211/ieee80211_hostap.h soc2011/shm/sys/net80211/ieee80211_ht.c soc2011/shm/sys/net80211/ieee80211_ht.h soc2011/shm/sys/net80211/ieee80211_hwmp.c soc2011/shm/sys/net80211/ieee80211_input.c soc2011/shm/sys/net80211/ieee80211_input.h soc2011/shm/sys/net80211/ieee80211_ioctl.c soc2011/shm/sys/net80211/ieee80211_ioctl.h soc2011/shm/sys/net80211/ieee80211_mesh.c soc2011/shm/sys/net80211/ieee80211_mesh.h soc2011/shm/sys/net80211/ieee80211_monitor.c soc2011/shm/sys/net80211/ieee80211_monitor.h soc2011/shm/sys/net80211/ieee80211_node.c soc2011/shm/sys/net80211/ieee80211_node.h soc2011/shm/sys/net80211/ieee80211_output.c soc2011/shm/sys/net80211/ieee80211_phy.c soc2011/shm/sys/net80211/ieee80211_phy.h soc2011/shm/sys/net80211/ieee80211_power.c soc2011/shm/sys/net80211/ieee80211_power.h soc2011/shm/sys/net80211/ieee80211_proto.c soc2011/shm/sys/net80211/ieee80211_proto.h soc2011/shm/sys/net80211/ieee80211_radiotap.c soc2011/shm/sys/net80211/ieee80211_radiotap.h soc2011/shm/sys/net80211/ieee80211_ratectl.c soc2011/shm/sys/net80211/ieee80211_ratectl.h soc2011/shm/sys/net80211/ieee80211_regdomain.c soc2011/shm/sys/net80211/ieee80211_regdomain.h soc2011/shm/sys/net80211/ieee80211_rssadapt.c soc2011/shm/sys/net80211/ieee80211_rssadapt.h soc2011/shm/sys/net80211/ieee80211_scan.c soc2011/shm/sys/net80211/ieee80211_scan.h soc2011/shm/sys/net80211/ieee80211_scan_sta.c soc2011/shm/sys/net80211/ieee80211_sta.c soc2011/shm/sys/net80211/ieee80211_sta.h soc2011/shm/sys/net80211/ieee80211_superg.c soc2011/shm/sys/net80211/ieee80211_superg.h soc2011/shm/sys/net80211/ieee80211_tdma.c soc2011/shm/sys/net80211/ieee80211_tdma.h soc2011/shm/sys/net80211/ieee80211_var.h soc2011/shm/sys/net80211/ieee80211_wds.c soc2011/shm/sys/net80211/ieee80211_wds.h soc2011/shm/sys/net80211/ieee80211_xauth.c soc2011/shm/sys/netatalk/ soc2011/shm/sys/netatalk/COPYRIGHT soc2011/shm/sys/netatalk/aarp.c soc2011/shm/sys/netatalk/aarp.h soc2011/shm/sys/netatalk/at.h soc2011/shm/sys/netatalk/at_control.c soc2011/shm/sys/netatalk/at_extern.h soc2011/shm/sys/netatalk/at_proto.c soc2011/shm/sys/netatalk/at_rmx.c soc2011/shm/sys/netatalk/at_var.h soc2011/shm/sys/netatalk/ddp.h soc2011/shm/sys/netatalk/ddp_input.c soc2011/shm/sys/netatalk/ddp_output.c soc2011/shm/sys/netatalk/ddp_pcb.c soc2011/shm/sys/netatalk/ddp_pcb.h soc2011/shm/sys/netatalk/ddp_usrreq.c soc2011/shm/sys/netatalk/ddp_var.h soc2011/shm/sys/netatalk/endian.h soc2011/shm/sys/netatalk/phase2.h soc2011/shm/sys/netgraph/ soc2011/shm/sys/netgraph/NOTES soc2011/shm/sys/netgraph/atm/ soc2011/shm/sys/netgraph/atm/ccatm/ soc2011/shm/sys/netgraph/atm/ccatm/ng_ccatm.c soc2011/shm/sys/netgraph/atm/ccatm/ng_ccatm_cust.h soc2011/shm/sys/netgraph/atm/ng_atm.c soc2011/shm/sys/netgraph/atm/ng_atm.h soc2011/shm/sys/netgraph/atm/ng_ccatm.h soc2011/shm/sys/netgraph/atm/ng_sscfu.h soc2011/shm/sys/netgraph/atm/ng_sscop.h soc2011/shm/sys/netgraph/atm/ng_uni.h soc2011/shm/sys/netgraph/atm/ngatmbase.c soc2011/shm/sys/netgraph/atm/ngatmbase.h soc2011/shm/sys/netgraph/atm/sscfu/ soc2011/shm/sys/netgraph/atm/sscfu/ng_sscfu.c soc2011/shm/sys/netgraph/atm/sscfu/ng_sscfu_cust.h soc2011/shm/sys/netgraph/atm/sscop/ soc2011/shm/sys/netgraph/atm/sscop/ng_sscop.c soc2011/shm/sys/netgraph/atm/sscop/ng_sscop_cust.h soc2011/shm/sys/netgraph/atm/uni/ soc2011/shm/sys/netgraph/atm/uni/ng_uni.c soc2011/shm/sys/netgraph/atm/uni/ng_uni_cust.h soc2011/shm/sys/netgraph/bluetooth/ soc2011/shm/sys/netgraph/bluetooth/common/ soc2011/shm/sys/netgraph/bluetooth/common/ng_bluetooth.c soc2011/shm/sys/netgraph/bluetooth/drivers/ soc2011/shm/sys/netgraph/bluetooth/drivers/bt3c/ soc2011/shm/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c soc2011/shm/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_var.h soc2011/shm/sys/netgraph/bluetooth/drivers/h4/ soc2011/shm/sys/netgraph/bluetooth/drivers/h4/TODO soc2011/shm/sys/netgraph/bluetooth/drivers/h4/ng_h4.c soc2011/shm/sys/netgraph/bluetooth/drivers/h4/ng_h4_prse.h soc2011/shm/sys/netgraph/bluetooth/drivers/h4/ng_h4_var.h soc2011/shm/sys/netgraph/bluetooth/drivers/ubt/ soc2011/shm/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c soc2011/shm/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h soc2011/shm/sys/netgraph/bluetooth/drivers/ubtbcmfw/ soc2011/shm/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c soc2011/shm/sys/netgraph/bluetooth/hci/ soc2011/shm/sys/netgraph/bluetooth/hci/TODO soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_cmds.c soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_cmds.h soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_evnt.c soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_evnt.h soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_main.c soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_misc.c soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_misc.h soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_prse.h soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_ulpi.h soc2011/shm/sys/netgraph/bluetooth/hci/ng_hci_var.h soc2011/shm/sys/netgraph/bluetooth/include/ soc2011/shm/sys/netgraph/bluetooth/include/ng_bluetooth.h soc2011/shm/sys/netgraph/bluetooth/include/ng_bt3c.h soc2011/shm/sys/netgraph/bluetooth/include/ng_btsocket.h soc2011/shm/sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h soc2011/shm/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h soc2011/shm/sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h soc2011/shm/sys/netgraph/bluetooth/include/ng_btsocket_sco.h soc2011/shm/sys/netgraph/bluetooth/include/ng_h4.h soc2011/shm/sys/netgraph/bluetooth/include/ng_hci.h soc2011/shm/sys/netgraph/bluetooth/include/ng_l2cap.h soc2011/shm/sys/netgraph/bluetooth/include/ng_ubt.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ soc2011/shm/sys/netgraph/bluetooth/l2cap/TODO soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_prse.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.h soc2011/shm/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h soc2011/shm/sys/netgraph/bluetooth/socket/ soc2011/shm/sys/netgraph/bluetooth/socket/TODO soc2011/shm/sys/netgraph/bluetooth/socket/ng_btsocket.c soc2011/shm/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c soc2011/shm/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c soc2011/shm/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c soc2011/shm/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c soc2011/shm/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c soc2011/shm/sys/netgraph/netflow/ soc2011/shm/sys/netgraph/netflow/netflow.c soc2011/shm/sys/netgraph/netflow/netflow.h soc2011/shm/sys/netgraph/netflow/ng_netflow.c soc2011/shm/sys/netgraph/netflow/ng_netflow.h soc2011/shm/sys/netgraph/netgraph.h soc2011/shm/sys/netgraph/ng_UI.c soc2011/shm/sys/netgraph/ng_UI.h soc2011/shm/sys/netgraph/ng_async.c soc2011/shm/sys/netgraph/ng_async.h soc2011/shm/sys/netgraph/ng_atmllc.c soc2011/shm/sys/netgraph/ng_atmllc.h soc2011/shm/sys/netgraph/ng_base.c soc2011/shm/sys/netgraph/ng_bpf.c soc2011/shm/sys/netgraph/ng_bpf.h soc2011/shm/sys/netgraph/ng_bridge.c soc2011/shm/sys/netgraph/ng_bridge.h soc2011/shm/sys/netgraph/ng_car.c soc2011/shm/sys/netgraph/ng_car.h soc2011/shm/sys/netgraph/ng_cisco.c soc2011/shm/sys/netgraph/ng_cisco.h soc2011/shm/sys/netgraph/ng_deflate.c soc2011/shm/sys/netgraph/ng_deflate.h soc2011/shm/sys/netgraph/ng_device.c soc2011/shm/sys/netgraph/ng_device.h soc2011/shm/sys/netgraph/ng_echo.c soc2011/shm/sys/netgraph/ng_echo.h soc2011/shm/sys/netgraph/ng_eiface.c soc2011/shm/sys/netgraph/ng_eiface.h soc2011/shm/sys/netgraph/ng_etf.c soc2011/shm/sys/netgraph/ng_etf.h soc2011/shm/sys/netgraph/ng_ether.c soc2011/shm/sys/netgraph/ng_ether.h soc2011/shm/sys/netgraph/ng_ether_echo.c soc2011/shm/sys/netgraph/ng_ether_echo.h soc2011/shm/sys/netgraph/ng_fec.c soc2011/shm/sys/netgraph/ng_fec.h soc2011/shm/sys/netgraph/ng_frame_relay.c soc2011/shm/sys/netgraph/ng_frame_relay.h soc2011/shm/sys/netgraph/ng_gif.c soc2011/shm/sys/netgraph/ng_gif.h soc2011/shm/sys/netgraph/ng_gif_demux.c soc2011/shm/sys/netgraph/ng_gif_demux.h soc2011/shm/sys/netgraph/ng_hole.c soc2011/shm/sys/netgraph/ng_hole.h soc2011/shm/sys/netgraph/ng_hub.c soc2011/shm/sys/netgraph/ng_hub.h soc2011/shm/sys/netgraph/ng_iface.c soc2011/shm/sys/netgraph/ng_iface.h soc2011/shm/sys/netgraph/ng_ip_input.c soc2011/shm/sys/netgraph/ng_ip_input.h soc2011/shm/sys/netgraph/ng_ipfw.c soc2011/shm/sys/netgraph/ng_ipfw.h soc2011/shm/sys/netgraph/ng_ksocket.c soc2011/shm/sys/netgraph/ng_ksocket.h soc2011/shm/sys/netgraph/ng_l2tp.c soc2011/shm/sys/netgraph/ng_l2tp.h soc2011/shm/sys/netgraph/ng_lmi.c soc2011/shm/sys/netgraph/ng_lmi.h soc2011/shm/sys/netgraph/ng_message.h soc2011/shm/sys/netgraph/ng_mppc.c soc2011/shm/sys/netgraph/ng_mppc.h soc2011/shm/sys/netgraph/ng_nat.c soc2011/shm/sys/netgraph/ng_nat.h soc2011/shm/sys/netgraph/ng_one2many.c soc2011/shm/sys/netgraph/ng_one2many.h soc2011/shm/sys/netgraph/ng_parse.c soc2011/shm/sys/netgraph/ng_parse.h soc2011/shm/sys/netgraph/ng_pipe.c soc2011/shm/sys/netgraph/ng_pipe.h soc2011/shm/sys/netgraph/ng_ppp.c soc2011/shm/sys/netgraph/ng_ppp.h soc2011/shm/sys/netgraph/ng_pppoe.c soc2011/shm/sys/netgraph/ng_pppoe.h soc2011/shm/sys/netgraph/ng_pptpgre.c soc2011/shm/sys/netgraph/ng_pptpgre.h soc2011/shm/sys/netgraph/ng_pred1.c soc2011/shm/sys/netgraph/ng_pred1.h soc2011/shm/sys/netgraph/ng_rfc1490.c soc2011/shm/sys/netgraph/ng_rfc1490.h soc2011/shm/sys/netgraph/ng_sample.c soc2011/shm/sys/netgraph/ng_sample.h soc2011/shm/sys/netgraph/ng_socket.c soc2011/shm/sys/netgraph/ng_socket.h soc2011/shm/sys/netgraph/ng_socketvar.h soc2011/shm/sys/netgraph/ng_source.c soc2011/shm/sys/netgraph/ng_source.h soc2011/shm/sys/netgraph/ng_split.c soc2011/shm/sys/netgraph/ng_split.h soc2011/shm/sys/netgraph/ng_sppp.c soc2011/shm/sys/netgraph/ng_sppp.h soc2011/shm/sys/netgraph/ng_tag.c soc2011/shm/sys/netgraph/ng_tag.h soc2011/shm/sys/netgraph/ng_tcpmss.c soc2011/shm/sys/netgraph/ng_tcpmss.h soc2011/shm/sys/netgraph/ng_tee.c soc2011/shm/sys/netgraph/ng_tee.h soc2011/shm/sys/netgraph/ng_tty.c soc2011/shm/sys/netgraph/ng_tty.h soc2011/shm/sys/netgraph/ng_vjc.c soc2011/shm/sys/netgraph/ng_vjc.h soc2011/shm/sys/netgraph/ng_vlan.c soc2011/shm/sys/netgraph/ng_vlan.h soc2011/shm/sys/netinet/ soc2011/shm/sys/netinet/accf_data.c soc2011/shm/sys/netinet/accf_dns.c soc2011/shm/sys/netinet/accf_http.c soc2011/shm/sys/netinet/icmp6.h soc2011/shm/sys/netinet/icmp_var.h soc2011/shm/sys/netinet/if_atm.c soc2011/shm/sys/netinet/if_atm.h soc2011/shm/sys/netinet/if_ether.c soc2011/shm/sys/netinet/if_ether.h soc2011/shm/sys/netinet/igmp.c soc2011/shm/sys/netinet/igmp.h soc2011/shm/sys/netinet/igmp_var.h soc2011/shm/sys/netinet/in.c soc2011/shm/sys/netinet/in.h soc2011/shm/sys/netinet/in_cksum.c soc2011/shm/sys/netinet/in_gif.c soc2011/shm/sys/netinet/in_gif.h soc2011/shm/sys/netinet/in_mcast.c soc2011/shm/sys/netinet/in_pcb.c soc2011/shm/sys/netinet/in_pcb.h soc2011/shm/sys/netinet/in_proto.c soc2011/shm/sys/netinet/in_rmx.c soc2011/shm/sys/netinet/in_systm.h soc2011/shm/sys/netinet/in_var.h soc2011/shm/sys/netinet/ip.h soc2011/shm/sys/netinet/ip6.h soc2011/shm/sys/netinet/ip_carp.c soc2011/shm/sys/netinet/ip_carp.h soc2011/shm/sys/netinet/ip_divert.c soc2011/shm/sys/netinet/ip_divert.h soc2011/shm/sys/netinet/ip_dummynet.h soc2011/shm/sys/netinet/ip_ecn.c soc2011/shm/sys/netinet/ip_ecn.h soc2011/shm/sys/netinet/ip_encap.c soc2011/shm/sys/netinet/ip_encap.h soc2011/shm/sys/netinet/ip_fastfwd.c soc2011/shm/sys/netinet/ip_fw.h soc2011/shm/sys/netinet/ip_gre.c soc2011/shm/sys/netinet/ip_gre.h soc2011/shm/sys/netinet/ip_icmp.c soc2011/shm/sys/netinet/ip_icmp.h soc2011/shm/sys/netinet/ip_id.c soc2011/shm/sys/netinet/ip_input.c soc2011/shm/sys/netinet/ip_ipsec.c soc2011/shm/sys/netinet/ip_ipsec.h soc2011/shm/sys/netinet/ip_mroute.c soc2011/shm/sys/netinet/ip_mroute.h soc2011/shm/sys/netinet/ip_options.c soc2011/shm/sys/netinet/ip_options.h soc2011/shm/sys/netinet/ip_output.c soc2011/shm/sys/netinet/ip_var.h soc2011/shm/sys/netinet/ipfw/ soc2011/shm/sys/netinet/ipfw/dn_heap.c soc2011/shm/sys/netinet/ipfw/dn_heap.h soc2011/shm/sys/netinet/ipfw/dn_sched.h soc2011/shm/sys/netinet/ipfw/dn_sched_fifo.c soc2011/shm/sys/netinet/ipfw/dn_sched_prio.c soc2011/shm/sys/netinet/ipfw/dn_sched_qfq.c soc2011/shm/sys/netinet/ipfw/dn_sched_rr.c soc2011/shm/sys/netinet/ipfw/dn_sched_wf2q.c soc2011/shm/sys/netinet/ipfw/dummynet.txt soc2011/shm/sys/netinet/ipfw/ip_dn_glue.c soc2011/shm/sys/netinet/ipfw/ip_dn_io.c soc2011/shm/sys/netinet/ipfw/ip_dn_private.h soc2011/shm/sys/netinet/ipfw/ip_dummynet.c soc2011/shm/sys/netinet/ipfw/ip_fw2.c soc2011/shm/sys/netinet/ipfw/ip_fw_dynamic.c soc2011/shm/sys/netinet/ipfw/ip_fw_log.c soc2011/shm/sys/netinet/ipfw/ip_fw_nat.c soc2011/shm/sys/netinet/ipfw/ip_fw_pfil.c soc2011/shm/sys/netinet/ipfw/ip_fw_private.h soc2011/shm/sys/netinet/ipfw/ip_fw_sockopt.c soc2011/shm/sys/netinet/ipfw/ip_fw_table.c soc2011/shm/sys/netinet/ipfw/test/ soc2011/shm/sys/netinet/ipfw/test/Makefile soc2011/shm/sys/netinet/ipfw/test/dn_test.h soc2011/shm/sys/netinet/ipfw/test/main.c soc2011/shm/sys/netinet/ipfw/test/mylist.h soc2011/shm/sys/netinet/ipfw/test/test_dn_heap.c soc2011/shm/sys/netinet/ipfw/test/test_dn_sched.c soc2011/shm/sys/netinet/libalias/ soc2011/shm/sys/netinet/libalias/HISTORY soc2011/shm/sys/netinet/libalias/alias.c soc2011/shm/sys/netinet/libalias/alias.h soc2011/shm/sys/netinet/libalias/alias_cuseeme.c soc2011/shm/sys/netinet/libalias/alias_db.c soc2011/shm/sys/netinet/libalias/alias_dummy.c soc2011/shm/sys/netinet/libalias/alias_ftp.c soc2011/shm/sys/netinet/libalias/alias_irc.c soc2011/shm/sys/netinet/libalias/alias_local.h soc2011/shm/sys/netinet/libalias/alias_mod.c soc2011/shm/sys/netinet/libalias/alias_mod.h soc2011/shm/sys/netinet/libalias/alias_nbt.c soc2011/shm/sys/netinet/libalias/alias_pptp.c soc2011/shm/sys/netinet/libalias/alias_proxy.c soc2011/shm/sys/netinet/libalias/alias_sctp.c soc2011/shm/sys/netinet/libalias/alias_sctp.h soc2011/shm/sys/netinet/libalias/alias_skinny.c soc2011/shm/sys/netinet/libalias/alias_smedia.c soc2011/shm/sys/netinet/libalias/alias_util.c soc2011/shm/sys/netinet/libalias/libalias.3 soc2011/shm/sys/netinet/pim.h soc2011/shm/sys/netinet/pim_var.h soc2011/shm/sys/netinet/raw_ip.c soc2011/shm/sys/netinet/sctp.h soc2011/shm/sys/netinet/sctp_asconf.c soc2011/shm/sys/netinet/sctp_asconf.h soc2011/shm/sys/netinet/sctp_auth.c soc2011/shm/sys/netinet/sctp_auth.h soc2011/shm/sys/netinet/sctp_bsd_addr.c soc2011/shm/sys/netinet/sctp_bsd_addr.h soc2011/shm/sys/netinet/sctp_cc_functions.c soc2011/shm/sys/netinet/sctp_cc_functions.h soc2011/shm/sys/netinet/sctp_constants.h soc2011/shm/sys/netinet/sctp_crc32.c soc2011/shm/sys/netinet/sctp_crc32.h soc2011/shm/sys/netinet/sctp_header.h soc2011/shm/sys/netinet/sctp_indata.c soc2011/shm/sys/netinet/sctp_indata.h soc2011/shm/sys/netinet/sctp_input.c soc2011/shm/sys/netinet/sctp_input.h soc2011/shm/sys/netinet/sctp_lock_bsd.h soc2011/shm/sys/netinet/sctp_os.h soc2011/shm/sys/netinet/sctp_os_bsd.h soc2011/shm/sys/netinet/sctp_output.c soc2011/shm/sys/netinet/sctp_output.h soc2011/shm/sys/netinet/sctp_pcb.c soc2011/shm/sys/netinet/sctp_pcb.h soc2011/shm/sys/netinet/sctp_peeloff.c soc2011/shm/sys/netinet/sctp_peeloff.h soc2011/shm/sys/netinet/sctp_structs.h soc2011/shm/sys/netinet/sctp_sysctl.c soc2011/shm/sys/netinet/sctp_sysctl.h soc2011/shm/sys/netinet/sctp_timer.c soc2011/shm/sys/netinet/sctp_timer.h soc2011/shm/sys/netinet/sctp_uio.h soc2011/shm/sys/netinet/sctp_usrreq.c soc2011/shm/sys/netinet/sctp_var.h soc2011/shm/sys/netinet/sctputil.c soc2011/shm/sys/netinet/sctputil.h soc2011/shm/sys/netinet/tcp.h soc2011/shm/sys/netinet/tcp_debug.c soc2011/shm/sys/netinet/tcp_debug.h soc2011/shm/sys/netinet/tcp_fsm.h soc2011/shm/sys/netinet/tcp_hostcache.c soc2011/shm/sys/netinet/tcp_hostcache.h soc2011/shm/sys/netinet/tcp_input.c soc2011/shm/sys/netinet/tcp_lro.c soc2011/shm/sys/netinet/tcp_lro.h soc2011/shm/sys/netinet/tcp_offload.c soc2011/shm/sys/netinet/tcp_offload.h soc2011/shm/sys/netinet/tcp_output.c soc2011/shm/sys/netinet/tcp_reass.c soc2011/shm/sys/netinet/tcp_sack.c soc2011/shm/sys/netinet/tcp_seq.h soc2011/shm/sys/netinet/tcp_subr.c soc2011/shm/sys/netinet/tcp_syncache.c soc2011/shm/sys/netinet/tcp_syncache.h soc2011/shm/sys/netinet/tcp_timer.c soc2011/shm/sys/netinet/tcp_timer.h soc2011/shm/sys/netinet/tcp_timewait.c soc2011/shm/sys/netinet/tcp_usrreq.c soc2011/shm/sys/netinet/tcp_var.h soc2011/shm/sys/netinet/tcpip.h soc2011/shm/sys/netinet/toedev.h soc2011/shm/sys/netinet/udp.h soc2011/shm/sys/netinet/udp_usrreq.c soc2011/shm/sys/netinet/udp_var.h soc2011/shm/sys/netinet6/ soc2011/shm/sys/netinet6/dest6.c soc2011/shm/sys/netinet6/frag6.c soc2011/shm/sys/netinet6/icmp6.c soc2011/shm/sys/netinet6/icmp6.h soc2011/shm/sys/netinet6/in6.c soc2011/shm/sys/netinet6/in6.h soc2011/shm/sys/netinet6/in6_cksum.c soc2011/shm/sys/netinet6/in6_gif.c soc2011/shm/sys/netinet6/in6_gif.h soc2011/shm/sys/netinet6/in6_ifattach.c soc2011/shm/sys/netinet6/in6_ifattach.h soc2011/shm/sys/netinet6/in6_mcast.c soc2011/shm/sys/netinet6/in6_pcb.c soc2011/shm/sys/netinet6/in6_pcb.h soc2011/shm/sys/netinet6/in6_proto.c soc2011/shm/sys/netinet6/in6_rmx.c soc2011/shm/sys/netinet6/in6_src.c soc2011/shm/sys/netinet6/in6_var.h soc2011/shm/sys/netinet6/ip6.h soc2011/shm/sys/netinet6/ip6_ecn.h soc2011/shm/sys/netinet6/ip6_forward.c soc2011/shm/sys/netinet6/ip6_id.c soc2011/shm/sys/netinet6/ip6_input.c soc2011/shm/sys/netinet6/ip6_ipsec.c soc2011/shm/sys/netinet6/ip6_ipsec.h soc2011/shm/sys/netinet6/ip6_mroute.c soc2011/shm/sys/netinet6/ip6_mroute.h soc2011/shm/sys/netinet6/ip6_output.c soc2011/shm/sys/netinet6/ip6_var.h soc2011/shm/sys/netinet6/ip6protosw.h soc2011/shm/sys/netinet6/mld6.c soc2011/shm/sys/netinet6/mld6.h soc2011/shm/sys/netinet6/mld6_var.h soc2011/shm/sys/netinet6/nd6.c soc2011/shm/sys/netinet6/nd6.h soc2011/shm/sys/netinet6/nd6_nbr.c soc2011/shm/sys/netinet6/nd6_rtr.c soc2011/shm/sys/netinet6/pim6.h soc2011/shm/sys/netinet6/pim6_var.h soc2011/shm/sys/netinet6/raw_ip6.c soc2011/shm/sys/netinet6/raw_ip6.h soc2011/shm/sys/netinet6/route6.c soc2011/shm/sys/netinet6/scope6.c soc2011/shm/sys/netinet6/scope6_var.h soc2011/shm/sys/netinet6/sctp6_usrreq.c soc2011/shm/sys/netinet6/sctp6_var.h soc2011/shm/sys/netinet6/tcp6_var.h soc2011/shm/sys/netinet6/udp6_usrreq.c soc2011/shm/sys/netinet6/udp6_var.h soc2011/shm/sys/netipsec/ soc2011/shm/sys/netipsec/ah.h soc2011/shm/sys/netipsec/ah_var.h soc2011/shm/sys/netipsec/esp.h soc2011/shm/sys/netipsec/esp_var.h soc2011/shm/sys/netipsec/ipcomp.h soc2011/shm/sys/netipsec/ipcomp_var.h soc2011/shm/sys/netipsec/ipip_var.h soc2011/shm/sys/netipsec/ipsec.c soc2011/shm/sys/netipsec/ipsec.h soc2011/shm/sys/netipsec/ipsec6.h soc2011/shm/sys/netipsec/ipsec_input.c soc2011/shm/sys/netipsec/ipsec_mbuf.c soc2011/shm/sys/netipsec/ipsec_output.c soc2011/shm/sys/netipsec/key.c soc2011/shm/sys/netipsec/key.h soc2011/shm/sys/netipsec/key_debug.c soc2011/shm/sys/netipsec/key_debug.h soc2011/shm/sys/netipsec/key_var.h soc2011/shm/sys/netipsec/keydb.h soc2011/shm/sys/netipsec/keysock.c soc2011/shm/sys/netipsec/keysock.h soc2011/shm/sys/netipsec/xform.h soc2011/shm/sys/netipsec/xform_ah.c soc2011/shm/sys/netipsec/xform_esp.c soc2011/shm/sys/netipsec/xform_ipcomp.c soc2011/shm/sys/netipsec/xform_ipip.c soc2011/shm/sys/netipsec/xform_tcp.c soc2011/shm/sys/netipx/ soc2011/shm/sys/netipx/README soc2011/shm/sys/netipx/ipx.c soc2011/shm/sys/netipx/ipx.h soc2011/shm/sys/netipx/ipx_cksum.c soc2011/shm/sys/netipx/ipx_if.h soc2011/shm/sys/netipx/ipx_input.c soc2011/shm/sys/netipx/ipx_outputfl.c soc2011/shm/sys/netipx/ipx_pcb.c soc2011/shm/sys/netipx/ipx_pcb.h soc2011/shm/sys/netipx/ipx_proto.c soc2011/shm/sys/netipx/ipx_usrreq.c soc2011/shm/sys/netipx/ipx_var.h soc2011/shm/sys/netipx/spx.h soc2011/shm/sys/netipx/spx_debug.c soc2011/shm/sys/netipx/spx_debug.h soc2011/shm/sys/netipx/spx_reass.c soc2011/shm/sys/netipx/spx_timer.h soc2011/shm/sys/netipx/spx_usrreq.c soc2011/shm/sys/netipx/spx_var.h soc2011/shm/sys/netnatm/ soc2011/shm/sys/netnatm/natm.c soc2011/shm/sys/netnatm/natm.h soc2011/shm/sys/netnatm/natm_pcb.c soc2011/shm/sys/netnatm/natm_proto.c soc2011/shm/sys/netncp/ soc2011/shm/sys/netncp/ncp.h soc2011/shm/sys/netncp/ncp_cfg.h soc2011/shm/sys/netncp/ncp_conn.c soc2011/shm/sys/netncp/ncp_conn.h soc2011/shm/sys/netncp/ncp_crypt.c soc2011/shm/sys/netncp/ncp_file.h soc2011/shm/sys/netncp/ncp_lib.h soc2011/shm/sys/netncp/ncp_login.c soc2011/shm/sys/netncp/ncp_mod.c soc2011/shm/sys/netncp/ncp_ncp.c soc2011/shm/sys/netncp/ncp_ncp.h soc2011/shm/sys/netncp/ncp_nls.c soc2011/shm/sys/netncp/ncp_nls.h soc2011/shm/sys/netncp/ncp_rcfile.h soc2011/shm/sys/netncp/ncp_rq.c soc2011/shm/sys/netncp/ncp_rq.h soc2011/shm/sys/netncp/ncp_sock.c soc2011/shm/sys/netncp/ncp_sock.h soc2011/shm/sys/netncp/ncp_subr.c soc2011/shm/sys/netncp/ncp_subr.h soc2011/shm/sys/netncp/ncp_user.h soc2011/shm/sys/netncp/ncpio.h soc2011/shm/sys/netncp/nwerror.h soc2011/shm/sys/netsmb/ soc2011/shm/sys/netsmb/netbios.h soc2011/shm/sys/netsmb/smb.h soc2011/shm/sys/netsmb/smb_conn.c soc2011/shm/sys/netsmb/smb_conn.h soc2011/shm/sys/netsmb/smb_crypt.c soc2011/shm/sys/netsmb/smb_dev.c soc2011/shm/sys/netsmb/smb_dev.h soc2011/shm/sys/netsmb/smb_iod.c soc2011/shm/sys/netsmb/smb_rq.c soc2011/shm/sys/netsmb/smb_rq.h soc2011/shm/sys/netsmb/smb_smb.c soc2011/shm/sys/netsmb/smb_subr.c soc2011/shm/sys/netsmb/smb_subr.h soc2011/shm/sys/netsmb/smb_tran.h soc2011/shm/sys/netsmb/smb_trantcp.c soc2011/shm/sys/netsmb/smb_trantcp.h soc2011/shm/sys/netsmb/smb_usr.c soc2011/shm/sys/nfs/ soc2011/shm/sys/nfs/nfs_common.c soc2011/shm/sys/nfs/nfs_common.h soc2011/shm/sys/nfs/nfs_nfssvc.c soc2011/shm/sys/nfs/nfsproto.h soc2011/shm/sys/nfs/nfssvc.h soc2011/shm/sys/nfs/xdr_subs.h soc2011/shm/sys/nfsclient/ soc2011/shm/sys/nfsclient/bootp_subr.c soc2011/shm/sys/nfsclient/krpc.h soc2011/shm/sys/nfsclient/krpc_subr.c soc2011/shm/sys/nfsclient/nfs.h soc2011/shm/sys/nfsclient/nfs_bio.c soc2011/shm/sys/nfsclient/nfs_diskless.c soc2011/shm/sys/nfsclient/nfs_kdtrace.c soc2011/shm/sys/nfsclient/nfs_kdtrace.h soc2011/shm/sys/nfsclient/nfs_krpc.c soc2011/shm/sys/nfsclient/nfs_lock.c soc2011/shm/sys/nfsclient/nfs_lock.h soc2011/shm/sys/nfsclient/nfs_nfsiod.c soc2011/shm/sys/nfsclient/nfs_node.c soc2011/shm/sys/nfsclient/nfs_subs.c soc2011/shm/sys/nfsclient/nfs_vfsops.c soc2011/shm/sys/nfsclient/nfs_vnops.c soc2011/shm/sys/nfsclient/nfsargs.h soc2011/shm/sys/nfsclient/nfsdiskless.h soc2011/shm/sys/nfsclient/nfsm_subs.h soc2011/shm/sys/nfsclient/nfsmount.h soc2011/shm/sys/nfsclient/nfsnode.h soc2011/shm/sys/nfsclient/nfsstats.h soc2011/shm/sys/nfsclient/nlminfo.h soc2011/shm/sys/nfsserver/ soc2011/shm/sys/nfsserver/nfs.h soc2011/shm/sys/nfsserver/nfs_fha.c soc2011/shm/sys/nfsserver/nfs_fha.h soc2011/shm/sys/nfsserver/nfs_serv.c soc2011/shm/sys/nfsserver/nfs_srvkrpc.c soc2011/shm/sys/nfsserver/nfs_srvsubs.c soc2011/shm/sys/nfsserver/nfsm_subs.h soc2011/shm/sys/nfsserver/nfsrvcache.h soc2011/shm/sys/nfsserver/nfsrvstats.h soc2011/shm/sys/nlm/ soc2011/shm/sys/nlm/nlm.h soc2011/shm/sys/nlm/nlm_advlock.c soc2011/shm/sys/nlm/nlm_prot.h soc2011/shm/sys/nlm/nlm_prot_clnt.c soc2011/shm/sys/nlm/nlm_prot_impl.c soc2011/shm/sys/nlm/nlm_prot_server.c soc2011/shm/sys/nlm/nlm_prot_svc.c soc2011/shm/sys/nlm/nlm_prot_xdr.c soc2011/shm/sys/nlm/sm_inter.h soc2011/shm/sys/nlm/sm_inter_xdr.c soc2011/shm/sys/opencrypto/ soc2011/shm/sys/opencrypto/cast.c soc2011/shm/sys/opencrypto/cast.h soc2011/shm/sys/opencrypto/castsb.h soc2011/shm/sys/opencrypto/criov.c soc2011/shm/sys/opencrypto/crypto.c soc2011/shm/sys/opencrypto/cryptodev.c soc2011/shm/sys/opencrypto/cryptodev.h soc2011/shm/sys/opencrypto/cryptodev_if.m soc2011/shm/sys/opencrypto/cryptosoft.c soc2011/shm/sys/opencrypto/cryptosoft.h soc2011/shm/sys/opencrypto/deflate.c soc2011/shm/sys/opencrypto/deflate.h soc2011/shm/sys/opencrypto/rmd160.c soc2011/shm/sys/opencrypto/rmd160.h soc2011/shm/sys/opencrypto/skipjack.c soc2011/shm/sys/opencrypto/skipjack.h soc2011/shm/sys/opencrypto/xform.c soc2011/shm/sys/opencrypto/xform.h soc2011/shm/sys/pc98/ soc2011/shm/sys/pc98/apm/ soc2011/shm/sys/pc98/apm/apm_bioscall.S soc2011/shm/sys/pc98/cbus/ soc2011/shm/sys/pc98/cbus/30line.h soc2011/shm/sys/pc98/cbus/cbus.h soc2011/shm/sys/pc98/cbus/cbus_dma.c soc2011/shm/sys/pc98/cbus/cbus_dmareg.h soc2011/shm/sys/pc98/cbus/clock.c soc2011/shm/sys/pc98/cbus/fdc.c soc2011/shm/sys/pc98/cbus/fdc_cbus.c soc2011/shm/sys/pc98/cbus/fdcreg.h soc2011/shm/sys/pc98/cbus/fdcvar.h soc2011/shm/sys/pc98/cbus/gdc.c soc2011/shm/sys/pc98/cbus/nmi.c soc2011/shm/sys/pc98/cbus/olpt.c soc2011/shm/sys/pc98/cbus/olptreg.h soc2011/shm/sys/pc98/cbus/pckbd.c soc2011/shm/sys/pc98/cbus/pckbdtables.h soc2011/shm/sys/pc98/cbus/pcrtc.c soc2011/shm/sys/pc98/cbus/pmc.c soc2011/shm/sys/pc98/cbus/sc_machdep.h soc2011/shm/sys/pc98/cbus/scgdcrndr.c soc2011/shm/sys/pc98/cbus/scterm-sck.c soc2011/shm/sys/pc98/cbus/sctermvar.h soc2011/shm/sys/pc98/cbus/scvtb.c soc2011/shm/sys/pc98/cbus/sio.c soc2011/shm/sys/pc98/cbus/sio_cbus.c soc2011/shm/sys/pc98/cbus/syscons_cbus.c soc2011/shm/sys/pc98/compile/ soc2011/shm/sys/pc98/compile/.cvsignore soc2011/shm/sys/pc98/conf/ soc2011/shm/sys/pc98/conf/.cvsignore soc2011/shm/sys/pc98/conf/DEFAULTS soc2011/shm/sys/pc98/conf/GENERIC soc2011/shm/sys/pc98/conf/GENERIC.hints soc2011/shm/sys/pc98/conf/Makefile soc2011/shm/sys/pc98/conf/NOTES soc2011/shm/sys/pc98/include/ soc2011/shm/sys/pc98/include/_bus.h soc2011/shm/sys/pc98/include/_inttypes.h soc2011/shm/sys/pc98/include/_limits.h soc2011/shm/sys/pc98/include/_stdint.h soc2011/shm/sys/pc98/include/_types.h soc2011/shm/sys/pc98/include/apicreg.h soc2011/shm/sys/pc98/include/apicvar.h soc2011/shm/sys/pc98/include/apm_bios.h soc2011/shm/sys/pc98/include/apm_segments.h soc2011/shm/sys/pc98/include/asm.h soc2011/shm/sys/pc98/include/asmacros.h soc2011/shm/sys/pc98/include/atomic.h soc2011/shm/sys/pc98/include/bootinfo.h soc2011/shm/sys/pc98/include/bus.h soc2011/shm/sys/pc98/include/bus_dma.h soc2011/shm/sys/pc98/include/clock.h soc2011/shm/sys/pc98/include/cpu.h soc2011/shm/sys/pc98/include/cpufunc.h soc2011/shm/sys/pc98/include/cputypes.h soc2011/shm/sys/pc98/include/cserial.h soc2011/shm/sys/pc98/include/db_machdep.h soc2011/shm/sys/pc98/include/elf.h soc2011/shm/sys/pc98/include/endian.h soc2011/shm/sys/pc98/include/exec.h soc2011/shm/sys/pc98/include/float.h soc2011/shm/sys/pc98/include/floatingpoint.h soc2011/shm/sys/pc98/include/frame.h soc2011/shm/sys/pc98/include/gdb_machdep.h soc2011/shm/sys/pc98/include/ieeefp.h soc2011/shm/sys/pc98/include/in_cksum.h soc2011/shm/sys/pc98/include/intr_machdep.h soc2011/shm/sys/pc98/include/ioctl_bt848.h soc2011/shm/sys/pc98/include/ioctl_meteor.h soc2011/shm/sys/pc98/include/iodev.h soc2011/shm/sys/pc98/include/kdb.h soc2011/shm/sys/pc98/include/legacyvar.h soc2011/shm/sys/pc98/include/limits.h soc2011/shm/sys/pc98/include/mca.h soc2011/shm/sys/pc98/include/md_var.h soc2011/shm/sys/pc98/include/memdev.h soc2011/shm/sys/pc98/include/metadata.h soc2011/shm/sys/pc98/include/minidump.h soc2011/shm/sys/pc98/include/mp_watchdog.h soc2011/shm/sys/pc98/include/mptable.h soc2011/shm/sys/pc98/include/mutex.h soc2011/shm/sys/pc98/include/nexusvar.h soc2011/shm/sys/pc98/include/npx.h soc2011/shm/sys/pc98/include/param.h soc2011/shm/sys/pc98/include/pc/ soc2011/shm/sys/pc98/include/pc/bios.h soc2011/shm/sys/pc98/include/pc/display.h soc2011/shm/sys/pc98/include/pc/vesa.h soc2011/shm/sys/pc98/include/pcaudioio.h soc2011/shm/sys/pc98/include/pcb.h soc2011/shm/sys/pc98/include/pcb_ext.h soc2011/shm/sys/pc98/include/pci_cfgreg.h soc2011/shm/sys/pc98/include/pcpu.h soc2011/shm/sys/pc98/include/perfmon.h soc2011/shm/sys/pc98/include/pmap.h soc2011/shm/sys/pc98/include/pmc_mdep.h soc2011/shm/sys/pc98/include/ppireg.h soc2011/shm/sys/pc98/include/privatespace.h soc2011/shm/sys/pc98/include/proc.h soc2011/shm/sys/pc98/include/profile.h soc2011/shm/sys/pc98/include/psl.h soc2011/shm/sys/pc98/include/ptrace.h soc2011/shm/sys/pc98/include/reg.h soc2011/shm/sys/pc98/include/reloc.h soc2011/shm/sys/pc98/include/resource.h soc2011/shm/sys/pc98/include/runq.h soc2011/shm/sys/pc98/include/segments.h soc2011/shm/sys/pc98/include/setjmp.h soc2011/shm/sys/pc98/include/sf_buf.h soc2011/shm/sys/pc98/include/sigframe.h soc2011/shm/sys/pc98/include/signal.h soc2011/shm/sys/pc98/include/smapi.h soc2011/shm/sys/pc98/include/smp.h soc2011/shm/sys/pc98/include/speaker.h soc2011/shm/sys/pc98/include/specialreg.h soc2011/shm/sys/pc98/include/stack.h soc2011/shm/sys/pc98/include/stdarg.h soc2011/shm/sys/pc98/include/sysarch.h soc2011/shm/sys/pc98/include/timerreg.h soc2011/shm/sys/pc98/include/trap.h soc2011/shm/sys/pc98/include/tss.h soc2011/shm/sys/pc98/include/ucontext.h soc2011/shm/sys/pc98/include/varargs.h soc2011/shm/sys/pc98/include/vm.h soc2011/shm/sys/pc98/include/vm86.h soc2011/shm/sys/pc98/include/vmparam.h soc2011/shm/sys/pc98/linux/ soc2011/shm/sys/pc98/linux/linux.h soc2011/shm/sys/pc98/linux/linux_ipc64.h soc2011/shm/sys/pc98/linux/linux_proto.h soc2011/shm/sys/pc98/pc98/ soc2011/shm/sys/pc98/pc98/busio.s soc2011/shm/sys/pc98/pc98/busiosubr.c soc2011/shm/sys/pc98/pc98/canbepm.c soc2011/shm/sys/pc98/pc98/canbus.c soc2011/shm/sys/pc98/pc98/canbus.h soc2011/shm/sys/pc98/pc98/canbus_if.m soc2011/shm/sys/pc98/pc98/canbusvars.h soc2011/shm/sys/pc98/pc98/machdep.c soc2011/shm/sys/pc98/pc98/pc98_machdep.c soc2011/shm/sys/pc98/pc98/pc98_machdep.h soc2011/shm/sys/pci/ soc2011/shm/sys/pci/alpm.c soc2011/shm/sys/pci/amdpm.c soc2011/shm/sys/pci/amdsmb.c soc2011/shm/sys/pci/if_rl.c soc2011/shm/sys/pci/if_rlreg.h soc2011/shm/sys/pci/intpm.c soc2011/shm/sys/pci/intpmreg.h soc2011/shm/sys/pci/locate.pl (contents, props changed) soc2011/shm/sys/pci/ncr.c soc2011/shm/sys/pci/ncrreg.h soc2011/shm/sys/pci/nfsmb.c soc2011/shm/sys/pci/viapm.c soc2011/shm/sys/powerpc/ soc2011/shm/sys/powerpc/aim/ soc2011/shm/sys/powerpc/aim/clock.c soc2011/shm/sys/powerpc/aim/copyinout.c soc2011/shm/sys/powerpc/aim/interrupt.c soc2011/shm/sys/powerpc/aim/locore.S soc2011/shm/sys/powerpc/aim/machdep.c soc2011/shm/sys/powerpc/aim/mmu_oea.c soc2011/shm/sys/powerpc/aim/mmu_oea64.c soc2011/shm/sys/powerpc/aim/mp_cpudep.c soc2011/shm/sys/powerpc/aim/nexus.c soc2011/shm/sys/powerpc/aim/ofw_machdep.c soc2011/shm/sys/powerpc/aim/ofwmagic.S soc2011/shm/sys/powerpc/aim/platform_chrp.c soc2011/shm/sys/powerpc/aim/swtch.S soc2011/shm/sys/powerpc/aim/trap.c soc2011/shm/sys/powerpc/aim/trap_subr.S soc2011/shm/sys/powerpc/aim/uma_machdep.c soc2011/shm/sys/powerpc/aim/vm_machdep.c soc2011/shm/sys/powerpc/booke/ soc2011/shm/sys/powerpc/booke/clock.c soc2011/shm/sys/powerpc/booke/copyinout.c soc2011/shm/sys/powerpc/booke/interrupt.c soc2011/shm/sys/powerpc/booke/locore.S soc2011/shm/sys/powerpc/booke/machdep.c soc2011/shm/sys/powerpc/booke/mp_cpudep.c soc2011/shm/sys/powerpc/booke/platform_bare.c soc2011/shm/sys/powerpc/booke/pmap.c soc2011/shm/sys/powerpc/booke/swtch.S soc2011/shm/sys/powerpc/booke/trap.c soc2011/shm/sys/powerpc/booke/trap_subr.S soc2011/shm/sys/powerpc/booke/vm_machdep.c soc2011/shm/sys/powerpc/compile/ soc2011/shm/sys/powerpc/compile/.cvsignore soc2011/shm/sys/powerpc/conf/ soc2011/shm/sys/powerpc/conf/.cvsignore soc2011/shm/sys/powerpc/conf/DEFAULTS soc2011/shm/sys/powerpc/conf/GENERIC soc2011/shm/sys/powerpc/conf/GENERIC.hints soc2011/shm/sys/powerpc/conf/MPC85XX soc2011/shm/sys/powerpc/conf/Makefile soc2011/shm/sys/powerpc/conf/NOTES soc2011/shm/sys/powerpc/cpufreq/ soc2011/shm/sys/powerpc/cpufreq/dfs.c soc2011/shm/sys/powerpc/cpufreq/pcr.c soc2011/shm/sys/powerpc/fpu/ soc2011/shm/sys/powerpc/fpu/fpu_add.c soc2011/shm/sys/powerpc/fpu/fpu_arith.h soc2011/shm/sys/powerpc/fpu/fpu_compare.c soc2011/shm/sys/powerpc/fpu/fpu_div.c soc2011/shm/sys/powerpc/fpu/fpu_emu.c soc2011/shm/sys/powerpc/fpu/fpu_emu.h soc2011/shm/sys/powerpc/fpu/fpu_explode.c soc2011/shm/sys/powerpc/fpu/fpu_extern.h soc2011/shm/sys/powerpc/fpu/fpu_implode.c soc2011/shm/sys/powerpc/fpu/fpu_instr.h soc2011/shm/sys/powerpc/fpu/fpu_mul.c soc2011/shm/sys/powerpc/fpu/fpu_sqrt.c soc2011/shm/sys/powerpc/fpu/fpu_subr.c soc2011/shm/sys/powerpc/include/ soc2011/shm/sys/powerpc/include/_bus.h soc2011/shm/sys/powerpc/include/_inttypes.h soc2011/shm/sys/powerpc/include/_limits.h soc2011/shm/sys/powerpc/include/_stdint.h soc2011/shm/sys/powerpc/include/_types.h soc2011/shm/sys/powerpc/include/altivec.h soc2011/shm/sys/powerpc/include/asm.h soc2011/shm/sys/powerpc/include/atomic.h soc2011/shm/sys/powerpc/include/bat.h soc2011/shm/sys/powerpc/include/bootinfo.h soc2011/shm/sys/powerpc/include/bus.h soc2011/shm/sys/powerpc/include/bus_dma.h soc2011/shm/sys/powerpc/include/clock.h soc2011/shm/sys/powerpc/include/cpu.h soc2011/shm/sys/powerpc/include/cpufunc.h soc2011/shm/sys/powerpc/include/db_machdep.h soc2011/shm/sys/powerpc/include/dbdma.h soc2011/shm/sys/powerpc/include/elf.h soc2011/shm/sys/powerpc/include/endian.h soc2011/shm/sys/powerpc/include/exec.h soc2011/shm/sys/powerpc/include/float.h soc2011/shm/sys/powerpc/include/floatingpoint.h soc2011/shm/sys/powerpc/include/fpu.h soc2011/shm/sys/powerpc/include/frame.h soc2011/shm/sys/powerpc/include/gdb_machdep.h soc2011/shm/sys/powerpc/include/hid.h soc2011/shm/sys/powerpc/include/ieee.h soc2011/shm/sys/powerpc/include/ieeefp.h soc2011/shm/sys/powerpc/include/in_cksum.h soc2011/shm/sys/powerpc/include/intr.h soc2011/shm/sys/powerpc/include/intr_machdep.h soc2011/shm/sys/powerpc/include/kdb.h soc2011/shm/sys/powerpc/include/limits.h soc2011/shm/sys/powerpc/include/md_var.h soc2011/shm/sys/powerpc/include/memdev.h soc2011/shm/sys/powerpc/include/metadata.h soc2011/shm/sys/powerpc/include/mmuvar.h soc2011/shm/sys/powerpc/include/mutex.h soc2011/shm/sys/powerpc/include/ocpbus.h soc2011/shm/sys/powerpc/include/ofw_machdep.h soc2011/shm/sys/powerpc/include/openpicreg.h soc2011/shm/sys/powerpc/include/openpicvar.h soc2011/shm/sys/powerpc/include/param.h soc2011/shm/sys/powerpc/include/pcb.h soc2011/shm/sys/powerpc/include/pcpu.h soc2011/shm/sys/powerpc/include/pio.h soc2011/shm/sys/powerpc/include/platform.h soc2011/shm/sys/powerpc/include/platformvar.h soc2011/shm/sys/powerpc/include/pmap.h soc2011/shm/sys/powerpc/include/pmc_mdep.h soc2011/shm/sys/powerpc/include/proc.h soc2011/shm/sys/powerpc/include/profile.h soc2011/shm/sys/powerpc/include/psl.h soc2011/shm/sys/powerpc/include/pte.h soc2011/shm/sys/powerpc/include/ptrace.h soc2011/shm/sys/powerpc/include/reg.h soc2011/shm/sys/powerpc/include/reloc.h soc2011/shm/sys/powerpc/include/resource.h soc2011/shm/sys/powerpc/include/runq.h soc2011/shm/sys/powerpc/include/sc_machdep.h soc2011/shm/sys/powerpc/include/setjmp.h soc2011/shm/sys/powerpc/include/sf_buf.h soc2011/shm/sys/powerpc/include/sigframe.h soc2011/shm/sys/powerpc/include/signal.h soc2011/shm/sys/powerpc/include/smp.h soc2011/shm/sys/powerpc/include/spr.h soc2011/shm/sys/powerpc/include/sr.h soc2011/shm/sys/powerpc/include/stack.h soc2011/shm/sys/powerpc/include/stdarg.h soc2011/shm/sys/powerpc/include/sysarch.h soc2011/shm/sys/powerpc/include/tlb.h soc2011/shm/sys/powerpc/include/trap.h soc2011/shm/sys/powerpc/include/trap_aim.h soc2011/shm/sys/powerpc/include/trap_booke.h soc2011/shm/sys/powerpc/include/ucontext.h soc2011/shm/sys/powerpc/include/varargs.h soc2011/shm/sys/powerpc/include/vm.h soc2011/shm/sys/powerpc/include/vmparam.h soc2011/shm/sys/powerpc/mpc85xx/ soc2011/shm/sys/powerpc/mpc85xx/atpic.c soc2011/shm/sys/powerpc/mpc85xx/ds1553_bus_lbc.c soc2011/shm/sys/powerpc/mpc85xx/ds1553_core.c soc2011/shm/sys/powerpc/mpc85xx/ds1553_reg.h soc2011/shm/sys/powerpc/mpc85xx/i2c.c soc2011/shm/sys/powerpc/mpc85xx/isa.c soc2011/shm/sys/powerpc/mpc85xx/lbc.c soc2011/shm/sys/powerpc/mpc85xx/lbc.h soc2011/shm/sys/powerpc/mpc85xx/mpc85xx.c soc2011/shm/sys/powerpc/mpc85xx/mpc85xx.h soc2011/shm/sys/powerpc/mpc85xx/nexus.c soc2011/shm/sys/powerpc/mpc85xx/ocpbus.c soc2011/shm/sys/powerpc/mpc85xx/ocpbus.h soc2011/shm/sys/powerpc/mpc85xx/opic.c soc2011/shm/sys/powerpc/mpc85xx/pci_ocp.c soc2011/shm/sys/powerpc/ofw/ soc2011/shm/sys/powerpc/ofw/ofw_cpu.c soc2011/shm/sys/powerpc/ofw/ofw_pcib_pci.c soc2011/shm/sys/powerpc/ofw/ofw_pcibus.c soc2011/shm/sys/powerpc/ofw/ofw_real.c soc2011/shm/sys/powerpc/ofw/ofw_syscons.c soc2011/shm/sys/powerpc/ofw/ofw_syscons.h soc2011/shm/sys/powerpc/powermac/ soc2011/shm/sys/powerpc/powermac/ata_dbdma.c soc2011/shm/sys/powerpc/powermac/ata_dbdma.h soc2011/shm/sys/powerpc/powermac/ata_kauai.c soc2011/shm/sys/powerpc/powermac/ata_macio.c soc2011/shm/sys/powerpc/powermac/cpcht.c soc2011/shm/sys/powerpc/powermac/cuda.c soc2011/shm/sys/powerpc/powermac/cudavar.h soc2011/shm/sys/powerpc/powermac/dbdma.c soc2011/shm/sys/powerpc/powermac/dbdmavar.h soc2011/shm/sys/powerpc/powermac/grackle.c soc2011/shm/sys/powerpc/powermac/gracklevar.h soc2011/shm/sys/powerpc/powermac/hrowpic.c soc2011/shm/sys/powerpc/powermac/hrowpicvar.h soc2011/shm/sys/powerpc/powermac/kiic.c soc2011/shm/sys/powerpc/powermac/macgpio.c soc2011/shm/sys/powerpc/powermac/macgpiovar.h soc2011/shm/sys/powerpc/powermac/macio.c soc2011/shm/sys/powerpc/powermac/maciovar.h soc2011/shm/sys/powerpc/powermac/openpic_macio.c soc2011/shm/sys/powerpc/powermac/pmu.c soc2011/shm/sys/powerpc/powermac/pmuvar.h soc2011/shm/sys/powerpc/powermac/pswitch.c soc2011/shm/sys/powerpc/powermac/smu.c soc2011/shm/sys/powerpc/powermac/uninorth.c soc2011/shm/sys/powerpc/powermac/uninorthpci.c soc2011/shm/sys/powerpc/powermac/uninorthvar.h soc2011/shm/sys/powerpc/powermac/vcoregpio.c soc2011/shm/sys/powerpc/powermac/viareg.h soc2011/shm/sys/powerpc/powerpc/ soc2011/shm/sys/powerpc/powerpc/altivec.c soc2011/shm/sys/powerpc/powerpc/atomic.S soc2011/shm/sys/powerpc/powerpc/autoconf.c soc2011/shm/sys/powerpc/powerpc/bcopy.c soc2011/shm/sys/powerpc/powerpc/bus_machdep.c soc2011/shm/sys/powerpc/powerpc/busdma_machdep.c soc2011/shm/sys/powerpc/powerpc/copystr.c soc2011/shm/sys/powerpc/powerpc/cpu.c soc2011/shm/sys/powerpc/powerpc/db_disasm.c soc2011/shm/sys/powerpc/powerpc/db_hwwatch.c soc2011/shm/sys/powerpc/powerpc/db_interface.c soc2011/shm/sys/powerpc/powerpc/db_trace.c soc2011/shm/sys/powerpc/powerpc/dump_machdep.c soc2011/shm/sys/powerpc/powerpc/elf_machdep.c soc2011/shm/sys/powerpc/powerpc/fpu.c soc2011/shm/sys/powerpc/powerpc/fuswintr.c soc2011/shm/sys/powerpc/powerpc/gdb_machdep.c soc2011/shm/sys/powerpc/powerpc/genassym.c soc2011/shm/sys/powerpc/powerpc/in_cksum.c soc2011/shm/sys/powerpc/powerpc/intr_machdep.c soc2011/shm/sys/powerpc/powerpc/mem.c soc2011/shm/sys/powerpc/powerpc/mmu_if.m soc2011/shm/sys/powerpc/powerpc/mp_machdep.c soc2011/shm/sys/powerpc/powerpc/openpic.c soc2011/shm/sys/powerpc/powerpc/pic_if.m soc2011/shm/sys/powerpc/powerpc/platform.c soc2011/shm/sys/powerpc/powerpc/platform_if.m soc2011/shm/sys/powerpc/powerpc/pmap_dispatch.c soc2011/shm/sys/powerpc/powerpc/sc_machdep.c soc2011/shm/sys/powerpc/powerpc/setjmp.S soc2011/shm/sys/powerpc/powerpc/sigcode.S soc2011/shm/sys/powerpc/powerpc/stack_machdep.c soc2011/shm/sys/powerpc/powerpc/suswintr.c soc2011/shm/sys/powerpc/powerpc/syncicache.c soc2011/shm/sys/powerpc/powerpc/sys_machdep.c soc2011/shm/sys/powerpc/powerpc/uio_machdep.c soc2011/shm/sys/powerpc/psim/ soc2011/shm/sys/powerpc/psim/ata_iobus.c soc2011/shm/sys/powerpc/psim/iobus.c soc2011/shm/sys/powerpc/psim/iobusvar.h soc2011/shm/sys/powerpc/psim/openpic_iobus.c soc2011/shm/sys/powerpc/psim/psim-tree soc2011/shm/sys/powerpc/psim/uart_iobus.c soc2011/shm/sys/rpc/ soc2011/shm/sys/rpc/auth.h soc2011/shm/sys/rpc/auth_none.c soc2011/shm/sys/rpc/auth_unix.c soc2011/shm/sys/rpc/authunix_prot.c soc2011/shm/sys/rpc/clnt.h soc2011/shm/sys/rpc/clnt_dg.c soc2011/shm/sys/rpc/clnt_rc.c soc2011/shm/sys/rpc/clnt_stat.h soc2011/shm/sys/rpc/clnt_vc.c soc2011/shm/sys/rpc/getnetconfig.c soc2011/shm/sys/rpc/inet_ntop.c soc2011/shm/sys/rpc/inet_pton.c soc2011/shm/sys/rpc/netconfig.h soc2011/shm/sys/rpc/nettype.h soc2011/shm/sys/rpc/pmap_prot.h soc2011/shm/sys/rpc/replay.c soc2011/shm/sys/rpc/replay.h soc2011/shm/sys/rpc/rpc.h soc2011/shm/sys/rpc/rpc_callmsg.c soc2011/shm/sys/rpc/rpc_com.h soc2011/shm/sys/rpc/rpc_generic.c soc2011/shm/sys/rpc/rpc_msg.h soc2011/shm/sys/rpc/rpc_prot.c soc2011/shm/sys/rpc/rpcb_clnt.c soc2011/shm/sys/rpc/rpcb_clnt.h soc2011/shm/sys/rpc/rpcb_prot.c soc2011/shm/sys/rpc/rpcb_prot.h soc2011/shm/sys/rpc/rpcm_subs.h soc2011/shm/sys/rpc/rpcsec_gss/ soc2011/shm/sys/rpc/rpcsec_gss.h soc2011/shm/sys/rpc/rpcsec_gss/rpcsec_gss.c soc2011/shm/sys/rpc/rpcsec_gss/rpcsec_gss_conf.c soc2011/shm/sys/rpc/rpcsec_gss/rpcsec_gss_int.h soc2011/shm/sys/rpc/rpcsec_gss/rpcsec_gss_misc.c soc2011/shm/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c soc2011/shm/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c soc2011/shm/sys/rpc/svc.c soc2011/shm/sys/rpc/svc.h soc2011/shm/sys/rpc/svc_auth.c soc2011/shm/sys/rpc/svc_auth.h soc2011/shm/sys/rpc/svc_auth_unix.c soc2011/shm/sys/rpc/svc_dg.c soc2011/shm/sys/rpc/svc_generic.c soc2011/shm/sys/rpc/svc_vc.c soc2011/shm/sys/rpc/types.h soc2011/shm/sys/rpc/xdr.h soc2011/shm/sys/security/ soc2011/shm/sys/security/audit/ soc2011/shm/sys/security/audit/audit.c soc2011/shm/sys/security/audit/audit.h soc2011/shm/sys/security/audit/audit_arg.c soc2011/shm/sys/security/audit/audit_bsm.c soc2011/shm/sys/security/audit/audit_bsm_domain.c soc2011/shm/sys/security/audit/audit_bsm_errno.c soc2011/shm/sys/security/audit/audit_bsm_fcntl.c soc2011/shm/sys/security/audit/audit_bsm_klib.c soc2011/shm/sys/security/audit/audit_bsm_socket_type.c soc2011/shm/sys/security/audit/audit_bsm_token.c soc2011/shm/sys/security/audit/audit_ioctl.h soc2011/shm/sys/security/audit/audit_pipe.c soc2011/shm/sys/security/audit/audit_private.h soc2011/shm/sys/security/audit/audit_syscalls.c soc2011/shm/sys/security/audit/audit_trigger.c soc2011/shm/sys/security/audit/audit_worker.c soc2011/shm/sys/security/mac/ soc2011/shm/sys/security/mac/mac_atalk.c soc2011/shm/sys/security/mac/mac_audit.c soc2011/shm/sys/security/mac/mac_cred.c soc2011/shm/sys/security/mac/mac_framework.c soc2011/shm/sys/security/mac/mac_framework.h soc2011/shm/sys/security/mac/mac_inet.c soc2011/shm/sys/security/mac/mac_inet6.c soc2011/shm/sys/security/mac/mac_internal.h soc2011/shm/sys/security/mac/mac_label.c soc2011/shm/sys/security/mac/mac_net.c soc2011/shm/sys/security/mac/mac_pipe.c soc2011/shm/sys/security/mac/mac_policy.h soc2011/shm/sys/security/mac/mac_posix_sem.c soc2011/shm/sys/security/mac/mac_posix_shm.c soc2011/shm/sys/security/mac/mac_priv.c soc2011/shm/sys/security/mac/mac_process.c soc2011/shm/sys/security/mac/mac_socket.c soc2011/shm/sys/security/mac/mac_syscalls.c soc2011/shm/sys/security/mac/mac_system.c soc2011/shm/sys/security/mac/mac_sysv_msg.c soc2011/shm/sys/security/mac/mac_sysv_sem.c soc2011/shm/sys/security/mac/mac_sysv_shm.c soc2011/shm/sys/security/mac/mac_vfs.c soc2011/shm/sys/security/mac_biba/ soc2011/shm/sys/security/mac_biba/mac_biba.c soc2011/shm/sys/security/mac_biba/mac_biba.h soc2011/shm/sys/security/mac_bsdextended/ soc2011/shm/sys/security/mac_bsdextended/mac_bsdextended.c soc2011/shm/sys/security/mac_bsdextended/mac_bsdextended.h soc2011/shm/sys/security/mac_bsdextended/ugidfw_internal.h soc2011/shm/sys/security/mac_bsdextended/ugidfw_system.c soc2011/shm/sys/security/mac_bsdextended/ugidfw_vnode.c soc2011/shm/sys/security/mac_ifoff/ soc2011/shm/sys/security/mac_ifoff/mac_ifoff.c soc2011/shm/sys/security/mac_lomac/ soc2011/shm/sys/security/mac_lomac/mac_lomac.c soc2011/shm/sys/security/mac_lomac/mac_lomac.h soc2011/shm/sys/security/mac_mls/ soc2011/shm/sys/security/mac_mls/mac_mls.c soc2011/shm/sys/security/mac_mls/mac_mls.h soc2011/shm/sys/security/mac_none/ soc2011/shm/sys/security/mac_none/mac_none.c soc2011/shm/sys/security/mac_partition/ soc2011/shm/sys/security/mac_partition/mac_partition.c soc2011/shm/sys/security/mac_partition/mac_partition.h soc2011/shm/sys/security/mac_portacl/ soc2011/shm/sys/security/mac_portacl/mac_portacl.c soc2011/shm/sys/security/mac_seeotheruids/ soc2011/shm/sys/security/mac_seeotheruids/mac_seeotheruids.c soc2011/shm/sys/security/mac_stub/ soc2011/shm/sys/security/mac_stub/mac_stub.c soc2011/shm/sys/security/mac_test/ soc2011/shm/sys/security/mac_test/mac_test.c soc2011/shm/sys/sparc64/ soc2011/shm/sys/sparc64/central/ soc2011/shm/sys/sparc64/central/central.c soc2011/shm/sys/sparc64/compile/ soc2011/shm/sys/sparc64/compile/.cvsignore soc2011/shm/sys/sparc64/conf/ soc2011/shm/sys/sparc64/conf/.cvsignore soc2011/shm/sys/sparc64/conf/DEFAULTS soc2011/shm/sys/sparc64/conf/GENERIC soc2011/shm/sys/sparc64/conf/GENERIC.hints soc2011/shm/sys/sparc64/conf/Makefile soc2011/shm/sys/sparc64/conf/NOTES soc2011/shm/sys/sparc64/ebus/ soc2011/shm/sys/sparc64/ebus/ebus.c soc2011/shm/sys/sparc64/ebus/ebusreg.h soc2011/shm/sys/sparc64/ebus/epic.c soc2011/shm/sys/sparc64/fhc/ soc2011/shm/sys/sparc64/fhc/clkbrd.c soc2011/shm/sys/sparc64/fhc/clkbrdreg.h soc2011/shm/sys/sparc64/fhc/fhc.c soc2011/shm/sys/sparc64/fhc/fhcreg.h soc2011/shm/sys/sparc64/include/ soc2011/shm/sys/sparc64/include/_bus.h soc2011/shm/sys/sparc64/include/_inttypes.h soc2011/shm/sys/sparc64/include/_limits.h soc2011/shm/sys/sparc64/include/_stdint.h soc2011/shm/sys/sparc64/include/_types.h soc2011/shm/sys/sparc64/include/asi.h soc2011/shm/sys/sparc64/include/asm.h soc2011/shm/sys/sparc64/include/asmacros.h soc2011/shm/sys/sparc64/include/atomic.h soc2011/shm/sys/sparc64/include/bus.h soc2011/shm/sys/sparc64/include/bus_common.h soc2011/shm/sys/sparc64/include/bus_dma.h soc2011/shm/sys/sparc64/include/bus_private.h soc2011/shm/sys/sparc64/include/cache.h soc2011/shm/sys/sparc64/include/ccr.h soc2011/shm/sys/sparc64/include/clock.h soc2011/shm/sys/sparc64/include/cmt.h soc2011/shm/sys/sparc64/include/cpu.h soc2011/shm/sys/sparc64/include/cpufunc.h soc2011/shm/sys/sparc64/include/db_machdep.h soc2011/shm/sys/sparc64/include/dcr.h soc2011/shm/sys/sparc64/include/elf.h soc2011/shm/sys/sparc64/include/endian.h soc2011/shm/sys/sparc64/include/exec.h soc2011/shm/sys/sparc64/include/fireplane.h soc2011/shm/sys/sparc64/include/float.h soc2011/shm/sys/sparc64/include/floatingpoint.h soc2011/shm/sys/sparc64/include/fp.h soc2011/shm/sys/sparc64/include/frame.h soc2011/shm/sys/sparc64/include/fsr.h soc2011/shm/sys/sparc64/include/gdb_machdep.h soc2011/shm/sys/sparc64/include/idprom.h soc2011/shm/sys/sparc64/include/ieee.h soc2011/shm/sys/sparc64/include/ieeefp.h soc2011/shm/sys/sparc64/include/in_cksum.h soc2011/shm/sys/sparc64/include/instr.h soc2011/shm/sys/sparc64/include/intr_machdep.h soc2011/shm/sys/sparc64/include/iommureg.h soc2011/shm/sys/sparc64/include/iommuvar.h soc2011/shm/sys/sparc64/include/jbus.h soc2011/shm/sys/sparc64/include/kdb.h soc2011/shm/sys/sparc64/include/kerneldump.h soc2011/shm/sys/sparc64/include/ktr.h soc2011/shm/sys/sparc64/include/limits.h soc2011/shm/sys/sparc64/include/lsu.h soc2011/shm/sys/sparc64/include/mcntl.h soc2011/shm/sys/sparc64/include/md_var.h soc2011/shm/sys/sparc64/include/memdev.h soc2011/shm/sys/sparc64/include/metadata.h soc2011/shm/sys/sparc64/include/mutex.h soc2011/shm/sys/sparc64/include/nexusvar.h soc2011/shm/sys/sparc64/include/ofw_machdep.h soc2011/shm/sys/sparc64/include/ofw_mem.h soc2011/shm/sys/sparc64/include/ofw_nexus.h soc2011/shm/sys/sparc64/include/param.h soc2011/shm/sys/sparc64/include/pcb.h soc2011/shm/sys/sparc64/include/pcpu.h soc2011/shm/sys/sparc64/include/pmap.h soc2011/shm/sys/sparc64/include/pmc_mdep.h soc2011/shm/sys/sparc64/include/proc.h soc2011/shm/sys/sparc64/include/profile.h soc2011/shm/sys/sparc64/include/pstate.h soc2011/shm/sys/sparc64/include/ptrace.h soc2011/shm/sys/sparc64/include/reg.h soc2011/shm/sys/sparc64/include/reloc.h soc2011/shm/sys/sparc64/include/resource.h soc2011/shm/sys/sparc64/include/runq.h soc2011/shm/sys/sparc64/include/sc_machdep.h soc2011/shm/sys/sparc64/include/setjmp.h soc2011/shm/sys/sparc64/include/sf_buf.h soc2011/shm/sys/sparc64/include/sigframe.h soc2011/shm/sys/sparc64/include/signal.h soc2011/shm/sys/sparc64/include/smp.h soc2011/shm/sys/sparc64/include/stack.h soc2011/shm/sys/sparc64/include/stdarg.h soc2011/shm/sys/sparc64/include/sysarch.h soc2011/shm/sys/sparc64/include/tick.h soc2011/shm/sys/sparc64/include/tlb.h soc2011/shm/sys/sparc64/include/trap.h soc2011/shm/sys/sparc64/include/tsb.h soc2011/shm/sys/sparc64/include/tstate.h soc2011/shm/sys/sparc64/include/tte.h soc2011/shm/sys/sparc64/include/ucontext.h soc2011/shm/sys/sparc64/include/upa.h soc2011/shm/sys/sparc64/include/utrap.h soc2011/shm/sys/sparc64/include/varargs.h soc2011/shm/sys/sparc64/include/ver.h soc2011/shm/sys/sparc64/include/vm.h soc2011/shm/sys/sparc64/include/vmparam.h soc2011/shm/sys/sparc64/include/watch.h soc2011/shm/sys/sparc64/include/wstate.h soc2011/shm/sys/sparc64/isa/ soc2011/shm/sys/sparc64/isa/isa.c soc2011/shm/sys/sparc64/isa/isa_dma.c soc2011/shm/sys/sparc64/isa/ofw_isa.c soc2011/shm/sys/sparc64/isa/ofw_isa.h soc2011/shm/sys/sparc64/pci/ soc2011/shm/sys/sparc64/pci/apb.c soc2011/shm/sys/sparc64/pci/fire.c soc2011/shm/sys/sparc64/pci/firereg.h soc2011/shm/sys/sparc64/pci/firevar.h soc2011/shm/sys/sparc64/pci/ofw_pci.h soc2011/shm/sys/sparc64/pci/ofw_pcib.c soc2011/shm/sys/sparc64/pci/ofw_pcib_subr.c soc2011/shm/sys/sparc64/pci/ofw_pcib_subr.h soc2011/shm/sys/sparc64/pci/ofw_pcibus.c soc2011/shm/sys/sparc64/pci/psycho.c soc2011/shm/sys/sparc64/pci/psychoreg.h soc2011/shm/sys/sparc64/pci/psychovar.h soc2011/shm/sys/sparc64/pci/schizo.c soc2011/shm/sys/sparc64/pci/schizoreg.h soc2011/shm/sys/sparc64/pci/schizovar.h soc2011/shm/sys/sparc64/sbus/ soc2011/shm/sys/sparc64/sbus/dma_sbus.c soc2011/shm/sys/sparc64/sbus/lsi64854.c soc2011/shm/sys/sparc64/sbus/lsi64854reg.h soc2011/shm/sys/sparc64/sbus/lsi64854var.h soc2011/shm/sys/sparc64/sbus/ofw_sbus.h soc2011/shm/sys/sparc64/sbus/sbus.c soc2011/shm/sys/sparc64/sbus/sbusreg.h soc2011/shm/sys/sparc64/sbus/sbusvar.h soc2011/shm/sys/sparc64/sparc64/ soc2011/shm/sys/sparc64/sparc64/ata_machdep.c soc2011/shm/sys/sparc64/sparc64/autoconf.c soc2011/shm/sys/sparc64/sparc64/bus_machdep.c soc2011/shm/sys/sparc64/sparc64/cache.c soc2011/shm/sys/sparc64/sparc64/cheetah.c soc2011/shm/sys/sparc64/sparc64/clock.c soc2011/shm/sys/sparc64/sparc64/counter.c soc2011/shm/sys/sparc64/sparc64/db_disasm.c soc2011/shm/sys/sparc64/sparc64/db_hwwatch.c soc2011/shm/sys/sparc64/sparc64/db_interface.c soc2011/shm/sys/sparc64/sparc64/db_trace.c soc2011/shm/sys/sparc64/sparc64/dump_machdep.c soc2011/shm/sys/sparc64/sparc64/eeprom.c soc2011/shm/sys/sparc64/sparc64/elf_machdep.c soc2011/shm/sys/sparc64/sparc64/exception.S soc2011/shm/sys/sparc64/sparc64/gdb_machdep.c soc2011/shm/sys/sparc64/sparc64/genassym.c soc2011/shm/sys/sparc64/sparc64/identcpu.c soc2011/shm/sys/sparc64/sparc64/in_cksum.c soc2011/shm/sys/sparc64/sparc64/interrupt.S soc2011/shm/sys/sparc64/sparc64/intr_machdep.c soc2011/shm/sys/sparc64/sparc64/iommu.c soc2011/shm/sys/sparc64/sparc64/jbusppm.c soc2011/shm/sys/sparc64/sparc64/locore.S soc2011/shm/sys/sparc64/sparc64/machdep.c soc2011/shm/sys/sparc64/sparc64/mem.c soc2011/shm/sys/sparc64/sparc64/mp_exception.S soc2011/shm/sys/sparc64/sparc64/mp_locore.S soc2011/shm/sys/sparc64/sparc64/mp_machdep.c soc2011/shm/sys/sparc64/sparc64/nexus.c soc2011/shm/sys/sparc64/sparc64/ofw_machdep.c soc2011/shm/sys/sparc64/sparc64/pmap.c soc2011/shm/sys/sparc64/sparc64/prof_machdep.c soc2011/shm/sys/sparc64/sparc64/rtc.c soc2011/shm/sys/sparc64/sparc64/rwindow.c soc2011/shm/sys/sparc64/sparc64/sc_machdep.c soc2011/shm/sys/sparc64/sparc64/schppm.c soc2011/shm/sys/sparc64/sparc64/spitfire.c soc2011/shm/sys/sparc64/sparc64/stack_machdep.c soc2011/shm/sys/sparc64/sparc64/support.S soc2011/shm/sys/sparc64/sparc64/swtch.S soc2011/shm/sys/sparc64/sparc64/sys_machdep.c soc2011/shm/sys/sparc64/sparc64/tick.c soc2011/shm/sys/sparc64/sparc64/tlb.c soc2011/shm/sys/sparc64/sparc64/trap.c soc2011/shm/sys/sparc64/sparc64/tsb.c soc2011/shm/sys/sparc64/sparc64/uio_machdep.c soc2011/shm/sys/sparc64/sparc64/upa.c soc2011/shm/sys/sparc64/sparc64/vm_machdep.c soc2011/shm/sys/sparc64/sparc64/zeus.c soc2011/shm/sys/sun4v/ soc2011/shm/sys/sun4v/cddl/ soc2011/shm/sys/sun4v/cddl/mdesc/ soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_diff.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_findname.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_findnodeprop.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_fini.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_getbinsize.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_getgen.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_getpropdata.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_getpropstr.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_getpropval.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_init_intern.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_nodecount.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_rootnode.c soc2011/shm/sys/sun4v/cddl/mdesc/mdesc_scandag.c soc2011/shm/sys/sun4v/cddl/t1_copy.S soc2011/shm/sys/sun4v/compile/ soc2011/shm/sys/sun4v/compile/.cvsignore soc2011/shm/sys/sun4v/conf/ soc2011/shm/sys/sun4v/conf/.cvsignore soc2011/shm/sys/sun4v/conf/DEFAULTS soc2011/shm/sys/sun4v/conf/GENERIC soc2011/shm/sys/sun4v/conf/GENERIC.hints soc2011/shm/sys/sun4v/conf/Makefile soc2011/shm/sys/sun4v/conf/NOTES soc2011/shm/sys/sun4v/include/ soc2011/shm/sys/sun4v/include/_bus.h soc2011/shm/sys/sun4v/include/_inttypes.h soc2011/shm/sys/sun4v/include/_limits.h soc2011/shm/sys/sun4v/include/_stdint.h soc2011/shm/sys/sun4v/include/_types.h soc2011/shm/sys/sun4v/include/asi.h soc2011/shm/sys/sun4v/include/asm.h soc2011/shm/sys/sun4v/include/asmacros.h soc2011/shm/sys/sun4v/include/atomic.h soc2011/shm/sys/sun4v/include/bus.h soc2011/shm/sys/sun4v/include/bus_dma.h soc2011/shm/sys/sun4v/include/bus_private.h soc2011/shm/sys/sun4v/include/ccr.h soc2011/shm/sys/sun4v/include/cddl/ soc2011/shm/sys/sun4v/include/cddl/mdesc.h soc2011/shm/sys/sun4v/include/cddl/mdesc_impl.h soc2011/shm/sys/sun4v/include/clock.h soc2011/shm/sys/sun4v/include/cmt.h soc2011/shm/sys/sun4v/include/cpu.h soc2011/shm/sys/sun4v/include/cpufunc.h soc2011/shm/sys/sun4v/include/db_machdep.h soc2011/shm/sys/sun4v/include/elf.h soc2011/shm/sys/sun4v/include/endian.h soc2011/shm/sys/sun4v/include/exec.h soc2011/shm/sys/sun4v/include/fireplane.h soc2011/shm/sys/sun4v/include/float.h soc2011/shm/sys/sun4v/include/floatingpoint.h soc2011/shm/sys/sun4v/include/fp.h soc2011/shm/sys/sun4v/include/frame.h soc2011/shm/sys/sun4v/include/fsr.h soc2011/shm/sys/sun4v/include/gdb_machdep.h soc2011/shm/sys/sun4v/include/hv_api.h soc2011/shm/sys/sun4v/include/hv_pcivar.h soc2011/shm/sys/sun4v/include/hviommu.h soc2011/shm/sys/sun4v/include/hypervisorvar.h soc2011/shm/sys/sun4v/include/idprom.h soc2011/shm/sys/sun4v/include/ieee.h soc2011/shm/sys/sun4v/include/ieeefp.h soc2011/shm/sys/sun4v/include/in_cksum.h soc2011/shm/sys/sun4v/include/instr.h soc2011/shm/sys/sun4v/include/intr_machdep.h soc2011/shm/sys/sun4v/include/jbus.h soc2011/shm/sys/sun4v/include/kdb.h soc2011/shm/sys/sun4v/include/kerneldump.h soc2011/shm/sys/sun4v/include/ktr.h soc2011/shm/sys/sun4v/include/limits.h soc2011/shm/sys/sun4v/include/lsu.h soc2011/shm/sys/sun4v/include/md_var.h soc2011/shm/sys/sun4v/include/mdesc_bus.h soc2011/shm/sys/sun4v/include/mdesc_bus_subr.h soc2011/shm/sys/sun4v/include/memdev.h soc2011/shm/sys/sun4v/include/metadata.h soc2011/shm/sys/sun4v/include/mmu.h soc2011/shm/sys/sun4v/include/mutex.h soc2011/shm/sys/sun4v/include/nexusvar.h soc2011/shm/sys/sun4v/include/ofw_machdep.h soc2011/shm/sys/sun4v/include/ofw_mem.h soc2011/shm/sys/sun4v/include/ofw_nexus.h soc2011/shm/sys/sun4v/include/param.h soc2011/shm/sys/sun4v/include/pcb.h soc2011/shm/sys/sun4v/include/pcpu.h soc2011/shm/sys/sun4v/include/pmap.h soc2011/shm/sys/sun4v/include/pmc_mdep.h soc2011/shm/sys/sun4v/include/proc.h soc2011/shm/sys/sun4v/include/profile.h soc2011/shm/sys/sun4v/include/pstate.h soc2011/shm/sys/sun4v/include/ptrace.h soc2011/shm/sys/sun4v/include/reg.h soc2011/shm/sys/sun4v/include/reloc.h soc2011/shm/sys/sun4v/include/resource.h soc2011/shm/sys/sun4v/include/runq.h soc2011/shm/sys/sun4v/include/sc_machdep.h soc2011/shm/sys/sun4v/include/setjmp.h soc2011/shm/sys/sun4v/include/sf_buf.h soc2011/shm/sys/sun4v/include/sigframe.h soc2011/shm/sys/sun4v/include/signal.h soc2011/shm/sys/sun4v/include/smp.h soc2011/shm/sys/sun4v/include/stack.h soc2011/shm/sys/sun4v/include/stdarg.h soc2011/shm/sys/sun4v/include/sun4v_cpufunc.h soc2011/shm/sys/sun4v/include/sysarch.h soc2011/shm/sys/sun4v/include/tick.h soc2011/shm/sys/sun4v/include/tlb.h soc2011/shm/sys/sun4v/include/trap.h soc2011/shm/sys/sun4v/include/tsb.h soc2011/shm/sys/sun4v/include/tstate.h soc2011/shm/sys/sun4v/include/tte.h soc2011/shm/sys/sun4v/include/tte_hash.h soc2011/shm/sys/sun4v/include/ucontext.h soc2011/shm/sys/sun4v/include/upa.h soc2011/shm/sys/sun4v/include/utrap.h soc2011/shm/sys/sun4v/include/varargs.h soc2011/shm/sys/sun4v/include/ver.h soc2011/shm/sys/sun4v/include/vm.h soc2011/shm/sys/sun4v/include/vmparam.h soc2011/shm/sys/sun4v/include/watch.h soc2011/shm/sys/sun4v/include/wstate.h soc2011/shm/sys/sun4v/mdesc/ soc2011/shm/sys/sun4v/mdesc/mdesc_bus_if.m soc2011/shm/sys/sun4v/mdesc/mdesc_bus_subr.c soc2011/shm/sys/sun4v/mdesc/mdesc_init.c soc2011/shm/sys/sun4v/mdesc/mdesc_subr.c soc2011/shm/sys/sun4v/mdesc/mdesc_vdevfindnode.c soc2011/shm/sys/sun4v/mdesc/mdesc_vdevfindval.c soc2011/shm/sys/sun4v/sun4v/ soc2011/shm/sys/sun4v/sun4v/bus_machdep.c soc2011/shm/sys/sun4v/sun4v/clock.c soc2011/shm/sys/sun4v/sun4v/db_hwwatch.c soc2011/shm/sys/sun4v/sun4v/db_interface.c soc2011/shm/sys/sun4v/sun4v/db_trace.c soc2011/shm/sys/sun4v/sun4v/dump_machdep.c soc2011/shm/sys/sun4v/sun4v/exception.S soc2011/shm/sys/sun4v/sun4v/hcall.S soc2011/shm/sys/sun4v/sun4v/hv_pci.c soc2011/shm/sys/sun4v/sun4v/hvcons.c soc2011/shm/sys/sun4v/sun4v/hviommu.c soc2011/shm/sys/sun4v/sun4v/interrupt.S soc2011/shm/sys/sun4v/sun4v/intr_machdep.c soc2011/shm/sys/sun4v/sun4v/locore.S soc2011/shm/sys/sun4v/sun4v/machdep.c soc2011/shm/sys/sun4v/sun4v/mp_exception.S soc2011/shm/sys/sun4v/sun4v/mp_locore.S soc2011/shm/sys/sun4v/sun4v/mp_machdep.c soc2011/shm/sys/sun4v/sun4v/nexus.c soc2011/shm/sys/sun4v/sun4v/pmap.c soc2011/shm/sys/sun4v/sun4v/rtc.c soc2011/shm/sys/sun4v/sun4v/simdisk.c soc2011/shm/sys/sun4v/sun4v/stack_machdep.c soc2011/shm/sys/sun4v/sun4v/support.S soc2011/shm/sys/sun4v/sun4v/swtch.S soc2011/shm/sys/sun4v/sun4v/tick.c soc2011/shm/sys/sun4v/sun4v/trap.c soc2011/shm/sys/sun4v/sun4v/trap_trace.S soc2011/shm/sys/sun4v/sun4v/tsb.c soc2011/shm/sys/sun4v/sun4v/tte.c soc2011/shm/sys/sun4v/sun4v/tte_hash.c soc2011/shm/sys/sun4v/sun4v/uio_machdep.c soc2011/shm/sys/sun4v/sun4v/vm_machdep.c soc2011/shm/sys/sun4v/sun4v/vnex.c soc2011/shm/sys/sun4v/sun4v/wbuf.S soc2011/shm/sys/sys/ soc2011/shm/sys/sys/_bus_dma.h soc2011/shm/sys/sys/_iovec.h soc2011/shm/sys/sys/_lock.h soc2011/shm/sys/sys/_lockmgr.h soc2011/shm/sys/sys/_mutex.h soc2011/shm/sys/sys/_null.h soc2011/shm/sys/sys/_pthreadtypes.h soc2011/shm/sys/sys/_rmlock.h soc2011/shm/sys/sys/_rwlock.h soc2011/shm/sys/sys/_semaphore.h soc2011/shm/sys/sys/_sigset.h soc2011/shm/sys/sys/_stack.h soc2011/shm/sys/sys/_sx.h soc2011/shm/sys/sys/_task.h soc2011/shm/sys/sys/_timespec.h soc2011/shm/sys/sys/_timeval.h soc2011/shm/sys/sys/_types.h soc2011/shm/sys/sys/aac_ioctl.h soc2011/shm/sys/sys/acct.h soc2011/shm/sys/sys/acl.h soc2011/shm/sys/sys/agpio.h soc2011/shm/sys/sys/aio.h soc2011/shm/sys/sys/alq.h soc2011/shm/sys/sys/apm.h soc2011/shm/sys/sys/assym.h soc2011/shm/sys/sys/ata.h soc2011/shm/sys/sys/bio.h soc2011/shm/sys/sys/bitstring.h soc2011/shm/sys/sys/blist.h soc2011/shm/sys/sys/buf.h soc2011/shm/sys/sys/buf_ring.h soc2011/shm/sys/sys/bufobj.h soc2011/shm/sys/sys/bus.h soc2011/shm/sys/sys/bus_dma.h soc2011/shm/sys/sys/callout.h soc2011/shm/sys/sys/cdefs.h soc2011/shm/sys/sys/cdio.h soc2011/shm/sys/sys/cdrio.h soc2011/shm/sys/sys/cfictl.h soc2011/shm/sys/sys/chio.h soc2011/shm/sys/sys/clock.h soc2011/shm/sys/sys/condvar.h soc2011/shm/sys/sys/conf.h soc2011/shm/sys/sys/cons.h soc2011/shm/sys/sys/consio.h soc2011/shm/sys/sys/copyright.h soc2011/shm/sys/sys/cpu.h soc2011/shm/sys/sys/cpuctl.h soc2011/shm/sys/sys/cpuset.h soc2011/shm/sys/sys/ctype.h soc2011/shm/sys/sys/dataacq.h soc2011/shm/sys/sys/device_port.h soc2011/shm/sys/sys/devicestat.h soc2011/shm/sys/sys/digiio.h soc2011/shm/sys/sys/dir.h soc2011/shm/sys/sys/dirent.h soc2011/shm/sys/sys/disk.h soc2011/shm/sys/sys/disklabel.h soc2011/shm/sys/sys/diskmbr.h soc2011/shm/sys/sys/diskpc98.h soc2011/shm/sys/sys/dkstat.h soc2011/shm/sys/sys/domain.h soc2011/shm/sys/sys/dtrace_bsd.h soc2011/shm/sys/sys/dvdio.h soc2011/shm/sys/sys/elf.h soc2011/shm/sys/sys/elf32.h soc2011/shm/sys/sys/elf64.h soc2011/shm/sys/sys/elf_common.h soc2011/shm/sys/sys/elf_generic.h soc2011/shm/sys/sys/endian.h soc2011/shm/sys/sys/errno.h soc2011/shm/sys/sys/eui64.h soc2011/shm/sys/sys/event.h soc2011/shm/sys/sys/eventhandler.h soc2011/shm/sys/sys/eventvar.h soc2011/shm/sys/sys/exec.h soc2011/shm/sys/sys/extattr.h soc2011/shm/sys/sys/fail.h soc2011/shm/sys/sys/fbio.h soc2011/shm/sys/sys/fcntl.h soc2011/shm/sys/sys/fdcio.h soc2011/shm/sys/sys/file.h soc2011/shm/sys/sys/filedesc.h soc2011/shm/sys/sys/filio.h soc2011/shm/sys/sys/firmware.h soc2011/shm/sys/sys/fnv_hash.h soc2011/shm/sys/sys/gmon.h soc2011/shm/sys/sys/gpt.h soc2011/shm/sys/sys/hash.h soc2011/shm/sys/sys/iconv.h soc2011/shm/sys/sys/imgact.h soc2011/shm/sys/sys/imgact_aout.h soc2011/shm/sys/sys/imgact_elf.h soc2011/shm/sys/sys/inflate.h soc2011/shm/sys/sys/interrupt.h soc2011/shm/sys/sys/ioccom.h soc2011/shm/sys/sys/ioctl.h soc2011/shm/sys/sys/ioctl_compat.h soc2011/shm/sys/sys/ipc.h soc2011/shm/sys/sys/ipmi.h soc2011/shm/sys/sys/jail.h soc2011/shm/sys/sys/joystick.h soc2011/shm/sys/sys/kbio.h soc2011/shm/sys/sys/kdb.h soc2011/shm/sys/sys/kenv.h soc2011/shm/sys/sys/kernel.h soc2011/shm/sys/sys/kerneldump.h soc2011/shm/sys/sys/kobj.h soc2011/shm/sys/sys/ksem.h soc2011/shm/sys/sys/ksyms.h soc2011/shm/sys/sys/kthread.h soc2011/shm/sys/sys/ktr.h soc2011/shm/sys/sys/ktrace.h soc2011/shm/sys/sys/libkern.h soc2011/shm/sys/sys/limits.h soc2011/shm/sys/sys/link_aout.h soc2011/shm/sys/sys/link_elf.h soc2011/shm/sys/sys/linker.h soc2011/shm/sys/sys/linker_set.h soc2011/shm/sys/sys/lock.h soc2011/shm/sys/sys/lock_profile.h soc2011/shm/sys/sys/lockf.h soc2011/shm/sys/sys/lockmgr.h soc2011/shm/sys/sys/lockstat.h soc2011/shm/sys/sys/mac.h soc2011/shm/sys/sys/malloc.h soc2011/shm/sys/sys/mbpool.h soc2011/shm/sys/sys/mbuf.h soc2011/shm/sys/sys/mchain.h soc2011/shm/sys/sys/md4.h soc2011/shm/sys/sys/md5.h soc2011/shm/sys/sys/mdioctl.h soc2011/shm/sys/sys/memrange.h soc2011/shm/sys/sys/mman.h soc2011/shm/sys/sys/module.h soc2011/shm/sys/sys/mount.h soc2011/shm/sys/sys/mouse.h soc2011/shm/sys/sys/mpt_ioctl.h soc2011/shm/sys/sys/mqueue.h soc2011/shm/sys/sys/msg.h soc2011/shm/sys/sys/msgbuf.h soc2011/shm/sys/sys/mtio.h soc2011/shm/sys/sys/mutex.h soc2011/shm/sys/sys/namei.h soc2011/shm/sys/sys/nlist_aout.h soc2011/shm/sys/sys/osd.h soc2011/shm/sys/sys/param.h soc2011/shm/sys/sys/pciio.h soc2011/shm/sys/sys/pcpu.h soc2011/shm/sys/sys/pioctl.h soc2011/shm/sys/sys/pipe.h soc2011/shm/sys/sys/pmc.h soc2011/shm/sys/sys/pmckern.h soc2011/shm/sys/sys/pmclog.h soc2011/shm/sys/sys/poll.h soc2011/shm/sys/sys/posix4.h soc2011/shm/sys/sys/power.h soc2011/shm/sys/sys/priority.h soc2011/shm/sys/sys/priv.h soc2011/shm/sys/sys/proc.h soc2011/shm/sys/sys/procfs.h soc2011/shm/sys/sys/protosw.h soc2011/shm/sys/sys/ptio.h soc2011/shm/sys/sys/ptrace.h soc2011/shm/sys/sys/queue.h soc2011/shm/sys/sys/random.h soc2011/shm/sys/sys/reboot.h soc2011/shm/sys/sys/refcount.h soc2011/shm/sys/sys/regression.h soc2011/shm/sys/sys/resource.h soc2011/shm/sys/sys/resourcevar.h soc2011/shm/sys/sys/rman.h soc2011/shm/sys/sys/rmlock.h soc2011/shm/sys/sys/rtprio.h soc2011/shm/sys/sys/runq.h soc2011/shm/sys/sys/rwlock.h soc2011/shm/sys/sys/sbuf.h soc2011/shm/sys/sys/sched.h soc2011/shm/sys/sys/sdt.h soc2011/shm/sys/sys/select.h soc2011/shm/sys/sys/selinfo.h soc2011/shm/sys/sys/sem.h soc2011/shm/sys/sys/sema.h soc2011/shm/sys/sys/semaphore.h soc2011/shm/sys/sys/serial.h soc2011/shm/sys/sys/sf_buf.h soc2011/shm/sys/sys/sglist.h soc2011/shm/sys/sys/shm.h soc2011/shm/sys/sys/sigio.h soc2011/shm/sys/sys/signal.h soc2011/shm/sys/sys/signalvar.h soc2011/shm/sys/sys/sleepqueue.h soc2011/shm/sys/sys/smp.h soc2011/shm/sys/sys/snoop.h soc2011/shm/sys/sys/sockbuf.h soc2011/shm/sys/sys/socket.h soc2011/shm/sys/sys/socketvar.h soc2011/shm/sys/sys/sockio.h soc2011/shm/sys/sys/sockopt.h soc2011/shm/sys/sys/sockstate.h soc2011/shm/sys/sys/soundcard.h soc2011/shm/sys/sys/stack.h soc2011/shm/sys/sys/stat.h soc2011/shm/sys/sys/statvfs.h soc2011/shm/sys/sys/stddef.h soc2011/shm/sys/sys/stdint.h soc2011/shm/sys/sys/sun_disklabel.h soc2011/shm/sys/sys/sx.h soc2011/shm/sys/sys/syscall.h soc2011/shm/sys/sys/syscall.mk soc2011/shm/sys/sys/syscallsubr.h soc2011/shm/sys/sys/sysctl.h soc2011/shm/sys/sys/sysent.h soc2011/shm/sys/sys/syslimits.h soc2011/shm/sys/sys/syslog.h soc2011/shm/sys/sys/sysproto.h soc2011/shm/sys/sys/systm.h soc2011/shm/sys/sys/taskqueue.h soc2011/shm/sys/sys/termios.h soc2011/shm/sys/sys/thr.h soc2011/shm/sys/sys/tiio.h soc2011/shm/sys/sys/time.h soc2011/shm/sys/sys/timeb.h soc2011/shm/sys/sys/timepps.h soc2011/shm/sys/sys/timers.h soc2011/shm/sys/sys/times.h soc2011/shm/sys/sys/timespec.h soc2011/shm/sys/sys/timetc.h soc2011/shm/sys/sys/timex.h soc2011/shm/sys/sys/tree.h soc2011/shm/sys/sys/tty.h soc2011/shm/sys/sys/ttycom.h soc2011/shm/sys/sys/ttydefaults.h soc2011/shm/sys/sys/ttydevsw.h soc2011/shm/sys/sys/ttydisc.h soc2011/shm/sys/sys/ttyhook.h soc2011/shm/sys/sys/ttyqueue.h soc2011/shm/sys/sys/turnstile.h soc2011/shm/sys/sys/types.h soc2011/shm/sys/sys/ucontext.h soc2011/shm/sys/sys/ucred.h soc2011/shm/sys/sys/uio.h soc2011/shm/sys/sys/umtx.h soc2011/shm/sys/sys/un.h soc2011/shm/sys/sys/unistd.h soc2011/shm/sys/sys/unpcb.h soc2011/shm/sys/sys/user.h soc2011/shm/sys/sys/utsname.h soc2011/shm/sys/sys/uuid.h soc2011/shm/sys/sys/vmmeter.h soc2011/shm/sys/sys/vnode.h soc2011/shm/sys/sys/vtoc.h soc2011/shm/sys/sys/wait.h soc2011/shm/sys/sys/watchdog.h soc2011/shm/sys/tesla/ soc2011/shm/sys/tesla/tesla.h (contents, props changed) soc2011/shm/sys/tesla/tesla_internal.h (contents, props changed) soc2011/shm/sys/tesla/tesla_registration.c (contents, props changed) soc2011/shm/sys/tesla/tesla_registration.h (contents, props changed) soc2011/shm/sys/tesla/tesla_state.c (contents, props changed) soc2011/shm/sys/tesla/tesla_state.h (contents, props changed) soc2011/shm/sys/tesla/tesla_state_global.c (contents, props changed) soc2011/shm/sys/tesla/tesla_state_perthread.c (contents, props changed) soc2011/shm/sys/tesla/tesla_util.c (contents, props changed) soc2011/shm/sys/tesla/tesla_util.h (contents, props changed) soc2011/shm/sys/tools/ soc2011/shm/sys/tools/acpi_quirks2h.awk soc2011/shm/sys/tools/bus_macro.sh soc2011/shm/sys/tools/embed_mfs.sh soc2011/shm/sys/tools/fw_stub.awk soc2011/shm/sys/tools/makeobjops.awk soc2011/shm/sys/tools/miidevs2h.awk soc2011/shm/sys/tools/pccarddevs2h.awk soc2011/shm/sys/tools/sound/ soc2011/shm/sys/tools/sound/emu10k1-mkalsa.sh soc2011/shm/sys/tools/sound/feeder_eq_mkfilter.awk soc2011/shm/sys/tools/sound/feeder_rate_mkfilter.awk soc2011/shm/sys/tools/sound/snd_fxdiv_gen.awk soc2011/shm/sys/tools/usbdevs2h.awk soc2011/shm/sys/tools/vnode_if.awk soc2011/shm/sys/ufs/ soc2011/shm/sys/ufs/ffs/ soc2011/shm/sys/ufs/ffs/README.snapshot soc2011/shm/sys/ufs/ffs/ffs_alloc.c soc2011/shm/sys/ufs/ffs/ffs_balloc.c soc2011/shm/sys/ufs/ffs/ffs_extern.h soc2011/shm/sys/ufs/ffs/ffs_inode.c soc2011/shm/sys/ufs/ffs/ffs_rawread.c soc2011/shm/sys/ufs/ffs/ffs_snapshot.c soc2011/shm/sys/ufs/ffs/ffs_softdep.c soc2011/shm/sys/ufs/ffs/ffs_subr.c soc2011/shm/sys/ufs/ffs/ffs_tables.c soc2011/shm/sys/ufs/ffs/ffs_vfsops.c soc2011/shm/sys/ufs/ffs/ffs_vnops.c soc2011/shm/sys/ufs/ffs/fs.h soc2011/shm/sys/ufs/ffs/softdep.h soc2011/shm/sys/ufs/ufs/ soc2011/shm/sys/ufs/ufs/README.acls soc2011/shm/sys/ufs/ufs/README.extattr soc2011/shm/sys/ufs/ufs/acl.h soc2011/shm/sys/ufs/ufs/dinode.h soc2011/shm/sys/ufs/ufs/dir.h soc2011/shm/sys/ufs/ufs/dirhash.h soc2011/shm/sys/ufs/ufs/extattr.h soc2011/shm/sys/ufs/ufs/gjournal.h soc2011/shm/sys/ufs/ufs/inode.h soc2011/shm/sys/ufs/ufs/quota.h soc2011/shm/sys/ufs/ufs/ufs_acl.c soc2011/shm/sys/ufs/ufs/ufs_bmap.c soc2011/shm/sys/ufs/ufs/ufs_dirhash.c soc2011/shm/sys/ufs/ufs/ufs_extattr.c soc2011/shm/sys/ufs/ufs/ufs_extern.h soc2011/shm/sys/ufs/ufs/ufs_gjournal.c soc2011/shm/sys/ufs/ufs/ufs_inode.c soc2011/shm/sys/ufs/ufs/ufs_lookup.c soc2011/shm/sys/ufs/ufs/ufs_quota.c soc2011/shm/sys/ufs/ufs/ufs_vfsops.c soc2011/shm/sys/ufs/ufs/ufs_vnops.c soc2011/shm/sys/ufs/ufs/ufsmount.h soc2011/shm/sys/vm/ soc2011/shm/sys/vm/default_pager.c soc2011/shm/sys/vm/device_pager.c soc2011/shm/sys/vm/memguard.c soc2011/shm/sys/vm/memguard.h soc2011/shm/sys/vm/phys_pager.c soc2011/shm/sys/vm/pmap.h soc2011/shm/sys/vm/redzone.c soc2011/shm/sys/vm/redzone.h soc2011/shm/sys/vm/sg_pager.c soc2011/shm/sys/vm/swap_pager.c soc2011/shm/sys/vm/swap_pager.h soc2011/shm/sys/vm/uma.h soc2011/shm/sys/vm/uma_core.c soc2011/shm/sys/vm/uma_dbg.c soc2011/shm/sys/vm/uma_dbg.h soc2011/shm/sys/vm/uma_int.h soc2011/shm/sys/vm/vm.h soc2011/shm/sys/vm/vm_contig.c soc2011/shm/sys/vm/vm_extern.h soc2011/shm/sys/vm/vm_fault.c soc2011/shm/sys/vm/vm_glue.c soc2011/shm/sys/vm/vm_init.c soc2011/shm/sys/vm/vm_kern.c soc2011/shm/sys/vm/vm_kern.h soc2011/shm/sys/vm/vm_map.c soc2011/shm/sys/vm/vm_map.h soc2011/shm/sys/vm/vm_meter.c soc2011/shm/sys/vm/vm_mmap.c soc2011/shm/sys/vm/vm_object.c soc2011/shm/sys/vm/vm_object.h soc2011/shm/sys/vm/vm_page.c soc2011/shm/sys/vm/vm_page.h soc2011/shm/sys/vm/vm_pageout.c soc2011/shm/sys/vm/vm_pageout.h soc2011/shm/sys/vm/vm_pager.c soc2011/shm/sys/vm/vm_pager.h soc2011/shm/sys/vm/vm_param.h soc2011/shm/sys/vm/vm_phys.c soc2011/shm/sys/vm/vm_phys.h soc2011/shm/sys/vm/vm_reserv.c soc2011/shm/sys/vm/vm_reserv.h soc2011/shm/sys/vm/vm_unix.c soc2011/shm/sys/vm/vm_zeroidle.c soc2011/shm/sys/vm/vnode_pager.c soc2011/shm/sys/vm/vnode_pager.h soc2011/shm/sys/xdr/ soc2011/shm/sys/xdr/xdr.c soc2011/shm/sys/xdr/xdr_array.c soc2011/shm/sys/xdr/xdr_mbuf.c soc2011/shm/sys/xdr/xdr_mem.c soc2011/shm/sys/xdr/xdr_reference.c soc2011/shm/sys/xdr/xdr_sizeof.c soc2011/shm/sys/xen/ soc2011/shm/sys/xen/evtchn/ soc2011/shm/sys/xen/evtchn.h soc2011/shm/sys/xen/evtchn/evtchn.c soc2011/shm/sys/xen/evtchn/evtchn_dev.c soc2011/shm/sys/xen/features.c soc2011/shm/sys/xen/features.h soc2011/shm/sys/xen/gnttab.c soc2011/shm/sys/xen/gnttab.h soc2011/shm/sys/xen/hypervisor.h soc2011/shm/sys/xen/interface/ soc2011/shm/sys/xen/interface/COPYING soc2011/shm/sys/xen/interface/acm.h soc2011/shm/sys/xen/interface/acm_ops.h soc2011/shm/sys/xen/interface/arch-ia64.h soc2011/shm/sys/xen/interface/arch-powerpc.h soc2011/shm/sys/xen/interface/arch-x86/ soc2011/shm/sys/xen/interface/arch-x86/cpuid.h soc2011/shm/sys/xen/interface/arch-x86/hvm/ soc2011/shm/sys/xen/interface/arch-x86/hvm/save.h soc2011/shm/sys/xen/interface/arch-x86/xen-mca.h soc2011/shm/sys/xen/interface/arch-x86/xen-x86_32.h soc2011/shm/sys/xen/interface/arch-x86/xen-x86_64.h soc2011/shm/sys/xen/interface/arch-x86/xen.h soc2011/shm/sys/xen/interface/arch-x86_32.h soc2011/shm/sys/xen/interface/arch-x86_64.h soc2011/shm/sys/xen/interface/callback.h soc2011/shm/sys/xen/interface/dom0_ops.h soc2011/shm/sys/xen/interface/domctl.h soc2011/shm/sys/xen/interface/elfnote.h soc2011/shm/sys/xen/interface/elfstructs.h soc2011/shm/sys/xen/interface/event_channel.h soc2011/shm/sys/xen/interface/features.h soc2011/shm/sys/xen/interface/foreign/ soc2011/shm/sys/xen/interface/foreign/Makefile soc2011/shm/sys/xen/interface/foreign/mkchecker.py soc2011/shm/sys/xen/interface/foreign/mkheader.py soc2011/shm/sys/xen/interface/foreign/reference.size soc2011/shm/sys/xen/interface/foreign/structs.py soc2011/shm/sys/xen/interface/grant_table.h soc2011/shm/sys/xen/interface/hvm/ soc2011/shm/sys/xen/interface/hvm/e820.h soc2011/shm/sys/xen/interface/hvm/hvm_info_table.h soc2011/shm/sys/xen/interface/hvm/hvm_op.h soc2011/shm/sys/xen/interface/hvm/ioreq.h soc2011/shm/sys/xen/interface/hvm/params.h soc2011/shm/sys/xen/interface/hvm/save.h soc2011/shm/sys/xen/interface/hvm/vmx_assist.h soc2011/shm/sys/xen/interface/io/ soc2011/shm/sys/xen/interface/io/blkif.h soc2011/shm/sys/xen/interface/io/console.h soc2011/shm/sys/xen/interface/io/fbif.h soc2011/shm/sys/xen/interface/io/kbdif.h soc2011/shm/sys/xen/interface/io/netif.h soc2011/shm/sys/xen/interface/io/pciif.h soc2011/shm/sys/xen/interface/io/protocols.h soc2011/shm/sys/xen/interface/io/ring.h soc2011/shm/sys/xen/interface/io/tpmif.h soc2011/shm/sys/xen/interface/io/xenbus.h soc2011/shm/sys/xen/interface/io/xs_wire.h soc2011/shm/sys/xen/interface/kexec.h soc2011/shm/sys/xen/interface/libelf.h soc2011/shm/sys/xen/interface/memory.h soc2011/shm/sys/xen/interface/nmi.h soc2011/shm/sys/xen/interface/physdev.h soc2011/shm/sys/xen/interface/platform.h soc2011/shm/sys/xen/interface/sched.h soc2011/shm/sys/xen/interface/sysctl.h soc2011/shm/sys/xen/interface/trace.h soc2011/shm/sys/xen/interface/vcpu.h soc2011/shm/sys/xen/interface/version.h soc2011/shm/sys/xen/interface/xen-compat.h soc2011/shm/sys/xen/interface/xen.h soc2011/shm/sys/xen/interface/xencomm.h soc2011/shm/sys/xen/interface/xenoprof.h soc2011/shm/sys/xen/reboot.c soc2011/shm/sys/xen/xen_intr.h soc2011/shm/sys/xen/xenbus/ soc2011/shm/sys/xen/xenbus/init.txt soc2011/shm/sys/xen/xenbus/xenbus_client.c soc2011/shm/sys/xen/xenbus/xenbus_comms.c soc2011/shm/sys/xen/xenbus/xenbus_comms.h soc2011/shm/sys/xen/xenbus/xenbus_dev.c soc2011/shm/sys/xen/xenbus/xenbus_if.m soc2011/shm/sys/xen/xenbus/xenbus_probe.c soc2011/shm/sys/xen/xenbus/xenbus_probe_backend.c soc2011/shm/sys/xen/xenbus/xenbus_xs.c soc2011/shm/sys/xen/xenbus/xenbusvar.h Deleted: soc2011/shm/TESLA/examples/example2/example2.spec Modified: soc2011/shm/TESLA/examples/example2/example2.c soc2011/shm/TESLA/instrumenter-tests/run-tests.sh soc2011/shm/TESLA/instrumenter-tests/tests/dec.out soc2011/shm/TESLA/instrumenter-tests/tests/field.out soc2011/shm/TESLA/instrumenter-tests/tests/field2.out soc2011/shm/TESLA/instrumenter-tests/tests/for.out soc2011/shm/TESLA/instrumenter-tests/tests/for2.out soc2011/shm/TESLA/instrumenter-tests/tests/inc.out soc2011/shm/TESLA/instrumenter-tests/tests/while3.out soc2011/shm/TESLA/instrumenter-tests/tests/while4.out soc2011/shm/TESLA/libtesla/Makefile soc2011/shm/TESLA/libtesla/tesla_registration.c soc2011/shm/clang/examples/TeslaInstrumenter/Instrumentation.cpp Modified: soc2011/shm/TESLA/examples/example2/example2.c ============================================================================== --- soc2011/shm/TESLA/examples/example2/example2.c Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/examples/example2/example2.c Wed Jul 13 00:30:41 2011 (r224166) @@ -27,7 +27,7 @@ { int i; - for (i = 0; x[i]; i++) + for (i = 0; x[i] != 0; i++) t->state = atoi(x[i]); return i; Added: soc2011/shm/TESLA/examples/example2/instrumentation.spec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/examples/example2/instrumentation.spec Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1 @@ +field_assign,struct test,state Modified: soc2011/shm/TESLA/instrumenter-tests/run-tests.sh ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/run-tests.sh Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/run-tests.sh Wed Jul 13 00:30:41 2011 (r224166) @@ -55,7 +55,7 @@ return; fi; - cp $TEST_OUT ${TEST_DIR}/${3} + #cp $TEST_OUT ${TEST_DIR}/${3} diff ${TEST_DIR}/${3} ${TEST_OUT} > /dev/null @@ -90,7 +90,9 @@ run_test field.c field.ins field.out 0 run_test field2.c field2.ins field2.out 0 run_test field3.c field3.ins field3.out 0 +run_test boassign.c boassign.ins boassign.out 0 run_test double.c double.ins double.out 0 +run_test fieldif.c fieldif.ins fieldif.out 0 clean_up Added: soc2011/shm/TESLA/instrumenter-tests/tests/boassign.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/instrumenter-tests/tests/boassign.c Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,18 @@ +struct test { int x; }; + +int test(int a) +{ + struct test c; + c.x = a; + c.x *= a; + c.x /= c.x+8; + c.x += c.x+7; + c.x -= c.x+6; + c.x <<= c.x+5; + c.x >>= c.x+4; + c.x &= c.x+3; + c.x |= c.x+2; + c.x ^= c.x+1; + c.x %= c.x+10; + return c.x; +} Added: soc2011/shm/TESLA/instrumenter-tests/tests/boassign.ins ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/instrumenter-tests/tests/boassign.ins Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1 @@ +field_assign,struct test,x Added: soc2011/shm/TESLA/instrumenter-tests/tests/boassign.out ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/instrumenter-tests/tests/boassign.out Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,60 @@ +struct __va_list_tag { + unsigned int gp_offset; + unsigned int fp_offset; + void *overflow_arg_area; + void *reg_save_area; +}; +typedef struct __va_list_tag __va_list_tag; +struct test { + int x; +}; +int test(int a) { + struct test c; + int __tesla_tmp_assign; + __tesla_tmp_assign = a; + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x * (a); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x / (c.x + 8); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x + (c.x + 7); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x - (c.x + 6); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x << (c.x + 5); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x >> (c.x + 4); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x & (c.x + 3); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x | (c.x + 2); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x ^ (c.x + 1); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + int __tesla_tmp_assign; + __tesla_tmp_assign = c.x % (c.x + 10); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + c.x = __tesla_tmp_assign; + return c.x; +} + + Modified: soc2011/shm/TESLA/instrumenter-tests/tests/dec.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/dec.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/dec.out Wed Jul 13 00:30:41 2011 (r224166) @@ -12,7 +12,7 @@ struct test *c; int __tesla_tmp_assign; __tesla_tmp_assign = 1; - __tesla_event_field_assign_struct_test_x(c); + __tesla_event_field_assign_struct_test_x(c, __tesla_tmp_assign); c->x = __tesla_tmp_assign; c->x++; return c->x; Modified: soc2011/shm/TESLA/instrumenter-tests/tests/field.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/field.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/field.out Wed Jul 13 00:30:41 2011 (r224166) @@ -12,7 +12,7 @@ struct test *c; int __tesla_tmp_assign; __tesla_tmp_assign = (c->x = c->x + 1) + 2; - __tesla_event_field_assign_struct_test_x(c); + __tesla_event_field_assign_struct_test_x(c, __tesla_tmp_assign); c->x = __tesla_tmp_assign; return c->x = 2; } Modified: soc2011/shm/TESLA/instrumenter-tests/tests/field2.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/field2.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/field2.out Wed Jul 13 00:30:41 2011 (r224166) @@ -12,7 +12,7 @@ struct test *c; int __tesla_tmp_assign; __tesla_tmp_assign = c->x; - __tesla_event_field_assign_struct_test_x(c); + __tesla_event_field_assign_struct_test_x(c, __tesla_tmp_assign); c->x = __tesla_tmp_assign; return 2; } Added: soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.c Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,9 @@ +struct test { int x; }; + +int test(int a) +{ + struct test c; + if ((c.x = a/2) != 0) + return c.x+1; + return c.x; +} Added: soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.ins ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.ins Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1 @@ +field_assign,struct test,x Added: soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.out ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/instrumenter-tests/tests/fieldif.out Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,22 @@ +struct __va_list_tag { + unsigned int gp_offset; + unsigned int fp_offset; + void *overflow_arg_area; + void *reg_save_area; +}; +typedef struct __va_list_tag __va_list_tag; +struct test { + int x; +}; +int test(int a) { + struct test c; + int __tesla_tmp_assign; + __tesla_tmp_assign = a / 2; + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); + if ((c.x = __tesla_tmp_assign) != 0) { + return c.x + 1; + } + return c.x; +} + + Modified: soc2011/shm/TESLA/instrumenter-tests/tests/for.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/for.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/for.out Wed Jul 13 00:30:41 2011 (r224166) @@ -15,7 +15,7 @@ { int __tesla_tmp_assign; __tesla_tmp_assign = a++; - __tesla_event_field_assign_struct_test_x(c); + __tesla_event_field_assign_struct_test_x(c, __tesla_tmp_assign); c->x = __tesla_tmp_assign; } return b; Modified: soc2011/shm/TESLA/instrumenter-tests/tests/for2.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/for2.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/for2.out Wed Jul 13 00:30:41 2011 (r224166) @@ -15,7 +15,7 @@ { int __tesla_tmp_assign; __tesla_tmp_assign = a--; - __tesla_event_field_assign_struct_test_x(c); + __tesla_event_field_assign_struct_test_x(c, __tesla_tmp_assign); c->x = __tesla_tmp_assign; } return b; Modified: soc2011/shm/TESLA/instrumenter-tests/tests/inc.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/inc.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/inc.out Wed Jul 13 00:30:41 2011 (r224166) @@ -12,7 +12,7 @@ struct test *c; int __tesla_tmp_assign; __tesla_tmp_assign = 1; - __tesla_event_field_assign_struct_test_x(c); + __tesla_event_field_assign_struct_test_x(c, __tesla_tmp_assign); c->x = __tesla_tmp_assign; c->x++; return c->x; Modified: soc2011/shm/TESLA/instrumenter-tests/tests/while3.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/while3.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/while3.out Wed Jul 13 00:30:41 2011 (r224166) @@ -17,7 +17,7 @@ { int __tesla_tmp_assign; __tesla_tmp_assign = test(a - 1); - __tesla_event_field_assign_struct_test_x(&c); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); c.x = __tesla_tmp_assign; int __tesla_tmp_retval; __tesla_tmp_retval = c.x; Modified: soc2011/shm/TESLA/instrumenter-tests/tests/while4.out ============================================================================== --- soc2011/shm/TESLA/instrumenter-tests/tests/while4.out Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/instrumenter-tests/tests/while4.out Wed Jul 13 00:30:41 2011 (r224166) @@ -18,7 +18,7 @@ { int __tesla_tmp_assign; __tesla_tmp_assign = test(a - 1); - __tesla_event_field_assign_struct_test_x(&c); + __tesla_event_field_assign_struct_test_x(&c, __tesla_tmp_assign); c.x = __tesla_tmp_assign; int __tesla_tmp_retval; __tesla_tmp_retval = c.x; @@ -28,7 +28,7 @@ b = 10; int __tesla_tmp_assign; __tesla_tmp_assign = test(a - 1); - __tesla_event_field_assign_struct_test_x(d); + __tesla_event_field_assign_struct_test_x(d, __tesla_tmp_assign); d->x = __tesla_tmp_assign; int __tesla_tmp_retval; __tesla_tmp_retval = b; Modified: soc2011/shm/TESLA/libtesla/Makefile ============================================================================== --- soc2011/shm/TESLA/libtesla/Makefile Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/libtesla/Makefile Wed Jul 13 00:30:41 2011 (r224166) @@ -1,4 +1,4 @@ -CFLAGS=-g -Wall -I.. +CFLAGS=-g -Wall -I.. -Werror ALL=tesla_state.o tesla_state_global.o tesla_state_perthread.o \ tesla_registration.o tesla_util.o Modified: soc2011/shm/TESLA/libtesla/tesla_registration.c ============================================================================== --- soc2011/shm/TESLA/libtesla/tesla_registration.c Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/TESLA/libtesla/tesla_registration.c Wed Jul 13 00:30:41 2011 (r224166) @@ -46,6 +46,21 @@ * form. */ #ifdef _KERNEL + +void +__tesla_event_function_prologue_syscallenter(void **tesla_data, + struct thread *td, struct syscall_args *sa); + +void +__tesla_event_function_return_syscallenter(void **tesla_data); + +void +__tesla_event_function_prologue_syscallret(void **tesla_data, + struct thread *td, int error, struct syscall_args *sa); + +void +__tesla_event_function_return_syscallret(void **tesla_data); + void __tesla_event_function_prologue_syscallenter(void **tesla_data, struct thread *td, struct syscall_args *sa) Modified: soc2011/shm/clang/examples/TeslaInstrumenter/Instrumentation.cpp ============================================================================== --- soc2011/shm/clang/examples/TeslaInstrumenter/Instrumentation.cpp Tue Jul 12 23:48:57 2011 (r224165) +++ soc2011/shm/clang/examples/TeslaInstrumenter/Instrumentation.cpp Wed Jul 13 00:30:41 2011 (r224166) @@ -467,10 +467,60 @@ // This is where we pretend the call was located. SourceLocation loc = lhs->getLocStart(); + // Translate X [OP]= Y into X = X [OP] ( Y ) + if (o->getOpcode() != BO_Assign) { + BinaryOperatorKind new_opcode; + + switch(o->getOpcode()) { + case BO_MulAssign: + new_opcode = BO_Mul; + break; + case BO_DivAssign: + new_opcode = BO_Div; + break; + case BO_RemAssign: + new_opcode = BO_Rem; + break; + case BO_AddAssign: + new_opcode = BO_Add; + break; + case BO_SubAssign: + new_opcode = BO_Sub; + break; + case BO_ShlAssign: + new_opcode = BO_Shl; + break; + case BO_ShrAssign: + new_opcode = BO_Shr; + break; + case BO_AndAssign: + new_opcode = BO_And; + break; + case BO_XorAssign: + new_opcode = BO_Xor; + break; + case BO_OrAssign: + new_opcode = BO_Or; + break; + default: + assert(false && "impossible"); + break; + } + + // X [OP]= Y -> X [OP]= (Y) + ParenExpr *pe = new (ast) ParenExpr(loc, loc, rhs); + // X [OP]= X [OP] (Y) + rhs = new (ast) BinaryOperator(lhs, pe, new_opcode, rhs->getType(), + VK_RValue, OK_Ordinary, loc); + // X = X [OP] (Y) + o->setOpcode(BO_Assign); + } + // Ensure that we don't double-evaluate rhs. pair > lvalue = makeLValue(rhs, "assign", dc, ast); o->setRHS(lvalue.first); vector& init = lvalue.second; + // ADD HERE for (vector::iterator i = init.begin(); i != init.end(); i++) statements.push_back(*i); @@ -481,7 +531,7 @@ // Arguments: the base and the new value being assigned. vector arguments; arguments.push_back(base); - //arguments.push_back(lvalue.first); + arguments.push_back(lvalue.first); // The name of the event handler depends on the type and field names. string typeName = typeIdentifier(structType.getTypePtr()); string fieldName = lhs->getMemberDecl()->getName(); @@ -528,6 +578,7 @@ SC_Extern, SC_None); // Add the created declaration to the translation unit. + // XXX: is this call really necessary? // ast.getTranslationUnitDecl()->addDecl(fn); return fn; Added: soc2011/shm/sys/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/Makefile Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,58 @@ +# $FreeBSD: src/sys/Makefile,v 1.55.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $ + +.include + +# The boot loader +.if ${MK_BOOT} != "no" +SUBDIR= boot +.endif + +# Directories to include in cscope name file and TAGS. +CSCOPEDIRS= boot bsm cam cddl compat conf contrib crypto ddb dev fs gdb \ + geom gnu isa kern libkern modules net net80211 netatalk \ + netgraph netinet netinet6 netipsec netipx netnatm netncp \ + netsmb nfs nfsclient nfsserver nlm opencrypto \ + pci rpc security sys ufs vm xdr ${CSCOPE_ARCHDIR} +.if defined(ALL_ARCH) +CSCOPE_ARCHDIR ?= amd64 arm i386 ia64 mips pc98 powerpc sparc64 sun4v +.else +CSCOPE_ARCHDIR ?= ${MACHINE} +.endif + +# Loadable kernel modules + +.if defined(MODULES_WITH_WORLD) +SUBDIR+=modules +.endif + +HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh` + +# You need the devel/cscope port for this. +cscope: cscope.out +cscope.out: ${.CURDIR}/cscope.files + cd ${.CURDIR}; cscope -k -buq -p4 + +${.CURDIR}/cscope.files: .PHONY + cd ${.CURDIR}; \ + find ${CSCOPEDIRS} -name "*.[chSs]" -a -type f > ${.TARGET} + +cscope-clean: + rm -f cscope.files cscope.out cscope.in.out cscope.po.out + +# You need the devel/global and one of editor/emacs* ports for that. +TAGS ${.CURDIR}/TAGS: ${.CURDIR}/cscope.files + rm -f ${.CURDIR}/TAGS + cd ${.CURDIR}; xargs etags -a < ${.CURDIR}/cscope.files + +# You need the textproc/glimpse ports for this. +glimpse: +.if !exists(${.CURDIR}/.glimpse_exclude) + echo .svn > ${.CURDIR}/.glimpse_exclude + echo /compile/ >> ${.CURDIR}/.glimpse_exclude +.endif + cd ${.CURDIR}; glimpseindex -H . -B -f -o . + +glimpse-clean: + cd ${.CURDIR}; rm -f .glimpse_* + +.include Added: soc2011/shm/sys/amd64/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/Makefile Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,39 @@ +# $FreeBSD: src/sys/amd64/Makefile,v 1.12.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $ +# @(#)Makefile 8.1 (Berkeley) 6/11/93 + +# Makefile for amd64 links, tags file + +# SYS is normally set in Make.tags.inc +SYS=/sys + +TAGDIR= amd64 + +.include "../kern/Make.tags.inc" + +all: + @echo "make links or tags only" + +# Directories in which to place amd64 tags links +DAMD64= acpica amd64 ia32 include isa linux32 pci + +links:: + -for i in ${COMMDIR1}; do \ + (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done + -for i in ${COMMDIR2}; do \ + (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tags; }) done + -for i in ${DAMD64}; do \ + (cd $$i && { rm -f tags; ln -s ../tags tags; }) done + +SAMD64= ${SYS}/amd64/acpica/*.[ch] \ + ${SYS}/amd64/amd64/*.[ch] ${SYS}/amd64/ia32/*.[ch] \ + ${SYS}/amd64/include/*.[ch] ${SYS}/amd64/isa/*.[ch] \ + ${SYS}/amd64/linux32/*.[ch] ${SYS}/amd64/pci/*.[ch] +AAMD64= ${SYS}/amd64/amd64/*.S + +tags:: + -ctags -wdt ${COMM} ${SAMD64} + egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AAMD64} | \ + sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ + >> tags + sort -o tags tags + chmod 444 tags Added: soc2011/shm/sys/amd64/acpica/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/acpica/Makefile Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,33 @@ +# $FreeBSD: src/sys/amd64/acpica/Makefile,v 1.1.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $ + +# Correct path for kernel builds +# Don't rely on the kernel's .depend file +.ifdef MAKESRCPATH +.PATH: ${MAKESRCPATH} +DEPENDFILE= +.else +MAKESRCPATH= ${.CURDIR} +CLEANFILES= acpi_wakecode.h acpi_wakedata.h acpi_wakecode.bin acpi_wakecode.o +.endif +.if ${CC} == "icc" +CFLAGS+= -restrict +NOSTDINC= -X +.else +NOSTDINC= -nostdinc +.endif +CFLAGS+= ${NOSTDINC} -include opt_global.h -I. -I${MAKESRCPATH}/../.. + +all: acpi_wakecode.h acpi_wakedata.h + +acpi_wakecode.o: acpi_wakecode.S assym.s + +acpi_wakecode.bin: acpi_wakecode.o + objcopy -S -O binary acpi_wakecode.o acpi_wakecode.bin + +acpi_wakecode.h: acpi_wakecode.bin + sh ${MAKESRCPATH}/genwakecode.sh > acpi_wakecode.h + +acpi_wakedata.h: acpi_wakecode.bin + sh ${MAKESRCPATH}/genwakedata.sh > acpi_wakedata.h + +.include Added: soc2011/shm/sys/amd64/acpica/OsdEnvironment.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/acpica/OsdEnvironment.c Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,71 @@ +/*- + * Copyright (c) 2000,2001 Michael Smith + * Copyright (c) 2000 BSDi + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD: src/sys/amd64/acpica/OsdEnvironment.c,v 1.15.2.1.4.1 2010/06/14 02:09:06 kensmith Exp $"); + +/* + * 6.1 : Environmental support + */ +#include +#include +#include +#include + +#include +#include + +static u_long amd64_acpi_root; + +SYSCTL_ULONG(_machdep, OID_AUTO, acpi_root, CTLFLAG_RD, &amd64_acpi_root, 0, + "The physical address of the RSDP"); + +ACPI_STATUS +AcpiOsInitialize(void) +{ + return(0); +} + +ACPI_STATUS +AcpiOsTerminate(void) +{ + return(0); +} + +ACPI_PHYSICAL_ADDRESS +AcpiOsGetRootPointer(void) +{ + u_long ptr; + + if (amd64_acpi_root == 0 && + (resource_long_value("acpi", 0, "rsdp", (long *)&ptr) == 0 || + AcpiFindRootPointer((ACPI_SIZE *)&ptr) == AE_OK) && + ptr != 0) + amd64_acpi_root = ptr; + + return (amd64_acpi_root); +} Added: soc2011/shm/sys/amd64/acpica/acpi_machdep.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/acpica/acpi_machdep.c Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,386 @@ +/*- + * Copyright (c) 2001 Mitsuru IWASAKI + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD: src/sys/amd64/acpica/acpi_machdep.c,v 1.21.2.3.2.1 2010/06/14 02:09:06 kensmith Exp $"); + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include + +SYSCTL_DECL(_debug_acpi); + +int acpi_resume_beep; +TUNABLE_INT("debug.acpi.resume_beep", &acpi_resume_beep); +SYSCTL_INT(_debug_acpi, OID_AUTO, resume_beep, CTLFLAG_RW, &acpi_resume_beep, + 0, "Beep the PC speaker when resuming"); + +int acpi_reset_video; +TUNABLE_INT("hw.acpi.reset_video", &acpi_reset_video); + +static int intr_model = ACPI_INTR_PIC; +static struct apm_clone_data acpi_clone; + +int +acpi_machdep_init(device_t dev) +{ + struct acpi_softc *sc; + + sc = devclass_get_softc(devclass_find("acpi"), 0); + + /* Create a fake clone for /dev/acpi. */ + STAILQ_INIT(&sc->apm_cdevs); + acpi_clone.cdev = sc->acpi_dev_t; + acpi_clone.acpi_sc = sc; + ACPI_LOCK(acpi); + STAILQ_INSERT_TAIL(&sc->apm_cdevs, &acpi_clone, entries); + ACPI_UNLOCK(acpi); + sc->acpi_clone = &acpi_clone; + acpi_install_wakeup_handler(sc); + + if (intr_model != ACPI_INTR_PIC) + acpi_SetIntrModel(intr_model); + + SYSCTL_ADD_UINT(&sc->acpi_sysctl_ctx, + SYSCTL_CHILDREN(sc->acpi_sysctl_tree), OID_AUTO, + "reset_video", CTLFLAG_RW, &acpi_reset_video, 0, + "Call the VESA reset BIOS vector on the resume path"); + + return (0); +} + +void +acpi_SetDefaultIntrModel(int model) +{ + + intr_model = model; +} + +int +acpi_machdep_quirks(int *quirks) +{ + return (0); +} + +void +acpi_cpu_c1() +{ + __asm __volatile("sti; hlt"); +} + +/* + * Support for mapping ACPI tables during early boot. Currently this + * uses the crashdump map to map each table. However, the crashdump + * map is created in pmap_bootstrap() right after the direct map, so + * we should be able to just use pmap_mapbios() here instead. + * + * This makes the following assumptions about how we use this KVA: + * pages 0 and 1 are used to map in the header of each table found via + * the RSDT or XSDT and pages 2 to n are used to map in the RSDT or + * XSDT. This has to use 2 pages for the table headers in case a + * header spans a page boundary. + * + * XXX: We don't ensure the table fits in the available address space + * in the crashdump map. + */ + +/* + * Map some memory using the crashdump map. 'offset' is an offset in + * pages into the crashdump map to use for the start of the mapping. + */ +static void * +table_map(vm_paddr_t pa, int offset, vm_offset_t length) +{ + vm_offset_t va, off; + void *data; + + off = pa & PAGE_MASK; + length = roundup(length + off, PAGE_SIZE); + pa = pa & PG_FRAME; + va = (vm_offset_t)pmap_kenter_temporary(pa, offset) + + (offset * PAGE_SIZE); + data = (void *)(va + off); + length -= PAGE_SIZE; + while (length > 0) { + va += PAGE_SIZE; + pa += PAGE_SIZE; + length -= PAGE_SIZE; + pmap_kenter(va, pa); + invlpg(va); + } + return (data); +} + +/* Unmap memory previously mapped with table_map(). */ +static void +table_unmap(void *data, vm_offset_t length) +{ + vm_offset_t va, off; + + va = (vm_offset_t)data; + off = va & PAGE_MASK; + length = roundup(length + off, PAGE_SIZE); + va &= ~PAGE_MASK; + while (length > 0) { + pmap_kremove(va); + invlpg(va); + va += PAGE_SIZE; + length -= PAGE_SIZE; + } +} + +/* + * Map a table at a given offset into the crashdump map. It first + * maps the header to determine the table length and then maps the + * entire table. + */ +static void * +map_table(vm_paddr_t pa, int offset, const char *sig) +{ + ACPI_TABLE_HEADER *header; + vm_offset_t length; + void *table; + + header = table_map(pa, offset, sizeof(ACPI_TABLE_HEADER)); + if (strncmp(header->Signature, sig, ACPI_NAME_SIZE) != 0) { + table_unmap(header, sizeof(ACPI_TABLE_HEADER)); + return (NULL); + } + length = header->Length; + table_unmap(header, sizeof(ACPI_TABLE_HEADER)); + table = table_map(pa, offset, length); + if (ACPI_FAILURE(AcpiTbChecksum(table, length))) { + if (bootverbose) + printf("ACPI: Failed checksum for table %s\n", sig); +#if (ACPI_CHECKSUM_ABORT) + table_unmap(table, length); + return (NULL); +#endif + } + return (table); +} + +/* + * See if a given ACPI table is the requested table. Returns the + * length of the able if it matches or zero on failure. + */ +static int +probe_table(vm_paddr_t address, const char *sig) +{ + ACPI_TABLE_HEADER *table; + + table = table_map(address, 0, sizeof(ACPI_TABLE_HEADER)); + if (table == NULL) { + if (bootverbose) + printf("ACPI: Failed to map table at 0x%jx\n", + (uintmax_t)address); + return (0); + } + if (bootverbose) + printf("Table '%.4s' at 0x%jx\n", table->Signature, + (uintmax_t)address); + + if (strncmp(table->Signature, sig, ACPI_NAME_SIZE) != 0) { + table_unmap(table, sizeof(ACPI_TABLE_HEADER)); + return (0); + } + table_unmap(table, sizeof(ACPI_TABLE_HEADER)); + return (1); +} + +/* + * Try to map a table at a given physical address previously returned + * by acpi_find_table(). + */ +void * +acpi_map_table(vm_paddr_t pa, const char *sig) +{ + + return (map_table(pa, 0, sig)); +} + +/* Unmap a table previously mapped via acpi_map_table(). */ +void +acpi_unmap_table(void *table) +{ + ACPI_TABLE_HEADER *header; + + header = (ACPI_TABLE_HEADER *)table; + table_unmap(table, header->Length); +} + +/* + * Return the physical address of the requested table or zero if one + * is not found. + */ +vm_paddr_t +acpi_find_table(const char *sig) +{ + ACPI_PHYSICAL_ADDRESS rsdp_ptr; + ACPI_TABLE_RSDP *rsdp; + ACPI_TABLE_RSDT *rsdt; + ACPI_TABLE_XSDT *xsdt; + ACPI_TABLE_HEADER *table; + vm_paddr_t addr; + int i, count; + + if (resource_disabled("acpi", 0)) + return (0); + + /* + * Map in the RSDP. Since ACPI uses AcpiOsMapMemory() which in turn + * calls pmap_mapbios() to find the RSDP, we assume that we can use + * pmap_mapbios() to map the RSDP. + */ + if ((rsdp_ptr = AcpiOsGetRootPointer()) == 0) + return (0); + rsdp = pmap_mapbios(rsdp_ptr, sizeof(ACPI_TABLE_RSDP)); + if (rsdp == NULL) { + if (bootverbose) + printf("ACPI: Failed to map RSDP\n"); + return (0); + } + + /* + * For ACPI >= 2.0, use the XSDT if it is available. + * Otherwise, use the RSDT. We map the XSDT or RSDT at page 2 + * in the crashdump area. Pages 0 and 1 are used to map in the + * headers of candidate ACPI tables. + */ + addr = 0; + if (rsdp->Revision >= 2 && rsdp->XsdtPhysicalAddress != 0) { + /* + * AcpiOsGetRootPointer only verifies the checksum for + * the version 1.0 portion of the RSDP. Version 2.0 has + * an additional checksum that we verify first. + */ + if (AcpiTbChecksum((UINT8 *)rsdp, ACPI_RSDP_XCHECKSUM_LENGTH)) { + if (bootverbose) + printf("ACPI: RSDP failed extended checksum\n"); + return (0); + } + xsdt = map_table(rsdp->XsdtPhysicalAddress, 2, ACPI_SIG_XSDT); + if (xsdt == NULL) { + if (bootverbose) + printf("ACPI: Failed to map XSDT\n"); + return (0); + } + count = (xsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) / + sizeof(UINT64); + for (i = 0; i < count; i++) + if (probe_table(xsdt->TableOffsetEntry[i], sig)) { + addr = xsdt->TableOffsetEntry[i]; + break; + } + acpi_unmap_table(xsdt); + } else { + rsdt = map_table(rsdp->RsdtPhysicalAddress, 2, ACPI_SIG_RSDT); + if (rsdt == NULL) { + if (bootverbose) + printf("ACPI: Failed to map RSDT\n"); + return (0); + } + count = (rsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) / + sizeof(UINT32); + for (i = 0; i < count; i++) + if (probe_table(rsdt->TableOffsetEntry[i], sig)) { + addr = rsdt->TableOffsetEntry[i]; + break; + } + acpi_unmap_table(rsdt); + } + pmap_unmapbios((vm_offset_t)rsdp, sizeof(ACPI_TABLE_RSDP)); + if (addr == 0) { + if (bootverbose) + printf("ACPI: No %s table found\n", sig); + return (0); + } + if (bootverbose) + printf("%s: Found table at 0x%jx\n", sig, (uintmax_t)addr); + + /* + * Verify that we can map the full table and that its checksum is + * correct, etc. + */ + table = map_table(addr, 0, sig); + if (table == NULL) + return (0); + acpi_unmap_table(table); + + return (addr); +} + +/* + * ACPI nexus(4) driver. + */ +static int +nexus_acpi_probe(device_t dev) +{ + int error; + + error = acpi_identify(); + if (error) + return (error); + + return (BUS_PROBE_DEFAULT); +} + +static int +nexus_acpi_attach(device_t dev) +{ + + nexus_init_resources(); + bus_generic_probe(dev); + if (BUS_ADD_CHILD(dev, 10, "acpi", 0) == NULL) + panic("failed to add acpi0 device"); + + return (bus_generic_attach(dev)); +} + +static device_method_t nexus_acpi_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, nexus_acpi_probe), + DEVMETHOD(device_attach, nexus_acpi_attach), + + { 0, 0 } +}; + +DEFINE_CLASS_1(nexus, nexus_acpi_driver, nexus_acpi_methods, 1, nexus_driver); +static devclass_t nexus_devclass; + +DRIVER_MODULE(nexus_acpi, root, nexus_acpi_driver, nexus_devclass, 0, 0); Added: soc2011/shm/sys/amd64/acpica/acpi_switch.S ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/acpica/acpi_switch.S Wed Jul 13 00:30:41 2011 (r224166) @@ -0,0 +1,190 @@ +/*- + * Copyright (c) 2001 Takanori Watanabe + * Copyright (c) 2001 Mitsuru IWASAKI + * Copyright (c) 2008-2009 Jung-uk Kim + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 04:58:46 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id A419E1065670 for ; Wed, 13 Jul 2011 04:58:45 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 04:58:45 +0000 Date: Wed, 13 Jul 2011 04:58:45 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713045845.A419E1065670@hub.freebsd.org> Cc: Subject: socsvn commit: r224168 - soc2011/shm/sys/amd64/compile/TESLA X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 04:58:46 -0000 Author: shm Date: Wed Jul 13 04:58:45 2011 New Revision: 224168 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224168 Log: * it shouldn't be here Deleted: soc2011/shm/sys/amd64/compile/TESLA/ From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 08:02:01 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 1C1DB106566C for ; Wed, 13 Jul 2011 08:01:59 +0000 (UTC) (envelope-from rudot@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 08:01:59 +0000 Date: Wed, 13 Jul 2011 08:01:59 +0000 From: rudot@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713080159.1C1DB106566C@hub.freebsd.org> Cc: Subject: socsvn commit: r224175 - soc2011/rudot/kern X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 08:02:01 -0000 Author: rudot Date: Wed Jul 13 08:01:58 2011 New Revision: 224175 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224175 Log: use asts instead of preempting Modified: soc2011/rudot/kern/sched_fbfs.c Modified: soc2011/rudot/kern/sched_fbfs.c ============================================================================== --- soc2011/rudot/kern/sched_fbfs.c Wed Jul 13 06:20:00 2011 (r224174) +++ soc2011/rudot/kern/sched_fbfs.c Wed Jul 13 08:01:58 2011 (r224175) @@ -621,7 +621,7 @@ pcpu = pcpu_find(c); if (pcpu->pc_curthread == pcpu->pc_idlethread) { if (PCPU_GET(cpuid) != c) - ipi_cpu(c, IPI_PREEMPT); + ipi_cpu(c, IPI_AST); return (1); } cpri = pcpu->pc_curthread->td_priority; @@ -709,7 +709,7 @@ */ if (preempt_lastcpu(td)) { if (map) - ipi_selected(map, IPI_PREEMPT); + ipi_selected(map, IPI_AST); return; } /* @@ -720,10 +720,10 @@ while ((cg != NULL) && ((map & cg->cg_mask) == 0)) cg = cg->cg_parent; if (map & cg->cg_mask) { - ipi_selected(map & cg->cg_mask, IPI_PREEMPT); + ipi_selected(map & cg->cg_mask, IPI_AST); return; } - ipi_selected(map, IPI_PREEMPT); + ipi_selected(map, IPI_AST); return; } /* From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 13:04:13 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 45DF2106566C for ; Wed, 13 Jul 2011 13:04:12 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 13:04:12 +0000 Date: Wed, 13 Jul 2011 13:04:12 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713130412.45DF2106566C@hub.freebsd.org> Cc: Subject: socsvn commit: r224178 - soc2011/zy/nvi-iconv/head X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 13:04:13 -0000 Author: zy Date: Wed Jul 13 13:04:12 2011 New Revision: 224178 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224178 Log: Nvi is forked at https://github.com/lichray/nvi2 Deprecates this head. Deleted: soc2011/zy/nvi-iconv/head/ From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 13:10:52 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id B0E6F1065672 for ; Wed, 13 Jul 2011 13:10:51 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 13:10:51 +0000 Date: Wed, 13 Jul 2011 13:10:51 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713131051.B0E6F1065672@hub.freebsd.org> Cc: Subject: socsvn commit: r224179 - soc2011/zy/nvi-iconv/head X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 13:10:52 -0000 Author: zy Date: Wed Jul 13 13:10:51 2011 New Revision: 224179 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224179 Log: Re-branch a -current. Added: soc2011/zy/nvi-iconv/head/ (props changed) - copied from r224178, mirror/FreeBSD/head/ From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 13:24:42 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 6688A106566B for ; Wed, 13 Jul 2011 13:24:40 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 13:24:40 +0000 Date: Wed, 13 Jul 2011 13:24:40 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713132440.6688A106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r224180 - in soc2011/zy/nvi-iconv/head/contrib/nvi2: . build cl common ex include include/sys vi X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 13:24:42 -0000 Author: zy Date: Wed Jul 13 13:24:40 2011 New Revision: 224180 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224180 Log: Pull nvi2 as a vendor source. Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/ soc2011/zy/nvi-iconv/head/contrib/nvi2/LICENSE soc2011/zy/nvi-iconv/head/contrib/nvi2/README soc2011/zy/nvi-iconv/head/contrib/nvi2/build/ soc2011/zy/nvi-iconv/head/contrib/nvi2/build/distrib (contents, props changed) soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/ soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl.h soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_bsd.c soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_funcs.c soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_main.c soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_read.c soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_screen.c soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_term.c soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/extern.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/ soc2011/zy/nvi-iconv/head/contrib/nvi2/common/args.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/common.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/cut.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/cut.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/delete.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/exf.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/exf.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/extern.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/gs.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/key.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/key.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/line.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/log.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/log.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/main.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/mark.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/mark.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/mem.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/msg.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/msg.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/multibyte.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options.awk soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options_def.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options_f.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/put.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/recover.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/screen.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/screen.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/search.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/seq.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/seq.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/util.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/util.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex.awk soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_abbrev.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_append.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_args.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_argv.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_at.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_bang.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_cd.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_cmd.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_cscope.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_def.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_delete.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_display.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_edit.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_equal.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_file.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_filter.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_global.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_init.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_join.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_map.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_mark.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_mkexrc.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_move.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_open.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_perl.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_preserve.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_print.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_put.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_quit.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_read.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_screen.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_script.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_set.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_shell.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_shift.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_source.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_stop.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_subst.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_tag.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_tcl.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_txt.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_undo.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_usage.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_util.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_version.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_visual.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_write.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_yank.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_z.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/extern.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/script.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/tag.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/version.h soc2011/zy/nvi-iconv/head/contrib/nvi2/include/ soc2011/zy/nvi-iconv/head/contrib/nvi2/include/bitstring.h soc2011/zy/nvi-iconv/head/contrib/nvi2/include/sys/ soc2011/zy/nvi-iconv/head/contrib/nvi2/include/sys/queue.h soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/ soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/extern.h soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/getc.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_at.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_ch.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_cmd.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_delete.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_ex.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_increment.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_init.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_itxt.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_left.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_mark.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_match.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_paragraph.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_put.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_redraw.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_replace.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_right.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_screen.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_scroll.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_search.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_section.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_sentence.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_status.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_txt.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_ulcase.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_undo.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_util.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_word.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_xchar.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_yank.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_z.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_zexit.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.h soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_line.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_msg.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_relative.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_smap.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_split.c Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/LICENSE ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/LICENSE Wed Jul 13 13:24:40 2011 (r224180) @@ -0,0 +1,41 @@ +/*- + * $Id: LICENSE,v 8.18 2011/07/10 11:58:35 zy Exp $ (Berkeley) $Date: 2011/07/10 11:58:35 $ + */ + +The following are the copyrights and redistribution conditions that apply +to this copy of the Vi software. + +/* + * Copyright (c) 1991, 1992, 1993, 1994 + * The Regents of the University of California. All rights reserved. + * Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 + * Keith Bostic. All rights reserved. + * Copyright (c) 1999, 2000 + * Sven Verdoolaege. All rights reserved. + * Copyright (c) 2011 + * Zhihao Yuan. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/README Wed Jul 13 13:24:40 2011 (r224180) @@ -0,0 +1,55 @@ +# $Id: README,v 8.154 2011/06/26 13:11:10 zy Exp $ (Berkeley) $Date: 2011/06/26 13:11:10 $ + +This is version 2.0.0 (2011-06-26) of nex/nvi, a reimplementation of the ex/vi +text editors originally distributed as part of the Fourth Berkeley +Software Distribution (4BSD), by the University of California, Berkeley. + +The directory layout is as follows: + + LICENSE ....... Copyright, use and redistribution information. + README ........ This file. + build ......... Build directory. + catalog ....... Message catalogs; see catalog/README. + cl ............ Vi interface to the curses(3) library. + common ........ Code shared by ex and vi. + docs .......... Ex/vi documentation, both current and historic. + ex ............ Ex source code. + include ....... Replacement include files. + vi ............ Vi source code. + +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +o This software is several years old and is the product of many folks' work. + + This software was originally derived from software contributed to + the University of California, Berkeley by Steve Kirkendall, the + author of the vi clone elvis. Without his work, this work would + have been far more difficult. + + IEEE POSIX 1003.2 style regular expression support is courtesy of + Henry Spencer, for which I am *very* grateful. + + Elan Amir did the original 4BSD curses work that made it possible + to support a full-screen editor using curses. + + George Neville-Neil added the Tcl interpreter, and the initial + interpreter design was his. + + Sven Verdoolaege added the Perl interpreter. + + Rob Mayoff provided the original Cscope support. + +o Many, many people suggested enhancements, and provided bug reports and + testing, far too many to individually thank. + +o From the original vi acknowledgements, by William Joy and Mark Horton: + + Bruce Englar encouraged the early development of this display + editor. Peter Kessler helped bring sanity to version 2's + command layout. Bill Joy wrote versions 1 and 2.0 through 2.7, + and created the framework that users see in the present editor. + Mark Horton added macros and other features and made the editor + work on a large number of terminals and Unix systems. + +o And... + The financial support of UUNET Communications Services is gratefully + acknowledged. Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/build/distrib ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/build/distrib Wed Jul 13 13:24:40 2011 (r224180) @@ -0,0 +1,39 @@ +#! /bin/sh +# $Id: distrib,v 8.26 2011/07/13 07:45:14 zy Exp $ (Berkeley) $Date: 2011/07/13 07:45:14 $ + +# Build include files. +f=../cl/extern.h +echo "Building $f" +rm -f $f +sed -n "s/^ \* PUBLIC: \(.*\)/\1/p" ../cl/*.c > $f +chmod 444 $f + +f=../common/extern.h +echo "Building $f" +rm -f $f +sed -n "s/^ \* PUBLIC: \(.*\)/\1/p" ../common/*.c > $f +chmod 444 $f + +f=../ex/ex_def.h +echo "Building $f" +rm -f $f +awk -f ../ex/ex.awk ../ex/ex_cmd.c > $f +chmod 444 $f + +f=../ex/extern.h +echo "Building $f" +rm -f $f +sed -n "s/^ \* PUBLIC: \(.*\)/\1/p" ../ex/*.c > $f +chmod 444 $f + +f=../common/options_def.h +echo "Building $f" +rm -f $f +awk -f ../common/options.awk ../common/options.c > $f +chmod 444 $f + +f=../vi/extern.h +echo "Building $f" +rm -f $f +sed -n "s/^ \* PUBLIC: \(.*\)/\1/p" ../vi/*.c > $f +chmod 444 $f Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl.h Wed Jul 13 13:24:40 2011 (r224180) @@ -0,0 +1,110 @@ +/*- + * Copyright (c) 1993, 1994 + * The Regents of the University of California. All rights reserved. + * Copyright (c) 1993, 1994, 1995, 1996 + * Keith Bostic. All rights reserved. + * + * See the LICENSE file for redistribution information. + * + * $Id: cl.h,v 10.32 2001/08/28 11:33:40 skimo Exp $ (Berkeley) $Date: 2001/08/28 11:33:40 $ + */ + +#ifdef USE_SLANG_CURSES +#include +#else +#ifdef HAVE_NCURSESW_NCURSES_H /* { */ +#include +#else /* } { */ +#ifdef HAVE_NCURSES_H /* { */ +#include +#else /* } { */ +#include +#endif /* } */ +#endif +#endif + +typedef struct _cl_private { + char ibuf[256]; /* Input keys. */ + + size_t skip; /* Remaining keys. */ + + CONVWIN cw; /* Conversion buffer. */ + + int eof_count; /* EOF count. */ + + struct termios orig; /* Original terminal values. */ + struct termios ex_enter;/* Terminal values to enter ex. */ + struct termios vi_enter;/* Terminal values to enter vi. */ + + char *el; /* Clear to EOL terminal string. */ + char *cup; /* Cursor movement terminal string. */ + char *cuu1; /* Cursor up terminal string. */ + char *rmso, *smso; /* Inverse video terminal strings. */ + char *smcup, *rmcup; /* Terminal start/stop strings. */ + + SCR *focus; /* Screen that has the "focus". */ + + int killersig; /* Killer signal. */ +#define INDX_HUP 0 +#define INDX_INT 1 +#define INDX_TERM 2 +#define INDX_WINCH 3 +#define INDX_MAX 4 /* Original signal information. */ + struct sigaction oact[INDX_MAX]; + + enum { /* Tty group write mode. */ + TGW_UNKNOWN=0, TGW_SET, TGW_UNSET } tgw; + + enum { /* Terminal initialization strings. */ + TE_SENT=0, TI_SENT } ti_te; + +#define CL_IN_EX 0x0001 /* Currently running ex. */ +#define CL_LAYOUT 0x0002 /* Screen layout changed. */ +#define CL_RENAME 0x0004 /* X11 xterm icon/window renamed. */ +#define CL_RENAME_OK 0x0008 /* User wants the windows renamed. */ +#define CL_SCR_EX_INIT 0x0010 /* Ex screen initialized. */ +#define CL_SCR_VI_INIT 0x0020 /* Vi screen initialized. */ +#define CL_SIGHUP 0x0040 /* SIGHUP arrived. */ +#define CL_SIGINT 0x0080 /* SIGINT arrived. */ +#define CL_SIGTERM 0x0100 /* SIGTERM arrived. */ +#define CL_SIGWINCH 0x0200 /* SIGWINCH arrived. */ +#define CL_STDIN_TTY 0x0400 /* Talking to a terminal. */ + u_int32_t flags; +} CL_PRIVATE; + +#define CLP(sp) ((CL_PRIVATE *)((sp)->gp->cl_private)) +#define GCLP(gp) ((CL_PRIVATE *)gp->cl_private) +#define CLSP(sp) ((WINDOW *)((sp)->cl_private)) + +/* Return possibilities from the keyboard read routine. */ +typedef enum { INP_OK=0, INP_EOF, INP_ERR, INP_INTR, INP_TIMEOUT } input_t; + +/* The screen position relative to a specific window. */ +#define RCNO(sp, cno) (cno) +#define RLNO(sp, lno) (lno) + +/* X11 xterm escape sequence to rename the icon/window. */ +#define XTERM_RENAME "\033]0;%s\007" + +/* + * XXX + * Some implementations of curses.h don't define these for us. Used for + * compatibility only. + */ +#ifndef TRUE +#define TRUE 1 +#endif +#ifndef FALSE +#define FALSE 0 +#endif + +#include "extern.h" + +#ifdef USE_PERL_SETENV +#include "../perl_api/extern.h" +#define cl_setenv(sp,name,val) perl_setenv(sp,name,val) +#define cl_unsetenv(sp,name) perl_setenv(sp,name,NULL) +#else +#define cl_setenv(sp,name,val) setenv(name,val,1) +#define cl_unsetenv(sp,name) unsetenv(name) +#endif Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_bsd.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_bsd.c Wed Jul 13 13:24:40 2011 (r224180) @@ -0,0 +1,346 @@ +/*- + * Copyright (c) 1995, 1996 + * Keith Bostic. All rights reserved. + * + * See the LICENSE file for redistribution information. + */ + +#include "config.h" + +#ifndef lint +static const char sccsid[] = "$Id: cl_bsd.c,v 8.32 2000/12/01 13:56:17 skimo Exp $ (Berkeley) $Date: 2000/12/01 13:56:17 $"; +#endif /* not lint */ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "../common/common.h" +#include "../vi/vi.h" +#include "cl.h" + +static char *ke; /* Keypad on. */ +static char *ks; /* Keypad off. */ +static char *vb; /* Visible bell string. */ + +/* + * HP's support the entire System V curses package except for the tigetstr + * and tigetnum functions. Ultrix supports the BSD curses package except + * for the idlok function. Cthulu only knows why. Break things up into a + * minimal set of functions. + */ + +#ifndef HAVE_CURSES_WADDNSTR +/* + * waddnstr -- + * + * PUBLIC: #ifndef HAVE_CURSES_WADDNSTR + * PUBLIC: int waddnstr __P((WINDOW*, char *, int)); + * PUBLIC: #endif + */ +int +waddnstr(w, s, n) + WINDOW *w; + char *s; + int n; +{ + int ch; + + while (n-- && (ch = *s++)) + waddch(w, ch); + return (OK); +} +#endif + +#ifndef HAVE_CURSES_BEEP +/* + * beep -- + * + * PUBLIC: #ifndef HAVE_CURSES_BEEP + * PUBLIC: void beep __P((void)); + * PUBLIC: #endif + */ +void +beep() +{ + (void)write(1, "\007", 1); /* '\a' */ +} +#endif /* !HAVE_CURSES_BEEP */ + +#ifndef HAVE_CURSES_FLASH +/* + * flash -- + * Flash the screen. + * + * PUBLIC: #ifndef HAVE_CURSES_FLASH + * PUBLIC: void flash __P((void)); + * PUBLIC: #endif + */ +void +flash() +{ + if (vb != NULL) { + (void)tputs(vb, 1, cl_putchar); + (void)fflush(stdout); + } else + beep(); +} +#endif /* !HAVE_CURSES_FLASH */ + +#ifndef HAVE_CURSES_IDLOK +/* + * idlok -- + * Turn on/off hardware line insert/delete. + * + * PUBLIC: #ifndef HAVE_CURSES_IDLOK + * PUBLIC: void idlok __P((WINDOW *, int)); + * PUBLIC: #endif + */ +void +idlok(win, bf) + WINDOW *win; + int bf; +{ + return; +} +#endif /* !HAVE_CURSES_IDLOK */ + +#ifndef HAVE_CURSES_KEYPAD +/* + * keypad -- + * Put the keypad/cursor arrows into or out of application mode. + * + * PUBLIC: #ifndef HAVE_CURSES_KEYPAD + * PUBLIC: int keypad __P((void *, int)); + * PUBLIC: #endif + */ +int +keypad(a, on) + void *a; + int on; +{ + char *p; + + if ((p = tigetstr(on ? "smkx" : "rmkx")) != (char *)-1) { + (void)tputs(p, 0, cl_putchar); + (void)fflush(stdout); + } + return (0); +} +#endif /* !HAVE_CURSES_KEYPAD */ + +#ifndef HAVE_CURSES_NEWTERM +/* + * newterm -- + * Create a new curses screen. + * + * PUBLIC: #ifndef HAVE_CURSES_NEWTERM + * PUBLIC: void *newterm __P((const char *, FILE *, FILE *)); + * PUBLIC: #endif + */ +void * +newterm(a, b, c) + const char *a; + FILE *b, *c; +{ + return (initscr()); +} +#endif /* !HAVE_CURSES_NEWTERM */ + +#ifndef HAVE_CURSES_SETUPTERM +/* + * setupterm -- + * Set up terminal. + * + * PUBLIC: #ifndef HAVE_CURSES_SETUPTERM + * PUBLIC: void setupterm __P((char *, int, int *)); + * PUBLIC: #endif + */ +void +setupterm(ttype, fno, errp) + char *ttype; + int fno, *errp; +{ + static char buf[2048]; + char *p; + + if ((*errp = tgetent(buf, ttype)) > 0) { + if (ke != NULL) + free(ke); + ke = ((p = tigetstr("rmkx")) == (char *)-1) ? + NULL : strdup(p); + if (ks != NULL) + free(ks); + ks = ((p = tigetstr("smkx")) == (char *)-1) ? + NULL : strdup(p); + if (vb != NULL) + free(vb); + vb = ((p = tigetstr("flash")) == (char *)-1) ? + NULL : strdup(p); + } +} +#endif /* !HAVE_CURSES_SETUPTERM */ + +#ifndef HAVE_CURSES_TIGETSTR +/* Terminfo-to-termcap translation table. */ +typedef struct _tl { + char *terminfo; /* Terminfo name. */ + char *termcap; /* Termcap name. */ +} TL; +static const TL list[] = { + "cols", "co", /* Terminal columns. */ + "cup", "cm", /* Cursor up. */ + "cuu1", "up", /* Cursor up. */ + "el", "ce", /* Clear to end-of-line. */ + "flash", "vb", /* Visible bell. */ + "kcub1", "kl", /* Cursor left. */ + "kcud1", "kd", /* Cursor down. */ + "kcuf1", "kr", /* Cursor right. */ + "kcuu1", "ku", /* Cursor up. */ + "kdch1", "kD", /* Delete character. */ + "kdl1", "kL", /* Delete line. */ + "ked", "kS", /* Delete to end of screen. */ + "kel", "kE", /* Delete to eol. */ + "kend", "@7", /* Go to eol. */ + "khome", "kh", /* Go to sol. */ + "kich1", "kI", /* Insert at cursor. */ + "kil1", "kA", /* Insert line. */ + "kind", "kF", /* Scroll down. */ + "kll", "kH", /* Go to eol. */ + "knp", "kN", /* Page down. */ + "kpp", "kP", /* Page up. */ + "kri", "kR", /* Scroll up. */ + "lines", "li", /* Terminal lines. */ + "rmcup", "te", /* Terminal end string. */ + "rmkx", "ke", /* Exit "keypad-transmit" mode. */ + "rmso", "se", /* Standout end. */ + "smcup", "ti", /* Terminal initialization string. */ + "smkx", "ks", /* Enter "keypad-transmit" mode. */ + "smso", "so", /* Standout begin. */ +}; + +#ifdef _AIX +/* + * AIX's implementation for function keys greater than 10 is different and + * only goes as far as 36. + */ +static const char codes[] = { +/* 0-10 */ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ';', +/* 11-20 */ '<', '>', '!', '@', '#', '$', '%', '^', '&', '*', +/* 21-30 */ '(', ')', '-', '_', '+', ',', ':', '?', '[', ']', +/* 31-36 */ '{', '}', '|', '~', '/', '=' +}; + +#else + +/* + * !!! + * Historically, the 4BSD termcap code didn't support functions keys greater + * than 9. This was silently enforced -- asking for key k12 would return the + * value for k1. We try and get around this by using the tables specified in + * the terminfo(TI_ENV) man page from the 3rd Edition SVID. This assumes the + * implementors of any System V compatibility code or an extended termcap used + * those codes. + */ +static const char codes[] = { +/* 0-10 */ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ';', +/* 11-19 */ '1', '2', '3', '4', '5', '6', '7', '8', '9', +/* 20-63 */ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', + 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', + 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', + 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', +}; +#endif /* _AIX */ + +/* + * lcmp -- + * list comparison routine for bsearch. + */ +static int +lcmp(a, b) + const void *a, *b; +{ + return (strcmp(a, ((TL *)b)->terminfo)); +} + +/* + * tigetstr -- + * + * Vendors put the prototype for tigetstr into random include files, including + * , which we can't include because it makes other systems unhappy. + * Try and work around the problem, since we only care about the return value. + * + * PUBLIC: #ifdef HAVE_CURSES_TIGETSTR + * PUBLIC: char *tigetstr(); + * PUBLIC: #else + * PUBLIC: char *tigetstr __P((char *)); + * PUBLIC: #endif + */ +char * +tigetstr(name) + char *name; +{ + static char sbuf[256]; + TL *tlp; + int n; + char *p, keyname[3]; + + if ((tlp = bsearch(name, + list, sizeof(list) / sizeof(TL), sizeof(TL), lcmp)) == NULL) { +#ifdef _AIX + if (name[0] == 'k' && + name[1] == 'f' && (n = atoi(name + 2)) <= 36) { + keyname[0] = 'k'; + keyname[1] = codes[n]; + keyname[2] = '\0'; +#else + if (name[0] == 'k' && + name[1] == 'f' && (n = atoi(name + 2)) <= 63) { + keyname[0] = n <= 10 ? 'k' : 'F'; + keyname[1] = codes[n]; + keyname[2] = '\0'; +#endif + name = keyname; + } + } else + name = tlp->termcap; + + p = sbuf; +#ifdef _AIX + return ((p = tgetstr(name, &p)) == NULL ? (char *)-1 : strcpy(sbuf, p)); +#else + return (tgetstr(name, &p) == NULL ? (char *)-1 : sbuf); +#endif +} + +/* + * tigetnum -- + * + * PUBLIC: #ifndef HAVE_CURSES_TIGETSTR + * PUBLIC: int tigetnum __P((char *)); + * PUBLIC: #endif + */ +int +tigetnum(name) + char *name; +{ + TL *tlp; + int val; + + if ((tlp = bsearch(name, + list, sizeof(list) / sizeof(TL), sizeof(TL), lcmp)) != NULL) { + name = tlp->termcap; + } + + return ((val = tgetnum(name)) == -1 ? -2 : val); +} +#endif /* !HAVE_CURSES_TIGETSTR */ Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_funcs.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_funcs.c Wed Jul 13 13:24:40 2011 (r224180) @@ -0,0 +1,855 @@ +/*- + * Copyright (c) 1993, 1994 + * The Regents of the University of California. All rights reserved. + * Copyright (c) 1993, 1994, 1995, 1996 + * Keith Bostic. All rights reserved. + * + * See the LICENSE file for redistribution information. + */ + +#include "config.h" + +#ifndef lint +static const char sccsid[] = "$Id: cl_funcs.c,v 10.72 2002/03/02 23:18:33 skimo Exp $ (Berkeley) $Date: 2002/03/02 23:18:33 $"; +#endif /* not lint */ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#ifdef HAVE_TERM_H +#include +#else +#include +#endif +#include + +#include "../common/common.h" +#include "../vi/vi.h" +#include "cl.h" + +static void cl_rdiv __P((SCR *)); + +static int +addstr4(SCR *sp, void *str, size_t len, int wide) +{ + CL_PRIVATE *clp; + WINDOW *win; + size_t y, x; + int iv; + + clp = CLP(sp); + win = CLSP(sp) ? CLSP(sp) : stdscr; + + /* + * If ex isn't in control, it's the last line of the screen and + * it's a split screen, use inverse video. + */ + iv = 0; + getyx(win, y, x); + if (!F_ISSET(sp, SC_SCR_EXWROTE) && + y == RLNO(sp, LASTLINE(sp)) && IS_SPLIT(sp)) { + iv = 1; + (void)wstandout(win); + } + +#ifdef USE_WIDECHAR + if (wide) { + if (waddnwstr(win, str, len) == ERR) + return (1); + } else +#endif + if (waddnstr(win, str, len) == ERR) + return (1); + + if (iv) + (void)wstandend(win); + return (0); +} + +/* + * cl_waddstr -- + * Add len bytes from the string at the cursor, advancing the cursor. + * + * PUBLIC: int cl_waddstr __P((SCR *, const CHAR_T *, size_t)); + */ +int +cl_waddstr(SCR *sp, const CHAR_T *str, size_t len) +{ + return addstr4(sp, (void *)str, len, 1); +} + +/* + * cl_addstr -- + * Add len bytes from the string at the cursor, advancing the cursor. + * + * PUBLIC: int cl_addstr __P((SCR *, const char *, size_t)); + */ +int +cl_addstr(SCR *sp, const char *str, size_t len) +{ + return addstr4(sp, (void *)str, len, 0); +} + +/* + * cl_attr -- + * Toggle a screen attribute on/off. + * + * PUBLIC: int cl_attr __P((SCR *, scr_attr_t, int)); + */ +int +cl_attr(SCR *sp, scr_attr_t attribute, int on) +{ + CL_PRIVATE *clp; + WINDOW *win; + + clp = CLP(sp); + win = CLSP(sp) ? CLSP(sp) : stdscr; + + switch (attribute) { + case SA_ALTERNATE: + /* + * !!! + * There's a major layering violation here. The problem is that the + * X11 xterm screen has what's known as an "alternate" screen. Some + * xterm termcap/terminfo entries include sequences to switch to/from + * that alternate screen as part of the ti/te (smcup/rmcup) strings. + * Vi runs in the alternate screen, so that you are returned to the + * same screen contents on exit from vi that you had when you entered + * vi. Further, when you run :shell, or :!date or similar ex commands, + * you also see the original screen contents. This wasn't deliberate + * on vi's part, it's just that it historically sent terminal init/end + * sequences at those times, and the addition of the alternate screen + * sequences to the strings changed the behavior of vi. The problem + * caused by this is that we don't want to switch back to the alternate + * screen while getting a new command from the user, when the user is + * continuing to enter ex commands, e.g.: + * + * :!date <<< switch to original screen + * [Hit return to continue] <<< prompt user to continue + * :command <<< get command from user + * + * Note that the :command input is a true vi input mode, e.g., input + * maps and abbreviations are being done. So, we need to be able to + * switch back into the vi screen mode, without flashing the screen. + * + * To make matters worse, the curses initscr() and endwin() calls will + * do this automatically -- so, this attribute isn't as controlled by + * the higher level screen as closely as one might like. + */ + if (on) { + if (clp->ti_te != TI_SENT) { + clp->ti_te = TI_SENT; + if (clp->smcup == NULL) + (void)cl_getcap(sp, "smcup", &clp->smcup); + if (clp->smcup != NULL) + (void)tputs(clp->smcup, 1, cl_putchar); + } + } else + if (clp->ti_te != TE_SENT) { + clp->ti_te = TE_SENT; + if (clp->rmcup == NULL) + (void)cl_getcap(sp, "rmcup", &clp->rmcup); + if (clp->rmcup != NULL) + (void)tputs(clp->rmcup, 1, cl_putchar); + (void)fflush(stdout); + } + (void)fflush(stdout); + break; + case SA_INVERSE: + if (F_ISSET(sp, SC_EX | SC_SCR_EXWROTE)) { + if (clp->smso == NULL) + return (1); + if (on) + (void)tputs(clp->smso, 1, cl_putchar); + else + (void)tputs(clp->rmso, 1, cl_putchar); + (void)fflush(stdout); + } else { + if (on) + (void)wstandout(win); + else + (void)wstandend(win); + } + break; + default: + abort(); + } + return (0); +} + +/* + * cl_baud -- + * Return the baud rate. + * + * PUBLIC: int cl_baud __P((SCR *, u_long *)); + */ +int +cl_baud(SCR *sp, u_long *ratep) +{ + CL_PRIVATE *clp; + + /* + * XXX + * There's no portable way to get a "baud rate" -- cfgetospeed(3) + * returns the value associated with some #define, which we may + * never have heard of, or which may be a purely local speed. Vi + * only cares if it's SLOW (w300), slow (w1200) or fast (w9600). + * Try and detect the slow ones, and default to fast. + */ + clp = CLP(sp); + switch (cfgetospeed(&clp->orig)) { + case B50: + case B75: + case B110: + case B134: + case B150: + case B200: + case B300: + case B600: + *ratep = 600; + break; + case B1200: + *ratep = 1200; + break; + default: + *ratep = 9600; + break; + } + return (0); +} + +/* + * cl_bell -- + * Ring the bell/flash the screen. + * + * PUBLIC: int cl_bell __P((SCR *)); + */ +int +cl_bell(SCR *sp) +{ + if (F_ISSET(sp, SC_EX | SC_SCR_EXWROTE | SC_SCR_EX)) + (void)write(STDOUT_FILENO, "\07", 1); /* \a */ + else { + /* + * Vi has an edit option which determines if the terminal + * should be beeped or the screen flashed. + */ + if (O_ISSET(sp, O_FLASH)) + (void)flash(); + else + (void)beep(); + } + return (0); +} + +/* + * cl_clrtoeol -- + * Clear from the current cursor to the end of the line. + * + * PUBLIC: int cl_clrtoeol __P((SCR *)); + */ +int +cl_clrtoeol(SCR *sp) +{ + WINDOW *win; + size_t spcnt, y, x; + + win = CLSP(sp) ? CLSP(sp) : stdscr; + +#if 0 + if (IS_VSPLIT(sp)) { + /* The cursor must be returned to its original position. */ + getyx(win, y, x); + for (spcnt = (sp->coff + sp->cols) - x; spcnt > 0; --spcnt) + (void)waddch(win, ' '); + (void)wmove(win, y, x); + return (0); + } else +#endif + return (wclrtoeol(win) == ERR); +} + +/* + * cl_cursor -- + * Return the current cursor position. + * + * PUBLIC: int cl_cursor __P((SCR *, size_t *, size_t *)); + */ +int +cl_cursor(SCR *sp, size_t *yp, size_t *xp) +{ + WINDOW *win; + win = CLSP(sp) ? CLSP(sp) : stdscr; + /* + * The curses screen support splits a single underlying curses screen + * into multiple screens to support split screen semantics. For this + * reason the returned value must be adjusted to be relative to the + * current screen, and not absolute. Screens that implement the split + * using physically distinct screens won't need this hack. + */ + getyx(win, *yp, *xp); + /* + *yp -= sp->roff; + *xp -= sp->coff; + */ + return (0); +} + +/* + * cl_deleteln -- + * Delete the current line, scrolling all lines below it. + * + * PUBLIC: int cl_deleteln __P((SCR *)); + */ +int +cl_deleteln(SCR *sp) +{ + CHAR_T ch; + CL_PRIVATE *clp; + WINDOW *win; + size_t col, lno, spcnt, y, x; + + clp = CLP(sp); + win = CLSP(sp) ? CLSP(sp) : stdscr; + + /* + * This clause is required because the curses screen uses reverse + * video to delimit split screens. If the screen does not do this, + * this code won't be necessary. + * + * If the bottom line was in reverse video, rewrite it in normal + * video before it's scrolled. + * + * Check for the existence of a chgat function; XSI requires it, but + * historic implementations of System V curses don't. If it's not + * a #define, we'll fall back to doing it by hand, which is slow but + * acceptable. + * + * By hand means walking through the line, retrieving and rewriting + * each character. Curses has no EOL marker, so track strings of + * spaces, and copy the trailing spaces only if there's a non-space + * character following. + */ + if (!F_ISSET(sp, SC_SCR_EXWROTE) && IS_SPLIT(sp)) { + getyx(win, y, x); +#ifdef mvchgat + mvwchgat(win, RLNO(sp, LASTLINE(sp)), 0, -1, A_NORMAL, 0, NULL); +#else + for (lno = RLNO(sp, LASTLINE(sp)), col = spcnt = 0;;) { + (void)wmove(win, lno, col); + ch = winch(win); + if (isblank(ch)) + ++spcnt; + else { + (void)wmove(win, lno, col - spcnt); + for (; spcnt > 0; --spcnt) + (void)waddch(win, ' '); + (void)waddch(win, ch); + } + if (++col >= sp->cols) + break; + } +#endif + (void)wmove(win, y, x); + } + + /* + * The bottom line is expected to be blank after this operation, + * and other screens must support that semantic. + */ + return (wdeleteln(win) == ERR); +} + +/* + * cl_discard -- + * Discard a screen. + * + * PUBLIC: int cl_discard __P((SCR *, SCR **)); + */ +int +cl_discard(SCR *discardp, SCR **acquirep) +{ + CL_PRIVATE *clp; + SCR* tsp; + + if (discardp) { + clp = CLP(discardp); + F_SET(clp, CL_LAYOUT); + + if (CLSP(discardp)) { + delwin(CLSP(discardp)); + discardp->cl_private = NULL; + } + } + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 13:32:30 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 4E1C0106566B for ; Wed, 13 Jul 2011 13:32:28 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 13:32:28 +0000 Date: Wed, 13 Jul 2011 13:32:28 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713133228.4E1C0106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r224181 - soc2011/zy/nvi-iconv/head/usr.bin/vi X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 13:32:30 -0000 Author: zy Date: Wed Jul 13 13:32:28 2011 New Revision: 224181 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224181 Log: Make nvi2 compilable from usr.bin/vi Modified: soc2011/zy/nvi-iconv/head/usr.bin/vi/Makefile soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h Modified: soc2011/zy/nvi-iconv/head/usr.bin/vi/Makefile ============================================================================== --- soc2011/zy/nvi-iconv/head/usr.bin/vi/Makefile Wed Jul 13 13:24:40 2011 (r224180) +++ soc2011/zy/nvi-iconv/head/usr.bin/vi/Makefile Wed Jul 13 13:32:28 2011 (r224181) @@ -2,9 +2,10 @@ # $FreeBSD$ # -SRCDIR= ${.CURDIR}/../../contrib/nvi +SRCDIR= ${.CURDIR}/../../contrib/nvi2 CFLAGS+= -DGTAGS +#CFLAGS+= -DUSE_WIDECHAR -DUSE_ICONV #if using ncurses: CFLAGS+= -DSYSV_CURSES @@ -21,7 +22,7 @@ LINKS+= ${BINDIR}/${VI} ${BINDIR}/vi ${BINDIR}/${EX} ${BINDIR}/ex LINKS+= ${BINDIR}/${VI} ${BINDIR}/view -MAN= ${SRCDIR}/docs/USD.doc/vi.man/vi.1 +MAN= ${SRCDIR}/../nvi/docs/USD.doc/vi.man/vi.1 MLINKS+=vi.1 ex.1 vi.1 view.1 MLINKS+=vi.1 nex.1 vi.1 nview.1 vi.1 nvi.1 @@ -51,8 +52,8 @@ SRCS+= cl_bsd.c cl_funcs.c cl_main.c cl_read.c cl_screen.c cl_term.c # General sources. -SRCS+= cut.c delete.c exf.c key.c line.c log.c main.c mark.c msg.c options.c \ - options_f.c put.c screen.c search.c seq.c recover.c util.c +SRCS+= cut.c conv.c delete.c exf.c key.c line.c log.c main.c mark.c msg.c \ + options.c options_f.c put.c screen.c search.c seq.c recover.c util.c # Ex source. SRCS+= ex.c ex_abbrev.c ex_append.c ex_args.c ex_argv.c ex_at.c ex_bang.c \ @@ -75,7 +76,7 @@ # Vi screen source. SRCS+= vs_line.c vs_msg.c vs_refresh.c vs_relative.c vs_smap.c vs_split.c -FILES= ${CATALOGS:S;^;${SRCDIR}/catalog/;} +FILES= ${CATALOGS:S;^;${SRCDIR}/../nvi/catalog/;} FILESDIR= /usr/share/vi/catalog SYMLINKS= .for l in ${NLLINKS} Modified: soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h ============================================================================== --- soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h Wed Jul 13 13:24:40 2011 (r224180) +++ soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h Wed Jul 13 13:32:28 2011 (r224181) @@ -58,6 +58,7 @@ /* Define if you have the curses(3) addnstr function. */ #define HAVE_CURSES_ADDNSTR 1 +#define HAVE_CURSES_WADDNSTR 1 /* Define if you have the curses(3) beep function. */ #ifdef SYSV_CURSES @@ -188,8 +189,5 @@ /* Define if you have the unsetenv function. */ #define HAVE_UNSETENV 1 -/* Define if you have the valloc function. */ -#define HAVE_VALLOC 1 - /* Define if you have the vsnprintf function. */ #define HAVE_VSNPRINTF 1 From owner-svn-soc-all@FreeBSD.ORG Wed Jul 13 22:42:38 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 546DE106564A for ; Wed, 13 Jul 2011 22:42:36 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 13 Jul 2011 22:42:36 +0000 Date: Wed, 13 Jul 2011 22:42:36 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110713224236.546DE106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224192 - in soc2011/shm: TESLA/assertions/strawman TESLA/libtesla TESLA/strawman mac_test stress2 stress2/include stress2/lib stress2/misc stress2/testcases stress2/testcases/badcod... X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2011 22:42:38 -0000 Author: shm Date: Wed Jul 13 22:42:35 2011 New Revision: 224192 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224192 Log: * the great merge: 2.5/3 Added: soc2011/shm/TESLA/assertions/strawman/ - copied from r223430, soc2011/shm/TESLA/strawman/ soc2011/shm/stress2/ soc2011/shm/stress2/Makefile soc2011/shm/stress2/Makefile.gnu soc2011/shm/stress2/README soc2011/shm/stress2/all.cfg soc2011/shm/stress2/beaver1.sentex.ca soc2011/shm/stress2/creat.cfg soc2011/shm/stress2/default.cfg soc2011/shm/stress2/df.cfg soc2011/shm/stress2/disk.cfg soc2011/shm/stress2/hydra1.netperf.freebsd.org soc2011/shm/stress2/hydra2.netperf.freebsd.org soc2011/shm/stress2/include/ soc2011/shm/stress2/include/stress.h soc2011/shm/stress2/io.cfg soc2011/shm/stress2/jeff.cfg soc2011/shm/stress2/lib/ soc2011/shm/stress2/lib/Makefile soc2011/shm/stress2/lib/main.c soc2011/shm/stress2/lib/options.c soc2011/shm/stress2/lib/random_int.c soc2011/shm/stress2/lib/resources.c soc2011/shm/stress2/link.cfg soc2011/shm/stress2/load.cfg soc2011/shm/stress2/lockf.cfg soc2011/shm/stress2/marcus.cfg soc2011/shm/stress2/misc/ soc2011/shm/stress2/misc/README soc2011/shm/stress2/misc/all.sh (contents, props changed) soc2011/shm/stress2/misc/altbufferflushes.sh (contents, props changed) soc2011/shm/stress2/misc/alternativeFlushPath.sh (contents, props changed) soc2011/shm/stress2/misc/backingstore.sh (contents, props changed) soc2011/shm/stress2/misc/backingstore2.sh (contents, props changed) soc2011/shm/stress2/misc/backingstore3.sh (contents, props changed) soc2011/shm/stress2/misc/cleanup.sh (contents, props changed) soc2011/shm/stress2/misc/core.sh (contents, props changed) soc2011/shm/stress2/misc/crossmp.sh (contents, props changed) soc2011/shm/stress2/misc/crossmp2.sh (contents, props changed) soc2011/shm/stress2/misc/datamove.sh (contents, props changed) soc2011/shm/stress2/misc/datamove2.sh (contents, props changed) soc2011/shm/stress2/misc/datamove3.sh (contents, props changed) soc2011/shm/stress2/misc/devfs.sh (contents, props changed) soc2011/shm/stress2/misc/devfs2.sh (contents, props changed) soc2011/shm/stress2/misc/extattr.sh (contents, props changed) soc2011/shm/stress2/misc/extattrctl.sh (contents, props changed) soc2011/shm/stress2/misc/fdescfs.sh (contents, props changed) soc2011/shm/stress2/misc/fpclone.sh (contents, props changed) soc2011/shm/stress2/misc/fpclone2.sh (contents, props changed) soc2011/shm/stress2/misc/fpu.sh (contents, props changed) soc2011/shm/stress2/misc/fragments.sh (contents, props changed) soc2011/shm/stress2/misc/fs.sh (contents, props changed) soc2011/shm/stress2/misc/fullpath.sh (contents, props changed) soc2011/shm/stress2/misc/fuzz.sh (contents, props changed) soc2011/shm/stress2/misc/gjournal.sh (contents, props changed) soc2011/shm/stress2/misc/inversion.sh (contents, props changed) soc2011/shm/stress2/misc/isofs.sh (contents, props changed) soc2011/shm/stress2/misc/jail.sh (contents, props changed) soc2011/shm/stress2/misc/jail2.sh (contents, props changed) soc2011/shm/stress2/misc/jail3.sh (contents, props changed) soc2011/shm/stress2/misc/jail4.sh (contents, props changed) soc2011/shm/stress2/misc/kevent.sh (contents, props changed) soc2011/shm/stress2/misc/kevent2.sh (contents, props changed) soc2011/shm/stress2/misc/kevent3.sh (contents, props changed) soc2011/shm/stress2/misc/kevent4.sh (contents, props changed) soc2011/shm/stress2/misc/kevent5.sh (contents, props changed) soc2011/shm/stress2/misc/kinfo.sh (contents, props changed) soc2011/shm/stress2/misc/kinfo2.sh (contents, props changed) soc2011/shm/stress2/misc/kinfo3.sh (contents, props changed) soc2011/shm/stress2/misc/ldt.sh (contents, props changed) soc2011/shm/stress2/misc/ldt2.sh (contents, props changed) soc2011/shm/stress2/misc/libMicro.sh (contents, props changed) soc2011/shm/stress2/misc/linger.sh (contents, props changed) soc2011/shm/stress2/misc/linger2.sh (contents, props changed) soc2011/shm/stress2/misc/lockf.sh (contents, props changed) soc2011/shm/stress2/misc/lookup_shared.sh (contents, props changed) soc2011/shm/stress2/misc/mac.sh (contents, props changed) soc2011/shm/stress2/misc/mac_chkexec.sh (contents, props changed) soc2011/shm/stress2/misc/md.sh (contents, props changed) soc2011/shm/stress2/misc/md2.sh (contents, props changed) soc2011/shm/stress2/misc/md3.sh (contents, props changed) soc2011/shm/stress2/misc/mlockall.sh (contents, props changed) soc2011/shm/stress2/misc/mmap.sh (contents, props changed) soc2011/shm/stress2/misc/mmap2.sh (contents, props changed) soc2011/shm/stress2/misc/mmap3.sh (contents, props changed) soc2011/shm/stress2/misc/mmap4.sh (contents, props changed) soc2011/shm/stress2/misc/mount.sh (contents, props changed) soc2011/shm/stress2/misc/mount2.sh (contents, props changed) soc2011/shm/stress2/misc/mountro.sh (contents, props changed) soc2011/shm/stress2/misc/mountro2.sh (contents, props changed) soc2011/shm/stress2/misc/mountro3.sh (contents, props changed) soc2011/shm/stress2/misc/msdos.sh (contents, props changed) soc2011/shm/stress2/misc/msdos2.sh (contents, props changed) soc2011/shm/stress2/misc/msdos3.sh (contents, props changed) soc2011/shm/stress2/misc/msdos4.sh (contents, props changed) soc2011/shm/stress2/misc/namecache.sh (contents, props changed) soc2011/shm/stress2/misc/nbufkv.sh (contents, props changed) soc2011/shm/stress2/misc/newfs.sh (contents, props changed) soc2011/shm/stress2/misc/newfs2.sh (contents, props changed) soc2011/shm/stress2/misc/newfs3.sh (contents, props changed) soc2011/shm/stress2/misc/newfs4.sh (contents, props changed) soc2011/shm/stress2/misc/nfs.sh (contents, props changed) soc2011/shm/stress2/misc/nfs2.sh (contents, props changed) soc2011/shm/stress2/misc/nfs3.sh (contents, props changed) soc2011/shm/stress2/misc/nfs4.sh (contents, props changed) soc2011/shm/stress2/misc/nfs5.sh (contents, props changed) soc2011/shm/stress2/misc/nfs6.sh (contents, props changed) soc2011/shm/stress2/misc/nfs7.sh (contents, props changed) soc2011/shm/stress2/misc/nfs8.sh (contents, props changed) soc2011/shm/stress2/misc/nfs9.sh (contents, props changed) soc2011/shm/stress2/misc/nfsrename.sh (contents, props changed) soc2011/shm/stress2/misc/nullfs.sh (contents, props changed) soc2011/shm/stress2/misc/nullfs2.sh (contents, props changed) soc2011/shm/stress2/misc/nullfs3.sh (contents, props changed) soc2011/shm/stress2/misc/nullfs4.sh (contents, props changed) soc2011/shm/stress2/misc/nullfs5.sh (contents, props changed) soc2011/shm/stress2/misc/nullfs6.sh (contents, props changed) soc2011/shm/stress2/misc/pmc.sh (contents, props changed) soc2011/shm/stress2/misc/procfs.sh (contents, props changed) soc2011/shm/stress2/misc/procfs2.sh (contents, props changed) soc2011/shm/stress2/misc/pthread.sh (contents, props changed) soc2011/shm/stress2/misc/quota1.sh (contents, props changed) soc2011/shm/stress2/misc/quota10.sh (contents, props changed) soc2011/shm/stress2/misc/quota2.sh (contents, props changed) soc2011/shm/stress2/misc/quota3.sh (contents, props changed) soc2011/shm/stress2/misc/quota4.sh (contents, props changed) soc2011/shm/stress2/misc/quota5.sh (contents, props changed) soc2011/shm/stress2/misc/quota6.sh (contents, props changed) soc2011/shm/stress2/misc/quota7.sh (contents, props changed) soc2011/shm/stress2/misc/quota8.sh (contents, props changed) soc2011/shm/stress2/misc/quota9.sh (contents, props changed) soc2011/shm/stress2/misc/recursiveflushes.sh (contents, props changed) soc2011/shm/stress2/misc/rename.sh (contents, props changed) soc2011/shm/stress2/misc/rename2.sh (contents, props changed) soc2011/shm/stress2/misc/rename3.sh (contents, props changed) soc2011/shm/stress2/misc/rename4.sh (contents, props changed) soc2011/shm/stress2/misc/revoke.sh (contents, props changed) soc2011/shm/stress2/misc/sem.sh (contents, props changed) soc2011/shm/stress2/misc/sendfile.sh (contents, props changed) soc2011/shm/stress2/misc/snap.sh (contents, props changed) soc2011/shm/stress2/misc/snap2-1.sh (contents, props changed) soc2011/shm/stress2/misc/snap2.sh (contents, props changed) soc2011/shm/stress2/misc/snap3.sh (contents, props changed) soc2011/shm/stress2/misc/snap4.sh (contents, props changed) soc2011/shm/stress2/misc/snap5-1.sh (contents, props changed) soc2011/shm/stress2/misc/snap5.sh (contents, props changed) soc2011/shm/stress2/misc/snap6.sh (contents, props changed) soc2011/shm/stress2/misc/snap7.sh (contents, props changed) soc2011/shm/stress2/misc/snap8.sh (contents, props changed) soc2011/shm/stress2/misc/snapbackup.sh (contents, props changed) soc2011/shm/stress2/misc/softupdate.sh (contents, props changed) soc2011/shm/stress2/misc/statfs.sh (contents, props changed) soc2011/shm/stress2/misc/suj.sh (contents, props changed) soc2011/shm/stress2/misc/suj10.sh (contents, props changed) soc2011/shm/stress2/misc/suj11.sh (contents, props changed) soc2011/shm/stress2/misc/suj12.sh (contents, props changed) soc2011/shm/stress2/misc/suj13.sh (contents, props changed) soc2011/shm/stress2/misc/suj14.sh (contents, props changed) soc2011/shm/stress2/misc/suj15.sh (contents, props changed) soc2011/shm/stress2/misc/suj16.sh (contents, props changed) soc2011/shm/stress2/misc/suj17.sh (contents, props changed) soc2011/shm/stress2/misc/suj19.sh (contents, props changed) soc2011/shm/stress2/misc/suj2.sh (contents, props changed) soc2011/shm/stress2/misc/suj20.sh (contents, props changed) soc2011/shm/stress2/misc/suj21.sh (contents, props changed) soc2011/shm/stress2/misc/suj22.sh (contents, props changed) soc2011/shm/stress2/misc/suj3.sh (contents, props changed) soc2011/shm/stress2/misc/suj4.sh (contents, props changed) soc2011/shm/stress2/misc/suj5.sh (contents, props changed) soc2011/shm/stress2/misc/suj6.sh (contents, props changed) soc2011/shm/stress2/misc/suj7.sh (contents, props changed) soc2011/shm/stress2/misc/suj8.sh (contents, props changed) soc2011/shm/stress2/misc/suj9.sh (contents, props changed) soc2011/shm/stress2/misc/symlink.sh (contents, props changed) soc2011/shm/stress2/misc/symlink2.sh (contents, props changed) soc2011/shm/stress2/misc/syscall.sh (contents, props changed) soc2011/shm/stress2/misc/syscall2.sh (contents, props changed) soc2011/shm/stress2/misc/tmpfs.sh (contents, props changed) soc2011/shm/stress2/misc/tmpfs2.sh (contents, props changed) soc2011/shm/stress2/misc/tmpfs3.sh (contents, props changed) soc2011/shm/stress2/misc/tmpfs4.sh (contents, props changed) soc2011/shm/stress2/misc/trim.sh (contents, props changed) soc2011/shm/stress2/misc/trim2.sh (contents, props changed) soc2011/shm/stress2/misc/trim3.sh (contents, props changed) soc2011/shm/stress2/misc/trim4.sh (contents, props changed) soc2011/shm/stress2/misc/truncate.sh (contents, props changed) soc2011/shm/stress2/misc/truncate2.sh (contents, props changed) soc2011/shm/stress2/misc/truncate3.sh (contents, props changed) soc2011/shm/stress2/misc/truncate4.sh (contents, props changed) soc2011/shm/stress2/misc/truncate5.sh (contents, props changed) soc2011/shm/stress2/misc/ucom.sh (contents, props changed) soc2011/shm/stress2/misc/umount.sh (contents, props changed) soc2011/shm/stress2/misc/umountf.sh (contents, props changed) soc2011/shm/stress2/misc/umountf2.sh (contents, props changed) soc2011/shm/stress2/misc/umountf3.sh (contents, props changed) soc2011/shm/stress2/misc/umountf4.sh (contents, props changed) soc2011/shm/stress2/misc/union.sh (contents, props changed) soc2011/shm/stress2/misc/unionfs.sh (contents, props changed) soc2011/shm/stress2/misc/unionfs2.sh (contents, props changed) soc2011/shm/stress2/misc/unionfs3.sh (contents, props changed) soc2011/shm/stress2/misc/vunref.sh (contents, props changed) soc2011/shm/stress2/misc/vunref2.sh (contents, props changed) soc2011/shm/stress2/misc/zfs.sh (contents, props changed) soc2011/shm/stress2/misc/zfs2.sh (contents, props changed) soc2011/shm/stress2/misc/zfs3.sh (contents, props changed) soc2011/shm/stress2/misc/zfs4.sh (contents, props changed) soc2011/shm/stress2/misc/zfs5.sh (contents, props changed) soc2011/shm/stress2/mkdir.cfg soc2011/shm/stress2/mkfifo.cfg soc2011/shm/stress2/norw.cfg soc2011/shm/stress2/noswap.cfg soc2011/shm/stress2/orangutan.netperf.freebsd.org soc2011/shm/stress2/pty.cfg soc2011/shm/stress2/run.sh (contents, props changed) soc2011/shm/stress2/rw.cfg soc2011/shm/stress2/syscall.cfg soc2011/shm/stress2/sysctl.cfg soc2011/shm/stress2/testcases/ soc2011/shm/stress2/testcases/Makefile soc2011/shm/stress2/testcases/Makefile.inc soc2011/shm/stress2/testcases/README soc2011/shm/stress2/testcases/badcode/ soc2011/shm/stress2/testcases/badcode/Makefile soc2011/shm/stress2/testcases/badcode/badcode.c soc2011/shm/stress2/testcases/creat/ soc2011/shm/stress2/testcases/creat/Makefile soc2011/shm/stress2/testcases/creat/creat.c soc2011/shm/stress2/testcases/fts/ soc2011/shm/stress2/testcases/fts/Makefile soc2011/shm/stress2/testcases/fts/fts.c soc2011/shm/stress2/testcases/link/ soc2011/shm/stress2/testcases/link/Makefile soc2011/shm/stress2/testcases/link/link.c soc2011/shm/stress2/testcases/lockf/ soc2011/shm/stress2/testcases/lockf/Makefile soc2011/shm/stress2/testcases/lockf/lockf.c soc2011/shm/stress2/testcases/lockf2/ soc2011/shm/stress2/testcases/lockf2/Makefile soc2011/shm/stress2/testcases/lockf2/lockf2.c soc2011/shm/stress2/testcases/mkdir/ soc2011/shm/stress2/testcases/mkdir/Makefile soc2011/shm/stress2/testcases/mkdir/mkdir.c soc2011/shm/stress2/testcases/mkfifo/ soc2011/shm/stress2/testcases/mkfifo/Makefile soc2011/shm/stress2/testcases/mkfifo/mkfifo.c soc2011/shm/stress2/testcases/mmap/ soc2011/shm/stress2/testcases/mmap/Makefile soc2011/shm/stress2/testcases/mmap/mmap.c soc2011/shm/stress2/testcases/openat/ soc2011/shm/stress2/testcases/openat/Makefile soc2011/shm/stress2/testcases/openat/doat.c soc2011/shm/stress2/testcases/openat/openat.c soc2011/shm/stress2/testcases/pty/ soc2011/shm/stress2/testcases/pty/Makefile soc2011/shm/stress2/testcases/pty/pty.c soc2011/shm/stress2/testcases/rename/ soc2011/shm/stress2/testcases/rename/Makefile soc2011/shm/stress2/testcases/rename/rename.c soc2011/shm/stress2/testcases/run/ soc2011/shm/stress2/testcases/run/Makefile soc2011/shm/stress2/testcases/run/run.c soc2011/shm/stress2/testcases/rw/ soc2011/shm/stress2/testcases/rw/Makefile soc2011/shm/stress2/testcases/rw/rw.c soc2011/shm/stress2/testcases/shm/ soc2011/shm/stress2/testcases/shm/Makefile soc2011/shm/stress2/testcases/shm/shm.c soc2011/shm/stress2/testcases/socket/ soc2011/shm/stress2/testcases/socket/Makefile soc2011/shm/stress2/testcases/socket/socket.c soc2011/shm/stress2/testcases/swap/ soc2011/shm/stress2/testcases/swap/Makefile soc2011/shm/stress2/testcases/swap/swap.c soc2011/shm/stress2/testcases/symlink/ soc2011/shm/stress2/testcases/symlink/Makefile soc2011/shm/stress2/testcases/symlink/symlink.c soc2011/shm/stress2/testcases/syscall/ soc2011/shm/stress2/testcases/syscall/Makefile soc2011/shm/stress2/testcases/syscall/syscall.c soc2011/shm/stress2/testcases/sysctl/ soc2011/shm/stress2/testcases/sysctl/Makefile soc2011/shm/stress2/testcases/sysctl/sysctl.c soc2011/shm/stress2/testcases/tcp/ soc2011/shm/stress2/testcases/tcp/Makefile soc2011/shm/stress2/testcases/tcp/tcp.c soc2011/shm/stress2/testcases/thr1/ soc2011/shm/stress2/testcases/thr1/Makefile soc2011/shm/stress2/testcases/thr1/thr1.c soc2011/shm/stress2/testcases/thr2/ soc2011/shm/stress2/testcases/thr2/Makefile soc2011/shm/stress2/testcases/thr2/thr2.c soc2011/shm/stress2/testcases/udp/ soc2011/shm/stress2/testcases/udp/Makefile soc2011/shm/stress2/testcases/udp/udp.c soc2011/shm/stress2/tools/ soc2011/shm/stress2/tools/df.sh (contents, props changed) soc2011/shm/stress2/tools/freeze.sh (contents, props changed) soc2011/shm/stress2/tools/freeze2.sh (contents, props changed) soc2011/shm/stress2/tools/fstool.c soc2011/shm/stress2/tools/iwatch.sh (contents, props changed) soc2011/shm/stress2/tools/l3.sh (contents, props changed) soc2011/shm/stress2/tools/leaks.sh (contents, props changed) soc2011/shm/stress2/tools/leaks2.sh (contents, props changed) soc2011/shm/stress2/tools/module/ soc2011/shm/stress2/tools/module/Makefile soc2011/shm/stress2/tools/module/ptest.c soc2011/shm/stress2/tools/monitor.sh (contents, props changed) soc2011/shm/stress2/tools/ptsleak.sh (contents, props changed) soc2011/shm/stress2/tools/ptyleak.sh (contents, props changed) soc2011/shm/stress2/tools/rwatch.sh (contents, props changed) soc2011/shm/stress2/udp.cfg soc2011/shm/stress2/vfs.cfg Replaced: soc2011/shm/TESLA/assertions/strawman/Makefile - copied unchanged from r224064, soc2011/shm/TESLA/strawman/Makefile Deleted: soc2011/shm/TESLA/strawman/ soc2011/shm/mac_test/ Modified: soc2011/shm/TESLA/libtesla/Makefile Copied: soc2011/shm/TESLA/assertions/strawman/Makefile (from r224064, soc2011/shm/TESLA/strawman/Makefile) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/strawman/Makefile Wed Jul 13 22:42:35 2011 (r224192, copy of r224064, soc2011/shm/TESLA/strawman/Makefile) @@ -0,0 +1,65 @@ +.DEFAULT: all +.PHONY: all clean + +CC = ../kernel/tesla-clang -DTESLA_INCLUDE_ASSERTIONS +LD = ../kernel/tesla-clang + +CFLAGS = -g -Wall -I .. + +UNITS = instrumentation caller syscalls +## Include if not using automatically generated instrumentation +# _instrumentation + +OBJ = $(UNITS:=.o) + + +all: instrumentation + ## First create or copy instrumentation.c/.spec if needed + ## then actually build the application. We need to do this + ## in a new make instance, as otherwise make won't realize + ## that instrumentation.c was created after it started + make -C . test + +clean: + rm -f test *.bc *.ll *.o *.c-tesla.h \ + generated.c generated.spec instrumentation.spec \ + instrumentation.c + +## Create $(1) from $(2), if ($2) exists and is different from $(1), +## but if neither $(1) nor $(2) exist, create $(1) from a blank file +copy_changed_file = \ + if [ -e $(2) -a -e $(1) ] \ + && ! cmp -s $(2) $(1); then \ + echo $(2) has changed, copying to $(1); \ + cp $(2) $(1); \ + elif [ ! -e $(1) ]; then \ + echo $(2) and $(1) do not exist, creating blank $(1); \ + touch $(1); \ + fi + +## On every build, if generated.spec/.c has been changed, copy it +## to instrumentation.spec/.c but if generated.spec/.c does not exist, +## create an empty file +instrumentation: + $(call copy_changed_file,instrumentation.spec,generated.spec) + $(call copy_changed_file,instrumentation.c,generated.c) +## Force this to be run even if instrumentation.spec exists +.PHONY: instrumentation + +test: $(OBJ) + $(LD) -o $@ $^ *.o + +syscalls.o: ../tesla/tesla.h + + +# LLVM IR for inspection +all: syscalls.ll +syscalls.ll: syscalls.c + $(CC) $(CFLAGS) -emit-llvm -o $@ -S $^ + + +# Clang-generated declarations of instrumentation +syscalls.o: instrumentation.spec +_instrumentation.o: syscalls.c-tesla.h +syscalls.c-tesla.h: syscalls.o + Modified: soc2011/shm/TESLA/libtesla/Makefile ============================================================================== --- soc2011/shm/TESLA/libtesla/Makefile Wed Jul 13 21:07:50 2011 (r224191) +++ soc2011/shm/TESLA/libtesla/Makefile Wed Jul 13 22:42:35 2011 (r224192) @@ -1,20 +1,19 @@ -CFLAGS=-g -Wall -I.. -Werror +CFLAGS=-g -Wall -Werror -I.. ALL=tesla_state.o tesla_state_global.o tesla_state_perthread.o \ tesla_registration.o tesla_util.o all: ${ALL} tesla_state.o: tesla_state.c - gcc -c ${CFLAGS} -o tesla_state.o tesla_state.c + $(CC) -c ${CFLAGS} -o tesla_state.o tesla_state.c tesla_state_global.o: tesla_state_global.c - gcc -c ${CFLAGS} -o tesla_state_global.o tesla_state_global.c + $(CC) -c ${CFLAGS} -o tesla_state_global.o tesla_state_global.c tesla_state_perthread.o: tesla_state_perthread.c - gcc -c ${CFLAGS} -o tesla_state_perthread.o tesla_state_perthread.c + $(CC) -c ${CFLAGS} -o tesla_state_perthread.o tesla_state_perthread.c tesla_registration.o: tesla_registration.c - gcc -c ${CFLAGS} -o tesla_registration.o tesla_registration.c + $(CC) -c ${CFLAGS} -o tesla_registration.o tesla_registration.c tesla_util.o: tesla_util.c - gcc -c ${CFLAGS} -o tesla_util.o tesla_util.c + $(CC) -c ${CFLAGS} -o tesla_util.o tesla_util.c clean: rm -f ${ALL} - Added: soc2011/shm/stress2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/Makefile Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= lib testcases + +.include Added: soc2011/shm/stress2/Makefile.gnu ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/Makefile.gnu Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,28 @@ +#MAKE=gmake + +# Gnu Makefile by "Brad Knotwell" + +LIBOBJS=$(subst .c,.o,$(wildcard lib/*.c)) +TESTDIRS=run swap mkdir creat thr1 syscall rw sysctl tcp udp +EXES=$(foreach dir,$(TESTDIRS),testcases/$(dir)/$(dir).test) +OBJS=$(subst .test,.o,$(EXES)) +SRCS=$(subst .o,.c,$(OBJS)) +LIBS=./lib/libstress.a +CFLAGS=-g -Wall -I./include + +all: $(EXES) + +lib/libstress.a: lib/libstress.a($(LIBOBJS)) + ranlib lib/libstress.a + +lib/libstress.a(*.o): $(LIBOBJS) + +$(OBJS): %.o: %.c + +$(EXES): %.test: %.o lib/libstress.a + +%.test: %.o + $(CC) $(CFLAGS) $(LIBS) $< -o $@ + +clean: + rm -fr $(LIBOBJS) lib/libstress.a $(EXES) $(OBJS) Added: soc2011/shm/stress2/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/README Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,59 @@ +$FreeBSD$ + +This is the FreeBSD kernel stress test suite. The purpose is to crash the +computer, by stressing selected parts of the kernel, thus exposing inadequate +error handling. + +Do not run the syscall test as root. + +To build and use: + +make +sh ./run.sh + +The "run.sh" script accepts an optional configuration file in order to test specific areas. +For example: + +./run.sh vfs.sh + + +To run all of the different test scenarios type: + +./run.sh -a + +You may have to tune the stress test to make sure that your test box run low +on resources. For example: + +INCARNATIONS=125 ./run.sh + +The following sub-directories exists: + +./doc Documentation +./include Include file for building the test programs in ./testcases +./lib Common support files for the test programs +./misc Various test scenarios. Mostly regression tests +./testcases Test programs +./tools Supplementary tools used in stress testing + +The name stress2 indicates that this is the second generation of the Kernel Stress Test Suite. +The first version (stress) was based mostly on scripts. + + +20090120: des@ pointed out it would be nice to be able to set the + random seed in order to be able to reproduce errors in time. + A test of this show that the occurrence of panics are still + non-deterministic even with a fixed seed. The known broken + unionfs was used to test this: + http://people.freebsd.org/~pho/stress/log/marcus006.txt. + First panic occurred after 29 loops and the second after 8 + with a seed of "123". + + The randomness that is provided by lack of synchronization + with timer interrupt, disk block layout and disk access + latencies caused by platter and heads speed changes, disk + firmware internal operations, and so on are _much_ bigger + then the undeterminism caused by the non-repeatable random + seed. + + Anyway, I have always view the this issue as only a slight + inconvenience. Added: soc2011/shm/stress2/all.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/all.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration: run all test programs + +# Default values +. ./default.cfg + +export TESTPROGS="" Added: soc2011/shm/stress2/beaver1.sentex.ca ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/beaver1.sentex.ca Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +# Configuration needed for the beaver1 test box + +export RUNDIR=/usr/tmp/stressX +TZ=Europe/Copenhagen; export TZ + +###export BLASTHOST=192.168.5.105 # orangutan +export BLASTHOST=127.0.0.1 # + +export DISKIMAGE=/usr/tmp/diskimage # Location of 1G disk image +export MNTPOINT=/mnt # Disk image mount point +export TESTUSER=test # Name of non root test user +###export MDSTART=5 # Start of free md units +###INCARNATIONS=125 Added: soc2011/shm/stress2/creat.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/creat.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration + +# Default values +. ./default.cfg + +export TESTPROGS="testcases/creat/creat" +export creatNODELAY=1 +export creatLOAD=100 Added: soc2011/shm/stress2/default.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/default.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,76 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration + +# Default values +export RUNDIR=${RUNDIR:-/tmp/stressX} +export RUNTIME=${RUNTIME:-2m} +export VERBOSE=${VERBOSE:-1} +export LOAD=20 + +# The INCARNATIONS variable should be set to match the number of CPUs and +# the amount of RAM in the test box. +# 10 for a 1,8 GHz Celeron with 256 Mb of RAM +# 100 for a dual Xeon 1,8 GHz with 1024 Gb of RAM + +export INCARNATIONS=${INCARNATIONS:-20} + +# Change hostname! +#export BLASTHOST=192.168.1.2 # host with udp disacard enabled in inetd.conf +export BLASTHOST=192.168.1.3 # host with udp disacard enabled in inetd.conf + + +# Run all test cases: +export runRUNTIME=${runRUNTIME:-3d} # Run tests for three days +export runINCARNATIONS=1 +export runLOAD=100 + +export swapINCARNATIONS=$((2 * INCARNATIONS)) +export swapLOAD=80 + +export syscallKILL=1 + +export rwLOAD=70 +export mkdirLOAD=80 +export creatLOAD=80 + +export symlinkLOAD=20 + +export tcpKILL=1 +#export shmKILL=1 +export shmINCARNATIONS=5 + +export TESTPROGS=" +testcases/rw/rw +testcases/swap/swap +testcases/creat/creat +testcases/mkdir/mkdir +testcases/thr1/thr1 +testcases/udp/udp +testcases/tcp/tcp +" + +[ -r default.cfg ] && ulimit -t 200 # Do not run this for the misc sub directory + +# +# Defaults for ./misc tests +# + +diskimage=/var/tmp/diskimage # Location of 1G disk image +mntpoint=/mnt # Disk image mount point +testuser=pho # Name of non root test user +mdstart=5 # Start of free md units +part=a # partitition to use on a md FS + +# Wrapper for dd +dede () { # file, blocksize, count + local log=/tmp/$0.$$ + dd if=/dev/zero of=$1 bs=$2 count=$3 > $log 2>&1 + local status=$? + egrep -v "records in|records out|bytes transferred" $log + rm -f $log + return $status +} + +[ -f "./`hostname`" ] && . "./`hostname`" # source in local configuration +[ -f "../`hostname`" ] && . "../`hostname`" # source in local configuration Added: soc2011/shm/stress2/df.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/df.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration + +# Default values +. ./default.cfg +###export creatVERBOSE=3 # Remove comments for test +###export rwVERBOSE=3 # Remove comments for test + +# Only run these two test programs for VFS tests + +export TESTPROGS="testcases/creat/creat testcases/rw/rw" Added: soc2011/shm/stress2/disk.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/disk.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration + +# Default values +. ./default.cfg + +export TESTPROGS="testcases/rw/rw testcases/creat/creat testcases/mkdir/mkdir" +export rwNODELAY=1 +export rwLOAD=100 Added: soc2011/shm/stress2/hydra1.netperf.freebsd.org ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/hydra1.netperf.freebsd.org Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +# Configuration needed for the hydra1 test box + +export RUNDIR=/var/tmp/stressX + +export BLASTHOST=192.168.5.105 # orangutan + +export DISKIMAGE=/var/tmp/diskimage # Location of 1G disk image +export MNTPOINT=/mnt # Disk image mount point +export TESTUSER=test # Name of non root test user +export MDSTART=5 # Start of free md units +INCARNATIONS=150 Added: soc2011/shm/stress2/hydra2.netperf.freebsd.org ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/hydra2.netperf.freebsd.org Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +# Configuration needed for the hydra1 test box + +export RUNDIR=/m2/stressX + +export BLASTHOST=192.168.5.105 # orangutan + +export DISKIMAGE=/m2/tmp/diskimage # Location of 1G disk image +export MNTPOINT=/mnt # Disk image mount point +export TESTUSER=test # Name of non root test user +export MDSTART=5 # Start of free md units +INCARNATIONS=125 Added: soc2011/shm/stress2/include/stress.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/include/stress.h Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,66 @@ +/*- + * Copyright (c) 2008 Peter Holm + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +#ifndef _STRESS_H_ +#define _STRESS_H_ +extern int setup(int); +extern int test(void); +extern void cleanup(void); +extern void options(int, char **); +extern int random_int(int, int); +/*extern void limits(void);*/ + +typedef struct { + int argc; + char **argv; + int run_time; + int load; + char *wd; + char *cd; + int verbose; + int incarnations; + int hog; + int nodelay; + int kill; + int kblocks; + int inodes; +} opt_t; + +extern opt_t *op; + +extern volatile int done_testing; +extern char *home; +extern void rmval(void); +extern void putval(unsigned long); +extern unsigned long getval(void); +extern void getdf(int64_t *, int64_t *); +extern void reservedf(int64_t, int64_t); +extern void show_status(void); +extern int64_t swap(void); +extern unsigned long usermem(void); +#endif Added: soc2011/shm/stress2/io.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/io.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration + +# Default values +. ./default.cfg + +# Only run these three test programs for VFS tests + +export TESTPROGS="testcases/swap/swap testcases/creat/creat testcases/mkdir/mkdir testcases/rw/rw" +export swapLOAD=10 Added: soc2011/shm/stress2/jeff.cfg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/jeff.cfg Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +# Stress Test Suite Configuration + +# Default values +. ./default.cfg + +# Only run these two test programs for VFS tests + +export TESTPROGS="testcases/creat/creat testcases/mkdir/mkdir" Added: soc2011/shm/stress2/lib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/lib/Makefile Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +LIB=stress +SRCS=main.c options.c random_int.c resources.c + +.include "../testcases/Makefile.inc" + +.include Added: soc2011/shm/stress2/lib/main.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/lib/main.c Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,208 @@ +/*- + * Copyright (c) 2008 Peter Holm + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + */ + +/* Main program for all test programs */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "stress.h" + +static char const rcsid[] = "$Name: $ $FreeBSD$"; + +volatile int done_testing; +static int cleanupcalled = 0; +char *home; + +static pid_t *r; + +void +handler(int i __unused) +{ + int j; + + done_testing = 1; + for (j = 0; j < op->incarnations; j++) { + if (op->verbose > 2) + printf("handler: kill -HUP %d\n", r[j]); + if (r[j] != 0 && kill(r[j], SIGHUP) == -1) + if (errno != ESRCH) + warn("kill(%d, SIGHUP), %s:%d", r[j], __FILE__, __LINE__); + } + if (op->kill == 1) { + sleep(5); + /* test programs may have blocked for the SIGHUP, so try harder */ + for (j = 0; j < op->incarnations; j++) { + if (op->verbose > 2) + printf("handler: kill -KILL %d\n", r[j]); + if (r[j] != 0) + (void) kill(r[j], SIGKILL); + } + } +} + +void +run_test_handler(int i __unused) +{ + + done_testing = 1; +} + +void +exit_handler(int i __unused) +{ + + exit(1); +} + +void +callcleanup(void) +{ + if (cleanupcalled == 0) + cleanup(); + cleanupcalled = 1; +} + +static void +run_tests(int i) +{ + time_t start; + + signal(SIGHUP, run_test_handler); + signal(SIGINT, exit_handler); + atexit(callcleanup); + arc4random_stir(); + setup(i); + if ((strcmp(getprogname(), "run") != 0) && (op->nodelay == 0)) + sleep(random_int(1,10)); + start = time(NULL); + while (done_testing == 0 && + (time(NULL) - start) < op->run_time) { + test(); + } + callcleanup(); + exit(EXIT_SUCCESS); +} + +static void +run_incarnations(void) +{ + int i; + int s; + + signal(SIGHUP, handler); + for (i = 0; i < op->incarnations && done_testing == 0; i++) { + if ((r[i] = fork()) == 0) { + run_tests(i); + } + if (r[i] < 0) { + warn("fork(), %s:%d", __FILE__, __LINE__); + r[i] = 0; + break; + } + } + for (i = 0; i < op->incarnations; i++) + if (r[i] != 0 && waitpid(r[i], &s, 0) == -1) + warn("waitpid(%d), %s:%d", r[i], __FILE__, __LINE__); + + exit(EXIT_SUCCESS); +} + +static int +run_test(void) +{ + pid_t p; + time_t start; + int status = 0; + + if (random_int(1,100) > op->load) + return (status); + + show_status(); + + start = time(NULL); + done_testing = 0; + fflush(stdout); + rmval(); + p = fork(); + if (p == 0) + run_incarnations(); + if (p < 0) + err(1, "fork() in %s:%d", __FILE__, __LINE__); + while (done_testing != 1 && + (time(NULL) - start) < op->run_time) + sleep(1); + if (kill(p, SIGHUP) == -1) + warn("kill(%d, SIGHUP), %s:%d", p, __FILE__, __LINE__); + + if (waitpid(p, &status, 0) == -1) + err(1, "waitpid(%d), %s:%d", p, __FILE__, __LINE__); + + return (status); +} + +int +main(int argc, char **argv) +{ + struct stat sb; + int status = 0; + + options(argc, argv); + + umask(0); + if (stat(op->wd, &sb) == -1) { + if (mkdir(op->wd, 0770) == -1) + if (errno != EEXIST) + err(1, "mkdir(%s) %s:%d", op->wd, __FILE__, __LINE__); + } + if (stat(op->cd, &sb) == -1) { + if (mkdir(op->cd, 0770) == -1) + if (errno != EEXIST) + err(1, "mkdir(%s) %s:%d", op->cd, __FILE__, __LINE__); + } + if ((home = getcwd(NULL, 0)) == NULL) + err(1, "getcwd(), %s:%d", __FILE__, __LINE__); + if (chdir(op->wd) == -1) + err(1, "chdir(%s) %s:%d", op->wd, __FILE__, __LINE__); + + r = (pid_t *)calloc(1, op->incarnations * sizeof(pid_t)); + + status = run_test(); + + return (status); +} Added: soc2011/shm/stress2/lib/options.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/lib/options.c Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,265 @@ +/*- + * Copyright (c) 2008 Peter Holm + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include +#include +#include +#include + +#include "stress.h" + +opt_t opt; +opt_t *op; + +static char path[64]; + +static void +usage(char *where) +{ + char *help; + + if (where != NULL) + printf("Error in \"%s\"\n", where); + fprintf(stderr, "Usage: %s [-t | -l | -i | -d | -h | -k | -v]\n", getprogname()); + help = " t : time to run test\n" + " l : load factor 0 - 100%\n" + " i : max # of parallel incarnations\n" + " d : working directory\n" + " h : hog resources\n" + " k : terminate with SIGHUP + SIGKILL\n" + " n : no startup delay\n" + " v : verbose\n"; + printf(help); + exit(EX_USAGE); +} + +static int +time2sec(const char *string) +{ + int r, s = 0; + char modifier; + r = sscanf(string, "%d%c", &s, &modifier); + if (r == 2) + switch(modifier) { + case 's': break; + case 'm': s = s * 60; break; + case 'h': s = s * 60 * 60; break; + case 'd': s = s * 60 * 60 * 24; break; + default: + usage("-t"); + } + else + usage("-t"); + return (s); +} + +static char *gete(char *name) +{ + char *cp; + char help[128]; + + snprintf(help, sizeof(help), "%s%s", getprogname(), name); + cp = getenv(help); + if (cp == NULL) + cp = getenv(name); + return (cp); +} + +static void +environment(void) +{ + char *cp; + + if ((cp = gete("INCARNATIONS")) != NULL) { + if (sscanf(cp, "%d", &op->incarnations) != 1) + usage("INCARNATIONS"); + } + if ((cp = gete("LOAD")) != NULL) { + if (sscanf(cp, "%d", &op->load) != 1) + usage("LOAD"); + } + if ((cp = gete("RUNTIME")) != NULL) { + op->run_time = time2sec(cp); + } + if ((cp = gete("RUNDIR")) != NULL) { + op->wd = cp; + } + if ((cp = gete("CTRLDIR")) != NULL) { + op->cd = cp; + } + if ((cp = gete("HOG")) != NULL) { + op->hog = 1; + } + if ((cp = gete("KILL")) != NULL) { + op->kill = 1; + } + if ((cp = gete("NODELAY")) != NULL) { + op->nodelay = 1; + } + if ((cp = gete("VERBOSE")) != NULL) { + if (sscanf(cp, "%d", &op->verbose) != 1) + usage("VERBOSE"); + } + if ((cp = gete("KBLOCKS")) != NULL) { + if (sscanf(cp, "%d", &op->kblocks) != 1) + usage("KBLOCKS"); + } + if ((cp = gete("INODES")) != NULL) { + if (sscanf(cp, "%d", &op->inodes) != 1) + usage("INODES"); + } +} + +void +options(int argc, char **argv) +{ + int ch; + + op = &opt; + + op->run_time = 60; + op->load = 100; + op->wd = "/tmp/stressX"; + op->cd = "/tmp/stressX.control"; + op->incarnations = 1; + op->hog = 0; + op->kill = 0; + op->nodelay = 0; + op->verbose = 0; + op->kblocks = 0; + op->inodes = 0; + + environment(); + + while ((ch = getopt(argc, argv, "t:l:i:d:hknv")) != -1) + switch(ch) { + case 't': /* run time */ + op->run_time = time2sec(optarg); + break; + case 'l': /* load factor in pct */ + if (sscanf(optarg, "%d", &op->load) != 1) + usage("-l"); + break; + case 'i': /* max incarnations */ + if (sscanf(optarg, "%d", &op->incarnations) != 1) + usage("-i"); + break; + case 'd': /* working directory */ + op->wd = strdup(optarg); + break; + case 'h': /* hog flag */ + op->hog += 1; + break; + case 'k': /* kill flag */ + op->kill = 1; + break; + case 'n': /* no delay flag */ + op->nodelay = 1; + break; + case 'v': /* verbose flag */ + op->verbose += 1; + break; + default: + usage(NULL); + } + op->argc = argc -= optind; + op->argv = argv += optind; + + if (op->incarnations < 1) + op->incarnations = 1; + if (op->hog == 0) + op->incarnations = random_int(1, op->incarnations); + if (op->run_time < 15) + op->run_time = 15; + if (op->load < 0 || op->load > 100) + op->load = 100; +} + +void +show_status(void) +{ + char buf[80]; + int days; + time_t t; + + if (op->verbose > 0) { + t = op->run_time; + days = t / (60 * 60 * 24); + t = t % (60 * 60 * 24); + strftime(buf, sizeof(buf), "%T", gmtime(&t)); + printf("%8s: run time %2d+%s, incarnations %3d, load %3d, verbose %d\n", + getprogname(), days, buf, op->incarnations, op->load, + op->verbose); + } +} + +void +rmval(void) +{ + if (snprintf(path, sizeof(path), "%s/%s.conf", op->cd, getprogname()) < 0) + err(1, "snprintf path"); + (void) unlink(path); +} + +void +putval(unsigned long v) +{ + char buf[64]; + + rmval(); + snprintf(buf, sizeof(buf), "%lu", v); + if (symlink(buf, path) < 0) + err(1, "symlink(%s, %s)", path, buf); +} + +unsigned long +getval(void) +{ + int i, n; + unsigned long val; + char buf[64]; + + if ((n = readlink(path, buf, sizeof(buf) -1)) < 0) { + for (i = 0; i < 60; i++) { + sleep(1); + if ((n = readlink(path, buf, sizeof(buf) -1)) > 0) + break; + } + if (n < 0) + err(1, "readlink(%s). %s:%d", path, __FILE__, __LINE__); + } + buf[n] = '\0'; + if (sscanf(buf, "%ld", &val) != 1) + err(1, "sscanf(%s)", buf); + return val; +} Added: soc2011/shm/stress2/lib/random_int.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/stress2/lib/random_int.c Wed Jul 13 22:42:35 2011 (r224192) @@ -0,0 +1,57 @@ +/*- + * Copyright (c) 2008 Peter Holm + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + */ + +#include +__FBSDID("$FreeBSD$"); + +#include + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@FreeBSD.ORG Thu Jul 14 10:11:03 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 0C67E106564A for ; Thu, 14 Jul 2011 10:11:01 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 14 Jul 2011 10:11:01 +0000 Date: Thu, 14 Jul 2011 10:11:01 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110714101101.0C67E106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224208 - soc2011/shm/TESLA/examples/ping X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2011 10:11:03 -0000 Author: shm Date: Thu Jul 14 10:11:00 2011 New Revision: 224208 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224208 Log: * remerged from soc-g (missing part of the great merge) Added: soc2011/shm/TESLA/examples/ping/ soc2011/shm/TESLA/examples/ping/Makefile soc2011/shm/TESLA/examples/ping/ping.c soc2011/shm/TESLA/examples/ping/ping.spl soc2011/shm/TESLA/examples/ping/ping_assert.c soc2011/shm/TESLA/examples/ping/ping_assert.h Added: soc2011/shm/TESLA/examples/ping/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/examples/ping/Makefile Thu Jul 14 10:11:00 2011 (r224208) @@ -0,0 +1,34 @@ +SPLC ?= ../../cfa/splc +TESLA_CLANG ?= ../../kernel/tesla-clang +OPTLEVEL ?= -O0 +CC = $(TESLA_CLANG) + +CFLAGS=-Wall -g -I../.. -I. $(OPTLEVEL) + +TESLALIBS= \ + ../../libtesla/tesla_state.o \ + ../../libtesla/tesla_state_global.o \ + ../../libtesla/tesla_state_perthread.o \ + ../../libtesla/tesla_util.o + +.PHONY: all clean +all: ping + +ping_automata.c ping_defs.h: ping.spl + $(SPLC) -t tesla -s ping ping.spl + cp ping.spec instrumentation.spec + +ping.o: ping.c + $(CC) -c $(CFLAGS) -o $@ $< + +ping_assert.o: ping_assert.c ping_defs.h + $(CC) -c $(CFLAGS) -o $@ $< + +ping_automata.o: ping_automata.c ping_defs.h + $(CC) -c $(CFLAGS) -o $@ $< + +ping: ping_assert.o ping_automata.o ping.o ${TESLALIBS} + $(CC) -o $@ ping.o ping_automata.o ping_assert.o ${TESLALIBS} -lm -lipsec + +clean: + rm -f ping *.o Added: soc2011/shm/TESLA/examples/ping/ping.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/examples/ping/ping.c Thu Jul 14 10:11:00 2011 (r224208) @@ -0,0 +1,1726 @@ +/* + * Copyright (c) 1989, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Mike Muuss. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#if 0 +#ifndef lint +static const char copyright[] = +"@(#) Copyright (c) 1989, 1993\n\ + The Regents of the University of California. All rights reserved.\n"; +#endif /* not lint */ + +#ifndef lint +static char sccsid[] = "@(#)ping.c 8.1 (Berkeley) 6/5/93"; +#endif /* not lint */ +#endif +#include +__FBSDID("$FreeBSD: src/sbin/ping/ping.c,v 1.112.10.1.4.1 2010/06/14 02:09:06 kensmith Exp $"); + +/* + * P I N G . C + * + * Using the Internet Control Message Protocol (ICMP) "ECHO" facility, + * measure round-trip-delays and packet loss across network paths. + * + * Author - + * Mike Muuss + * U. S. Army Ballistic Research Laboratory + * December, 1983 + * + * Status - + * Public Domain. Distribution Unlimited. + * Bugs - + * More statistics could always be gathered. + * This program has to run SUID to ROOT to access the ICMP socket. + */ + +#include /* NB: we rely on this for */ +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#ifdef IPSEC +#include +#endif /*IPSEC*/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include "ping_defs.h" +#include "ping_assert.h" + +#define INADDR_LEN ((int)sizeof(in_addr_t)) +#define TIMEVAL_LEN ((int)sizeof(struct tv32)) +#define MASK_LEN (ICMP_MASKLEN - ICMP_MINLEN) +#define TS_LEN (ICMP_TSLEN - ICMP_MINLEN) +#define DEFDATALEN 56 /* default data length */ +#define FLOOD_BACKOFF 20000 /* usecs to back off if F_FLOOD mode */ + /* runs out of buffer space */ +#define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN) +#define MAXICMPLEN (ICMP_ADVLENMIN + MAX_IPOPTLEN) +#define MAXWAIT 10000 /* max ms to wait for response */ +#define MAXALARM (60 * 60) /* max seconds for alarm timeout */ +#define MAXTOS 255 + +#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */ +#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */ +#define SET(bit) (A(bit) |= B(bit)) +#define CLR(bit) (A(bit) &= (~B(bit))) +#define TST(bit) (A(bit) & B(bit)) + +struct tv32 { + int32_t tv32_sec; + int32_t tv32_usec; +}; + +/* various options */ +int options; +#define F_FLOOD 0x0001 +#define F_INTERVAL 0x0002 +#define F_NUMERIC 0x0004 +#define F_PINGFILLED 0x0008 +#define F_QUIET 0x0010 +#define F_RROUTE 0x0020 +#define F_SO_DEBUG 0x0040 +#define F_SO_DONTROUTE 0x0080 +#define F_VERBOSE 0x0100 +#define F_QUIET2 0x0200 +#define F_NOLOOP 0x0400 +#define F_MTTL 0x0800 +#define F_MIF 0x1000 +#define F_AUDIBLE 0x2000 +#ifdef IPSEC +#ifdef IPSEC_POLICY_IPSEC +#define F_POLICY 0x4000 +#endif /*IPSEC_POLICY_IPSEC*/ +#endif /*IPSEC*/ +#define F_TTL 0x8000 +#define F_MISSED 0x10000 +#define F_ONCE 0x20000 +#define F_HDRINCL 0x40000 +#define F_MASK 0x80000 +#define F_TIME 0x100000 +#define F_SWEEP 0x200000 +#define F_WAITTIME 0x400000 + +/* + * MAX_DUP_CHK is the number of bits in received table, i.e. the maximum + * number of received sequence numbers we can keep track of. Change 128 + * to 8192 for complete accuracy... + */ +#define MAX_DUP_CHK (8 * 128) +int mx_dup_ck = MAX_DUP_CHK; +char rcvd_tbl[MAX_DUP_CHK / 8]; + +struct sockaddr_in whereto; /* who to ping */ +int datalen = DEFDATALEN; +int maxpayload; +int s; /* socket file descriptor */ +u_char outpackhdr[IP_MAXPACKET], *outpack; +char BBELL = '\a'; /* characters written for MISSED and AUDIBLE */ +char BSPACE = '\b'; /* characters written for flood */ +char DOT = '.'; +char *hostname; +char *shostname; +int ident; /* process id to identify our packets */ +int uid; /* cached uid for micro-optimization */ +u_char icmp_type = ICMP_ECHO; +u_char icmp_type_rsp = ICMP_ECHOREPLY; +int phdr_len = 0; +int send_len; + +/* counters */ +long nmissedmax; /* max value of ntransmitted - nreceived - 1 */ +long npackets; /* max packets to transmit */ +long nreceived; /* # of packets we got back */ +long nrepeats; /* number of duplicates */ +long ntransmitted; /* sequence # for outbound packets = #sent */ +long snpackets; /* max packets to transmit in one sweep */ +long snreceived; /* # of packets we got back in this sweep */ +long sntransmitted; /* # of packets we sent in this sweep */ +int sweepmax; /* max value of payload in sweep */ +int sweepmin = 0; /* start value of payload in sweep */ +int sweepincr = 1; /* payload increment in sweep */ +int interval = 1000; /* interval between packets, ms */ +int waittime = MAXWAIT; /* timeout for each packet */ +long nrcvtimeout = 0; /* # of packets we got back after waittime */ + +/* timing */ +int timing; /* flag to do timing */ +double tmin = 999999999.0; /* minimum round trip time */ +double tmax = 0.0; /* maximum round trip time */ +double tsum = 0.0; /* sum of all times, for doing average */ +double tsumsq = 0.0; /* sum of all times squared, for std. dev. */ + +volatile sig_atomic_t finish_up; /* nonzero if we've been told to finish up */ +volatile sig_atomic_t siginfo_p; + +static void fill(char *, char *); +static u_short in_cksum(u_short *, int); +static void check_status(void); +static void finish(void) __dead2; +static void pinger(void); +static char *pr_addr(struct in_addr); +static char *pr_ntime(n_time); +static void pr_icmph(struct icmp *); +static void pr_iph(struct ip *); +static void pr_pack(char *, int, struct sockaddr_in *, struct timeval *); +static void pr_retip(struct ip *); +static void status(int); +static void stopit(int); +static void tvsub(struct timeval *, struct timeval *); +static void usage(void) __dead2; + +int +main(argc, argv) + int argc; + char *const *argv; +{ + struct sockaddr_in from, sock_in; + struct in_addr ifaddr; + struct timeval last, intvl; + struct iovec iov; + struct ip *ip; + struct msghdr msg; + struct sigaction si_sa; + size_t sz; + u_char *datap, packet[IP_MAXPACKET] __aligned(4); + char *ep, *source, *target, *payload; + struct hostent *hp; +#ifdef IPSEC_POLICY_IPSEC + char *policy_in, *policy_out; +#endif + struct sockaddr_in *to; + double t; + u_long alarmtimeout, ultmp; + int almost_done, ch, df, hold, i, icmp_len, mib[4], preload, sockerrno, + tos, ttl; + char ctrl[CMSG_SPACE(sizeof(struct timeval))]; + char hnamebuf[MAXHOSTNAMELEN], snamebuf[MAXHOSTNAMELEN]; +#ifdef IP_OPTIONS + char rspace[MAX_IPOPTLEN]; /* record route space */ +#endif + unsigned char loop, mttl; + + payload = source = NULL; +#ifdef IPSEC_POLICY_IPSEC + policy_in = policy_out = NULL; +#endif + + /* + * Do the stuff that we need root priv's for *first*, and + * then drop our setuid bit. Save error reporting for + * after arg parsing. + */ + s = socket(AF_INET, SOCK_RAW, IPPROTO_ICMP); + sockerrno = errno; + + setuid(getuid()); + uid = getuid(); + + alarmtimeout = df = preload = tos = 0; + + outpack = outpackhdr + sizeof(struct ip); + while ((ch = getopt(argc, argv, + "Aac:DdfG:g:h:I:i:Ll:M:m:nop:QqRrS:s:T:t:vW:z:" +#ifdef IPSEC +#ifdef IPSEC_POLICY_IPSEC + "P:" +#endif /*IPSEC_POLICY_IPSEC*/ +#endif /*IPSEC*/ + )) != -1) + { + switch(ch) { + case 'A': + options |= F_MISSED; + break; + case 'a': + options |= F_AUDIBLE; + break; + case 'c': + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg || ultmp > LONG_MAX || !ultmp) + errx(EX_USAGE, + "invalid count of packets to transmit: `%s'", + optarg); + npackets = ultmp; + break; + case 'D': + options |= F_HDRINCL; + df = 1; + break; + case 'd': + options |= F_SO_DEBUG; + break; + case 'f': + if (uid) { + errno = EPERM; + err(EX_NOPERM, "-f flag"); + } + options |= F_FLOOD; + setbuf(stdout, (char *)NULL); + break; + case 'G': /* Maximum packet size for ping sweep */ + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg) + errx(EX_USAGE, "invalid packet size: `%s'", + optarg); + if (uid != 0 && ultmp > DEFDATALEN) { + errno = EPERM; + err(EX_NOPERM, + "packet size too large: %lu > %u", + ultmp, DEFDATALEN); + } + options |= F_SWEEP; + sweepmax = ultmp; + break; + case 'g': /* Minimum packet size for ping sweep */ + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg) + errx(EX_USAGE, "invalid packet size: `%s'", + optarg); + if (uid != 0 && ultmp > DEFDATALEN) { + errno = EPERM; + err(EX_NOPERM, + "packet size too large: %lu > %u", + ultmp, DEFDATALEN); + } + options |= F_SWEEP; + sweepmin = ultmp; + break; + case 'h': /* Packet size increment for ping sweep */ + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg || ultmp < 1) + errx(EX_USAGE, "invalid increment size: `%s'", + optarg); + if (uid != 0 && ultmp > DEFDATALEN) { + errno = EPERM; + err(EX_NOPERM, + "packet size too large: %lu > %u", + ultmp, DEFDATALEN); + } + options |= F_SWEEP; + sweepincr = ultmp; + break; + case 'I': /* multicast interface */ + if (inet_aton(optarg, &ifaddr) == 0) + errx(EX_USAGE, + "invalid multicast interface: `%s'", + optarg); + options |= F_MIF; + break; + case 'i': /* wait between sending packets */ + t = strtod(optarg, &ep) * 1000.0; + if (*ep || ep == optarg || t > (double)INT_MAX) + errx(EX_USAGE, "invalid timing interval: `%s'", + optarg); + options |= F_INTERVAL; + interval = (int)t; + if (uid && interval < 1000) { + errno = EPERM; + err(EX_NOPERM, "-i interval too short"); + } + break; + case 'L': + options |= F_NOLOOP; + loop = 0; + break; + case 'l': + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg || ultmp > INT_MAX) + errx(EX_USAGE, + "invalid preload value: `%s'", optarg); + if (uid) { + errno = EPERM; + err(EX_NOPERM, "-l flag"); + } + preload = ultmp; + break; + case 'M': + switch(optarg[0]) { + case 'M': + case 'm': + options |= F_MASK; + break; + case 'T': + case 't': + options |= F_TIME; + break; + default: + errx(EX_USAGE, "invalid message: `%c'", optarg[0]); + break; + } + break; + case 'm': /* TTL */ + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg || ultmp > MAXTTL) + errx(EX_USAGE, "invalid TTL: `%s'", optarg); + ttl = ultmp; + options |= F_TTL; + break; + case 'n': + options |= F_NUMERIC; + break; + case 'o': + options |= F_ONCE; + break; +#ifdef IPSEC +#ifdef IPSEC_POLICY_IPSEC + case 'P': + options |= F_POLICY; + if (!strncmp("in", optarg, 2)) + policy_in = strdup(optarg); + else if (!strncmp("out", optarg, 3)) + policy_out = strdup(optarg); + else + errx(1, "invalid security policy"); + break; +#endif /*IPSEC_POLICY_IPSEC*/ +#endif /*IPSEC*/ + case 'p': /* fill buffer with user pattern */ + options |= F_PINGFILLED; + payload = optarg; + break; + case 'Q': + options |= F_QUIET2; + break; + case 'q': + options |= F_QUIET; + break; + case 'R': + options |= F_RROUTE; + break; + case 'r': + options |= F_SO_DONTROUTE; + break; + case 'S': + source = optarg; + break; + case 's': /* size of packet to send */ + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg) + errx(EX_USAGE, "invalid packet size: `%s'", + optarg); + if (uid != 0 && ultmp > DEFDATALEN) { + errno = EPERM; + err(EX_NOPERM, + "packet size too large: %lu > %u", + ultmp, DEFDATALEN); + } + datalen = ultmp; + break; + case 'T': /* multicast TTL */ + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg || ultmp > MAXTTL) + errx(EX_USAGE, "invalid multicast TTL: `%s'", + optarg); + mttl = ultmp; + options |= F_MTTL; + break; + case 't': + alarmtimeout = strtoul(optarg, &ep, 0); + if ((alarmtimeout < 1) || (alarmtimeout == ULONG_MAX)) + errx(EX_USAGE, "invalid timeout: `%s'", + optarg); + if (alarmtimeout > MAXALARM) + errx(EX_USAGE, "invalid timeout: `%s' > %d", + optarg, MAXALARM); + alarm((int)alarmtimeout); + break; + case 'v': + options |= F_VERBOSE; + break; + case 'W': /* wait ms for answer */ + t = strtod(optarg, &ep); + if (*ep || ep == optarg || t > (double)INT_MAX) + errx(EX_USAGE, "invalid timing interval: `%s'", + optarg); + options |= F_WAITTIME; + waittime = (int)t; + break; + case 'z': + options |= F_HDRINCL; + ultmp = strtoul(optarg, &ep, 0); + if (*ep || ep == optarg || ultmp > MAXTOS) + errx(EX_USAGE, "invalid TOS: `%s'", optarg); + tos = ultmp; + break; + default: + usage(); + } + } + + if (argc - optind != 1) + usage(); + target = argv[optind]; + + switch (options & (F_MASK|F_TIME)) { + case 0: break; + case F_MASK: + icmp_type = ICMP_MASKREQ; + icmp_type_rsp = ICMP_MASKREPLY; + phdr_len = MASK_LEN; + if (!(options & F_QUIET)) + (void)printf("ICMP_MASKREQ\n"); + break; + case F_TIME: + icmp_type = ICMP_TSTAMP; + icmp_type_rsp = ICMP_TSTAMPREPLY; + phdr_len = TS_LEN; + if (!(options & F_QUIET)) + (void)printf("ICMP_TSTAMP\n"); + break; + default: + errx(EX_USAGE, "ICMP_TSTAMP and ICMP_MASKREQ are exclusive."); + break; + } + icmp_len = sizeof(struct ip) + ICMP_MINLEN + phdr_len; + if (options & F_RROUTE) + icmp_len += MAX_IPOPTLEN; + maxpayload = IP_MAXPACKET - icmp_len; + if (datalen > maxpayload) + errx(EX_USAGE, "packet size too large: %d > %d", datalen, + maxpayload); + send_len = icmp_len + datalen; + datap = &outpack[ICMP_MINLEN + phdr_len + TIMEVAL_LEN]; + if (options & F_PINGFILLED) { + fill((char *)datap, payload); + } + if (source) { + bzero((char *)&sock_in, sizeof(sock_in)); + sock_in.sin_family = AF_INET; + if (inet_aton(source, &sock_in.sin_addr) != 0) { + shostname = source; + } else { + hp = gethostbyname2(source, AF_INET); + if (!hp) + errx(EX_NOHOST, "cannot resolve %s: %s", + source, hstrerror(h_errno)); + + sock_in.sin_len = sizeof sock_in; + if ((unsigned)hp->h_length > sizeof(sock_in.sin_addr) || + hp->h_length < 0) + errx(1, "gethostbyname2: illegal address"); + memcpy(&sock_in.sin_addr, hp->h_addr_list[0], + sizeof(sock_in.sin_addr)); + (void)strncpy(snamebuf, hp->h_name, + sizeof(snamebuf) - 1); + snamebuf[sizeof(snamebuf) - 1] = '\0'; + shostname = snamebuf; + } + if (bind(s, (struct sockaddr *)&sock_in, sizeof sock_in) == -1) + err(1, "bind"); + } + + bzero(&whereto, sizeof(whereto)); + to = &whereto; + to->sin_family = AF_INET; + to->sin_len = sizeof *to; + if (inet_aton(target, &to->sin_addr) != 0) { + hostname = target; + } else { + hp = gethostbyname2(target, AF_INET); + if (!hp) + errx(EX_NOHOST, "cannot resolve %s: %s", + target, hstrerror(h_errno)); + + if ((unsigned)hp->h_length > sizeof(to->sin_addr)) + errx(1, "gethostbyname2 returned an illegal address"); + memcpy(&to->sin_addr, hp->h_addr_list[0], sizeof to->sin_addr); + (void)strncpy(hnamebuf, hp->h_name, sizeof(hnamebuf) - 1); + hnamebuf[sizeof(hnamebuf) - 1] = '\0'; + hostname = hnamebuf; + } + + if (options & F_FLOOD && options & F_INTERVAL) + errx(EX_USAGE, "-f and -i: incompatible options"); + + if (options & F_FLOOD && IN_MULTICAST(ntohl(to->sin_addr.s_addr))) + errx(EX_USAGE, + "-f flag cannot be used with multicast destination"); + if (options & (F_MIF | F_NOLOOP | F_MTTL) + && !IN_MULTICAST(ntohl(to->sin_addr.s_addr))) + errx(EX_USAGE, + "-I, -L, -T flags cannot be used with unicast destination"); + + if (datalen >= TIMEVAL_LEN) /* can we time transfer */ + timing = 1; + + if (!(options & F_PINGFILLED)) + for (i = TIMEVAL_LEN; i < datalen; ++i) + *datap++ = i; + + ident = getpid() & 0xFFFF; + + if (s < 0) { + errno = sockerrno; + err(EX_OSERR, "socket"); + } + hold = 1; + if (options & F_SO_DEBUG) + (void)setsockopt(s, SOL_SOCKET, SO_DEBUG, (char *)&hold, + sizeof(hold)); + if (options & F_SO_DONTROUTE) + (void)setsockopt(s, SOL_SOCKET, SO_DONTROUTE, (char *)&hold, + sizeof(hold)); +#ifdef IPSEC +#ifdef IPSEC_POLICY_IPSEC + if (options & F_POLICY) { + char *buf; + if (policy_in != NULL) { + buf = ipsec_set_policy(policy_in, strlen(policy_in)); + if (buf == NULL) + errx(EX_CONFIG, "%s", ipsec_strerror()); + if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY, + buf, ipsec_get_policylen(buf)) < 0) + err(EX_CONFIG, + "ipsec policy cannot be configured"); + free(buf); + } + + if (policy_out != NULL) { + buf = ipsec_set_policy(policy_out, strlen(policy_out)); + if (buf == NULL) + errx(EX_CONFIG, "%s", ipsec_strerror()); + if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY, + buf, ipsec_get_policylen(buf)) < 0) + err(EX_CONFIG, + "ipsec policy cannot be configured"); + free(buf); + } + } +#endif /*IPSEC_POLICY_IPSEC*/ +#endif /*IPSEC*/ + + if (options & F_HDRINCL) { + ip = (struct ip*)outpackhdr; + if (!(options & (F_TTL | F_MTTL))) { + mib[0] = CTL_NET; + mib[1] = PF_INET; + mib[2] = IPPROTO_IP; + mib[3] = IPCTL_DEFTTL; + sz = sizeof(ttl); + if (sysctl(mib, 4, &ttl, &sz, NULL, 0) == -1) + err(1, "sysctl(net.inet.ip.ttl)"); + } + setsockopt(s, IPPROTO_IP, IP_HDRINCL, &hold, sizeof(hold)); + ip->ip_v = IPVERSION; + ip->ip_hl = sizeof(struct ip) >> 2; + ip->ip_tos = tos; + ip->ip_id = 0; + ip->ip_off = df ? IP_DF : 0; + ip->ip_ttl = ttl; + ip->ip_p = IPPROTO_ICMP; + ip->ip_src.s_addr = source ? sock_in.sin_addr.s_addr : INADDR_ANY; + ip->ip_dst = to->sin_addr; + } + /* record route option */ + if (options & F_RROUTE) { +#ifdef IP_OPTIONS + bzero(rspace, sizeof(rspace)); + rspace[IPOPT_OPTVAL] = IPOPT_RR; + rspace[IPOPT_OLEN] = sizeof(rspace) - 1; + rspace[IPOPT_OFFSET] = IPOPT_MINOFF; + rspace[sizeof(rspace) - 1] = IPOPT_EOL; + if (setsockopt(s, IPPROTO_IP, IP_OPTIONS, rspace, + sizeof(rspace)) < 0) + err(EX_OSERR, "setsockopt IP_OPTIONS"); +#else + errx(EX_UNAVAILABLE, + "record route not available in this implementation"); +#endif /* IP_OPTIONS */ + } + + if (options & F_TTL) { + if (setsockopt(s, IPPROTO_IP, IP_TTL, &ttl, + sizeof(ttl)) < 0) { + err(EX_OSERR, "setsockopt IP_TTL"); + } + } + if (options & F_NOLOOP) { + if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, + sizeof(loop)) < 0) { + err(EX_OSERR, "setsockopt IP_MULTICAST_LOOP"); + } + } + if (options & F_MTTL) { + if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &mttl, + sizeof(mttl)) < 0) { + err(EX_OSERR, "setsockopt IP_MULTICAST_TTL"); + } + } + if (options & F_MIF) { + if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &ifaddr, + sizeof(ifaddr)) < 0) { + err(EX_OSERR, "setsockopt IP_MULTICAST_IF"); + } + } +#ifdef SO_TIMESTAMP + { int on = 1; + if (setsockopt(s, SOL_SOCKET, SO_TIMESTAMP, &on, sizeof(on)) < 0) + err(EX_OSERR, "setsockopt SO_TIMESTAMP"); + } +#endif + if (sweepmax) { + if (sweepmin >= sweepmax) + errx(EX_USAGE, "Maximum packet size must be greater than the minimum packet size"); + + if (datalen != DEFDATALEN) + errx(EX_USAGE, "Packet size and ping sweep are mutually exclusive"); + + if (npackets > 0) { + snpackets = npackets; + npackets = 0; + } else + snpackets = 1; + datalen = sweepmin; + send_len = icmp_len + sweepmin; + } + if (options & F_SWEEP && !sweepmax) + errx(EX_USAGE, "Maximum sweep size must be specified"); + + /* + * When pinging the broadcast address, you can get a lot of answers. + * Doing something so evil is useful if you are trying to stress the + * ethernet, or just want to fill the arp cache to get some stuff for + * /etc/ethers. But beware: RFC 1122 allows hosts to ignore broadcast + * or multicast pings if they wish. + */ + + /* + * XXX receive buffer needs undetermined space for mbuf overhead + * as well. + */ + hold = IP_MAXPACKET + 128; + (void)setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&hold, + sizeof(hold)); + if (uid == 0) + (void)setsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&hold, + sizeof(hold)); + + if (to->sin_family == AF_INET) { + (void)printf("PING %s (%s)", hostname, + inet_ntoa(to->sin_addr)); + if (source) + (void)printf(" from %s", shostname); + if (sweepmax) + (void)printf(": (%d ... %d) data bytes\n", + sweepmin, sweepmax); + else + (void)printf(": %d data bytes\n", datalen); + + } else { + if (sweepmax) + (void)printf("PING %s: (%d ... %d) data bytes\n", + hostname, sweepmin, sweepmax); + else + (void)printf("PING %s: %d data bytes\n", hostname, datalen); + } + + /* + * Use sigaction() instead of signal() to get unambiguous semantics, + * in particular with SA_RESTART not set. + */ + + sigemptyset(&si_sa.sa_mask); + si_sa.sa_flags = 0; + + si_sa.sa_handler = stopit; + if (sigaction(SIGINT, &si_sa, 0) == -1) { + err(EX_OSERR, "sigaction SIGINT"); + } + + si_sa.sa_handler = status; + if (sigaction(SIGINFO, &si_sa, 0) == -1) { + err(EX_OSERR, "sigaction"); + } + + if (alarmtimeout > 0) { + si_sa.sa_handler = stopit; + if (sigaction(SIGALRM, &si_sa, 0) == -1) + err(EX_OSERR, "sigaction SIGALRM"); + } + + bzero(&msg, sizeof(msg)); + msg.msg_name = (caddr_t)&from; + msg.msg_iov = &iov; + msg.msg_iovlen = 1; +#ifdef SO_TIMESTAMP + msg.msg_control = (caddr_t)ctrl; +#endif + iov.iov_base = packet; + iov.iov_len = IP_MAXPACKET; + + ping_init(TESLA_SCOPE_GLOBAL); + + if (preload == 0) + pinger(); /* send the first ping */ + else { + if (npackets != 0 && preload > npackets) + preload = npackets; + while (preload--) /* fire off them quickies */ + pinger(); + } + (void)gettimeofday(&last, NULL); + + if (options & F_FLOOD) { + intvl.tv_sec = 0; + intvl.tv_usec = 10000; + } else { + intvl.tv_sec = interval / 1000; + intvl.tv_usec = interval % 1000 * 1000; + } + + almost_done = 0; + while (!finish_up) { + struct timeval now, timeout; + fd_set rfds; + int cc, n; + + check_status(); + if ((unsigned)s >= FD_SETSIZE) + errx(EX_OSERR, "descriptor too large"); + FD_ZERO(&rfds); + FD_SET(s, &rfds); + (void)gettimeofday(&now, NULL); + timeout.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec; + timeout.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec; + while (timeout.tv_usec < 0) { + timeout.tv_usec += 1000000; + timeout.tv_sec--; + } + while (timeout.tv_usec >= 1000000) { + timeout.tv_usec -= 1000000; + timeout.tv_sec++; + } + if (timeout.tv_sec < 0) + timeout.tv_sec = timeout.tv_usec = 0; + n = select(s + 1, &rfds, NULL, NULL, &timeout); + if (n < 0) + continue; /* Must be EINTR. */ + if (n == 1) { + struct timeval *tv = NULL; +#ifdef SO_TIMESTAMP + struct cmsghdr *cmsg = (struct cmsghdr *)&ctrl; + + msg.msg_controllen = sizeof(ctrl); +#endif + msg.msg_namelen = sizeof(from); + if ((cc = recvmsg(s, &msg, 0)) < 0) { + if (errno == EINTR) + continue; + warn("recvmsg"); + continue; + } +#ifdef SO_TIMESTAMP + if (cmsg->cmsg_level == SOL_SOCKET && + cmsg->cmsg_type == SCM_TIMESTAMP && + cmsg->cmsg_len == CMSG_LEN(sizeof *tv)) { + /* Copy to avoid alignment problems: */ + memcpy(&now, CMSG_DATA(cmsg), sizeof(now)); + tv = &now; + } +#endif + if (tv == NULL) { + (void)gettimeofday(&now, NULL); + tv = &now; + } + pr_pack((char *)packet, cc, &from, tv); + if ((options & F_ONCE && nreceived) || + (npackets && nreceived >= npackets)) + break; + } + if (n == 0 || options & F_FLOOD) { + if (sweepmax && sntransmitted == snpackets) { + for (i = 0; i < sweepincr ; ++i) + *datap++ = i; + datalen += sweepincr; + if (datalen > sweepmax) + break; + send_len = icmp_len + datalen; + sntransmitted = 0; + } + if (!npackets || ntransmitted < npackets) + pinger(); + else { + if (almost_done) + break; + almost_done = 1; + intvl.tv_usec = 0; + if (nreceived) { + intvl.tv_sec = 2 * tmax / 1000; + if (!intvl.tv_sec) + intvl.tv_sec = 1; + } else { + intvl.tv_sec = waittime / 1000; + intvl.tv_usec = waittime % 1000 * 1000; + } + } + (void)gettimeofday(&last, NULL); + if (ntransmitted - nreceived - 1 > nmissedmax) { + nmissedmax = ntransmitted - nreceived - 1; + if (options & F_MISSED) + (void)write(STDOUT_FILENO, &BBELL, 1); + } + } + } + finish(); + /* NOTREACHED */ + exit(0); /* Make the compiler happy */ +} + +/* + * stopit -- + * Set the global bit that causes the main loop to quit. + * Do NOT call finish() from here, since finish() does far too much + * to be called from a signal handler. + */ +void +stopit(sig) + int sig __unused; +{ + + /* + * When doing reverse DNS lookups, the finish_up flag might not + * be noticed for a while. Just exit if we get a second SIGINT. + */ + if (!(options & F_NUMERIC) && finish_up) + _exit(nreceived ? 0 : 2); + finish_up = 1; +} + +/* + * pinger -- + * Compose and transmit an ICMP ECHO REQUEST packet. The IP packet + * will be added on by the kernel. The ID field is our UNIX process ID, + * and the sequence number is an ascending integer. The first TIMEVAL_LEN + * bytes of the data portion are used to hold a UNIX "timeval" struct in + * host byte-order, to compute the round-trip time. + */ +static void +pinger(void) +{ + struct timeval now; + struct tv32 tv32; + struct ip *ip; + struct icmp *icp; + int cc, i; + u_char *packet; + + packet = outpack; + icp = (struct icmp *)outpack; + icp->icmp_type = icmp_type; + icp->icmp_code = 0; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@FreeBSD.ORG Thu Jul 14 17:20:29 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 5BD951065672 for ; Thu, 14 Jul 2011 17:20:27 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 14 Jul 2011 17:20:27 +0000 Date: Thu, 14 Jul 2011 17:20:27 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110714172027.5BD951065672@hub.freebsd.org> Cc: Subject: socsvn commit: r224224 - in soc2011/shm: TESLA TESLA/assertions/80211 TESLA/libtesla TESLA/tesla sys/amd64/conf sys/conf sys/tesla/assert X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2011 17:20:29 -0000 Author: shm Date: Thu Jul 14 17:20:27 2011 New Revision: 224224 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224224 Log: * the great merge (merged from g-soc) Added: soc2011/shm/TESLA/assertions/80211/ soc2011/shm/TESLA/assertions/80211/80211proto.spec soc2011/shm/TESLA/assertions/80211/80211proto.spl soc2011/shm/TESLA/assertions/80211/80211proto_assert.c soc2011/shm/TESLA/assertions/80211/80211proto_automata.c soc2011/shm/TESLA/assertions/80211/80211proto_defs.h soc2011/shm/TESLA/assertions/80211/instrumentation.spec soc2011/shm/TESLA/build_tesla.sh (contents, props changed) soc2011/shm/sys/amd64/conf/TESLA_80211PROTO soc2011/shm/sys/amd64/conf/TESLA_MAC soc2011/shm/sys/tesla/assert/ soc2011/shm/sys/tesla/assert/80211proto (contents, props changed) Deleted: soc2011/shm/TESLA/README.txt soc2011/shm/sys/amd64/conf/majestic Modified: soc2011/shm/TESLA/libtesla/tesla_state.c soc2011/shm/TESLA/libtesla/tesla_state_global.c soc2011/shm/TESLA/tesla/tesla_state.h soc2011/shm/TESLA/tesla/tesla_util.h soc2011/shm/sys/conf/files soc2011/shm/sys/conf/options Added: soc2011/shm/TESLA/assertions/80211/80211proto.spec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto.spec Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,10 @@ +field_assign,v,iv_nstate,IEEE80211_S_ASSOC +field_assign,v,iv_nstate,IEEE80211_S_ASSOC +field_assign,v,iv_nstate,IEEE80211_S_AUTH +field_assign,v,iv_nstate,IEEE80211_S_SCAN +field_assign,v,iv_nstate,IEEE80211_S_AUTH +field_assign,v,iv_nstate,IEEE80211_S_SCAN +field_assign,v,iv_nstate,IEEE80211_S_CSA +field_assign,v,iv_nstate,IEEE80211_S_SLEEP +field_assign,v,iv_nstate,IEEE80211_S_RUN +field_assign,v,iv_nstate,IEEE80211_S_INIT Added: soc2011/shm/TESLA/assertions/80211/80211proto.spl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto.spl Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,31 @@ +/* experimental */ +automaton ieee80211proto() { + void main(struct ieee80211vap *v) { + v->iv_nstate = IEEE80211_S_INIT; + multiple { + v->iv_nstate = IEEE80211_S_RUN; + either { + v->iv_nstate = IEEE80211_S_SLEEP; + } or { + v->iv_nstate = IEEE80211_S_CSA; + } or { + v->iv_nstate = IEEE80211_S_SCAN; + } or { + v->iv_nstate = IEEE80211_S_AUTH; + } or { + multiple { + either { + v->iv_nstate = IEEE80211_S_SCAN; + } or { + v->iv_nstate = IEEE80211_S_AUTH; + optional { + v->iv_nstate = IEEE80211_S_ASSOC; + } + } + } + } or { + v->iv_nstate = IEEE80211_S_ASSOC; + } + } + } +} Added: soc2011/shm/TESLA/assertions/80211/80211proto_assert.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto_assert.c Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2011, Mateusz Kocielski + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include +#include +#include "80211_defs.h" + +static struct tesla_state *80211_state; + +#define 80211_PROTO_LIMIT 23 +#define 80211_PROTO_NAME "802.11 proto" +#define 80211_PROTO_DESC \ + "checks if state transitions is not violating 802.11 proto" + +void +80211_init(int scope) +{ + assert(tesla_state_new(&80211_state, scope, 80211_PROTO_LIMIT, 80211_PROTO_NAME, + 80211_PROTO_DESC) == 0); +} + +void __tesla_event_function_prologue_80211_new_state(void **t, void *x, int +event, int z) +{ + struct tesla_instance *tip; + int alloc; + int e + + KASSERT(tesla_instance_get1(80211_state, (register_t)x, &tip, &alloc) == + 0); + + switch + + if (alloc == 1) + 80211proto_automata_init(tip); + + if(80211proto_automata_prod(tip, event)) + tesla_assert_fail(80211_state, tip); + + tesla_instance_put(80211_state, tip); +} + +void __tesla_event_function_return_80211_new_state(void **t) {} Added: soc2011/shm/TESLA/assertions/80211/80211proto_automata.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto_automata.c Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,296 @@ +/* + * This file is autogenerated by the Tesla CFA compiler + * via: ../../cfa/splc -t tesla -s 80211proto 80211proto.spl + */ + + +#include + +#ifdef _KERNEL +#include +#else +#include +#include +#include +#include +#endif + +#include +#include + +#include "80211proto_defs.h" + +struct main { + u_int state : 4; +} __attribute__((__packed__)); + +#define MAIN_PTR(tip) ((unsigned char *)((tip)->ti_state)) +#define MAIN_STATE(tip,off) ((struct main *)(MAIN_PTR(tip)+(off)+1)) +#define MAIN_NUM_STATES(tip) (MAIN_PTR(tip)[0]) + +void +80211proto_automata_init(struct tesla_instance *tip) { + MAIN_NUM_STATES(tip) = 1; + MAIN_STATE(tip,0)->state = 2; /* 1 */ +} + +int +80211proto_automata_prod(struct tesla_instance *tip, u_int event) +{ + unsigned char newstate[16]; + u_int i, curpos=1; + struct main tmpstate; + bzero(newstate, sizeof(newstate)); + switch (event) { + case 0: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_AUTH */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 8: + /* event 30 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 32 */ + tmpstate.state = 10; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + case 9: + /* event 18 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 18 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 1: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_RUN */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 5: + /* event 5 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 12 */ + tmpstate.state = 4; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 14 */ + tmpstate.state = 6; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 16 */ + tmpstate.state = 7; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 18 */ + tmpstate.state = 9; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 35 */ + tmpstate.state = 11; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 2: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_CSA */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 6: + /* event 14 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 14 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 3: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SLEEP */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 4: + /* event 12 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 12 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 4: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SCAN */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 1: + /* event 28 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 28 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 28 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 28 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + case 7: + /* event 16 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 16 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 5: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_ASSOC */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 10: + /* event 32 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 32 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 32 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 32 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + case 11: + /* event 35 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 35 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 6: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_INIT */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 2: + /* event 1 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 1 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + default: + return 1; /* TESLA_UNKNOWN_EVENT */ + } +} + Added: soc2011/shm/TESLA/assertions/80211/80211proto_defs.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto_defs.h Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,38 @@ +/* + * This file is autogenerated by the Tesla CFA compiler + * via: ../../cfa/splc -t tesla -s 80211proto 80211proto.spl + */ + +#ifndef 80211PROTO_DEFS_H +#define 80211PROTO_DEFS_H + +#include + +/* + * Names for events that will trigger 80211PROTO rules + */ +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_AUTH 0 +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_RUN 1 +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_CSA 2 +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SLEEP 3 +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SCAN 4 +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_ASSOC 5 +#define 80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_INIT 6 + +/* + * Prod the 80211PROTO state machine, return (1) if the assertion failed + */ +struct tesla_instance; +void 80211proto_automata_init(struct tesla_instance *); +int 80211proto_automata_prod(struct tesla_instance *tip, u_int event); + +/* + * "Public" interfaces to the assertion, to be invoked by load, unload + * and instrumentation handlers. + */ +#ifndef _KERNEL +void 80211proto_init(int scope); +void 80211proto_destroy(void); +void 80211proto_setaction_debug(void); +#endif +#endif /* 80211PROTO_DEFS_H */ Added: soc2011/shm/TESLA/assertions/80211/instrumentation.spec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/instrumentation.spec Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1 @@ +function,ieee80211_new_state Added: soc2011/shm/TESLA/build_tesla.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/build_tesla.sh Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,16 @@ +#!/bin/sh + +echo "Building llvm/clang..." +if [ ! -d llvm ]; then + ./build_clang.sh +fi + +echo "Building CFA..." +cd cfa/ +gmake +cd .. + +echo "Building libtesla..." +cd libtesla/ +make +cd .. Modified: soc2011/shm/TESLA/libtesla/tesla_state.c ============================================================================== --- soc2011/shm/TESLA/libtesla/tesla_state.c Thu Jul 14 15:35:43 2011 (r224223) +++ soc2011/shm/TESLA/libtesla/tesla_state.c Thu Jul 14 17:20:27 2011 (r224224) @@ -58,6 +58,34 @@ MALLOC_DEFINE(M_TESLA, "tesla", "TESLA internal state"); #endif +/* XXX: should be replaced with something better i.e. R-M test */ +static int +tesla_is_prime(u_int n) +{ + u_int i; + + if (n < 2) + return 0; + + for (i = 2; i < n; i++) + if (n % i == 0) + return 0; + + return 1; +} + +static u_int +tesla_nearest_prime(u_int n) +{ + u_int i; + + for (i = n ; i >= n ; i++) + if (tesla_is_prime(i) == 1) + return i; + + return 0; +} + int tesla_state_new(struct tesla_state **tspp, u_int scope, u_int limit, const char *name, const char *description) @@ -68,18 +96,27 @@ #ifdef _KERNEL KASSERT((scope == TESLA_SCOPE_PERTHREAD) || - (scope == TESLA_SCOPE_GLOBAL), - ("tesla_state_new: invalid scope %u", scope)); + (scope == TESLA_SCOPE_GLOBAL), + ("tesla_state_new: invalid scope %u", scope)); #else assert(scope == TESLA_SCOPE_PERTHREAD || scope == TESLA_SCOPE_GLOBAL); #endif - /* XXXRW: Should validate 'limit' argument. */ + limit = tesla_nearest_prime(limit); + + if (limit == 0) + return (TESLA_ERROR_ELIMIT); if (scope == TESLA_SCOPE_PERTHREAD) len = sizeof(*tsp); else + { len = sizeof(*tsp) + sizeof(struct tesla_instance) * limit; + /* overflow occured */ + if (len < sizeof(struct tesla_instance) * limit || + sizeof(struct tesla_instance) * limit < limit) + return (TESLA_ERROR_ELIMIT); + } #ifdef _KERNEL tsp = malloc(len, M_TESLA, M_WAITOK | M_ZERO); @@ -100,18 +137,20 @@ tsp->ts_action = TESLA_ACTION_FAILSTOP; /* XXXRW: Default for now? */ #endif - if (scope == TESLA_SCOPE_PERTHREAD) { + if (scope == TESLA_SCOPE_PERTHREAD) error = tesla_state_perthread_new(tsp); - if (error != TESLA_SUCCESS) { + else + error = tesla_state_global_new(tsp); + + if (error != TESLA_SUCCESS) { #ifdef _KERNEL - free(tsp, M_TESLA); + free(tsp, M_TESLA); #else - free(tsp); + free(tsp); #endif - return (error); - } - } else - tesla_state_global_new(tsp); + return (error); + } + *tspp = tsp; return (TESLA_SUCCESS); } @@ -147,7 +186,7 @@ { struct tesla_instance *tip, *free_tip; struct tesla_table *ttp; - u_int i; + u_int i, key; int error; if (tsp->ts_scope == TESLA_SCOPE_GLOBAL) { @@ -158,11 +197,14 @@ if (error != TESLA_SUCCESS) return (error); } + + /* XXX: quick hack to speed up looking for instance */ + key = (key0 + key1 + key2 + key3) % tsp->ts_limit; /* XXXRW: Absolutely the wrong algorithm. */ free_tip = NULL; for (i = 0; i < ttp->tt_length; i++) { - tip = &ttp->tt_instances[i]; + tip = &ttp->tt_instances[(i+key) % tsp->ts_limit]; if (free_tip == NULL && tip->ti_keys[0] == 0 && tip->ti_keys[1] == 0 && @@ -174,11 +216,13 @@ tip->ti_keys[2] != key2 || tip->ti_keys[3] != key3) continue; + /* Found instance */ if (alloc != NULL) *alloc = 0; *tipp = tip; return (TESLA_SUCCESS); } + if (free_tip != NULL) { tip = free_tip; tip->ti_keys[0] = key0; @@ -192,6 +236,7 @@ *alloc = 1; return (TESLA_SUCCESS); } + if (tsp->ts_scope == TESLA_SCOPE_GLOBAL) { tesla_state_global_unlock(tsp); } @@ -258,20 +303,17 @@ /* No action required for TESLA_SCOPE_PERTHREAD. */ } -void +int tesla_instance_destroy(struct tesla_state *tsp, struct tesla_instance *tip) { struct tesla_table *ttp; int error; - tip->ti_state[0] = 0; - tip->ti_state[1] = 0; - tip->ti_state[2] = 0; - tip->ti_state[3] = 0; - tip->ti_keys[0] = 0; - tip->ti_keys[1] = 0; - tip->ti_keys[2] = 0; - tip->ti_keys[3] = 0; + /* XXX: 0 is used to indicate that instance is free */ + tip->ti_state[0] = tip->ti_state[1] = tip->ti_state[2] = + tip->ti_state[3] = 0; + tip->ti_keys[0] = tip->ti_keys[1] = tip->ti_keys[2] = + tip->ti_keys[3] = 0; /* * XXXRW: this will need revisiting if we change locking strategies. @@ -282,9 +324,11 @@ } else { error = tesla_state_perthread_gettable(tsp, &ttp); if (error != TESLA_SUCCESS) - return; + return error; ttp->tt_free++; } + + return (TESLA_SUCCESS); } void @@ -325,6 +369,5 @@ tesla_state_setaction(struct tesla_state *tsp, tesla_assert_fail_callback handler) { - tsp->ts_handler = handler; } Modified: soc2011/shm/TESLA/libtesla/tesla_state_global.c ============================================================================== --- soc2011/shm/TESLA/libtesla/tesla_state_global.c Thu Jul 14 15:35:43 2011 (r224223) +++ soc2011/shm/TESLA/libtesla/tesla_state_global.c Thu Jul 14 17:20:27 2011 (r224224) @@ -62,8 +62,7 @@ #ifdef _KERNEL mtx_init(&tsp->ts_lock, "tesla", NULL, MTX_DEF); #else - int error = pthread_mutex_init(&tsp->ts_lock, NULL); - assert(error == 0); + assert(pthread_mutex_init(&tsp->ts_lock, NULL) == 0); #endif } @@ -74,8 +73,7 @@ #ifdef _KERNEL mtx_destroy(&tsp->ts_lock); #else - int error = pthread_mutex_destroy(&tsp->ts_lock); - assert(error == 0); + assert(pthread_mutex_destroy(&tsp->ts_lock) == 0); #endif } @@ -86,8 +84,7 @@ #ifdef _KERNEL mtx_lock(&tsp->ts_lock); #else - int error = pthread_mutex_lock(&tsp->ts_lock); - assert(error == 0); + assert(pthread_mutex_lock(&tsp->ts_lock) == 0); #endif } @@ -98,8 +95,7 @@ #ifdef _KERNEL mtx_unlock(&tsp->ts_lock); #else - int error = pthread_mutex_unlock(&tsp->ts_lock); - assert(error == 0); + assert(pthread_mutex_unlock(&tsp->ts_lock) == 0); #endif } Modified: soc2011/shm/TESLA/tesla/tesla_state.h ============================================================================== --- soc2011/shm/TESLA/tesla/tesla_state.h Thu Jul 14 15:35:43 2011 (r224223) +++ soc2011/shm/TESLA/tesla/tesla_state.h Thu Jul 14 17:20:27 2011 (r224224) @@ -154,7 +154,7 @@ * particular tesla_state. An instance passed to tesla_instance_destroy() * will not require a call to tesla_instance_put(). */ -void tesla_instance_destroy(struct tesla_state *tsp, +int tesla_instance_destroy(struct tesla_state *tsp, struct tesla_instance *tip); /* Modified: soc2011/shm/TESLA/tesla/tesla_util.h ============================================================================== --- soc2011/shm/TESLA/tesla/tesla_util.h Thu Jul 14 15:35:43 2011 (r224223) +++ soc2011/shm/TESLA/tesla/tesla_util.h Thu Jul 14 17:20:27 2011 (r224224) @@ -44,6 +44,7 @@ #define TESLA_ERROR_ENOENT 1 /* Entry not found. */ #define TESLA_ERROR_EEXIST 2 /* Entry already present. */ #define TESLA_ERROR_ENOMEM 3 /* Insufficient memory. */ +#define TESLA_ERROR_ELIMIT 4 /* Invalid limit value */ /* * Provide string versions of TESLA errors. Added: soc2011/shm/sys/amd64/conf/TESLA_80211PROTO ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/conf/TESLA_80211PROTO Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,4 @@ +include TESLA +ident TESLA_80211PROTO + +options TESLA_80211PROTO Added: soc2011/shm/sys/amd64/conf/TESLA_MAC ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/amd64/conf/TESLA_MAC Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1,4 @@ +include TESLA +ident TESLA_MAC2 + +options TESLA_MAC2 Modified: soc2011/shm/sys/conf/files ============================================================================== --- soc2011/shm/sys/conf/files Thu Jul 14 15:35:43 2011 (r224223) +++ soc2011/shm/sys/conf/files Thu Jul 14 17:20:27 2011 (r224224) @@ -2950,3 +2950,5 @@ tesla/tesla_state_global.c optional tesla tesla/tesla_state_perthread.c optional tesla tesla/tesla_util.c optional tesla +tesla/assert/80211proto/80211proto_assert.c optional tesla_80211proto +tesla/assert/80211proto/80211proto_automata.c optional tesla_80211proto Modified: soc2011/shm/sys/conf/options ============================================================================== --- soc2011/shm/sys/conf/options Thu Jul 14 15:35:43 2011 (r224223) +++ soc2011/shm/sys/conf/options Thu Jul 14 17:20:27 2011 (r224224) @@ -573,6 +573,7 @@ SX_NOINLINE opt_global.h VFS_BIO_DEBUG opt_global.h TESLA opt_global.h +TESLA_80211PROTO opt_global.h # These are VM related options VM_KMEM_SIZE opt_vm.h Added: soc2011/shm/sys/tesla/assert/80211proto ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/sys/tesla/assert/80211proto Thu Jul 14 17:20:27 2011 (r224224) @@ -0,0 +1 @@ +link /home/shm/tesla/shm/TESLA/assertions/80211/ \ No newline at end of file From owner-svn-soc-all@FreeBSD.ORG Thu Jul 14 17:50:35 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 1AB3D1065675 for ; Thu, 14 Jul 2011 17:50:34 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 14 Jul 2011 17:50:34 +0000 Date: Thu, 14 Jul 2011 17:50:34 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110714175034.1AB3D1065675@hub.freebsd.org> Cc: Subject: socsvn commit: r224225 - soc2011/shm/TESLA/assertions/80211 X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2011 17:50:35 -0000 Author: shm Date: Thu Jul 14 17:50:33 2011 New Revision: 224225 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224225 Log: * wrong version Deleted: soc2011/shm/TESLA/assertions/80211/80211proto.spec soc2011/shm/TESLA/assertions/80211/80211proto.spl soc2011/shm/TESLA/assertions/80211/80211proto_assert.c soc2011/shm/TESLA/assertions/80211/80211proto_automata.c soc2011/shm/TESLA/assertions/80211/80211proto_defs.h soc2011/shm/TESLA/assertions/80211/instrumentation.spec From owner-svn-soc-all@FreeBSD.ORG Thu Jul 14 17:51:38 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id DE6CB1065670 for ; Thu, 14 Jul 2011 17:51:35 +0000 (UTC) (envelope-from shm@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 14 Jul 2011 17:51:35 +0000 Date: Thu, 14 Jul 2011 17:51:35 +0000 From: shm@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110714175135.DE6CB1065670@hub.freebsd.org> Cc: Subject: socsvn commit: r224226 - soc2011/shm/TESLA/assertions/80211 X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2011 17:51:38 -0000 Author: shm Date: Thu Jul 14 17:51:35 2011 New Revision: 224226 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224226 Log: * merged from (soc-g-head) Added: soc2011/shm/TESLA/assertions/80211/80211proto.spec soc2011/shm/TESLA/assertions/80211/80211proto.spl soc2011/shm/TESLA/assertions/80211/80211proto_assert.c soc2011/shm/TESLA/assertions/80211/80211proto_automata.c soc2011/shm/TESLA/assertions/80211/80211proto_defs.h soc2011/shm/TESLA/assertions/80211/instrumentation.spec Added: soc2011/shm/TESLA/assertions/80211/80211proto.spec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto.spec Thu Jul 14 17:51:35 2011 (r224226) @@ -0,0 +1,10 @@ +field_assign,v,iv_nstate,IEEE80211_S_ASSOC +field_assign,v,iv_nstate,IEEE80211_S_ASSOC +field_assign,v,iv_nstate,IEEE80211_S_AUTH +field_assign,v,iv_nstate,IEEE80211_S_SCAN +field_assign,v,iv_nstate,IEEE80211_S_AUTH +field_assign,v,iv_nstate,IEEE80211_S_SCAN +field_assign,v,iv_nstate,IEEE80211_S_CSA +field_assign,v,iv_nstate,IEEE80211_S_SLEEP +field_assign,v,iv_nstate,IEEE80211_S_RUN +field_assign,v,iv_nstate,IEEE80211_S_INIT Added: soc2011/shm/TESLA/assertions/80211/80211proto.spl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto.spl Thu Jul 14 17:51:35 2011 (r224226) @@ -0,0 +1,31 @@ +/* experimental */ +automaton ieee80211proto() { + void main(struct ieee80211vap *v) { + v->iv_nstate = IEEE80211_S_INIT; + multiple { + v->iv_nstate = IEEE80211_S_RUN; + either { + v->iv_nstate = IEEE80211_S_SLEEP; + } or { + v->iv_nstate = IEEE80211_S_CSA; + } or { + v->iv_nstate = IEEE80211_S_SCAN; + } or { + v->iv_nstate = IEEE80211_S_AUTH; + } or { + multiple { + either { + v->iv_nstate = IEEE80211_S_SCAN; + } or { + v->iv_nstate = IEEE80211_S_AUTH; + optional { + v->iv_nstate = IEEE80211_S_ASSOC; + } + } + } + } or { + v->iv_nstate = IEEE80211_S_ASSOC; + } + } + } +} Added: soc2011/shm/TESLA/assertions/80211/80211proto_assert.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto_assert.c Thu Jul 14 17:51:35 2011 (r224226) @@ -0,0 +1,104 @@ +/* + * Copyright (c) 2011, Mateusz Kocielski + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include +#include +#include "80211proto_defs.h" + +#include +#include +#include + +#include +#include + +#include +#include +#include /* XXX for ether_sprintf */ + +#include +#include +#include +#include +#include +#ifdef IEEE80211_SUPPORT_MESH +#include +#endif +#include +#include + + +static struct tesla_state *_80211_state; + +#define _80211_PROTO_LIMIT 23 +#define _80211_PROTO_NAME "802.11 proto" +#define _80211_PROTO_DESC \ + "checks if state transitions is not violating 802.11 proto" + +void +_80211_init(int scope) +{ + KASSERT(tesla_state_new(&_80211_state, scope, _80211_PROTO_LIMIT, + _80211_PROTO_NAME, _80211_PROTO_DESC) == 0, ("tesla_state_new failed")); +} + +void __tesla_event_function_prologue_ieee80211_new_state(void **t, + void *x, int state, int z) +{ + struct tesla_instance *tip; + int alloc; + int event; + switch(state) + { + case IEEE80211_S_AUTH: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_AUTH; + break; + case IEEE80211_S_RUN: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_RUN; + break; + case IEEE80211_S_CSA: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_CSA; + break; + case IEEE80211_S_SLEEP: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SLEEP; + break; + case IEEE80211_S_SCAN: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SCAN; + break; + case IEEE80211_S_ASSOC: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_ASSOC; + break; + case IEEE80211_S_INIT: + event = _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_INIT; + break; + default: + KASSERT(0, ("Unknown state")); + /*NOTREACHED*/ + } + + KASSERT(tesla_instance_get1(_80211_state, (register_t)x, &tip, &alloc) == + 0, ("no instances left")); + + if (alloc == 1) + _80211proto_automata_init(tip); + + if(_80211proto_automata_prod(tip, event)) + tesla_assert_fail(_80211_state, tip); + + tesla_instance_put(_80211_state, tip); +} + +void __tesla_event_function_return_ieee80211_new_state(void **t) {} Added: soc2011/shm/TESLA/assertions/80211/80211proto_automata.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto_automata.c Thu Jul 14 17:51:35 2011 (r224226) @@ -0,0 +1,296 @@ +/* + * This file is autogenerated by the Tesla CFA compiler + * via: ../../cfa/splc -t tesla -s 80211proto 80211proto.spl + */ + + +#include + +#ifdef _KERNEL +#include +#else +#include +#include +#include +#include +#endif + +#include +#include + +#include "80211proto_defs.h" + +struct main { + u_int state : 4; +} __attribute__((__packed__)); + +#define MAIN_PTR(tip) ((unsigned char *)((tip)->ti_state)) +#define MAIN_STATE(tip,off) ((struct main *)(MAIN_PTR(tip)+(off)+1)) +#define MAIN_NUM_STATES(tip) (MAIN_PTR(tip)[0]) + +void +_80211proto_automata_init(struct tesla_instance *tip) { + MAIN_NUM_STATES(tip) = 1; + MAIN_STATE(tip,0)->state = 2; /* 1 */ +} + +int +_80211proto_automata_prod(struct tesla_instance *tip, u_int event) +{ + unsigned char newstate[16]; + u_int i, curpos=1; + struct main tmpstate; + bzero(newstate, sizeof(newstate)); + switch (event) { + case 0: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_AUTH */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 8: + /* event 30 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 30 -> 32 */ + tmpstate.state = 10; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + case 9: + /* event 18 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 18 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 1: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_RUN */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 5: + /* event 5 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 12 */ + tmpstate.state = 4; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 14 */ + tmpstate.state = 6; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 16 */ + tmpstate.state = 7; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 18 */ + tmpstate.state = 9; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 5 -> 35 */ + tmpstate.state = 11; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 2: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_CSA */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 6: + /* event 14 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 14 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 3: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SLEEP */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 4: + /* event 12 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 12 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 4: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SCAN */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 1: + /* event 28 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 28 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 28 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 28 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + case 7: + /* event 16 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 16 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 5: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_ASSOC */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 10: + /* event 32 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 32 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 32 -> 28 */ + tmpstate.state = 1; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 32 -> 30 */ + tmpstate.state = 8; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + case 11: + /* event 35 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 35 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + case 6: /* EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_INIT */ + for (i=0; i < MAIN_NUM_STATES(tip); i++) { + switch (MAIN_STATE(tip,i)->state) { + case 2: + /* event 1 -> 2 */ + tmpstate.state = 3; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + /* event 1 -> 5 */ + tmpstate.state = 5; + memcpy(&(newstate[curpos]), &tmpstate, 1); + curpos++; + break; + default: + break; + } + } + newstate[0] = curpos-1; + if (newstate[0] == 0) + return 1; /* TESLA_ERROR */ + memcpy(MAIN_PTR(tip), &newstate, sizeof(newstate)); + return 0; + + default: + return 1; /* TESLA_UNKNOWN_EVENT */ + } +} + Added: soc2011/shm/TESLA/assertions/80211/80211proto_defs.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/80211proto_defs.h Thu Jul 14 17:51:35 2011 (r224226) @@ -0,0 +1,38 @@ +/* + * This file is autogenerated by the Tesla CFA compiler + * via: ../../cfa/splc -t tesla -s 80211proto 80211proto.spl + */ + +#ifndef _80211PROTO_DEFS_H +#define _80211PROTO_DEFS_H + +#include + +/* + * Names for events that will trigger 80211PROTO rules + */ +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_AUTH 0 +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_RUN 1 +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_CSA 2 +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SLEEP 3 +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_SCAN 4 +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_ASSOC 5 +#define _80211PROTO_EVENT_V_IV_NSTATE_ASSIGN_IEEE80211_S_INIT 6 + +/* + * Prod the 80211PROTO state machine, return (1) if the assertion failed + */ +struct tesla_instance; +void _80211proto_automata_init(struct tesla_instance *); +int _80211proto_automata_prod(struct tesla_instance *tip, u_int event); + +/* + * "Public" interfaces to the assertion, to be invoked by load, unload + * and instrumentation handlers. + */ +#ifndef _KERNEL +void _80211proto_init(int scope); +void _80211proto_destroy(void); +void _80211proto_setaction_debug(void); +#endif +#endif /* 80211PROTO_DEFS_H */ Added: soc2011/shm/TESLA/assertions/80211/instrumentation.spec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/shm/TESLA/assertions/80211/instrumentation.spec Thu Jul 14 17:51:35 2011 (r224226) @@ -0,0 +1 @@ +function,ieee80211_new_state From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 04:37:07 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id D917B106564A for ; Fri, 15 Jul 2011 04:37:04 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 04:37:04 +0000 Date: Fri, 15 Jul 2011 04:37:04 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715043704.D917B106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224259 - in soc2011/zy/nvi-iconv/head: contrib/nvi2/catalog contrib/nvi2/cl contrib/nvi2/common contrib/nvi2/docs contrib/nvi2/docs/man contrib/nvi2/ex contrib/nvi2/vi usr.bin/vi X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 04:37:07 -0000 Author: zy Date: Fri Jul 15 04:37:04 2011 New Revision: 224259 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224259 Log: Merges git:26569ab. * Enables multibyte support when WITH_ICONV is specified; * Compilable on -current, but only runnable on -stable... * Gtags, Perl, Tcl supports removed. Known issues: * Crashes on -current; * Crashes when resizing the terminal; * Extra spaces after :set fileencoding (no effect to file content). Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/Makefile soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/README soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dump.c soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch.owner soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/english soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/english.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/english.owner soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/french soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/french.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/german soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/german.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/german.owner soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/polish soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/polish.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/polish.owner soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/ru_SU.KOI8-R soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/ru_SU.KOI8-R.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/ru_SU.KOI8-R.owner soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/spanish soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/spanish.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/spell.ok soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/swedish soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/swedish.base soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/swedish.owner soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/README.signal soc2011/zy/nvi-iconv/head/contrib/nvi2/docs/ soc2011/zy/nvi-iconv/head/contrib/nvi2/docs/man/ soc2011/zy/nvi-iconv/head/contrib/nvi2/docs/man/Makefile soc2011/zy/nvi-iconv/head/contrib/nvi2/docs/man/spell.ok soc2011/zy/nvi-iconv/head/contrib/nvi2/docs/man/vi.1 Deleted: soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_perl.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_tcl.c Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl.h soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_read.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/exf.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/extern.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/gs.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/main.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/options_def.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/screen.c soc2011/zy/nvi-iconv/head/contrib/nvi2/common/screen.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_cmd.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_def.h soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/ex_tag.c soc2011/zy/nvi-iconv/head/contrib/nvi2/ex/extern.h soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/v_ex.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.h soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_split.c soc2011/zy/nvi-iconv/head/usr.bin/vi/Makefile Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/Makefile Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1,84 @@ +# $Id: Makefile,v 8.31 2011/07/14 00:04:41 zy Exp $ (Berkeley) $Date: 2011/07/14 00:04:41 $ + +CAT= dutch english french german polish ru_SU.KOI8-R spanish swedish +FILES= ../cl/*.c ../common/*.c ../ex/*.c ../vi/*.c + +all: dump ${CAT} + +${CAT}: english.base + @echo "... $@"; \ + rm -f $@; \ + sort -u $@.base | \ + awk '{ \ + if ($$1 == 1) { \ + print "\nMESSAGE NUMBER 1 IS NOT LEGAL"; \ + exit 1; \ + } \ + if (++nline > $$1) { \ + print "DUPLICATE MESSAGE NUMBER " $$1; \ + exit 1; \ + } \ + for (; nline < $$1; ++nline) \ + print ""; \ + print $0; \ + }' | \ + sed -e '1s/^/VI_MESSAGE_CATALOG/' \ + -e '/"/s/^[^"]*"//' \ + -e '1!s/"$$/X/' > $@; \ + chmod 444 $@; \ + if grep DUPLICATE $@ > /dev/null; then \ + grep DUPLICATE $@; \ + fi; \ + if grep 'NOT LEGAL' $@ > /dev/null; then \ + grep 'NOT LEGAL' $@; \ + fi + +CHK= dutch.check english.check french.check german.check \ + polish.check ru_SU.KOI8-R.check spanish.check swedish.check +check: ${CHK} +${CHK}: ${CAT} + @echo "... $@"; \ + f=`basename $@ .check`; \ + (echo "Unused message id's (this is okay):"; \ + awk '{ \ + while (++nline < $$1) \ + printf "%03d\n", nline; \ + }' < $$f.base; \ + echo =========================; \ + echo "MISSING ERROR MESSAGES (Please add!):"; \ + awk '{print $$1}' < $$f.base | sort -u > __ck1; \ + awk '{print $$1}' < english.base | sort -u > __ck2; \ + comm -13 __ck1 __ck2; \ + echo =========================; \ + echo "Extra error messages (just delete them):"; \ + comm -23 __ck1 __ck2; \ + echo =========================; \ + echo "MESSAGES WITH THE SAME MESSAGE ID's (FIX!):"; \ + for j in \ + `sed '/^$$/d' < $$f.base | sort -u | \ + awk '{print $$1}' | uniq -d`; do \ + egrep $$j $$f.base; \ + done; \ + echo =========================; \ + echo "Duplicate messages, both id and message (this is okay):"; \ + sed '/^$$/d' < $$f.base | sort | uniq -c | \ + awk '$$1 != 1 { print $$0 }' | sort -n; \ + echo =========================; \ + echo "Duplicate messages, just message (this is okay):"; \ + sed '/^$$/d' < $$f | sort | uniq -c | \ + awk '$$1 != 1 { print $$0 }' | sort -n; \ + echo =========================) > $@ + +english.base: dump ${FILES} #Makefile + ./dump ${FILES} |\ + sed -e '/|/!d' \ + -e 's/|/ "/' \ + -e 's/^"//' \ + -e 's/\\"/"/g' |\ + sort -n | uniq > $@ + +dump: dump.c + ${CC} -O -o dump dump.c + +clean: + rm -f dump dump.o ${CAT} english.base *.check __ck1 __ck2 Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/README Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1,166 @@ +# $Id: README,v 8.4 1994/11/22 09:52:04 bostic Exp $ (Berkeley) $Date: 1994/11/22 09:52:04 $ + +Generally, all non-system error and informational messages in nvi are +catalog messages, i.e. they can be tailored to a specific langauge. +Command strings, usage strings, system errors and other "known text" +are not. It would certainly be possible to internationalize all the +text strings in nvi, but it's unclear that it's the right thing to do. + +First, there's no portable way to do message catalogs. The System V +scheme is a reasonable choice, but none of the 4BSD derived systems +support it. So, catalogs are completely implemented within nvi, and +don't require any library support. + +Message catalogs in nvi are fairly simple. Every catalog message +consists of two parts -- an initial number followed by a pipe (`|') +character, followed by the English text for the message. For example: + + msgq(sp, M_ERR, "001|This is an error message"); + +would be a typical message. + +When the msgq() routine is called, if the user has specified a message +catalog and the format string (the third argument) has a leading number, +then it is converted to a record number, and that record is retrieved +from the message catalog and used as a replacement format string. If +the record can't be retrieved for any reason, the English text is displayed +instead. + +Each message format string MUST map into the English format string, i.e. +it can't display more or different arguments than the English one. + +For example: + + msgq(sp, M_ERR, "002|Error: %d %x", arg1, arg2); + +is a format string that displays two arguments. It is possible, however, +to reorder the arguments or to not display all of them. The convention +nvi uses is the System V printf(3) convention, i.e. "%[0-9]*$" is the name +of a specific, numbered argument. For example: + + msgq(sp, M_ERR, "002|Error: %2$d %1$x", arg1, arg2); + +displays the arguments in reverse order. + +If the system supports this convention in its library printf routines +(as specified by the test #define NL_ARGMAX), nvi uses those routines. +Otherwise, there is some serious magic going on in common/msg.c to make +this all work. + +Arguments to the msgq function are required to contain ONLY printable +characters. No further translation is done by the msgq routine before +displaying the message on the screen. For example, in the msgq call: + + msgq(sp, M_ERR, "003|File: %s", file_name); + +"file_name" must contain only printable characters. The routine +msg_print() returns a printable version of a string in allocated +memory. For example: + + char *p; + + p = msg_print(sp, file_name); + msgq(sp, M_ERR, M("003", "File: %s"), p); + FREE_SPACE(sp, p, 0); + +makes sure that "file_name" is printable before calling the msgq +routine. + +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + +The message catalogs themselves are maintained in two files. The first +is the "base file" which contains two fields, a record number and the +message itself. All base files are named using the convention +"vi_.base", e.g. the English one is "vi_english.base". For +example: + + 002 "Unable to create temporary file" + 003 "Warning: %s is not a regular file" + 004 "%s already locked, session is read-only" + 005 "%s: remove" + 006 "%s: close" + 007 "%s: remove" + 008 "%s: remove" + 009 "Read-only file, not written; use ! to override" + 010 "Read-only file, not written" + +are the first few lines of the current vi_english.base file. Note that +message #1 is missing -- the first message of each catalog is a special +one, so that nvi can recognize message catalog files. It's added by the +Makefile script that creates the second version of the message catalog. + +The second file is the file used by nvi to access messages, and is a list +of the messages, one per line: + + VI_MESSAGE_CATALOG + Unable to create temporary fileX + Warning: %s is not a regular fileX + %s already locked, session is read-onlyX + %s: removeX + %s: closeX + %s: removeX + %s: removeX + Read-only file, not written; use ! to overrideX + Read-only file, not writtenX + +Note that all messages have had a trailing 'X' character appended. This +is to provide nvi a place to store a trailing nul for the message so that +C library routines that expect one won't be disappointed. + +These files are named for their language, e.g. "vi_english". The second +files are automatically created from the first files. + +To create a new catalog for nvi: + +Copy the file vi_english.base to a file that you can modify , e.g. "cp +vi_english.base vi_german.base". For each of the messages in the file, +replace the message with the string that you want to use. To find out +what the arguments to a message are, I'm afraid you'll have to search +the source code for the message number. You can find them fairly quickly +by doing: + + cd ..; egrep '123\|' */*.[chys] + +I'm sorry that there's not an easier way, but I couldn't think of +anything that wasn't a lot of work. + +If, for some reason, you don't have the file vi_english.base, or you +have new sources for which you want to create a new base catalog, you +can create it by running the command "make english" in the catalog +directory. + +Once you've translated all of the strings, then add your catalog to the +"CAT=" line of the Makefile, and run the command "make catalog". This +will create the second (and corresponding) file for each file named +.base. + +Don't worry about missing line numbers, i.e. base files that look like: + + 005 Message number 5. + 007 Message number 7. + +This simply means that a message was deleted during the course of nvi's +development. It will be taken care of automatically when you create +the second form of the file. + +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +If you add new messages to the nvi sources, you can check your work by +doing "make english; make check". The "make check" target lists unused +message numbers, duplicate message numbers, and duplicate messages. +Unused message numbers are only useful if you are condensing messages. +Duplicate message numbers are a serious problem and have to be fixed. +Duplicate messages are only interesting if a message appears often enough +that it's worth creating a routine so that the string is only need in +a single place. + +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +To select a catalog when running nvi, set the "msgcat" option. If the +value of this option ends with a '/', it is treated as the name of a +directory that contains a message catalog "vi_XXXX", where XXXX is the +value of the LANG environmental variable, if it's set, or the value of +the LC_MESSAGES environmental variable if it's not. If neither of those +environmental variables are set, or if the option doesn't end in a '/', +the option is treated as the full path name of the message catalog to use. + +If any messages are missing from the catalog, the backup text (English) +is used instead. Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dump.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dump.c Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1,88 @@ +/*- + * Copyright (c) 1992, 1993, 1994 + * The Regents of the University of California. All rights reserved. + * + * %sccs.include.redist.c% + */ + +#ifndef lint +static char copyright[] = +"%Z% Copyright (c) 1992, 1993, 1994\n\ + The Regents of the University of California. All rights reserved.\n"; +#endif /* not lint */ + +#ifndef lint +static char sccsid[] = "$Id: dump.c,v 8.2 2011/07/14 00:05:25 zy Exp $ (Berkeley) $Date: 2011/07/14 00:05:25 $"; +#endif /* not lint */ + +#include +#include + +static void +parse(fp) + FILE *fp; +{ + int ch, s1, s2, s3; + +#define TESTD(s) { \ + if ((s = getc(fp)) == EOF) \ + return; \ + if (!isdigit(s)) \ + continue; \ +} +#define TESTP { \ + if ((ch = getc(fp)) == EOF) \ + return; \ + if (ch != '|') \ + continue; \ +} +#define MOVEC(t) { \ + do { \ + if ((ch = getc(fp)) == EOF) \ + return; \ + } while (ch != (t)); \ +} + for (;;) { + MOVEC('"'); + TESTD(s1); + TESTD(s2); + TESTD(s3); + TESTP; + putchar('"'); + putchar(s1); + putchar(s2); + putchar(s3); + putchar('|'); + for (;;) { /* dump to end quote. */ + if ((ch = getc(fp)) == EOF) + return; + putchar(ch); + if (ch == '"') + break; + if (ch == '\\') { + if ((ch = getc(fp)) == EOF) + return; + putchar(ch); + } + } + putchar('\n'); + } +} + +int +main(argc, argv) + int argc; + char *argv[]; +{ + FILE *fp; + + for (; *argv != NULL; ++argv) { + if ((fp = fopen(*argv, "r")) == NULL) { + perror(*argv); + return (1); + } + parse(fp); + (void)fclose(fp); + } + return (0); +} Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1,317 @@ +VI_MESSAGE_CATALOG +regel te langX +kan regel %lu niet verwijderenX +kan niet toevoegen aan regel %luX +kan niet invoegen vooraan regel %luX +kan regel %lu niet opslaanX +kan laatste regel niet lezenX +Fout: kan regel %lu niet vindenX +log bestandX +Er vindt geen logging plaats, kan wijzigingen niet ongedaan makenX +geen wijzigingen om ongedaan te makenX +Er vindt geen logging plaats, kan wijzigingen niet ongedaan makenX +Er vindt geen logging plaats, herhaling niet mogelijkX +geen wijzigingen om te herhalenX +%s/%d: schrijven naar log misluktX +Vi's standaard invoer en uitvoer moeten aan een terminal gekoppeld zijnX +Merk %s: niet gezetX +Merk %s: de regel is verwijderdX +Merk %s: de cursor positie bestaat niet meerX +Fout: X +nieuw bestandX +naam veranderdX +gewijzigdX +ongewijzigdX +NIET BEVEILIGDX +niet schrijfbaarX +regel %lu uit %lu [%ld%%]X +leeg bestandX +regel %luX +Het bestand %s is geen message catalogX +Niet in staat om de standaard %s optie in te stellenX +Gebruik: %sX +set: optie %s onbekend: 'set all' laat alle opties zienX +set: [no]%s optie kan geen waarde hebbenX +set: %s optie moet een waarde hebbenX +set: %s optie: %sX +set: %s optie: %s: getal is te grootX +set: %s optie: %s is een ongeldige waardeX +set: %s optie moet een waarde hebbenX +Te weinig kolommen op het scherm, minder dan %dX +Aantal kolommen te groot, meer dan %dX +Te weinig regels op het scherm, minder dan %dX +Aantal regels te groot, meer dan %dX +De lisp optie is niet ondersteundX +messages niet uitgeschakeld: %sX +messages niet geactiveerd: %sX + +De paragraph optie moet karakter paren bevattenX +De section optie moet karakter paren bevattenX + + + +De standaard buffer is leegX +Buffer %s is leegX +Bestanden met newlines in de naam kunnen niet hersteld wordenX +Wijzigingen kunnen niet ongedaan gemaakt worden als deze sessie misluktX +Bestand wordt gecopieerd voor herstel...X +Herstel mechanisme werkt niet: %sX +Wijzigingen kunnen niet ongedaan gemaakt worden als deze sessie misluktX +Kon bestand niet veilig stellen: %sX +Bestand wordt gecopieerd voor herstel...X +Informatie met betrekking tot gebruiker nummer %u niet gevondenX +Kan herstel bestand niet beveiligenX +herstel buffer overgelopenX +herstel bestandX +%s: verminkt herstel bestandX +%s: verminkt herstel bestandX +U heeft geen bestand genaamd %s te herstellenX +U kan eerdere versies van dit bestand herstellenX +U kan nog meer bestanden herstellenX +kan geen email versturen: %sX +Bestand leeg; niets om te doorzoekenX +Einde van het bestand bereikt zonder dat het patroon gevonden isX +Geen vorig zoek patroonX +Patroon niet gevondenX +Begin van het bestand bereikt zonder dat het patroon gevonden isX +Zoek-operatie omgeslagenX +Bezig met zoeken...X +Geen niet-printbaar karakter gevondenX +Onbekend commandoX + +Commando niet beschikbaar in ex modeX +Aantal mag niet nul zijnX +%s: ongeldige regel aanduidingX +Interne fout in syntax tabel (%s: %s)X +Gebruik: %sX +%s: tijdelijke buffer niet vrijgegevenX +Vlag offset voor regel 1X +Vlag offset voorbij bestands eindeX +bestand/scherm veranderd tijdens uitvoeren van @ in een blokX +bestand/scherm veranderd tijdens uitvoeren van globaal/v commandoX +Ex commando mislukt: rest van commando(s) genegeerdX +Ex commando mislukt: gemappede toetsen genegeerdX +Het tweede adres is kleiner dan het eersteX +Geen merk naam opgegevenX +\\ niet gevolgd door / of ?X +Referentie aan een regel nummer kleiner dan 0X +Het %s commando is onbekendX +Adres waarde te grootX +Adres waarde te kleinX +Ongeldige adres combinatieX +Ongeldig adres: slechts %lu regels in het bestand aanwezigX +Ongeldig adres: het bestand is leegX +Het %s commando staat het adres 0 niet toeX +Geen afkortingen om weer te gevenX +Afkortingen moeten eindigen met een "woord" letterX +Afkortingen mogen geen tabulaties of spaties bevattenX +Afkortingen mogen geen woord/niet-woord karakters mengen, behalve aan het eindeX +"%s" is geen afkortingX +Vi commando mislukt: gemappede toetsen genegeerdX +Dit is het laatste bestandX +Dit is het eerste bestandX +Dit is het eerste bestandX +lijst met bestanden is leegX +Geen voorgaand commando om "!" te vervangenX +Geen bestandsnaam voor %%X +Geen bestandsnaam voor #X +Fout: execl: %sX +I/O fout: %sX +Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik ! om het te forcerenX +Kan uw home directory niet vindenX +Nieuwe huidige directory: %sX +Geen cut buffers aanwezigX +Het %s commando kan niet gebruikt worden in een globaal of v commandoX +%s/%s: niet gelezen: noch U noch root is de eigenaarX +%s/%s: niet gelezen: U bent niet de eigenaarX +%s/%s: niet gelezen: kan gewijzigd worden door andere gebruikersX +%s: niet gelezen: noch U noch root is de eigenaar"X +%s: niet gelezen: U bent niet de eigenaarX +%s: niet gelezen: kan gewijzigd worden door andere gebruikersX +Geen volgende regel om samen te voegenX +Geen input map entriesX +Geen command map entriesX +Het %s karakter kan niet ge-remapped wordenX +"%s" is niet gemappedX +Merk naam moet een enkel karakter zijnX +%s bestaat al, niet weggeschreven; gebruik ! om het te forcerenX +Nieuw .exrc bestand: %s. X +doel regel ligt in het blokX +Het open commando vereist dat de open optie actief isX +Het open commando is nog niet ondersteundX +Kan dit bestand niet veilig stellenX +Bestand veilig gesteldX +%s resulteert in te veel bestandsnamenX +Alleen echte bestanden en named pipes kunnen gelezen wordenX +%s: lees beveiliging niet beschikbaarX +Bezig met lezen...X +%s: %lu regels, %lu karaktersX +Geen achtergrond schermen aanwezigX +Het script commando is alleen beschikbaar in vi modeX +Geen comando om uit te voerenX +shiftwidth optie op 0 gezetX +Count te grootX +Count te kleinX +Reguliere expressie opgegeven; r vlag heeft geen betekenisX +De #, l en p vlaggen kunnen niet gecombineerd worden met de c vlag in vi modeX +Geen match gevondenX +Geen voorafgaande tag aanwezigX +Minder dan %s elementen op de tags stapel; gebruik :display t[ags]X +Geen bestand genaamd %s op de tags stapel; gebruik :display t[ags]X +Kies Enter om door te gaan: X +%s: tag niet gevondenX +%s: verminkte tag in %sX +%s: Het regel nummer van deze tag is voorbij het einde van het bestandX +De tags stapel is leegX +%s: zoek patroon niet gevondenX +%d andere bestanden te wijzigenX +Buffer %s is leegX +Bevestig wijziging? [n]X +OnderbrokenX +Geen voorafgaande buffer om uit te voerenX +Geen vorige reguliere expressieX +Het %s commando vereist dat er een bestand geladen isX +Gebruik: %sX +Het visual commando vereist dat de open optie actief isX + +Leeg bestandX +Geen voorafgaand F, f, T of t zoek commandoX +%s niet gevondenX +Geen voorafgaand bestand te bewerkenX +Cursor niet op een getalX +Getal wordt te grootX +Getal wordt te kleinX +Geen overeenkomstig karakter op deze regelX +Overeenkomstig karakter niet gevondenX +Geen karakters te vervangenX +Geen ander scherm aanwezigX +Karakters achter het zoek patroon, de regel offset, en/of het z commandoX +Geen voorafgaand zoek patroonX +Zoekopdracht na omslag teruggekeerd op originele positieX +Afkorting overschrijdt expansie limiet: karakters genegeerdX +Ongeldig karakter; quote to enterX +Reeds aan het begin van de invoerX +Niet meer karakters te verwijderenX +Verplaatsing voorbij het einde van het bestandX +Verplaatsing voorbij het einde van de regelX +Cursor niet verplaatstX +Reeds aan het begin van het bestandX +Verplaatsing voorbij het begin van het bestandX +Reeds in de eerste kolomX +Buffers moeten voor het commando opgegeven wordenX +Reeds bij het einde van het bestandX +Reeds bij het einde van de regelX +%s is geen vi commandoX +Gebruik: %sX +Geen karakters te verwijderenX +Het Q commando vereist de ex terminal interfaceX +Geen commando om te herhalenX +Het bestand is leegX +%s mag niet gebruikt worden als een verplaatsings commandoX +Al in commando modeX +Cursor niet in een woordX + +Windows optie waarde is te groot, maximum is %uX +ToevoegenX +VeranderenX +CommandoX +InvoegenX +VervangenX +Verplaatsing voorbij het eind van het schermX +Verplaatsing voorbij het begin van het schermX +Scherm moet meer dan %d regels hebben om het te kunnen splitsenX +Er zijn geen achtergrond schermenX +Er is geen achtergrond scherm waarin U bestand %s aan het bewerken bentX +U kan uw enige scherm niet in de achtergrond zettenX +Het scherm kan slechts verkleind worden tot %d regelsX +Het scherm kan niet kleinerX +Het scherm kan niet groterX + +Dit scherm kan niet gesuspend wordenX +Onderbroken: gemappede toetsen genegeerdX +vi: tijdelijke buffer niet vrijgegevenX +Deze terminal heeft geen %s toetsX +Er kan slechts een buffer opgegeven wordenX +Getal groter dan %luX +OnderbrokenX +Aanmaken van tijdelijk bestand is misluktX +Waarschuwing: %s is geen regulier bestandX +%s is al geopend, bestand is in deze sessie niet schrijfbaarX +%s: verwijdering misluktX +%s: sluiting misluktX +%s: verwijdering misluktX +%s: verwijdering misluktX +Bestand niet schrijfbaar, niet weggeschreven; gebruik ! om het te forcerenX +Bestand niet schrijfbaar, niet weggeschrevenX +%s bestaat al, niet weggeschreven; gebruik ! om het te forcerenX +%s bestaat al, niet weggeschrevenX +Gebruik ! om een incompleet bestand weg te schrijvenX +Bestand incompleet, niet weggeschrevenX +%s: bestand op disk nieuwer dan deze versie; gebruik ! om het te forcerenX +%s: bestand op disk nieuwer dan deze versieX +%s: schrijf beveiliging niet beschikbaarX +Bezig met schrijven...X +%s: WAARSCHUWING: BESTAND INCOMPLEETX +Reeds op de eerste tag van deze groepX +%s: nieuw bestand: %lu regels, %lu karaktersX +%s: %lu regels, %lu karaktersX +%s resulteert in te veel bestandsnamenX +%s: geen normaal bestandX +%s: U bent niet de eigenaarX +%s: kan gewijzigd worden door andere gebruikersX +Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik ! om het te forcerenX +Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik :edit! om het te forcerenX +Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik ! om het te forcerenX +Tijdelijk bestand; exit negeert wijzigingenX +Bestand niet schrijfbaar, wijzigingen niet automatisch weggeschrevenX +log opnieuw gestartX +Bevestig? [ynq]X +Druk op een toets om door te gaan: X +Druk op een toets om door te gaan [: voor meer ex commandos]: X +Druk op een toets om door te gaan [q om te stoppen]: X +Deze vorm van %s vereist de ex terminal interfaceX +Entering ex input mode.X +Commando mislukt, nog geen bestand geladen.X + doorgaan?X +Onverwacht character eventX +Onverwacht end-of-file eventX +Geen match gevonden voor dit patroonX +Onverwacht interrupt eventX +Onverwacht quit eventX +Onverwacht repaint eventX +Reeds op de laatste tag van deze groepX +Het %s command vereist de ex terminal interfaceX +Deze vorm van %s is niet ondersteund als de secure edit optie actief isX +Onverwacht string eventX +Onverwacht timeout eventX +Onverwacht write eventX + +Shell expansies zijn niet ondersteund als de secure edit optie actief isX +Het %s commando is niet ondersteund als de secure edit optie actief isX +set: %s mag niet uitgezet wordenX +Scherm te klein.X +toegevoegdX +gewijzigdX +verwijderdX +samengevoegdX +verplaatstX +verschovenX +gebufferdX +regelX +regelsX +Vi was niet geladen met een Tcl interpreterX +Bestand gewijzigd sinds het de laatste keer weg is geschreven.X +Shell expansie misluktX +Geen %s edit optie opgegevenX +Vi was niet geladen met een Perl interpreterX +Geen ex commando om uit te voerenX +Kies om commando uit te voeren, :q om te stoppenX +Gebruik "cscope help" voor uitlegX +Nog geen cscope connectie aanwezigX +%s: onbekend zoek type: gebruik een van %sX +%d: onbekende cscope sessieX +set: de %s optie mag nooit aangezet wordenX +set: de %s optie mag nooit op 0 gezet wordenX +%s: toegevoegd: %lu regels, %lu karaktersX +Onverwacht resize eventX +%d bestanden te wijzigenX Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch.base ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch.base Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1,307 @@ +002 "regel te lang" +003 "kan regel %lu niet verwijderen" +004 "kan niet toevoegen aan regel %lu" +005 "kan niet invoegen vooraan regel %lu" +006 "kan regel %lu niet opslaan" +007 "kan laatste regel niet lezen" +008 "Fout: kan regel %lu niet vinden" +009 "log bestand" +010 "Er vindt geen logging plaats, kan wijzigingen niet ongedaan maken" +011 "geen wijzigingen om ongedaan te maken" +012 "Er vindt geen logging plaats, kan wijzigingen niet ongedaan maken" +013 "Er vindt geen logging plaats, herhaling niet mogelijk" +014 "geen wijzigingen om te herhalen" +015 "%s/%d: schrijven naar log mislukt" +016 "Vi's standaard invoer en uitvoer moeten aan een terminal gekoppeld zijn" +017 "Merk %s: niet gezet" +018 "Merk %s: de regel is verwijderd" +019 "Merk %s: de cursor positie bestaat niet meer" +020 "Fout: " +021 "nieuw bestand" +022 "naam veranderd" +023 "gewijzigd" +024 "ongewijzigd" +025 "NIET BEVEILIGD" +026 "niet schrijfbaar" +027 "regel %lu uit %lu [%ld%%]" +028 "leeg bestand" +029 "regel %lu" +030 "Het bestand %s is geen message catalog" +031 "Niet in staat om de standaard %s optie in te stellen" +032 "Gebruik: %s" +033 "set: optie %s onbekend: 'set all' laat alle opties zien" +034 "set: [no]%s optie kan geen waarde hebben" +035 "set: %s optie moet een waarde hebben" +036 "set: %s optie: %s" +037 "set: %s optie: %s: getal is te groot" +038 "set: %s optie: %s is een ongeldige waarde" +039 "set: %s optie moet een waarde hebben" +040 "Te weinig kolommen op het scherm, minder dan %d" +041 "Aantal kolommen te groot, meer dan %d" +042 "Te weinig regels op het scherm, minder dan %d" +043 "Aantal regels te groot, meer dan %d" +044 "De lisp optie is niet ondersteund" +045 "messages niet uitgeschakeld: %s" +046 "messages niet geactiveerd: %s" +048 "De paragraph optie moet karakter paren bevatten" +049 "De section optie moet karakter paren bevatten" +053 "De standaard buffer is leeg" +054 "Buffer %s is leeg" +055 "Bestanden met newlines in de naam kunnen niet hersteld worden" +056 "Wijzigingen kunnen niet ongedaan gemaakt worden als deze sessie mislukt" +057 "Bestand wordt gecopieerd voor herstel..." +058 "Herstel mechanisme werkt niet: %s" +059 "Wijzigingen kunnen niet ongedaan gemaakt worden als deze sessie mislukt" +060 "Kon bestand niet veilig stellen: %s" +061 "Bestand wordt gecopieerd voor herstel..." +062 "Informatie met betrekking tot gebruiker nummer %u niet gevonden" +063 "Kan herstel bestand niet beveiligen" +064 "herstel buffer overgelopen" +065 "herstel bestand" +066 "%s: verminkt herstel bestand" +067 "%s: verminkt herstel bestand" +068 "U heeft geen bestand genaamd %s te herstellen" +069 "U kan eerdere versies van dit bestand herstellen" +070 "U kan nog meer bestanden herstellen" +071 "kan geen email versturen: %s" +072 "Bestand leeg; niets om te doorzoeken" +073 "Einde van het bestand bereikt zonder dat het patroon gevonden is" +074 "Geen vorig zoek patroon" +075 "Patroon niet gevonden" +076 "Begin van het bestand bereikt zonder dat het patroon gevonden is" +077 "Zoek-operatie omgeslagen" +078 "Bezig met zoeken..." +079 "Geen niet-printbaar karakter gevonden" +080 "Onbekend commando" +082 "Commando niet beschikbaar in ex mode" +083 "Aantal mag niet nul zijn" +084 "%s: ongeldige regel aanduiding" +085 "Interne fout in syntax tabel (%s: %s)" +086 "Gebruik: %s" +087 "%s: tijdelijke buffer niet vrijgegeven" +088 "Vlag offset voor regel 1" +089 "Vlag offset voorbij bestands einde" +090 "bestand/scherm veranderd tijdens uitvoeren van @ in een blok" +091 "bestand/scherm veranderd tijdens uitvoeren van globaal/v commando" +092 "Ex commando mislukt: rest van commando(s) genegeerd" +093 "Ex commando mislukt: gemappede toetsen genegeerd" +094 "Het tweede adres is kleiner dan het eerste" +095 "Geen merk naam opgegeven" +096 "\\ niet gevolgd door / of ?" +097 "Referentie aan een regel nummer kleiner dan 0" +098 "Het %s commando is onbekend" +099 "Adres waarde te groot" +100 "Adres waarde te klein" +101 "Ongeldige adres combinatie" +102 "Ongeldig adres: slechts %lu regels in het bestand aanwezig" +103 "Ongeldig adres: het bestand is leeg" +104 "Het %s commando staat het adres 0 niet toe" +105 "Geen afkortingen om weer te geven" +106 "Afkortingen moeten eindigen met een "woord" letter" +107 "Afkortingen mogen geen tabulaties of spaties bevatten" +108 "Afkortingen mogen geen woord/niet-woord karakters mengen, behalve aan het einde" +109 ""%s" is geen afkorting" +110 "Vi commando mislukt: gemappede toetsen genegeerd" +111 "Dit is het laatste bestand" +112 "Dit is het eerste bestand" +113 "Dit is het eerste bestand" +114 "lijst met bestanden is leeg" +115 "Geen voorgaand commando om "!" te vervangen" +116 "Geen bestandsnaam voor %%" +117 "Geen bestandsnaam voor #" +118 "Fout: execl: %s" +119 "I/O fout: %s" +120 "Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik ! om het te forceren" +121 "Kan uw home directory niet vinden" +122 "Nieuwe huidige directory: %s" +123 "Geen cut buffers aanwezig" +124 "Het %s commando kan niet gebruikt worden in een globaal of v commando" +125 "%s/%s: niet gelezen: noch U noch root is de eigenaar" +126 "%s/%s: niet gelezen: U bent niet de eigenaar" +127 "%s/%s: niet gelezen: kan gewijzigd worden door andere gebruikers" +128 "%s: niet gelezen: noch U noch root is de eigenaar"" +129 "%s: niet gelezen: U bent niet de eigenaar" +130 "%s: niet gelezen: kan gewijzigd worden door andere gebruikers" +131 "Geen volgende regel om samen te voegen" +132 "Geen input map entries" +133 "Geen command map entries" +134 "Het %s karakter kan niet ge-remapped worden" +135 ""%s" is niet gemapped" +136 "Merk naam moet een enkel karakter zijn" +137 "%s bestaat al, niet weggeschreven; gebruik ! om het te forceren" +138 "Nieuw .exrc bestand: %s. " +139 "doel regel ligt in het blok" +140 "Het open commando vereist dat de open optie actief is" +141 "Het open commando is nog niet ondersteund" +142 "Kan dit bestand niet veilig stellen" +143 "Bestand veilig gesteld" +144 "%s resulteert in te veel bestandsnamen" +145 "Alleen echte bestanden en named pipes kunnen gelezen worden" +146 "%s: lees beveiliging niet beschikbaar" +147 "Bezig met lezen..." +148 "%s: %lu regels, %lu karakters" +149 "Geen achtergrond schermen aanwezig" +150 "Het script commando is alleen beschikbaar in vi mode" +151 "Geen comando om uit te voeren" +152 "shiftwidth optie op 0 gezet" +153 "Count te groot" +154 "Count te klein" +155 "Reguliere expressie opgegeven; r vlag heeft geen betekenis" +156 "De #, l en p vlaggen kunnen niet gecombineerd worden met de c vlag in vi mode" +157 "Geen match gevonden" +158 "Geen voorafgaande tag aanwezig" +159 "Minder dan %s elementen op de tags stapel; gebruik :display t[ags]" +160 "Geen bestand genaamd %s op de tags stapel; gebruik :display t[ags]" +161 "Kies Enter om door te gaan: " +162 "%s: tag niet gevonden" +163 "%s: verminkte tag in %s" +164 "%s: Het regel nummer van deze tag is voorbij het einde van het bestand" +165 "De tags stapel is leeg" +166 "%s: zoek patroon niet gevonden" +167 "%d andere bestanden te wijzigen" +168 "Buffer %s is leeg" +169 "Bevestig wijziging? [n]" +170 "Onderbroken" +171 "Geen voorafgaande buffer om uit te voeren" +172 "Geen vorige reguliere expressie" +173 "Het %s commando vereist dat er een bestand geladen is" +174 "Gebruik: %s" +175 "Het visual commando vereist dat de open optie actief is" +177 "Leeg bestand" +178 "Geen voorafgaand F, f, T of t zoek commando" +179 "%s niet gevonden" +180 "Geen voorafgaand bestand te bewerken" +181 "Cursor niet op een getal" +182 "Getal wordt te groot" +183 "Getal wordt te klein" +184 "Geen overeenkomstig karakter op deze regel" +185 "Overeenkomstig karakter niet gevonden" +186 "Geen karakters te vervangen" +187 "Geen ander scherm aanwezig" +188 "Karakters achter het zoek patroon, de regel offset, en/of het z commando" +189 "Geen voorafgaand zoek patroon" +190 "Zoekopdracht na omslag teruggekeerd op originele positie" +191 "Afkorting overschrijdt expansie limiet: karakters genegeerd" +192 "Ongeldig karakter; quote to enter" +193 "Reeds aan het begin van de invoer" +194 "Niet meer karakters te verwijderen" +195 "Verplaatsing voorbij het einde van het bestand" +196 "Verplaatsing voorbij het einde van de regel" +197 "Cursor niet verplaatst" +198 "Reeds aan het begin van het bestand" +199 "Verplaatsing voorbij het begin van het bestand" +200 "Reeds in de eerste kolom" +201 "Buffers moeten voor het commando opgegeven worden" +202 "Reeds bij het einde van het bestand" +203 "Reeds bij het einde van de regel" +204 "%s is geen vi commando" +205 "Gebruik: %s" +206 "Geen karakters te verwijderen" +207 "Het Q commando vereist de ex terminal interface" +208 "Geen commando om te herhalen" +209 "Het bestand is leeg" +210 "%s mag niet gebruikt worden als een verplaatsings commando" +211 "Al in commando mode" +212 "Cursor niet in een woord" +214 "Windows optie waarde is te groot, maximum is %u" +215 "Toevoegen" +216 "Veranderen" +217 "Commando" +218 "Invoegen" +219 "Vervangen" +220 "Verplaatsing voorbij het eind van het scherm" +221 "Verplaatsing voorbij het begin van het scherm" +222 "Scherm moet meer dan %d regels hebben om het te kunnen splitsen" +223 "Er zijn geen achtergrond schermen" +224 "Er is geen achtergrond scherm waarin U bestand %s aan het bewerken bent" +225 "U kan uw enige scherm niet in de achtergrond zetten" +226 "Het scherm kan slechts verkleind worden tot %d regels" +227 "Het scherm kan niet kleiner" +228 "Het scherm kan niet groter" +230 "Dit scherm kan niet gesuspend worden" +231 "Onderbroken: gemappede toetsen genegeerd" +232 "vi: tijdelijke buffer niet vrijgegeven" +233 "Deze terminal heeft geen %s toets" +234 "Er kan slechts een buffer opgegeven worden" +235 "Getal groter dan %lu" +236 "Onderbroken" +237 "Aanmaken van tijdelijk bestand is mislukt" +238 "Waarschuwing: %s is geen regulier bestand" +239 "%s is al geopend, bestand is in deze sessie niet schrijfbaar" +240 "%s: verwijdering mislukt" +241 "%s: sluiting mislukt" +242 "%s: verwijdering mislukt" +243 "%s: verwijdering mislukt" +244 "Bestand niet schrijfbaar, niet weggeschreven; gebruik ! om het te forceren" +245 "Bestand niet schrijfbaar, niet weggeschreven" +246 "%s bestaat al, niet weggeschreven; gebruik ! om het te forceren" +247 "%s bestaat al, niet weggeschreven" +248 "Gebruik ! om een incompleet bestand weg te schrijven" +249 "Bestand incompleet, niet weggeschreven" +250 "%s: bestand op disk nieuwer dan deze versie; gebruik ! om het te forceren" +251 "%s: bestand op disk nieuwer dan deze versie" +252 "%s: schrijf beveiliging niet beschikbaar" +253 "Bezig met schrijven..." +254 "%s: WAARSCHUWING: BESTAND INCOMPLEET" +255 "Reeds op de eerste tag van deze groep" +256 "%s: nieuw bestand: %lu regels, %lu karakters" +257 "%s: %lu regels, %lu karakters" +258 "%s resulteert in te veel bestandsnamen" +259 "%s: geen normaal bestand" +260 "%s: U bent niet de eigenaar" +261 "%s: kan gewijzigd worden door andere gebruikers" +262 "Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik ! om het te forceren" +263 "Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik :edit! om het te forceren" +264 "Bestand gewijzigd sinds laatste schrijfactie; schrijf het weg of gebruik ! om het te forceren" +265 "Tijdelijk bestand; exit negeert wijzigingen" +266 "Bestand niet schrijfbaar, wijzigingen niet automatisch weggeschreven" +267 "log opnieuw gestart" +268 "Bevestig? [ynq]" +269 "Druk op een toets om door te gaan: " +270 "Druk op een toets om door te gaan [: voor meer ex commandos]: " +271 "Druk op een toets om door te gaan [q om te stoppen]: " +272 "Deze vorm van %s vereist de ex terminal interface" +273 "Entering ex input mode." +274 "Commando mislukt, nog geen bestand geladen." +275 " doorgaan?" +276 "Onverwacht character event" +277 "Onverwacht end-of-file event" +278 "Geen match gevonden voor dit patroon" +279 "Onverwacht interrupt event" +280 "Onverwacht quit event" +281 "Onverwacht repaint event" +282 "Reeds op de laatste tag van deze groep" +283 "Het %s command vereist de ex terminal interface" +284 "Deze vorm van %s is niet ondersteund als de secure edit optie actief is" +285 "Onverwacht string event" +286 "Onverwacht timeout event" +287 "Onverwacht write event" +289 "Shell expansies zijn niet ondersteund als de secure edit optie actief is" +290 "Het %s commando is niet ondersteund als de secure edit optie actief is" +291 "set: %s mag niet uitgezet worden" +292 "Scherm te klein." +293 "toegevoegd" +294 "gewijzigd" +295 "verwijderd" +296 "samengevoegd" +297 "verplaatst" +298 "verschoven" +299 "gebufferd" +300 "regel" +301 "regels" +302 "Vi was niet geladen met een Tcl interpreter" +303 "Bestand gewijzigd sinds het de laatste keer weg is geschreven." +304 "Shell expansie mislukt" +305 "Geen %s edit optie opgegeven" +306 "Vi was niet geladen met een Perl interpreter" +307 "Geen ex commando om uit te voeren" +308 "Kies om commando uit te voeren, :q om te stoppen" +309 "Gebruik "cscope help" voor uitleg" +310 "Nog geen cscope connectie aanwezig" +311 "%s: onbekend zoek type: gebruik een van %s" +312 "%d: onbekende cscope sessie" +313 "set: de %s optie mag nooit aangezet worden" +314 "set: de %s optie mag nooit op 0 gezet worden" +315 "%s: toegevoegd: %lu regels, %lu karakters" +316 "Onverwacht resize event" +317 "%d bestanden te wijzigen" Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch.owner ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/dutch.owner Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1 @@ +J.G. Vons Added: soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/english ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/catalog/english Fri Jul 15 04:37:04 2011 (r224259) @@ -0,0 +1,324 @@ +VI_MESSAGE_CATALOG +Line length overflowX +unable to delete line %luX +unable to append to line %luX +unable to insert at line %luX +unable to store line %luX +unable to get last lineX +Error: unable to retrieve line %luX +Log fileX +Logging not being performed, undo not possibleX +No changes to undoX +Logging not being performed, undo not possibleX +Logging not being performed, roll-forward not possibleX +No changes to re-doX +%s/%d: log put errorX +Vi's standard input and output must be a terminalX *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 05:20:36 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 18380106566C for ; Fri, 15 Jul 2011 05:20:34 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 05:20:34 +0000 Date: Fri, 15 Jul 2011 05:20:34 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715052034.18380106566C@hub.freebsd.org> Cc: Subject: socsvn commit: r224262 - soc2011/zy/nvi-iconv/head/usr.bin/vi X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 05:20:36 -0000 Author: zy Date: Fri Jul 15 05:20:33 2011 New Revision: 224262 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224262 Log: Runnable on -current, which is really strict on headers :) Modified: soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h Modified: soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h ============================================================================== --- soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h Fri Jul 15 04:49:30 2011 (r224261) +++ soc2011/zy/nvi-iconv/head/usr.bin/vi/config.h Fri Jul 15 05:20:33 2011 (r224262) @@ -120,6 +120,11 @@ /* Define if you have */ /* #undef HAVE_SYS_SELECT_H 1 */ +/* Define if you have */ +#ifdef SYSV_CURSES +#define HAVE_TERM_H 1 +#endif + /* Define if you have the System V style pty calls. */ /* #undef HAVE_SYS5_PTY */ From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 10:54:45 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id A25161065672 for ; Fri, 15 Jul 2011 10:54:43 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 10:54:43 +0000 Date: Fri, 15 Jul 2011 10:54:43 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715105443.A25161065672@hub.freebsd.org> Cc: Subject: socsvn commit: r224266 - in soc2011/zy/nvi-iconv/head/contrib/nvi2: . cl vi X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 10:54:45 -0000 Author: zy Date: Fri Jul 15 10:54:43 2011 New Revision: 224266 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224266 Log: Merges git:dbebbe0. Known problems are solved, but: * Display file with unsupported langinfo settings can cause program frozen. The problem also presents in nvi-1.8x. Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/README soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_read.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/README ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/README Fri Jul 15 09:37:14 2011 (r224265) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/README Fri Jul 15 10:54:43 2011 (r224266) @@ -1,6 +1,6 @@ -# $Id: README,v 8.154 2011/06/26 13:11:10 zy Exp $ (Berkeley) $Date: 2011/06/26 13:11:10 $ +# $Id: README,v 8.155 2011/07/15 04:45:07 zy Exp $ (Berkeley) $Date: 2011/07/15 04:45:07 $ -This is version 2.0.0 (2011-06-26) of nex/nvi, a reimplementation of the ex/vi +This is version 2.0.0 (2011-07-11) of nex/nvi, a reimplementation of the ex/vi text editors originally distributed as part of the Fourth Berkeley Software Distribution (4BSD), by the University of California, Berkeley. @@ -18,6 +18,17 @@ vi ............ Vi source code. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= + +o Nvi was written by Keith Bostic, and the last version is 1.79. After that, + + Sven Verdoolaege added the iconv support and the DB3 locking. + + Jun-ichiro itojun Hagino developed the file encoding detection + techniques in his nvi-m17n. + +The following acknowledgments were written by Keith Bostic: + +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= o This software is several years old and is the product of many folks' work. This software was originally derived from software contributed to Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_read.c ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_read.c Fri Jul 15 09:37:14 2011 (r224265) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/cl/cl_read.c Fri Jul 15 10:54:43 2011 (r224266) @@ -314,7 +314,7 @@ a.len = SPRINTF(b1, sizeof(b1), L("lines=%lu"), (u_long)lines); if (opts_set(sp, argv, NULL)) return (1); - a.len = SPRINTF(b1, sizeof(b1), L("columns=%lu"), (u_long)lines); + a.len = SPRINTF(b1, sizeof(b1), L("columns=%lu"), (u_long)columns); if (opts_set(sp, argv, NULL)) return (1); return (0); Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.c ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.c Fri Jul 15 09:37:14 2011 (r224265) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vi.c Fri Jul 15 10:54:43 2011 (r224266) @@ -10,7 +10,7 @@ #include "config.h" #ifndef lint -static const char sccsid[] = "$Id: vi.c,v 10.58 2011/06/26 20:20:42 zy Exp $ (Berkeley) $Date: 2011/06/26 20:20:42 $"; +static const char sccsid[] = "$Id: vi.c,v 10.59 2011/07/15 04:35:23 zy Exp $ (Berkeley) $Date: 2011/07/15 04:35:23 $"; #endif /* not lint */ #include @@ -403,7 +403,6 @@ if (F_ISSET(gp, G_SRESTART) || F_ISSET(sp, SC_EX)) { *spp = sp; v_dtoh(sp); - gp->scr_discard(sp, NULL); break; } } @@ -1016,15 +1015,11 @@ } CIRCLEQ_REMOVE(&gp->dq, tsp, q); CIRCLEQ_INSERT_TAIL(&gp->hq, tsp, q); - /* XXXX Change if hidden screens per window */ - tsp->gp = 0; - gp->scr_discard(tsp, NULL); } /* Move current screen back to the display queue. */ CIRCLEQ_REMOVE(&gp->hq, sp, q); CIRCLEQ_INSERT_TAIL(&gp->dq, sp, q); - sp->gp = gp; if (hidden > 1) msgq(sp, M_INFO, Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c Fri Jul 15 09:37:14 2011 (r224265) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c Fri Jul 15 10:54:43 2011 (r224266) @@ -10,7 +10,7 @@ #include "config.h" #ifndef lint -static const char sccsid[] = "$Id: vs_refresh.c,v 10.45 2011/07/14 16:05:02 zy Exp $ (Berkeley) $Date: 2011/07/14 16:05:02 $"; +static const char sccsid[] = "$Id: vs_refresh.c,v 10.51 2011/07/15 03:32:07 zy Exp $ (Berkeley) $Date: 2011/07/15 03:32:07 $"; #endif /* not lint */ #include @@ -345,7 +345,7 @@ tmp.lno = LNO; tmp.coff = HMAP->coff; tmp.soff = 1; - lcnt = vs_sm_nlines(sp, &tmp, lastline, sp->t_rows); + lcnt = vs_sm_nlines(sp, &tmp, lastline+1, sp->t_rows); if (lcnt < HALFTEXT(sp)) { if (vs_sm_fill(sp, lastline, P_BOTTOM)) return (1); @@ -507,8 +507,8 @@ * Count up the widths of the characters. If it's a tab * character, go do it the the slow way. */ - for (cwtotal = 0; cnt--; cwtotal += KEY_LEN(sp, ch)) - if ((ch = *(u_char *)p--) == '\t') + for (cwtotal = 0; cnt--; cwtotal += KEY_COL(sp, ch)) + if ((ch = *(UCHAR_T *)p--) == '\t') goto slow; /* @@ -521,8 +521,8 @@ * If we're moving left, and there's a wide character in the * current position, go to the end of the character. */ - if (KEY_LEN(sp, ch) > 1) - cwtotal -= KEY_LEN(sp, ch) - 1; + if (KEY_COL(sp, ch) > 1) + cwtotal -= KEY_COL(sp, ch) - 1; /* * If the new column moved us off of the current logical line, @@ -547,9 +547,9 @@ * screen boundary, we can quit. */ for (cwtotal = SCNO; cnt--;) { - if ((ch = *(u_char *)p++) == '\t') + if ((ch = *(UCHAR_T *)p++) == '\t') goto slow; - if ((cwtotal += KEY_LEN(sp, ch)) >= SCREEN_COLS(sp)) + if ((cwtotal += KEY_COL(sp, ch)) >= SCREEN_COLS(sp)) break; } @@ -804,13 +804,13 @@ ++p; break; } - if ((curlen += KEY_LEN(sp, *p)) > cols) { + if ((curlen += KEY_COL(sp, *p)) > cols) { ellipsis = 3; curlen += - KEY_LEN(sp, '.') * 3 + KEY_LEN(sp, ' '); + KEY_COL(sp, '.') * 3 + KEY_COL(sp, ' '); while (curlen > cols) { ++p; - curlen -= KEY_LEN(sp, *p); + curlen -= KEY_COL(sp, *p); } break; } @@ -818,13 +818,13 @@ if (ellipsis) { while (ellipsis--) (void)gp->scr_addstr(sp, - KEY_NAME(sp, '.'), KEY_LEN(sp, '.')); + KEY_NAME(sp, '.'), KEY_COL(sp, '.')); (void)gp->scr_addstr(sp, - KEY_NAME(sp, ' '), KEY_LEN(sp, ' ')); + KEY_NAME(sp, ' '), KEY_COL(sp, ' ')); } for (; *p != '\0'; ++p) (void)gp->scr_addstr(sp, - KEY_NAME(sp, *p), KEY_LEN(sp, *p)); + KEY_NAME(sp, *p), KEY_COL(sp, *p)); } /* Clear the rest of the line. */ @@ -877,7 +877,7 @@ if (O_ISSET(sp, O_SHOWMODE)) { if (F_ISSET(sp->ep, F_MODIFIED)) (void)gp->scr_addstr(sp, - KEY_NAME(sp, '*'), KEY_LEN(sp, '*')); + KEY_NAME(sp, '*'), KEY_COL(sp, '*')); (void)gp->scr_addstr(sp, t, len); } } From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 11:16:00 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 3B4C7106564A for ; Fri, 15 Jul 2011 11:15:58 +0000 (UTC) (envelope-from oleksandr@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 11:15:58 +0000 Date: Fri, 15 Jul 2011 11:15:58 +0000 From: oleksandr@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715111558.3B4C7106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224267 - soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 11:16:00 -0000 Author: oleksandr Date: Fri Jul 15 11:15:57 2011 New Revision: 224267 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224267 Log: Add new type of error: read and write Modified: soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c Modified: soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c ============================================================================== --- soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c Fri Jul 15 10:54:43 2011 (r224266) +++ soc2011/oleksandr/oleksandr-head/head/usr.sbin/iostat/iostat.c Fri Jul 15 11:15:57 2011 (r224267) @@ -187,7 +187,7 @@ matches = NULL; maxshowdevs = 3; - while ((c = getopt(argc, argv, "c:CdhIKM:n:N:ot:Tw:xz?")) != -1) { + while ((c = getopt(argc, argv, "c:CdEhIKM:n:N:ot:Tw:xz?")) != -1) { switch(c) { case 'c': cflag++; @@ -283,7 +283,7 @@ * Make sure Tflag and/or Cflag are set if dflag == 0. If dflag is * greater than 0, they may be 0 or non-zero. */ - if (dflag == 0 && xflag == 0) { + if (dflag == 0 && xflag == 0 && Eflag == 0) { Cflag = 1; Tflag = 1; } @@ -296,8 +296,8 @@ * Figure out how many devices we should display. */ if (nflag == 0) { - if (xflag > 0) - maxshowdevs = num_devices; + if (xflag > 0 || Eflag > 0) + maxshowdevs = num_devices; else if (oflag > 0) { if ((dflag > 0) && (Cflag == 0) && (Tflag == 0)) maxshowdevs = 5; @@ -594,7 +594,7 @@ devstats(hflag, etime, havelast); - if (xflag == 0) { + if (xflag == 0 && Eflag == 0 ) { if (Cflag > 0) cpustats(); @@ -673,7 +673,7 @@ * If xflag is set, we need a per-loop header, not a page header, so * just return. We'll print the header in devstats(). */ - if (xflag > 0) + if (xflag > 0 || Eflag > 0) return; if (Tflag > 0) @@ -763,9 +763,8 @@ printf("\n"); } if (Eflag>0) { - printf(" error device statistics "); - printf( - "device retrable non_retrible " + printf(" error device statistics\n"); + printf("device retriable non-retriable read error write error" ); printf("\n"); } @@ -819,10 +818,12 @@ cur.dinfo->devices[di].device_name, cur.dinfo->devices[di].unit_number) == -1) err(1, "asprintf"); - printf("%-8.8s %d %d ", - devname,cur.dinfo->devices[di].dev_error.retriable, - cur.dinfo->devices[di].dev_error.non_retriable); - printf("\n"); + printf("%-8.8s %-12d %-12d %-12d %-12d", + devname, cur.dinfo->devices[di].dev_error.retriable, + cur.dinfo->devices[di].dev_error.non_retriable, + cur.dinfo->devices[di].dev_error.read_error, + cur.dinfo->devices[di].dev_error.write_error); + printf("\n"); free(devname); } if (xflag > 0) { @@ -889,7 +890,7 @@ total_transfers, msdig, ms_per_transaction); - } else { + } else if ( Eflag == 0) { if (Iflag == 0) printf(" %5.2Lf %3.0Lf %5.2Lf ", kb_per_transfer, From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 11:21:18 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 62D38106566C for ; Fri, 15 Jul 2011 11:21:16 +0000 (UTC) (envelope-from oleksandr@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 11:21:16 +0000 Date: Fri, 15 Jul 2011 11:21:16 +0000 From: oleksandr@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715112116.62D38106566C@hub.freebsd.org> Cc: Subject: socsvn commit: r224268 - soc2011/oleksandr/oleksandr-head/head/sys/cam X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 11:21:18 -0000 Author: oleksandr Date: Fri Jul 15 11:21:16 2011 New Revision: 224268 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224268 Log: Add new type of error: read and write Modified: soc2011/oleksandr/oleksandr-head/head/sys/cam/cam_xpt.c Modified: soc2011/oleksandr/oleksandr-head/head/sys/cam/cam_xpt.c ============================================================================== --- soc2011/oleksandr/oleksandr-head/head/sys/cam/cam_xpt.c Fri Jul 15 11:15:57 2011 (r224267) +++ soc2011/oleksandr/oleksandr-head/head/sys/cam/cam_xpt.c Fri Jul 15 11:21:16 2011 (r224268) @@ -4142,8 +4142,9 @@ { struct cam_sim *sim; int first; + int i,num_error=0; struct devstat *device_error; - devstat_error_flags error_flag=0; + devstat_error_flags error_flag[NUMBER_TYPE_ERRORS]; /* * If the error is fatal refer it to the type of non retry able. */ @@ -4152,7 +4153,8 @@ (done_ccb->ccb_h.status_test==CAM_SCSI_STATUS_ERROR)|| (done_ccb->ccb_h.status_test==CAM_AUTOSENSE_FAIL)|| (done_ccb->ccb_h.status_test==CAM_LUN_INVALID)) { - error_flag=DEVSTAT_ERROR_NON_RETRIABLE; + error_flag[num_error]=DEVSTAT_ERROR_NON_RETRIABLE; + num_error++; } /* * If the error is not fatal refer it to the type of retry able. @@ -4163,23 +4165,38 @@ (done_ccb->ccb_h.status_test==CAM_FUNC_NOTAVAIL)|| (done_ccb->ccb_h.status_test==CAM_REQ_INVALID)|| (done_ccb->ccb_h.status_test==CAM_REQUEUE_REQ)) { - error_flag=DEVSTAT_ERROR_RETRIABLE; + error_flag[num_error]=DEVSTAT_ERROR_RETRIABLE; + num_error++; + } + /* + * If the error is write error refer it to the type of write error + */ + if ((done_ccb->ccb_h.flags==CAM_DIR_OUT)&& + (done_ccb->ccb_h.status_test!=CAM_REQ_CMP)) { + error_flag[num_error]=DEVSTAT_ERROR_WRITE_ERROR; + num_error++; + } + /* + * If the error is read error refer it to the type of read error + */ + if ((done_ccb->ccb_h.flags==CAM_DIR_IN)&& + (done_ccb->ccb_h.status_test!=CAM_REQ_CMP)) { + error_flag[num_error]=DEVSTAT_ERROR_READ_ERROR; + num_error++; } /* * If an error is present, search for an appropriate structure * in devstat and increase the corresponding counter of errors. */ - if (error_flag) { - device_error= devstat_search( - done_ccb->ccb_h.path->periph->periph_name, - done_ccb->ccb_h.path->periph->unit_number); - if (device_error!=NULL) { - devstat_start_transaction(device_error, NULL); - devstat_add_error(device_error, error_flag); - devstat_end_transaction(device_error,done_ccb->csio.dxfer_len, - DEVSTAT_TAG_ORDERED,DEVSTAT_WRITE, NULL, NULL); - } - } + for (i=0;iccb_h.path->periph->periph_name, + done_ccb->ccb_h.path->periph->unit_number); + if (device_error!=NULL) + devstat_add_error(device_error, error_flag[i]); + } + } CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("xpt_done\n")); if ((done_ccb->ccb_h.func_code & XPT_FC_QUEUED) != 0) { /* From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 11:26:00 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 4D91C106564A for ; Fri, 15 Jul 2011 11:25:58 +0000 (UTC) (envelope-from oleksandr@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 11:25:58 +0000 Date: Fri, 15 Jul 2011 11:25:58 +0000 From: oleksandr@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715112558.4D91C106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224269 - soc2011/oleksandr/oleksandr-head/head/sys/sys X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 11:26:00 -0000 Author: oleksandr Date: Fri Jul 15 11:25:58 2011 New Revision: 224269 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224269 Log: Add new type of error: read and write, in devstat Modified: soc2011/oleksandr/oleksandr-head/head/sys/sys/devicestat.h Modified: soc2011/oleksandr/oleksandr-head/head/sys/sys/devicestat.h ============================================================================== --- soc2011/oleksandr/oleksandr-head/head/sys/sys/devicestat.h Fri Jul 15 11:21:16 2011 (r224268) +++ soc2011/oleksandr/oleksandr-head/head/sys/sys/devicestat.h Fri Jul 15 11:25:58 2011 (r224269) @@ -53,7 +53,8 @@ * userland utilities to determine whether or not they are in sync with the * kernel. */ -#define DEVSTAT_VERSION 6 +#define DEVSTAT_VERSION 6 +#define NUMBER_TYPE_ERRORS 2 /* * These flags specify which statistics features are supported or not @@ -99,7 +100,9 @@ */ typedef enum { DEVSTAT_ERROR_RETRIABLE = 0x01, - DEVSTAT_ERROR_NON_RETRIABLE = 0x02 + DEVSTAT_ERROR_NON_RETRIABLE = 0x02, + DEVSTAT_ERROR_READ_ERROR = 0x03, + DEVSTAT_ERROR_WRITE_ERROR = 0x04 } devstat_error_flags; /* * These types are intended to aid statistics gathering/display programs. @@ -137,10 +140,12 @@ /* * The structure that contains the disk errors counter. */ -struct devstat_device_error { +typedef struct { int retriable; int non_retriable; -}; + int read_error; + int write_error; +} devstat_device_error; /* * XXX: Next revision should add * off_t offset[DEVSTAT_N_TRANS_FLAGS]; @@ -171,7 +176,7 @@ * Time the device was * created. */ - struct devstat_device_error dev_error; /* Disk error structure.*/ + devstat_device_error dev_error; /* Disk error structure*/ u_int32_t block_size; /* Block size, bytes */ u_int64_t tag_types[3]; /* * The number of From owner-svn-soc-all@FreeBSD.ORG Fri Jul 15 11:35:29 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 08BA9106566B for ; Fri, 15 Jul 2011 11:35:27 +0000 (UTC) (envelope-from oleksandr@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Fri, 15 Jul 2011 11:35:27 +0000 Date: Fri, 15 Jul 2011 11:35:27 +0000 From: oleksandr@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110715113527.08BA9106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r224270 - soc2011/oleksandr/oleksandr-head/head/sys/kern X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 11:35:29 -0000 Author: oleksandr Date: Fri Jul 15 11:35:26 2011 New Revision: 224270 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224270 Log: Add new type of error: read and write, in devstat Modified: soc2011/oleksandr/oleksandr-head/head/sys/kern/subr_devstat.c Modified: soc2011/oleksandr/oleksandr-head/head/sys/kern/subr_devstat.c ============================================================================== --- soc2011/oleksandr/oleksandr-head/head/sys/kern/subr_devstat.c Fri Jul 15 11:25:58 2011 (r224269) +++ soc2011/oleksandr/oleksandr-head/head/sys/kern/subr_devstat.c Fri Jul 15 11:35:26 2011 (r224270) @@ -103,7 +103,7 @@ devstat_support_flags flags, devstat_type_flags device_type, devstat_priority priority) -{ +{ struct devstatlist *devstat_head; struct devstat *ds_tmp; @@ -207,24 +207,29 @@ struct devstat * devstat_search(const char *dev_name, u_int32_t unit_number) { - struct devstatlist *devstat_head; - struct devstat *dv_error; - mtx_assert(&devstat_mutex, MA_NOTOWNED); - int status_match = 0; - devstat_head = &device_statq; - if (STAILQ_EMPTY(&device_statq)==0) { - STAILQ_FOREACH(dv_error, devstat_head, dev_links) { - if ((strcmp(dev_name,dv_error->device_name)==0)&& - (unit_number==dv_error->unit_number)) { - status_match=1; - break; - } - } - } - if (status_match) { - return (dv_error); - } else - return NULL; + struct devstatlist *devstat_head; + struct devstat *dv_error; + mtx_assert(&devstat_mutex, MA_NOTOWNED); + int status_match = 0; + devstat_head = &device_statq; + if (STAILQ_EMPTY(&device_statq)==0) { + STAILQ_FOREACH(dv_error, devstat_head, dev_links) { + if ((strcmp(dev_name,dv_error->device_name)==0)&& + (unit_number==dv_error->unit_number)) { + status_match=1; + break; + } + } + } + if (status_match) { + return (dv_error); + } else { + printf("devstat_search: HELP! " + "no appropriate device " + "for name %p unit %d\n", + dev_name, unit_number); + return NULL; + } } /* * Record a transaction start. @@ -365,15 +370,19 @@ DEVSTAT_TAG_SIMPLE, flg, NULL, &bp->bio_t0); } /* - * Increase indications counter by unit. + * Increase corresponding counter by unit. */ void devstat_add_error(struct devstat *ds, devstat_error_flags error_flag) { - if (error_flag==DEVSTAT_ERROR_RETRIABLE) - ds->dev_error.retriable++; - if (error_flag==DEVSTAT_ERROR_NON_RETRIABLE) - ds->dev_error.non_retriable++; + if (error_flag==DEVSTAT_ERROR_RETRIABLE) + ds->dev_error.retriable++; + if (error_flag==DEVSTAT_ERROR_NON_RETRIABLE) + ds->dev_error.non_retriable++; + if (error_flag==DEVSTAT_ERROR_WRITE_ERROR) + ds->dev_error.write_error++; + if (error_flag==DEVSTAT_ERROR_READ_ERROR) + ds->dev_error.read_error++; } /* * This is the sysctl handler for the devstat package. The data pushed out From owner-svn-soc-all@FreeBSD.ORG Sat Jul 16 06:05:19 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id DB0CA1065672 for ; Sat, 16 Jul 2011 06:05:16 +0000 (UTC) (envelope-from zy@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sat, 16 Jul 2011 06:05:16 +0000 Date: Sat, 16 Jul 2011 06:05:16 +0000 From: zy@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110716060516.DB0CA1065672@hub.freebsd.org> Cc: Subject: socsvn commit: r224290 - in soc2011/zy/nvi-iconv/head/contrib/nvi2: common vi X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2011 06:05:19 -0000 Author: zy Date: Sat Jul 16 06:05:16 2011 New Revision: 224290 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224290 Log: Updates to git:8ed5ed8. The frozen problem is caused by a malformed a UTF-8 file. Now we properly handles the unprintable characters. A big problem, iconv does not apply to line-oriented operations, was detected and solved. Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.h soc2011/zy/nvi-iconv/head/contrib/nvi2/common/line.c soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.h ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.h Sat Jul 16 02:13:03 2011 (r224289) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/common/conv.h Sat Jul 16 06:05:16 2011 (r224290) @@ -10,7 +10,7 @@ */ #define KEY_COL(sp, ch) \ - (INTISWIDE(ch) ? CHAR_WIDTH(sp, ch) ? CHAR_WIDTH(sp, ch) : \ + (INTISWIDE(ch) ? CHAR_WIDTH(sp, ch) > 0 ? CHAR_WIDTH(sp, ch) : \ 1 : /* extra space */ \ KEY_LEN(sp,ch)) Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/common/line.c ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/common/line.c Sat Jul 16 02:13:03 2011 (r224289) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/common/line.c Sat Jul 16 06:05:16 2011 (r224290) @@ -139,13 +139,6 @@ } /* Look-aside into the cache, and see if the line we want is there. */ - /* - * Line cache will not work if different screens view the same - * file with different encodings. - * Multiple threads accessing the same cache can be a problem as - * well. - * So, line cache is (temporarily) disabled. - */ if (0 && lno == ep->c_lno) { #if defined(DEBUG) && 0 TRACE(sp, "retrieve cached line %lu\n", (u_long)lno); @@ -287,6 +280,8 @@ { DBT data, key; EXF *ep; + char *fp; + size_t flen; int rval; #if defined(DEBUG) && 0 @@ -298,11 +293,13 @@ return (1); } + INT2FILE(sp, p, len, fp, flen); + /* Update file. */ key.data = &lno; key.size = sizeof(lno); - data.data = p; - data.size = len; + data.data = fp; + data.size = flen; SIGBLOCK; if (ep->db->put(ep->db, &key, &data, R_IAFTER) == -1) { msgq(sp, M_SYSERR, @@ -360,6 +357,8 @@ { DBT data, key; EXF *ep; + char *fp; + size_t flen; int rval; #if defined(DEBUG) && 0 @@ -372,11 +371,13 @@ return (1); } + INT2FILE(sp, p, len, fp, flen); + /* Update file. */ key.data = &lno; key.size = sizeof(lno); - data.data = p; - data.size = len; + data.data = fp; + data.size = flen; SIGBLOCK; if (ep->db->put(ep->db, &key, &data, R_IBEFORE) == -1) { msgq(sp, M_SYSERR, @@ -546,15 +547,10 @@ key.size = sizeof(lno); switch (ep->db->seq(ep->db, &key, &data, R_LAST)) { - case -1: - msgq(sp, M_SYSERR, "007|unable to get last line"); - *lnop = 0; - return (1); - case 1: + case 1: *lnop = 0; return (0); - default: - break; + case -1: alloc_err: msgq(sp, M_DBERR, "007|unable to get last line"); *lnop = 0; Modified: soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c ============================================================================== --- soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c Sat Jul 16 02:13:03 2011 (r224289) +++ soc2011/zy/nvi-iconv/head/contrib/nvi2/vi/vs_refresh.c Sat Jul 16 06:05:16 2011 (r224290) @@ -804,13 +804,13 @@ ++p; break; } - if ((curlen += KEY_COL(sp, *p)) > cols) { + if ((curlen += KEY_LEN(sp, *p)) > cols) { ellipsis = 3; curlen += - KEY_COL(sp, '.') * 3 + KEY_COL(sp, ' '); + KEY_LEN(sp, '.') * 3 + KEY_LEN(sp, ' '); while (curlen > cols) { ++p; - curlen -= KEY_COL(sp, *p); + curlen -= KEY_LEN(sp, *p); } break; } @@ -818,13 +818,13 @@ if (ellipsis) { while (ellipsis--) (void)gp->scr_addstr(sp, - KEY_NAME(sp, '.'), KEY_COL(sp, '.')); + KEY_NAME(sp, '.'), KEY_LEN(sp, '.')); (void)gp->scr_addstr(sp, - KEY_NAME(sp, ' '), KEY_COL(sp, ' ')); + KEY_NAME(sp, ' '), KEY_LEN(sp, ' ')); } for (; *p != '\0'; ++p) (void)gp->scr_addstr(sp, - KEY_NAME(sp, *p), KEY_COL(sp, *p)); + KEY_NAME(sp, *p), KEY_LEN(sp, *p)); } /* Clear the rest of the line. */ @@ -877,7 +877,7 @@ if (O_ISSET(sp, O_SHOWMODE)) { if (F_ISSET(sp->ep, F_MODIFIED)) (void)gp->scr_addstr(sp, - KEY_NAME(sp, '*'), KEY_COL(sp, '*')); + KEY_NAME(sp, '*'), KEY_LEN(sp, '*')); (void)gp->scr_addstr(sp, t, len); } } From owner-svn-soc-all@FreeBSD.ORG Sat Jul 16 10:42:54 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 47243106564A for ; Sat, 16 Jul 2011 10:42:52 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sat, 16 Jul 2011 10:42:52 +0000 Date: Sat, 16 Jul 2011 10:42:52 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110716104252.47243106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224303 - soc2011/gk/ino64-head/sys/ufs/ffs X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2011 10:42:54 -0000 Author: gk Date: Sat Jul 16 10:42:52 2011 New Revision: 224303 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224303 Log: ufs: Extract code for read-ahead read into ffs_blkatoff_ra function Modified: soc2011/gk/ino64-head/sys/ufs/ffs/ffs_extern.h soc2011/gk/ino64-head/sys/ufs/ffs/ffs_subr.c soc2011/gk/ino64-head/sys/ufs/ffs/ffs_vnops.c Modified: soc2011/gk/ino64-head/sys/ufs/ffs/ffs_extern.h ============================================================================== --- soc2011/gk/ino64-head/sys/ufs/ffs/ffs_extern.h Sat Jul 16 09:20:22 2011 (r224302) +++ soc2011/gk/ino64-head/sys/ufs/ffs/ffs_extern.h Sat Jul 16 10:42:52 2011 (r224303) @@ -56,6 +56,7 @@ int ffs_balloc_ufs2(struct vnode *a_vp, off_t a_startoffset, int a_size, struct ucred *a_cred, int a_flags, struct buf **a_bpp); int ffs_blkatoff(struct vnode *, off_t, char **, struct buf **); +int ffs_blkatoff_ra(struct vnode *, off_t, size_t, struct buf **, int); void ffs_blkfree(struct ufsmount *, struct fs *, struct vnode *, ufs2_daddr_t, long, ino_t, struct workhead *); ufs2_daddr_t ffs_blkpref_ufs1(struct inode *, ufs_lbn_t, int, ufs1_daddr_t *); Modified: soc2011/gk/ino64-head/sys/ufs/ffs/ffs_subr.c ============================================================================== --- soc2011/gk/ino64-head/sys/ufs/ffs/ffs_subr.c Sat Jul 16 09:20:22 2011 (r224302) +++ soc2011/gk/ino64-head/sys/ufs/ffs/ffs_subr.c Sat Jul 16 10:42:52 2011 (r224303) @@ -94,6 +94,75 @@ return (0); } +int +ffs_blkatoff_ra(struct vnode *vp, off_t uoffset, size_t nextread, + struct buf **bpp, int seqcount) +{ + struct inode *ip; + struct fs *fs; + struct buf *bp; + ufs_lbn_t lbn, nextlbn; + long size, blkoffset; + int error; + + ip = VTOI(vp); + fs = ip->i_fs; + lbn = lblkno(fs, uoffset); + nextlbn = lbn + 1; + + /* + * size of buffer. The buffer representing the + * end of the file is rounded up to the size of + * the block type ( fragment or full block, + * depending ). + */ + size = blksize(fs, ip, lbn); + blkoffset = blkoff(fs, uoffset); + + if (lblktosize(fs, nextlbn) >= ip->i_size) { + /* + * Don't do readahead if this is the end of the file. + */ + error = bread(vp, lbn, size, NOCRED, &bp); + } else if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) { + /* + * Otherwise if we are allowed to cluster, + * grab as much as we can. + * + * XXX This may not be a win if we are not + * doing sequential access. + */ + error = cluster_read(vp, ip->i_size, lbn, + size, NOCRED, blkoffset + nextread, seqcount, &bp); + } else if (seqcount > 1) { + /* + * If we are NOT allowed to cluster, then + * if we appear to be acting sequentially, + * fire off a request for a readahead + * as well as a read. Note that the 4th and 5th + * arguments point to arrays of the size specified in + * the 6th argument. + */ + int nextsize = blksize(fs, ip, nextlbn); + error = breadn(vp, lbn, + size, &nextlbn, &nextsize, 1, NOCRED, &bp); + } else { + /* + * Failing all of the above, just read what the + * user asked for. Interestingly, the same as + * the first option above. + */ + error = bread(vp, lbn, size, NOCRED, &bp); + } + if (error) { + brelse(bp); + bp = NULL; + return (error); + } + *bpp = bp; + return (0); +} + /* * Load up the contents of an inode and copy the appropriate pieces * to the incore copy. Modified: soc2011/gk/ino64-head/sys/ufs/ffs/ffs_vnops.c ============================================================================== --- soc2011/gk/ino64-head/sys/ufs/ffs/ffs_vnops.c Sat Jul 16 09:20:22 2011 (r224302) +++ soc2011/gk/ino64-head/sys/ufs/ffs/ffs_vnops.c Sat Jul 16 10:42:52 2011 (r224303) @@ -436,9 +436,8 @@ struct uio *uio; struct fs *fs; struct buf *bp; - ufs_lbn_t lbn, nextlbn; off_t bytesinfile; - long size, xfersize, blkoffset; + long xfersize, blkoffset; int error, orig_resid; int seqcount; int ioflag; @@ -488,16 +487,23 @@ for (error = 0, bp = NULL; uio->uio_resid > 0; bp = NULL) { if ((bytesinfile = ip->i_size - uio->uio_offset) <= 0) break; - lbn = lblkno(fs, uio->uio_offset); - nextlbn = lbn + 1; + + error = ffs_blkatoff_ra(vp, uio->uio_offset, uio->uio_resid, + &bp, seqcount); + if (error) { + MPASS(bp == NULL); + break; + } /* - * size of buffer. The buffer representing the - * end of the file is rounded up to the size of - * the block type ( fragment or full block, - * depending ). + * If IO_DIRECT then set B_DIRECT for the buffer. This + * will cause us to attempt to release the buffer later on + * and will cause the buffer cache to attempt to free the + * underlying pages. */ - size = blksize(fs, ip, lbn); + if (ioflag & IO_DIRECT) + bp->b_flags |= B_DIRECT; + blkoffset = blkoff(fs, uio->uio_offset); /* @@ -505,7 +511,7 @@ * one FS block less the amount of the data before * our startpoint (duh!) */ - xfersize = fs->fs_bsize - blkoffset; + xfersize = bp->b_bufsize - blkoffset; /* * But if we actually want less than the block, @@ -517,56 +523,6 @@ if (bytesinfile < xfersize) xfersize = bytesinfile; - if (lblktosize(fs, nextlbn) >= ip->i_size) { - /* - * Don't do readahead if this is the end of the file. - */ - error = bread(vp, lbn, size, NOCRED, &bp); - } else if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) { - /* - * Otherwise if we are allowed to cluster, - * grab as much as we can. - * - * XXX This may not be a win if we are not - * doing sequential access. - */ - error = cluster_read(vp, ip->i_size, lbn, - size, NOCRED, blkoffset + uio->uio_resid, seqcount, &bp); - } else if (seqcount > 1) { - /* - * If we are NOT allowed to cluster, then - * if we appear to be acting sequentially, - * fire off a request for a readahead - * as well as a read. Note that the 4th and 5th - * arguments point to arrays of the size specified in - * the 6th argument. - */ - int nextsize = blksize(fs, ip, nextlbn); - error = breadn(vp, lbn, - size, &nextlbn, &nextsize, 1, NOCRED, &bp); - } else { - /* - * Failing all of the above, just read what the - * user asked for. Interestingly, the same as - * the first option above. - */ - error = bread(vp, lbn, size, NOCRED, &bp); - } - if (error) { - brelse(bp); - bp = NULL; - break; - } - - /* - * If IO_DIRECT then set B_DIRECT for the buffer. This - * will cause us to attempt to release the buffer later on - * and will cause the buffer cache to attempt to free the - * underlying pages. - */ - if (ioflag & IO_DIRECT) - bp->b_flags |= B_DIRECT; - /* * We should only get non-zero b_resid when an I/O error * has occurred, which should cause us to break above. @@ -574,11 +530,10 @@ * then we want to ensure that we do not uiomove bad * or uninitialized data. */ - size -= bp->b_resid; - if (size < xfersize) { - if (size == 0) + if (bp->b_bufsize - bp->b_resid < xfersize) { + if (bp->b_bufsize == bp->b_resid) break; - xfersize = size; + xfersize = bp->b_bufsize - bp->b_resid; } error = uiomove((char *)bp->b_data + blkoffset, From owner-svn-soc-all@FreeBSD.ORG Sat Jul 16 10:43:06 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 0F003106564A for ; Sat, 16 Jul 2011 10:43:04 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sat, 16 Jul 2011 10:43:04 +0000 Date: Sat, 16 Jul 2011 10:43:04 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110716104304.0F003106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224304 - soc2011/gk/ino64-head/sys/ufs/ufs X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2011 10:43:06 -0000 Author: gk Date: Sat Jul 16 10:43:03 2011 New Revision: 224304 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224304 Log: ufs: Use buffer cache in ufs_readdir Return EINVAL if buffer is too small Skip entries with zero inode number Modified: soc2011/gk/ino64-head/sys/ufs/ufs/ufs_vnops.c Modified: soc2011/gk/ino64-head/sys/ufs/ufs/ufs_vnops.c ============================================================================== --- soc2011/gk/ino64-head/sys/ufs/ufs/ufs_vnops.c Sat Jul 16 10:42:52 2011 (r224303) +++ soc2011/gk/ino64-head/sys/ufs/ufs/ufs_vnops.c Sat Jul 16 10:43:03 2011 (r224304) @@ -2130,90 +2130,106 @@ int *a_eofflag; } */ *ap; { + struct vnode *vp = ap->a_vp; struct uio *uio = ap->a_uio; - off_t offset, startoffset; + struct buf *bp; struct inode *ip; struct direct *dp, *edp; - struct dirent dstdp; - struct uio auio; - struct iovec aiov; - caddr_t dirbuf; - int error; - size_t count, readcnt; + struct dirent *dstdp; + off_t offset, startoffset; + size_t readcnt, skipcnt; + ssize_t startresid; + int error = 0; + + if (uio->uio_offset < 0) + return (EINVAL); - ip = VTOI(ap->a_vp); + ip = VTOI(vp); if (ip->i_effnlink == 0) return (0); - count = uio->uio_resid; - /* - * Avoid complications for partial directory entries by adjusting - * the i/o to end at a block boundary. Don't give up (like the old ufs - * does) if the initial adjustment gives a negative count, since - * many callers don't supply a large enough buffer. The correct - * size is a little larger than DIRBLKSIZ to allow for expansion - * of directory entries, but some callers just use 512. - */ + offset = startoffset = uio->uio_offset; - count -= (uio->uio_offset + count) & (DIRBLKSIZ - 1); - if (count <= 0) - count += DIRBLKSIZ; - else if (count > MAXBSIZE) - count = MAXBSIZE; - - auio = *uio; - auio.uio_iov = &aiov; - auio.uio_iovcnt = 1; - auio.uio_resid = count; - auio.uio_segflg = UIO_SYSSPACE; - aiov.iov_len = count; - dirbuf = malloc(count, M_TEMP, M_WAITOK); - aiov.iov_base = dirbuf; - error = VOP_READ(ap->a_vp, &auio, 0, ap->a_cred); - if (error == 0) { - readcnt = count - auio.uio_resid; - edp = (struct direct *)&dirbuf[readcnt]; - bzero(&dstdp, offsetof(struct dirent, d_name)); - for (dp = (struct direct *)dirbuf; - !error && uio->uio_resid > 0 && dp < edp; ) { - dstdp.d_fileno = dp->d_ino; + startresid = uio->uio_resid; + dstdp = malloc(sizeof(struct dirent), M_TEMP, M_WAITOK); + while (error == 0 && uio->uio_resid > 0 && + uio->uio_offset < ip->i_size) { + error = ffs_blkatoff_ra(vp, uio->uio_offset, + startresid, &bp, 2); + if (error) + break; + if (bp->b_offset + bp->b_bcount > ip->i_size) + readcnt = ip->i_size - bp->b_offset; + else + readcnt = bp->b_bcount; + skipcnt = (size_t)(uio->uio_offset - bp->b_offset) & + ~(size_t)(DIRBLKSIZ - 1); + offset = bp->b_offset + skipcnt; + dp = (struct direct *)&bp->b_data[skipcnt]; + edp = (struct direct *)&bp->b_data[readcnt]; + while (error == 0 && uio->uio_resid > 0 && dp < edp) { + if (dp->d_reclen <= 0 || + (caddr_t)dp + dp->d_reclen > (caddr_t)edp) { + error = EIO; + break; + } + if (offset < startoffset) + goto nextentry; + #if BYTE_ORDER == LITTLE_ENDIAN - if (ap->a_vp->v_mount->mnt_maxsymlinklen <= 0) { - dstdp.d_namlen = dp->d_type; - dstdp.d_type = dp->d_namlen; + if (vp->v_mount->mnt_maxsymlinklen <= 0) { + dstdp->d_namlen = dp->d_type; + dstdp->d_type = dp->d_namlen; } else #endif { - dstdp.d_namlen = dp->d_namlen; - dstdp.d_type = dp->d_type; + dstdp->d_namlen = dp->d_namlen; + dstdp->d_type = dp->d_type; } - if (dp->d_reclen > 0 && dstdp.d_namlen <= MAXNAMLEN) { - dstdp.d_off = offset + dp->d_reclen; - dstdp.d_reclen = GENERIC_DIRSIZ(&dstdp); - bcopy(dp->d_name, dstdp.d_name, dstdp.d_namlen); - dstdp.d_name[dstdp.d_namlen] = '\0'; - if(dstdp.d_reclen > uio->uio_resid) - break; - /* advance dp */ - error = uiomove((caddr_t)&dstdp, - dstdp.d_reclen, uio); - if (error == 0) { - offset += dp->d_reclen; - dp = (struct direct *) - ((char *)dp + dp->d_reclen); - } - } else { + if (__offsetof(struct direct, d_name) + + dstdp->d_namlen > dp->d_reclen) { error = EIO; break; } + + if (dp->d_ino == 0) + goto nextentry; + + dstdp->d_fileno = dp->d_ino; + dstdp->d_off = offset + dp->d_reclen; + dstdp->d_reclen = GENERIC_DIRSIZ(dstdp); + bcopy(dp->d_name, dstdp->d_name, dstdp->d_namlen); + dstdp->d_name[dstdp->d_namlen] = '\0'; + if(dstdp->d_reclen > uio->uio_resid) { + if (uio->uio_resid == startresid) + error = EINVAL; + else + error = -1; + break; + } + /* advance dp */ + error = uiomove((caddr_t)dstdp, dstdp->d_reclen, uio); + if (error) + break; +nextentry: + offset += dp->d_reclen; + dp = (struct direct *)((caddr_t)dp + dp->d_reclen); } - /* we need to correct uio_offset */ - uio->uio_offset = startoffset + (caddr_t)dp - dirbuf; + brelse(bp); + uio->uio_offset = offset; } - free(dirbuf, M_TEMP); - if (ap->a_eofflag) - *ap->a_eofflag = VTOI(ap->a_vp)->i_size <= uio->uio_offset; + /* we need to correct uio_offset */ + if (uio->uio_resid == startresid) + uio->uio_offset = startoffset; + else + uio->uio_offset = offset; + + free(dstdp, M_TEMP); + if (error == -1) + error = 0; + if (error == 0 && ap->a_eofflag) + *ap->a_eofflag = ip->i_size <= uio->uio_offset; return (error); } From owner-svn-soc-all@FreeBSD.ORG Sat Jul 16 10:43:17 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 3834F106566B for ; Sat, 16 Jul 2011 10:43:15 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sat, 16 Jul 2011 10:43:15 +0000 Date: Sat, 16 Jul 2011 10:43:15 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110716104315.3834F106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r224305 - in soc2011/gk/ino64-head/sys: fs/nfsclient nfsclient X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2011 10:43:17 -0000 Author: gk Date: Sat Jul 16 10:43:14 2011 New Revision: 224305 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224305 Log: Fix NFS readdir offset and buffer size alignment Align read result by DIRBLKSIZ (512 bytes) Fail if buffer is less than DIRBLKSIZ Bug fixed: getdirentries() call with not DIRBLKSIZ aligned offset and/or buffer size results in file offset that doesn't start on dirent boundary. Next getdirentries() call will return garbled output. Todo: Application is still allowed to use arbitrary offsets. Unlike other filesystems NFS readdir will not "correct" offset and will fill buffer with data that doesn't start on dirent boundary. Modified: soc2011/gk/ino64-head/sys/fs/nfsclient/nfs_clbio.c soc2011/gk/ino64-head/sys/nfsclient/nfs_bio.c Modified: soc2011/gk/ino64-head/sys/fs/nfsclient/nfs_clbio.c ============================================================================== --- soc2011/gk/ino64-head/sys/fs/nfsclient/nfs_clbio.c Sat Jul 16 10:43:03 2011 (r224304) +++ soc2011/gk/ino64-head/sys/fs/nfsclient/nfs_clbio.c Sat Jul 16 10:43:14 2011 (r224305) @@ -459,6 +459,8 @@ return (0); if (uio->uio_offset < 0) /* XXX VDIR cookies can be negative */ return (EINVAL); + if (vp->v_type == VDIR && uio->uio_resid < DIRBLKSIZ) + return (EINVAL); td = uio->uio_td; mtx_lock(&nmp->nm_mtx); @@ -601,6 +603,8 @@ && uio->uio_offset >= np->n_direofoffset) { return (0); } + if (uio->uio_resid < DIRBLKSIZ) + return (0); lbn = (uoff_t)uio->uio_offset / NFS_DIRBLKSIZ; on = uio->uio_offset & (NFS_DIRBLKSIZ - 1); bp = nfs_getcacheblk(vp, lbn, NFS_DIRBLKSIZ, td); @@ -709,6 +713,9 @@ n = lmin(uio->uio_resid, NFS_DIRBLKSIZ - bp->b_resid - on); if (np->n_direofoffset && n > np->n_direofoffset - uio->uio_offset) n = np->n_direofoffset - uio->uio_offset; + else + /* Align offset. Abort if n <= 0 or resid < DIRBLKSIZ */ + n -= (uio->uio_offset + n) & (DIRBLKSIZ - 1); break; default: ncl_printf(" ncl_bioread: type %x unexpected\n", vp->v_type); Modified: soc2011/gk/ino64-head/sys/nfsclient/nfs_bio.c ============================================================================== --- soc2011/gk/ino64-head/sys/nfsclient/nfs_bio.c Sat Jul 16 10:43:03 2011 (r224304) +++ soc2011/gk/ino64-head/sys/nfsclient/nfs_bio.c Sat Jul 16 10:43:14 2011 (r224305) @@ -458,6 +458,8 @@ return (0); if (uio->uio_offset < 0) /* XXX VDIR cookies can be negative */ return (EINVAL); + if (vp->v_type == VDIR && uio->uio_resid < DIRBLKSIZ) + return (EINVAL); td = uio->uio_td; mtx_lock(&nmp->nm_mtx); @@ -594,6 +596,8 @@ && uio->uio_offset >= np->n_direofoffset) { return (0); } + if (uio->uio_resid < DIRBLKSIZ) + return (0); lbn = (uoff_t)uio->uio_offset / NFS_DIRBLKSIZ; on = uio->uio_offset & (NFS_DIRBLKSIZ - 1); bp = nfs_getcacheblk(vp, lbn, NFS_DIRBLKSIZ, td); @@ -702,6 +706,10 @@ n = lmin(uio->uio_resid, NFS_DIRBLKSIZ - bp->b_resid - on); if (np->n_direofoffset && n > np->n_direofoffset - uio->uio_offset) n = np->n_direofoffset - uio->uio_offset; + else { + /* Align offset. Abort if n <= 0 or resid < DIRBLKSIZ */ + n -= (uio->uio_offset + n) & (DIRBLKSIZ - 1); + } break; default: nfs_printf(" nfs_bioread: type %x unexpected\n", vp->v_type); From owner-svn-soc-all@FreeBSD.ORG Sat Jul 16 10:43:28 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id EF7E7106564A for ; Sat, 16 Jul 2011 10:43:25 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sat, 16 Jul 2011 10:43:25 +0000 Date: Sat, 16 Jul 2011 10:43:25 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110716104325.EF7E7106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r224306 - soc2011/gk/ino64-head/tools/regression/readdir-lint X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2011 10:43:28 -0000 Author: gk Date: Sat Jul 16 10:43:25 2011 New Revision: 224306 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=224306 Log: readdir-lint: Fix directory offset check, add minimal buffer size options Modified: soc2011/gk/ino64-head/tools/regression/readdir-lint/readdir-lint.c Modified: soc2011/gk/ino64-head/tools/regression/readdir-lint/readdir-lint.c ============================================================================== --- soc2011/gk/ino64-head/tools/regression/readdir-lint/readdir-lint.c Sat Jul 16 10:43:14 2011 (r224305) +++ soc2011/gk/ino64-head/tools/regression/readdir-lint/readdir-lint.c Sat Jul 16 10:43:25 2011 (r224306) @@ -65,6 +65,8 @@ static int opt_verbose; static int opt_skip; +static size_t opt_minsize_start = DIRSIZE_MIN; +static size_t opt_minsize_end = sizeof(struct dirent); static char *opt_path; #ifdef HAVE_DIRENT_NAMLEN @@ -75,6 +77,7 @@ static int warn_seekoff; static int warn_zerooff; #endif +static int warn_offchange; static int warn_noerr; static int warn_zeroino; static int warn_reclen; @@ -178,6 +181,7 @@ "Zero d_fileno: 0x%08jx #%ju %s", (uintmax_t)di->d_off, (uintmax_t)di->d_fileno, di->d_name); + continue; } #ifndef NO_DIRENT_OFF if (di->d_off == 0) @@ -296,15 +300,23 @@ static void test_bufsize(struct dirbuf *dir_expect, struct dirbuf *dir) { - int tests_bufsize[] = { DIRSIZE_PAGE, DIRSIZE_BLOCK, DIRSIZE_ENTRY, 0 }; - int *ip; + size_t tests_bufsize[] = { + DIRSIZE_PAGE, DIRSIZE_BLOCK, DIRSIZE_ENTRY, 0 + }; + size_t *ip; for (ip = tests_bufsize; *ip != 0; ip++) { if (opt_skip > 0) { opt_skip--; continue; } - printf("Test buffer sizes: %d -- %d\n", DIRSIZE_MAX, *ip); + if (*ip < opt_minsize_end) { + printf("Skip test buffer sizes: %zd -- %zd\n", + (size_t)DIRSIZE_MAX, *ip); + continue; + } + printf("Test buffer sizes: %zd -- %zd\n", + (size_t)DIRSIZE_MAX, *ip); dir_init(dir, opt_path, *ip); dir_seek(dir_expect, 0); dir_lint(dir_expect, dir); @@ -324,7 +336,7 @@ } printf("Test minimal buffer size (fuzzy %d)\n", fuzzy); - dir_init(dir, opt_path, DIRSIZE_ENTRY); + dir_init(dir, opt_path, opt_minsize_end); dir_seek(dir_expect, 0); dir_read(dir_expect); cnt = 0; @@ -338,15 +350,18 @@ } #endif prevoff = dir_offset(dir); - for (dir->bufsize = DIRSIZE_MIN; dir->bufsize <= DIRSIZE_ENTRY; - dir->bufsize += 4) { + for (dir->bufsize = opt_minsize_start; + dir->bufsize <= opt_minsize_end; dir->bufsize += 4) { len = dir_readx(dir); if (len <= 0) { - if (prevoff != dir_offset(dir)) - errx(2, "Directory offset changed but " + if (prevoff != dir_offset(dir)) { + WARNX(warn_offchange, + "Directory offset changed but " "no data read: 0x%08jx 0x%08jx", (uintmax_t)prevoff, (uintmax_t)dir_offset(dir)); + continue; + } if (len == 0) { WARNX(warn_noerr, "EINVAL expected for small buffer " @@ -366,7 +381,7 @@ dir->dp->d_reclen, dir->bufsize); break; } - if (dir->bufsize > DIRSIZE_ENTRY) { + if (dir->bufsize > opt_minsize_end) { errx(2, "Couldn't read entry at offset 0x%08jx", (uintmax_t)dir_offset(dir)); } @@ -384,7 +399,8 @@ static void usage(int exitcode) { - fprintf(stderr, "usage: %s directory\n", getprogname()); + fprintf(stderr, "usage: %s [-v] [-s skip] [-mM minsize] directory\n", + getprogname()); exit(exitcode); } @@ -396,8 +412,26 @@ int len, opt; long prevbase; - while ((opt = getopt(argc, argv, "hs:v")) != -1) { + while ((opt = getopt(argc, argv, "hm:M:s:v")) != -1) { switch (opt) { + case 'm': + opt_minsize_start = atoi(optarg); + if (opt_minsize_start < DIRSIZE_MIN || + opt_minsize_start % 4 != 0) { + fprintf(stderr, "invalid option argument: %s", + optarg); + return (-1); + } + break; + case 'M': + opt_minsize_end = atoi(optarg); + if (opt_minsize_end < DIRSIZE_MIN || + opt_minsize_end % 4 != 0) { + fprintf(stderr, "invalid option argument: %s", + optarg); + return (-1); + } + break; case 's': opt_skip = atoi(optarg); break; @@ -419,6 +453,8 @@ if (argc == 0) usage(1); opt_path = argv[0]; + if (opt_minsize_end < opt_minsize_start) + opt_minsize_end = opt_minsize_start; dir_init(&dir_max, opt_path, DIRSIZE_MAX); dir_read(&dir_max);