From gabor at FreeBSD.org Mon Jun 1 01:07:56 2009 From: gabor at FreeBSD.org (Gabor Kovesdan) Date: Mon Jun 1 01:08:02 2009 Subject: PERFORCE change 163218 for review Message-ID: <200906010107.n5117tRd079596@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163218 Change 163218 by gabor@gabor_server on 2009/06/01 01:07:35 - Move NLS knobs to a separate Makefile Affected files ... .. //depot/projects/soc2008/gabor_textproc/grep/Makefile#20 edit .. //depot/projects/soc2008/gabor_textproc/grep/nls/Makefile.inc#1 add Differences ... ==== //depot/projects/soc2008/gabor_textproc/grep/Makefile#20 (text+ko) ==== @@ -27,9 +27,7 @@ .endif .if !defined(WITHOUT_NLS) -NLS= es_ES.ISO8859-1 -NLS+= hu_HU.ISO8859-2 -NLS+= pt_BR.ISO8859-1 +.include "${.CURDIR}/nls/Makefile.inc" .else CFLAGS+= -DWITHOUT_NLS .endif From gabor at FreeBSD.org Mon Jun 1 01:19:08 2009 From: gabor at FreeBSD.org (Gabor Kovesdan) Date: Mon Jun 1 01:19:13 2009 Subject: PERFORCE change 163219 for review Message-ID: <200906010119.n511J6JC080404@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163219 Change 163219 by gabor@gabor_server on 2009/06/01 01:18:31 - Remove a leftover - Little changes towards WARNS=6 Affected files ... .. //depot/projects/soc2008/gabor_textproc/grep/fastgrep.c#13 edit .. //depot/projects/soc2008/gabor_textproc/grep/grep.h#49 edit .. //depot/projects/soc2008/gabor_textproc/grep/util.c#82 edit Differences ... ==== //depot/projects/soc2008/gabor_textproc/grep/fastgrep.c#13 (text+ko) ==== @@ -53,20 +53,20 @@ static void grep_revstr(unsigned char *, int); void -fgrepcomp(fastgrep_t *fg, const char *pattern) +fgrepcomp(fastgrep_t *fg, const char *pat) { int i; /* Initialize. */ - fg->len = strlen(pattern); + fg->len = strlen(pat); fg->bol = 0; fg->eol = 0; fg->reversed = 0; - fg->pattern = (unsigned char *)pattern; /* really const */ + fg->pattern = (unsigned char *)pat; /* really const */ /* Preprocess pattern. */ - for (i = 0; i <= UCHAR_MAX; i++) + for (i = 0; i <= (signed)UCHAR_MAX; i++) fg->qsBc[i] = fg->len; for (i = 1; i < fg->len; i++) fg->qsBc[fg->pattern[i]] = fg->len - i; @@ -76,7 +76,7 @@ * Returns: -1 on failure, 0 on success */ int -fastcomp(fastgrep_t *fg, const char *pattern) +fastcomp(fastgrep_t *fg, const char *pat) { int i; int bol = 0; @@ -88,28 +88,28 @@ int lastHalfDot = 0; /* Initialize. */ - fg->len = strlen(pattern); + fg->len = strlen(pat); fg->bol = 0; fg->eol = 0; fg->reversed = 0; /* Remove end-of-line character ('$'). */ - if (pattern[fg->len - 1] == '$') { + if (pat[fg->len - 1] == '$') { eol++; fg->eol = 1; fg->len--; } /* Remove beginning-of-line character ('^'). */ - if (pattern[0] == '^') { + if (pat[0] == '^') { bol++; fg->bol = 1; fg->len--; } if (fg->len >= 14 && - strncmp(pattern + fg->bol, "[[:<:]]", 7) == 0 && - strncmp(pattern + fg->bol + fg->len - 7, "[[:>:]]", 7) == 0) { + strncmp(pat + fg->bol, "[[:<:]]", 7) == 0 && + strncmp(pat + fg->bol + fg->len - 7, "[[:>:]]", 7) == 0) { fg->len -= 14; /* Word boundary is handled separately in util.c */ wflag = true; @@ -121,7 +121,7 @@ * string respectively. */ fg->pattern = grep_malloc(fg->len + 1); - memcpy(fg->pattern, pattern + bol + wflag, fg->len); + memcpy(fg->pattern, pat + bol + wflag, fg->len); fg->pattern[fg->len] = '\0'; /* Look for ways to cheat...er...avoid the full regex engine. */ @@ -280,7 +280,7 @@ * -1 on success */ static int -grep_cmp(const unsigned char *pattern, const unsigned char *data, size_t len) +grep_cmp(const unsigned char *pat, const unsigned char *data, size_t len) { int i; size_t size; @@ -295,12 +295,12 @@ if (mbstowcs(wdata, (const char *)data, size) == -1) return (-1); - if ((size = mbstowcs(NULL, (const char *)pattern, 0)) == -1) + if ((size = mbstowcs(NULL, (const char *)pat, 0)) == -1) return (-1); wpat = grep_malloc(size * sizeof(wint_t)); - if (mbstowcs(wpat, (const char *)pattern, size) == -1) + if (mbstowcs(wpat, (const char *)pat, size) == -1) return (-1); for (i = 0; i < len; i++) { if ((towlower(wpat[i]) == towlower(wdata[i])) || ((grepbehave != GREP_FIXED) && wpat[i] == L'.')) @@ -311,7 +311,7 @@ } } else { for (i = 0; i < len; i++) { - if ((pattern[i] == data[i]) || ((grepbehave != GREP_FIXED) && pattern[i] == '.')) + if ((pat[i] == data[i]) || ((grepbehave != GREP_FIXED) && pat[i] == '.')) continue; return (i); } ==== //depot/projects/soc2008/gabor_textproc/grep/grep.h#49 (text+ko) ==== @@ -146,8 +146,6 @@ void clearqueue(void); /* file.c */ -unsigned char *binbufptr; - void grep_close(struct file *f); struct file *grep_stdin_open(void); struct file *grep_open(char *path); ==== //depot/projects/soc2008/gabor_textproc/grep/util.c#82 (text+ko) ==== @@ -66,7 +66,7 @@ FTS *fts; FTSENT *p; int i, c, ok, fts_flags; - char *d, *dirname; + char *d, *dir; c = fts_flags = 0; @@ -101,8 +101,8 @@ ok = 1; if (exclflag) { d = strrchr(p->fts_path, '/'); - dirname = grep_malloc(sizeof(char) * (d - p->fts_path + 2)); - strlcpy(dirname, p->fts_path, (d - p->fts_path + 1)); + dir = grep_malloc(sizeof(char) * (d - p->fts_path + 2)); + strlcpy(dir, p->fts_path, (d - p->fts_path + 1)); for (i = 0; i < epatterns; ++i) { switch(epattern[i].type) { case FILE_PAT: @@ -114,7 +114,7 @@ } break; case DIR_PAT: - if (strstr(dirname, epattern[i].pat) != NULL) { + if (strstr(dir, epattern[i].pat) != NULL) { if (epattern[i].mode == EXCL_PAT) ok = 0; else @@ -123,7 +123,7 @@ break; } } - free(dirname); + free(dir); } if (ok) @@ -253,9 +253,6 @@ regmatch_t matches[MAX_LINE_MATCHES]; regoff_t st = 0; int c = 0, i, r = 0, m = 0; -#ifdef WITH_PCRE - int ovector[3]; -#endif if (!matchall) { /* Loop to process the whole line */ From yohanes at FreeBSD.org Mon Jun 1 03:16:15 2009 From: yohanes at FreeBSD.org (Yohanes Nugroho) Date: Mon Jun 1 03:16:27 2009 Subject: PERFORCE change 163225 for review Message-ID: <200906010316.n513G9oM091977@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163225 Change 163225 by yohanes@econa on 2009/06/01 03:15:43 many small changes Affected files ... .. //depot/projects/str91xx/doc/en_US.ISO8859-1/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/str91xx/doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/hu_HU.ISO8859-2/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/hu_HU.ISO8859-2/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/ja_JP.eucJP/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/mn_MN.UTF-8/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/str91xx/doc/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/share/pgpkeys/bcr.key#1 branch .. //depot/projects/str91xx/ports/UPDATING#2 integrate .. //depot/projects/str91xx/src/bin/cp/utils.c#2 integrate .. //depot/projects/str91xx/src/bin/rm/rm.c#2 integrate .. //depot/projects/str91xx/src/bin/sh/eval.c#2 integrate .. //depot/projects/str91xx/src/bin/sh/eval.h#2 integrate .. //depot/projects/str91xx/src/bin/sh/histedit.c#2 integrate .. //depot/projects/str91xx/src/bin/sh/main.c#2 integrate .. //depot/projects/str91xx/src/bin/sh/miscbltin.c#2 integrate .. //depot/projects/str91xx/src/bin/sh/sh.1#2 integrate .. //depot/projects/str91xx/src/bin/sh/trap.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/CHANGES#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/COPYRIGHT#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/FAQ#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/FAQ.xml#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/NSEC3-NOTES#1 branch .. //depot/projects/str91xx/src/contrib/bind9/README#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/README.idnkit#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/README.pkcs11#1 branch .. //depot/projects/str91xx/src/contrib/bind9/acconfig.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/check-tool.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/check-tool.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkconf.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkconf.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkconf.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkconf.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkzone.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkzone.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkzone.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/check/named-checkzone.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/dig.1#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/dig.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/dig.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/dig.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/dighost.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/host.1#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/host.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/host.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/host.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/include/dig/dig.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/nslookup.1#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/nslookup.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/nslookup.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dig/nslookup.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keygen.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keygen.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keygen.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-keygen.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-signzone.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-signzone.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-signzone.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssec-signzone.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssectool.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/dnssec/dnssectool.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/bind9.xsl#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/named/bind9.xsl.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/named/builtin.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/client.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/config.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/control.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/controlconf.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/convertxsl.pl#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/builtin.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/client.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/config.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/control.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/globals.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/interfacemgr.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/listenlist.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/log.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/logconf.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/lwaddr.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/lwdclient.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/lwresd.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/lwsearch.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/main.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/notify.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/ns_smf_globals.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/query.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/server.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/sortlist.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/statschannel.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/tkeyconf.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/tsigconf.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/types.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/update.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/xfrout.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/include/named/zoneconf.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/interfacemgr.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/listenlist.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/log.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/logconf.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwaddr.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwdclient.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwderror.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwdgabn.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwdgnba.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwdgrbn.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwdnoop.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwresd.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwresd.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwresd.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwresd.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/lwsearch.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/main.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/named.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/named.conf.5#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/named.conf.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/named.conf.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/named.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/named.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/notify.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/query.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/server.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/sortlist.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/statschannel.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/bin/named/tkeyconf.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/tsigconf.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/unix/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/unix/include/named/os.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/unix/os.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/update.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/xfrout.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/named/zoneconf.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/nsupdate/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/nsupdate/nsupdate.1#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/nsupdate/nsupdate.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/nsupdate/nsupdate.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/nsupdate/nsupdate.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/include/rndc/os.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc-confgen.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc-confgen.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc-confgen.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc-confgen.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.8#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.conf#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.conf.5#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.conf.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.conf.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.docbook#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/rndc.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/unix/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/unix/os.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/util.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/bin/rndc/util.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/config.guess#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/config.h.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/configure.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM-book.xml#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch01.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch02.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch03.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch04.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch05.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch06.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch07.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch08.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch09.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.ch10.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Bv9ARM.pdf#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.dig.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html#1 branch .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html#1 branch .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.dnssec-keygen.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.dnssec-signzone.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.host.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.named-checkconf.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.named-checkzone.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.named.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.nsupdate.html#1 branch .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.rndc-confgen.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.rndc.conf.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/arm/man.rndc.html#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-baba-dnsext-acl-reqts-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-daigle-napstr-04.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-danisch-dns-rr-smtp-03.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-dnsext-opcode-discover-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-durand-dnsop-dynreverse-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-2929bis-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-axfr-clarify-05.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dhcid-rr-12.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dns-name-p-s-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-2535typecode-change-06.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-bis-updates-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-experiments-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-online-signing-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-opt-in-07.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-rsasha256-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-trans-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-ds-sha256-05.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-ecc-key-07.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-interop3597-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-keyrr-key-signing-flag-12.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-mdns-43.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-nsec3-04.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-nsid-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2536bis-dsa-06.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2538bis-04.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2539bis-dhk-06.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-signed-nonexistence-requirements-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-tkey-renewal-mode-05.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-trustupdate-threshold-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-trustupdate-timers-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-tsig-sha-06.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsext-wcard-clarify-10.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-bad-dns-res-05.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-dnssec-operational-practices-08.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-inaddr-required-07.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-dns-configuration-06.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-dns-issues-11.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-transport-guidelines-01.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-key-rollover-requirements-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-respsize-02.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-dnsop-serverid-06.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-enum-e164-gstn-np-05.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-ipv6-node-requirements-08.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ietf-secsh-dns-05.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-ihren-dnsext-threshold-validation-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-kato-dnsop-local-zones-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/draft-park-ipv6-extensions-dns-pnp-00.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/draft/update#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/misc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/misc/format-options.pl#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/misc/ipv6#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/misc/migration#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/misc/options#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/misc/sort-options.pl#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/index#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1032.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1033.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1034.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1035.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1101.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1122.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1123.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1183.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1348.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1535.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1536.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1537.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1591.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1611.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1612.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1706.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1712.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1750.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1876.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1886.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1982.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1995.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc1996.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2052.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2104.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2119.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2133.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2136.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2137.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2163.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2168.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2181.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2230.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2308.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2317.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2373.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2374.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2375.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2418.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2535.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2536.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2537.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2538.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2539.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2540.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2541.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2553.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2671.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2672.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2673.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2782.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2825.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2826.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2845.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2874.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2915.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2929.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2930.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc2931.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3007.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3008.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3071.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3090.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3110.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3123.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3152.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3197.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3225.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3226.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3258.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3363.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3364.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3425.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3445.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3467.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3490.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3491.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3492.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3493.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3513.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3596.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3597.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3645.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3655.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3658.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3757.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3833.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3845.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc3901.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4025.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4033.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4034.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4035.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4074.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4159.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4193.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4255.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4343.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4367.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4398.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4408.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4431.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4470.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4634.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4641.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4648.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc4701.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc5155.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/doc/rfc/rfc952.txt#2 delete .. //depot/projects/str91xx/src/contrib/bind9/isc-config.sh.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/README#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/aclocal.m4#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/api#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/daemon.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/ftruncate.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/gettimeofday.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/mktemp.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/putenv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/readv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/setenv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/setitimer.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/strcasecmp.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/strdup.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/strerror.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/strpbrk.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/strsep.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/strtoul.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/utimes.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/bsd/writev.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/config.h.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/configure.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/dst_api.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/dst_internal.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/hmac_link.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/md5.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/md5_dgst.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/md5_locl.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/dst/support.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/arpa/inet.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/arpa/nameser.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/arpa/nameser_compat.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/fd_setsize.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/hesiod.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/irp.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/irs.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/assertions.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/ctl.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/dst.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/eventlib.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/heap.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/irpmarshall.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/list.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/logging.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/memcluster.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/misc.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/platform.h.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/isc/tree.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/netdb.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/netgroup.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/res_update.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/resolv.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/include/resolv_mt.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_addr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_cidr_ntop.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_cidr_pton.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_data.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_lnaof.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_makeaddr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_net_ntop.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_net_pton.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_neta.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_netof.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_network.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_ntoa.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_ntop.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/inet_pton.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/inet/nsap_addr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_gr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_ho.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_nw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_pr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_pw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/dns_sv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gai_strerror.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_gr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_ho.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_ng.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_nw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_pr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_pw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gen_sv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getaddrinfo.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getgrent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getgrent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gethostent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/gethostent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getnameinfo.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getnetent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getnetent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getnetgrent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getnetgrent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getprotoent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getprotoent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getpwent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getpwent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getservent.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/getservent_r.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/hesiod.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/hesiod_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_gr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_ho.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_ng.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_nw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_pr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_pw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irp_sv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irpmarshall.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irs_data.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irs_data.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/irs_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_gr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_ho.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_ng.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_nw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_pr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_pw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/lcl_sv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_gr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_ho.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_ng.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_nw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_pr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_pw.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nis_sv.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/nul_ng.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/pathnames.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/irs/util.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/assertions.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/assertions.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/base64.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/bitncmp.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/bitncmp.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ctl_clnt.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ctl_p.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ctl_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ctl_srvr.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ev_connects.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ev_files.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ev_streams.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ev_timers.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/ev_waits.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/eventlib.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/eventlib.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/eventlib_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/heap.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/heap.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/hex.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/logging.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/logging.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/logging_p.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/memcluster.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/memcluster.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/movefile.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/tree.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/isc/tree.mdoc#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/make/includes.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/make/mkdep.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/make/rules.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/mkinstalldirs#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_date.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_name.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_netint.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_parse.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_print.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_samedomain.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_sign.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_ttl.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/nameser/ns_verify.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/port/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/port/freebsd/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/port/freebsd/include/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/port/freebsd/include/sys/bitypes.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/port_after.h.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/port_before.h.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/Makefile.in#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/herror.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/mtctxres.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_comp.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_data.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_debug.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_debug.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_findzonecut.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_init.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_mkquery.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_mkupdate.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_mkupdate.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_private.h#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_query.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_send.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_sendsigned.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind/resolv/res_update.c#2 delete .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/api#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/check.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/getaddresses.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/include/bind9/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/include/bind9/check.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/include/bind9/getaddresses.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/include/bind9/version.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/bind9/version.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/acache.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/acl.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/adb.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/api#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/byaddr.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/cache.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/callbacks.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/compress.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/db.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dbiterator.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dbtable.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/diff.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dispatch.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dlz.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dnssec.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/ds.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_api.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_internal.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_lib.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_openssl.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_parse.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_parse.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/dst_result.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/forward.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/gen-unix.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/gen.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/gssapi_link.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/gssapictx.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/hmac_link.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/acache.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/acl.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/adb.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/bit.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/byaddr.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/cache.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/callbacks.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/cert.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/compress.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/db.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/dbiterator.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/dbtable.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/diff.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/dispatch.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/dlz.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/dnssec.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/ds.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/events.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/fixedname.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/forward.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/iptable.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/journal.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/keyflags.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/keytable.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/keyvalues.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/lib.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/log.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/lookup.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/master.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/masterdump.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/message.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/name.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/ncache.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/nsec.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/nsec3.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/opcode.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/order.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/peer.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/portlist.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rbt.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rcode.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdata.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdataclass.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdatalist.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdataset.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdatasetiter.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdataslab.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rdatatype.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/request.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/resolver.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/result.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/rootns.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/sdb.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/sdlz.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/secalg.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/secproto.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/soa.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/ssu.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/stats.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/tcpmsg.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/time.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/timer.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/tkey.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/tsig.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/ttl.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/types.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/validator.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/version.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/view.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/xfrin.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/zone.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/zonekey.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dns/zt.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dst/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dst/dst.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dst/gssapi.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dst/lib.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/include/dst/result.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/iptable.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/journal.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/key.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/keytable.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/lib.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/log.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/lookup.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/master.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/masterdump.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/message.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/name.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/ncache.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/nsec.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/nsec3.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/openssl_link.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/openssldh_link.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/openssldsa_link.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/opensslrsa_link.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/order.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/peer.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/portlist.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rbt.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rbtdb.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rbtdb.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rbtdb64.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rbtdb64.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rcode.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/ch_3/a_1.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/ch_3/a_1.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/cert_37.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/cert_37.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/cname_5.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/cname_5.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/dname_39.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/dname_39.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ds_43.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ds_43.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/gpos_27.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/gpos_27.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/isdn_20.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/isdn_20.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/key_25.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/key_25.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/loc_29.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/loc_29.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mb_7.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mb_7.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/md_3.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/md_3.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mf_4.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mf_4.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mg_8.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mg_8.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/minfo_14.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/minfo_14.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mr_9.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mr_9.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mx_15.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/mx_15.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ns_2.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ns_2.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nsec_47.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nsec_47.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/null_10.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/null_10.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nxt_30.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/nxt_30.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/opt_41.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/opt_41.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/proforma.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/proforma.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ptr_12.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/ptr_12.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/rp_17.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/rp_17.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/rt_21.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/rt_21.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/sig_24.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/sig_24.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/soa_6.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/soa_6.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/spf_99.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/spf_99.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/tkey_249.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/tkey_249.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/txt_16.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/txt_16.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/unspec_103.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/unspec_103.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/x25_19.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/generic/x25_19.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/hs_4/a_1.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/hs_4/a_1.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/a6_38.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/a6_38.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/a_1.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/a_1.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/apl_42.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/apl_42.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/kx_36.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/kx_36.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/px_26.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/px_26.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/srv_33.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/srv_33.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/wks_11.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/in_1/wks_11.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/rdatastructpre.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdata/rdatastructsuf.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdatalist.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdatalist_p.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdataset.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdatasetiter.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rdataslab.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/request.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/resolver.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/result.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/rootns.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/sdb.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/sdlz.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/soa.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/spnego.asn1#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/spnego.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/spnego.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/spnego_asn1.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/spnego_asn1.pl#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/ssu.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/stats.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/tcpmsg.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/time.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/timer.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/tkey.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/tsig.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/ttl.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/validator.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/version.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/view.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/xfrin.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/zone.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/zonekey.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/dns/zt.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/alpha/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/alpha/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/alpha/include/isc/atomic.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/api#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/assertions.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/base32.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/base64.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/bitstring.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/buffer.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/bufferlist.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/commandline.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/entropy.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/error.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/event.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/fsaccess.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/hash.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/heap.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/hex.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/hmacmd5.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/hmacsha.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/httpd.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/ia64/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/ia64/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/ia64/include/isc/atomic.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/app.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/assertions.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/base32.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/base64.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/bitstring.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/boolean.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/buffer.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/bufferlist.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/commandline.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/entropy.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/error.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/event.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/eventclass.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/file.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/formatcheck.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/fsaccess.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/hash.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/heap.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/hex.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/hmacmd5.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/hmacsha.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/httpd.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/interfaceiter.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/ipv6.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/iterated_hash.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/lang.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/lex.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/lfsr.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/lib.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/list.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/log.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/magic.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/md5.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/mem.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/msgcat.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/msgs.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/mutexblock.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/netaddr.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/netscope.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/ondestroy.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/os.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/parseint.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/platform.h.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/portset.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/print.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/quota.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/radix.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/random.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/ratelimiter.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/refcount.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/region.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/resource.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/result.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/resultclass.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/rwlock.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/serial.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/sha1.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/sha2.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/sockaddr.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/socket.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/stats.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/stdio.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/stdlib.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/string.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/symtab.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/task.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/taskpool.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/timer.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/types.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/util.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/version.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/include/isc/xml.h#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/inet_aton.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/inet_ntop.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/inet_pton.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/iterated_hash.c#1 branch .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/lex.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/lfsr.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/lib.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/log.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/md5.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/mem.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/mips/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/mips/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/mips/include/isc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/mips/include/isc/atomic.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/mutexblock.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/netaddr.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/netscope.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/nls/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/nls/msgcat.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/noatomic/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/noatomic/include/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/noatomic/include/isc/atomic.h#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/nothreads/Makefile.in#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/nothreads/condition.c#2 integrate .. //depot/projects/str91xx/src/contrib/bind9/lib/isc/nothreads/include/Makefile.in#2 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From yohanes at FreeBSD.org Mon Jun 1 03:59:00 2009 From: yohanes at FreeBSD.org (Yohanes Nugroho) Date: Mon Jun 1 03:59:07 2009 Subject: PERFORCE change 163226 for review Message-ID: <200906010358.n513wvB3095275@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163226 Change 163226 by yohanes@econa on 2009/06/01 03:58:52 many small updates Affected files ... .. //depot/projects/str91xx/doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#2 integrate .. //depot/projects/str91xx/doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml#2 integrate .. //depot/projects/str91xx/doc/en_US.ISO8859-1/books/porters-handbook/book.sgml#2 integrate .. //depot/projects/str91xx/doc/en_US.ISO8859-1/share/sgml/authors.ent#2 integrate .. //depot/projects/str91xx/doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/str91xx/doc/share/pgpkeys/avl.key#1 branch .. //depot/projects/str91xx/doc/share/pgpkeys/kmoore.key#1 branch .. //depot/projects/str91xx/doc/share/pgpkeys/pgpkeys-developers.sgml#2 integrate .. //depot/projects/str91xx/doc/share/pgpkeys/pgpkeys.ent#2 integrate .. //depot/projects/str91xx/doc/share/pgpkeys/zml.key#1 branch .. //depot/projects/str91xx/ports/MOVED#2 integrate .. //depot/projects/str91xx/ports/Tools/scripts/tindex#2 integrate .. //depot/projects/str91xx/src/ObsoleteFiles.inc#2 integrate .. //depot/projects/str91xx/src/UPDATING#2 integrate .. //depot/projects/str91xx/src/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c#2 integrate .. //depot/projects/str91xx/src/contrib/ee/Artistic#2 delete .. //depot/projects/str91xx/src/contrib/ee/Changes#1 branch .. //depot/projects/str91xx/src/contrib/ee/README.ee#2 integrate .. //depot/projects/str91xx/src/contrib/ee/create.make#2 integrate .. //depot/projects/str91xx/src/contrib/ee/ee.1#2 integrate .. //depot/projects/str91xx/src/contrib/ee/ee.c#2 integrate .. //depot/projects/str91xx/src/contrib/ee/ee.msg#2 integrate .. //depot/projects/str91xx/src/contrib/ee/ee_version.h#1 branch .. //depot/projects/str91xx/src/contrib/ee/new_curse.c#2 integrate .. //depot/projects/str91xx/src/contrib/netcat/nc.1#2 integrate .. //depot/projects/str91xx/src/contrib/netcat/netcat.c#2 integrate .. //depot/projects/str91xx/src/etc/mtree/BSD.include.dist#2 integrate .. //depot/projects/str91xx/src/etc/periodic/daily/460.status-mail-rejects#2 integrate .. //depot/projects/str91xx/src/include/Makefile#2 integrate .. //depot/projects/str91xx/src/lib/libc/gen/popen.c#2 integrate .. //depot/projects/str91xx/src/lib/libc/include/nss_tls.h#2 integrate .. //depot/projects/str91xx/src/lib/libc/net/nsdispatch.c#2 integrate .. //depot/projects/str91xx/src/lib/libc/net/resolver.3#2 integrate .. //depot/projects/str91xx/src/lib/libc/posix1e/acl_entry.c#2 integrate .. //depot/projects/str91xx/src/lib/libc/resolv/res_comp.c#2 integrate .. //depot/projects/str91xx/src/lib/libc/rpc/svc_dg.c#2 integrate .. //depot/projects/str91xx/src/lib/libc/rpc/svc_generic.c#2 integrate .. //depot/projects/str91xx/src/lib/libc/sys/jail.2#2 integrate .. //depot/projects/str91xx/src/lib/libusb/libusb.3#2 integrate .. //depot/projects/str91xx/src/lib/libusb/libusb20.c#2 integrate .. //depot/projects/str91xx/src/lib/libusb/libusb20.h#2 integrate .. //depot/projects/str91xx/src/lib/libusb/libusb20_int.h#2 integrate .. //depot/projects/str91xx/src/lib/libusb/libusb20_ugen20.c#2 integrate .. //depot/projects/str91xx/src/lib/libusbhid/descr.c#2 integrate .. //depot/projects/str91xx/src/libexec/rtld-elf/rtld.h#2 integrate .. //depot/projects/str91xx/src/sbin/dump/optr.c#2 integrate .. //depot/projects/str91xx/src/sbin/mount/mount.c#2 integrate .. //depot/projects/str91xx/src/sbin/mount_nfs/Makefile#2 integrate .. //depot/projects/str91xx/src/sbin/mount_nfs/mount_nfs.8#2 integrate .. //depot/projects/str91xx/src/sbin/mount_nfs/mount_nfs.c#2 integrate .. //depot/projects/str91xx/src/share/man/man3/Makefile#2 integrate .. //depot/projects/str91xx/src/share/man/man3/queue.3#2 integrate .. //depot/projects/str91xx/src/share/man/man4/Makefile#2 integrate .. //depot/projects/str91xx/src/share/man/man4/mld.4#1 branch .. //depot/projects/str91xx/src/share/man/man4/multicast.4#2 integrate .. //depot/projects/str91xx/src/share/man/man9/Makefile#2 integrate .. //depot/projects/str91xx/src/share/man/man9/fail.9#1 branch .. //depot/projects/str91xx/src/share/man/man9/rmlock.9#2 integrate .. //depot/projects/str91xx/src/share/man/man9/sx.9#2 integrate .. //depot/projects/str91xx/src/sys/arm/arm/busdma_machdep.c#2 edit .. //depot/projects/str91xx/src/sys/arm/arm/cpufunc_asm_fa526.S#2 edit .. //depot/projects/str91xx/src/sys/arm/arm/pmap.c#2 edit .. //depot/projects/str91xx/src/sys/arm/arm/vm_machdep.c#2 edit .. //depot/projects/str91xx/src/sys/arm/at91/ohci_atmelarm.c#2 delete .. //depot/projects/str91xx/src/sys/arm/conf/AVILA#2 integrate .. //depot/projects/str91xx/src/sys/arm/conf/CNS11XXNAS#2 edit .. //depot/projects/str91xx/src/sys/arm/econa/if_ece.c#2 edit .. //depot/projects/str91xx/src/sys/arm/econa/if_ece.h#2 edit .. //depot/projects/str91xx/src/sys/arm/econa/timer.c#2 edit .. //depot/projects/str91xx/src/sys/arm/include/pmap.h#2 edit .. //depot/projects/str91xx/src/sys/arm/xscale/ixp425/files.ixp425#2 integrate .. //depot/projects/str91xx/src/sys/boot/common/ufsread.c#2 integrate .. //depot/projects/str91xx/src/sys/boot/pc98/boot2/sys.c#2 integrate .. //depot/projects/str91xx/src/sys/cddl/compat/opensolaris/sys/mutex.h#2 integrate .. //depot/projects/str91xx/src/sys/cddl/compat/opensolaris/sys/rwlock.h#2 integrate .. //depot/projects/str91xx/src/sys/cddl/contrib/opensolaris/uts/common/rpc/xdr.h#2 integrate .. //depot/projects/str91xx/src/sys/compat/freebsd32/freebsd32_misc.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/linux/linux_ioctl.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/linux/linux_mib.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/ndis/subr_usbd.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_fcntl.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_ioctl.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_misc.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_resource.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_signal.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_socket.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_stat.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_stream.c#2 integrate .. //depot/projects/str91xx/src/sys/compat/svr4/svr4_sysconfig.h#2 integrate .. //depot/projects/str91xx/src/sys/conf/NOTES#2 integrate .. //depot/projects/str91xx/src/sys/conf/files#2 integrate .. //depot/projects/str91xx/src/sys/conf/files.i386#2 integrate .. //depot/projects/str91xx/src/sys/conf/kern.pre.mk#2 integrate .. //depot/projects/str91xx/src/sys/conf/options#2 integrate .. //depot/projects/str91xx/src/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c#2 integrate .. //depot/projects/str91xx/src/sys/contrib/ipfilter/netinet/ip_nat.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/ata/ata-usb.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/cfe/cfe_console.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/cxgb/cxgb_main.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/dcons/dcons_os.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/if_ndis/if_ndis_usb.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/if_ndis/if_ndisvar.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/ksyms/ksyms.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/nmdm/nmdm.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/ofw/ofw_console.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/rp/rp.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/si/si.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/pci/cmi.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/pci/cs4281.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/pci/vibes.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/pcm/sound.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/pcm/sound.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/usb/uaudio.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/sound/usb/uaudioreg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/syscons/syscons.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/syscons/sysmouse.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/uart/uart_tty.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/bluetooth/TODO.TXT#2 delete .. //depot/projects/str91xx/src/sys/dev/usb/bluetooth/ng_ubt.c#2 delete .. //depot/projects/str91xx/src/sys/dev/usb/bluetooth/ng_ubt_var.h#2 delete .. //depot/projects/str91xx/src/sys/dev/usb/bluetooth/ubtbcmfw.c#2 delete .. //depot/projects/str91xx/src/sys/dev/usb/controller/at91dci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/at91dci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/atmegadci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/atmegadci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/atmegadci_atmelarm.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/avr32dci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/avr32dci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/ehci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/ehci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/ehci_ebus.c#2 edit .. //depot/projects/str91xx/src/sys/dev/usb/controller/musb_otg.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/musb_otg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/ohci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/ohci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/uhci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/uhci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/usb_controller.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/uss820dci.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/controller/uss820dci.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/input/uhid.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/input/ukbd.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/input/ums.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/misc/udbp.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/misc/ufm.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_aue.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_auereg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_axe.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_axereg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_cdce.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_cdcereg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_cue.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_cuereg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_kue.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_kuereg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_rue.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_ruereg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_udav.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/if_udavreg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/usb_ethernet.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/net/usb_ethernet.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/quirk/usb_quirk.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/u3g.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uark.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/ubsa.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/ubser.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uchcom.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/ucycom.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/ufoma.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uftdi.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/ugensa.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uipaq.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/ulpt.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/umct.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/umodem.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/umoscom.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uplcom.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/usb_serial.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/usb_serial.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uslcom.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uvisor.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/serial/uvscom.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/storage/umass.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/storage/urio.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/storage/ustorage_fs.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/template/usb_template.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/template/usb_template.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/template/usb_template_cdce.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/template/usb_template_msc.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/template/usb_template_mtp.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_bus.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_busdma.c#3 edit .. //depot/projects/str91xx/src/sys/dev/usb/usb_busdma.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_cdc.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_compat_linux.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_compat_linux.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_controller.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_core.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_debug.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_debug.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_dev.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_dev.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_device.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_device.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_dynamic.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_dynamic.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_generic.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_generic.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_handle_request.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_hid.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_hid.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_hub.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_hub.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_ioctl.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_lookup.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_lookup.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_mbuf.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_mbuf.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_msctest.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_msctest.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_parse.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_parse.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_process.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_process.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_request.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_request.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_transfer.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_transfer.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usb_util.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usbdevs#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/usbhid.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_rum.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_rumvar.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_uath.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_uathvar.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_upgt.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_upgtvar.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_ural.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_uralvar.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_urtw.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_urtwvar.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_zyd.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/usb/wlan/if_zydreg.h#2 integrate .. //depot/projects/str91xx/src/sys/dev/xen/console/console.c#2 integrate .. //depot/projects/str91xx/src/sys/dev/xen/netfront/netfront.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/nfs/nfs_commonport.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/nfs/nfsport.h#2 integrate .. //depot/projects/str91xx/src/sys/fs/nfsclient/nfs_clbio.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/nfsclient/nfs_clnode.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/procfs/procfs_status.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/pseudofs/pseudofs_vnops.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/smbfs/smbfs_io.c#2 integrate .. //depot/projects/str91xx/src/sys/fs/tmpfs/tmpfs_vnops.c#2 integrate .. //depot/projects/str91xx/src/sys/i386/include/xen/xen_clock_util.h#1 branch .. //depot/projects/str91xx/src/sys/i386/xen/clock.c#2 integrate .. //depot/projects/str91xx/src/sys/i386/xen/xen_clock_util.c#1 branch .. //depot/projects/str91xx/src/sys/i386/xen/xen_rtc.c#1 branch .. //depot/projects/str91xx/src/sys/ia64/ia64/mp_machdep.c#2 integrate .. //depot/projects/str91xx/src/sys/ia64/ia64/ssc.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/init_main.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_cpuset.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_descrip.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_exit.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_fail.c#1 branch .. //depot/projects/str91xx/src/sys/kern/kern_fork.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_jail.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_linker.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_mib.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_mutex.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_osd.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_proc.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_prot.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_rmlock.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_rwlock.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/kern_sx.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/sysv_msg.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/sysv_sem.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/sysv_shm.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/tty.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/tty_pts.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/vfs_bio.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/vfs_lookup.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/vfs_mount.c#3 integrate .. //depot/projects/str91xx/src/sys/kern/vfs_subr.c#2 integrate .. //depot/projects/str91xx/src/sys/kern/vfs_syscalls.c#2 integrate .. //depot/projects/str91xx/src/sys/legacy/dev/ata/ata-usb.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/sound/usb/uaudio.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/sound/usb/uaudio.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/sound/usb/uaudio_pcm.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/sound/usb/uaudioreg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/FILES#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/dsbr100io.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehci.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehci_ddb.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehci_ixp4xx.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehci_mbus.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehci_pci.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehcireg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ehcivar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/hid.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/hid.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/if_urtw.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/if_urtwreg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/if_urtwvar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ohci.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ohci_pci.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ohcireg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ohcivar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/rio500_usb.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/rt2573_ucode.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/sl811hs.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/sl811hsreg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/sl811hsvar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/slhci_pccard.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/u3g.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uark.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ubsa.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ubser.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ubser.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uchcom.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ucom.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ucomvar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ucycom.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/udbp.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/udbp.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ufm.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ufoma.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uftdi.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uftdireg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ugen.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ugraphire_rdesc.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uhci.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uhci_pci.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uhcireg.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uhcivar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uhid.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uhub.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uipaq.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ukbd.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ulpt.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/umass.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/umct.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/umodem.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/ums.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uplcom.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/urio.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_if.m#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_mem.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_mem.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_port.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_quirks.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_quirks.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usb_subr.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbcdc.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbdi.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbdi.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbdi_util.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbdi_util.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbdivar.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/usbhid.h#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uscanner.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uslcom.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uvisor.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uvscom.c#2 delete .. //depot/projects/str91xx/src/sys/legacy/dev/usb/uxb360gp_rdesc.h#2 delete .. //depot/projects/str91xx/src/sys/modules/Makefile#2 integrate .. //depot/projects/str91xx/src/sys/modules/netgraph/bluetooth/ubt/Makefile#2 integrate .. //depot/projects/str91xx/src/sys/modules/netgraph/bluetooth/ubtbcmfw/Makefile#2 integrate .. //depot/projects/str91xx/src/sys/modules/nfscl/Makefile#1 branch .. //depot/projects/str91xx/src/sys/modules/nfscommon/Makefile#1 branch .. //depot/projects/str91xx/src/sys/modules/nfsd/Makefile#1 branch .. //depot/projects/str91xx/src/sys/modules/usb/Makefile#2 integrate .. //depot/projects/str91xx/src/sys/modules/zfs/Makefile#2 integrate .. //depot/projects/str91xx/src/sys/net/pfil.h#2 integrate .. //depot/projects/str91xx/src/sys/net/rtsock.c#2 integrate .. //depot/projects/str91xx/src/sys/netgraph/bluetooth/drivers/ubt/TODO#2 delete .. //depot/projects/str91xx/src/sys/netinet/in_pcb.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet/tcp_input.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet/udp_usrreq.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/icmp6.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/in6.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/in6.h#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/in6_ifattach.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/in6_mcast.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/in6_pcb.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/ip6_input.c#2 integrate .. //depot/projects/str91xx/src/sys/netinet6/mld6.c#2 integrate .. //depot/projects/str91xx/src/sys/nfsclient/nfs_bio.c#2 integrate .. //depot/projects/str91xx/src/sys/nfsserver/nfs_srvsock.c#2 integrate .. //depot/projects/str91xx/src/sys/rpc/xdr.h#2 integrate .. //depot/projects/str91xx/src/sys/security/mac/mac_framework.c#2 integrate .. //depot/projects/str91xx/src/sys/security/mac_bsdextended/mac_bsdextended.c#2 integrate .. //depot/projects/str91xx/src/sys/sun4v/sun4v/hvcons.c#2 integrate .. //depot/projects/str91xx/src/sys/sys/cpuset.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/fail.h#1 branch .. //depot/projects/str91xx/src/sys/sys/jail.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/mount.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/namei.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/param.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/queue.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/rmlock.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/sx.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/syscallsubr.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/systm.h#2 integrate .. //depot/projects/str91xx/src/sys/sys/tty.h#2 integrate .. //depot/projects/str91xx/src/sys/ufs/ufs/ufs_vnops.c#2 integrate .. //depot/projects/str91xx/src/sys/vm/vm_object.c#2 integrate .. //depot/projects/str91xx/src/sys/vm/vm_page.c#2 edit .. //depot/projects/str91xx/src/sys/vm/vm_page.h#2 edit .. //depot/projects/str91xx/src/sys/vm/vm_pageout.c#2 integrate .. //depot/projects/str91xx/src/sys/xdr/xdr_mem.c#2 integrate .. //depot/projects/str91xx/src/sys/xen/xenbus/xenbus_xs.c#2 integrate .. //depot/projects/str91xx/src/tools/regression/file/flock/Makefile#2 integrate .. //depot/projects/str91xx/src/tools/regression/file/flock/flock.c#2 integrate .. //depot/projects/str91xx/src/tools/regression/vfs/trailing_slash.t#2 integrate .. //depot/projects/str91xx/src/usr.bin/ee/Makefile#2 integrate .. //depot/projects/str91xx/src/usr.bin/ee/nls/de_DE.ISO8859-1/ee.msg#2 integrate .. //depot/projects/str91xx/src/usr.bin/ee/nls/fr_FR.ISO8859-1/ee.msg#2 integrate .. //depot/projects/str91xx/src/usr.bin/ee/nls/pl_PL.ISO8859-2/ee.msg#2 integrate .. //depot/projects/str91xx/src/usr.bin/ee/nls/ru_RU.KOI8-R/ee.msg#2 integrate .. //depot/projects/str91xx/src/usr.bin/ee/nls/uk_UA.KOI8-U/ee.msg#2 integrate .. //depot/projects/str91xx/src/usr.bin/kdump/mkioctls#2 integrate .. //depot/projects/str91xx/src/usr.bin/killall/killall.1#2 integrate .. //depot/projects/str91xx/src/usr.bin/killall/killall.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/perror/perror.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/amd64-fbsd.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/amd64-fbsd32.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/amd64-linux32.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/i386-fbsd.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/i386-linux.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/ia64-fbsd.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/mips-fbsd.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/powerpc-fbsd.c#2 integrate .. //depot/projects/str91xx/src/usr.bin/truss/sparc64-fbsd.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/ifmcstat/ifmcstat.8#2 integrate .. //depot/projects/str91xx/src/usr.sbin/ifmcstat/ifmcstat.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jail/jail.8#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jail/jail.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jexec/Makefile#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jexec/jexec.8#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jexec/jexec.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jls/Makefile#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jls/jls.8#2 integrate .. //depot/projects/str91xx/src/usr.sbin/jls/jls.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/mountd/exports.5#2 integrate .. //depot/projects/str91xx/src/usr.sbin/mountd/mountd.8#2 integrate .. //depot/projects/str91xx/src/usr.sbin/mountd/mountd.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/nfsd/nfsd.8#2 integrate .. //depot/projects/str91xx/src/usr.sbin/nfsd/nfsd.c#2 integrate .. //depot/projects/str91xx/src/usr.sbin/usbconfig/usbconfig.8#2 integrate .. //depot/projects/str91xx/www/en/developers.sgml#2 integrate .. //depot/projects/str91xx/www/hu/share/sgml/news.xml#2 integrate .. //depot/projects/str91xx/www/share/sgml/news.xml#2 integrate Differences ... ==== //depot/projects/str91xx/doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#2 (text+ko) ==== @@ -1,4 +1,4 @@ - + + + 702102 + May 28, 2009 + 7.2-STABLE after MFC of the + fdopendir function. + + + 800000 October 11, 2007 8.0-CURRENT. Separating wide and single byte @@ -13113,6 +13120,40 @@ 8.0-CURRENT after adding UDP control block support. + + 800090 + May 23, 2009 + 8.0-CURRENT after virtualizing interface + cloning. + + + 800091 + May 27, 2009 + 8.0-CURRENT after adding hierarchical jails + and removing global securelevel. + + + + 800092 + May 29, 2009 + 8.0-CURRENT after chaning + sx_init_flags() KPI. The + SX_ADAPTIVESPIN is retired and + a new SX_NOADAPTIVE flag is + introduced in order to handle the reversed logic. + + + + 800093 + May 30, 2009 + 8.0-CURRENT after changing the polling KPI. + The polling handlers now return the number of packets + processed. A new + IFCAP_POLLING_NOCOUNT is also + introduced to specify that the return value is + not significant and the counting should be + skipped. + ==== //depot/projects/str91xx/doc/en_US.ISO8859-1/share/sgml/authors.ent#2 (text+ko) ==== @@ -13,7 +13,7 @@ builds for the other languages, and we will poke fun of you in public. - $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.480 2009/05/27 12:53:08 kmoore Exp $ + $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.483 2009/05/29 16:10:25 bcr Exp $ --> aaron@FreeBSD.org"> @@ -96,6 +96,8 @@ avg@FreeBSD.org"> +avl@FreeBSD.org"> + awebster@pubnix.net"> az@FreeBSD.org"> @@ -108,6 +110,8 @@ bbraun@FreeBSD.org"> +bcr@FreeBSD.org"> + bde@FreeBSD.org"> bean@FreeBSD.org"> @@ -1176,5 +1180,7 @@ zec@FreeBSD.org"> +zml@FreeBSD.org"> + znerd@FreeBSD.org"> ==== //depot/projects/str91xx/doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml#2 (text+ko) ==== @@ -2,8 +2,8 @@ The FreeBSD Documentation Project The FreeBSD Japanese Documentation Project - Original revision: 1.448 - $FreeBSD: doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml,v 1.70 2009/04/11 15:43:29 hrs Exp $ + Original revision: 1.464 + $FreeBSD: doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml,v 1.72 2009/05/30 03:19:12 hrs Exp $ --> @@ -44,22 +44,9 @@
- BSD Mall (Daemon News ±¿±Ä) - PO Box 161 - Nauvoo, IL 62354 - USA - ÅÅÏÃ: +1 866 273-6255 - Fax: +1 217 453-9956 - Email: sales@bsdmall.com - WWW: -
-
- - -
FreeBSD Mall, Inc. - 3623 Sanford Street - Concord, CA 94520-1405 + 700 Harvest Park Ste F + Brentwood, CA 94513 USA ÅÅÏÃ: +1 925 240-6652 Fax: +1 925 674-0821 @@ -139,6 +126,17 @@
+ LinuxCenter.Kz + Ust-Kamenogorsk + Kazakhstan + ÅÅÏÃ: +7-705-501-6001 + Email: info@linuxcenter.kz + WWW: +
+
+ + +
LinuxCenter.Ru Galernaya Street, 55 Saint-Petersburg @@ -262,19 +260,40 @@ &chap.mirrors.ftp.inc; + + BitTorrent + + + BitTorrent + + + BitTorrent ¤ò»È¤Ã¤Æ¡¢¥ê¥ê¡¼¥¹ CD ¤Î ISO ¥¤¥á¡¼¥¸¤ò¥À¥¦¥ó¥í¡¼¥É¤Ç¤­¤Þ¤¹¡£ + ISO ¥¤¥á¡¼¥¸¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤¿¤á¤Î torrent ¥Õ¥¡¥¤¥ë¤Ï http://torrents.freebsd.org:8080 + ¤Ë¤ÆÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ + + BitTorrent ¥¯¥é¥¤¥¢¥ó¥È¥½¥Õ¥È¤Ï¡¢ + net-p2p/py-bittorrent port + ¤Þ¤¿¤Ï¥³¥ó¥Ñ¥¤¥ëºÑ¤ß¤Î package ¤È¤·¤ÆÆþ¼ê¤Ç¤­¤Þ¤¹¡£ + + BitTorrent ¤òÍѤ¤¤Æ¥À¥¦¥ó¥í¡¼¥É¤·¤¿ ISO ¥¤¥á¡¼¥¸¤ò¡¢ + ¤ÇÀâÌÀ¤µ¤ì¤Æ¤¤¤ë burncd ¤ò»È¤Ã¤Æ + CD ¤ä DVD ¥á¥Ç¥£¥¢¤Ë½ñ¤­¹þ¤á¤Þ¤¹¡£ + + Anonymous CVS - - CVS - anonymous - - Ìõ: &a.jp.sugimura;¡¢1998 ǯ 7 ·î 19 Æü <anchor id="anoncvs-intro">ƳÆþ + + CVS + anonymous + + Anonymous CVS (¤â¤·¤¯¤Ï¡¢anoncvs ¤È¤·¤ÆÃΤé¤ì¤Æ¤¤¤Þ¤¹) ¤ÏÎ¥¤ì¤¿¤È¤³¤í¤Ë¤¢¤ë CVS ¥ê¥Ý¥¸¥È¥ê¤ÈƱ´ü¤ò¼è¤ë¤¿¤á¤Ë FreeBSD ¤ËÉÕ°¤·¤Æ¤¤¤ë CVS @@ -468,6 +487,7 @@ &prompt.user; setenv CVSROOT :pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs &prompt.user; cvs login ¥×¥í¥ó¥×¥È¤¬É½¼¨¤µ¤ì¤¿¤é¡¢password ¤ËǤ°Õ¤Îñ¸ì¤òÆþÎϤ·¤Þ¤¹¡£ +&prompt.user; cvs co modules &prompt.user; more modules/modules @@ -2395,188 +2415,6 @@ - - Portsnap ¤ò»È¤¦ - - - ¤Ï¤¸¤á¤Ë - - Portsnap ¤Ï &os; port - ¥Ä¥ê¡¼¤ò°ÂÁ´¤ËÇÛÉÛ¤¹¤ë¥·¥¹¥Æ¥à¤Ç¤¹¡£ - Ìó°ì»þ´ÖËè¤Ë port ¥Ä¥ê¡¼¤Î ¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È ¤¬ºîÀ®¤µ¤ì¡¢ - °µ½Ì¤µ¤ì¡¢ÅŻҽð̾¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ - ºîÀ®¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ï HTTP ·Ðͳ¤ÇÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ - - CVSup ƱÍÍ¡¢ - Portsnap ¤Ï¡¢¹¹¿·¤Ë - pull ¥â¥Ç¥ë¤òºÎÍѤ·¤Æ¤¤¤Þ¤¹¡£ - °µ½Ì¤µ¤ì¡¢ÅŻҽð̾¤µ¤ì¤¿ ports ¥Ä¥ê¡¼¤Ï web ¥µ¡¼¥Ð¤ËÃÖ¤«¤ì¡¢ - ¥µ¡¼¥Ð¤Ï¥¯¥é¥¤¥¢¥ó¥È¤«¤é¤Î¹¹¿·¤ÎÍ×µá¤ò¼õ¤±¿È¤Î¾õÂÖ¤ÇÂÔ¤Á¤Þ¤¹¡£ - ¥æ¡¼¥¶¤Ï¡¢&man.portsnap.8; - ¤ò¼êư¤Ç¼Â¹Ô¤·¤Æ¹¹¿·¤ò¤ª¤³¤Ê¤¦¤«¡¢&man.cron.8; - ¥¸¥ç¥Ö¤òÀßÄꤷ¤ÆÄê´üŪ¤Ë¼«Æ°¼Â¹Ô¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£ - - µ»½ÑŪ¤ÊÍýͳ¤«¤é¡¢Portsnap ¤Ï - live port ¥Ä¥ê¡¼ (/usr/ports/) - ¤òľÀܹ¹¿·¤·¤Þ¤»¤ó¡£ - ¤½¤Î¤«¤ï¤ê°µ½Ì¤µ¤ì¤¿ port ¥Ä¥ê¡¼¤Î¥³¥Ô¡¼¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç - /var/db/portsnap/ ¤ËÊݸ¤µ¤ì¤Þ¤¹¡£ - ¤³¤Î°µ½Ì¤µ¤ì¤¿¥³¥Ô¡¼¤Ï live port ¥Ä¥ê¡¼¤Î¹¹¿·¤Ë»È¤ï¤ì¤Þ¤¹¡£ - - - Ports Collection ¤«¤é¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿ - Portsnap ¤Ç¤Ï¡¢ - °µ½Ì¤µ¤ì¤¿¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤Ï /var/db/portsnap/ - ¤Ç¤Ï¤Ê¤¯ /usr/local/portsnap/ ¤ËÊݸ¤µ¤ì¤Þ¤¹¡£ - - - - - ¥¤¥ó¥¹¥È¡¼¥ë - - &os; 6.0 °Ê¹ß¤Ç¤Ï¡¢ - Portsnap ¤Ï¡¢&os; ¤Î¥Ù¡¼¥¹¥·¥¹¥Æ¥à¤Ë¤¢¤ê¤Þ¤¹¡£ - ¸Å¤¤¥·¥¹¥Æ¥à¤ò»È¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ë¤Ï¡¢ - ports-mgmt/portsnap - package ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¯¤À¤µ¤¤¡£ - - - - Portsnap ¤ÎÀßÄê - - Portsnap ¤Îưºî¤Ï¡¢ - /etc/portsnap.conf ¤ÇÀßÄê¤Ç¤­¤Þ¤¹¡£ - ¤Û¤È¤ó¤É¤Î¥æ¡¼¥¶¤Ë¤È¤Ã¤Æ¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤ÎÀßÄê¤Ç½½Ê¬¤Ç¤·¤ç¤¦¡£ - ¾ÜºÙ¤Ï &man.portsnap.conf.5; ¥Þ¥Ë¥å¥¢¥ë¥Ú¡¼¥¸¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£ - - - Ports Collection ¤«¤é¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿ - Portsnap ¤Ç¤Ï¡¢ÀßÄê¥Õ¥¡¥¤¥ë¤Ï - /etc/portsnap.conf ¤Ç¤Ï¤Ê¤¯¡¢ - /usr/local/etc/portsnap.conf ¤È¤Ê¤ê¤Þ¤¹¡£ - ¤³¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤Ï¡¢port ¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Ë¤ÏºîÀ®¤µ¤ì¤Þ¤»¤ó¡£ - ÀßÄê¥Õ¥¡¥¤¥ë¤Î¥µ¥ó¥×¥ë¤¬ÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¤Î¤Ç¡¢ - °Ê²¼¤Î¥³¥Þ¥ó¥É¤Ç¥³¥Ô¡¼¤·¤Æ¤¯¤À¤µ¤¤¡£ - - &prompt.root; cd /usr/local/etc && cp portsnap.conf.sample portsnap.conf - - - - - ½é¤á¤Æ <application>Portsnap</application> ¤ò»È¤¦ - - ½é¤á¤Æ &man.portsnap.8; ¤ò»È¤¦»þ¤Ï¡¢ - ¤Þ¤º¡¢°µ½Ì¤µ¤ì¤¿Á´ ports ¥Ä¥ê¡¼¤Î¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È - (2006 ǯ¤Î½é¤á¤Î»þÅÀ¤ÇÌó 41 MB) ¤ò - /var/db/portsnap/ - (Ports Collection ¤«¤é Portsnap - ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿¾ì¹ç¤Ï¡¢/usr/local/portsnap/) - ¤Ë¥À¥¦¥ó¥í¡¼¥É¤·¤Æ¤¯¤À¤µ¤¤¡£ - - &prompt.root; portsnap fetch - - °µ½Ì¤µ¤ì¤¿¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤ò¥À¥¦¥ó¥í¡¼¥É¤·¤¿¤é¡¢ - ports ¥Ä¥ê¡¼¤Î¥³¥Ô¡¼¤ò /usr/ports/ ¤ËŸ³«¤·¤Þ¤¹¡£ - ¤â¤·¡¢¤¹¤Ç¤Ë¾¤ÎÊýË¡ (Î㤨¤Ð¡¢CVSup ¤Ê¤É) - ¤Ë¤è¤Ã¤Æ ports ¥Ä¥ê¡¼¤¬¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËºîÀ®¤µ¤ì¤Æ¤¤¤¿¤È¤·¤Æ¤â¡¢ - ¤³¤Îºî¶È¤ò¹Ô¤Ê¤Ã¤Æ¤¯¤À¤µ¤¤¡£ - portsnap ¤¬ ports - ¥Ä¥ê¡¼¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤¹¤ëºÝ¤Ë¡¢ - ¤É¤ÎÉôʬ¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤¹¤Ù¤­¤«¤òȽÃǤǤ­¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Ç¤¹¡£ - - &prompt.root; portsnap extract - - - ¥Ç¥Õ¥©¥ë¥È¤Î¥¤¥ó¥¹¥È¡¼¥ë¾õÂ֤Ǥϡ¢ - /usr/ports - ¤ÏºîÀ®¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£ - &os; 6.0-RELEASE ¤ò»È¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢ - portsnap ¤ò¼Â¹Ô¤¹¤ëÁ°¤ËºîÀ®¤·¤Æ¤ª¤¤¤Æ¤¯¤À¤µ¤¤¡£ - ºÇ¶á¤Î &os; ¤ä Portsnap - ¤ò»È¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢ - ½é¤á¤Æ portsnap - ¥³¥Þ¥ó¥É¤ò»È¤Ã¤¿»þ¤Ë¼«Æ°Åª¤ËºîÀ®¤µ¤ì¤ë¤Ç¤·¤ç¤¦¡£ - - - - - ports ¥Ä¥ê¡¼¤Î¥¢¥Ã¥×¥Ç¡¼¥È - - °µ½Ì¤µ¤ì¤¿ ports ¥Ä¥ê¡¼¤Î¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤ò¥À¥¦¥ó¥í¡¼¥É¤·¡¢ - /usr/ports/ ¤ËŸ³«¤·¤¿¸å¤Ï¡¢ - Æó¤Ä¤Îºî¶È¤Ç ports ¥Ä¥ê¡¼¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Þ¤¹¡£ - ¤Þ¤º¡¢ºÇ¿·¤Î°µ½Ì¤µ¤ì¤¿¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤ò - ¥À¥¦¥ó¥í¡¼¥É ¤·¤Þ¤¹¡£ - ¤½¤Î¸å¡¢¥À¥¦¥ó¥í¡¼¥É¤·¤¿¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤òÍѤ¤¤Æ - ports ¥Ä¥ê¡¼¤ò ¥¢¥Ã¥×¥Ç¡¼¥È ¤·¤Þ¤¹¡£ - ¤³¤ÎÆó¤Ä¤Îºî¶È¤Ï¡¢portsnap - ¤Î°ì¤Ä¤Î¥³¥Þ¥ó¥É¤Ç¼Â¹Ô¤Ç¤­¤Þ¤¹¡£ - - &prompt.root; portsnap fetch update - - - ¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î portsnap - ¤Ç¤Ï¤³¤Î¹½Ê¸¤Ï»È¤¨¤Þ¤»¤ó¡£ - ¼ºÇÔ¤·¤¿¾ì¹ç¤Ï¡¢°Ê²¼¤ò»î¤·¤Æ¤¯¤À¤µ¤¤¡£ - - &prompt.root; portsnap fetch -&prompt.root; portsnap update - - - - - cron ¤Ç Portsnap ¤òư¤«¤¹ - - Portsnap ¥µ¡¼¥Ð¤Ë¥¢¥¯¥»¥¹¤¬½¸Ã椹¤ë - flash crowds ¤òÈò¤±¤ë¤¿¤á¡¢ - &man.cron.8; ¥¸¥ç¥Ö¤Ç portsnap fetch - ¤Ïư¤«¤Ê¤¤¤Ç¤·¤ç¤¦¡£ - ¤½¤ÎÂå¤ï¤ê¡¢portsnap cron - ¤È¤¤¤¦ÆÃÊ̤ʥ³¥Þ¥ó¥É¤¬¤¢¤ê¤Þ¤¹¡£ - ¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢3600 Éäδ֤Υé¥ó¥À¥à¤Ê»þ´Ö¤Î¸å¤Ë - ¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤Î¥À¥¦¥ó¥í¡¼¥É¤ò³«»Ï¤·¤Þ¤¹¡£ - - ¤Þ¤¿¡¢cron ¥¸¥ç¥Ö¤Ç - portsnap update ¤ò¼Â¹Ô¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£ - port ¤Î¹½Ãۤ⤷¤¯¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤ÈƱ»þ¤Ë¼Â¹Ô¤·¤Æ¤·¤Þ¤¦¤È¡¢ - ½ÅÂç¤ÊÌäÂê¤ò°ú¤­µ¯¤³¤¹¸¶°ø¤È¤Ê¤ë¤«¤é¤Ç¤¹¡£ - ¤·¤«¤·¡¢ ¥Õ¥é¥°¤ò¤Ä¤±¤Æ - portsnap ¤ò¼Â¹Ô¤¹¤ë¤³¤È¤Ç¡¢ - ports ¤Î INDEX - ¥Õ¥¡¥¤¥ë¤ò°ÂÁ´¤Ë¥¢¥Ã¥×¥Ç¡¼¥È¤Ç¤­¤Þ¤¹¡£ - (cron ¥¸¥ç¥Ö¤Ç - portsnap -I update ¤ò¼Â¹Ô¤·¤¿¾ì¹ç¤Ï¡¢ - ¤¢¤È¤Ç¥Ä¥ê¡¼¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤¹¤ë¤¿¤á¤Ë¡¢ - portsnap update ¤ò - ¥Õ¥é¥°¤ò³°¤·¤Æ¼Â¹Ô¤¹¤ëɬÍפ¬¤¢¤ë¤Ç¤·¤ç¤¦¡£) - - °Ê²¼¤Î¹Ô¤ò /etc/crontab ¤Ë²Ã¤¨¤ë¤È¡¢ - portsnap ¤Ï°µ½Ì¤µ¤ì¤¿¥¹¥Ê¥Ã¥×¥·¥ç¥Ã¥È¤ä - /usr/ports/ ¤Î INDEX - ¥Õ¥¡¥¤¥ë¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Þ¤¹¡£ - ¤â¤·¡¢¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿ ports ¤ÎÃæ¤Ç¸Å¤¯¤Ê¤Ã¤¿¤â¤Î¤¬¤¢¤ì¤Ð¡¢ - ¥á¡¼¥ë¤ÇÃΤ餻¤Æ¤¯¤ì¤Þ¤¹¡£ - - 0 3 * * * root portsnap -I cron update && pkg_version -vIL= - - - ¥·¥¹¥Æ¥à¤Î»þ¹ï¤¬¥í¡¼¥«¥ë»þ´Ö¤ËÀßÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢ - Portsnap ¥µ¡¼¥Ð¤Ø¤ÎÉé²Ù¤òʬ»¶¤µ¤»¤ë¤¿¤á¡¢ - ¾å¤Î¹Ô¤Î 3 ¤ò - 0 ¤«¤é 23 ¤Î´Ö¤Î¥é¥ó¥À¥à¤ÊÃͤËÃÖ¤­¤«¤¨¤Æ¤¯¤À¤µ¤¤¡£ - - - ¸Å¤¤ÈǤΠportsnap ¤Ç¤Ï¡¢ - (cron update ¤Î¤è¤¦¤Ë) - Æó¤Ä¤Î¥³¥Þ¥ó¥É¤òʤ٤ƻȤ¦¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£ - Äɲä·¤¿¹Ô¤¬¤¦¤Þ¤¯¤¤¤«¤Ê¤±¤ì¤Ð¡¢ - portsnap -I cron update ¤ò - portsnap cron && portsnap -I update - ¤ËÃÖ¤­¤«¤¨¤Æ¤¯¤À¤µ¤¤¡£ - - - - CVS ¥¿¥° @@ -2631,6 +2469,24 @@ + RELENG_7_2 + + + FreeBSD-7.2 ÍѤΥê¥ê¡¼¥¹¥Ö¥é¥ó¥Á¡£¥»¥­¥å¥ê¥Æ¥£´«¹ð¤ä + ¤½¤Î¾¤Î¿¼¹ï¤Ê¥»¥­¥å¥ê¥Æ¥£¾å¤Î½¤Àµ¤¬¤¢¤Ã¤¿¾ì¹ç¤Ë¤Î¤ß»È¤ï¤ì¤Þ¤¹¡£ + + + + + RELENG_7_1 + + + FreeBSD-7.1 ÍѤΥê¥ê¡¼¥¹¥Ö¥é¥ó¥Á¡£¥»¥­¥å¥ê¥Æ¥£´«¹ð¤ä + ¤½¤Î¾¤Î¿¼¹ï¤Ê¥»¥­¥å¥ê¥Æ¥£¾å¤Î½¤Àµ¤¬¤¢¤Ã¤¿¾ì¹ç¤Ë¤Î¤ß»È¤ï¤ì¤Þ¤¹¡£ >>> TRUNCATED FOR MAIL (1000 lines) <<< From dforsyth at FreeBSD.org Mon Jun 1 04:32:33 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Mon Jun 1 04:32:40 2009 Subject: PERFORCE change 163227 for review Message-ID: <200906010432.n514WWQB098872@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163227 Change 163227 by dforsyth@squirrel on 2009/06/01 04:31:32 Started to add things to read files. Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#3 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.h#3 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_info.c#3 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#3 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.h#3 edit Differences ... ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#3 (text+ko) ==== @@ -32,16 +32,6 @@ return (p); } -struct pkg * -pkg_set_path(struct pkg *p, const char *path) -{ - if (p == NULL || path == NULL) - return (p); - - p->path = strdup(path); - return (p); -} - /* Set the short comment for this package */ struct pkg * pkg_set_comment(struct pkg *p, const char *comment) @@ -65,6 +55,13 @@ return (p); } +struct pkg * +pkg_set_pkg_info(struct pkg *p, struct pkg_info *pi) +{ + return (p); +} + + char * pkg_ident(struct pkg *p) { @@ -83,7 +80,6 @@ return (p->comment); } - /* TODO: Make an explicit note in the manual for libpkg that pkg_free * should NOT be called called on pkgs that are not explicitly created by * the user. */ ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.h#3 (text+ko) ==== @@ -33,12 +33,16 @@ struct pkg *pkgdb_pkg_list_first(struct pkgdb *db); void pkgdb_pkg_list_append(struct pkgdb *db, struct pkg *p); +char *pkgdb_read_file_to_text(struct pkgdb *db, struct pkg *p, + const char *filename); + void pkgdb_free_hierdb(struct pkgdb *db); void pkgdb_free_pkg_list(struct pkgdb *db); /* pkg_info */ + struct pkg_info; -struct pkg *pkg_info_read_comment_file(struct pkg *p, const char *filename); +struct pkg_info *pkg_info_digest_info_from_text(const char *text); #endif ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_info.c#3 (text+ko) ==== @@ -28,8 +28,13 @@ struct pkg_file *files; }; -char * -pkg_info_read_file_to_string(const char *path, const char *filename) +struct pkg_info * +pkg_info_digest_info_from_text(const char *text) { + struct pkg_info *pi; + + /* This function will parse text and create a pkg_info */ + if (text == NULL) + return (NULL); return (NULL); } ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#3 (text+ko) ==== @@ -1,6 +1,7 @@ #include #include #include +#include #include #include @@ -109,25 +110,28 @@ { int s; char *path; + char *text; struct stat sb; struct pkg *p; p = pkg_new(ident); path = pkgdb_pkg_path(db, p); - pkg_set_path(p, path); if (p == NULL || path == NULL) { pkg_free(p); free(path); + return (NULL); } - + s = lstat(path, &sb); if (s < 0 || S_ISLNK(sb.st_mode) || !S_ISDIR(sb.st_mode)) { pkg_free(p); - free(path); return (NULL); } + + text = pkgdb_read_read_pkg_file_to_text(db, p, COMMENT_FILE); + pkg_set_comment(p, text); - free(path); + free(text); return (p); } @@ -188,6 +192,46 @@ return (p); } +char * +pkgdb_read_file_to_text(struct pkgdb *db, struct pkg *p, + const char *filename) +{ + int s; + int fd; + char *dir; + char *path; + char *text; + struct stat sb; + + if (p == NULL || filename == NULL) + return (NULL); + + /* +2 because dir will not have a trailing '/' */ + dir = pkgdb_pkg_path(db, p); + path = malloc(strlen(dir) + strlen(filename) + 2); + if (path == NULL) + return (NULL); + strcpy(path, dir); + strcat(path, '/'); + strcat(path, filename); + + s = stat(path, &sb); + if (s < 0 || !S_ISREG(st.st_mode)) { + free(path); + return (NULL); + } + + fd = open(path, O_READONLY); + if (fd < 0) { + free(path); + return (NULL); + } + + + + return (text); +} + /* Giving myself a level of abstraction between queue and pkgdb incase I * decide to change how the package list is done. */ ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.h#3 (text+ko) ==== @@ -8,7 +8,6 @@ TAILQ_ENTRY(pkg) next; char *ident; /* User given name for this pkg. */ - char *path; char *comment; /* Mmmmm, should be 70 or less, right? */ struct pkg_contents *contents; From rene at FreeBSD.org Mon Jun 1 09:43:49 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Mon Jun 1 09:43:59 2009 Subject: PERFORCE change 163238 for review Message-ID: <200906010943.n519hmZK050021@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163238 Change 163238 by rene@rene_self on 2009/06/01 09:42:49 Move my pgpkey to the correct location. Submitted by: avl Affected files ... .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#19 edit Differences ... ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#19 (text+ko) ==== @@ -626,6 +626,11 @@ &pgpkey.kuriyama; + + &a.rene; + &pgpkey.rene; + + &a.clement; &pgpkey.clement; @@ -751,11 +756,6 @@ &pgpkey.remko; - - &a.rene; - &pgpkey.rene; - - &a.zml; &pgpkey.zml; From anchie at FreeBSD.org Mon Jun 1 09:48:55 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Mon Jun 1 09:49:05 2009 Subject: PERFORCE change 163239 for review Message-ID: <200906010948.n519msWI050379@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163239 Change 163239 by anchie@anchie_malimis on 2009/06/01 09:48:10 Initial import of src/sys tree. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/OsdEnvironment.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/acpi_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/acpi_switch.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/acpi_wakecode.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/acpi_wakeup.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/genwakecode.sh#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/genwakedata.sh#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/acpica/madt.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/amd64_mem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/apic_vector.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/atomic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/autoconf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/bios.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/bpf_jit_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/bpf_jit_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/busdma_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/cpu_switch.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/db_disasm.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/db_interface.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/db_trace.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/dump_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/elf_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/exception.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/fpu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/gdb_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/genassym.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/identcpu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/in_cksum.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/initcpu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/intr_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/io.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/io_apic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/legacy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/local_apic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/locore.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mca.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/minidump_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mp_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mp_watchdog.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mpboot.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mptable.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/mptable_pci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/msi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/nexus.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/pmap.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/prof_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/sigtramp.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/stack_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/support.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/sys_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/trap.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/tsc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/uio_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/uma_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/amd64/vm_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/compile/.cvsignore#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/.cvsignore#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/DEFAULTS#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/GENERIC#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/GENERIC.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/MAC#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/NOTES#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/conf/XENHVM#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/ia32/ia32_exception.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/ia32/ia32_misc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/ia32/ia32_reg.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/ia32/ia32_signal.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/ia32/ia32_sigtramp.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/ia32/ia32_syscall.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/_bus.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/_inttypes.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/_limits.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/_stdint.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/_types.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/acpica_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/apicreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/apicvar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/asm.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/asmacros.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/atomic.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/bus.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/bus_dma.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/clock.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/cpu.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/cpufunc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/cputypes.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/db_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/elf.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/endian.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/exec.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/float.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/floatingpoint.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/fpu.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/frame.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/gdb_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/ieeefp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/in_cksum.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/intr_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/iodev.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/kdb.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/legacyvar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/limits.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/mca.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/md_var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/memdev.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/metadata.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/minidump.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/mp_watchdog.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/mptable.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/mutex.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/nexusvar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/param.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pc/bios.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pc/display.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pcb.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pci_cfgreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pcpu.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pmap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/pmc_mdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/ppireg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/proc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/profile.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/psl.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/ptrace.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/reloc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/resource.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/runq.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/segments.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/setjmp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/sf_buf.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/sigframe.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/signal.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/smp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/specialreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/stack.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/stdarg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/sysarch.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/timerreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/trap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/tss.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/ucontext.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/varargs.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/vmparam.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/xen/hypercall.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/xen/synch_bitops.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/xen/xen-os.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/xen/xenfunc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/xen/xenpmap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/include/xen/xenvar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/atpic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/atpic_vector.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/clock.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/elcr.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/icu.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/isa.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/isa.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/isa_dma.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/isa/nmi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_dummy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_genassym.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_ipc64.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_locore.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_proto.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_support.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_syscall.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_sysent.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/linux32_sysvec.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/syscalls.conf#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/linux32/syscalls.master#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/pci/pci_bus.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/amd64/pci/pci_cfgreg.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/autoconf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/bcopy_page.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/bcopyinout.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/bcopyinout_xscale.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/blockio.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/bootconfig.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/bus_space_asm_generic.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/bus_space_generic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/busdma_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/copystr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_arm10.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_arm11.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_arm7tdmi.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_arm8.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_arm9.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_armv4.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_armv5.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_armv5_ec.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_ixp12x0.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_sa1.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_sa11x0.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_sheeva.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_xscale.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/cpufunc_asm_xscale_c3.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/db_disasm.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/db_interface.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/db_trace.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/disassem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/dump_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/elf_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/elf_trampoline.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/exception.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/fiq.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/fiq_subr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/fusu.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/gdb_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/genassym.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/identcpu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/in_cksum.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/in_cksum_arm.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/inckern.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/intr.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/irq_dispatch.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/locore.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/mem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/minidump_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/nexus.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/pmap.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/setcpsr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/setstack.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/stack_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/support.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/swtch.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/sys_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/trap.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/uio_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/undefined.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/vectors.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/arm/vm_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_cfata.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_mci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_mcireg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pdcreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pio_rm9200.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pioreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_piovar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pmc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pmcreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_pmcvar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_rtc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_rtcreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_spi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_spireg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_ssc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_sscreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_st.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_streg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_twi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_twiio.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_twireg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91_usartreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91board.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91rm92reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/at91var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/board_bwct.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/board_hl200.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/board_kb920x.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/board_tsc4370.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/files.at91#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/hints.at91rm9200#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/hints.at91sam9261#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/if_ate.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/if_atereg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/std.at91#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/std.bwct#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/std.hl200#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/std.kb920x#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/std.tsc4370#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/uart_bus_at91usart.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/uart_cpu_at91rm9200usart.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/at91/uart_dev_at91usart.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/compile/.cvsignore#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/.cvsignore#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/AVILA#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/AVILA.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/BWCT#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/BWCT.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/CAMBRIA#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/CAMBRIA.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/CRB#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/DB-78XXX#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/DB-88F5XXX#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/DB-88F6XXX#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/DEFAULTS#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/EP80219#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/GUMSTIX#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/GUMSTIX.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/HL200#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/IQ31244#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/KB920X#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/KB920X.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/NSLU#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/NSLU.hints#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/SIMICS#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/conf/SKYEYE#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/_bus.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/_inttypes.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/_limits.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/_stdint.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/_types.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/armreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/asm.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/asmacros.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/atomic.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/blockio.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/bootconfig.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/bootinfo.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/bus.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/bus_dma.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/clock.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/cpu.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/cpuconf.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/cpufunc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/db_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/disassem.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/elf.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/endian.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/exec.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/fiq.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/float.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/floatingpoint.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/fp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/frame.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/gdb_machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/ieee.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/ieeefp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/in_cksum.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/intr.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/katelib.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/kdb.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/limits.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/machdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/md_var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/memdev.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/metadata.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/minidump.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/mutex.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/param.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/pcb.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/pcpu.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/pmap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/pmc_mdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/proc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/profile.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/psl.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/pte.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/ptrace.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/reloc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/resource.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/runq.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/setjmp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/sf_buf.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/sigframe.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/signal.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/smp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/stack.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/stdarg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/swi.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/sysarch.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/trap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/ucontext.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/undefined.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/utrap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/include/vmparam.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/bus_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/common.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/discovery/db78xxx.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/discovery/discovery.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/discovery/files.db78xxx#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/discovery/std.db78xxx#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/files.mv#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/gpio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/ic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/kirkwood/db88f6xxx.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/kirkwood/files.db88f6xxx#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/kirkwood/kirkwood.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/kirkwood/std.db88f6xxx#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/mv_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/mv_pci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/mvreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/mvvar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/obio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/orion/db88f5xxx.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/orion/files.db88f5xxx#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/orion/orion.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/orion/std.db88f5xxx#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/rtc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/std.mv#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/timer.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/mv/twsi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/assabet_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/files.sa11x0#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_dmacreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_gpioreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_io.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_io_asm.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_irq.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_irqhandler.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_ost.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_ostreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_ppcreg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/sa11x0_var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/std.sa11x0#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/uart_bus_sa1110.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/uart_cpu_sa1110.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/uart_dev_sa1110.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/sa11x0/uart_dev_sa1110.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/ep80219_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/files.ep80219#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/files.i80219#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/files.i80321#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/files.iq31244#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_aau.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_dma.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_intr.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_mcu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_pci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_timer.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321_wdog.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/i80321var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/iq31244_7seg.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/iq31244_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/iq80321.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/iq80321reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/iq80321var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/obio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/obio_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/obiovar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/std.ep80219#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/std.i80219#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/std.i80321#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/std.iq31244#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/uart_bus_i80321.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i80321/uart_cpu_i80321.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/crb_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/files.crb#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/files.i81342#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/i81342.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/i81342_mcu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/i81342_pci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/i81342_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/i81342reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/i81342var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/iq81342_7seg.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/iq81342reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/iq81342var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/obio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/obio_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/obiovar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/std.crb#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/std.i81342#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/uart_bus_i81342.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/i8134x/uart_cpu_i81342.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/avila_ata.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/avila_led.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/avila_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/cambria_fled.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/cambria_led.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/files.avila#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/files.ixp425#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/if_npe.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/if_npereg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixdp425_pci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixdp425reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_a4x_io.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_a4x_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_iic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_intr.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_mem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_npe.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_npereg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_npevar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_pci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_pci_asm.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_pci_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_qmgr.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_qmgr.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_timer.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425_wdog.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425reg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/ixp425var.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/std.avila#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/std.ixp425#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/std.ixp435#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/uart_bus_ixp425.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/ixp425/uart_cpu_ixp425.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/files.pxa#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/if_smc_smi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_gpio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_icu.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_machdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_obio.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_smi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_space.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxa_timer.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxareg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/pxavar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/std.pxa#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/uart_bus_pxa.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/pxa/uart_cpu_pxa.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/std.xscale#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/xscalereg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/arm/xscale/xscalevar.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/README#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0/README#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0/linker.cfg#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0iic/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0iic/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0spi/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot0spi/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot2/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot2/board.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot2/boot2.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot2/bwct_board.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot2/centipad_board.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/boot2/kb920x_board.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/README#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/env_vars.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/env_vars.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/loader_prompt.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/loader_prompt.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootiic/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/README#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/ee.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/ee.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/env_vars.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/env_vars.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/loader_prompt.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/loader_prompt.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/bootspi/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/arm_init.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/at91rm9200.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/delay.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/eeprom.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/emac.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/emac.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/emac_init.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/getc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/lib.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/lib_AT91RM9200.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/mci_device.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/memcmp.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/memcpy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/memset.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/p_string.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/printf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/putchar.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/reset.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/sd-card.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/sd-card.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/spi_flash.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/spi_flash.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/strcmp.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/strcpy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/strcvt.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/strlen.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/tag_list.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/tag_list.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/libat91/xmodem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/at91/linker.cfg#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/boot2/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/boot2/arm_init.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/boot2/boot2.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/boot2/cf_ata.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/boot2/ixp425_board.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/ixp425/boot2/lib.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/uboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/uboot/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/uboot/help.uboot#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/uboot/ldscript.arm#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/uboot/start.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/arm/uboot/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/bcache.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/boot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/bootstrap.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/commands.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/console.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/dev_net.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/dev_net.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/devopen.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/help.common#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/interp.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/interp_backslash.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/interp_forth.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/interp_parse.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/isapnp.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/isapnp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/load_elf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/load_elf32.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/load_elf32_obj.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/load_elf64.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/load_elf64_obj.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/load_elf_obj.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/loader.8#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/ls.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/merge_help.awk#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/misc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/module.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/newvers.sh#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/panic.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/pnp.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/reloc_elf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/reloc_elf32.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/reloc_elf64.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/common/ufsread.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/README#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efi.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efi_nii.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efiapi.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/eficon.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efidebug.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efidef.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efidevp.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efierr.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efifpswa.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efifs.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efilib.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efinet.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efipart.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efiprot.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efipxebc.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efiser.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/efistdarg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/i386/efibind.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/i386/pe.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/ia64/efibind.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/include/ia64/pe.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/delay.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/efi_console.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/efifs.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/efinet.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/errno.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/handles.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/libefi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/efi/libefi/time.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/arm/sysdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/arm/sysdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/dict.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/ficl.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/ficl.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/fileaccess.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/float.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/i386/sysdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/i386/sysdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/ia64/sysdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/ia64/sysdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/loader.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/math64.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/math64.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/mips/sysdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/mips/sysdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/powerpc/sysdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/powerpc/sysdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/prefix.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/search.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/classes.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/ficlclass.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/ficllocal.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/fileaccess.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/forml.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/freebsd.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/ifbrack.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/jhlocal.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/marker.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/oo.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/prefix.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/softcore.awk#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/softcore.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/softwords/string.fr#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/sparc64/sysdep.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/sparc64/sysdep.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/stack.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/testmain.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/tools.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/unix.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/vm.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ficl/words.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/beastie.4th#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/frames.4th#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/loader.4th#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/loader.4th.8#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/loader.conf#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/loader.conf.5#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/loader.rc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/pnp.4th#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/screen.4th#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/forth/support.4th#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot0/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot0/boot0.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot0/boot0ext.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot0ext/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot0sio/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot2/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot2/boot1.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot2/boot2.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot2/lib.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/boot2/sio.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/btx/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/btx/btx.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/btxldr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/btxldr/btxldr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/lib/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/lib/btxcsu.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/lib/btxsys.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/lib/btxv86.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/btx/lib/btxv86.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/cdboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/cdboot/cdboot.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/gptboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/gptboot/gptboot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/gptboot/gptldr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/gptzfsboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/boot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/crt.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/kgzldr.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/lib.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/sio.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/kgzldr/start.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libfirewire/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libfirewire/dconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libfirewire/firewire.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libfirewire/fwohci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libfirewire/fwohci.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libfirewire/fwohcireg.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/amd64_tramp.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/biosacpi.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/bioscd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/biosdisk.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/biosmem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/biospci.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/biospnp.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/biossmap.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/bootinfo.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/bootinfo32.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/bootinfo64.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/comconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/devicename.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/elf32_freebsd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/elf64_freebsd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/i386_copy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/i386_module.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/libi386.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/nullconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/pread.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/pxe.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/pxe.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/pxetramp.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/smbios.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/time.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/libi386/vidconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/loader/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/loader/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/loader/help.i386#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/loader/loader.rc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/loader/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/loader/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/mbr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/mbr/mbr.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/pmbr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/pmbr/pmbr.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/pxeldr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/pxeldr/pxeboot.8#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/pxeldr/pxeldr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/zfsboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/zfsboot/zfsboot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/i386/zfsboot/zfsldr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/autoload.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/bootinfo.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/copy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/devicename.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/exec.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/common/libia64.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/efimd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/ldscript.ia64#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/start.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/efi/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/acpi_stub.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/delay.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/efi_stub.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/exit.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/ldscript.ia64#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/libski.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/pal_stub.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/sal_stub.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/skiconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/skifs.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/skiload.cmd#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/skimd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/ssc.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/start.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/time.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ia64/ski/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/common/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/common/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/devicename.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/elf_freebsd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/libofw.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_console.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_copy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_disk.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_memory.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_module.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_net.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_reboot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/ofw_time.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/openfirm.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/ofw/libofw/openfirm.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/boot.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/boot0.5.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/disk.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/ldscript#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/putssjis.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/selector.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/start.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/support.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0.5/syscons.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot0/boot0.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/asm.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/asm.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/bios.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/boot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/boot.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/boot2.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/dinode.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/disk.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/fs.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/inode.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/io.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/probe_keyboard.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/quota.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/serial.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/serial_16550.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/serial_8251.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/start.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/sys.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/boot2/table.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/btx/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/btx/btx.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/btxldr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/btxldr/btxldr.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/lib/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/lib/btxcsu.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/lib/btxsys.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/lib/btxv86.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/btx/lib/btxv86.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/cdboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/cdboot/cdboot.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/kgzldr/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/kgzldr/crt.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/bioscd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/biosdisk.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/biosmem.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/biossmap.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/comconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/i386_module.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/time.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/libpc98/vidconsole.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/loader/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/loader/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/loader/help.pc98#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/pc98/loader/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/boot1.chrp/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/boot1.chrp/Makefile.hfs#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/boot1.chrp/boot1.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/boot1.chrp/bootinfo.txt#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/boot1.chrp/generate-hfs.sh#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/boot1.chrp/hfs.tmpl.bz2.uu#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/help.ofw#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/ldscript.powerpc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/metadata.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/start.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/ofw/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/uboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/uboot/conf.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/uboot/help.uboot#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/uboot/ldscript.powerpc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/uboot/start.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/powerpc/uboot/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/boot1/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/boot1/_start.s#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/boot1/boot1.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/loader/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/loader/help.sparc64#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/loader/locore.S#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/loader/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/loader/metadata.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/sparc64/loader/version#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/common/Makefile.inc#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/common/main.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/common/metadata.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/api_public.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/console.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/copy.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/devicename.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/disk.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/elf_freebsd.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/glue.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/glue.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/libuboot.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/module.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/net.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/reboot.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/uboot/lib/time.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/zfs/Makefile#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/zfs/zfs.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/boot/zfs/zfsimpl.c#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_domain.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_errno.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_fcntl.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_internal.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_kevents.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_record.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/bsm/audit_socket_type.h#1 branch .. //depot/projects/soc2009/anchie_send/src/sys/cam/README.quirks#1 branch >>> TRUNCATED FOR MAIL (1000 lines) <<< From anchie at FreeBSD.org Mon Jun 1 10:18:25 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Mon Jun 1 10:18:31 2009 Subject: PERFORCE change 163241 for review Message-ID: <200906011018.n51AIO2I053636@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163241 Change 163241 by anchie@anchie_malimis on 2009/06/01 10:18:15 Initial import of DoCoMo's SeND implementation. Affected files ... .. //depot/projects/soc2009/anchie_send/send_0.2/CHANGELOG#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/LICENSE#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/Makefile.config#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/Makefile.install#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/README#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/cgatool/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/cgatool/cgatool.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/docs/UserGuide.pdf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/README#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/cgatool/README#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/cgatool/rfc_example.params#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/README.ipext.sample.pdf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar1/cert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar1/cert_ipext.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar1/ipext.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar1/ipext_add.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar1/key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar1/params.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar2/cert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar2/cert_ipext.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar2/ipext.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar2/ipext_add.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar2/key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar3/cert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar3/cert_ipext.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar3/ipext.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar3/ipext_add.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ar3/key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ca/cert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ca/cert_ipext.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ca/ipext.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ca/ipext_add.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ca/key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ar1/cacert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ar1/index.txt#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ar1/private/cakey.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ar1/serial#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/cacert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/careq.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/index.txt#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/index.txt.attr#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/newcerts/8F27AC9DF6B66C45.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/newcerts/8F27AC9DF6B66C46.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/private/cakey.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.ca/serial#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/cacert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/index.txt#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/index.txt.attr#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/newcerts/00.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/newcerts/01.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/newcerts/02.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/private/cakey.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/demoCA.lvl1/serial#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/gen_ipext#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/ipext_verify.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/lvl1/cert.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/lvl1/cert_ipext.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/lvl1/ipext.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/lvl1/ipext_add.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/lvl1/key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/newreq.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/ipext/sendd.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/README.no_rdisc.pdf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/README.txt#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/mn1.cga.params#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/mn1.key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/mn1.params.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/mn2.cga.params#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/mn2.key.pem#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/mn2.params.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/sendd.conf.mn1#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/no_rdisc/sendd.conf.mn2#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/params.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/examples/sendd.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/cga.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/cga_keyutils.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/libinit.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/list.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/pkixip_ext.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/pkixip_ext_asn.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/sbuff.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/include/thrpool.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/ipexttool/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/ipexttool/ipexttool.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/Makefile.ar#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/Makefile.lib.common#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/Makefile.so#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libappconsole/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libappconsole/appconsole.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libappconsole/appconsole.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libappconsole/test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libappconsole/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/cga.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/cga_dbg.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/cga_keyutils.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/cga_local.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/cga_mt.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/cmp.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/mpadd.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libcga/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libconfig/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libconfig/config.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libconfig/libconfig.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libconfig/test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libconfig/test.conf#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libconfig/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libhashtbl/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libhashtbl/hashfuncs.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libhashtbl/hashtbl.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libhashtbl/hashtbl.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libhashtbl/test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libhashtbl/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libincksum/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libincksum/in_cksum.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libincksum/in_cksum.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libincksum/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/liblog/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/liblog/README#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/liblog/applog.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/liblog/log.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/liblog/log_example.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/liblog/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/asn1.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/config.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/pkixip_ext.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/pkixip_ext_gram.y#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/pkixip_ext_lex.l#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/pkixip_local.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/util.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/ver.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libpkixipext/x509.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libprioq/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libprioq/prioq.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libprioq/prioq.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libprioq/test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libprioq/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libsenddctl/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libsenddctl/senddctl.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libsenddctl/senddctl.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libsenddctl/senddctl_proto.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/excl_test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/intr_test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/prio_test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/tcli.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/thrpool.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/thrspec_test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/tsrv.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libthrpool/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libtimer/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libtimer/test.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libtimer/timer.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libtimer/timer.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/libs/libtimer/vers#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/addr.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/cert.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/cga.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/config.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/console.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/cpa.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/cps.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/ctl.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/dbg.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/dbg.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/net.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/openssl.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/opt.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/addr.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/netgraph.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/os_defines.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/sendd#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/snd_freebsd.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/snd_freebsd.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/addr.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/find_ip6tables.sh#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/ipq.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/os_defines.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/rand.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/sendd.in#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/snd_fw_functions.sh.in2#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/snd_linux.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/snd_linux.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-linux/snd_upd_fw.in#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-macosx/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-macosx/README#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-macosx/os_defines.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-macosx/pkt.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-macosx/snd_macosx.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-macosx/snd_macosx.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-unsupported/Makefile#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-unsupported/README#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-unsupported/os_defines.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-unsupported/stubs.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os_specific.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/params.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/params_gram.y#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/params_lex.l#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/proto.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/proto_nonce.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/proto_sig.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/proto_timestamp.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/ra.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/sendd.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/sendd_local.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/sig_rfc3971.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/sigmeth.c#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/snd_config.h#1 add .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/snd_proto.h#1 add Differences ... From zec at FreeBSD.org Mon Jun 1 10:22:29 2009 From: zec at FreeBSD.org (Marko Zec) Date: Mon Jun 1 10:22:36 2009 Subject: PERFORCE change 163242 for review Message-ID: <200906011022.n51AMS8s053956@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163242 Change 163242 by zec@zec_amdx4 on 2009/06/01 10:22:27 Fix non-critical misintegration. Affected files ... .. //depot/projects/vimage/src/sys/contrib/altq/altq/altq_subr.c#19 edit Differences ... ==== //depot/projects/vimage/src/sys/contrib/altq/altq/altq_subr.c#19 (text+ko) ==== @@ -468,11 +468,11 @@ #endif #if defined(__FreeBSD__) && (__FreeBSD_version >= 500000) IFNET_RLOCK(); -#endif VNET_LIST_RLOCK(); VNET_FOREACH(vnet_iter) { CURVNET_SET(vnet_iter); INIT_VNET_NET(vnet_iter); +#endif for (ifp = TAILQ_FIRST(&V_ifnet); ifp; ifp = TAILQ_NEXT(ifp, if_list)) { /* read from if_snd unlocked */ From zec at FreeBSD.org Mon Jun 1 10:42:50 2009 From: zec at FreeBSD.org (Marko Zec) Date: Mon Jun 1 10:42:56 2009 Subject: PERFORCE change 163244 for review Message-ID: <200906011042.n51Agnnw055603@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163244 Change 163244 by zec@zec_amdx4 on 2009/06/01 10:42:40 Fix misintegrations and reduce diff against head. Affected files ... .. //depot/projects/vimage/src/sys/kern/uipc_socket.c#35 edit .. //depot/projects/vimage/src/sys/net/if_clone.c#16 edit Differences ... ==== //depot/projects/vimage/src/sys/kern/uipc_socket.c#35 (text+ko) ==== @@ -288,7 +288,6 @@ #ifdef VIMAGE ++vnet->sockcnt; /* Locked with so_global_mtx. */ so->so_vnet = vnet; - vnet->sockcnt++; #endif mtx_unlock(&so_global_mtx); return (so); @@ -361,11 +360,7 @@ if (prp->pr_type != type) return (EPROTOTYPE); -#ifdef VIMAGE so = soalloc(TD_TO_VNET(td)); -#else - so = soalloc(NULL); -#endif if (so == NULL) return (ENOBUFS); @@ -435,12 +430,8 @@ if (over) #endif return (NULL); -#ifdef VIMAGE VNET_ASSERT(head->so_vnet); so = soalloc(head->so_vnet); -#else - so = soalloc(NULL); -#endif if (so == NULL) return (NULL); if ((head->so_options & SO_ACCEPTFILTER) != 0) @@ -2065,7 +2056,7 @@ soshutdown(struct socket *so, int how) { struct protosw *pr = so->so_proto; - int error = 0; + int error; if (!(how == SHUT_RD || how == SHUT_WR || how == SHUT_RDWR)) return (EINVAL); @@ -2078,8 +2069,9 @@ CURVNET_SET(so->so_vnet); error = (*pr->pr_usrreqs->pru_shutdown)(so); CURVNET_RESTORE(); + return (error); } - return (error); + return (0); } void ==== //depot/projects/vimage/src/sys/net/if_clone.c#16 (text+ko) ==== @@ -459,24 +459,6 @@ * Find a free unit if none was given. */ if (wildcard) { -#ifdef VIMAGE - INIT_VNET_NET(curvnet); - char name[IFNAMSIZ]; - struct ifnet *ifp; - int i = 0; - - IFNET_RLOCK(); -again: - TAILQ_FOREACH(ifp, &V_ifnet, if_link) { - sprintf(name, "%s%d", ifc->ifc_name, i); - if (strcmp(name, ifp->if_xname) == 0) { - i++; - goto again; - } - } - IFNET_RUNLOCK(); - *unit = i; -#else while ((bytoff < ifc->ifc_bmlen) && (ifc->ifc_units[bytoff] == 0xff)) bytoff++; @@ -487,7 +469,6 @@ while ((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0) bitoff++; *unit = (bytoff << 3) + bitoff; -#endif } if (*unit > ifc->ifc_maxunit) { @@ -495,7 +476,6 @@ goto done; } -#ifndef VIMAGE if (!wildcard) { bytoff = *unit >> 3; bitoff = *unit - (bytoff << 3); @@ -511,7 +491,6 @@ KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) == 0, ("%s: bit is already set", __func__)); ifc->ifc_units[bytoff] |= (1 << bitoff); -#endif IF_CLONE_ADDREF_LOCKED(ifc); done: @@ -522,7 +501,6 @@ void ifc_free_unit(struct if_clone *ifc, int unit) { -#ifndef VIMAGE int bytoff, bitoff; @@ -537,7 +515,6 @@ ("%s: bit is already cleared", __func__)); ifc->ifc_units[bytoff] &= ~(1 << bitoff); IF_CLONE_REMREF_LOCKED(ifc); /* releases lock */ -#endif } void From zec at FreeBSD.org Mon Jun 1 10:49:59 2009 From: zec at FreeBSD.org (Marko Zec) Date: Mon Jun 1 10:50:04 2009 Subject: PERFORCE change 163247 for review Message-ID: <200906011049.n51Anud9056270@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163247 Change 163247 by zec@zec_amdx4 on 2009/06/01 10:49:53 Allow for vi_destroy() to be called on vimage -d invocation. Affected files ... .. //depot/projects/vimage/src/sys/kern/kern_vimage.c#93 edit Differences ... ==== //depot/projects/vimage/src/sys/kern/kern_vimage.c#93 (text+ko) ==== @@ -67,6 +67,7 @@ #ifdef VIMAGE static struct vimage *vimage_by_name(struct vimage *, char *); static struct vimage *vi_alloc(struct vimage *, char *); +static int vi_destroy(struct vimage *); static struct vimage *vimage_get_next(struct vimage *, struct vimage *, int); static void vimage_relative_name(struct vimage *, struct vimage *, char *, int); @@ -216,11 +217,7 @@ case SIOCSPVIMAGE: if (vi_req->vi_req_action == VI_DESTROY) { -#ifdef NOTYET error = vi_destroy(vip_r); -#else - error = EOPNOTSUPP; -#endif break; } @@ -698,9 +695,9 @@ /* XXX locking */ LIST_REMOVE(vprocg, vprocg_le); - VNET_LIST_LOCK(); + VNET_LIST_WLOCK(); LIST_REMOVE(vnet, vnet_le); - VNET_LIST_UNLOCK(); + VNET_LIST_WUNLOCK(); CURVNET_SET_QUIET(vnet); INIT_VNET_NET(vnet); @@ -712,8 +709,10 @@ TAILQ_FOREACH_SAFE(ifp, &V_ifnet, if_link, nifp) { if (ifp->if_home_vnet != ifp->if_vnet) vi_if_move(NULL, ifp, vip); +#ifdef NOTYET else if_clone_destroy(ifp->if_xname); +#endif } /* Detach / free per-module state instances. */ From zec at FreeBSD.org Mon Jun 1 11:00:08 2009 From: zec at FreeBSD.org (Marko Zec) Date: Mon Jun 1 11:00:15 2009 Subject: PERFORCE change 163248 for review Message-ID: <200906011100.n51B074l057143@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163248 Change 163248 by zec@zec_amdx4 on 2009/06/01 10:59:26 De-staticize vimage_by_name() as in vimage branch this is needed by various #ifdef IMUNES_HACK things. Also resurrect V_morphing_symlinks which IMUNES needs badly. Fix misintegrations / relicts from old times in if_ethersubr.c Affected files ... .. //depot/projects/vimage/src/sys/kern/kern_vimage.c#94 edit .. //depot/projects/vimage/src/sys/net/if_ethersubr.c#41 edit .. //depot/projects/vimage/src/sys/sys/vimage.h#97 edit Differences ... ==== //depot/projects/vimage/src/sys/kern/kern_vimage.c#94 (text+ko) ==== @@ -65,7 +65,6 @@ static int vnet_mod_destructor(struct vnet_modlink *); #ifdef VIMAGE -static struct vimage *vimage_by_name(struct vimage *, char *); static struct vimage *vi_alloc(struct vimage *, char *); static int vi_destroy(struct vimage *); static struct vimage *vimage_get_next(struct vimage *, struct vimage *, int); @@ -280,7 +279,7 @@ return (0); } -static struct vimage * +struct vimage * vimage_by_name(struct vimage *top, char *name) { struct vimage *vip; ==== //depot/projects/vimage/src/sys/net/if_ethersubr.c#41 (text+ko) ==== @@ -924,25 +924,6 @@ return (etherbuf); } -#ifdef VIMAGE -static void -ether_reassign(struct ifnet *ifp, struct vnet *vnet, char *dname) -{ - u_char eaddr[6]; - - bcopy(IF_LLADDR(ifp), eaddr, 6); - ether_ifdetach(ifp); - ifp->if_bpf = NULL; - if_reassign_common(ifp, vnet, "eth"); - if (dname) - snprintf(ifp->if_xname, IFNAMSIZ, "%s", dname); - - CURVNET_SET_QUIET(vnet); - ether_ifattach(ifp, eaddr); - CURVNET_RESTORE(); -} -#endif - /* * Perform common duties while attaching to interface list */ @@ -952,9 +933,6 @@ int i; struct ifaddr *ifa; struct sockaddr_dl *sdl; -#ifdef VIMAGE - struct vnet *home_vnet_0 = ifp->if_home_vnet; -#endif ifp->if_addrlen = ETHER_ADDR_LEN; ifp->if_hdrlen = ETHER_HDR_LEN; @@ -963,9 +941,6 @@ ifp->if_output = ether_output; ifp->if_input = ether_input; ifp->if_resolvemulti = ether_resolvemulti; -#ifdef VIMAGE - ifp->if_reassign = ether_reassign; -#endif if (ifp->if_baudrate == 0) ifp->if_baudrate = IF_Mbps(10); /* just a default */ ifp->if_broadcastaddr = etherbroadcastaddr; @@ -985,11 +960,7 @@ for (i = 0; i < ifp->if_addrlen; i++) if (lla[i] != 0) break; -#ifdef VIMAGE - if (i != ifp->if_addrlen && home_vnet_0 != ifp->if_home_vnet) -#else if (i != ifp->if_addrlen) -#endif if_printf(ifp, "Ethernet address: %6D\n", lla, ":"); } ==== //depot/projects/vimage/src/sys/sys/vimage.h#97 (text+ko) ==== @@ -159,6 +159,7 @@ int vi_td_ioctl(u_long, struct vi_req *, struct thread *); int vi_if_move(struct vi_req *, struct ifnet *, struct vimage *); int vi_child_of(struct vimage *, struct vimage *); +struct vimage *vimage_by_name(struct vimage *, char *); void vnet_mod_register(const struct vnet_modinfo *); void vnet_mod_register_multi(const struct vnet_modinfo *, void *, char *); void vnet_mod_deregister(const struct vnet_modinfo *); @@ -217,6 +218,7 @@ LIST_ENTRY(vprocg) vprocg_le; u_int vprocg_id; /* ID num */ u_int nprocs; + int _morphing_symlinks; }; #ifdef VIMAGE @@ -352,6 +354,8 @@ /* XXX those defines bellow should probably go into vprocg.h and vcpu.h */ #define VPROCG(sym) VSYM(vprocg, sym) +#define V_morphing_symlinks VPROCG(morphing_symlinks) + /* * Size-guards for the vimage structures. * If you need to update the values you MUST increment __FreeBSD_version. From anchie at FreeBSD.org Mon Jun 1 11:05:14 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Mon Jun 1 11:05:20 2009 Subject: PERFORCE change 163249 for review Message-ID: <200906011105.n51B5COA058491@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163249 Change 163249 by anchie@anchie_malimis on 2009/06/01 11:04:48 Patched, ready for compiling. Affected files ... .. //depot/projects/soc2009/anchie_send/send_0.2/Makefile.config#2 edit .. //depot/projects/soc2009/anchie_send/send_0.2/include/pkixip_ext_asn.h#2 edit .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/Makefile#2 edit .. //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/sendd#2 edit Differences ... ==== //depot/projects/soc2009/anchie_send/send_0.2/Makefile.config#2 (text+ko) ==== @@ -4,8 +4,8 @@ # # Uncomment the line for your OS -OS=linux -#OS=freebsd +#OS=linux +OS=freebsd # Linux only: Where is your linux kernel source? # Ignored for non-Linux @@ -19,7 +19,7 @@ #CC=gcc-4.0 # Where to install -prefix=/usr +prefix=/usr/local # Set to "y" to build MT versions of sendd and cgatool USE_THREADS=n @@ -40,8 +40,8 @@ USE_CONSOLE=y # Enable for debugging -#DEBUG_POLICY= DEBUG -DEBUG_POLICY= NO_DEBUG +DEBUG_POLICY= DEBUG +#DEBUG_POLICY= NO_DEBUG # enable for timestamp output on some crypto operations LOG_TIMESTAMP=n ==== //depot/projects/soc2009/anchie_send/send_0.2/include/pkixip_ext_asn.h#2 (text+ko) ==== @@ -45,6 +45,7 @@ #define IANA_SAFI_BOTH 3 #define IANA_SAFI_MPLS 4 +/* typedef struct IPAddressRange_st { ASN1_BIT_STRING *min; ASN1_BIT_STRING *max; @@ -78,6 +79,12 @@ ASN1_OCTET_STRING *addressFamily; IPAddressChoice *ipAddressChoice; } IPAddressFamily; +*/ + +#define IP_AOR_PREFIX 0 +#define IP_AOR_RANGE 1 +#define IPA_CHOICE_INHERIT 0 +#define IPA_CHOICE_AOR 1 typedef STACK_OF(IPAddressFamily) IPAddrBlocks; ==== //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/Makefile#2 (text+ko) ==== @@ -1,7 +1,8 @@ OBJS += os/addr.o os/snd_freebsd.o os/netgraph.o os-linux/rand.o +CPPFLAGS += -I/usr/local/include -OSLIBS= -lnetgraph -l$(DNET) +OSLIBS= -lnetgraph -L/usr/local/lib -l$(DNET) OSEXTRA= os/sendd EXTRAINSTALL= /etc/rc.d/sendd ==== //depot/projects/soc2009/anchie_send/send_0.2/sendd/os-freebsd/sendd#2 (text+ko) ==== @@ -37,8 +37,8 @@ name="sendd" rcvar=`set_rcvar` -command="/usr/sbin/${name}" -required_files="/etc/${name}.conf" +command="/usr/local/sbin/${name}" +required_files="/usr/local/etc/${name}.conf" load_rc_config $name run_rc_command "$1" From anchie at FreeBSD.org Mon Jun 1 11:33:45 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Mon Jun 1 11:33:51 2009 Subject: PERFORCE change 163251 for review Message-ID: <200906011133.n51BXfQs060754@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163251 Change 163251 by anchie@anchie_malimis on 2009/06/01 11:33:21 Added comments about placing hooks for SeND in the ND code. Added two new, SeND-related, ICMP6 types, for Certification Path Solicitation and Certification Path Advertisement. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#2 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/icmp6.c#2 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/nd6.c#2 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/nd6_rtr.c#2 edit Differences ... ==== //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#2 (text+ko) ==== @@ -117,6 +117,9 @@ #define ND_NEIGHBOR_ADVERT 136 /* neighbor advertisement */ #define ND_REDIRECT 137 /* redirect */ +#define SEND_CERT_PATH_SOLICIT 148 /* cert path solicitation */ +#define SEND_CERT_PATH_ADVERT 149 /* cert_path advertisement */ + #define ICMP6_ROUTER_RENUMBERING 138 /* router renumbering */ #define ICMP6_WRUREQUEST 139 /* who are you request */ ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/icmp6.c#2 (text+ko) ==== @@ -761,6 +761,9 @@ goto badlen; if ((n = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) == NULL) { /* give up local */ + + /* send incoming SeND-protected/ND packet to sendd */ + nd6_rs_input(m, off, icmp6len); m = NULL; goto freeit; @@ -776,6 +779,9 @@ if (icmp6len < sizeof(struct nd_router_advert)) goto badlen; if ((n = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) == NULL) { + + /* send incoming SeND-protected/ND packet to sendd */ + /* give up local */ nd6_ra_input(m, off, icmp6len); m = NULL; @@ -792,6 +798,9 @@ if (icmp6len < sizeof(struct nd_neighbor_solicit)) goto badlen; if ((n = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) == NULL) { + + /* send incoming SeND-protected/ND packet to sendd */ + /* give up local */ nd6_ns_input(m, off, icmp6len); m = NULL; @@ -808,6 +817,9 @@ if (icmp6len < sizeof(struct nd_neighbor_advert)) goto badlen; if ((n = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) == NULL) { + + /* send incoming SeND-protected/ND packet to sendd */ + /* give up local */ nd6_na_input(m, off, icmp6len); m = NULL; @@ -824,6 +836,9 @@ if (icmp6len < sizeof(struct nd_redirect)) goto badlen; if ((n = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) == NULL) { + + /* send incoming SeND-protected/ND packet to sendd */ + /* give up local */ icmp6_redirect_input(m, off); m = NULL; @@ -833,6 +848,18 @@ /* m stays. */ break; +#ifndef + case SEND_CERT_PATH_SOLICIT: + /* send CPS packet to sendd */ + send6_cps_input(); + break; + + case SEND_CERT_PATH_ADVERT: + /* send CPA packet to sendd */ + send6_cpa_input(); + break; +#endif + case ICMP6_ROUTER_RENUMBERING: if (code != ICMP6_ROUTER_RENUMBERING_COMMAND && code != ICMP6_ROUTER_RENUMBERING_RESULT) ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/nd6.c#2 (text+ko) ==== @@ -1922,6 +1922,15 @@ } return (error); } + + /* send outgoing SeND/ND packet to sendd. */ + + /* + * In case of NS and NA, we end-up here after calling nd6_ns_output() + * or nd6_na_output(). RS, RA, and Redirect do not have such output + * routines. They are handler instead by rtadvd and rtsol daemons. + */ + if ((ifp->if_flags & IFF_LOOPBACK) != 0) { return ((*ifp->if_output)(origifp, m, (struct sockaddr *)dst, NULL)); ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/nd6_rtr.c#2 (text+ko) ==== @@ -426,6 +426,27 @@ m_freem(m); } +#ifndef +/* + * Receive Certification Path Solicitation [rfc3971]. + */ +void +send6_cps_input(struct mbuf *m, int off, int icmp6len) +{ +} + +/* + * Receive Certification Path Advertisement [rfc3971]. + */ +void +send6_cpa_input(struct mbuf *m, int off, int icmp6len) +{ +} + +/* send6_cps/cpa_output() should be places here as well.. */ +#endif + + /* * default router list proccessing sub routines */ From gabor at FreeBSD.org Mon Jun 1 12:02:29 2009 From: gabor at FreeBSD.org (Gabor Kovesdan) Date: Mon Jun 1 12:02:37 2009 Subject: PERFORCE change 163253 for review Message-ID: <200906011202.n51C2Bpt062876@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163253 Change 163253 by gabor@gabor_server on 2009/06/01 12:01:51 - Add extracted sources. They build and work but building and running is a bit inconvenient lacking FreeBSD Makefiles and integration but it will do for the development stage. Affected files ... .. //depot/projects/soc2009/gabor_iconv/extracted/build.sh#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/_strtol.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/_strtoul.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_aliasname_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_bcs.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_bcs.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_bcs_strtol.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_bcs_strtoul.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_csmapper.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_csmapper.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_ctype.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_ctype.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_ctype_fallback.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_ctype_fallback.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_ctype_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_ctype_template.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db_factory.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db_factory.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db_file.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db_hash.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_db_hash.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_esdb.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_esdb.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_esdb_file.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_fix_grouping.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_hash.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_hash.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_iconv.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_iconv.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_iconv_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_lookup.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_lookup.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_lookup_factory.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_lookup_factory.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_lookup_file.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_mapper.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_mapper.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_mapper_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_memstream.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_memstream.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_mmap.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_mmap.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_module.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_module.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_namespace.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_none.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_none.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_pivot_factory.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_pivot_factory.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_pivot_file.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_prop.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_prop.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_region.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_stdenc.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_stdenc.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_stdenc_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_stdenc_template.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/citrus_types.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/iconv.3#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/iconv.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/iconv.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/build.sh#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_big5.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_big5.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_dechanyu.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_dechanyu.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_euc.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_euc.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_euctw.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_euctw.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_gbk2k.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_gbk2k.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_hz.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_hz.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iconv_none.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iconv_none.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iconv_std.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iconv_std.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iconv_std_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iso2022.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_iso2022.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_johab.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_johab.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_646.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_646.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_none.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_none.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_serial.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_serial.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_std.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_std.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_std_file.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_std_local.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_zone.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mapper_zone.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mskanji.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_mskanji.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_ues.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_ues.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_utf1632.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_utf1632.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_utf7.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_utf7.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_utf8.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_utf8.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_viqr.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_viqr.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_zw.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/modules/citrus_zw.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/lib/netbsdism.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/iconv/Makefile#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/iconv/iconv.1#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/iconv/iconv.c#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkcsmapper/Makefile#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkcsmapper/build.sh#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkcsmapper/ldef.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkcsmapper/lex.l#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkcsmapper/yacc.y#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkesdb/Makefile#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkesdb/build.sh#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkesdb/ldef.h#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkesdb/lex.l#1 add .. //depot/projects/soc2009/gabor_iconv/extracted/util/mkesdb/yacc.y#1 add Differences ... From hselasky at FreeBSD.org Mon Jun 1 12:31:42 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Mon Jun 1 12:31:49 2009 Subject: PERFORCE change 163254 for review Message-ID: <200906011231.n51CVf7C066020@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163254 Change 163254 by hselasky@hselasky_laptop001 on 2009/06/01 12:30:53 USB CORE: Fix multithread issue where the is_uref variable was not set and cleared properly in the CDEV private data. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usb_dev.c#25 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usb_dev.c#25 (text+ko) ==== @@ -169,21 +169,23 @@ cpd->bus = devclass_get_softc(usb2_devclass_ptr, cpd->bus_index); if (cpd->bus == NULL) { DPRINTFN(2, "no bus at %u\n", cpd->bus_index); + need_uref = 0; goto error; } cpd->udev = cpd->bus->devices[cpd->dev_index]; if (cpd->udev == NULL) { DPRINTFN(2, "no device at %u\n", cpd->dev_index); + need_uref = 0; goto error; } if (cpd->udev->refcount == USB_DEV_REF_MAX) { DPRINTFN(2, "no dev ref\n"); + need_uref = 0; goto error; } if (need_uref) { DPRINTFN(2, "ref udev - needed\n"); cpd->udev->refcount++; - cpd->is_uref = 1; mtx_unlock(&usb2_ref_lock); @@ -194,6 +196,11 @@ sx_xlock(cpd->udev->default_sx + 1); mtx_lock(&usb2_ref_lock); + + /* + * Set "is_uref" after grabbing the default SX lock + */ + cpd->is_uref = 1; } /* check if we are doing an open */ @@ -258,18 +265,18 @@ } mtx_unlock(&usb2_ref_lock); - if (cpd->is_uref) { + if (need_uref) { mtx_lock(&Giant); /* XXX */ } return (0); error: - if (cpd->is_uref) { + if (need_uref) { + cpd->is_uref = 0; sx_unlock(cpd->udev->default_sx + 1); if (--(cpd->udev->refcount) == 0) { usb2_cv_signal(cpd->udev->default_cv + 1); } - cpd->is_uref = 0; } mtx_unlock(&usb2_ref_lock); DPRINTFN(2, "fail\n"); @@ -289,10 +296,14 @@ static usb_error_t usb2_usb_ref_device(struct usb_cdev_privdata *cpd) { + uint8_t is_uref; + + is_uref = cpd->is_uref && sx_xlocked(cpd->udev->default_sx + 1); + /* * Check if we already got an USB reference on this location: */ - if (cpd->is_uref) + if (is_uref) return (0); /* success */ /* @@ -313,7 +324,12 @@ void usb2_unref_device(struct usb_cdev_privdata *cpd) { - if (cpd->is_uref) { + uint8_t is_uref; + + is_uref = cpd->is_uref && sx_xlocked(cpd->udev->default_sx + 1); + + if (is_uref) { + cpd->is_uref = 0; mtx_unlock(&Giant); /* XXX */ sx_unlock(cpd->udev->default_sx + 1); } @@ -330,11 +346,10 @@ } cpd->is_write = 0; } - if (cpd->is_uref) { + if (is_uref) { if (--(cpd->udev->refcount) == 0) { usb2_cv_signal(cpd->udev->default_cv + 1); } - cpd->is_uref = 0; } mtx_unlock(&usb2_ref_lock); } From hselasky at FreeBSD.org Mon Jun 1 12:35:47 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Mon Jun 1 12:35:54 2009 Subject: PERFORCE change 163255 for review Message-ID: <200906011235.n51CZjpZ066438@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163255 Change 163255 by hselasky@hselasky_laptop001 on 2009/06/01 12:34:50 IFC @163252 Affected files ... .. //depot/projects/usb/src/sys/arm/xscale/ixp425/if_npe.c#10 integrate .. //depot/projects/usb/src/sys/arm/xscale/ixp425/ixp425_qmgr.c#6 integrate .. //depot/projects/usb/src/sys/arm/xscale/ixp425/ixp425_qmgr.h#2 integrate .. //depot/projects/usb/src/sys/boot/common/boot.c#2 integrate .. //depot/projects/usb/src/sys/boot/uboot/lib/net.c#5 integrate .. //depot/projects/usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c#4 integrate .. //depot/projects/usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#3 integrate .. //depot/projects/usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#6 integrate .. //depot/projects/usb/src/sys/compat/linux/linux_socket.c#13 integrate .. //depot/projects/usb/src/sys/compat/svr4/svr4_stat.c#7 integrate .. //depot/projects/usb/src/sys/conf/NOTES#38 integrate .. //depot/projects/usb/src/sys/conf/files.powerpc#24 integrate .. //depot/projects/usb/src/sys/conf/options#30 integrate .. //depot/projects/usb/src/sys/dev/ata/chipsets/ata-intel.c#5 integrate .. //depot/projects/usb/src/sys/dev/bge/if_bge.c#18 integrate .. //depot/projects/usb/src/sys/dev/dc/if_dc.c#11 integrate .. //depot/projects/usb/src/sys/dev/e1000/if_em.c#7 integrate .. //depot/projects/usb/src/sys/dev/firewire/if_fwe.c#6 integrate .. //depot/projects/usb/src/sys/dev/firewire/if_fwip.c#8 integrate .. //depot/projects/usb/src/sys/dev/fxp/if_fxp.c#11 integrate .. //depot/projects/usb/src/sys/dev/ixgb/if_ixgb.c#6 integrate .. //depot/projects/usb/src/sys/dev/lmc/if_lmc.c#12 integrate .. //depot/projects/usb/src/sys/dev/lmc/if_lmc.h#7 integrate .. //depot/projects/usb/src/sys/dev/mge/if_mge.c#4 integrate .. //depot/projects/usb/src/sys/dev/nfe/if_nfe.c#10 integrate .. //depot/projects/usb/src/sys/dev/nge/if_nge.c#8 integrate .. //depot/projects/usb/src/sys/dev/re/if_re.c#19 integrate .. //depot/projects/usb/src/sys/dev/sf/if_sf.c#2 integrate .. //depot/projects/usb/src/sys/dev/sis/if_sis.c#5 integrate .. //depot/projects/usb/src/sys/dev/smc/if_smc.c#3 integrate .. //depot/projects/usb/src/sys/dev/ste/if_ste.c#2 integrate .. //depot/projects/usb/src/sys/dev/stge/if_stge.c#7 integrate .. //depot/projects/usb/src/sys/dev/syscons/scterm-teken.c#5 integrate .. //depot/projects/usb/src/sys/dev/syscons/teken/sequences#3 integrate .. //depot/projects/usb/src/sys/dev/syscons/teken/teken.c#7 integrate .. //depot/projects/usb/src/sys/dev/syscons/teken/teken.h#6 integrate .. //depot/projects/usb/src/sys/dev/syscons/teken/teken_subr_compat.h#3 integrate .. //depot/projects/usb/src/sys/dev/tsec/if_tsec.c#4 integrate .. //depot/projects/usb/src/sys/dev/usb/storage/umass.c#22 integrate .. //depot/projects/usb/src/sys/dev/usb/usbdevs#62 integrate .. //depot/projects/usb/src/sys/dev/usb/wlan/if_zyd.c#16 integrate .. //depot/projects/usb/src/sys/dev/vge/if_vge.c#9 integrate .. //depot/projects/usb/src/sys/dev/vr/if_vr.c#5 integrate .. //depot/projects/usb/src/sys/dev/xl/if_xl.c#5 integrate .. //depot/projects/usb/src/sys/fs/nfsclient/nfs_clbio.c#4 integrate .. //depot/projects/usb/src/sys/fs/nfsclient/nfs_clnode.c#4 integrate .. //depot/projects/usb/src/sys/fs/nfsclient/nfs_clvnops.c#4 integrate .. //depot/projects/usb/src/sys/fs/nfsserver/nfs_nfsdport.c#5 integrate .. //depot/projects/usb/src/sys/fs/nullfs/null_subr.c#6 integrate .. //depot/projects/usb/src/sys/fs/nullfs/null_vnops.c#14 integrate .. //depot/projects/usb/src/sys/fs/pseudofs/pseudofs_vnops.c#14 integrate .. //depot/projects/usb/src/sys/geom/label/g_label.c#4 integrate .. //depot/projects/usb/src/sys/i386/include/apicvar.h#9 integrate .. //depot/projects/usb/src/sys/i386/xen/mp_machdep.c#10 integrate .. //depot/projects/usb/src/sys/kern/kern_cpu.c#9 integrate .. //depot/projects/usb/src/sys/kern/kern_poll.c#12 integrate .. //depot/projects/usb/src/sys/kern/kern_prot.c#12 integrate .. //depot/projects/usb/src/sys/kern/kern_vimage.c#6 integrate .. //depot/projects/usb/src/sys/kern/uipc_syscalls.c#14 integrate .. //depot/projects/usb/src/sys/kern/vfs_bio.c#23 integrate .. //depot/projects/usb/src/sys/kern/vfs_cache.c#23 integrate .. //depot/projects/usb/src/sys/kern/vfs_default.c#12 integrate .. //depot/projects/usb/src/sys/kern/vfs_mount.c#24 integrate .. //depot/projects/usb/src/sys/kern/vfs_subr.c#22 integrate .. //depot/projects/usb/src/sys/kern/vnode_if.src#14 integrate .. //depot/projects/usb/src/sys/modules/Makefile#34 integrate .. //depot/projects/usb/src/sys/modules/cpufreq/Makefile#4 integrate .. //depot/projects/usb/src/sys/modules/geom/geom_part/geom_part_ebr/Makefile#2 integrate .. //depot/projects/usb/src/sys/modules/usb/Makefile#19 integrate .. //depot/projects/usb/src/sys/modules/zfs/Makefile#10 integrate .. //depot/projects/usb/src/sys/net/if.c#26 integrate .. //depot/projects/usb/src/sys/net/if.h#11 integrate .. //depot/projects/usb/src/sys/net/if_var.h#18 integrate .. //depot/projects/usb/src/sys/net/netisr.c#8 integrate .. //depot/projects/usb/src/sys/net/netisr.h#6 integrate .. //depot/projects/usb/src/sys/net/rtsock.c#23 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_dfs.c#3 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_freebsd.c#17 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_ht.c#12 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_superg.c#6 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_tdma.c#10 integrate .. //depot/projects/usb/src/sys/netatalk/ddp_usrreq.c#7 integrate .. //depot/projects/usb/src/sys/netinet/if_ether.c#20 integrate .. //depot/projects/usb/src/sys/netinet/igmp.c#16 integrate .. //depot/projects/usb/src/sys/netinet/in.h#12 integrate .. //depot/projects/usb/src/sys/netinet/in_pcb.c#24 integrate .. //depot/projects/usb/src/sys/netinet/in_pcb.h#20 integrate .. //depot/projects/usb/src/sys/netinet/ip_divert.c#16 integrate .. //depot/projects/usb/src/sys/netinet/ip_input.c#22 integrate .. //depot/projects/usb/src/sys/netinet/ip_output.c#19 integrate .. //depot/projects/usb/src/sys/netinet/raw_ip.c#22 integrate .. //depot/projects/usb/src/sys/netinet/sctp_pcb.c#17 integrate .. //depot/projects/usb/src/sys/netinet/sctp_sysctl.c#14 integrate .. //depot/projects/usb/src/sys/netinet/sctp_sysctl.h#11 integrate .. //depot/projects/usb/src/sys/netinet/sctp_uio.h#17 integrate .. //depot/projects/usb/src/sys/netinet/sctputil.c#20 integrate .. //depot/projects/usb/src/sys/netinet6/in6.h#9 integrate .. //depot/projects/usb/src/sys/netinet6/in6_pcb.c#18 integrate .. //depot/projects/usb/src/sys/netinet6/ip6_input.c#21 integrate .. //depot/projects/usb/src/sys/netinet6/ip6_output.c#15 integrate .. //depot/projects/usb/src/sys/netinet6/vinet6.h#8 integrate .. //depot/projects/usb/src/sys/netipsec/ipsec_input.c#10 integrate .. //depot/projects/usb/src/sys/netipx/ipx_input.c#6 integrate .. //depot/projects/usb/src/sys/netnatm/natm_proto.c#4 integrate .. //depot/projects/usb/src/sys/nfsclient/nfs_bio.c#15 integrate .. //depot/projects/usb/src/sys/pci/if_rl.c#11 integrate .. //depot/projects/usb/src/sys/powerpc/aim/machdep.c#11 integrate .. //depot/projects/usb/src/sys/powerpc/booke/machdep.c#12 integrate .. //depot/projects/usb/src/sys/powerpc/conf/GENERIC#19 integrate .. //depot/projects/usb/src/sys/powerpc/conf/NOTES#13 integrate .. //depot/projects/usb/src/sys/powerpc/cpufreq/dfs.c#1 branch .. //depot/projects/usb/src/sys/powerpc/mpc85xx/atpic.c#2 integrate .. //depot/projects/usb/src/sys/powerpc/ofw/ofw_cpu.c#1 branch .. //depot/projects/usb/src/sys/powerpc/powermac/pmu.c#3 integrate .. //depot/projects/usb/src/sys/powerpc/powermac/vcoregpio.c#1 branch .. //depot/projects/usb/src/sys/powerpc/powerpc/cpu.c#9 integrate .. //depot/projects/usb/src/sys/rpc/xdr.h#4 integrate .. //depot/projects/usb/src/sys/sys/buf.h#8 integrate .. //depot/projects/usb/src/sys/sys/cpu.h#3 integrate .. //depot/projects/usb/src/sys/sys/mount.h#19 integrate .. //depot/projects/usb/src/sys/sys/param.h#33 integrate .. //depot/projects/usb/src/sys/sys/pcpu.h#10 integrate .. //depot/projects/usb/src/sys/sys/priv.h#15 integrate .. //depot/projects/usb/src/sys/sys/sockio.h#4 integrate .. //depot/projects/usb/src/sys/sys/syscallsubr.h#11 integrate .. //depot/projects/usb/src/sys/sys/vimage.h#13 integrate .. //depot/projects/usb/src/sys/sys/vnode.h#20 integrate .. //depot/projects/usb/src/sys/vm/vm_page.c#15 integrate .. //depot/projects/usb/src/sys/vm/vm_page.h#12 integrate .. //depot/projects/usb/src/sys/xen/evtchn/evtchn.c#7 integrate Differences ... ==== //depot/projects/usb/src/sys/arm/xscale/ixp425/if_npe.c#10 (text+ko) ==== @@ -23,7 +23,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/if_npe.c,v 1.15 2009/05/23 19:14:20 sam Exp $"); +__FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/if_npe.c,v 1.17 2009/05/30 18:23:55 sam Exp $"); /* * Intel XScale NPE Ethernet driver. @@ -229,7 +229,7 @@ static void npe_txdone(int qid, void *arg); static int npe_rxbuf_init(struct npe_softc *, struct npebuf *, struct mbuf *); -static void npe_rxdone(int qid, void *arg); +static int npe_rxdone(int qid, void *arg); static void npeinit(void *); static void npestart_locked(struct ifnet *); static void npestart(struct ifnet *); @@ -777,7 +777,7 @@ */ sc->rx_qid = npeconfig[sc->sc_npeid].rx_qid; ixpqmgr_qconfig(sc->rx_qid, npe_rxbuf, 0, 1, - IX_QMGR_Q_SOURCE_ID_NOT_E, npe_rxdone, sc); + IX_QMGR_Q_SOURCE_ID_NOT_E, (qconfig_hand_t *)npe_rxdone, sc); sc->rx_freeqid = npeconfig[sc->sc_npeid].rx_freeqid; ixpqmgr_qconfig(sc->rx_freeqid, npe_rxbuf, 0, npe_rxbuf/2, 0, NULL, sc); /* @@ -1091,7 +1091,7 @@ * from the hardware queue and pass the frames up the * stack. Pass the rx buffers to the free list. */ -static void +static int npe_rxdone(int qid, void *arg) { #define P2V(a, dma) \ @@ -1099,6 +1099,7 @@ struct npe_softc *sc = arg; struct npedma *dma = &sc->rxdma; uint32_t entry; + int rx_npkts = 0; while (ixpqmgr_qread(qid, &entry) == 0) { struct npebuf *npe = P2V(NPE_QM_Q_ADDR(entry), dma); @@ -1132,6 +1133,7 @@ ifp->if_ipackets++; ifp->if_input(ifp, mrx); + rx_npkts++; } else { /* discard frame and re-use mbuf */ m = npe->ix_m; @@ -1143,19 +1145,22 @@ /* XXX should not happen */ } } + return rx_npkts; #undef P2V } #ifdef DEVICE_POLLING -static void +static int npe_poll(struct ifnet *ifp, enum poll_cmd cmd, int count) { struct npe_softc *sc = ifp->if_softc; + int rx_npkts = 0; if (ifp->if_drv_flags & IFF_DRV_RUNNING) { - npe_rxdone(sc->rx_qid, sc); + rx_npkts = npe_rxdone(sc->rx_qid, sc); npe_txdone(sc->tx_doneqid, sc); /* XXX polls both NPE's */ } + return rx_npkts; } #endif /* DEVICE_POLLING */ ==== //depot/projects/usb/src/sys/arm/xscale/ixp425/ixp425_qmgr.c#6 (text+ko) ==== @@ -57,7 +57,7 @@ * SUCH DAMAGE. */ #include -__FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/ixp425_qmgr.c,v 1.5 2008/12/20 03:26:09 sam Exp $"); +__FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/ixp425_qmgr.c,v 1.6 2009/05/30 15:14:44 attilio Exp $"); /* * Intel XScale Queue Manager support. @@ -338,7 +338,7 @@ int ixpqmgr_qconfig(int qId, int qEntries, int ne, int nf, int srcSel, - void (*cb)(int, void *), void *cbarg) + qconfig_hand_t *cb, void *cbarg) { struct ixpqmgr_softc *sc = ixpqmgr_sc; struct qmgrInfo *qi = &sc->qinfo[qId]; ==== //depot/projects/usb/src/sys/arm/xscale/ixp425/ixp425_qmgr.h#2 (text+ko) ==== @@ -26,7 +26,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGES. * - * $FreeBSD: src/sys/arm/xscale/ixp425/ixp425_qmgr.h,v 1.1 2006/11/19 23:55:23 sam Exp $ + * $FreeBSD: src/sys/arm/xscale/ixp425/ixp425_qmgr.h,v 1.2 2009/05/30 15:14:44 attilio Exp $ */ /*- @@ -229,8 +229,10 @@ #define IX_QMGR_ENTRY2_OFFSET 1 #define IX_QMGR_ENTRY4_OFFSET 3 +typedef void qconfig_hand_t(int, void *); + int ixpqmgr_qconfig(int qId, int qSizeInWords, int ne, int nf, int srcSel, - void (*cb)(int, void *), void *cbarg); + qconfig_hand_t *cb, void *cbarg); int ixpqmgr_qwrite(int qId, uint32_t entry); int ixpqmgr_qread(int qId, uint32_t *entry); int ixpqmgr_qreadm(int qId, uint32_t n, uint32_t *p); ==== //depot/projects/usb/src/sys/boot/common/boot.c#2 (text+ko) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/boot/common/boot.c,v 1.31 2005/05/19 23:03:01 sobomax Exp $"); +__FBSDID("$FreeBSD: src/sys/boot/common/boot.c,v 1.32 2009/06/01 01:02:30 rodrigc Exp $"); /* * Loading modules, booting the system @@ -287,7 +287,7 @@ int getrootmount(char *rootdev) { - char lbuf[128], *cp, *ep, *dev, *fstyp; + char lbuf[128], *cp, *ep, *dev, *fstyp, *options; int fd, error; if (getenv("vfs.root.mountfrom") != NULL) @@ -331,11 +331,30 @@ *cp = 0; fstyp = strdup(ep); - /* build the final result and save it */ + /* skip whitespace up to mount options */ + cp += 1; + while ((*cp != 0) && isspace(*cp)) + cp++; + if (*cp == 0) /* misformatted */ + continue; + /* skip text to end of mount options and delimit */ + ep = cp; + while ((*cp != 0) && !isspace(*cp)) + cp++; + *cp = 0; + options = strdup(ep); + /* Build the : and save it in vfs.root.mountfrom */ sprintf(lbuf, "%s:%s", fstyp, dev); free(dev); free(fstyp); setenv("vfs.root.mountfrom", lbuf, 0); + + /* Don't override vfs.root.mountfrom.options if it is already set */ + if (getenv("vfs.root.mountfrom.options") == NULL) { + /* save mount options */ + setenv("vfs.root.mountfrom.options", options, 0); + } + free(options); error = 0; break; } ==== //depot/projects/usb/src/sys/boot/uboot/lib/net.c#5 (text+ko) ==== @@ -26,7 +26,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/boot/uboot/lib/net.c,v 1.7 2008/11/19 17:34:28 raj Exp $"); +__FBSDID("$FreeBSD: src/sys/boot/uboot/lib/net.c,v 1.8 2009/05/30 19:28:38 marcel Exp $"); #include #include @@ -46,12 +46,6 @@ #include "glue.h" #include "libuboot.h" -#define NETIF_DEBUG -#define NETIF_VERBOSE_DEBUG -#undef NETIF_DEBUG -#undef NETIF_VERBOSE_DEBUG - - static int net_probe(struct netif *, void *); static int net_match(struct netif *, void *); static void net_init(struct iodesc *, void *); @@ -138,7 +132,7 @@ #if defined(NETIF_DEBUG) struct ether_header *eh; - printf("net_put: desc 0x%x, pkt 0x%x, len %d\n", desc, pkt, len); + printf("net_put: desc %p, pkt %p, len %d\n", desc, pkt, len); eh = pkt; printf("dst: %s ", ether_sprintf(eh->ether_dhost)); printf("src: %s ", ether_sprintf(eh->ether_shost)); @@ -175,7 +169,7 @@ int err, rlen; #if defined(NETIF_DEBUG) - printf("net_get: pkt %x, len %d, timeout %d\n", pkt, len, timeout); + printf("net_get: pkt %p, len %d, timeout %d\n", pkt, len, timeout); #endif t = getsecs(); do { ==== //depot/projects/usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c#4 (text+ko) ==== @@ -564,8 +564,13 @@ if (fp->gfs_parent == NULL || (vp->v_flag & V_XATTRDIR)) goto found; - dp = fp->gfs_parent->v_data; - + /* + * XXX cope with a FreeBSD-specific race wherein the parent's + * snapshot data can be freed before the parent is + */ + if ((dp = fp->gfs_parent->v_data) == NULL) + return (NULL); + /* * First, see if this vnode is cached in the parent. */ ==== //depot/projects/usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#3 (text+ko) ==== @@ -2392,13 +2392,23 @@ /* * Check the vdev configuration to ensure that it's capable of supporting - * a root pool. Currently, we do not support RAID-Z or partial configuration. - * In addition, only a single top-level vdev is allowed and none of the leaves - * can be wholedisks. + * a root pool. + * + * On Solaris, we do not support RAID-Z or partial configuration. In + * addition, only a single top-level vdev is allowed and none of the + * leaves can be wholedisks. + * + * For FreeBSD, we can boot from any configuration. There is a + * limitation that the boot filesystem must be either uncompressed or + * compresses with lzjb compression but I'm not sure how to enforce + * that here. */ boolean_t vdev_is_bootable(vdev_t *vd) { +#ifdef __FreeBSD_version + return (B_TRUE); +#else int c; if (!vd->vdev_ops->vdev_op_leaf) { @@ -2420,4 +2430,5 @@ return (B_FALSE); } return (B_TRUE); +#endif } ==== //depot/projects/usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#6 (text+ko) ==== @@ -3121,3 +3121,4 @@ }; DECLARE_MODULE(zfsctrl, zfs_mod, SI_SUB_VFS, SI_ORDER_ANY); MODULE_DEPEND(zfsctrl, opensolaris, 1, 1, 1); +MODULE_DEPEND(zfsctrl, krpc, 1, 1, 1); ==== //depot/projects/usb/src/sys/compat/linux/linux_socket.c#13 (text+ko) ==== @@ -27,7 +27,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/compat/linux/linux_socket.c,v 1.92 2009/05/19 09:10:53 dchagin Exp $"); +__FBSDID("$FreeBSD: src/sys/compat/linux/linux_socket.c,v 1.95 2009/05/31 12:16:31 dchagin Exp $"); /* XXX we use functions that might not exist. */ #include "opt_compat.h" @@ -445,8 +445,6 @@ return (-1); } - - static int linux_to_bsd_msghdr(struct msghdr *bhdr, const struct l_msghdr *lhdr) { @@ -477,6 +475,24 @@ } static int +linux_set_socket_flags(struct thread *td, int s, int flags) +{ + int error; + + if (flags & LINUX_SOCK_NONBLOCK) { + error = kern_fcntl(td, s, F_SETFL, O_NONBLOCK); + if (error) + return (error); + } + if (flags & LINUX_SOCK_CLOEXEC) { + error = kern_fcntl(td, s, F_SETFD, FD_CLOEXEC); + if (error) + return (error); + } + return (0); +} + +static int linux_sendit(struct thread *td, int s, struct msghdr *mp, int flags, struct mbuf *control, enum uio_seg segflg) { @@ -610,21 +626,11 @@ if (retval_socket) return (retval_socket); - if (socket_flags & LINUX_SOCK_NONBLOCK) { - retval_socket = kern_fcntl(td, td->td_retval[0], - F_SETFL, O_NONBLOCK); - if (retval_socket) { - (void)kern_close(td, td->td_retval[0]); - goto out; - } - } - if (socket_flags & LINUX_SOCK_CLOEXEC) { - retval_socket = kern_fcntl(td, td->td_retval[0], - F_SETFD, FD_CLOEXEC); - if (retval_socket) { - (void)kern_close(td, td->td_retval[0]); - goto out; - } + retval_socket = linux_set_socket_flags(td, td->td_retval[0], + socket_flags); + if (retval_socket) { + (void)kern_close(td, td->td_retval[0]); + goto out; } if (bsd_args.type == SOCK_RAW @@ -878,12 +884,20 @@ int protocol; int *rsv; } */ bsd_args; + int error, socket_flags; + int sv[2]; bsd_args.domain = linux_to_bsd_domain(args->domain); if (bsd_args.domain != PF_LOCAL) return (EAFNOSUPPORT); - bsd_args.type = args->type; + socket_flags = args->type & ~LINUX_SOCK_TYPE_MASK; + if (socket_flags & ~(LINUX_SOCK_CLOEXEC | LINUX_SOCK_NONBLOCK)) + return (EINVAL); + bsd_args.type = args->type & LINUX_SOCK_TYPE_MASK; + if (bsd_args.type < 0 || bsd_args.type > LINUX_SOCK_MAX) + return (EINVAL); + if (args->protocol != 0 && args->protocol != PF_UNIX) /* @@ -896,7 +910,25 @@ else bsd_args.protocol = 0; bsd_args.rsv = (int *)PTRIN(args->rsv); - return (socketpair(td, &bsd_args)); + error = kern_socketpair(td, bsd_args.domain, bsd_args.type, + bsd_args.protocol, sv); + if (error) + return (error); + error = linux_set_socket_flags(td, sv[0], socket_flags); + if (error) + goto out; + error = linux_set_socket_flags(td, sv[1], socket_flags); + if (error) + goto out; + + error = copyout(sv, bsd_args.rsv, 2 * sizeof(int)); + +out: + if (error) { + (void)kern_close(td, sv[0]); + (void)kern_close(td, sv[1]); + } + return (error); } struct linux_send_args { ==== //depot/projects/usb/src/sys/compat/svr4/svr4_stat.c#7 (text+ko) ==== @@ -27,7 +27,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/compat/svr4/svr4_stat.c,v 1.30 2009/05/29 21:27:12 jamie Exp $"); +__FBSDID("$FreeBSD: src/sys/compat/svr4/svr4_stat.c,v 1.31 2009/05/30 07:33:32 delphij Exp $"); #include #include @@ -458,7 +458,10 @@ break; case SVR4_SI_HW_SERIAL: - snprintf(buf, sizeof(buf), "%lu", hostid); + pr = td->td_ucred->cr_prison; + mtx_lock(&pr->pr_mtx); + snprintf(buf, sizeof(buf), "%lu", pr->pr_hostid); + mtx_unlock(&pr->pr_mtx); str = buf; break; ==== //depot/projects/usb/src/sys/conf/NOTES#38 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/NOTES,v 1.1542 2009/05/29 01:49:27 attilio Exp $ +# $FreeBSD: src/sys/conf/NOTES,v 1.1543 2009/06/01 10:30:00 pjd Exp $ # # NOTES -- Lines that can be cut/pasted into kernel and hints configs. # @@ -639,14 +639,6 @@ options ALTQ_NOPCC # Required if the TSC is unusable options ALTQ_DEBUG -# IP optional behaviour. -# IP_NONLOCALBIND disables the check that bind() usually makes that the -# address is one that is assigned to an interface on this machine. -# It allows transparent proxies to pretend to be other machines. -# How the packet GET to that machine is a problem solved elsewhere, -# smart routers, ipfw fwd, etc. -options IP_NONLOCALBIND # Allow impersonation for proxies. - # netgraph(4). Enable the base netgraph code with the NETGRAPH option. # Individual node types can be enabled with the corresponding option # listed below; however, this is not strictly necessary as netgraph ==== //depot/projects/usb/src/sys/conf/files.powerpc#24 (text+ko) ==== @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $FreeBSD: src/sys/conf/files.powerpc,v 1.101 2009/05/21 11:43:37 raj Exp $ +# $FreeBSD: src/sys/conf/files.powerpc,v 1.102 2009/05/31 09:01:23 nwhitehorn Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and @@ -97,6 +97,7 @@ powerpc/booke/swtch.S optional e500 powerpc/booke/trap.c optional e500 powerpc/booke/vm_machdep.c optional e500 +powerpc/cpufreq/dfs.c optional cpufreq powerpc/fpu/fpu_add.c optional fpu_emu powerpc/fpu/fpu_compare.c optional fpu_emu powerpc/fpu/fpu_div.c optional fpu_emu @@ -114,6 +115,7 @@ powerpc/mpc85xx/ocpbus.c optional mpc85xx powerpc/mpc85xx/opic.c optional mpc85xx powerpc/mpc85xx/pci_ocp.c optional pci mpc85xx +powerpc/ofw/ofw_cpu.c optional aim powerpc/ofw/ofw_pcibus.c optional pci aim powerpc/ofw/ofw_pcib_pci.c optional pci aim powerpc/ofw/ofw_real.c optional aim @@ -133,6 +135,7 @@ powerpc/powermac/pmu.c optional powermac pmu powerpc/powermac/macgpio.c optional powermac pci powerpc/powermac/cpcht.c optional powermac pci +powerpc/powermac/vcoregpio.c optional powermac powerpc/powerpc/altivec.c optional aim powerpc/powerpc/atomic.S standard powerpc/powerpc/autoconf.c standard ==== //depot/projects/usb/src/sys/conf/options#30 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/sys/conf/options,v 1.671 2009/05/29 01:49:27 attilio Exp $ +# $FreeBSD: src/sys/conf/options,v 1.672 2009/06/01 10:30:00 pjd Exp $ # # On the handling of kernel options # @@ -400,7 +400,6 @@ IPFIREWALL_VERBOSE_LIMIT opt_ipfw.h IPSEC opt_ipsec.h IPSEC_DEBUG opt_ipsec.h -IP_NONLOCALBIND opt_inet.h IPSEC_FILTERTUNNEL opt_ipsec.h IPSTEALTH IPX ==== //depot/projects/usb/src/sys/dev/ata/chipsets/ata-intel.c#5 (text+ko) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/dev/ata/chipsets/ata-intel.c,v 1.5 2009/03/30 22:18:38 mav Exp $"); +__FBSDID("$FreeBSD: src/sys/dev/ata/chipsets/ata-intel.c,v 1.6 2009/06/01 07:05:52 delphij Exp $"); #include "opt_ata.h" #include @@ -104,9 +104,9 @@ { ATA_I82801GB_S1, 0, INTEL_AHCI, 0, ATA_SA300, "ICH7" }, { ATA_I82801GB_R1, 0, INTEL_AHCI, 0, ATA_SA300, "ICH7" }, { ATA_I82801GB_AH, 0, INTEL_AHCI, 0, ATA_SA300, "ICH7" }, - { ATA_I82801GBM_S1, 0, INTEL_AHCI, 0, ATA_SA300, "ICH7M" }, - { ATA_I82801GBM_R1, 0, INTEL_AHCI, 0, ATA_SA300, "ICH7M" }, - { ATA_I82801GBM_AH, 0, INTEL_AHCI, 0, ATA_SA300, "ICH7M" }, + { ATA_I82801GBM_S1, 0, INTEL_AHCI, 0, ATA_SA150, "ICH7M" }, + { ATA_I82801GBM_R1, 0, INTEL_AHCI, 0, ATA_SA150, "ICH7M" }, + { ATA_I82801GBM_AH, 0, INTEL_AHCI, 0, ATA_SA150, "ICH7M" }, { ATA_I63XXESB2, 0, 0, 1, ATA_UDMA5, "63XXESB2" }, { ATA_I63XXESB2_S1, 0, INTEL_AHCI, 0, ATA_SA300, "63XXESB2" }, { ATA_I63XXESB2_S2, 0, INTEL_AHCI, 0, ATA_SA300, "63XXESB2" }, ==== //depot/projects/usb/src/sys/dev/bge/if_bge.c#18 (text+ko) ==== @@ -32,7 +32,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/dev/bge/if_bge.c,v 1.222 2009/05/14 22:36:56 delphij Exp $"); +__FBSDID("$FreeBSD: src/sys/dev/bge/if_bge.c,v 1.225 2009/05/30 17:56:19 attilio Exp $"); /* * Broadcom BCM570x family gigabit ethernet driver for FreeBSD. @@ -332,7 +332,7 @@ static int bge_get_eaddr(struct bge_softc *, uint8_t[]); static void bge_txeof(struct bge_softc *); -static void bge_rxeof(struct bge_softc *); +static int bge_rxeof(struct bge_softc *); static void bge_asf_driver_up (struct bge_softc *); static void bge_tick(void *); @@ -390,7 +390,7 @@ static int bge_miibus_writereg(device_t, int, int, int); static void bge_miibus_statchg(device_t); #ifdef DEVICE_POLLING -static void bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count); +static int bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count); #endif #define BGE_RESET_START 1 @@ -3050,18 +3050,18 @@ * 2) the frame is from the standard receive ring */ -static void +static int bge_rxeof(struct bge_softc *sc) { struct ifnet *ifp; - int stdcnt = 0, jumbocnt = 0; + int rx_npkts = 0, stdcnt = 0, jumbocnt = 0; BGE_LOCK_ASSERT(sc); /* Nothing to do. */ if (sc->bge_rx_saved_considx == sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx) - return; + return (rx_npkts); ifp = sc->bge_ifp; @@ -3193,9 +3193,10 @@ BGE_UNLOCK(sc); (*ifp->if_input)(ifp, m); BGE_LOCK(sc); + rx_npkts++; if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) - return; + return (rx_npkts); } if (stdcnt > 0) @@ -3219,6 +3220,7 @@ if (BGE_IS_5705_PLUS(sc)) ifp->if_ierrors += CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS); #endif + return (rx_npkts); } static void @@ -3271,16 +3273,17 @@ } #ifdef DEVICE_POLLING -static void +static int bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count) { struct bge_softc *sc = ifp->if_softc; uint32_t statusword; - + int rx_npkts = 0; + BGE_LOCK(sc); if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) { BGE_UNLOCK(sc); - return; + return (rx_npkts); } bus_dmamap_sync(sc->bge_cdata.bge_status_tag, @@ -3303,16 +3306,17 @@ bge_link_upd(sc); sc->rxcycles = count; - bge_rxeof(sc); + rx_npkts = bge_rxeof(sc); if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) { BGE_UNLOCK(sc); - return; + return (rx_npkts); } bge_txeof(sc); if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd)) bge_start_locked(ifp); BGE_UNLOCK(sc); + return (rx_npkts); } #endif /* DEVICE_POLLING */ ==== //depot/projects/usb/src/sys/dev/dc/if_dc.c#11 (text+ko) ==== @@ -31,7 +31,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/dev/dc/if_dc.c,v 1.199 2009/03/09 13:23:54 imp Exp $"); +__FBSDID("$FreeBSD: src/sys/dev/dc/if_dc.c,v 1.200 2009/05/30 15:14:44 attilio Exp $"); /* * DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143 @@ -236,7 +236,7 @@ static int dc_encap(struct dc_softc *, struct mbuf **); static void dc_pnic_rx_bug_war(struct dc_softc *, int); static int dc_rx_resync(struct dc_softc *); -static void dc_rxeof(struct dc_softc *); +static int dc_rxeof(struct dc_softc *); static void dc_txeof(struct dc_softc *); static void dc_tick(void *); static void dc_tx_underrun(struct dc_softc *); @@ -2640,19 +2640,21 @@ * A frame has been uploaded: pass the resulting mbuf chain up to * the higher level protocols. */ -static void +static int dc_rxeof(struct dc_softc *sc) { struct mbuf *m, *m0; struct ifnet *ifp; struct dc_desc *cur_rx; - int i, total_len = 0; + int i, total_len, rx_npkts; u_int32_t rxstat; DC_LOCK_ASSERT(sc); ifp = sc->dc_ifp; i = sc->dc_cdata.dc_rx_prod; + total_len = 0; + rx_npkts = 0; bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, BUS_DMASYNC_POSTREAD); while (!(le32toh(sc->dc_ldata->dc_rx_list[i].dc_status) & @@ -2706,7 +2708,7 @@ continue; } else { dc_init_locked(sc); - return; + return (rx_npkts); } } } @@ -2745,9 +2747,11 @@ DC_UNLOCK(sc); (*ifp->if_input)(ifp, m); DC_LOCK(sc); + rx_npkts++; } sc->dc_cdata.dc_rx_prod = i; + return (rx_npkts); } /* @@ -2989,20 +2993,21 @@ #ifdef DEVICE_POLLING static poll_handler_t dc_poll; -static void +static int dc_poll(struct ifnet *ifp, enum poll_cmd cmd, int count) { struct dc_softc *sc = ifp->if_softc; + int rx_npkts = 0; DC_LOCK(sc); if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) { DC_UNLOCK(sc); - return; + return (rx_npkts); } sc->rxcycles = count; - dc_rxeof(sc); + rx_npkts = dc_rxeof(sc); dc_txeof(sc); if (!IFQ_IS_EMPTY(&ifp->if_snd) && !(ifp->if_drv_flags & IFF_DRV_OACTIVE)) @@ -3017,7 +3022,7 @@ DC_ISR_BUS_ERR); if (!status) { DC_UNLOCK(sc); - return; + return (rx_npkts); } /* ack what we have */ CSR_WRITE_4(sc, DC_ISR, status); @@ -3043,6 +3048,7 @@ } } DC_UNLOCK(sc); + return (rx_npkts); } #endif /* DEVICE_POLLING */ ==== //depot/projects/usb/src/sys/dev/e1000/if_em.c#7 (text+ko) ==== @@ -30,7 +30,7 @@ POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ -/*$FreeBSD: src/sys/dev/e1000/if_em.c,v 1.15 2009/05/14 03:33:04 kmacy Exp $*/ +/*$FreeBSD: src/sys/dev/e1000/if_em.c,v 1.16 2009/05/30 15:14:44 attilio Exp $*/ #ifdef HAVE_KERNEL_OPTION_HEADERS #include "opt_device_polling.h" @@ -261,7 +261,7 @@ static void em_tx_purge(struct adapter *); static int em_allocate_receive_structures(struct adapter *); static int em_allocate_transmit_structures(struct adapter *); -static int em_rxeof(struct adapter *, int); +static int em_rxeof(struct adapter *, int, int *); #ifndef __NO_STRICT_ALIGNMENT static int em_fixup_rx(struct adapter *); #endif @@ -1653,16 +1653,20 @@ * Legacy polling routine * *********************************************************************/ -static void +static int em_poll(struct ifnet *ifp, enum poll_cmd cmd, int count) { - struct adapter *adapter = ifp->if_softc; + struct adapter *adapter; u32 reg_icr; + int rx_npkts; + adapter = ifp->if_softc; + rx_npkts = 0; + EM_CORE_LOCK(adapter); if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) { EM_CORE_UNLOCK(adapter); - return; + return (rx_npkts); } if (cmd == POLL_AND_CHECK_STATUS) { @@ -1677,7 +1681,7 @@ } EM_CORE_UNLOCK(adapter); - em_rxeof(adapter, count); + em_rxeof(adapter, count, &rx_npkts); EM_TX_LOCK(adapter); em_txeof(adapter); @@ -1685,6 +1689,7 @@ if (!ADAPTER_RING_EMPTY(adapter)) em_start_locked(ifp); EM_TX_UNLOCK(adapter); + return (rx_npkts); } #endif /* DEVICE_POLLING */ @@ -1718,7 +1723,7 @@ EM_TX_LOCK(adapter); em_txeof(adapter); - em_rxeof(adapter, -1); + em_rxeof(adapter, -1, NULL); em_txeof(adapter); EM_TX_UNLOCK(adapter); @@ -1771,7 +1776,7 @@ if (ifp->if_drv_flags & IFF_DRV_RUNNING) { - if (em_rxeof(adapter, adapter->rx_process_limit) != 0) + if (em_rxeof(adapter, adapter->rx_process_limit, NULL) != 0) taskqueue_enqueue(adapter->tq, &adapter->rxtx_task); EM_TX_LOCK(adapter); em_txeof(adapter); @@ -1882,7 +1887,7 @@ ++adapter->rx_irq; if ((ifp->if_drv_flags & IFF_DRV_RUNNING) && - (em_rxeof(adapter, adapter->rx_process_limit) != 0)) + (em_rxeof(adapter, adapter->rx_process_limit, NULL) != 0)) taskqueue_enqueue(adapter->tq, &adapter->rx_task); /* Reenable this interrupt */ E1000_WRITE_REG(&adapter->hw, E1000_IMS, EM_MSIX_RX); @@ -1920,7 +1925,7 @@ struct ifnet *ifp = adapter->ifp; if ((ifp->if_drv_flags & IFF_DRV_RUNNING) && - (em_rxeof(adapter, adapter->rx_process_limit) != 0)) + (em_rxeof(adapter, adapter->rx_process_limit, NULL) != 0)) taskqueue_enqueue(adapter->tq, &adapter->rx_task); } @@ -4461,23 +4466,26 @@ * *********************************************************************/ static int -em_rxeof(struct adapter *adapter, int count) +em_rxeof(struct adapter *adapter, int count, int *rx_npktsp) { struct ifnet *ifp = adapter->ifp;; struct mbuf *mp; u8 status, accept_frame = 0, eop = 0; >>> TRUNCATED FOR MAIL (1000 lines) <<< From sathya at FreeBSD.org Mon Jun 1 12:54:06 2009 From: sathya at FreeBSD.org (Satish Srinivasan) Date: Mon Jun 1 12:54:13 2009 Subject: PERFORCE change 163257 for review Message-ID: <200906011254.n51Cs4jL077746@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163257 Change 163257 by sathya@sathya-fbsd on 2009/06/01 12:53:43 Parse praudit's XML output to write as BSM records. Affected files ... .. //depot/projects/soc2009/trailconv/Makefile#2 edit .. //depot/projects/soc2009/trailconv/sample-log.xml#1 add .. //depot/projects/soc2009/trailconv/xml2bsm.c#1 add .. //depot/projects/soc2009/trailconv/xml2bsm.h#1 add Differences ... ==== //depot/projects/soc2009/trailconv/Makefile#2 (text+ko) ==== @@ -1,5 +1,8 @@ -all: log2bsm.c +log2bsm: log2bsm.c cc -o log2bsm log2bsm.c -clean: log2bsm - rm log2bsm+xml2bsm: xml2bsm.c xml2bsm.h + cc -o xml2bsm xml2bsm.c -I/usr/local/include/ /usr/local/lib/libparsifal.so + +clean: xml2bsm + rm xml2bsm log2bsm From hselasky at FreeBSD.org Mon Jun 1 13:03:15 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Mon Jun 1 13:03:20 2009 Subject: PERFORCE change 163258 for review Message-ID: <200906011303.n51D3DLp079406@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163258 Change 163258 by hselasky@hselasky_laptop001 on 2009/06/01 13:02:33 IFC (more) Affected files ... .. //depot/projects/usb/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c#32 integrate .. //depot/projects/usb/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h#14 integrate Differences ... ==== //depot/projects/usb/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c#32 (text+ko) ==== @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * $Id: ng_ubt.c,v 1.16 2003/10/10 19:15:06 max Exp $ - * $FreeBSD: head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c 192984 2009-05-28 17:36:36Z thompsa $ + * $FreeBSD: src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c,v 1.41 2009/05/29 18:46:57 thompsa Exp $ */ /* @@ -238,12 +238,12 @@ ****************************************************************************/ /* USB methods */ -static usb2_callback_t ubt_ctrl_write_callback; -static usb2_callback_t ubt_intr_read_callback; -static usb2_callback_t ubt_bulk_read_callback; -static usb2_callback_t ubt_bulk_write_callback; -static usb2_callback_t ubt_isoc_read_callback; -static usb2_callback_t ubt_isoc_write_callback; +static usb_callback_t ubt_ctrl_write_callback; +static usb_callback_t ubt_intr_read_callback; +static usb_callback_t ubt_bulk_read_callback; +static usb_callback_t ubt_bulk_write_callback; +static usb_callback_t ubt_isoc_read_callback; +static usb_callback_t ubt_isoc_write_callback; static int ubt_fwd_mbuf_up(ubt_softc_p, struct mbuf **); static int ubt_isoc_read_one_frame(struct usb_xfer *, int); ==== //depot/projects/usb/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h#14 (text+ko) ==== @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * $Id: ng_ubt_var.h,v 1.2 2003/03/22 23:44:36 max Exp $ - * $FreeBSD: head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h 192984 2009-05-28 17:36:36Z thompsa $ + * $FreeBSD: src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h,v 1.11 2009/05/28 17:36:36 thompsa Exp $ */ #ifndef _NG_UBT_VAR_H_ From hselasky at FreeBSD.org Mon Jun 1 13:17:30 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Mon Jun 1 13:19:18 2009 Subject: PERFORCE change 163260 for review Message-ID: <200906011317.n51DHSF1080681@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163260 Change 163260 by hselasky@hselasky_laptop001 on 2009/06/01 13:16:45 IFC (more) Affected files ... .. //depot/projects/usb/src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c#27 integrate Differences ... ==== //depot/projects/usb/src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c#27 (text+ko) ==== @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * $Id: ubtbcmfw.c,v 1.3 2003/10/10 19:15:08 max Exp $ - * $FreeBSD: head/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c 192984 2009-05-28 17:36:36Z thompsa $ + * $FreeBSD: src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c,v 1.24 2009/05/29 18:46:57 thompsa Exp $ */ #include "usbdevs.h" @@ -79,16 +79,16 @@ static device_attach_t ubtbcmfw_attach; static device_detach_t ubtbcmfw_detach; -static usb2_callback_t ubtbcmfw_write_callback; -static usb2_callback_t ubtbcmfw_read_callback; +static usb_callback_t ubtbcmfw_write_callback; +static usb_callback_t ubtbcmfw_read_callback; -static usb2_fifo_close_t ubtbcmfw_close; -static usb2_fifo_cmd_t ubtbcmfw_start_read; -static usb2_fifo_cmd_t ubtbcmfw_start_write; -static usb2_fifo_cmd_t ubtbcmfw_stop_read; -static usb2_fifo_cmd_t ubtbcmfw_stop_write; -static usb2_fifo_ioctl_t ubtbcmfw_ioctl; -static usb2_fifo_open_t ubtbcmfw_open; +static usb_fifo_close_t ubtbcmfw_close; +static usb_fifo_cmd_t ubtbcmfw_start_read; +static usb_fifo_cmd_t ubtbcmfw_start_write; +static usb_fifo_cmd_t ubtbcmfw_stop_read; +static usb_fifo_cmd_t ubtbcmfw_stop_write; +static usb_fifo_ioctl_t ubtbcmfw_ioctl; +static usb_fifo_open_t ubtbcmfw_open; static struct usb_fifo_methods ubtbcmfw_fifo_methods = { From zec at FreeBSD.org Mon Jun 1 13:33:47 2009 From: zec at FreeBSD.org (Marko Zec) Date: Mon Jun 1 13:33:54 2009 Subject: PERFORCE change 163261 for review Message-ID: <200906011333.n51DXjc5081946@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163261 Change 163261 by zec@zec_amdx4 on 2009/06/01 13:33:33 Garbage collect diffs against head while working towards unbreaking options VIMAGE build. Affected files ... .. //depot/projects/vimage/src/sys/net/if_loop.c#48 edit .. //depot/projects/vimage/src/sys/net80211/ieee80211.c#34 edit .. //depot/projects/vimage/src/sys/netinet/if_ether.c#44 edit .. //depot/projects/vimage/src/sys/netinet/in_var.h#20 edit .. //depot/projects/vimage/src/sys/netinet/raw_ip.c#46 edit .. //depot/projects/vimage/src/sys/netinet/sctp_crc32.c#14 edit .. //depot/projects/vimage/src/sys/netinet/tcp_hostcache.c#38 edit .. //depot/projects/vimage/src/sys/netinet/tcp_subr.c#84 edit .. //depot/projects/vimage/src/sys/netinet/tcp_syncache.c#53 edit .. //depot/projects/vimage/src/sys/netinet/tcp_timewait.c#33 edit .. //depot/projects/vimage/src/sys/netinet/tcp_var.h#34 edit .. //depot/projects/vimage/src/sys/netinet/udp_usrreq.c#56 edit .. //depot/projects/vimage/src/sys/netinet/vinet.h#59 edit .. //depot/projects/vimage/src/sys/nfsclient/nfs_vnops.c#35 edit Differences ... ==== //depot/projects/vimage/src/sys/net/if_loop.c#48 (text+ko) ==== @@ -98,13 +98,7 @@ #define LO_CSUM_SET (CSUM_DATA_VALID | CSUM_PSEUDO_HDR | \ CSUM_IP_CHECKED | CSUM_IP_VALID | \ CSUM_SCTP_VALID) -#define LONAME "lo" -struct lo_softc { - struct ifnet *sc_ifp; - LIST_ENTRY(lo_softc) sc_next; -}; - int loioctl(struct ifnet *, u_long, caddr_t); static void lortrequest(int, struct rtentry *, struct rt_addrinfo *); int looutput(struct ifnet *ifp, struct mbuf *m, @@ -136,32 +130,21 @@ }; #endif /* !VIMAGE_GLOBALS */ -static MALLOC_DEFINE(M_LO, LONAME, "Loopback Interface"); - -static struct mtx lo_mtx; - IFC_SIMPLE_DECLARE(lo, 1); static void lo_clone_destroy(struct ifnet *ifp) { - struct lo_softc *sc; #ifdef INVARIANTS INIT_VNET_NET(ifp->if_vnet); #endif - sc = ifp->if_softc; - /* XXX: destroying lo0 will lead to panics. */ KASSERT(V_loif != ifp, ("%s: destroying lo0", __func__)); - mtx_lock(&lo_mtx); - LIST_REMOVE(sc, sc_next); - mtx_unlock(&lo_mtx); bpfdetach(ifp); if_detach(ifp); if_free(ifp); - free(sc, M_LO); } static int @@ -169,16 +152,10 @@ { INIT_VNET_NET(curvnet); struct ifnet *ifp; - struct lo_softc *sc; - MALLOC(sc, struct lo_softc *, sizeof(*sc), M_LO, M_WAITOK | M_ZERO); - ifp = sc->sc_ifp = if_alloc(IFT_LOOP); - if (ifp == NULL) { - free(sc, M_LO); + ifp = if_alloc(IFT_LOOP); + if (ifp == NULL) return (ENOSPC); - } - if (V_loif == NULL) - V_loif = ifp; if_initname(ifp, ifc->ifc_name, unit); ifp->if_mtu = LOMTU; @@ -188,11 +165,10 @@ ifp->if_snd.ifq_maxlen = ifqmaxlen; ifp->if_capabilities = ifp->if_capenable = IFCAP_HWCSUM; ifp->if_hwassist = LO_CSUM_FEATURES; - ifp->if_softc = sc; if_attach(ifp); bpfattach(ifp, DLT_NULL, sizeof(u_int32_t)); - mtx_lock(&lo_mtx); - mtx_unlock(&lo_mtx); + if (V_loif == NULL) + V_loif = ifp; return (0); } @@ -218,27 +194,10 @@ static int vnet_loif_idetach(unused) const void *unused; { - INIT_VNET_NET(curvnet); - struct lo_softc *sc, *nsc; - LIST_FOREACH_SAFE(sc, &V_lo_list, sc_next, nsc) { - struct ifnet *ifp = sc->sc_ifp; + /* XXX nothing done here - revisit! */ - if (ifp == V_loif) { - /* - * A hack to allow lo0 to be detached: - * bump if_unit number from 0 to 1. By - * setting V_loif to NULL we prevent queuing - * of routing messages that would have - * m_pkthdr.rcvif pointing to a nonexisting - * ifnet, i.e. the lo0 we just destroyed. - */ - ifp->if_dunit = 1; - V_loif = NULL; - } - if_clone_destroy(ifp->if_xname); - } - return 0; + return (0); } #endif @@ -248,7 +207,6 @@ switch (type) { case MOD_LOAD: - mtx_init(&lo_mtx, "lo_mtx", NULL, MTX_DEF); #ifndef VIMAGE_GLOBALS vnet_mod_register(&vnet_loif_modinfo); #else ==== //depot/projects/vimage/src/sys/net80211/ieee80211.c#34 (text+ko) ==== @@ -37,7 +37,6 @@ #include #include -#include #include #include @@ -249,9 +248,6 @@ struct ifaddr *ifa; KASSERT(ifp->if_type == IFT_IEEE80211, ("if_type %d", ifp->if_type)); -#ifdef VIMAGE - ifp->if_reassign = NULL; /* Override ether_reassign() */ -#endif IEEE80211_LOCK_INIT(ic, ifp->if_xname); TAILQ_INIT(&ic->ic_vaps); @@ -742,30 +738,6 @@ IEEE80211_UNLOCK(ic); } -#ifdef VIMAGE -void -ieee80211_reassign( struct ieee80211vap *vap, struct vnet *vnet, char *dname) -{ - struct ifnet *ifp = vap->iv_ifp; - u_char eaddr[6]; - - bcopy(IF_LLADDR(ifp), eaddr, 6); - bpfdetach(ifp); - ether_ifdetach(ifp); - ifp->if_bpf = NULL; - vap->iv_rawbpf = NULL; - if_reassign_common(ifp, vnet, ifp->if_dname); - if (dname) - snprintf(ifp->if_xname, IFNAMSIZ, "%s", dname); - - CURVNET_SET_QUIET(vnet); - ether_ifattach(ifp, eaddr); - bpfattach2(ifp, DLT_IEEE802_11, - sizeof(struct ieee80211_frame_addr4), &vap->iv_rawbpf); - CURVNET_RESTORE(); -} -#endif - static __inline int mapgsm(u_int freq, u_int flags) { ==== //depot/projects/vimage/src/sys/netinet/if_ether.c#44 (text+ko) ==== @@ -822,9 +822,9 @@ #else arp_iattach(NULL); #endif + arpintrq.ifq_maxlen = 50; mtx_init(&arpintrq.ifq_mtx, "arp_inq", NULL, MTX_DEF); netisr_register(NETISR_ARP, arpintr, &arpintrq, 0); } - SYSINIT(arp, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY, arp_init, 0); ==== //depot/projects/vimage/src/sys/netinet/in_var.h#20 (text+ko) ==== @@ -108,15 +108,6 @@ extern u_long in_ifaddrhmask; /* mask for hash table */ #endif -/* - * IP datagram reassembly. - */ -#define IPREASS_NHASH_LOG2 6 -#define IPREASS_NHASH (1 << IPREASS_NHASH_LOG2) -#define IPREASS_HMASK (IPREASS_NHASH - 1) -#define IPREASS_HASH(x,y) \ - (((((x) & 0xF) | ((((x) >> 8) & 0xF) << 4)) ^ (y)) & IPREASS_HMASK) - #define INADDR_NHASH_LOG2 9 #define INADDR_NHASH (1 << INADDR_NHASH_LOG2) #define INADDR_HASHVAL(x) fnv_32_buf((&(x)), sizeof(x), FNV1_32_INIT) ==== //depot/projects/vimage/src/sys/netinet/raw_ip.c#46 (text+ko) ==== @@ -197,7 +197,6 @@ hashinit(1, M_PCB, &V_ripcbinfo.ipi_porthashmask); V_ripcbinfo.ipi_zone = uma_zcreate("ripcb", sizeof(struct inpcb), NULL, NULL, rip_inpcb_init, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); - V_ripcbinfo.ipi_vnet = curvnet; uma_zone_set_max(V_ripcbinfo.ipi_zone, maxsockets); EVENTHANDLER_REGISTER(maxsockets_change, rip_zone_change, NULL, EVENTHANDLER_PRI_ANY); ==== //depot/projects/vimage/src/sys/netinet/sctp_crc32.c#14 (text+ko) ==== @@ -30,6 +30,7 @@ /* $KAME: sctp_crc32.c,v 1.12 2005/03/06 16:04:17 itojun Exp $ */ + #include __FBSDID("$FreeBSD: src/sys/netinet/sctp_crc32.c,v 1.17 2009/05/07 16:43:49 rrs Exp $"); ==== //depot/projects/vimage/src/sys/netinet/tcp_hostcache.c#38 (text+ko) ==== @@ -216,8 +216,6 @@ /* * Allocate the hostcache entries. - * - * XXX don't need a separate zone for each hc instance - revisit!!! */ V_tcp_hostcache.zone = uma_zcreate("hostcache", sizeof(struct hc_metrics), ==== //depot/projects/vimage/src/sys/netinet/tcp_subr.c#84 (text+ko) ==== @@ -290,6 +290,7 @@ { INIT_VNET_INET(curvnet); + uma_zone_set_max(V_tcbinfo.ipi_zone, maxsockets); uma_zone_set_max(V_tcpcb_zone, maxsockets); tcp_tw_zone_change(); } @@ -345,17 +346,6 @@ V_tcp_autosndbuf_inc = 8*1024; V_tcp_autosndbuf_max = 256*1024; - /* - * These have to be type stable for the benefit of the timers. - */ - V_tcpcb_zone = uma_zcreate("tcpcb", sizeof(struct tcpcb_mem), - NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); - uma_zone_set_max(V_tcpcb_zone, maxsockets); - V_sack_hole_zone = uma_zcreate("sackhole", sizeof(struct sackhole), - NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); - - tcp_tw_init(); - V_tcp_do_sack = 1; V_tcp_sack_maxholes = 128; V_tcp_sack_globalmaxholes = 65536; @@ -367,10 +357,10 @@ INP_INFO_LOCK_INIT(&V_tcbinfo, "tcp"); LIST_INIT(&V_tcb); - V_tcbinfo.ipi_listhead = &V_tcb; #ifdef VIMAGE V_tcbinfo.ipi_vnet = curvnet; #endif + V_tcbinfo.ipi_listhead = &V_tcb; hashsize = TCBHASHSIZE; TUNABLE_INT_FETCH("net.inet.tcp.tcbhashsize", &hashsize); if (!powerof2(hashsize)) { @@ -426,10 +416,6 @@ panic("tcp_init"); #undef TCP_MINPROTOHDR - - if (!IS_DEFAULT_VNET(curvnet)) - return; - ISN_LOCK_INIT(); callout_init(&isn_callout, CALLOUT_MPSAFE); callout_reset(&isn_callout, hz/100, tcp_isn_tick, NULL); @@ -737,10 +723,10 @@ if (tm == NULL) return (NULL); tp = &tm->tcb; - tp->t_timers = &tm->tt; #ifdef VIMAGE tp->t_vnet = inp->inp_vnet; #endif + tp->t_timers = &tm->tt; /* LIST_INIT(&tp->t_segq); */ /* XXX covered by M_ZERO */ tp->t_maxseg = tp->t_maxopd = #ifdef INET6 ==== //depot/projects/vimage/src/sys/netinet/tcp_syncache.c#53 (text+ko) ==== @@ -271,7 +271,6 @@ } /* Create the syncache entry zone. */ - /* XXX one zone for all vnets should do fine - revisit!!! */ V_tcp_syncache.zone = uma_zcreate("syncache", sizeof(struct syncache), NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); uma_zone_set_max(V_tcp_syncache.zone, V_tcp_syncache.cache_limit); ==== //depot/projects/vimage/src/sys/netinet/tcp_timewait.c#33 (text+ko) ==== @@ -170,8 +170,6 @@ { INIT_VNET_INET(curvnet); - TAILQ_INIT(&V_twq_2msl); - V_tcptw_zone = uma_zcreate("tcptw", sizeof(struct tcptw), NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); TUNABLE_INT_FETCH("net.inet.tcp.maxtcptw", &maxtcptw); @@ -179,6 +177,7 @@ uma_zone_set_max(V_tcptw_zone, tcptw_auto_size()); else uma_zone_set_max(V_tcptw_zone, maxtcptw); + TAILQ_INIT(&V_twq_2msl); } #ifdef VIMAGE ==== //depot/projects/vimage/src/sys/netinet/tcp_var.h#34 (text+ko) ==== @@ -541,7 +541,6 @@ extern int ss_fltsz; extern int ss_fltsz_local; -extern int tcp_autorcvbuf; extern int blackhole; extern int drop_synfin; extern int tcp_do_rfc3042; ==== //depot/projects/vimage/src/sys/netinet/udp_usrreq.c#56 (text+ko) ==== @@ -179,9 +179,6 @@ V_udp_blackhole = 0; - EVENTHANDLER_REGISTER(maxsockets_change, udp_zone_change, NULL, - EVENTHANDLER_PRI_ANY); - INP_INFO_LOCK_INIT(&V_udbinfo, "udp"); LIST_INIT(&V_udb); #ifdef VIMAGE @@ -194,13 +191,14 @@ &V_udbinfo.ipi_porthashmask); V_udbinfo.ipi_zone = uma_zcreate("udp_inpcb", sizeof(struct inpcb), NULL, NULL, udp_inpcb_init, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); - V_udbinfo.ipi_vnet = curvnet; uma_zone_set_max(V_udbinfo.ipi_zone, maxsockets); V_udpcb_zone = uma_zcreate("udpcb", sizeof(struct udpcb), NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); uma_zone_set_max(V_udpcb_zone, maxsockets); + EVENTHANDLER_REGISTER(maxsockets_change, udp_zone_change, NULL, + EVENTHANDLER_PRI_ANY); } int ==== //depot/projects/vimage/src/sys/netinet/vinet.h#59 (text+ko) ==== @@ -313,7 +313,7 @@ #define V_reply_src VNET_INET(reply_src) #define V_ripcb VNET_INET(ripcb) #define V_ripcbinfo VNET_INET(ripcbinfo) -/* #define V_router_info_head VNET_INET(router_info_head) */ +#define V_router_info_head VNET_INET(router_info_head) #define V_rsvp_on VNET_INET(rsvp_on) #define V_rtq_minreallyold VNET_INET(rtq_minreallyold) #define V_rtq_reallyold VNET_INET(rtq_reallyold) @@ -370,8 +370,6 @@ #define V_tcp_syncookies VNET_INET(tcp_syncookies) #define V_tcp_syncookiesonly VNET_INET(tcp_syncookiesonly) #define V_tcp_v6mssdflt VNET_INET(tcp_v6mssdflt) -#define V_tcpcb_zone VNET_INET(tcpcb_zone) -#define V_tcptw_zone VNET_INET(tcptw_zone) #define V_tcpstat VNET_INET(tcpstat) #define V_twq_2msl VNET_INET(twq_2msl) #define V_udb VNET_INET(udb) ==== //depot/projects/vimage/src/sys/nfsclient/nfs_vnops.c#35 (text+ko) ==== @@ -1520,11 +1520,7 @@ if (v3) { tl = nfsm_build(u_int32_t *, NFSX_UNSIGNED); if (fmode & O_EXCL) { -#ifdef NFS_LEGACYRPC - CURVNET_SET(VFSTONFS(dvp->v_mount)->nm_so->so_vnet); -#else - CURVNET_SET(VFSTONFS(dvp->v_mount)->nm_rpcclnt.rc_so->so_vnet); -#endif + CURVNET_SET(P_TO_VNET(&proc0)); /* XXX revisit! */ *tl = txdr_unsigned(NFSV3CREATE_EXCLUSIVE); tl = nfsm_build(u_int32_t *, NFSX_V3CREATEVERF); #ifdef INET From rene at FreeBSD.org Mon Jun 1 14:05:20 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Mon Jun 1 14:05:27 2009 Subject: PERFORCE change 163262 for review Message-ID: <200906011405.n51E5Hje085355@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163262 Change 163262 by rene@rene_self on 2009/06/01 14:05:05 MFen handbook/firewalls 1.86->1.89 (first diff chunk only -- who is on it?) Affected files ... .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml#7 edit Differences ... ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml#7 (text+ko) ==== @@ -5,7 +5,7 @@ $FreeBSDnl: doc/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml,v 1.33 2006/01/05 21:13:21 siebrand Exp $ %SOURCE% en_US.ISO8859-1/books/handbook/firewalls/chapter.sgml - %SRCID% 1.86 + %SRCID% 1.89 --> @@ -30,6 +30,10 @@ Mazeland Vertaald door + + René + Ladan + @@ -138,12 +142,22 @@ alleen verkeer toe dat past bij de regels en blokkeert al het overige verkeer. - Inclusieve firewalls zijn in het algemeen veiliger dan - exclusieve firewalls omdat ze het risico op het toestaan van - ongewild verkeer door een firewall aanzienlijk reduceren. + Een inclusieve firewall biedt veel betere controle over het + uitgaande verkeer, waardoor het een betere keuze is voor systemen + die diensten op het publieke Internet aanbieden. Het beheert ook + het type vekeer dat van het publieke Internet afkomt en toegang + heeft tot uw privé-netwerk. Al het verkeer dat niet aan + de regels voldoet wordt geblokkeerd en gelogd, dat is zo + ontworpen. Inclusieve firewalls zijn over het algemeen veiliger + dan exclusieve firewalls omdat ze het risico dat ongewenst verkeer + door ze heen gaat aanzienlijk verminderen. + + Tenzij anders aangegeven, creëeren alle configuratie- + en voorbeelden van regelverzamelingen inclusieve firewalls. + De beveiliging kan nog verder vergroot worden met een - stateful firewall. Een stateful firewall houdt + stateful firewall. Dit type firewall houdt bij welke connecties er door de firewall tot stand zijn gekomen en laat alleen verkeer door dat bij een bestaande connectie hoort of onderdeel is van een connectie in opbouw. Het nadeel van een From gabor at FreeBSD.org Mon Jun 1 15:00:23 2009 From: gabor at FreeBSD.org (Gabor Kovesdan) Date: Mon Jun 1 15:00:29 2009 Subject: PERFORCE change 163266 for review Message-ID: <200906011500.n51F0JIG090373@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163266 Change 163266 by gabor@gabor_server on 2009/06/01 14:59:34 - Make this WARNS=6 clean Affected files ... .. //depot/projects/soc2008/gabor_textproc/dc/Makefile#2 edit .. //depot/projects/soc2008/gabor_textproc/dc/bcode.c#2 edit .. //depot/projects/soc2008/gabor_textproc/dc/bcode.h#2 edit .. //depot/projects/soc2008/gabor_textproc/dc/dc.c#2 edit .. //depot/projects/soc2008/gabor_textproc/dc/inout.c#2 edit .. //depot/projects/soc2008/gabor_textproc/dc/stack.c#2 edit Differences ... ==== //depot/projects/soc2008/gabor_textproc/dc/Makefile#2 (text+ko) ==== @@ -2,9 +2,9 @@ PROG= dc SRCS= dc.c bcode.c inout.c mem.c stack.c -COPTS+= -Wall -CFLAGS+= -std=c99 -Wall -pedantic LDADD= -lcrypto DPADD= ${LIBCRYPTO} +WARNS?= 6 + .include ==== //depot/projects/soc2008/gabor_textproc/dc/bcode.c#2 (text+ko) ==== @@ -34,6 +34,8 @@ /* #define DEBUGGING */ +#define __inline + #define MAX_ARRAY_INDEX 2048 #define READSTACK_SIZE 8 @@ -58,26 +60,26 @@ static struct bmachine bmachine; static void sighandler(int); -static inline int readch(void); -static inline void unreadch(void); -static inline char *readline(void); -static inline void src_free(void); +static __inline int readch(void); +static __inline void unreadch(void); +static __inline char *readline(void); +static __inline void src_free(void); -static inline u_int max(u_int, u_int); +static __inline u_int max(u_int, u_int); static u_long get_ulong(struct number *); -static inline void push_number(struct number *); -static inline void push_string(char *); -static inline void push(struct value *); -static inline struct value *tos(void); -static inline struct number *pop_number(void); -static inline char *pop_string(void); -static inline void clear_stack(void); -static inline void print_tos(void); +static __inline void push_number(struct number *); +static __inline void push_string(char *); +static __inline void push(struct value *); +static __inline struct value *tos(void); +static __inline struct number *pop_number(void); +static __inline char *pop_string(void); +static __inline void clear_stack(void); +static __inline void print_tos(void); static void pop_print(void); static void pop_printn(void); -static inline void print_stack(void); -static inline void dup(void); +static __inline void print_stack(void); +static __inline void dup(void); static void swap(void); static void drop(void); @@ -223,18 +225,21 @@ #define JUMP_TABLE_DATA_SIZE \ (sizeof(jump_table_data)/sizeof(jump_table_data[0])) -/* ARGSUSED */ static void sighandler(int ignored) { - bmachine.interrupted = true; + switch (ignored) + { + default: + bmachine.interrupted = true; + } } void init_bmachine(bool extended_registers) { - int i; + unsigned int i; bmachine.extended_regs = extended_registers; bmachine.reg_array_size = bmachine.extended_regs ? @@ -275,7 +280,7 @@ bmachine.readstack[0] = *src; } -static inline int +static __inline int readch(void) { struct source *src = &bmachine.readstack[bmachine.readsp]; @@ -283,7 +288,7 @@ return (src->vtable->readchar(src)); } -static inline void +static __inline void unreadch(void) { struct source *src = &bmachine.readstack[bmachine.readsp]; @@ -291,7 +296,7 @@ src->vtable->unreadchar(src); } -static inline char * +static __inline char * readline(void) { struct source *src = &bmachine.readstack[bmachine.readsp]; @@ -299,7 +304,7 @@ return (src->vtable->readline(src)); } -static inline void +static __inline void src_free(void) { struct source *src = &bmachine.readstack[bmachine.readsp]; @@ -332,7 +337,7 @@ #endif -static inline u_int +static __inline u_int max(u_int a, u_int b) { @@ -347,7 +352,7 @@ void scale_number(BIGNUM *n, int s) { - int abs_scale; + unsigned int abs_scale; if (s == 0) return; @@ -417,7 +422,7 @@ } } -inline void +__inline void normalize(struct number *n, u_int s) { @@ -440,70 +445,70 @@ bn_check(BN_sub(n->number, &zero, n->number)); } -static inline void +static __inline void push_number(struct number *n) { stack_pushnumber(&bmachine.stack, n); } -static inline void +static __inline void push_string(char *string) { stack_pushstring(&bmachine.stack, string); } -static inline void +static __inline void push(struct value *v) { stack_push(&bmachine.stack, v); } -static inline struct value * +static __inline struct value * tos(void) { return (stack_tos(&bmachine.stack)); } -static inline struct value * +static __inline struct value * pop(void) { return (stack_pop(&bmachine.stack)); } -static inline struct number * +static __inline struct number * pop_number(void) { return (stack_popnumber(&bmachine.stack)); } -static inline char * +static __inline char * pop_string(void) { return (stack_popstring(&bmachine.stack)); } -static inline void +static __inline void clear_stack(void) { stack_clear(&bmachine.stack); } -static inline void +static __inline void print_stack(void) { stack_print(stdout, &bmachine.stack, "", bmachine.obase); } -static inline void +static __inline void print_tos(void) { struct value *value = tos(); @@ -550,7 +555,7 @@ } } -static inline void +static __inline void dup(void) { @@ -792,7 +797,7 @@ } else idx = (ch1 << 8) + ch2 + UCHAR_MAX + 1; } - if (idx < 0 || idx >= bmachine.reg_array_size) { + if (idx < 0 || (unsigned)idx >= bmachine.reg_array_size) { warnx("internal error: reg num = %d", idx); idx = -1; } @@ -1762,7 +1767,7 @@ fprintf(stderr, "%zd =>\n", bmachine.readsp); #endif - if (0 <= ch && ch < UCHAR_MAX) + if (0 <= ch && ch < (signed)UCHAR_MAX) (*jump_table[ch])(); else warnx("internal error: opcode %d", ch); ==== //depot/projects/soc2008/gabor_textproc/dc/bcode.h#2 (text+ko) ==== @@ -59,7 +59,7 @@ struct stack { struct value *stack; ssize_t sp; - size_t size; + ssize_t size; }; struct source; ==== //depot/projects/soc2008/gabor_textproc/dc/dc.c#2 (text+ko) ==== @@ -83,7 +83,7 @@ { int ch; bool extended_regs = false; - char *buf, *p; + char *buf; bool preproc_done = false; if ((buf = strdup("")) == NULL) ==== //depot/projects/soc2008/gabor_textproc/dc/inout.c#2 (text+ko) ==== @@ -35,7 +35,6 @@ static int src_getcharstream(struct source *); static void src_ungetcharstream(struct source *); static char *src_getlinestream(struct source *); -static void src_freestream(struct source *); static int src_getcharstring(struct source *); static void src_ungetcharstring(struct source *); static char *src_getlinestring(struct source *); @@ -49,7 +48,7 @@ src_getcharstream, src_ungetcharstream, src_getlinestream, - src_freestream + NULL }; static struct vtable string_vtable = { @@ -86,12 +85,6 @@ ungetc(src->lastchar, src->u.stream); } -/* ARGSUSED */ -static void -src_freestream(struct source *src) -{ -} - static char * src_getlinestream(struct source *src) { @@ -293,7 +286,7 @@ int digits; char buf[11]; size_t sz; - int i; + unsigned int i; struct stack stack; char *p; ==== //depot/projects/soc2008/gabor_textproc/dc/stack.c#2 (text+ko) ==== @@ -26,14 +26,14 @@ #include "extern.h" -static inline bool stack_empty(const struct stack *); +static __inline bool stack_empty(const struct stack *); static void stack_grow(struct stack *); static struct array *array_new(void); -static inline void array_free(struct array *); +static __inline void array_free(struct array *); static struct array * array_dup(const struct array *); -static inline void array_grow(struct array *, size_t); -static inline void array_assign(struct array *, size_t, const struct value *); -static inline struct value *array_retrieve(const struct array *, size_t); +static __inline void array_grow(struct array *, size_t); +static __inline void array_assign(struct array *, size_t, const struct value *); +static __inline struct value *array_retrieve(const struct array *, size_t); void stack_init(struct stack *stack) @@ -43,7 +43,7 @@ stack->stack = NULL; } -static inline bool +static __inline bool stack_empty(const struct stack *stack) { bool empty = stack->sp == -1; @@ -274,7 +274,7 @@ return a; } -static inline void +static __inline void array_free(struct array *a) { size_t i; @@ -302,7 +302,7 @@ return n; } -static inline void +static __inline void array_grow(struct array *array, size_t newsize) { size_t i; @@ -315,25 +315,25 @@ array->size = newsize; } -static inline void -array_assign(struct array *array, size_t index, const struct value *v) +static __inline void +array_assign(struct array *array, size_t i, const struct value *v) { - if (index >= array->size) - array_grow(array, index+1); - stack_free_value(&array->data[index]); - array->data[index] = *v; + if (i >= array->size) + array_grow(array, i + 1); + stack_free_value(&array->data[i]); + array->data[i] = *v; } -static inline struct value * -array_retrieve(const struct array *array, size_t index) +static __inline struct value * +array_retrieve(const struct array *array, size_t i) { - if (index >= array->size) + if (i >= array->size) return NULL; - return &array->data[index]; + return &array->data[i]; } void -frame_assign(struct stack *stack, size_t index, const struct value *v) +frame_assign(struct stack *stack, size_t i, const struct value *v) { struct array *a; struct value n; @@ -347,11 +347,11 @@ a = stack->stack[stack->sp].array; if (a == NULL) a = stack->stack[stack->sp].array = array_new(); - array_assign(a, index, v); + array_assign(a, i, v); } struct value * -frame_retrieve(const struct stack *stack, size_t index) +frame_retrieve(const struct stack *stack, size_t i) { struct array *a; @@ -360,5 +360,5 @@ a = stack->stack[stack->sp].array; if (a == NULL) a = stack->stack[stack->sp].array = array_new(); - return array_retrieve(a, index); + return array_retrieve(a, i); } From rene at FreeBSD.org Mon Jun 1 15:54:19 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Mon Jun 1 15:54:32 2009 Subject: PERFORCE change 163272 for review Message-ID: <200906011554.n51FsHiQ095694@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163272 Change 163272 by rene@rene_self on 2009/06/01 15:53:18 [website]: * don't build publish.sgml for now, it is untranslated * add commented out rule for y2kbug.sgml to Makefile * use &enbase; for untranslated web pages and links pointing to the (Dutch) doc/ space Affected files ... .. //depot/projects/docproj_nl/www/nl/Makefile#8 edit .. //depot/projects/docproj_nl/www/nl/about.sgml#5 edit .. //depot/projects/docproj_nl/www/nl/index.xsl#6 edit .. //depot/projects/docproj_nl/www/nl/mailto.sgml#4 edit .. //depot/projects/docproj_nl/www/nl/send-pr.sgml#4 edit .. //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#4 edit .. //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#5 edit .. //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#4 edit .. //depot/projects/docproj_nl/www/nl/support.sgml#4 edit .. //depot/projects/docproj_nl/www/nl/where.sgml#5 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/Makefile#8 (text+ko) ==== @@ -21,11 +21,12 @@ DOCS+= internet.sgml DOCS+= logo.sgml DOCS+= mailto.sgml -DOCS+= publish.sgml +#DOCS+= publish.sgml DOCS+= relnotes.sgml DOCS+= send-pr.sgml DOCS+= support.sgml DOCS+= where.sgml +#DOCS+= y2kbug.sgml XMLDOCS= index:xsl:${XML_NEWS_NEWS}: DEPENDSET.index=transtable mirrors news press events \ ==== //depot/projects/docproj_nl/www/nl/about.sgml#5 (text+ko) ==== @@ -62,7 +62,7 @@

&os; kan vanaf een verscheidenheid van media geïnstalleerd worden inclusief CD-ROM, DVD of direct over het netwerk door middel van FTP of NFS. Alles wat u nodig heeft zijn + href="&enbase;/doc/nl_NL.ISO8859-1/books/handbook/install.html"> deze aanwijzingen.

&os; is gratis

@@ -77,7 +77,7 @@ href="&enbase;/copyright/index.html">kostenloos beschikbaar en wordt het met de volledige broncode geleverd. Indien u een kopie wilt kopen of downloaden om het uit te proberen, + href="&enbase;/doc/nl_NL.ISO8859-1/books/handbook/mirrors.html"> is meer informatie beschikbaar.

Bijdragen aan &os;

@@ -88,7 +88,7 @@ maken en dat terugsturen naar het Project door middel van send-pr of een committer, indien u er een kent. Dit kan variëren van documentatie tot kunst tot broncode. Zie het artikel + href="&enbase;/doc/nl_NL.ISO8859-1/articles/contributing/index.html"> Bijdragen aan &os; voor meer informatie.

Zelfs als u geen programmeur bent, zijn er andere manieren om aan ==== //depot/projects/docproj_nl/www/nl/index.xsl#6 (text+ko) ==== @@ -84,7 +84,7 @@ geavanceerd netwerken, indrukwekkende beveiligingsmogelijkheden en topprestaties en wordt door sommige van 's werelds drukste + href="&enbase;/doc/nl_NL.ISO8859-1/books/handbook/nutshell.html#INTRODUCTION-NUTSHELL-USERS">drukste websites en de meest voorkomende embedded netwerk- en opslagapparaten gebruikt.

@@ -195,7 +195,7 @@ FAQ
  • - Handboek + Handboek
  • Ports ==== //depot/projects/docproj_nl/www/nl/mailto.sgml#4 (text+ko) ==== @@ -25,7 +25,7 @@

    Vragen over de inhoud van deze webserver...

    Vragen of opmerkingen over onze documentatie (Handboek, + href="&enbase;/doc/nl_NL.ISO8859-1/books/handbook/index.html">Handboek, FAQ, Boeken & artikelen) dienen gericht te worden aan de &os; Documentatie Project mailinglijst, aangemeld of vermeld staat in de - FAQ.

    + FAQ.

    Vul het formulier alstublieft zo volledig mogelijk in. Zorg ervoor dat u het veld "Omgeving" als gevraagd invult met de uitvoer van de ==== //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#4 (text+ko) ==== @@ -17,7 +17,7 @@ Wettelijke mededelingen | © 1995-2009 Het FreeBSD Project. Alle rechten voorbehouden.'> -beginpagina   |   contact   |   legaal   |   ©right;'> +beginpagina   |   contact   |   legaal   |   ©right;'> &os; homepage'> @@ -133,7 +133,7 @@

  • Verkrijg &os;
  • Documentatie
  • Gemeenschap
  • -
  • Ontwikkelaars
  • +
  • Ontwikkelaars
  • Ondersteuning
  • Foundation
  • ==== //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#5 (text+ko) ==== @@ -80,14 +80,14 @@ - &os; nieuws

    &os; is een besturingssysteem dat zich snel ontwikkelt. Het bijhouden van de nieuwste ontwikkelingen kan een klus zijn! Zorg ervoor dat u periodiek deze pagina bekijkt om bovenop de dingen te blijven. U kunt zich ook op de freebsd-announce + href="&enbase;/doc/nl_NL.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL">freebsd-announce mailinglijst of de RSS-stroom abonneren.

    @@ -112,7 +112,7 @@ - Beginpagina nieuws + Beginpagina nieuws ==== //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#4 (text+ko) ==== @@ -14,8 +14,8 @@
  • Mogelijkheden
  • Applicaties
  • Internetwerken
  • -
  • Advocacy
  • -
  • Marketing
  • +
  • Advocacy
  • +
  • Marketing
  • Beheer
  • Nieuws
  • Evenementen
  • @@ -63,7 +63,7 @@
  • Uitgavebeheer
  • Platforms
  • Projectideeën
  • -
  • Bijdragen
  • +
  • Bijdragen
  • '> ]]> @@ -77,10 +77,10 @@
    • Documentatie
    • FAQ
    • -
    • Handboek
    • +
    • Handboek
    • Handleidingpagina's
    • Boeken en artikelen online
    • -
    • Publicaties
    • +
    • Publicaties
    • Bronnen op het web
    • Voor nieuwelingen
    • Documentatieproject
    • ==== //depot/projects/docproj_nl/www/nl/support.sgml#4 (text+ko) ==== @@ -16,10 +16,10 @@ deze website staat een gedetailleerd overzicht van de mogelijkheden voor ondersteuning voor gebruikers uit de &os; gemeenschap, inclusief een aantal mailinglijsten.

      + href="&enbase;/community/mailinglists.html">mailinglijsten.

      Commerciële ondersteuning is ook beschikbaar van een van de - vele leveranciers die + vele leveranciers die commerciële producten, diensten en/of advies voor, van of met &os; aanbieden.

      @@ -38,7 +38,7 @@ openstaande probleemrapporten te bekijken.

      Als er nog geen melding is gemaakt, lees dan eerst onze richtlijnen voor + href="&enbase;/support/bugreports.html">richtlijnen voor probleemrapportage en meld het probleem dan via het formulier probleemrapportage.

      ==== //depot/projects/docproj_nl/www/nl/where.sgml#5 (text+ko) ==== @@ -21,12 +21,12 @@ -

      &os; installeren

      +

      &os; installeren

      Er zijn vele opties voor het installeren van &os;, waaronder installatie van CD-ROM, DVD, floppy disk, een MS-DOS® partitie, magnetische tape, anonieme FTP en NFS. Lees de - installatiegids + installatiegids alvorens de hele &os;-distributie te downloaden.

      @@ -36,7 +36,7 @@

      &os; is op een CD-ROM of DVD te koop bij &os; Mall of een van de andere CD-ROM + href="&enbase;/doc/nl_NL.ISO8859-1/books/handbook/mirrors.html">CD-ROM en DVD verkopers.

      &os; downloaden

      @@ -46,7 +46,7 @@ Versie & platform Distributie - ISO + ISO Uitgave
      notities Hardware
      notities Installatie
      notities @@ -59,7 +59,7 @@ [Bekijk] [Bekijk] - [Bekijk] + [Bekijk] [Bekijk] @@ -168,7 +168,7 @@ toepassing.

      Als u &os; via FTP wilt downloaden, kijk dan in de lijst met - mirrorsites + mirrorsites in het handboek of er een site dichtbij is. Als alternatief kunt u &os; downloaden door middel van het BitTorrent-protocol. De .torrent-bestanden kunnen vanaf de Versie & platform Distributie - ISO + ISO Schema + ==== //depot/projects/docproj_nl/www/nl/internet.sgml#4 (text+ko) ==== @@ -1,5 +1,5 @@ + ]> ==== //depot/projects/docproj_nl/www/nl/logo.sgml#4 (text+ko) ==== @@ -1,5 +1,5 @@ + %developers; ==== //depot/projects/docproj_nl/www/nl/mailto.sgml#5 (text+ko) ==== @@ -1,5 +1,5 @@ + ]> ==== //depot/projects/docproj_nl/www/nl/relnotes.sgml#4 (text+ko) ==== @@ -1,5 +1,5 @@ + ]> ==== //depot/projects/docproj_nl/www/nl/send-pr.sgml#5 (text+ko) ==== @@ -1,5 +1,5 @@ + ==== //depot/projects/docproj_nl/www/nl/share/sgml/catalog#4 (text+ko) ==== @@ -1,5 +1,5 @@ -- - $FreeBSD: $ + $FreeBSD$ %SOURCE% en/share/sgml/catalog %SRCID% 1.1 -- ==== //depot/projects/docproj_nl/www/nl/share/sgml/catalog.xml#4 (text+ko) ==== @@ -1,7 +1,7 @@ - ==== //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#5 (text+ko) ==== @@ -1,4 +1,4 @@ - ==== //depot/projects/docproj_nl/www/nl/share/sgml/l10n.ent#5 (text+ko) ==== @@ -1,4 +1,4 @@ - ==== //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#6 (text+ko) ==== @@ -1,7 +1,7 @@ - ==== //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#5 (text+ko) ==== @@ -1,4 +1,4 @@ - ==== //depot/projects/docproj_nl/www/nl/support.sgml#5 (text+ko) ==== @@ -1,5 +1,5 @@ + ]> ==== //depot/projects/docproj_nl/www/nl/where.sgml#6 (text+ko) ==== @@ -1,5 +1,5 @@ + From trasz at FreeBSD.org Mon Jun 1 18:22:57 2009 From: trasz at FreeBSD.org (Edward Tomasz Napierala) Date: Mon Jun 1 18:23:05 2009 Subject: PERFORCE change 163287 for review Message-ID: <200906011822.n51IMpHG024589@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163287 Change 163287 by trasz@trasz_victim on 2009/06/01 18:22:12 IFC. Affected files ... .. //depot/projects/soc2009/trasz_limits/ObsoleteFiles.inc#4 integrate .. //depot/projects/soc2009/trasz_limits/UPDATING#4 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/alias.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/eval.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/eval.h#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/exec.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/histedit.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/main.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/memalloc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/memalloc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/miscbltin.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/mkinit.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/mksyntax.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/parser.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/sh.1#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/trap.c#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/var.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/CHANGES#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/COPYRIGHT#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/FAQ#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/FAQ.xml#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/NSEC3-NOTES#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/README#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/README.idnkit#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/README.pkcs11#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/acconfig.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/check-tool.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/check-tool.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkconf.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkconf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkconf.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkconf.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkzone.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkzone.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkzone.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/check/named-checkzone.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/dig.1#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/dig.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/dig.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/dig.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/dighost.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/host.1#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/host.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/host.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/host.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/include/dig/dig.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/nslookup.1#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/nslookup.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/nslookup.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dig/nslookup.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keygen.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keygen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keygen.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-keygen.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-signzone.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-signzone.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-signzone.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssec-signzone.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssectool.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/dnssec/dnssectool.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/bind9.xsl#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/bind9.xsl.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/builtin.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/client.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/config.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/control.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/controlconf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/convertxsl.pl#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/builtin.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/client.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/config.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/control.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/globals.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/interfacemgr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/listenlist.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/log.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/logconf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/lwaddr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/lwdclient.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/lwresd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/lwsearch.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/main.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/notify.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/ns_smf_globals.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/query.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/server.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/sortlist.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/statschannel.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/tkeyconf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/tsigconf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/types.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/update.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/xfrout.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/include/named/zoneconf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/interfacemgr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/listenlist.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/log.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/logconf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwaddr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwdclient.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwderror.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwdgabn.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwdgnba.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwdgrbn.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwdnoop.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwresd.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwresd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwresd.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwresd.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/lwsearch.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/main.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/named.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/named.conf.5#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/named.conf.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/named.conf.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/named.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/named.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/notify.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/query.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/server.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/sortlist.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/statschannel.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/tkeyconf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/tsigconf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/unix/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/unix/include/named/os.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/unix/os.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/update.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/xfrout.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/named/zoneconf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/nsupdate/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/nsupdate/nsupdate.1#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/nsupdate/nsupdate.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/nsupdate/nsupdate.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/nsupdate/nsupdate.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/include/rndc/os.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc-confgen.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc-confgen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc-confgen.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc-confgen.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.8#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.conf#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.conf.5#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.conf.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.conf.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.docbook#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/rndc.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/unix/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/unix/os.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/util.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/bin/rndc/util.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/config.guess#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/config.h.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/configure.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM-book.xml#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch01.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch02.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch03.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch04.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch05.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch06.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch07.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch08.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch09.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.ch10.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Bv9ARM.pdf#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.dig.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.dnssec-keygen.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.dnssec-signzone.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.host.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.named-checkconf.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.named-checkzone.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.named.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.nsupdate.html#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.rndc-confgen.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.rndc.conf.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/arm/man.rndc.html#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-baba-dnsext-acl-reqts-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-daigle-napstr-04.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-danisch-dns-rr-smtp-03.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-dnsext-opcode-discover-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-durand-dnsop-dynreverse-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-2929bis-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-axfr-clarify-05.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dhcid-rr-12.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dns-name-p-s-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-2535typecode-change-06.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-bis-updates-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-experiments-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-online-signing-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-opt-in-07.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-rsasha256-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-trans-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-ds-sha256-05.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-ecc-key-07.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-interop3597-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-keyrr-key-signing-flag-12.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-mdns-43.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-nsec3-04.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-nsid-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2536bis-dsa-06.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2538bis-04.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2539bis-dhk-06.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-signed-nonexistence-requirements-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-tkey-renewal-mode-05.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-trustupdate-threshold-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-trustupdate-timers-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-tsig-sha-06.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsext-wcard-clarify-10.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-bad-dns-res-05.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-dnssec-operational-practices-08.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-inaddr-required-07.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-dns-configuration-06.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-dns-issues-11.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-transport-guidelines-01.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-key-rollover-requirements-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-respsize-02.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-dnsop-serverid-06.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-enum-e164-gstn-np-05.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-ipv6-node-requirements-08.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ietf-secsh-dns-05.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-ihren-dnsext-threshold-validation-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-kato-dnsop-local-zones-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/draft-park-ipv6-extensions-dns-pnp-00.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/draft/update#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/misc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/misc/format-options.pl#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/misc/ipv6#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/misc/migration#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/misc/options#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/misc/sort-options.pl#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/index#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1032.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1033.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1034.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1035.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1101.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1122.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1123.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1183.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1348.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1535.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1536.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1537.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1591.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1611.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1612.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1706.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1712.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1750.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1876.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1886.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1982.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1995.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc1996.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2052.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2104.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2119.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2133.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2136.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2137.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2163.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2168.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2181.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2230.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2308.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2317.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2373.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2374.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2375.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2418.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2535.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2536.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2537.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2538.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2539.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2540.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2541.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2553.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2671.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2672.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2673.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2782.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2825.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2826.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2845.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2874.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2915.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2929.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2930.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc2931.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3007.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3008.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3071.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3090.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3110.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3123.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3152.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3197.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3225.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3226.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3258.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3363.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3364.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3425.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3445.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3467.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3490.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3491.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3492.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3493.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3513.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3596.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3597.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3645.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3655.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3658.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3757.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3833.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3845.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc3901.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4025.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4033.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4034.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4035.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4074.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4159.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4193.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4255.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4343.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4367.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4398.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4408.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4431.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4470.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4634.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4641.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4648.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc4701.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc5155.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/doc/rfc/rfc952.txt#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/isc-config.sh.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/README#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/aclocal.m4#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/api#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/daemon.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/ftruncate.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/gettimeofday.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/mktemp.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/putenv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/readv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/setenv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/setitimer.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/strcasecmp.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/strdup.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/strerror.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/strpbrk.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/strsep.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/strtoul.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/utimes.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/bsd/writev.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/config.h.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/configure.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/dst_api.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/dst_internal.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/hmac_link.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/md5.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/md5_dgst.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/md5_locl.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/dst/support.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/arpa/inet.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/arpa/nameser.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/arpa/nameser_compat.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/fd_setsize.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/hesiod.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/irp.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/irs.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/assertions.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/ctl.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/dst.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/eventlib.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/heap.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/irpmarshall.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/list.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/logging.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/memcluster.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/misc.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/platform.h.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/isc/tree.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/netdb.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/netgroup.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/res_update.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/resolv.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/include/resolv_mt.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_addr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_cidr_ntop.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_cidr_pton.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_data.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_lnaof.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_makeaddr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_net_ntop.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_net_pton.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_neta.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_netof.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_network.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_ntoa.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_ntop.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/inet_pton.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/inet/nsap_addr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_gr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_ho.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_nw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_pr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_pw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/dns_sv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gai_strerror.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_gr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_ho.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_ng.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_nw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_pr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_pw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gen_sv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getaddrinfo.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getgrent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getgrent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gethostent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/gethostent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getnameinfo.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getnetent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getnetent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getnetgrent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getnetgrent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getprotoent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getprotoent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getpwent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getpwent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getservent.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/getservent_r.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/hesiod.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/hesiod_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_gr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_ho.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_ng.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_nw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_pr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_pw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irp_sv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irpmarshall.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irs_data.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irs_data.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/irs_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_gr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_ho.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_ng.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_nw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_pr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_pw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/lcl_sv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_gr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_ho.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_ng.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_nw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_pr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_pw.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nis_sv.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/nul_ng.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/pathnames.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/irs/util.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/assertions.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/assertions.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/base64.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/bitncmp.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/bitncmp.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ctl_clnt.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ctl_p.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ctl_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ctl_srvr.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ev_connects.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ev_files.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ev_streams.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ev_timers.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/ev_waits.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/eventlib.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/eventlib.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/eventlib_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/heap.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/heap.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/hex.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/logging.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/logging.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/logging_p.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/memcluster.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/memcluster.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/movefile.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/tree.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/isc/tree.mdoc#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/make/includes.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/make/mkdep.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/make/rules.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/mkinstalldirs#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_date.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_name.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_netint.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_parse.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_print.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_samedomain.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_sign.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_ttl.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/nameser/ns_verify.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/port/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/port/freebsd/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/port/freebsd/include/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/port/freebsd/include/sys/bitypes.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/port_after.h.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/port_before.h.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/Makefile.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/herror.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/mtctxres.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_comp.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_data.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_debug.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_debug.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_findzonecut.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_init.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_mkquery.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_mkupdate.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_mkupdate.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_private.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_query.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_send.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_sendsigned.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind/resolv/res_update.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/api#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/check.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/getaddresses.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/include/bind9/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/include/bind9/check.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/include/bind9/getaddresses.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/include/bind9/version.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/bind9/version.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/acache.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/acl.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/adb.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/api#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/byaddr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/cache.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/callbacks.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/compress.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/db.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dbiterator.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dbtable.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/diff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dispatch.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dlz.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dnssec.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/ds.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_api.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_internal.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_lib.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_openssl.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_parse.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_parse.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/dst_result.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/forward.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/gen-unix.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/gen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/gssapi_link.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/gssapictx.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/hmac_link.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/acache.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/acl.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/adb.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/bit.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/byaddr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/cache.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/callbacks.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/cert.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/compress.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/db.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/dbiterator.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/dbtable.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/diff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/dispatch.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/dlz.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/dnssec.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/ds.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/events.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/fixedname.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/forward.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/iptable.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/journal.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/keyflags.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/keytable.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/keyvalues.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/lib.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/log.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/lookup.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/master.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/masterdump.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/message.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/name.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/ncache.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/nsec.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/nsec3.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/opcode.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/order.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/peer.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/portlist.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rbt.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rcode.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdata.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdataclass.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdatalist.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdataset.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdatasetiter.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdataslab.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rdatatype.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/request.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/resolver.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/result.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/rootns.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/sdb.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/sdlz.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/secalg.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/secproto.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/soa.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/ssu.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/stats.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/tcpmsg.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/time.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/timer.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/tkey.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/tsig.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/ttl.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/types.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/validator.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/version.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/view.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/xfrin.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/zone.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/zonekey.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dns/zt.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dst/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dst/dst.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dst/gssapi.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dst/lib.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/include/dst/result.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/iptable.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/journal.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/key.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/keytable.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/lib.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/log.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/lookup.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/master.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/masterdump.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/message.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/name.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/ncache.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/nsec.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/nsec3.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/openssl_link.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/openssldh_link.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/openssldsa_link.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/opensslrsa_link.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/order.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/peer.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/portlist.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rbt.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rbtdb.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rbtdb.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rbtdb64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rbtdb64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rcode.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/ch_3/a_1.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/ch_3/a_1.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/cert_37.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/cert_37.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/cname_5.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/cname_5.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/dname_39.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/dname_39.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ds_43.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ds_43.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/gpos_27.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/gpos_27.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/isdn_20.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/isdn_20.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/key_25.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/key_25.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/loc_29.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/loc_29.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mb_7.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mb_7.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/md_3.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/md_3.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mf_4.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mf_4.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mg_8.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mg_8.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/minfo_14.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/minfo_14.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mr_9.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mr_9.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mx_15.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/mx_15.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ns_2.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ns_2.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nsec_47.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nsec_47.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/null_10.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/null_10.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nxt_30.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/nxt_30.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/opt_41.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/opt_41.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/proforma.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/proforma.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ptr_12.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/ptr_12.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/rp_17.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/rp_17.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/rt_21.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/rt_21.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/sig_24.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/sig_24.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/soa_6.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/soa_6.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/spf_99.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/spf_99.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/tkey_249.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/tkey_249.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/txt_16.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/txt_16.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/unspec_103.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/unspec_103.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/x25_19.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/generic/x25_19.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/hs_4/a_1.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/hs_4/a_1.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/a6_38.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/a6_38.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/a_1.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/a_1.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/apl_42.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/apl_42.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/kx_36.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/kx_36.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/px_26.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/px_26.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/srv_33.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/srv_33.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/wks_11.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/in_1/wks_11.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/rdatastructpre.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdata/rdatastructsuf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdatalist.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdatalist_p.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdataset.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdatasetiter.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rdataslab.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/request.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/resolver.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/result.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/rootns.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/sdb.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/sdlz.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/soa.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/spnego.asn1#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/spnego.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/spnego.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/spnego_asn1.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/spnego_asn1.pl#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/ssu.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/stats.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/tcpmsg.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/time.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/timer.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/tkey.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/tsig.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/ttl.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/validator.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/version.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/view.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/xfrin.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/zone.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/zonekey.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/dns/zt.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/alpha/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/alpha/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/alpha/include/isc/atomic.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/api#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/assertions.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/base32.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/base64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/bitstring.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/buffer.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/bufferlist.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/commandline.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/entropy.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/error.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/event.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/fsaccess.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/hash.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/heap.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/hex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/hmacmd5.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/hmacsha.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/httpd.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/ia64/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/ia64/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/ia64/include/isc/atomic.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/app.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/assertions.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/base32.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/base64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/bitstring.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/boolean.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/buffer.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/bufferlist.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/commandline.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/entropy.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/error.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/event.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/eventclass.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/file.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/formatcheck.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/fsaccess.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/hash.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/heap.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/hex.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/hmacmd5.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/hmacsha.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/httpd.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/interfaceiter.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/ipv6.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/iterated_hash.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/lang.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/lex.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/lfsr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/lib.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/list.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/log.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/magic.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/md5.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/mem.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/msgcat.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/msgs.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/mutexblock.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/netaddr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/netscope.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/ondestroy.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/os.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/parseint.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/platform.h.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/portset.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/print.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/quota.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/radix.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/random.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/ratelimiter.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/refcount.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/region.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/resource.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/result.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/resultclass.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/rwlock.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/serial.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/sha1.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/sha2.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/sockaddr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/socket.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/stats.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/stdio.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/stdlib.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/string.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/symtab.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/task.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/taskpool.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/timer.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/types.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/util.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/version.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/include/isc/xml.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/inet_aton.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/inet_ntop.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/inet_pton.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/iterated_hash.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/lex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/lfsr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/lib.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/log.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/md5.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/mem.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/mips/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/mips/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/mips/include/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/mips/include/isc/atomic.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/mutexblock.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/netaddr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/netscope.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nls/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nls/msgcat.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/noatomic/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/noatomic/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/noatomic/include/isc/atomic.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nothreads/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nothreads/condition.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nothreads/include/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/bind9/lib/isc/nothreads/include/isc/condition.h#2 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From syl at FreeBSD.org Mon Jun 1 18:26:00 2009 From: syl at FreeBSD.org (Sylvestre Gallon) Date: Mon Jun 1 18:26:07 2009 Subject: PERFORCE change 163288 for review Message-ID: <200906011825.n51IPwWV024828@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163288 Change 163288 by syl@syl_rincewind on 2009/06/01 18:25:54 - Fix libusb_open and libusb_open_device_with_vid_pid prototypes in libusb.3. - Fix a segfault in libusb_open_device_with_vid_pid(). - Fix a typo in libusb_open_device_with_vid_pid() prototype. - Implement test2 that dump string descriptor for a device opened with libusb_open_device_with_vid_pid(). Affected files ... .. //depot/projects/soc2009/syl_usb/libusb-tests/Makefile#2 edit .. //depot/projects/soc2009/syl_usb/libusb-tests/basic/Makefile#1 add .. //depot/projects/soc2009/syl_usb/libusb-tests/basic/test2/Makefile#1 add .. //depot/projects/soc2009/syl_usb/libusb-tests/basic/test2/test2.c#1 add .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb10.3#4 edit .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb10.c#25 edit Differences ... ==== //depot/projects/soc2009/syl_usb/libusb-tests/Makefile#2 (text+ko) ==== @@ -1,4 +1,5 @@ -SUBDIR=descriptors +SUBDIR= descriptors \ + basic test: .for dir in ${SUBDIR} ==== //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb10.3#4 (text+ko) ==== @@ -129,7 +129,7 @@ .Pp . .Ft int -.Fn libusb_open "libusb_device *dev" "libusb_device_handle *devh" +.Fn libusb_open "libusb_device *dev" "libusb_device_handle **devh" Open a device and obtain a device_handle. Return 0 on success, LIBUSB_ERROR_NO_MEM on memory allocation problem, LIBUSB_ERROR_ACCESS on permission problem, LIBUSB_ERROR_NO_DEVICE if the device has been @@ -138,7 +138,7 @@ .Pp . .Ft libusb_device_handle * -.Fn libusb_device_open_with_vid_pid "libusb_context *ctx" "uint16_t vid" "uint16_t pid" +.Fn libusb_open_device_with_vid_pid "libusb_context *ctx" "uint16_t vid" "uint16_t pid" Conveniance function to open a device with is .Fa vid and ==== //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb10.c#25 (text+ko) ==== @@ -374,7 +374,7 @@ } libusb_device_handle * -lib_usb_open_device_with_vid_pid(libusb_context * ctx, uint16_t vendor_id, +libusb_open_device_with_vid_pid(libusb_context * ctx, uint16_t vendor_id, uint16_t product_id) { struct libusb_device **devs; @@ -383,17 +383,20 @@ struct LIBUSB20_DEVICE_DESC_DECODED *pdesc; int i, j, k; + devh = NULL; + if ((i = libusb_get_device_list(ctx, &devs)) < 0) return (NULL); for (j = 0; j < i; j++) { - pdev = (struct libusb20_device *)devs[i]->os_priv; + pdev = (struct libusb20_device *)devs[j]->os_priv; pdesc = libusb20_dev_get_device_desc(pdev); if (pdesc->idVendor == vendor_id && pdesc->idProduct == product_id) - if ((k = libusb_open(devs[i], &devh)) < 0) + if ((k = libusb_open(devs[j], &devh)) < 0) devh = NULL; } + libusb_free_device_list(devs, 1); return (devh); } From rene at FreeBSD.org Mon Jun 1 19:38:23 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Mon Jun 1 19:38:30 2009 Subject: PERFORCE change 163296 for review Message-ID: <200906011938.n51JcLxV044992@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163296 Change 163296 by rene@rene_self on 2009/06/01 19:37:31 Build doc/ and relnotes/ directories when requested Affected files ... .. //depot/projects/docproj_nl/www/nl/Makefile#9 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/Makefile#9 (text+ko) ==== @@ -79,13 +79,13 @@ #SUBDIR+= snapshots #SUBDIR+= support #SUBDIR+= tutorials -#.if !defined(WEB_ONLY) || empty(WEB_ONLY) -#SUBDIR+= doc +.if !defined(WEB_ONLY) || empty(WEB_ONLY) +SUBDIR+= doc #SUBDIR+= ports -#.endif -#.if defined(BUILD_RELNOTES) +.endif +.if defined(BUILD_RELNOTES) #SUBDIR+= relnotes -#.endif +.endif WEBDIR?= data/nl From mav at FreeBSD.org Mon Jun 1 19:52:38 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Mon Jun 1 19:52:44 2009 Subject: PERFORCE change 163297 for review Message-ID: <200906011952.n51Jqa96046137@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163297 Change 163297 by mav@mav_mavbook on 2009/06/01 19:51:40 ATA controller itself is not present on the bus as device. Do not reserve ID for it. Affected files ... .. //depot/projects/scottl-camlock/src/sys/cam/ata/ata_xpt.c#10 edit .. //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#8 edit Differences ... ==== //depot/projects/scottl-camlock/src/sys/cam/ata/ata_xpt.c#10 (text+ko) ==== @@ -805,7 +805,6 @@ struct cam_path *path; u_int i; u_int max_target; - u_int initiator_id; /* Find out the characteristics of the bus */ work_ccb = xpt_alloc_ccb_nowait(); @@ -849,7 +848,6 @@ /* Cache on our stack so we can work asynchronously */ max_target = scan_info->cpi->max_target; - initiator_id = scan_info->cpi->initiator_id; /* * We can scan all targets in parallel, or do it sequentially. @@ -859,15 +857,10 @@ scan_info->counter = 0; } else { scan_info->counter = scan_info->cpi->max_target + 1; - if (scan_info->cpi->initiator_id < scan_info->counter) { - scan_info->counter--; - } } for (i = 0; i <= max_target; i++) { cam_status status; - if (i == initiator_id) - continue; status = xpt_create_path(&path, xpt_periph, request_ccb->ccb_h.path_id, @@ -922,10 +915,6 @@ done = 0; if (scan_info->cpi->hba_misc & PIM_SEQSCAN) { scan_info->counter++; - if (scan_info->counter == - scan_info->cpi->initiator_id) { - scan_info->counter++; - } if (scan_info->counter >= scan_info->cpi->max_target+1) { done = 1; ==== //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#8 (text+ko) ==== @@ -1722,16 +1722,16 @@ if (ccb->ccb_h.target_id == CAM_TARGET_WILDCARD || (((ATA_ATA_MASTER | ATA_ATAPI_MASTER) << - (ccb->ccb_h.target_id - 1)) & ch->devices)) { + ccb->ccb_h.target_id) & ch->devices)) { cpi->version_num = 1; /* XXX??? */ - cpi->hba_inquiry = PI_SDTR_ABLE; + cpi->hba_inquiry = PI_SDTR_ABLE | PI_TAG_ABLE; cpi->target_sprt = 0; cpi->hba_misc = 0; cpi->hba_eng_cnt = 0; - cpi->max_target = 1; + cpi->max_target = 0; cpi->max_lun = 0; - cpi->initiator_id = 0;//aha->scsi_id; + cpi->initiator_id = 0; cpi->bus_id = cam_sim_bus(sim); cpi->base_transfer_speed = 150000; strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN); @@ -1740,7 +1740,7 @@ cpi->unit_number = cam_sim_unit(sim); cpi->transport = XPORT_ATA; cpi->transport_version = 2; - if ((ATA_ATA_MASTER << (ccb->ccb_h.target_id - 1)) & ch->devices) + if ((ATA_ATA_MASTER << ccb->ccb_h.target_id) & ch->devices) cpi->protocol = PROTO_ATA; else cpi->protocol = PROTO_SCSI; From mav at FreeBSD.org Mon Jun 1 20:19:10 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Mon Jun 1 20:19:15 2009 Subject: PERFORCE change 163301 for review Message-ID: <200906012019.n51KJ9iD049203@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163301 Change 163301 by mav@mav_mavbook on 2009/06/01 20:18:12 Do not use NCQ if we are not sure that controller supports it. Affected files ... .. //depot/projects/scottl-camlock/src/sys/cam/ata/ata_da.c#6 edit Differences ... ==== //depot/projects/scottl-camlock/src/sys/cam/ata/ata_da.c#6 (text+ko) ==== @@ -620,12 +620,13 @@ else softc->quirks = DA_Q_NONE; - /* Check if the SIM does not want 6 byte commands */ + /* Check if the SIM does not want queued commands */ xpt_setup_ccb(&cpi.ccb_h, periph->path, /*priority*/1); cpi.ccb_h.func_code = XPT_PATH_INQ; xpt_action((union ccb *)&cpi); - if (cpi.ccb_h.status == CAM_REQ_CMP && (cpi.hba_misc & PIM_NO_6_BYTE)) - softc->quirks |= DA_Q_NO_6_BYTE; + if (cpi.ccb_h.status != CAM_REQ_CMP || + (cpi.hba_inquiry & PI_TAG_ABLE) == 0) + softc->flags &= ~DA_FLAG_CAN_NCQ; TASK_INIT(&softc->sysctl_task, 0, dasysctlinit, periph); From syl at FreeBSD.org Mon Jun 1 20:41:47 2009 From: syl at FreeBSD.org (Sylvestre Gallon) Date: Mon Jun 1 20:41:55 2009 Subject: PERFORCE change 163306 for review Message-ID: <200906012041.n51Kfig1051177@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163306 Change 163306 by syl@syl_rincewind on 2009/06/01 20:40:45 MFC Affected files ... .. //depot/projects/soc2009/syl_usb/src/lib/bind/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/bind/Makefile#2 delete .. //depot/projects/soc2009/syl_usb/src/lib/bind/bind/config.h#2 delete .. //depot/projects/soc2009/syl_usb/src/lib/bind/bind/port_after.h#2 delete .. //depot/projects/soc2009/syl_usb/src/lib/bind/bind/port_before.h#2 delete .. //depot/projects/soc2009/syl_usb/src/lib/bind/config.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/dns/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/dns/code.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/dns/dns/enumclass.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/dns/dns/enumtype.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/dns/dns/rdatastruct.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/isc/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/isc/isc/platform.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/lwres/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/lwres/lwres/netdb.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/bind/lwres/lwres/platform.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libarchive/Makefile#3 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libarchive/archive_read_support_compression_gzip.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/arm/Makefile.inc#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/arm/gen/_setjmp.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/arm/gen/setjmp.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/gen/popen.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/include/nss_tls.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/net/nsdispatch.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/net/resolver.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/Makefile.inc#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/Symbol.map#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_add_perm.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_compat.c#1 branch .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_delete.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_entry.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_get.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_get.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_init.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_set.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_set.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_set_tag_type.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_support.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_support.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/acl_valid.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/posix1e/posix1e.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/resolv/res_comp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/rpc/svc_dg.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/rpc/svc_generic.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/asctime.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/difftime.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/localtime.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/private.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/strftime.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/time2posix.3#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/tzfile.5#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/stdtime/tzfile.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/sys/bind.2#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc/sys/jail.2#3 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc_r/arch/amd64/_atomic_lock.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libc_r/arch/i386/_atomic_lock.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libdisk/open_ia64_disk.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libgeom/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libstand/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libstand/bootp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libstand/i386/_setjmp.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libstand/rpc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libstand/stand.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libstand/tftp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb.3#4 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb20.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb20.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb20_int.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libusb/libusb20_ugen20.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/libusbhid/descr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/e_sqrt.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/e_sqrtf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_lrint.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_lrintf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_remquo.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_remquof.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_scalbn.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_scalbnf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/amd64/s_scalbnl.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_exp.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_fmod.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_log.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_log10.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_log10f.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_remainder.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_remainderf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_sqrt.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/e_sqrtf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_ceil.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_ceilf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_ceill.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_copysign.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_copysignf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_copysignl.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_cos.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_finite.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_floor.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_floorf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_floorl.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_llrint.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_llrintf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_logb.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_logbf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_lrint.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_lrintf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_remquo.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_remquof.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_rint.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_rintf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_scalbn.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_scalbnf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_scalbnl.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_significand.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_significandf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_sin.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_tan.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_trunc.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_truncf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/i387/s_truncl.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/ia64/s_fma.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/ia64/s_fmaf.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/lib/msun/ia64/s_fmal.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/amd64/dump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/amd64/machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/amd64/mca.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/amd64/minidump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/include/param.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/linux32/linux32_sysent.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/amd64/pci/pci_cfgreg.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/arm/dump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/arm/machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/at91/ohci_atmelarm.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/arm/conf/AVILA#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/xscale/ixp425/files.ixp425#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/xscale/ixp425/if_npe.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/xscale/ixp425/ixp425_qmgr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/arm/xscale/ixp425/ixp425_qmgr.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/boot/common/boot.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/boot/common/ufsread.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/boot/i386/libi386/biosdisk.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/boot/pc98/boot2/sys.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/boot/uboot/lib/net.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/boot/zfs/zfssubr.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/kern/opensolaris.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/kern/opensolaris_acl.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/kern/opensolaris_misc.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/kern/opensolaris_policy.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/sys/acl.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/sys/mutex.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/compat/opensolaris/sys/rwlock.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/common/acl/acl_common.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/common/acl/acl_common.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/rpc/xdr.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/sys/acl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/contrib/opensolaris/uts/common/sys/acl_impl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/cddl/dev/lockstat/lockstat.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/compat/freebsd32/freebsd32_misc.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/freebsd32/freebsd32_sysent.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/linux/linux_ioctl.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/linux/linux_mib.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/linux/linux_misc.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/linux/linux_socket.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/linux/linux_socket.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/ndis/kern_ndis.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/ndis/subr_usbd.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_fcntl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_ioctl.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_misc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_resource.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_signal.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_socket.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_stat.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_stream.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_sysconfig.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/compat/svr4/svr4_sysent.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/conf/NOTES#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/conf/files#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/conf/files.i386#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/conf/files.powerpc#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/conf/kern.pre.mk#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/conf/options#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/contrib/altq/altq/altq_subr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/contrib/dev/mwl/LICENSE#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/contrib/dev/mwl/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/contrib/dev/mwl/mw88W8363.fw.uu#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/contrib/dev/mwl/mwlboot.fw.uu#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/contrib/ipfilter/netinet/ip_nat.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/crypto/via/padlock_hash.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ddb/db_textdump.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aac/aac.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/acpica/acpi.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/age/if_age.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm_gram.y#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm_scan.l#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/amr/amr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/amr/amr_linux.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/arcmsr/arcmsr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ata/ata-all.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ata/ata-usb.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ata/chipsets/ata-intel.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ata/chipsets/ata-promise.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ah.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ah.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ah_internal.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5210/ar5210_interrupts.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5211/ar5211_interrupts.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5212/ar5212_interrupts.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5212/ar5212reg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/if_ath.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ath/if_athvar.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bce/if_bce.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bge/if_bge.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bktr/bktr_os.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bwi/bwiphy.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bwi/if_bwi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bwi/if_bwi_pci.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bwi/if_bwireg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/bwi/if_bwivar.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cfe/cfe_console.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ciss/ciss.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cxgb/common/cxgb_ael1002.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cxgb/common/cxgb_common.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cxgb/common/cxgb_t3_hw.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cxgb/cxgb_adapter.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cxgb/cxgb_main.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/cxgb/cxgb_sge.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/dc/if_dc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/dcons/dcons_os.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/e1000/if_em.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/firewire/firewire.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/firewire/if_fwe.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/firewire/if_fwip.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/fxp/if_fxp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/if_ndis/if_ndis.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/if_ndis/if_ndis_usb.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/if_ndis/if_ndisvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/iir/iir_ctrl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ipw/if_ipw.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ipw/if_ipwvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/iwi/if_iwi.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/iwi/if_iwivar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/iwn/if_iwn.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/iwn/if_iwnvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ixgb/if_ixgb.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ksyms/ksyms.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/lmc/if_lmc.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/lmc/if_lmc.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/malo/if_malo.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/malo/if_malo.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/md/md.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mfi/mfi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mfi/mfi_linux.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mge/if_mge.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mii/e1000phy.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mii/e1000phyreg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mii/miidevs#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mpt/mpt_raid.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mpt/mpt_user.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/msk/if_msk.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/msk/if_mskreg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/if_mwl.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/if_mwl_pci.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/if_mwlioctl.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/if_mwlvar.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/mwldiag.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/mwlhal.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/mwlhal.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mwl/mwlreg.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/mxge/if_mxge.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/mxge/if_mxge_var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/nfe/if_nfe.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/nge/if_nge.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/nge/if_ngereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/nmdm/nmdm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ofw/ofw_console.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/pci/pci.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/pci/pci_pci.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/pci/pcib_if.m#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ral/rt2560.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ral/rt2560var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ral/rt2661.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ral/rt2661var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/random/nehemiah.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/random/randomdev_soft.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/re/if_re.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/rp/rp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sf/if_sf.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/si/si.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sis/if_sis.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/smc/if_smc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/midi/midi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pci/cmi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pci/cs4281.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pci/emu10kx-midi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pci/hda/hdac.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pci/via82c686.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pci/vibes.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pcm/sound.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/pcm/sound.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/sbus/cs4231.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/usb/uaudio.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/sound/usb/uaudioreg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/ste/if_ste.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/stge/if_stge.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/daemon/daemon_saver.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/scterm-teken.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/syscons.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/sysmouse.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/teken/sequences#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/teken/teken.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/teken/teken.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/syscons/teken/teken_subr_compat.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/tsec/if_tsec.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/twa/tw_osl_freebsd.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/twe/twe_freebsd.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/uart/uart_tty.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/README.TXT#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/bluetooth/TODO.TXT#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/bluetooth/ng_ubt.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/bluetooth/ng_ubt_var.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/bluetooth/ubtbcmfw.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/at91dci.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/at91dci.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/atmegadci.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/atmegadci.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/atmegadci_atmelarm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/avr32dci.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/avr32dci.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/ehci.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/ehci.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/musb_otg.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/musb_otg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/ohci.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/ohci.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/uhci.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/uhci.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/usb_controller.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/uss820dci.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/uss820dci.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/controller/uss820dci_atmelarm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/input/uhid.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/input/ukbd.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/input/ums.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/misc/udbp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/misc/ufm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_aue.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_auereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_axe.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_axereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_cdce.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_cdcereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_cue.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_cuereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_kue.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_kuereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_rue.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_ruereg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_udav.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/if_udavreg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/usb_ethernet.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/net/usb_ethernet.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/quirk/usb_quirk.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/u3g.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uark.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/ubsa.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/ubser.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uchcom.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/ucycom.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/ufoma.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uftdi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/ugensa.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uipaq.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/ulpt.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/umct.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/umodem.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/umoscom.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uplcom.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/usb_serial.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/usb_serial.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uslcom.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uvisor.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/serial/uvscom.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/storage/umass.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/storage/urio.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/storage/ustorage_fs.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/template/usb_template.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/template/usb_template.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/template/usb_template_cdce.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/template/usb_template_msc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/template/usb_template_mtp.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_bus.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_busdma.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_busdma.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_cdc.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_compat_linux.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_compat_linux.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_controller.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_core.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_debug.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_debug.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_dev.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_dev.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_device.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_device.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_dynamic.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_dynamic.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_error.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_generic.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_generic.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_handle_request.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_hid.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_hid.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_hub.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_hub.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_ioctl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_lookup.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_lookup.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_mbuf.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_mbuf.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_msctest.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_msctest.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_parse.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_parse.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_process.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_process.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_request.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_request.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_revision.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_transfer.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_transfer.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usb_util.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usbdevs#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/usbhid.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_rum.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_rumvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_uath.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_uathvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_upgt.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_upgtvar.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_ural.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_uralvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_urtw.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_urtwreg.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_urtwvar.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_zyd.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/usb/wlan/if_zydreg.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/vge/if_vge.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/vr/if_vr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/wi/if_wavelan_ieee.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/wi/if_wi.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/wi/if_wireg.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/wi/if_wivar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/wpi/if_wpi.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/wpi/if_wpivar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/xen/console/console.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/xen/netfront/netfront.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/dev/xl/if_xl.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/cd9660/cd9660_rrip.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfs.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfs_commonacl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfs_commonkrpc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfs_commonport.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfs_commonsubs.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfs_var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfs/nfsport.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clbio.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clkrpc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clnode.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clport.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clrpcops.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clstate.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clvfsops.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsclient/nfs_clvnops.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsserver/nfs_nfsdkrpc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsserver/nfs_nfsdport.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsserver/nfs_nfsdserv.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsserver/nfs_nfsdsocket.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nfsserver/nfs_nfsdstate.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nullfs/null_subr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nullfs/null_vnops.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/nwfs/nwfs_io.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/procfs/procfs_status.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/pseudofs/pseudofs_vnops.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/smbfs/smbfs_io.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/fs/tmpfs/tmpfs_vnops.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/geom/geom_subr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/geom/label/g_label.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/geom/vinum/geom_vinum_create.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/geom/vinum/geom_vinum_drive.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/gnu/fs/xfs/FreeBSD/xfsdmapistubs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/gnu/fs/xfs/FreeBSD/xfsquotasstubs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/gnu/fs/xfs/FreeBSD/xfsrtstubs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/i386/acpica/acpi_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/bios/smapi.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/i386/dump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/i386/machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/i386/mca.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/i386/minidump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/ibcs2/ibcs2_socksys.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/ibcs2/ibcs2_sysent.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/include/apicvar.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/include/param.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/include/xen/xen_clock_util.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/i386/linux/linux_sysent.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/pci/pci_cfgreg.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/xen/clock.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/xen/mp_machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/i386/xen/xen_clock_util.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/i386/xen/xen_rtc.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/ia64/ia64/dump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ia64/ia64/elf_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ia64/ia64/machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ia64/ia64/mp_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ia64/ia64/pmap.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ia64/ia64/ssc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ia64/include/md_var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/init_main.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/init_sysent.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_clock.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_conf.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_cpu.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_cpuset.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_descrip.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_exit.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_fail.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_fork.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_intr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_jail.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_linker.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_lock.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_lockf.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_lockstat.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_mib.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_mutex.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_osd.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_poll.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_proc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_prot.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_rmlock.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_rwlock.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_shutdown.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_sx.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_vimage.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/kern_xxx.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/link_elf.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/link_elf_obj.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/linker_if.m#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/makesyscalls.sh#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/subr_acl_posix1e.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/subr_bus.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/subr_rman.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/subr_witness.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/sysv_msg.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/sysv_sem.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/sysv_shm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/tty.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/tty_info.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/tty_inq.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/tty_pts.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/uipc_debug.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/uipc_syscalls.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_acl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_bio.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_cache.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_default.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_lookup.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_mount.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_subr.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vfs_syscalls.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kern/vnode_if.src#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/kgssapi/gsstest.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/ata/ata-usb.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/sound/usb/uaudio.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/sound/usb/uaudio.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/sound/usb/uaudio_pcm.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/sound/usb/uaudioreg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/FILES#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/dsbr100io.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehci.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehci_ddb.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehci_ixp4xx.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehci_mbus.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehci_pci.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehcireg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ehcivar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/hid.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/hid.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/if_urtw.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/if_urtwreg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/if_urtwvar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ohci.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ohci_pci.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ohcireg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ohcivar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/rio500_usb.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/rt2573_ucode.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/sl811hs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/sl811hsreg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/sl811hsvar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/slhci_pccard.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/u3g.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uark.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ubsa.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ubser.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ubser.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uchcom.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ucom.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ucomvar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ucycom.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/udbp.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/udbp.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ufm.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ufoma.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uftdi.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uftdireg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ugen.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ugraphire_rdesc.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uhci.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uhci_pci.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uhcireg.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uhcivar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uhid.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uhub.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uipaq.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ukbd.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ulpt.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/umass.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/umct.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/umodem.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/ums.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uplcom.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/urio.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_if.m#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_mem.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_mem.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_port.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_quirks.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_quirks.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usb_subr.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbcdc.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbdi.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbdi.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbdi_util.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbdi_util.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbdivar.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/usbhid.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uscanner.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uslcom.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uvisor.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uvscom.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/legacy/dev/usb/uxb360gp_rdesc.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/mips/mips/machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/mips/mips/pmap.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/Makefile#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/cpufreq/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/dtrace/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/dtrace/dtraceall/dtraceall.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/geom/geom_part/geom_part_ebr/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/ksyms/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/linux/Makefile#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/mwl/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/mwlfw/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/netgraph/bluetooth/ubt/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/netgraph/bluetooth/ubtbcmfw/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/nfs4client/Makefile#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/modules/nfscl/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/nfsclient/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/nfscommon/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/nfsd/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/usb/Makefile#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/usb/urtw/Makefile#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/modules/wlan/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/xfs/Makefile#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/modules/zfs/Makefile#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/bpf.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if_clone.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if_llatbl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if_llatbl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if_loop.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/if_var.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/netisr.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/netisr.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/pfil.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/route.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/route.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/rtsock.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net/vnet.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_adhoc.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_ddb.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_dfs.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_freebsd.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_freebsd.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_hostap.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_ht.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_ht.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_input.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_ioctl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_monitor.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_node.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_node.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_output.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_phy.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_proto.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_proto.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_radiotap.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_scan.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_scan.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_scan_sta.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_sta.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_superg.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_tdma.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_tdma.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_var.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/net80211/ieee80211_wds.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netatalk/ddp_usrreq.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netgraph/bluetooth/drivers/ubt/TODO#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/netinet/accf_dns.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/if_ether.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/igmp.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/in.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/in.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/in_pcb.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/in_pcb.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/in_rmx.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/ip_divert.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/ip_fw2.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/ip_input.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/ip_ipsec.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/ip_output.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/raw_ip.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/sctp_pcb.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/sctp_sysctl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/sctp_sysctl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/sctp_uio.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/sctputil.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/tcp_input.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/tcp_reass.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/tcp_subr.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/udp_usrreq.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/udp_var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet/vinet.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/icmp6.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/in6.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/in6.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/in6_ifattach.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/in6_mcast.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/in6_pcb.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/in6_rmx.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/ip6_input.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/ip6_ipsec.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/ip6_mroute.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/ip6_output.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/mld6.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/nd6_rtr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/udp6_usrreq.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netinet6/vinet6.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipsec/ipsec.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipsec/ipsec.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipsec/ipsec6.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipsec/ipsec_input.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipsec/key.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipsec/vipsec.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipx/ipx_input.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipx/spx.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipx/spx_reass.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/netipx/spx_usrreq.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netipx/spx_var.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netnatm/natm.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/netnatm/natm_proto.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfs/nfs_common.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_dev.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_dev.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_idmap.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_idmap.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_socket.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_subs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_vfs.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_vfs_subs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_vfsops.c#3 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_vn.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_vn_subs.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4_vnops.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfs4client/nfs4m_subs.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/bootp_subr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/krpc_subr.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_bio.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_diskless.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_krpc.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_lock.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_nfsiod.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_node.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_socket.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_subs.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_vfsops.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfs_vnops.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfsm_subs.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfsmount.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsclient/nfsnode.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsserver/nfs_srvkrpc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nfsserver/nfs_srvsock.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nlm/nlm.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nlm/nlm_advlock.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/nlm/nlm_prot_impl.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/opencrypto/cryptodev.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/pc98/pc98/machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/pci/if_rl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/aim/machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/clock.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/locore.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/mp_cpudep.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/platform_bare.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/pmap.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/trap_subr.S#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/booke/vm_machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/conf/GENERIC#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/conf/NOTES#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/cpufreq/dfs.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/include/mutex.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/include/pcpu.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/include/spr.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/mpc85xx/atpic.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/mpc85xx/ocpbus.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/mpc85xx/ocpbus.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/ofw/ofw_cpu.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powermac/pmu.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powermac/vcoregpio.c#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powerpc/busdma_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powerpc/cpu.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powerpc/genassym.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powerpc/mp_machdep.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/powerpc/powerpc/openpic.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/rpc/authunix_prot.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/rpc/rpcclnt.c#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/rpc/rpcclnt.h#2 delete .. //depot/projects/soc2009/syl_usb/src/sys/rpc/xdr.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/security/mac/mac_framework.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/security/mac/mac_internal.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/security/mac_bsdextended/mac_bsdextended.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sparc64/conf/GENERIC#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sparc64/sparc64/dump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sparc64/sparc64/machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sun4v/sun4v/dump_machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sun4v/sun4v/hvcons.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sun4v/sun4v/machdep.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/acl.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/buf.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/cpu.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/cpuset.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/eventhandler.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/fail.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/sys/interrupt.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/jail.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/kernel.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/ksyms.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/sys/lock.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/lockf.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/lockstat.h#1 branch .. //depot/projects/soc2009/syl_usb/src/sys/sys/mount.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/mutex.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/namei.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/param.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/pcpu.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/priv.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/proc.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/queue.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/rmlock.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/rwlock.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/sockio.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/sx.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/syscallsubr.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/sysent.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/systm.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/tty.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/vimage.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/sys/vnode.h#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ufs/ffs/ffs_alloc.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ufs/ufs/ufs_acl.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/ufs/ufs/ufs_vnops.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/vm/vm_object.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/vm/vm_page.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/vm/vm_page.h#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/vm/vm_pageout.c#3 integrate .. //depot/projects/soc2009/syl_usb/src/sys/xdr/xdr_mem.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/xen/evtchn/evtchn.c#2 integrate .. //depot/projects/soc2009/syl_usb/src/sys/xen/xenbus/xenbus_xs.c#2 integrate Differences ... ==== //depot/projects/soc2009/syl_usb/src/lib/bind/Makefile#2 (text+ko) ==== @@ -1,5 +1,5 @@ -# $FreeBSD: src/lib/bind/Makefile,v 1.1 2004/09/21 19:01:42 des Exp $ +# $FreeBSD: src/lib/bind/Makefile,v 1.2 2009/05/31 05:42:58 dougb Exp $ -SUBDIR= bind bind9 dns isc isccc isccfg lwres +SUBDIR= bind9 dns isc isccc isccfg lwres .include ==== //depot/projects/soc2009/syl_usb/src/lib/bind/config.h#2 (text+ko) ==== @@ -1,12 +1,12 @@ -/* $FreeBSD: src/lib/bind/config.h,v 1.10 2008/12/23 22:50:39 dougb Exp $ */ +/* $FreeBSD: src/lib/bind/config.h,v 1.11 2009/05/31 05:42:58 dougb Exp $ */ /* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.in by autoheader. */ /* - * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * - * Permission to use, copy, modify, and distribute this software for any + * 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. * @@ -19,7 +19,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: acconfig.h,v 1.44.18.5 2005/04/29 00:15:20 marka Exp $ */ +/* $Id: acconfig.h,v 1.51.334.2 2009/02/16 23:47:15 tbox Exp $ */ /*! \file */ @@ -28,9 +28,6 @@ *** it does not get installed. ***/ -/** define to `int' if doesn't define. */ -/* #undef ssize_t */ - /** define on DEC OSF to enable 4.4BSD style sa_len support */ /* #undef _SOCKADDR_LEN */ @@ -64,9 +61,6 @@ /** define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */ #define HAVE_IFLIST_SYSCTL 1 -/** define if chroot() is available */ -#define HAVE_CHROOT 1 - /** define if tzset() is available */ #define HAVE_TZSET 1 @@ -118,7 +112,7 @@ * The silly continuation line is to keep configure from * commenting out the #undef. */ - + #undef \ va_start #define va_start(ap, last) \ @@ -160,24 +154,36 @@ /* Define if you cannot bind() before connect() for TCP sockets. */ /* #undef BROKEN_TCP_BIND_BEFORE_CONNECT */ +/* Define to enable "rrset-order fixed" syntax. */ +/* #undef DNS_RDATASET_FIXED */ + /* Solaris hack to get select_large_fdset. */ >>> TRUNCATED FOR MAIL (1000 lines) <<< From mav at FreeBSD.org Mon Jun 1 21:07:14 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Mon Jun 1 21:07:19 2009 Subject: PERFORCE change 163314 for review Message-ID: <200906012107.n51L7CH4064173@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163314 Change 163314 by mav@mav_mavbook on 2009/06/01 21:06:55 Log all controller capabilities. Affected files ... .. //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#9 edit .. //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.h#4 edit Differences ... ==== //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#9 (text+ko) ==== @@ -121,7 +121,7 @@ { struct ahci_controller *ctlr = device_get_softc(dev); device_t child; - int error, unit; + int error, unit, speed; u_int32_t version, caps; ctlr->dev = dev; @@ -165,17 +165,41 @@ /* announce we support the HW */ version = ATA_INL(ctlr->r_mem, AHCI_VS); caps = ATA_INL(ctlr->r_mem, AHCI_CAP); + speed = (caps & AHCI_CAP_ISS) >> AHCI_CAP_ISS_SHIFT; device_printf(dev, - "AHCI Version %x%x.%x%x controller with %d ports PM %s\n", - (version >> 24) & 0xff, (version >> 16) & 0xff, - (version >> 8) & 0xff, version & 0xff, - (caps & AHCI_CAP_NPMASK) + 1, - (caps & AHCI_CAP_SPM) ? - "supported" : "not supported"); - device_printf(dev, - "%d command slots\n", - ((caps & AHCI_CAP_NCS) >> AHCI_CAP_NCS_SHIFT) + 1); - device_printf(dev, "caps: %08x\n", caps); + "AHCI v%x.%02x %sGbps controller with %d ports, PM %s\n", + ((version >> 20) & 0xf0) + ((version >> 16) & 0x0f), + ((version >> 4) & 0xf0) + (version & 0x0f), + ((speed == 1) ? "1.5":((speed == 2) ? "3": + ((speed == 3) ? "6":"?"))), + (caps & AHCI_CAP_NPMASK) + 1, + (caps & AHCI_CAP_SPM) ? + "supported" : "not supported"); + if (bootverbose) { + device_printf(dev, "Caps:%s%s%s%s%s%s%s%s %sGbps", + (caps & AHCI_CAP_64BIT) ? " 64bit":"", + (caps & AHCI_CAP_SNCQ) ? " NCQ":"", + (caps & AHCI_CAP_SSNTF) ? " SNTF":"", + (caps & AHCI_CAP_SMPS) ? " MPS":"", + (caps & AHCI_CAP_SSS) ? " SS":"", + (caps & AHCI_CAP_SALP) ? " ALP":"", + (caps & AHCI_CAP_SAL) ? " AL":"", + (caps & AHCI_CAP_SCLO) ? " CLO":"", + ((speed == 1) ? "1.5":((speed == 2) ? "3": + ((speed == 3) ? "6":"?")))); + printf("%s%s%s%s%s%s %dcmd%s%s%s %dports\n", + (caps & AHCI_CAP_SAM) ? " AM":"", + (caps & AHCI_CAP_SPM) ? " PM":"", + (caps & AHCI_CAP_FBSS) ? " FBS":"", + (caps & AHCI_CAP_PMD) ? " PMD":"", + (caps & AHCI_CAP_SSC) ? " SSC":"", + (caps & AHCI_CAP_PSC) ? " PSC":"", + ((caps & AHCI_CAP_NCS) >> AHCI_CAP_NCS_SHIFT) + 1, + (caps & AHCI_CAP_CCCS) ? " CCC":"", + (caps & AHCI_CAP_EMS) ? " EM":"", + (caps & AHCI_CAP_SXS) ? " eSATA":"", + (caps & AHCI_CAP_NPMASK) + 1); + } /* attach all channels on this controller */ for (unit = 0; unit < ctlr->channels; unit++) { @@ -1120,7 +1144,7 @@ int timeout; /* issue Command List Override if supported */ - if (ATA_INL(ctlr->r_mem, AHCI_CAP) & AHCI_CAP_CLO) { + if (ATA_INL(ctlr->r_mem, AHCI_CAP) & AHCI_CAP_SCLO) { cmd = ATA_INL(ch->r_mem, AHCI_P_CMD); cmd |= AHCI_P_CMD_CLO; ATA_OUTL(ch->r_mem, AHCI_P_CMD, cmd); ==== //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.h#4 (text+ko) ==== @@ -153,13 +153,26 @@ /* SATA AHCI v1.0 register defines */ #define AHCI_CAP 0x00 #define AHCI_CAP_NPMASK 0x0000001f +#define AHCI_CAP_SXS 0x00000020 +#define AHCI_CAP_EMS 0x00000040 +#define AHCI_CAP_CCCS 0x00000080 #define AHCI_CAP_NCS 0x00001F00 #define AHCI_CAP_NCS_SHIFT 8 #define AHCI_CAP_PSC 0x00002000 #define AHCI_CAP_SSC 0x00004000 +#define AHCI_CAP_PMD 0x00008000 +#define AHCI_CAP_FBSS 0x00010000 #define AHCI_CAP_SPM 0x00020000 -#define AHCI_CAP_CLO 0x01000000 +#define AHCI_CAP_SAM 0x00080000 +#define AHCI_CAP_ISS 0x00F00000 +#define AHCI_CAP_ISS_SHIFT 20 +#define AHCI_CAP_SCLO 0x01000000 +#define AHCI_CAP_SAL 0x02000000 #define AHCI_CAP_SALP 0x04000000 +#define AHCI_CAP_SSS 0x08000000 +#define AHCI_CAP_SMPS 0x10000000 +#define AHCI_CAP_SSNTF 0x20000000 +#define AHCI_CAP_SNCQ 0x40000000 #define AHCI_CAP_64BIT 0x80000000 #define AHCI_GHC 0x04 From mav at FreeBSD.org Mon Jun 1 21:31:40 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Mon Jun 1 21:31:46 2009 Subject: PERFORCE change 163319 for review Message-ID: <200906012131.n51LVc7N066324@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163319 Change 163319 by mav@mav_mavbook on 2009/06/01 21:30:55 Minor log tuning. Affected files ... .. //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#10 edit Differences ... ==== //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#10 (text+ko) ==== @@ -167,12 +167,12 @@ caps = ATA_INL(ctlr->r_mem, AHCI_CAP); speed = (caps & AHCI_CAP_ISS) >> AHCI_CAP_ISS_SHIFT; device_printf(dev, - "AHCI v%x.%02x %sGbps controller with %d ports, PM %s\n", + "AHCI v%x.%02x controller with %d %sGbps ports, PM %s\n", ((version >> 20) & 0xf0) + ((version >> 16) & 0x0f), ((version >> 4) & 0xf0) + (version & 0x0f), + (caps & AHCI_CAP_NPMASK) + 1, ((speed == 1) ? "1.5":((speed == 2) ? "3": ((speed == 3) ? "6":"?"))), - (caps & AHCI_CAP_NPMASK) + 1, (caps & AHCI_CAP_SPM) ? "supported" : "not supported"); if (bootverbose) { From rene at FreeBSD.org Mon Jun 1 21:37:47 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Mon Jun 1 21:37:54 2009 Subject: PERFORCE change 163322 for review Message-ID: <200906012137.n51Lbjpm066876@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163322 Change 163322 by rene@rene_self on 2009/06/01 21:36:56 [website] started translation of publish.sgml, 10% Affected files ... .. //depot/projects/docproj_nl/www/nl/publish.sgml#3 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/publish.sgml#3 (text+ko) ==== @@ -1,6 +1,6 @@ - + + ]> @@ -9,71 +9,70 @@ -
      FreeBSD Daemon&os; Daemon
      - Here you will find the covers of many FreeBSD related publications. If you - know of any additional FreeBSD publications/CDROMs let us know, at www@FreeBSD.org, so that they may be - added to this site. + Hier vindt u de omslagen van vele aan &os; gerelateerde pubicaties. Als u + nog meer publicaties of CD-ROMs over &os; kent, laat het ons dan weten op + www@FreeBSD.org, zodat ze aan deze + site kunnen worden toegevoegd. -

      The FreeBSD Handbook contains a - considerably longer bibliography.

      - +

      Het &os; + Handbook bevat een aanzienlijk langere bibliografie.

      - Click on any of the graphics to see a larger version. + Klik op een afbeelden om een grotere versie te zien.

      -

      Books

      +

      Boeken

      - + - + - + - + - + - + - + - + @@ -81,7 +80,7 @@ HEIGHT="200" alt="book cover"> @@ -89,10 +88,10 @@ - @@ -100,7 +99,7 @@ - @@ -112,7 +111,7 @@ @@ -120,10 +119,10 @@ - @@ -131,21 +130,21 @@ - + the section 1 of the &os; manual. 2.2.7-RELEASE + &os;(98)2.2.7-Rev01 and PAO in CDROM. 1,040 pages, 3,800yen. - @@ -153,7 +152,7 @@ - @@ -167,7 +166,7 @@ Onno W Purbo, Dodi Maryanto, Syahrial Hubbany, Widjil Widodo: Building Internet Server with - FreeBSD (in Indonesia Language), published + &os; (in Indonesia Language), published by Elex Media Komputindo, 2000. @@ -176,9 +175,9 @@ @@ -187,10 +186,10 @@ @@ -199,9 +198,9 @@ @@ -210,12 +209,12 @@ - - + - - - - @@ -370,10 +369,10 @@ @@ -381,22 +380,22 @@ + alt="The RadioBSD Crier: Issue 2007/01: Managing &os; and NetBSD Firewalls" + height="202" width="150"> + on managing &os; and NetBSD IPFW, IPFW2, and IP6FW firewalls. - - @@ -428,15 +427,15 @@ WIDTH="150" HEIGHT="142" alt="CD cover"> + core technology behind much of &os;. - + @@ -444,15 +443,15 @@ HEIGHT="132" alt="CD cover"> + come in a standard jewel box. Contains &os;-2.1R, NetBSD-1.1, + XFree86-3.1.2 and 3.1.2A, and &os;(98) kernel (2.0.5). - @@ -460,9 +459,9 @@ - + produces the &os;/J (Japanese) CD product. @@ -478,8 +477,8 @@ - @@ -489,9 +488,9 @@ - @@ -513,7 +512,7 @@ - @@ -523,7 +522,7 @@ - @@ -531,7 +530,7 @@ - @@ -539,14 +538,14 @@ - + - + @@ -564,7 +563,7 @@ - @@ -580,7 +579,7 @@ - @@ -588,21 +587,21 @@ - + - + - + @@ -656,8 +655,8 @@ + + &os; 4.5 RELEASE CDROM. + February 2002, &os; Mall Inc. ISBN 1-57176-306-6. +
      book coverboekomslagA publication from Tatsumi Hosokawa and - others. Among computer books, it is a top-seller in Japan and - exceeded the sales of Bill Gates' "The Road Ahead" when published - (it was #2, this book was #1).Een publicatie van Tatsumi Hosokawa en anderen. Onder de + computerboeken is het een top-seller in Japan en het overtrof de + verkoop van "The Road Ahead" van Bill Gates toen het gepubliceerd + werd (het was #2, dit boek was #1).
      book coverboekomslag(Japanese FreeBSD book with 2.0.5, titled "FreeBSD: Fun and easy - Installation")(Japans boek over &os; met 2.0.5, getiteld "&os;: Plezierige en + eenvoudige installatie")
      book coverboekomslag(Japanese FreeBSD book with 2.0.5, titled "FreeBSD Introductory - Kit")(Japans boek over &os; met 2.0.5, getiteld "&os; + Introductiepakket")
      book coverboekomslagThis is BSDi's "The Complete FreeBSD" with installation - guide, manual pages and installation CDs inside.Dit is "The Complete &os;" van BSDi met installatiegids, + handleidingspagina's en ingesloten CD's.
      This book was published (early 1997) in Taiwan. Its title - is "FreeBSD: introduction and applications" and the author is + is "&os;: introduction and applications" and the author is Jian-Da Li (aka. jdli).
      book coverThis is the "Getting Started with FreeBSD" from Fuki-Shuppan. + This is the "Getting Started with &os;" from Fuki-Shuppan. Other than the standard installation guide and Japanese environment, it emphasizes system administration and low-level information (such - as the boot process, etc.) FreeBSD-2.2.2R and XFree86-3.2 on CDROM. + as the boot process, etc.) &os;-2.2.2R and XFree86-3.2 on CDROM. 264 pages, 3,400 yen.
      book coverThe "Personal Unix Starter Kit - FreeBSD" from ASCII. Includes + The "Personal Unix Starter Kit - &os;" from ASCII. Includes history of &unix;, a guide to build a Japanese documentation processing system and how to create ports. 2.1.7.1R and XFree86-3.2 in CDROM. 384 pages, 3,000 yen.BSD mit Methode, M. Schulze, B. Roehrig, M. Hoelzer und andere, C&L Computer und Literatur Verlag, 1998, 850 pages. 2 CDROMs, - FreeBSD 2.2.6, NetBSD 1.2.1 and 1.3.2, OpenBSD 2.2 and 2.3. DM + &os; 2.2.6, NetBSD 1.2.1 and 1.3.2, OpenBSD 2.2 and 2.3. DM 98,-.
      book coverThis is the "FreeBSD Install and utilization manual" from Mainichi - Communications. General introduction to FreeBSD from installation + This is the "&os; Install and utilization manual" from Mainichi + Communications. General introduction to &os; from installation to utilization with troubleshooting under the supervision of the - user group in Japan. 2.2.7-RELEASE FreeBSD(98)2.2.7-Rev01 PAO and + user group in Japan. 2.2.7-RELEASE &os;(98)2.2.7-Rev01 PAO and distfiles in CDROM. 472 pages, 3,600yen.
      book coverThe "FreeBSD User's Reference Manual" from Mainichi + The "&os; User's Reference Manual" from Mainichi Communications, under the supervision of "jpman project", the manual translation project by the user group in Japan. Japanese edition of - the section 1 of the FreeBSD manual. 2.2.7-RELEASE - FreeBSD(98)2.2.7-Rev01 and PAO in CDROM. 1,040 pages, 3,800yen.
      book coverThe "FreeBSD System Administrator's Manual" from Mainichi + The "&os; System Administrator's Manual" from Mainichi Communications, under the supervision of "jpman project", the manual translation project by the user group in Japan. Japanese edition of - the section 5 and 8 of the FreeBSD manual. 756 pages, 3,300yen. + the section 5 and 8 of the &os; manual. 756 pages, 3,300yen.
      book coverThis is "About FreeBSD" from Youngjin.com. It is first FreeBSD + This is "About &os;" from Youngjin.com. It is first &os; book in Korea, and covers several topics from installation to Korean environment. 3.5.1-RELEASE/PAO and 4.1-RELEASE in 3 CDROMs. 788 pages, 26,000 won.
      book cover - The FreeBSD Handbook 1st Edition is a comprehensive FreeBSD + The &os; Handbook 1st Edition is a comprehensive &os; Tutorial and reference. It covers installation, day-to-day use - of FreeBSD, and much more. + of &os;, and much more. April 2000, BSDi. ISBN 1-57176-241-8
      book cover - The Complete FreeBSD with CDs, 3rd Ed, FreeBSD 4.2. + The Complete &os; with CDs, 3rd Ed, &os; 4.2. Everything you ever wanted to know about how to get - your computer up and running FreeBSD. Includes 4 CDs - containing the FreeBSD operating system! + your computer up and running &os;. Includes 4 CDs + containing the &os; operating system! Released: November 2000 ISBN: 1-57176-246-9
      book cover - The FreeBSD Handbook 2nd Edition is a comprehensive FreeBSD + The &os; Handbook 2nd Edition is a comprehensive &os; Tutorial and reference. It covers installation, day-to-day use - of FreeBSD, and much more. + of &os;, and much more. November 2001, Wind River Systems. ISBN 1-57176-303-1
      book cover - "The FreeBSD Corporate Networker's Guide" Mittelstaedt, Ted. + "The &os; Corporate Networker's Guide" Mittelstaedt, Ted. Addison Wesley, 2000.
      - There are two printings: the first has disk 1 of FreeBSD 4.2, the - second has disk 1 of FreeBSD 4.4. 400 pages. The Japanese translation + There are two printings: the first has disk 1 of &os; 4.2, the + second has disk 1 of &os; 4.4. 400 pages. The Japanese translation was published in 2001.
      - The Networker's Guide covers integration of FreeBSD into typical + The Networker's Guide covers integration of &os; into typical corporate networks with special emphasis on interoperation with Windows 95/98/ME/NT/2K.
      @@ -226,9 +225,9 @@
      book cover"FreeBSD, An Open-Source Operating System for Your Personal Computer", + "&os;, An Open-Source Operating System for Your Personal Computer", Annelise Anderson.
      - An introduction to FreeBSD for users new to both FreeBSD and UNIX. + An introduction to &os; for users new to both &os; and UNIX. This book includes a 4.4 installation CD-ROM and covers everything you need to know about installation of the system and third-party software; getting sound, X Window, your network, and printing working; @@ -240,7 +239,7 @@
      Absolute BSD book cover Absolute BSD. This book discusses management of - FreeBSD-based servers in high-performance enterprise + &os;-based servers in high-performance enterprise environments. June 2002, No Starch @@ -248,11 +247,11 @@
      FreeBSD Open Documentation Library&os; Open Documentation Library Fultus presents -FreeBSD Open Documentation Library. This -is the full up-to-date FreeBSD documentation collection available +&os; Open Documentation Library. This +is the full up-to-date &os; documentation collection available online in the Technical Literature section of the Fultus eLibrary @@ -265,18 +264,18 @@
    • Compiled HTML format (chm) (for Windows). Interested? -
      Read about FreeBSD eBooks and download examples on the -FreeBSD Documentation +
      Read about &os; eBooks and download examples on the +&os; Documentation page of the Fultus web site.
    • - + book cover"Building an Internet Server with FreeBSD 6" is a step-by-step - guide for helping new and experienced users to FreeBSD + "Building an Internet Server with &os; 6" is a step-by-step + guide for helping new and experienced users to &os; install and configure the latest Internet server applications in a minimum of time. The guide includes descriptions of many of the Internet's most popular and widely deployed @@ -289,7 +288,7 @@ book cover Written by the professionals of EnderUNIX and Huseyin Yuce - this book is the first Turkish FreeBSD book. The book is + this book is the first Turkish &os; book. The book is published by acikkod publications. Book is available for sale on this page. @@ -298,7 +297,7 @@ ISBN: 975-98990-0-0
      Published: February 2004
      Paperback: 504 pages
      - CD: FreeBSD 4.9 Installation CD
      + CD: &os; 4.9 Installation CD
      Authors: Hüseyin Yüce, İsmail Yenigül, Ömer Faruk Şen, Barış Şimşek and Murat Balaban.
      @@ -329,7 +328,7 @@
      The OpenBSD PF Packet Filter Book covers the PF packet filter - suite, ALTQ, spamd, address translation, and more for FreeBSD, + suite, ALTQ, spamd, address translation, and more for &os;, NetBSD, OpenBSD, and DragonFly. August 2006, Reed Media Services. ISBN 978-0-9790342-0-6. @@ -339,24 +338,24 @@
      FreeBSD 6 Unleashed + alt="&os; 6 Unleashed" width="150" height="150"> FreeBSD 6 Unleashed covers everything you need to know to use - FreeBSD to its fullest potential. + &os; 6 Unleashed covers everything you need to know to use + &os; to its fullest potential. Jun 7, 2006, - Sams. ISBN 0-672-32875-5 + Sams. ISBN 0-672-32875-5
      The FreeBSD 6.0 Book + alt="The &os; 6.0 Book" width="150" height="202"> (Traditional Chinese FreeBSD book with 6.0) + (Traditional Chinese &os; book with 6.0) December 2005, Drmaster. ISBN 9-575-27878-X This Romanian language book is a useful guide for people - taking their first steps with FreeBSD. It covers installation - and day-to-day operation of a FreeBSD system, and contains - practical examples illustrating the use of FreeBSD's utilities. - It has two case studies on configuring FreeBSD as a server + taking their first steps with &os;. It covers installation + and day-to-day operation of a &os; system, and contains + practical examples illustrating the use of &os;'s utilities. + It has two case studies on configuring &os; as a server and a router. 2005, Polirom Publishing House, ISBN 973-681-683-4
      The RadioBSD Crier: Issue 2007/01: Managing FreeBSD and NetBSD Firewalls The “RadioBSD Crier: 2007/01” is a 24-page article - on managing FreeBSD and NetBSD IPFW, IPFW2, and IP6FW firewalls.
      The Best of FreeBSD Basics by Dru Lavigne The Best of FreeBSD Basics by Dru Lavigne provides near 100 - tutorials covering a wide range of FreeBSD and open source Unix + The Best of &os; Basics by Dru Lavigne provides near 100 + tutorials covering a wide range of &os; and open source Unix topics. December 2007. Reed Media Services. ISBN 978-0-9790342-2-0. @@ -409,7 +408,7 @@

      CDROMs

      For more about recent releases go to FreeBSD release information page. + href="releases/index.html">&os; release information page.

      @@ -418,7 +417,7 @@
      CD coverThis is InfoMagic's BSDisc, containing FreeBSD 2.0 and NetBSD 1.0 + This is InfoMagic's BSDisc, containing &os; 2.0 and NetBSD 1.0 on a single CD. This is the only example I have which had cover art.
      This is the original 4.4 BSD Lite2 release from UC Berkeley, the - core technology behind much of FreeBSD.
      CD coverThe first of Laser5's "BSD" series. Contains FreeBSD-2.0.5R, - NetBSD-1.0, XFree86-3.1.1 and FreeBSD(98) kernel.The first of Laser5's "BSD" series. Contains &os;-2.0.5R, + NetBSD-1.0, XFree86-3.1.1 and &os;(98) kernel.
      The second of Laser5's "BSD" series. From this version, the CDs - come in a standard jewel box. Contains FreeBSD-2.1R, NetBSD-1.1, - XFree86-3.1.2 and 3.1.2A, and FreeBSD(98) kernel (2.0.5).
      CD coverThis is the Laser5 Japanese edition of the FreeBSD CDROM. It is a + This is the Laser5 Japanese edition of the &os; CDROM. It is a 4 CD set.
      CD coverThis is the only FreeBSD CD Pacific Hitech produced before merging + This is the only &os; CD Pacific Hitech produced before merging their product line with that of Walnut Creek CDROM. PHT now also - produces the FreeBSD/J (Japanese) CD product.
      This is the cover disc from the Korean magazine. Note the creative cover art! The - CD contains the FreeBSD 2.2.1 release with some local + CD contains the &os; 2.2.1 release with some local additions.
      CD coverThis is it - the very first FreeBSD CD published! Both the - FreeBSD Project and Walnut Creek CDROM were fairly young back then, + This is it - the very first &os; CD published! Both the + &os; Project and Walnut Creek CDROM were fairly young back then, and you'll probably have little difficulty in spotting the differences in production quality between then and now. CD coverThis was the second FreeBSD CD published by Walnut Creek CDROM and + This was the second &os; CD published by Walnut Creek CDROM and also the very last on the 1.x branch (ref USL/Novell lawsuit and - settlement). The next release, FreeBSD 1.1.5, was only available on + settlement). The next release, &os; 1.1.5, was only available on the net.
      CD coverThis is the fixed-up version of the FreeBSD 2.0 CD. Note that the + This is the fixed-up version of the &os; 2.0 CD. Note that the color scheme has even been changed in the corrected version, something unusual for a fixup and perhaps done to distance it from the earlier mistake.CD coverThe FreeBSD 2.0.5 release CD. This was the first CD to feature + The &os; 2.0.5 release CD. This was the first CD to feature Tatsumi Hosokawa's daemon artwork.
      CD coverThe FreeBSD 2.1 release CD. This was the first CD release on the + The &os; 2.1 release CD. This was the first CD release on the 2.1 branch (the last being 2.1.7).
      CD coverThe FreeBSD 2.1.5 release CD.The &os; 2.1.5 release CD.
      CD coverThe FreeBSD 2.1.6 release CD.The &os; 2.1.6 release CD.
      CD coverThe FreeBSD 2.1.7 release CD. Also the last CD released on the + The &os; 2.1.7 release CD. Also the last CD released on the 2.1.x branch. Done primarily as a security fixup for 2.1.6
      CD coverThe FreeBSD 2.2.1 release CD. This was the first CD on the 2.2 + The &os; 2.2.1 release CD. This was the first CD on the 2.2 branch.
      CD coverThe FreeBSD 2.2.2 release CD.The &os; 2.2.2 release CD.
      CD coverThe FreeBSD 3.0 snapshot CD.The &os; 3.0 snapshot CD.
      CD coverThe FreeBSD mailing list and newsgroup archives, turned into HTML + The &os; mailing list and newsgroup archives, turned into HTML and semi-indexed by thread. This product ran for 2 releases and then stopped with a thud once it became obvious that there was simply too much data to deal with on one CD. Perhaps when DVD @@ -612,43 +611,43 @@
      CD cover - FreeBSD Toolkit: Six disc set of resources to make your - FreeBSD experience more enriching. + &os; Toolkit: Six disc set of resources to make your + &os; experience more enriching.
      CD cover - FreeBSD Alpha 4.2 - The full version of the DEC Alpha 64-bit + &os; Alpha 4.2 - The full version of the DEC Alpha 64-bit UNIX operating system.
      CD cover - FreeBSD 4.2: The full version of the PC 32-bit UNIX operating system. + &os; 4.2: The full version of the PC 32-bit UNIX operating system.
      CD cover - FreeBSD 4.2 CD-ROM. Lehmanns CD-ROM Edition. - January 2001, 4 CD-ROMs. Lehmanns Fachbuchhandlung. Germany. + &os; 4.2 CD-ROM. Lehmanns CD-ROM Edition. + January 2001, 4 CD-ROMs. Lehmanns Fachbuchhandlung. Germany. ISBN 3-931253-72-4.
      CD cover - FreeBSD 4.3 RELEASE CDROM. + &os; 4.3 RELEASE CDROM. April 2001, Wind River Systems. ISBN 1-57176-300-7. -
      CD cover - FreeBSD Toolkit: Six disc set of resources to make your - FreeBSD experience more enriching. + &os; Toolkit: Six disc set of resources to make your + &os; experience more enriching. June 2001, Wind River Systems. ISBN 1-57176-301-5.
      CD cover - FreeBSD 4.4 CD-ROM. Lehmanns CD-ROM Edition. - November 2001, 6 CD-ROMs in Jewelcase. + &os; 4.4 CD-ROM. Lehmanns CD-ROM Edition. + November 2001, 6 CD-ROMs in Jewelcase. Lehmanns Fachbuchhandlung. Germany. ISBN 3-931253-84-8. @@ -666,16 +665,16 @@
      CD cover - FreeBSD 4.4 RELEASE CDROM. Wind River Systems. September 2001. + &os; 4.4 RELEASE CDROM. Wind River Systems. September 2001. ISBN 1-57176-304-X. -
      CD cover - FreeBSD 4.5 RELEASE CDROM. - February 2002, FreeBSD Mall Inc. ISBN 1-57176-306-6. -
      @@ -690,14 +689,14 @@ HEIGHT="213" alt="magazine cover"> Cover of Korean UNIX magazine, May 1997 issue. Also included FreeBSD 2.2.1 with cover CDs. + HREf="#221cd">&os; 2.2.1 with cover CDs. magazine cover - UNIX User Magazine November 1996 issue. Also included FreeBSD + UNIX User Magazine November 1996 issue. Also included &os; 2.1.5 on cover CD. @@ -705,9 +704,9 @@ magazine cover - This is the "FreeBSD Full Course" special in April 1997's Software + This is the "&os; Full Course" special in April 1997's Software Design (published by Gijutsu Hyoron Sha). There are 80 pages of - FreeBSD articles covering everything from installation to tracking + &os; articles covering everything from installation to tracking -current. @@ -729,10 +728,10 @@ This is the "BSD magazine" published by ASCII corporation, the world's first publication specialized in BSD. - BSD magazine covers FreeBSD, NetBSD, OpenBSD and BSD/OS. + BSD magazine covers &os;, NetBSD, OpenBSD and BSD/OS. The premiere issue features articles on the history of BSD, installation, and Ports/Packages; it also includes 4 CD-ROMs - containing FreeBSD 3.2-RELEASE, NetBSD 1.4.1 and OpenBSD 2.5. + containing &os; 3.2-RELEASE, NetBSD 1.4.1 and OpenBSD 2.5. From jhb at FreeBSD.org Mon Jun 1 21:59:11 2009 From: jhb at FreeBSD.org (John Baldwin) Date: Mon Jun 1 21:59:19 2009 Subject: PERFORCE change 163326 for review Message-ID: <200906012159.n51Lx93Y068544@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163326 Change 163326 by jhb@jhb_jhbbsd on 2009/06/01 21:59:08 IFC @163323 Affected files ... .. //depot/projects/smpng/share/man/man9/Makefile#3 integrate .. //depot/projects/smpng/share/man/man9/VOP_ACCESS.9#2 integrate .. //depot/projects/smpng/share/man/man9/sglist.9#1 branch .. //depot/projects/smpng/sys/amd64/amd64/dump_machdep.c#9 integrate .. //depot/projects/smpng/sys/amd64/amd64/minidump_machdep.c#8 integrate .. //depot/projects/smpng/sys/amd64/linux32/linux.h#24 integrate .. //depot/projects/smpng/sys/amd64/linux32/linux32_sysent.c#27 integrate .. //depot/projects/smpng/sys/arm/arm/dump_machdep.c#8 integrate .. //depot/projects/smpng/sys/arm/xscale/ixp425/if_npe.c#12 integrate .. //depot/projects/smpng/sys/arm/xscale/ixp425/ixp425_qmgr.c#6 integrate .. //depot/projects/smpng/sys/arm/xscale/ixp425/ixp425_qmgr.h#2 integrate .. //depot/projects/smpng/sys/boot/common/boot.c#5 integrate .. //depot/projects/smpng/sys/boot/i386/libi386/biosdisk.c#21 integrate .. //depot/projects/smpng/sys/boot/uboot/lib/net.c#5 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/kern/opensolaris.c#3 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/kern/opensolaris_misc.c#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#3 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#6 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_sysent.c#53 integrate .. //depot/projects/smpng/sys/compat/linux/linux_misc.c#98 integrate .. //depot/projects/smpng/sys/compat/linux/linux_socket.c#48 integrate .. //depot/projects/smpng/sys/compat/ndis/subr_usbd.c#11 integrate .. //depot/projects/smpng/sys/compat/svr4/svr4_stat.c#22 integrate .. //depot/projects/smpng/sys/compat/svr4/svr4_sysent.c#20 integrate .. //depot/projects/smpng/sys/conf/NOTES#169 integrate .. //depot/projects/smpng/sys/conf/files#241 integrate .. //depot/projects/smpng/sys/conf/files.powerpc#53 integrate .. //depot/projects/smpng/sys/conf/options#168 integrate .. //depot/projects/smpng/sys/contrib/dev/mwl/LICENSE#1 branch .. //depot/projects/smpng/sys/contrib/dev/mwl/Makefile#1 branch .. //depot/projects/smpng/sys/contrib/dev/mwl/mw88W8363.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/dev/mwl/mwlboot.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/pf/net/pf_ioctl.c#31 integrate .. //depot/projects/smpng/sys/ddb/db_textdump.c#5 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/Makefile#14 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm.c#9 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm_gram.y#12 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y#5 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l#6 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm_scan.l#10 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm_symbol.c#10 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aicasm/aicasm_symbol.h#7 integrate .. //depot/projects/smpng/sys/dev/ata/ata-all.h#64 integrate .. //depot/projects/smpng/sys/dev/ata/ata-usb.c#13 integrate .. //depot/projects/smpng/sys/dev/ata/chipsets/ata-ahci.c#8 integrate .. //depot/projects/smpng/sys/dev/ata/chipsets/ata-intel.c#5 integrate .. //depot/projects/smpng/sys/dev/bge/if_bge.c#107 integrate .. //depot/projects/smpng/sys/dev/bwi/if_bwi.c#3 integrate .. //depot/projects/smpng/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c#3 integrate .. //depot/projects/smpng/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c#17 integrate .. //depot/projects/smpng/sys/dev/dc/if_dc.c#22 integrate .. //depot/projects/smpng/sys/dev/e1000/if_em.c#8 integrate .. //depot/projects/smpng/sys/dev/firewire/firewire.c#50 integrate .. //depot/projects/smpng/sys/dev/firewire/if_fwe.c#34 integrate .. //depot/projects/smpng/sys/dev/firewire/if_fwip.c#15 integrate .. //depot/projects/smpng/sys/dev/fxp/if_fxp.c#90 integrate .. //depot/projects/smpng/sys/dev/if_ndis/if_ndisvar.h#26 integrate .. //depot/projects/smpng/sys/dev/iwn/if_iwn.c#9 integrate .. //depot/projects/smpng/sys/dev/ixgb/if_ixgb.c#21 integrate .. //depot/projects/smpng/sys/dev/lmc/if_lmc.c#23 integrate .. //depot/projects/smpng/sys/dev/lmc/if_lmc.h#9 integrate .. //depot/projects/smpng/sys/dev/mge/if_mge.c#4 integrate .. //depot/projects/smpng/sys/dev/mwl/if_mwl.c#1 branch .. //depot/projects/smpng/sys/dev/mwl/if_mwl_pci.c#1 branch .. //depot/projects/smpng/sys/dev/mwl/if_mwlioctl.h#1 branch .. //depot/projects/smpng/sys/dev/mwl/if_mwlvar.h#1 branch .. //depot/projects/smpng/sys/dev/mwl/mwldiag.h#1 branch .. //depot/projects/smpng/sys/dev/mwl/mwlhal.c#1 branch .. //depot/projects/smpng/sys/dev/mwl/mwlhal.h#1 branch .. //depot/projects/smpng/sys/dev/mwl/mwlreg.h#1 branch .. //depot/projects/smpng/sys/dev/mxge/if_mxge.c#28 integrate .. //depot/projects/smpng/sys/dev/mxge/if_mxge_var.h#15 integrate .. //depot/projects/smpng/sys/dev/nfe/if_nfe.c#17 integrate .. //depot/projects/smpng/sys/dev/nge/if_nge.c#56 integrate .. //depot/projects/smpng/sys/dev/pci/pci.c#109 integrate .. //depot/projects/smpng/sys/dev/pci/pcivar.h#30 integrate .. //depot/projects/smpng/sys/dev/ral/rt2560.c#16 integrate .. //depot/projects/smpng/sys/dev/re/if_re.c#75 integrate .. //depot/projects/smpng/sys/dev/sf/if_sf.c#2 integrate .. //depot/projects/smpng/sys/dev/sis/if_sis.c#5 integrate .. //depot/projects/smpng/sys/dev/smc/if_smc.c#2 integrate .. //depot/projects/smpng/sys/dev/sound/pci/hda/hdac.c#32 integrate .. //depot/projects/smpng/sys/dev/sound/usb/uaudio.c#26 integrate .. //depot/projects/smpng/sys/dev/ste/if_ste.c#2 integrate .. //depot/projects/smpng/sys/dev/stge/if_stge.c#10 integrate .. //depot/projects/smpng/sys/dev/syscons/daemon/daemon_saver.c#7 integrate .. //depot/projects/smpng/sys/dev/syscons/scterm-teken.c#5 integrate .. //depot/projects/smpng/sys/dev/syscons/teken/sequences#3 integrate .. //depot/projects/smpng/sys/dev/syscons/teken/teken.c#6 integrate .. //depot/projects/smpng/sys/dev/syscons/teken/teken.h#5 integrate .. //depot/projects/smpng/sys/dev/syscons/teken/teken_subr_compat.h#3 integrate .. //depot/projects/smpng/sys/dev/tsec/if_tsec.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/controller/at91dci.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/controller/at91dci.h#6 integrate .. //depot/projects/smpng/sys/dev/usb/controller/atmegadci.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/controller/atmegadci.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/controller/avr32dci.c#2 integrate .. //depot/projects/smpng/sys/dev/usb/controller/avr32dci.h#2 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ehci.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ehci.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/controller/musb_otg.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/controller/musb_otg.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ohci.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ohci.h#6 integrate .. //depot/projects/smpng/sys/dev/usb/controller/uhci.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/controller/uhci.h#6 integrate .. //depot/projects/smpng/sys/dev/usb/controller/usb_controller.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/controller/uss820dci.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/controller/uss820dci.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/input/uhid.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/input/ukbd.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/input/ums.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/misc/udbp.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/misc/ufm.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_aue.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_axe.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_cdce.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_cue.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_kue.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_rue.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_udav.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/net/usb_ethernet.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/net/usb_ethernet.h#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/u3g.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uark.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/ubsa.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/ubser.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uchcom.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/ucycom.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/serial/ufoma.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uftdi.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/serial/ugensa.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uipaq.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/ulpt.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/serial/umct.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/serial/umodem.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/serial/umoscom.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uplcom.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/serial/usb_serial.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uslcom.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uvisor.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uvscom.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/storage/umass.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/storage/urio.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/storage/ustorage_fs.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/template/usb_template.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/usb_bus.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_busdma.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_busdma.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_compat_linux.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_compat_linux.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_controller.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_core.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/usb_dev.c#10 integrate .. //depot/projects/smpng/sys/dev/usb/usb_dev.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_device.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/usb_device.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/usb_dynamic.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/usb_dynamic.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_error.c#2 integrate .. //depot/projects/smpng/sys/dev/usb/usb_generic.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/usb_handle_request.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hid.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hid.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hub.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hub.h#5 integrate .. //depot/projects/smpng/sys/dev/usb/usb_lookup.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_lookup.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_mbuf.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_mbuf.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_msctest.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/usb_msctest.h#3 integrate .. //depot/projects/smpng/sys/dev/usb/usb_process.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_process.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/usb_request.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_request.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/usb_transfer.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/usb_transfer.h#5 integrate .. //depot/projects/smpng/sys/dev/usb/usb_util.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/usbdevs#138 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_rum.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_uath.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_upgt.c#4 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_ural.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtw.c#2 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtwvar.h#2 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_zyd.c#6 integrate .. //depot/projects/smpng/sys/dev/vge/if_vge.c#25 integrate .. //depot/projects/smpng/sys/dev/vr/if_vr.c#5 integrate .. //depot/projects/smpng/sys/dev/xl/if_xl.c#4 integrate .. //depot/projects/smpng/sys/fs/cd9660/cd9660_rrip.c#7 integrate .. //depot/projects/smpng/sys/fs/nfs/nfsport.h#5 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clbio.c#4 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clnode.c#4 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clstate.c#3 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clvfsops.c#5 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clvnops.c#4 integrate .. //depot/projects/smpng/sys/fs/nfsserver/nfs_nfsdport.c#5 integrate .. //depot/projects/smpng/sys/fs/nullfs/null_subr.c#21 integrate .. //depot/projects/smpng/sys/fs/nullfs/null_vnops.c#41 integrate .. //depot/projects/smpng/sys/fs/pseudofs/pseudofs_vnops.c#58 integrate .. //depot/projects/smpng/sys/geom/label/g_label.c#15 integrate .. //depot/projects/smpng/sys/geom/vinum/geom_vinum_create.c#2 integrate .. //depot/projects/smpng/sys/geom/vinum/geom_vinum_drive.c#25 integrate .. //depot/projects/smpng/sys/i386/i386/dump_machdep.c#13 integrate .. //depot/projects/smpng/sys/i386/i386/minidump_machdep.c#8 integrate .. //depot/projects/smpng/sys/i386/ibcs2/ibcs2_socksys.c#17 integrate .. //depot/projects/smpng/sys/i386/ibcs2/ibcs2_sysent.c#20 integrate .. //depot/projects/smpng/sys/i386/include/apicvar.h#33 integrate .. //depot/projects/smpng/sys/i386/linux/linux.h#28 integrate .. //depot/projects/smpng/sys/i386/linux/linux_sysent.c#45 integrate .. //depot/projects/smpng/sys/i386/xen/mp_machdep.c#11 integrate .. //depot/projects/smpng/sys/ia64/ia64/dump_machdep.c#12 integrate .. //depot/projects/smpng/sys/kern/init_sysent.c#90 integrate .. //depot/projects/smpng/sys/kern/kern_conf.c#61 integrate .. //depot/projects/smpng/sys/kern/kern_cpu.c#14 integrate .. //depot/projects/smpng/sys/kern/kern_jail.c#69 integrate .. //depot/projects/smpng/sys/kern/kern_mib.c#44 integrate .. //depot/projects/smpng/sys/kern/kern_poll.c#33 integrate .. //depot/projects/smpng/sys/kern/kern_proc.c#105 integrate .. //depot/projects/smpng/sys/kern/kern_prot.c#110 integrate .. //depot/projects/smpng/sys/kern/kern_shutdown.c#76 integrate .. //depot/projects/smpng/sys/kern/kern_vimage.c#6 integrate .. //depot/projects/smpng/sys/kern/kern_xxx.c#25 integrate .. //depot/projects/smpng/sys/kern/makesyscalls.sh#27 integrate .. //depot/projects/smpng/sys/kern/subr_sglist.c#1 branch .. //depot/projects/smpng/sys/kern/uipc_sockbuf.c#15 integrate .. //depot/projects/smpng/sys/kern/uipc_socket.c#123 integrate .. //depot/projects/smpng/sys/kern/uipc_syscalls.c#117 integrate .. //depot/projects/smpng/sys/kern/vfs_aio.c#85 integrate .. //depot/projects/smpng/sys/kern/vfs_bio.c#123 integrate .. //depot/projects/smpng/sys/kern/vfs_cache.c#56 integrate .. //depot/projects/smpng/sys/kern/vfs_default.c#61 integrate .. //depot/projects/smpng/sys/kern/vfs_mount.c#94 integrate .. //depot/projects/smpng/sys/kern/vfs_subr.c#167 integrate .. //depot/projects/smpng/sys/kern/vnode_if.src#42 integrate .. //depot/projects/smpng/sys/kgssapi/gsstest.c#4 integrate .. //depot/projects/smpng/sys/modules/Makefile#162 integrate .. //depot/projects/smpng/sys/modules/cpufreq/Makefile#8 integrate .. //depot/projects/smpng/sys/modules/geom/geom_part/geom_part_ebr/Makefile#2 integrate .. //depot/projects/smpng/sys/modules/mwl/Makefile#1 branch .. //depot/projects/smpng/sys/modules/mwlfw/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/Makefile#18 integrate .. //depot/projects/smpng/sys/modules/zfs/Makefile#10 integrate .. //depot/projects/smpng/sys/net/if.c#119 integrate .. //depot/projects/smpng/sys/net/if.h#41 integrate .. //depot/projects/smpng/sys/net/if_var.h#63 integrate .. //depot/projects/smpng/sys/net/netisr.c#17 integrate .. //depot/projects/smpng/sys/net/netisr.h#14 integrate .. //depot/projects/smpng/sys/net/route.c#47 integrate .. //depot/projects/smpng/sys/net/route.h#32 integrate .. //depot/projects/smpng/sys/net/rtsock.c#72 integrate .. //depot/projects/smpng/sys/net/vnet.h#10 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_dfs.c#3 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_freebsd.c#22 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_ht.c#10 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_ht.h#9 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_ioctl.h#21 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_node.h#29 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_phy.h#2 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_proto.h#25 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_scan.h#7 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_superg.c#5 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_tdma.c#12 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_var.h#40 integrate .. //depot/projects/smpng/sys/netatalk/ddp_usrreq.c#33 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c#25 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c#12 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c#20 integrate .. //depot/projects/smpng/sys/netgraph/ng_ksocket.c#34 integrate .. //depot/projects/smpng/sys/netinet/accf_data.c#9 integrate .. //depot/projects/smpng/sys/netinet/accf_dns.c#3 integrate .. //depot/projects/smpng/sys/netinet/accf_http.c#10 integrate .. //depot/projects/smpng/sys/netinet/if_ether.c#70 integrate .. //depot/projects/smpng/sys/netinet/igmp.c#33 integrate .. //depot/projects/smpng/sys/netinet/in.h#47 integrate .. //depot/projects/smpng/sys/netinet/in_pcb.c#96 integrate .. //depot/projects/smpng/sys/netinet/in_pcb.h#64 integrate .. //depot/projects/smpng/sys/netinet/in_rmx.c#25 integrate .. //depot/projects/smpng/sys/netinet/ip_divert.c#65 integrate .. //depot/projects/smpng/sys/netinet/ip_input.c#100 integrate .. //depot/projects/smpng/sys/netinet/ip_output.c#108 integrate .. //depot/projects/smpng/sys/netinet/raw_ip.c#81 integrate .. //depot/projects/smpng/sys/netinet/sctp_pcb.c#29 integrate .. //depot/projects/smpng/sys/netinet/sctp_sysctl.c#14 integrate .. //depot/projects/smpng/sys/netinet/sctp_sysctl.h#10 integrate .. //depot/projects/smpng/sys/netinet/sctp_uio.h#23 integrate .. //depot/projects/smpng/sys/netinet/sctputil.c#30 integrate .. //depot/projects/smpng/sys/netinet6/icmp6.c#54 integrate .. //depot/projects/smpng/sys/netinet6/in6.h#25 integrate .. //depot/projects/smpng/sys/netinet6/in6_ifattach.c#34 integrate .. //depot/projects/smpng/sys/netinet6/in6_pcb.c#62 integrate .. //depot/projects/smpng/sys/netinet6/in6_rmx.c#21 integrate .. //depot/projects/smpng/sys/netinet6/ip6_input.c#63 integrate .. //depot/projects/smpng/sys/netinet6/ip6_output.c#64 integrate .. //depot/projects/smpng/sys/netinet6/nd6.c#53 integrate .. //depot/projects/smpng/sys/netinet6/nd6_rtr.c#31 integrate .. //depot/projects/smpng/sys/netinet6/vinet6.h#8 integrate .. //depot/projects/smpng/sys/netipsec/ipsec_input.c#19 integrate .. //depot/projects/smpng/sys/netipx/ipx_input.c#22 integrate .. //depot/projects/smpng/sys/netnatm/natm_proto.c#18 integrate .. //depot/projects/smpng/sys/netsmb/smb_trantcp.c#24 integrate .. //depot/projects/smpng/sys/nfsclient/bootp_subr.c#41 integrate .. //depot/projects/smpng/sys/nfsclient/nfs_bio.c#58 integrate .. //depot/projects/smpng/sys/nfsclient/nfs_socket.c#61 integrate .. //depot/projects/smpng/sys/nfsclient/nfs_vfsops.c#72 integrate .. //depot/projects/smpng/sys/nfsserver/nfs.h#26 integrate .. //depot/projects/smpng/sys/nfsserver/nfs_srvkrpc.c#6 integrate .. //depot/projects/smpng/sys/nfsserver/nfs_srvsock.c#38 integrate .. //depot/projects/smpng/sys/nfsserver/nfs_syscalls.c#43 integrate .. //depot/projects/smpng/sys/nlm/nlm_advlock.c#5 integrate .. //depot/projects/smpng/sys/pci/if_rl.c#77 integrate .. //depot/projects/smpng/sys/powerpc/aim/machdep.c#14 integrate .. //depot/projects/smpng/sys/powerpc/booke/machdep.c#12 integrate .. //depot/projects/smpng/sys/powerpc/conf/GENERIC#58 integrate .. //depot/projects/smpng/sys/powerpc/conf/NOTES#15 integrate .. //depot/projects/smpng/sys/powerpc/cpufreq/dfs.c#1 branch .. //depot/projects/smpng/sys/powerpc/mpc85xx/atpic.c#2 integrate .. //depot/projects/smpng/sys/powerpc/ofw/ofw_cpu.c#1 branch .. //depot/projects/smpng/sys/powerpc/powermac/pmu.c#3 integrate .. //depot/projects/smpng/sys/powerpc/powermac/vcoregpio.c#1 branch .. //depot/projects/smpng/sys/powerpc/powerpc/cpu.c#14 integrate .. //depot/projects/smpng/sys/rpc/authunix_prot.c#5 integrate .. //depot/projects/smpng/sys/rpc/clnt_dg.c#4 integrate .. //depot/projects/smpng/sys/rpc/clnt_vc.c#5 integrate .. //depot/projects/smpng/sys/rpc/svc_dg.c#3 integrate .. //depot/projects/smpng/sys/rpc/svc_vc.c#4 integrate .. //depot/projects/smpng/sys/rpc/xdr.h#4 integrate .. //depot/projects/smpng/sys/sparc64/sparc64/dump_machdep.c#12 integrate .. //depot/projects/smpng/sys/sun4v/sun4v/dump_machdep.c#5 integrate .. //depot/projects/smpng/sys/sys/buf.h#55 integrate .. //depot/projects/smpng/sys/sys/conf.h#59 integrate .. //depot/projects/smpng/sys/sys/cpu.h#4 integrate .. //depot/projects/smpng/sys/sys/jail.h#27 integrate .. //depot/projects/smpng/sys/sys/kernel.h#45 integrate .. //depot/projects/smpng/sys/sys/mount.h#75 integrate .. //depot/projects/smpng/sys/sys/param.h#146 integrate .. //depot/projects/smpng/sys/sys/pcpu.h#25 integrate .. //depot/projects/smpng/sys/sys/priv.h#18 integrate .. //depot/projects/smpng/sys/sys/sglist.h#1 branch .. //depot/projects/smpng/sys/sys/sockbuf.h#3 integrate .. //depot/projects/smpng/sys/sys/socketvar.h#64 integrate .. //depot/projects/smpng/sys/sys/sockio.h#14 integrate .. //depot/projects/smpng/sys/sys/syscallsubr.h#61 integrate .. //depot/projects/smpng/sys/sys/sysent.h#33 integrate .. //depot/projects/smpng/sys/sys/ucred.h#32 integrate .. //depot/projects/smpng/sys/sys/user.h#35 integrate .. //depot/projects/smpng/sys/sys/vimage.h#12 integrate .. //depot/projects/smpng/sys/sys/vnode.h#99 integrate .. //depot/projects/smpng/sys/vm/vm_mmap.c#76 integrate .. //depot/projects/smpng/sys/vm/vm_page.c#104 integrate .. //depot/projects/smpng/sys/vm/vm_page.h#46 integrate .. //depot/projects/smpng/sys/xen/evtchn/evtchn.c#7 integrate Differences ... ==== //depot/projects/smpng/share/man/man9/Makefile#3 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/share/man/man9/Makefile,v 1.350 2009/05/27 16:36:54 zml Exp $ +# $FreeBSD: src/share/man/man9/Makefile,v 1.352 2009/06/01 20:35:53 jhb Exp $ MAN= accept_filter.9 \ accf_data.9 \ @@ -218,6 +218,7 @@ selrecord.9 \ sema.9 \ sf_buf.9 \ + sglist.9 \ signal.9 \ sleep.9 \ sleepqueue.9 \ @@ -1022,6 +1023,24 @@ sf_buf.9 sf_buf_free.9 \ sf_buf.9 sf_buf_kva.9 \ sf_buf.9 sf_buf_page.9 +MLINKS+=sglist.9 sglist_alloc.9 \ + sglist.9 sglist_append.9 \ + sglist.9 sglist_append_mbuf.9 \ + sglist.9 sglist_append_phys.9 \ + sglist.9 sglist_append_uio.9 \ + sglist.9 sglist_append_user.9 \ + sglist.9 sglist_build.9 \ + sglist.9 sglist_clone.9 \ + sglist.9 sglist_consume_uio.9 \ + sglist.9 sglist_count.9 \ + sglist.9 sglist_free.9 \ + sglist.9 sglist_hold.9 \ + sglist.9 sglist_init.9 \ + sglist.9 sglist_join.9 \ + sglist.9 sglist_length.9 \ + sglist.9 sglist_reset.9 \ + sglist.9 sglist_slice.9 \ + sglist.9 sglist_split.9 MLINKS+=signal.9 cursig.9 \ signal.9 execsigs.9 \ signal.9 issignal.9 \ @@ -1288,6 +1307,7 @@ MLINKS+=vm_page_wakeup.9 vm_page_busy.9 \ vm_page_wakeup.9 vm_page_flash.9 MLINKS+=vm_page_wire.9 vm_page_unwire.9 +MLINKS+=VOP_ACCESS.9 VOP_ACCESSX.9 MLINKS+=VOP_ATTRIB.9 VOP_GETATTR.9 \ VOP_ATTRIB.9 VOP_SETATTR.9 MLINKS+=VOP_CREATE.9 VOP_MKDIR.9 \ ==== //depot/projects/smpng/share/man/man9/VOP_ACCESS.9#2 (text+ko) ==== @@ -27,19 +27,22 @@ .\" (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: src/share/man/man9/VOP_ACCESS.9,v 1.24 2009/03/30 20:56:37 trasz Exp $ +.\" $FreeBSD: src/share/man/man9/VOP_ACCESS.9,v 1.26 2009/06/01 07:48:27 trasz Exp $ .\" -.Dd July 24, 1996 +.Dd June 1, 2009 .Os .Dt VOP_ACCESS 9 .Sh NAME -.Nm VOP_ACCESS +.Nm VOP_ACCESS , +.Nm VOP_ACCESSX .Nd "check access permissions of a file or Unix domain socket" .Sh SYNOPSIS .In sys/param.h .In sys/vnode.h .Ft int .Fn VOP_ACCESS "struct vnode *vp" "accmode_t accmode" "struct ucred *cred" "struct thread *td" +.Ft int +.Fn VOP_ACCESSX "struct vnode *vp" "accmode_t accmode" "struct ucred *cred" "struct thread *td" .Sh DESCRIPTION This entry point checks the access permissions of the file against the given credentials. @@ -63,6 +66,20 @@ .Dv VWRITE or .Dv VEXEC . +For +.Fn VOP_ACCESS , +the only flags that may be set in +.Fa accmode +are +.Dv VEXEC , +.Dv VWRITE , +.Dv VREAD , +.Dv VADMIN +and +.Dv VAPPEND . +To check for other flags, one has to use +.Fn VOP_ACCESSX +instead. .Sh LOCKS The vnode will be locked on entry and should remain locked on return. .Sh RETURN VALUES ==== //depot/projects/smpng/sys/amd64/amd64/dump_machdep.c#9 (text+ko) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/amd64/amd64/dump_machdep.c,v 1.17 2008/10/31 10:11:35 kib Exp $"); +__FBSDID("$FreeBSD: src/sys/amd64/amd64/dump_machdep.c,v 1.18 2009/05/29 21:27:12 jamie Exp $"); #include #include @@ -34,7 +34,6 @@ #include #include #include -#include #include #include #include ==== //depot/projects/smpng/sys/amd64/amd64/minidump_machdep.c#8 (text) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/amd64/amd64/minidump_machdep.c,v 1.9 2008/10/31 10:11:35 kib Exp $"); +__FBSDID("$FreeBSD: src/sys/amd64/amd64/minidump_machdep.c,v 1.10 2009/05/29 21:27:12 jamie Exp $"); #include #include @@ -34,7 +34,6 @@ #include #include #include -#include #include #include #include ==== //depot/projects/smpng/sys/amd64/linux32/linux.h#24 (text+ko) ==== @@ -27,7 +27,7 @@ * (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: src/sys/amd64/linux32/linux.h,v 1.28 2009/05/16 18:48:41 dchagin Exp $ + * $FreeBSD: src/sys/amd64/linux32/linux.h,v 1.29 2009/06/01 20:48:39 dchagin Exp $ */ #ifndef _AMD64_LINUX_H_ @@ -669,6 +669,7 @@ #define LINUX_GETSOCKOPT 15 #define LINUX_SENDMSG 16 #define LINUX_RECVMSG 17 +#define LINUX_ACCEPT4 18 #define LINUX_SOL_SOCKET 1 #define LINUX_SOL_IP 0 ==== //depot/projects/smpng/sys/amd64/linux32/linux32_sysent.c#27 (text+ko) ==== @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.39 2008/11/29 14:57:58 kib Exp $ + * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.40 2009/06/01 16:14:38 rwatson Exp $ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 185438 2008-11-29 14:55:24Z kib */ @@ -19,321 +19,321 @@ /* The casts are bogus but will do for now. */ struct sysent linux_sysent[] = { #define nosys linux_nosys - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 0 = setup */ - { AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT, NULL, 0, 0 }, /* 1 = exit */ - { 0, (sy_call_t *)linux_fork, AUE_FORK, NULL, 0, 0 }, /* 2 = linux_fork */ - { AS(read_args), (sy_call_t *)read, AUE_NULL, NULL, 0, 0 }, /* 3 = read */ - { AS(write_args), (sy_call_t *)write, AUE_NULL, NULL, 0, 0 }, /* 4 = write */ - { AS(linux_open_args), (sy_call_t *)linux_open, AUE_OPEN_RWTC, NULL, 0, 0 }, /* 5 = linux_open */ - { AS(close_args), (sy_call_t *)close, AUE_CLOSE, NULL, 0, 0 }, /* 6 = close */ - { AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_WAIT4, NULL, 0, 0 }, /* 7 = linux_waitpid */ - { AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_CREAT, NULL, 0, 0 }, /* 8 = linux_creat */ - { AS(linux_link_args), (sy_call_t *)linux_link, AUE_LINK, NULL, 0, 0 }, /* 9 = linux_link */ - { AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_UNLINK, NULL, 0, 0 }, /* 10 = linux_unlink */ - { AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_EXECVE, NULL, 0, 0 }, /* 11 = linux_execve */ - { AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_CHDIR, NULL, 0, 0 }, /* 12 = linux_chdir */ - { AS(linux_time_args), (sy_call_t *)linux_time, AUE_NULL, NULL, 0, 0 }, /* 13 = linux_time */ - { AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_MKNOD, NULL, 0, 0 }, /* 14 = linux_mknod */ - { AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_CHMOD, NULL, 0, 0 }, /* 15 = linux_chmod */ - { AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_LCHOWN, NULL, 0, 0 }, /* 16 = linux_lchown16 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 17 = break */ - { AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_STAT, NULL, 0, 0 }, /* 18 = linux_stat */ - { AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_LSEEK, NULL, 0, 0 }, /* 19 = linux_lseek */ - { 0, (sy_call_t *)linux_getpid, AUE_GETPID, NULL, 0, 0 }, /* 20 = linux_getpid */ - { AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_MOUNT, NULL, 0, 0 }, /* 21 = linux_mount */ - { AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_UMOUNT, NULL, 0, 0 }, /* 22 = linux_oldumount */ - { AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_SETUID, NULL, 0, 0 }, /* 23 = linux_setuid16 */ - { 0, (sy_call_t *)linux_getuid16, AUE_GETUID, NULL, 0, 0 }, /* 24 = linux_getuid16 */ - { 0, (sy_call_t *)linux_stime, AUE_SETTIMEOFDAY, NULL, 0, 0 }, /* 25 = linux_stime */ - { AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_PTRACE, NULL, 0, 0 }, /* 26 = linux_ptrace */ - { AS(linux_alarm_args), (sy_call_t *)linux_alarm, AUE_NULL, NULL, 0, 0 }, /* 27 = linux_alarm */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 28 = fstat */ - { 0, (sy_call_t *)linux_pause, AUE_NULL, NULL, 0, 0 }, /* 29 = linux_pause */ - { AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_UTIME, NULL, 0, 0 }, /* 30 = linux_utime */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 31 = stty */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 32 = gtty */ - { AS(linux_access_args), (sy_call_t *)linux_access, AUE_ACCESS, NULL, 0, 0 }, /* 33 = linux_access */ - { AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NICE, NULL, 0, 0 }, /* 34 = linux_nice */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 35 = ftime */ - { 0, (sy_call_t *)sync, AUE_SYNC, NULL, 0, 0 }, /* 36 = sync */ - { AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_KILL, NULL, 0, 0 }, /* 37 = linux_kill */ - { AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME, NULL, 0, 0 }, /* 38 = linux_rename */ - { AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_MKDIR, NULL, 0, 0 }, /* 39 = linux_mkdir */ - { AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_RMDIR, NULL, 0, 0 }, /* 40 = linux_rmdir */ - { AS(dup_args), (sy_call_t *)dup, AUE_DUP, NULL, 0, 0 }, /* 41 = dup */ - { AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_PIPE, NULL, 0, 0 }, /* 42 = linux_pipe */ - { AS(linux_times_args), (sy_call_t *)linux_times, AUE_NULL, NULL, 0, 0 }, /* 43 = linux_times */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 44 = prof */ - { AS(linux_brk_args), (sy_call_t *)linux_brk, AUE_NULL, NULL, 0, 0 }, /* 45 = linux_brk */ - { AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_SETGID, NULL, 0, 0 }, /* 46 = linux_setgid16 */ - { 0, (sy_call_t *)linux_getgid16, AUE_GETGID, NULL, 0, 0 }, /* 47 = linux_getgid16 */ - { AS(linux_signal_args), (sy_call_t *)linux_signal, AUE_NULL, NULL, 0, 0 }, /* 48 = linux_signal */ - { 0, (sy_call_t *)linux_geteuid16, AUE_GETEUID, NULL, 0, 0 }, /* 49 = linux_geteuid16 */ - { 0, (sy_call_t *)linux_getegid16, AUE_GETEGID, NULL, 0, 0 }, /* 50 = linux_getegid16 */ - { AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0 }, /* 51 = acct */ - { AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_UMOUNT, NULL, 0, 0 }, /* 52 = linux_umount */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 53 = lock */ - { AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_IOCTL, NULL, 0, 0 }, /* 54 = linux_ioctl */ - { AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_FCNTL, NULL, 0, 0 }, /* 55 = linux_fcntl */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 56 = mpx */ - { AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP, NULL, 0, 0 }, /* 57 = setpgid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 58 = ulimit */ - { 0, (sy_call_t *)linux_olduname, AUE_NULL, NULL, 0, 0 }, /* 59 = linux_olduname */ - { AS(umask_args), (sy_call_t *)umask, AUE_UMASK, NULL, 0, 0 }, /* 60 = umask */ - { AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT, NULL, 0, 0 }, /* 61 = chroot */ - { AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL, NULL, 0, 0 }, /* 62 = linux_ustat */ - { AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2, NULL, 0, 0 }, /* 63 = dup2 */ - { 0, (sy_call_t *)linux_getppid, AUE_GETPPID, NULL, 0, 0 }, /* 64 = linux_getppid */ - { 0, (sy_call_t *)getpgrp, AUE_GETPGRP, NULL, 0, 0 }, /* 65 = getpgrp */ - { 0, (sy_call_t *)setsid, AUE_SETSID, NULL, 0, 0 }, /* 66 = setsid */ - { AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL, NULL, 0, 0 }, /* 67 = linux_sigaction */ - { 0, (sy_call_t *)linux_sgetmask, AUE_NULL, NULL, 0, 0 }, /* 68 = linux_sgetmask */ - { AS(linux_ssetmask_args), (sy_call_t *)linux_ssetmask, AUE_NULL, NULL, 0, 0 }, /* 69 = linux_ssetmask */ - { AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_SETREUID, NULL, 0, 0 }, /* 70 = linux_setreuid16 */ - { AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_SETREGID, NULL, 0, 0 }, /* 71 = linux_setregid16 */ - { AS(linux_sigsuspend_args), (sy_call_t *)linux_sigsuspend, AUE_NULL, NULL, 0, 0 }, /* 72 = linux_sigsuspend */ - { AS(linux_sigpending_args), (sy_call_t *)linux_sigpending, AUE_NULL, NULL, 0, 0 }, /* 73 = linux_sigpending */ - { AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_SYSCTL, NULL, 0, 0 }, /* 74 = linux_sethostname */ - { AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_SETRLIMIT, NULL, 0, 0 }, /* 75 = linux_setrlimit */ - { AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_GETRLIMIT, NULL, 0, 0 }, /* 76 = linux_old_getrlimit */ - { AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_GETRUSAGE, NULL, 0, 0 }, /* 77 = linux_getrusage */ - { AS(linux_gettimeofday_args), (sy_call_t *)linux_gettimeofday, AUE_NULL, NULL, 0, 0 }, /* 78 = linux_gettimeofday */ - { AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_SETTIMEOFDAY, NULL, 0, 0 }, /* 79 = linux_settimeofday */ - { AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_GETGROUPS, NULL, 0, 0 }, /* 80 = linux_getgroups16 */ - { AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_SETGROUPS, NULL, 0, 0 }, /* 81 = linux_setgroups16 */ - { AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_SELECT, NULL, 0, 0 }, /* 82 = linux_old_select */ - { AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_SYMLINK, NULL, 0, 0 }, /* 83 = linux_symlink */ - { AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_LSTAT, NULL, 0, 0 }, /* 84 = linux_lstat */ - { AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_READLINK, NULL, 0, 0 }, /* 85 = linux_readlink */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 86 = linux_uselib */ - { AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON, NULL, 0, 0 }, /* 87 = swapon */ - { AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_REBOOT, NULL, 0, 0 }, /* 88 = linux_reboot */ - { AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 89 = linux_readdir */ - { AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_MMAP, NULL, 0, 0 }, /* 90 = linux_mmap */ - { AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP, NULL, 0, 0 }, /* 91 = munmap */ - { AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_TRUNCATE, NULL, 0, 0 }, /* 92 = linux_truncate */ - { AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_FTRUNCATE, NULL, 0, 0 }, /* 93 = linux_ftruncate */ - { AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD, NULL, 0, 0 }, /* 94 = fchmod */ - { AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN, NULL, 0, 0 }, /* 95 = fchown */ - { AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY, NULL, 0, 0 }, /* 96 = linux_getpriority */ - { AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY, NULL, 0, 0 }, /* 97 = setpriority */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 98 = profil */ - { AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_STATFS, NULL, 0, 0 }, /* 99 = linux_statfs */ - { AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_FSTATFS, NULL, 0, 0 }, /* 100 = linux_fstatfs */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 101 = ioperm */ - { AS(linux_socketcall_args), (sy_call_t *)linux_socketcall, AUE_NULL, NULL, 0, 0 }, /* 102 = linux_socketcall */ - { AS(linux_syslog_args), (sy_call_t *)linux_syslog, AUE_NULL, NULL, 0, 0 }, /* 103 = linux_syslog */ - { AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_SETITIMER, NULL, 0, 0 }, /* 104 = linux_setitimer */ - { AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_GETITIMER, NULL, 0, 0 }, /* 105 = linux_getitimer */ - { AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_STAT, NULL, 0, 0 }, /* 106 = linux_newstat */ - { AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_LSTAT, NULL, 0, 0 }, /* 107 = linux_newlstat */ - { AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_FSTAT, NULL, 0, 0 }, /* 108 = linux_newfstat */ - { 0, (sy_call_t *)linux_uname, AUE_NULL, NULL, 0, 0 }, /* 109 = linux_uname */ - { AS(linux_iopl_args), (sy_call_t *)linux_iopl, AUE_NULL, NULL, 0, 0 }, /* 110 = linux_iopl */ - { 0, (sy_call_t *)linux_vhangup, AUE_NULL, NULL, 0, 0 }, /* 111 = linux_vhangup */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 112 = idle */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 113 = vm86old */ - { AS(linux_wait4_args), (sy_call_t *)linux_wait4, AUE_WAIT4, NULL, 0, 0 }, /* 114 = linux_wait4 */ - { 0, (sy_call_t *)linux_swapoff, AUE_SWAPOFF, NULL, 0, 0 }, /* 115 = linux_swapoff */ - { AS(linux_sysinfo_args), (sy_call_t *)linux_sysinfo, AUE_NULL, NULL, 0, 0 }, /* 116 = linux_sysinfo */ - { AS(linux_ipc_args), (sy_call_t *)linux_ipc, AUE_NULL, NULL, 0, 0 }, /* 117 = linux_ipc */ - { AS(fsync_args), (sy_call_t *)fsync, AUE_FSYNC, NULL, 0, 0 }, /* 118 = fsync */ - { AS(linux_sigreturn_args), (sy_call_t *)linux_sigreturn, AUE_SIGRETURN, NULL, 0, 0 }, /* 119 = linux_sigreturn */ - { AS(linux_clone_args), (sy_call_t *)linux_clone, AUE_RFORK, NULL, 0, 0 }, /* 120 = linux_clone */ - { AS(linux_setdomainname_args), (sy_call_t *)linux_setdomainname, AUE_SYSCTL, NULL, 0, 0 }, /* 121 = linux_setdomainname */ - { AS(linux_newuname_args), (sy_call_t *)linux_newuname, AUE_NULL, NULL, 0, 0 }, /* 122 = linux_newuname */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 123 = modify_ldt */ - { 0, (sy_call_t *)linux_adjtimex, AUE_ADJTIME, NULL, 0, 0 }, /* 124 = linux_adjtimex */ - { AS(linux_mprotect_args), (sy_call_t *)linux_mprotect, AUE_MPROTECT, NULL, 0, 0 }, /* 125 = linux_mprotect */ - { AS(linux_sigprocmask_args), (sy_call_t *)linux_sigprocmask, AUE_SIGPROCMASK, NULL, 0, 0 }, /* 126 = linux_sigprocmask */ - { 0, (sy_call_t *)linux_create_module, AUE_NULL, NULL, 0, 0 }, /* 127 = linux_create_module */ - { 0, (sy_call_t *)linux_init_module, AUE_NULL, NULL, 0, 0 }, /* 128 = linux_init_module */ - { 0, (sy_call_t *)linux_delete_module, AUE_NULL, NULL, 0, 0 }, /* 129 = linux_delete_module */ - { 0, (sy_call_t *)linux_get_kernel_syms, AUE_NULL, NULL, 0, 0 }, /* 130 = linux_get_kernel_syms */ - { 0, (sy_call_t *)linux_quotactl, AUE_QUOTACTL, NULL, 0, 0 }, /* 131 = linux_quotactl */ - { AS(getpgid_args), (sy_call_t *)getpgid, AUE_GETPGID, NULL, 0, 0 }, /* 132 = getpgid */ - { AS(fchdir_args), (sy_call_t *)fchdir, AUE_FCHDIR, NULL, 0, 0 }, /* 133 = fchdir */ - { 0, (sy_call_t *)linux_bdflush, AUE_BDFLUSH, NULL, 0, 0 }, /* 134 = linux_bdflush */ - { AS(linux_sysfs_args), (sy_call_t *)linux_sysfs, AUE_NULL, NULL, 0, 0 }, /* 135 = linux_sysfs */ - { AS(linux_personality_args), (sy_call_t *)linux_personality, AUE_PERSONALITY, NULL, 0, 0 }, /* 136 = linux_personality */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 137 = afs_syscall */ - { AS(linux_setfsuid16_args), (sy_call_t *)linux_setfsuid16, AUE_SETFSUID, NULL, 0, 0 }, /* 138 = linux_setfsuid16 */ - { AS(linux_setfsgid16_args), (sy_call_t *)linux_setfsgid16, AUE_SETFSGID, NULL, 0, 0 }, /* 139 = linux_setfsgid16 */ - { AS(linux_llseek_args), (sy_call_t *)linux_llseek, AUE_LSEEK, NULL, 0, 0 }, /* 140 = linux_llseek */ - { AS(linux_getdents_args), (sy_call_t *)linux_getdents, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 141 = linux_getdents */ - { AS(linux_select_args), (sy_call_t *)linux_select, AUE_SELECT, NULL, 0, 0 }, /* 142 = linux_select */ - { AS(flock_args), (sy_call_t *)flock, AUE_FLOCK, NULL, 0, 0 }, /* 143 = flock */ - { AS(linux_msync_args), (sy_call_t *)linux_msync, AUE_MSYNC, NULL, 0, 0 }, /* 144 = linux_msync */ - { AS(linux_readv_args), (sy_call_t *)linux_readv, AUE_READV, NULL, 0, 0 }, /* 145 = linux_readv */ - { AS(linux_writev_args), (sy_call_t *)linux_writev, AUE_WRITEV, NULL, 0, 0 }, /* 146 = linux_writev */ - { AS(linux_getsid_args), (sy_call_t *)linux_getsid, AUE_GETSID, NULL, 0, 0 }, /* 147 = linux_getsid */ - { AS(linux_fdatasync_args), (sy_call_t *)linux_fdatasync, AUE_NULL, NULL, 0, 0 }, /* 148 = linux_fdatasync */ - { AS(linux_sysctl_args), (sy_call_t *)linux_sysctl, AUE_SYSCTL, NULL, 0, 0 }, /* 149 = linux_sysctl */ - { AS(mlock_args), (sy_call_t *)mlock, AUE_MLOCK, NULL, 0, 0 }, /* 150 = mlock */ - { AS(munlock_args), (sy_call_t *)munlock, AUE_MUNLOCK, NULL, 0, 0 }, /* 151 = munlock */ - { AS(mlockall_args), (sy_call_t *)mlockall, AUE_MLOCKALL, NULL, 0, 0 }, /* 152 = mlockall */ - { 0, (sy_call_t *)munlockall, AUE_MUNLOCKALL, NULL, 0, 0 }, /* 153 = munlockall */ - { AS(sched_setparam_args), (sy_call_t *)sched_setparam, AUE_SCHED_SETPARAM, NULL, 0, 0 }, /* 154 = sched_setparam */ - { AS(sched_getparam_args), (sy_call_t *)sched_getparam, AUE_SCHED_GETPARAM, NULL, 0, 0 }, /* 155 = sched_getparam */ - { AS(linux_sched_setscheduler_args), (sy_call_t *)linux_sched_setscheduler, AUE_SCHED_SETSCHEDULER, NULL, 0, 0 }, /* 156 = linux_sched_setscheduler */ - { AS(linux_sched_getscheduler_args), (sy_call_t *)linux_sched_getscheduler, AUE_SCHED_GETSCHEDULER, NULL, 0, 0 }, /* 157 = linux_sched_getscheduler */ - { 0, (sy_call_t *)sched_yield, AUE_NULL, NULL, 0, 0 }, /* 158 = sched_yield */ - { AS(linux_sched_get_priority_max_args), (sy_call_t *)linux_sched_get_priority_max, AUE_SCHED_GET_PRIORITY_MAX, NULL, 0, 0 }, /* 159 = linux_sched_get_priority_max */ - { AS(linux_sched_get_priority_min_args), (sy_call_t *)linux_sched_get_priority_min, AUE_SCHED_GET_PRIORITY_MIN, NULL, 0, 0 }, /* 160 = linux_sched_get_priority_min */ - { AS(linux_sched_rr_get_interval_args), (sy_call_t *)linux_sched_rr_get_interval, AUE_SCHED_RR_GET_INTERVAL, NULL, 0, 0 }, /* 161 = linux_sched_rr_get_interval */ - { AS(linux_nanosleep_args), (sy_call_t *)linux_nanosleep, AUE_NULL, NULL, 0, 0 }, /* 162 = linux_nanosleep */ - { AS(linux_mremap_args), (sy_call_t *)linux_mremap, AUE_NULL, NULL, 0, 0 }, /* 163 = linux_mremap */ - { AS(linux_setresuid16_args), (sy_call_t *)linux_setresuid16, AUE_SETRESUID, NULL, 0, 0 }, /* 164 = linux_setresuid16 */ - { AS(linux_getresuid16_args), (sy_call_t *)linux_getresuid16, AUE_GETRESUID, NULL, 0, 0 }, /* 165 = linux_getresuid16 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 166 = vm86 */ - { 0, (sy_call_t *)linux_query_module, AUE_NULL, NULL, 0, 0 }, /* 167 = linux_query_module */ - { AS(poll_args), (sy_call_t *)poll, AUE_POLL, NULL, 0, 0 }, /* 168 = poll */ - { 0, (sy_call_t *)linux_nfsservctl, AUE_NULL, NULL, 0, 0 }, /* 169 = linux_nfsservctl */ - { AS(linux_setresgid16_args), (sy_call_t *)linux_setresgid16, AUE_SETRESGID, NULL, 0, 0 }, /* 170 = linux_setresgid16 */ - { AS(linux_getresgid16_args), (sy_call_t *)linux_getresgid16, AUE_GETRESGID, NULL, 0, 0 }, /* 171 = linux_getresgid16 */ - { AS(linux_prctl_args), (sy_call_t *)linux_prctl, AUE_PRCTL, NULL, 0, 0 }, /* 172 = linux_prctl */ - { AS(linux_rt_sigreturn_args), (sy_call_t *)linux_rt_sigreturn, AUE_NULL, NULL, 0, 0 }, /* 173 = linux_rt_sigreturn */ - { AS(linux_rt_sigaction_args), (sy_call_t *)linux_rt_sigaction, AUE_NULL, NULL, 0, 0 }, /* 174 = linux_rt_sigaction */ - { AS(linux_rt_sigprocmask_args), (sy_call_t *)linux_rt_sigprocmask, AUE_NULL, NULL, 0, 0 }, /* 175 = linux_rt_sigprocmask */ - { AS(linux_rt_sigpending_args), (sy_call_t *)linux_rt_sigpending, AUE_NULL, NULL, 0, 0 }, /* 176 = linux_rt_sigpending */ - { AS(linux_rt_sigtimedwait_args), (sy_call_t *)linux_rt_sigtimedwait, AUE_NULL, NULL, 0, 0 }, /* 177 = linux_rt_sigtimedwait */ - { 0, (sy_call_t *)linux_rt_sigqueueinfo, AUE_NULL, NULL, 0, 0 }, /* 178 = linux_rt_sigqueueinfo */ - { AS(linux_rt_sigsuspend_args), (sy_call_t *)linux_rt_sigsuspend, AUE_NULL, NULL, 0, 0 }, /* 179 = linux_rt_sigsuspend */ - { AS(linux_pread_args), (sy_call_t *)linux_pread, AUE_PREAD, NULL, 0, 0 }, /* 180 = linux_pread */ - { AS(linux_pwrite_args), (sy_call_t *)linux_pwrite, AUE_PWRITE, NULL, 0, 0 }, /* 181 = linux_pwrite */ - { AS(linux_chown16_args), (sy_call_t *)linux_chown16, AUE_CHOWN, NULL, 0, 0 }, /* 182 = linux_chown16 */ - { AS(linux_getcwd_args), (sy_call_t *)linux_getcwd, AUE_GETCWD, NULL, 0, 0 }, /* 183 = linux_getcwd */ - { 0, (sy_call_t *)linux_capget, AUE_CAPGET, NULL, 0, 0 }, /* 184 = linux_capget */ - { 0, (sy_call_t *)linux_capset, AUE_CAPSET, NULL, 0, 0 }, /* 185 = linux_capset */ - { AS(linux_sigaltstack_args), (sy_call_t *)linux_sigaltstack, AUE_NULL, NULL, 0, 0 }, /* 186 = linux_sigaltstack */ - { 0, (sy_call_t *)linux_sendfile, AUE_SENDFILE, NULL, 0, 0 }, /* 187 = linux_sendfile */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 188 = getpmsg */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 189 = putpmsg */ - { 0, (sy_call_t *)linux_vfork, AUE_VFORK, NULL, 0, 0 }, /* 190 = linux_vfork */ - { AS(linux_getrlimit_args), (sy_call_t *)linux_getrlimit, AUE_GETRLIMIT, NULL, 0, 0 }, /* 191 = linux_getrlimit */ - { AS(linux_mmap2_args), (sy_call_t *)linux_mmap2, AUE_MMAP, NULL, 0, 0 }, /* 192 = linux_mmap2 */ - { AS(linux_truncate64_args), (sy_call_t *)linux_truncate64, AUE_TRUNCATE, NULL, 0, 0 }, /* 193 = linux_truncate64 */ - { AS(linux_ftruncate64_args), (sy_call_t *)linux_ftruncate64, AUE_FTRUNCATE, NULL, 0, 0 }, /* 194 = linux_ftruncate64 */ - { AS(linux_stat64_args), (sy_call_t *)linux_stat64, AUE_STAT, NULL, 0, 0 }, /* 195 = linux_stat64 */ - { AS(linux_lstat64_args), (sy_call_t *)linux_lstat64, AUE_LSTAT, NULL, 0, 0 }, /* 196 = linux_lstat64 */ - { AS(linux_fstat64_args), (sy_call_t *)linux_fstat64, AUE_FSTAT, NULL, 0, 0 }, /* 197 = linux_fstat64 */ - { AS(linux_lchown_args), (sy_call_t *)linux_lchown, AUE_LCHOWN, NULL, 0, 0 }, /* 198 = linux_lchown */ - { 0, (sy_call_t *)linux_getuid, AUE_GETUID, NULL, 0, 0 }, /* 199 = linux_getuid */ - { 0, (sy_call_t *)linux_getgid, AUE_GETGID, NULL, 0, 0 }, /* 200 = linux_getgid */ - { 0, (sy_call_t *)geteuid, AUE_GETEUID, NULL, 0, 0 }, /* 201 = geteuid */ - { 0, (sy_call_t *)getegid, AUE_GETEGID, NULL, 0, 0 }, /* 202 = getegid */ - { AS(setreuid_args), (sy_call_t *)setreuid, AUE_SETREUID, NULL, 0, 0 }, /* 203 = setreuid */ - { AS(setregid_args), (sy_call_t *)setregid, AUE_SETREGID, NULL, 0, 0 }, /* 204 = setregid */ - { AS(linux_getgroups_args), (sy_call_t *)linux_getgroups, AUE_GETGROUPS, NULL, 0, 0 }, /* 205 = linux_getgroups */ - { AS(linux_setgroups_args), (sy_call_t *)linux_setgroups, AUE_SETGROUPS, NULL, 0, 0 }, /* 206 = linux_setgroups */ - { AS(fchown_args), (sy_call_t *)fchown, AUE_NULL, NULL, 0, 0 }, /* 207 = fchown */ - { AS(setresuid_args), (sy_call_t *)setresuid, AUE_SETRESUID, NULL, 0, 0 }, /* 208 = setresuid */ - { AS(getresuid_args), (sy_call_t *)getresuid, AUE_GETRESUID, NULL, 0, 0 }, /* 209 = getresuid */ - { AS(setresgid_args), (sy_call_t *)setresgid, AUE_SETRESGID, NULL, 0, 0 }, /* 210 = setresgid */ - { AS(getresgid_args), (sy_call_t *)getresgid, AUE_GETRESGID, NULL, 0, 0 }, /* 211 = getresgid */ - { AS(linux_chown_args), (sy_call_t *)linux_chown, AUE_CHOWN, NULL, 0, 0 }, /* 212 = linux_chown */ - { AS(setuid_args), (sy_call_t *)setuid, AUE_SETUID, NULL, 0, 0 }, /* 213 = setuid */ - { AS(setgid_args), (sy_call_t *)setgid, AUE_SETGID, NULL, 0, 0 }, /* 214 = setgid */ - { AS(linux_setfsuid_args), (sy_call_t *)linux_setfsuid, AUE_SETFSUID, NULL, 0, 0 }, /* 215 = linux_setfsuid */ - { AS(linux_setfsgid_args), (sy_call_t *)linux_setfsgid, AUE_SETFSGID, NULL, 0, 0 }, /* 216 = linux_setfsgid */ - { AS(linux_pivot_root_args), (sy_call_t *)linux_pivot_root, AUE_PIVOT_ROOT, NULL, 0, 0 }, /* 217 = linux_pivot_root */ - { AS(linux_mincore_args), (sy_call_t *)linux_mincore, AUE_MINCORE, NULL, 0, 0 }, /* 218 = linux_mincore */ - { AS(madvise_args), (sy_call_t *)madvise, AUE_MADVISE, NULL, 0, 0 }, /* 219 = madvise */ - { AS(linux_getdents64_args), (sy_call_t *)linux_getdents64, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 220 = linux_getdents64 */ - { AS(linux_fcntl64_args), (sy_call_t *)linux_fcntl64, AUE_FCNTL, NULL, 0, 0 }, /* 221 = linux_fcntl64 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 222 = */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 223 = */ - { 0, (sy_call_t *)linux_gettid, AUE_NULL, NULL, 0, 0 }, /* 224 = linux_gettid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 225 = linux_readahead */ - { 0, (sy_call_t *)linux_setxattr, AUE_NULL, NULL, 0, 0 }, /* 226 = linux_setxattr */ - { 0, (sy_call_t *)linux_lsetxattr, AUE_NULL, NULL, 0, 0 }, /* 227 = linux_lsetxattr */ - { 0, (sy_call_t *)linux_fsetxattr, AUE_NULL, NULL, 0, 0 }, /* 228 = linux_fsetxattr */ - { 0, (sy_call_t *)linux_getxattr, AUE_NULL, NULL, 0, 0 }, /* 229 = linux_getxattr */ - { 0, (sy_call_t *)linux_lgetxattr, AUE_NULL, NULL, 0, 0 }, /* 230 = linux_lgetxattr */ - { 0, (sy_call_t *)linux_fgetxattr, AUE_NULL, NULL, 0, 0 }, /* 231 = linux_fgetxattr */ - { 0, (sy_call_t *)linux_listxattr, AUE_NULL, NULL, 0, 0 }, /* 232 = linux_listxattr */ - { 0, (sy_call_t *)linux_llistxattr, AUE_NULL, NULL, 0, 0 }, /* 233 = linux_llistxattr */ - { 0, (sy_call_t *)linux_flistxattr, AUE_NULL, NULL, 0, 0 }, /* 234 = linux_flistxattr */ - { 0, (sy_call_t *)linux_removexattr, AUE_NULL, NULL, 0, 0 }, /* 235 = linux_removexattr */ - { 0, (sy_call_t *)linux_lremovexattr, AUE_NULL, NULL, 0, 0 }, /* 236 = linux_lremovexattr */ - { 0, (sy_call_t *)linux_fremovexattr, AUE_NULL, NULL, 0, 0 }, /* 237 = linux_fremovexattr */ - { AS(linux_tkill_args), (sy_call_t *)linux_tkill, AUE_NULL, NULL, 0, 0 }, /* 238 = linux_tkill */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 239 = linux_sendfile64 */ - { AS(linux_sys_futex_args), (sy_call_t *)linux_sys_futex, AUE_NULL, NULL, 0, 0 }, /* 240 = linux_sys_futex */ - { AS(linux_sched_setaffinity_args), (sy_call_t *)linux_sched_setaffinity, AUE_NULL, NULL, 0, 0 }, /* 241 = linux_sched_setaffinity */ - { AS(linux_sched_getaffinity_args), (sy_call_t *)linux_sched_getaffinity, AUE_NULL, NULL, 0, 0 }, /* 242 = linux_sched_getaffinity */ - { AS(linux_set_thread_area_args), (sy_call_t *)linux_set_thread_area, AUE_NULL, NULL, 0, 0 }, /* 243 = linux_set_thread_area */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 244 = linux_get_thread_area */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 245 = linux_io_setup */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 246 = linux_io_destroy */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 247 = linux_io_getevents */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 248 = inux_io_submit */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 249 = linux_io_cancel */ - { 0, (sy_call_t *)linux_fadvise64, AUE_NULL, NULL, 0, 0 }, /* 250 = linux_fadvise64 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 251 = */ - { AS(linux_exit_group_args), (sy_call_t *)linux_exit_group, AUE_EXIT, NULL, 0, 0 }, /* 252 = linux_exit_group */ - { 0, (sy_call_t *)linux_lookup_dcookie, AUE_NULL, NULL, 0, 0 }, /* 253 = linux_lookup_dcookie */ - { 0, (sy_call_t *)linux_epoll_create, AUE_NULL, NULL, 0, 0 }, /* 254 = linux_epoll_create */ - { 0, (sy_call_t *)linux_epoll_ctl, AUE_NULL, NULL, 0, 0 }, /* 255 = linux_epoll_ctl */ - { 0, (sy_call_t *)linux_epoll_wait, AUE_NULL, NULL, 0, 0 }, /* 256 = linux_epoll_wait */ - { 0, (sy_call_t *)linux_remap_file_pages, AUE_NULL, NULL, 0, 0 }, /* 257 = linux_remap_file_pages */ - { AS(linux_set_tid_address_args), (sy_call_t *)linux_set_tid_address, AUE_NULL, NULL, 0, 0 }, /* 258 = linux_set_tid_address */ - { 0, (sy_call_t *)linux_timer_create, AUE_NULL, NULL, 0, 0 }, /* 259 = linux_timer_create */ - { 0, (sy_call_t *)linux_timer_settime, AUE_NULL, NULL, 0, 0 }, /* 260 = linux_timer_settime */ - { 0, (sy_call_t *)linux_timer_gettime, AUE_NULL, NULL, 0, 0 }, /* 261 = linux_timer_gettime */ - { 0, (sy_call_t *)linux_timer_getoverrun, AUE_NULL, NULL, 0, 0 }, /* 262 = linux_timer_getoverrun */ - { 0, (sy_call_t *)linux_timer_delete, AUE_NULL, NULL, 0, 0 }, /* 263 = linux_timer_delete */ - { AS(linux_clock_settime_args), (sy_call_t *)linux_clock_settime, AUE_CLOCK_SETTIME, NULL, 0, 0 }, /* 264 = linux_clock_settime */ - { AS(linux_clock_gettime_args), (sy_call_t *)linux_clock_gettime, AUE_NULL, NULL, 0, 0 }, /* 265 = linux_clock_gettime */ - { AS(linux_clock_getres_args), (sy_call_t *)linux_clock_getres, AUE_NULL, NULL, 0, 0 }, /* 266 = linux_clock_getres */ - { AS(linux_clock_nanosleep_args), (sy_call_t *)linux_clock_nanosleep, AUE_NULL, NULL, 0, 0 }, /* 267 = linux_clock_nanosleep */ - { AS(linux_statfs64_args), (sy_call_t *)linux_statfs64, AUE_STATFS, NULL, 0, 0 }, /* 268 = linux_statfs64 */ - { 0, (sy_call_t *)linux_fstatfs64, AUE_FSTATFS, NULL, 0, 0 }, /* 269 = linux_fstatfs64 */ - { AS(linux_tgkill_args), (sy_call_t *)linux_tgkill, AUE_NULL, NULL, 0, 0 }, /* 270 = linux_tgkill */ - { AS(linux_utimes_args), (sy_call_t *)linux_utimes, AUE_UTIMES, NULL, 0, 0 }, /* 271 = linux_utimes */ - { 0, (sy_call_t *)linux_fadvise64_64, AUE_NULL, NULL, 0, 0 }, /* 272 = linux_fadvise64_64 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 273 = */ - { 0, (sy_call_t *)linux_mbind, AUE_NULL, NULL, 0, 0 }, /* 274 = linux_mbind */ - { 0, (sy_call_t *)linux_get_mempolicy, AUE_NULL, NULL, 0, 0 }, /* 275 = linux_get_mempolicy */ - { 0, (sy_call_t *)linux_set_mempolicy, AUE_NULL, NULL, 0, 0 }, /* 276 = linux_set_mempolicy */ - { 0, (sy_call_t *)linux_mq_open, AUE_NULL, NULL, 0, 0 }, /* 277 = linux_mq_open */ - { 0, (sy_call_t *)linux_mq_unlink, AUE_NULL, NULL, 0, 0 }, /* 278 = linux_mq_unlink */ - { 0, (sy_call_t *)linux_mq_timedsend, AUE_NULL, NULL, 0, 0 }, /* 279 = linux_mq_timedsend */ - { 0, (sy_call_t *)linux_mq_timedreceive, AUE_NULL, NULL, 0, 0 }, /* 280 = linux_mq_timedreceive */ - { 0, (sy_call_t *)linux_mq_notify, AUE_NULL, NULL, 0, 0 }, /* 281 = linux_mq_notify */ - { 0, (sy_call_t *)linux_mq_getsetattr, AUE_NULL, NULL, 0, 0 }, /* 282 = linux_mq_getsetattr */ - { 0, (sy_call_t *)linux_kexec_load, AUE_NULL, NULL, 0, 0 }, /* 283 = linux_kexec_load */ - { 0, (sy_call_t *)linux_waitid, AUE_NULL, NULL, 0, 0 }, /* 284 = linux_waitid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 285 = */ - { 0, (sy_call_t *)linux_add_key, AUE_NULL, NULL, 0, 0 }, /* 286 = linux_add_key */ - { 0, (sy_call_t *)linux_request_key, AUE_NULL, NULL, 0, 0 }, /* 287 = linux_request_key */ - { 0, (sy_call_t *)linux_keyctl, AUE_NULL, NULL, 0, 0 }, /* 288 = linux_keyctl */ - { 0, (sy_call_t *)linux_ioprio_set, AUE_NULL, NULL, 0, 0 }, /* 289 = linux_ioprio_set */ - { 0, (sy_call_t *)linux_ioprio_get, AUE_NULL, NULL, 0, 0 }, /* 290 = linux_ioprio_get */ - { 0, (sy_call_t *)linux_inotify_init, AUE_NULL, NULL, 0, 0 }, /* 291 = linux_inotify_init */ - { 0, (sy_call_t *)linux_inotify_add_watch, AUE_NULL, NULL, 0, 0 }, /* 292 = linux_inotify_add_watch */ - { 0, (sy_call_t *)linux_inotify_rm_watch, AUE_NULL, NULL, 0, 0 }, /* 293 = linux_inotify_rm_watch */ - { 0, (sy_call_t *)linux_migrate_pages, AUE_NULL, NULL, 0, 0 }, /* 294 = linux_migrate_pages */ - { AS(linux_openat_args), (sy_call_t *)linux_openat, AUE_OPEN_RWTC, NULL, 0, 0 }, /* 295 = linux_openat */ - { AS(linux_mkdirat_args), (sy_call_t *)linux_mkdirat, AUE_MKDIRAT, NULL, 0, 0 }, /* 296 = linux_mkdirat */ - { AS(linux_mknodat_args), (sy_call_t *)linux_mknodat, AUE_MKNODAT, NULL, 0, 0 }, /* 297 = linux_mknodat */ - { AS(linux_fchownat_args), (sy_call_t *)linux_fchownat, AUE_FCHOWNAT, NULL, 0, 0 }, /* 298 = linux_fchownat */ - { AS(linux_futimesat_args), (sy_call_t *)linux_futimesat, AUE_FUTIMESAT, NULL, 0, 0 }, /* 299 = linux_futimesat */ - { AS(linux_fstatat64_args), (sy_call_t *)linux_fstatat64, AUE_FSTATAT, NULL, 0, 0 }, /* 300 = linux_fstatat64 */ - { AS(linux_unlinkat_args), (sy_call_t *)linux_unlinkat, AUE_UNLINKAT, NULL, 0, 0 }, /* 301 = linux_unlinkat */ - { AS(linux_renameat_args), (sy_call_t *)linux_renameat, AUE_RENAMEAT, NULL, 0, 0 }, /* 302 = linux_renameat */ - { AS(linux_linkat_args), (sy_call_t *)linux_linkat, AUE_LINKAT, NULL, 0, 0 }, /* 303 = linux_linkat */ - { AS(linux_symlinkat_args), (sy_call_t *)linux_symlinkat, AUE_SYMLINKAT, NULL, 0, 0 }, /* 304 = linux_symlinkat */ - { AS(linux_readlinkat_args), (sy_call_t *)linux_readlinkat, AUE_READLINKAT, NULL, 0, 0 }, /* 305 = linux_readlinkat */ - { AS(linux_fchmodat_args), (sy_call_t *)linux_fchmodat, AUE_FCHMODAT, NULL, 0, 0 }, /* 306 = linux_fchmodat */ - { AS(linux_faccessat_args), (sy_call_t *)linux_faccessat, AUE_FACCESSAT, NULL, 0, 0 }, /* 307 = linux_faccessat */ - { 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0 }, /* 308 = linux_pselect6 */ - { 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0 }, /* 309 = linux_ppoll */ - { 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0 }, /* 310 = linux_unshare */ - { AS(linux_set_robust_list_args), (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0 }, /* 311 = linux_set_robust_list */ - { AS(linux_get_robust_list_args), (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0 }, /* 312 = linux_get_robust_list */ - { 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0 }, /* 313 = linux_splice */ - { 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0 }, /* 314 = linux_sync_file_range */ - { 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0 }, /* 315 = linux_tee */ - { 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0 }, /* 316 = linux_vmsplice */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 0 = setup */ + { AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT, NULL, 0, 0, 0 }, /* 1 = exit */ + { 0, (sy_call_t *)linux_fork, AUE_FORK, NULL, 0, 0, 0 }, /* 2 = linux_fork */ + { AS(read_args), (sy_call_t *)read, AUE_NULL, NULL, 0, 0, 0 }, /* 3 = read */ + { AS(write_args), (sy_call_t *)write, AUE_NULL, NULL, 0, 0, 0 }, /* 4 = write */ + { AS(linux_open_args), (sy_call_t *)linux_open, AUE_OPEN_RWTC, NULL, 0, 0, 0 }, /* 5 = linux_open */ + { AS(close_args), (sy_call_t *)close, AUE_CLOSE, NULL, 0, 0, 0 }, /* 6 = close */ + { AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_WAIT4, NULL, 0, 0, 0 }, /* 7 = linux_waitpid */ + { AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_CREAT, NULL, 0, 0, 0 }, /* 8 = linux_creat */ + { AS(linux_link_args), (sy_call_t *)linux_link, AUE_LINK, NULL, 0, 0, 0 }, /* 9 = linux_link */ + { AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_UNLINK, NULL, 0, 0, 0 }, /* 10 = linux_unlink */ + { AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_EXECVE, NULL, 0, 0, 0 }, /* 11 = linux_execve */ + { AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_CHDIR, NULL, 0, 0, 0 }, /* 12 = linux_chdir */ + { AS(linux_time_args), (sy_call_t *)linux_time, AUE_NULL, NULL, 0, 0, 0 }, /* 13 = linux_time */ + { AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_MKNOD, NULL, 0, 0, 0 }, /* 14 = linux_mknod */ + { AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_CHMOD, NULL, 0, 0, 0 }, /* 15 = linux_chmod */ + { AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_LCHOWN, NULL, 0, 0, 0 }, /* 16 = linux_lchown16 */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 17 = break */ + { AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_STAT, NULL, 0, 0, 0 }, /* 18 = linux_stat */ + { AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_LSEEK, NULL, 0, 0, 0 }, /* 19 = linux_lseek */ + { 0, (sy_call_t *)linux_getpid, AUE_GETPID, NULL, 0, 0, 0 }, /* 20 = linux_getpid */ + { AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_MOUNT, NULL, 0, 0, 0 }, /* 21 = linux_mount */ + { AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_UMOUNT, NULL, 0, 0, 0 }, /* 22 = linux_oldumount */ + { AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_SETUID, NULL, 0, 0, 0 }, /* 23 = linux_setuid16 */ + { 0, (sy_call_t *)linux_getuid16, AUE_GETUID, NULL, 0, 0, 0 }, /* 24 = linux_getuid16 */ + { 0, (sy_call_t *)linux_stime, AUE_SETTIMEOFDAY, NULL, 0, 0, 0 }, /* 25 = linux_stime */ + { AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_PTRACE, NULL, 0, 0, 0 }, /* 26 = linux_ptrace */ + { AS(linux_alarm_args), (sy_call_t *)linux_alarm, AUE_NULL, NULL, 0, 0, 0 }, /* 27 = linux_alarm */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 28 = fstat */ + { 0, (sy_call_t *)linux_pause, AUE_NULL, NULL, 0, 0, 0 }, /* 29 = linux_pause */ + { AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_UTIME, NULL, 0, 0, 0 }, /* 30 = linux_utime */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 31 = stty */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 32 = gtty */ + { AS(linux_access_args), (sy_call_t *)linux_access, AUE_ACCESS, NULL, 0, 0, 0 }, /* 33 = linux_access */ + { AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NICE, NULL, 0, 0, 0 }, /* 34 = linux_nice */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 35 = ftime */ + { 0, (sy_call_t *)sync, AUE_SYNC, NULL, 0, 0, 0 }, /* 36 = sync */ + { AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_KILL, NULL, 0, 0, 0 }, /* 37 = linux_kill */ + { AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME, NULL, 0, 0, 0 }, /* 38 = linux_rename */ + { AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_MKDIR, NULL, 0, 0, 0 }, /* 39 = linux_mkdir */ + { AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_RMDIR, NULL, 0, 0, 0 }, /* 40 = linux_rmdir */ + { AS(dup_args), (sy_call_t *)dup, AUE_DUP, NULL, 0, 0, 0 }, /* 41 = dup */ + { AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_PIPE, NULL, 0, 0, 0 }, /* 42 = linux_pipe */ + { AS(linux_times_args), (sy_call_t *)linux_times, AUE_NULL, NULL, 0, 0, 0 }, /* 43 = linux_times */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 44 = prof */ + { AS(linux_brk_args), (sy_call_t *)linux_brk, AUE_NULL, NULL, 0, 0, 0 }, /* 45 = linux_brk */ + { AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_SETGID, NULL, 0, 0, 0 }, /* 46 = linux_setgid16 */ + { 0, (sy_call_t *)linux_getgid16, AUE_GETGID, NULL, 0, 0, 0 }, /* 47 = linux_getgid16 */ + { AS(linux_signal_args), (sy_call_t *)linux_signal, AUE_NULL, NULL, 0, 0, 0 }, /* 48 = linux_signal */ + { 0, (sy_call_t *)linux_geteuid16, AUE_GETEUID, NULL, 0, 0, 0 }, /* 49 = linux_geteuid16 */ + { 0, (sy_call_t *)linux_getegid16, AUE_GETEGID, NULL, 0, 0, 0 }, /* 50 = linux_getegid16 */ + { AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0, 0 }, /* 51 = acct */ + { AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_UMOUNT, NULL, 0, 0, 0 }, /* 52 = linux_umount */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 53 = lock */ + { AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_IOCTL, NULL, 0, 0, 0 }, /* 54 = linux_ioctl */ + { AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_FCNTL, NULL, 0, 0, 0 }, /* 55 = linux_fcntl */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 56 = mpx */ + { AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP, NULL, 0, 0, 0 }, /* 57 = setpgid */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 58 = ulimit */ + { 0, (sy_call_t *)linux_olduname, AUE_NULL, NULL, 0, 0, 0 }, /* 59 = linux_olduname */ + { AS(umask_args), (sy_call_t *)umask, AUE_UMASK, NULL, 0, 0, 0 }, /* 60 = umask */ + { AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT, NULL, 0, 0, 0 }, /* 61 = chroot */ + { AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL, NULL, 0, 0, 0 }, /* 62 = linux_ustat */ + { AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2, NULL, 0, 0, 0 }, /* 63 = dup2 */ + { 0, (sy_call_t *)linux_getppid, AUE_GETPPID, NULL, 0, 0, 0 }, /* 64 = linux_getppid */ + { 0, (sy_call_t *)getpgrp, AUE_GETPGRP, NULL, 0, 0, 0 }, /* 65 = getpgrp */ + { 0, (sy_call_t *)setsid, AUE_SETSID, NULL, 0, 0, 0 }, /* 66 = setsid */ + { AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL, NULL, 0, 0, 0 }, /* 67 = linux_sigaction */ + { 0, (sy_call_t *)linux_sgetmask, AUE_NULL, NULL, 0, 0, 0 }, /* 68 = linux_sgetmask */ + { AS(linux_ssetmask_args), (sy_call_t *)linux_ssetmask, AUE_NULL, NULL, 0, 0, 0 }, /* 69 = linux_ssetmask */ + { AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_SETREUID, NULL, 0, 0, 0 }, /* 70 = linux_setreuid16 */ + { AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_SETREGID, NULL, 0, 0, 0 }, /* 71 = linux_setregid16 */ + { AS(linux_sigsuspend_args), (sy_call_t *)linux_sigsuspend, AUE_NULL, NULL, 0, 0, 0 }, /* 72 = linux_sigsuspend */ + { AS(linux_sigpending_args), (sy_call_t *)linux_sigpending, AUE_NULL, NULL, 0, 0, 0 }, /* 73 = linux_sigpending */ + { AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_SYSCTL, NULL, 0, 0, 0 }, /* 74 = linux_sethostname */ + { AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_SETRLIMIT, NULL, 0, 0, 0 }, /* 75 = linux_setrlimit */ + { AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_GETRLIMIT, NULL, 0, 0, 0 }, /* 76 = linux_old_getrlimit */ + { AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_GETRUSAGE, NULL, 0, 0, 0 }, /* 77 = linux_getrusage */ + { AS(linux_gettimeofday_args), (sy_call_t *)linux_gettimeofday, AUE_NULL, NULL, 0, 0, 0 }, /* 78 = linux_gettimeofday */ + { AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_SETTIMEOFDAY, NULL, 0, 0, 0 }, /* 79 = linux_settimeofday */ + { AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_GETGROUPS, NULL, 0, 0, 0 }, /* 80 = linux_getgroups16 */ + { AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_SETGROUPS, NULL, 0, 0, 0 }, /* 81 = linux_setgroups16 */ + { AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_SELECT, NULL, 0, 0, 0 }, /* 82 = linux_old_select */ + { AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_SYMLINK, NULL, 0, 0, 0 }, /* 83 = linux_symlink */ + { AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_LSTAT, NULL, 0, 0, 0 }, /* 84 = linux_lstat */ + { AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_READLINK, NULL, 0, 0, 0 }, /* 85 = linux_readlink */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 86 = linux_uselib */ + { AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON, NULL, 0, 0, 0 }, /* 87 = swapon */ + { AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_REBOOT, NULL, 0, 0, 0 }, /* 88 = linux_reboot */ + { AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_GETDIRENTRIES, NULL, 0, 0, 0 }, /* 89 = linux_readdir */ + { AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_MMAP, NULL, 0, 0, 0 }, /* 90 = linux_mmap */ + { AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP, NULL, 0, 0, 0 }, /* 91 = munmap */ + { AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_TRUNCATE, NULL, 0, 0, 0 }, /* 92 = linux_truncate */ + { AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_FTRUNCATE, NULL, 0, 0, 0 }, /* 93 = linux_ftruncate */ + { AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD, NULL, 0, 0, 0 }, /* 94 = fchmod */ + { AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN, NULL, 0, 0, 0 }, /* 95 = fchown */ + { AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY, NULL, 0, 0, 0 }, /* 96 = linux_getpriority */ + { AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY, NULL, 0, 0, 0 }, /* 97 = setpriority */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 98 = profil */ + { AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_STATFS, NULL, 0, 0, 0 }, /* 99 = linux_statfs */ + { AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_FSTATFS, NULL, 0, 0, 0 }, /* 100 = linux_fstatfs */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 101 = ioperm */ + { AS(linux_socketcall_args), (sy_call_t *)linux_socketcall, AUE_NULL, NULL, 0, 0, 0 }, /* 102 = linux_socketcall */ + { AS(linux_syslog_args), (sy_call_t *)linux_syslog, AUE_NULL, NULL, 0, 0, 0 }, /* 103 = linux_syslog */ + { AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_SETITIMER, NULL, 0, 0, 0 }, /* 104 = linux_setitimer */ + { AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_GETITIMER, NULL, 0, 0, 0 }, /* 105 = linux_getitimer */ + { AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_STAT, NULL, 0, 0, 0 }, /* 106 = linux_newstat */ + { AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_LSTAT, NULL, 0, 0, 0 }, /* 107 = linux_newlstat */ + { AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_FSTAT, NULL, 0, 0, 0 }, /* 108 = linux_newfstat */ + { 0, (sy_call_t *)linux_uname, AUE_NULL, NULL, 0, 0, 0 }, /* 109 = linux_uname */ + { AS(linux_iopl_args), (sy_call_t *)linux_iopl, AUE_NULL, NULL, 0, 0, 0 }, /* 110 = linux_iopl */ + { 0, (sy_call_t *)linux_vhangup, AUE_NULL, NULL, 0, 0, 0 }, /* 111 = linux_vhangup */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 112 = idle */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 113 = vm86old */ + { AS(linux_wait4_args), (sy_call_t *)linux_wait4, AUE_WAIT4, NULL, 0, 0, 0 }, /* 114 = linux_wait4 */ + { 0, (sy_call_t *)linux_swapoff, AUE_SWAPOFF, NULL, 0, 0, 0 }, /* 115 = linux_swapoff */ + { AS(linux_sysinfo_args), (sy_call_t *)linux_sysinfo, AUE_NULL, NULL, 0, 0, 0 }, /* 116 = linux_sysinfo */ + { AS(linux_ipc_args), (sy_call_t *)linux_ipc, AUE_NULL, NULL, 0, 0, 0 }, /* 117 = linux_ipc */ + { AS(fsync_args), (sy_call_t *)fsync, AUE_FSYNC, NULL, 0, 0, 0 }, /* 118 = fsync */ + { AS(linux_sigreturn_args), (sy_call_t *)linux_sigreturn, AUE_SIGRETURN, NULL, 0, 0, 0 }, /* 119 = linux_sigreturn */ + { AS(linux_clone_args), (sy_call_t *)linux_clone, AUE_RFORK, NULL, 0, 0, 0 }, /* 120 = linux_clone */ + { AS(linux_setdomainname_args), (sy_call_t *)linux_setdomainname, AUE_SYSCTL, NULL, 0, 0, 0 }, /* 121 = linux_setdomainname */ + { AS(linux_newuname_args), (sy_call_t *)linux_newuname, AUE_NULL, NULL, 0, 0, 0 }, /* 122 = linux_newuname */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 123 = modify_ldt */ + { 0, (sy_call_t *)linux_adjtimex, AUE_ADJTIME, NULL, 0, 0, 0 }, /* 124 = linux_adjtimex */ + { AS(linux_mprotect_args), (sy_call_t *)linux_mprotect, AUE_MPROTECT, NULL, 0, 0, 0 }, /* 125 = linux_mprotect */ + { AS(linux_sigprocmask_args), (sy_call_t *)linux_sigprocmask, AUE_SIGPROCMASK, NULL, 0, 0, 0 }, /* 126 = linux_sigprocmask */ + { 0, (sy_call_t *)linux_create_module, AUE_NULL, NULL, 0, 0, 0 }, /* 127 = linux_create_module */ + { 0, (sy_call_t *)linux_init_module, AUE_NULL, NULL, 0, 0, 0 }, /* 128 = linux_init_module */ + { 0, (sy_call_t *)linux_delete_module, AUE_NULL, NULL, 0, 0, 0 }, /* 129 = linux_delete_module */ + { 0, (sy_call_t *)linux_get_kernel_syms, AUE_NULL, NULL, 0, 0, 0 }, /* 130 = linux_get_kernel_syms */ + { 0, (sy_call_t *)linux_quotactl, AUE_QUOTACTL, NULL, 0, 0, 0 }, /* 131 = linux_quotactl */ + { AS(getpgid_args), (sy_call_t *)getpgid, AUE_GETPGID, NULL, 0, 0, 0 }, /* 132 = getpgid */ + { AS(fchdir_args), (sy_call_t *)fchdir, AUE_FCHDIR, NULL, 0, 0, 0 }, /* 133 = fchdir */ + { 0, (sy_call_t *)linux_bdflush, AUE_BDFLUSH, NULL, 0, 0, 0 }, /* 134 = linux_bdflush */ + { AS(linux_sysfs_args), (sy_call_t *)linux_sysfs, AUE_NULL, NULL, 0, 0, 0 }, /* 135 = linux_sysfs */ + { AS(linux_personality_args), (sy_call_t *)linux_personality, AUE_PERSONALITY, NULL, 0, 0, 0 }, /* 136 = linux_personality */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 137 = afs_syscall */ + { AS(linux_setfsuid16_args), (sy_call_t *)linux_setfsuid16, AUE_SETFSUID, NULL, 0, 0, 0 }, /* 138 = linux_setfsuid16 */ + { AS(linux_setfsgid16_args), (sy_call_t *)linux_setfsgid16, AUE_SETFSGID, NULL, 0, 0, 0 }, /* 139 = linux_setfsgid16 */ + { AS(linux_llseek_args), (sy_call_t *)linux_llseek, AUE_LSEEK, NULL, 0, 0, 0 }, /* 140 = linux_llseek */ + { AS(linux_getdents_args), (sy_call_t *)linux_getdents, AUE_GETDIRENTRIES, NULL, 0, 0, 0 }, /* 141 = linux_getdents */ + { AS(linux_select_args), (sy_call_t *)linux_select, AUE_SELECT, NULL, 0, 0, 0 }, /* 142 = linux_select */ + { AS(flock_args), (sy_call_t *)flock, AUE_FLOCK, NULL, 0, 0, 0 }, /* 143 = flock */ + { AS(linux_msync_args), (sy_call_t *)linux_msync, AUE_MSYNC, NULL, 0, 0, 0 }, /* 144 = linux_msync */ >>> TRUNCATED FOR MAIL (1000 lines) <<< From jhb at FreeBSD.org Mon Jun 1 22:00:12 2009 From: jhb at FreeBSD.org (John Baldwin) Date: Mon Jun 1 22:00:19 2009 Subject: PERFORCE change 163327 for review Message-ID: <200906012200.n51M0BAo068676@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163327 Change 163327 by jhb@jhb_jhbbsd on 2009/06/01 21:59:51 IFC @163325 Affected files ... .. //depot/projects/smpng/sys/dev/ksyms/ksyms.c#2 integrate Differences ... ==== //depot/projects/smpng/sys/dev/ksyms/ksyms.c#2 (text+ko) ==== @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD: src/sys/dev/ksyms/ksyms.c,v 1.2 2009/05/27 16:20:46 sson Exp $ + * $FreeBSD: src/sys/dev/ksyms/ksyms.c,v 1.3 2009/06/01 21:54:22 jhb Exp $ */ #include @@ -552,7 +552,7 @@ /* ARGSUSED */ static int ksyms_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int32_t flag __unused, - d_thread_t *td __unused) + struct thread *td __unused) { int error = 0; struct ksyms_softc *sc; From gabor at FreeBSD.org Tue Jun 2 02:41:59 2009 From: gabor at FreeBSD.org (Gabor Kovesdan) Date: Tue Jun 2 02:42:05 2009 Subject: PERFORCE change 163331 for review Message-ID: <200906020241.n522fvZA005452@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163331 Change 163331 by gabor@gabor_server on 2009/06/02 02:41:55 - Make it WARNS=6 clean Affected files ... .. //depot/projects/soc2008/gabor_textproc/grep/Makefile#21 edit .. //depot/projects/soc2008/gabor_textproc/grep/fastgrep.c#14 edit .. //depot/projects/soc2008/gabor_textproc/grep/file.c#44 edit .. //depot/projects/soc2008/gabor_textproc/grep/grep.c#88 edit .. //depot/projects/soc2008/gabor_textproc/grep/grep.h#50 edit .. //depot/projects/soc2008/gabor_textproc/grep/queue.c#8 edit .. //depot/projects/soc2008/gabor_textproc/grep/util.c#83 edit Differences ... ==== //depot/projects/soc2008/gabor_textproc/grep/Makefile#21 (text+ko) ==== @@ -15,7 +15,8 @@ grep.1 zegrep.1 \ grep.1 zfgrep.1 -CFLAGS+= -std=c99 -Wall -pedantic +CFLAGS+= -std=c99 +WARNS?= 6 LDADD= -lz -lbz2 DPADD= ${LIBZ} ${LIBBZ2} ==== //depot/projects/soc2008/gabor_textproc/grep/fastgrep.c#14 (text+ko) ==== @@ -55,7 +55,7 @@ void fgrepcomp(fastgrep_t *fg, const char *pat) { - int i; + unsigned int i; /* Initialize. */ fg->len = strlen(pat); @@ -63,10 +63,11 @@ fg->eol = 0; fg->reversed = 0; - fg->pattern = (unsigned char *)pat; /* really const */ + fg->pattern = grep_malloc(strlen(pat) + 1); + strcpy(fg->pattern, pat); /* Preprocess pattern. */ - for (i = 0; i <= (signed)UCHAR_MAX; i++) + for (i = 0; i <= UCHAR_MAX; i++) fg->qsBc[i] = fg->len; for (i = 1; i < fg->len; i++) fg->qsBc[fg->pattern[i]] = fg->len - i; @@ -78,7 +79,7 @@ int fastcomp(fastgrep_t *fg, const char *pat) { - int i; + unsigned int i; int bol = 0; int eol = 0; int shiftPatternLen; @@ -154,7 +155,7 @@ */ if ((!(lflag || cflag)) && ((!(bol || eol)) && ((lastHalfDot) && ((firstHalfDot < 0) || - ((fg->len - (lastHalfDot + 1)) < firstHalfDot)))) && !oflag && !color) { + ((fg->len - (lastHalfDot + 1)) < (size_t)firstHalfDot)))) && !oflag && !color) { fg->reversed = 1; hasDot = fg->len - (firstHalfDot < 0 ? firstLastHalfDot : firstHalfDot) - 1; @@ -184,7 +185,7 @@ shiftPatternLen = fg->len - hasDot; /* Preprocess pattern. */ - for (i = 0; i <= UCHAR_MAX; i++) + for (i = 0; i <= (signed)UCHAR_MAX; i++) fg->qsBc[i] = shiftPatternLen; for (i = hasDot + 1; i < fg->len; i++) { fg->qsBc[fg->pattern[i]] = fg->len - i; @@ -203,10 +204,10 @@ int grep_search(fastgrep_t *fg, unsigned char *data, size_t len, regmatch_t *pmatch) { - int j; - int ret = REG_NOMATCH; + unsigned int j; + int ret = REG_NOMATCH; - if (pmatch->rm_so == len) + if (pmatch->rm_so == (ssize_t)len) return (ret); if (fg->bol && pmatch->rm_so != 0) { @@ -282,25 +283,25 @@ static int grep_cmp(const unsigned char *pat, const unsigned char *data, size_t len) { - int i; + unsigned int i; size_t size; wchar_t *wdata, *wpat; if (iflag) { - if ((size = mbstowcs(NULL, (const char *)data, 0)) == -1) + if ((size = mbstowcs(NULL, (const char *)data, 0)) == ((size_t) - 1)) return (-1); wdata = grep_malloc(size * sizeof(wint_t)); - if (mbstowcs(wdata, (const char *)data, size) == -1) + if (mbstowcs(wdata, (const char *)data, size) == ((size_t) - 1)) return (-1); - if ((size = mbstowcs(NULL, (const char *)pat, 0)) == -1) + if ((size = mbstowcs(NULL, (const char *)pat, 0)) == ((size_t) - 1)) return (-1); wpat = grep_malloc(size * sizeof(wint_t)); - if (mbstowcs(wpat, (const char *)pat, size) == -1) + if (mbstowcs(wpat, (const char *)pat, size) == ((size_t) - 1)) return (-1); for (i = 0; i < len; i++) { if ((towlower(wpat[i]) == towlower(wdata[i])) || ((grepbehave != GREP_FIXED) && wpat[i] == L'.')) ==== //depot/projects/soc2008/gabor_textproc/grep/file.c#44 (text+ko) ==== @@ -122,10 +122,9 @@ char * grep_fgetln(struct file *f, size_t *len) { - int i = 0; int ch = 0; struct stat st; - size_t bufsiz; + size_t bufsiz, i = 0; /* Fill in the buffer if it is empty. */ if (binbufptr == NULL) { @@ -203,7 +202,7 @@ * Opens a normal, a gzipped or a bzip2 compressed file for processing. */ struct file * -grep_open(char *path) +grep_open(const char *path) { struct file *f; ==== //depot/projects/soc2008/gabor_textproc/grep/grep.c#88 (text+ko) ==== @@ -62,7 +62,7 @@ * Default messags to use when NLS is disabled or no catalogue * is found. */ -char *errstr[] = { +const char *errstr[] = { "", /* 1*/ "(standard input)", /* 2*/ "cannot read bzip2 compressed file", @@ -84,13 +84,13 @@ int matchall; /* Searching patterns */ -int patterns, pattern_sz; +unsigned int patterns, pattern_sz; char **pattern; regex_t *r_pattern; fastgrep_t *fg_pattern; /* Filename exclusion/inclusion patterns */ -int epatterns, epattern_sz; +unsigned int epatterns, epattern_sz; struct epat *epattern; /* For regex errors */ @@ -163,7 +163,7 @@ exit(2); } -static char *optstr = "0123456789A:B:C:D:EFGHIJLOPSRUVZabcd:e:f:hilm:nopqrsuvwxy"; +static const char *optstr = "0123456789A:B:C:D:EFGHIJLOPSRUVZabcd:e:f:hilm:nopqrsuvwxy"; struct option long_options[] = { @@ -285,11 +285,11 @@ int main(int argc, char *argv[]) { - int c, lastc, prevoptind, newarg, i, needpattern; + int c, lastc, prevoptind, newarg, needpattern; + unsigned int i, eargc, aargc; char *ep; unsigned long long l; char **eargv, **aargv, *eopts; - int eargc, aargc; setlocale(LC_ALL, ""); @@ -540,12 +540,12 @@ errx(2, getstr(11)); break; case COLOR_OPT: - if (optarg == NULL) - optarg = "auto"; - if (strcmp("auto", optarg) == 0 || strcmp("always", optarg) == 0 ) { + if (optarg == NULL || strcmp("auto", optarg) == 0 || strcmp("always", optarg) == 0 ) { color = getenv("GREP_COLOR"); - if (color == NULL) - color = "01;31"; + if (color == NULL) { + color = grep_malloc(sizeof(char) * 6); + strcpy(color, "01;31"); + } } else if (strcmp("never", optarg) == 0) color = NULL; else ==== //depot/projects/soc2008/gabor_textproc/grep/grep.h#50 (text+ko) ==== @@ -43,7 +43,7 @@ #define getstr(n) catgets(catalog, 1, n, errstr[n]) #endif -extern char *errstr[]; +extern const char *errstr[]; #define VERSION "2.5.1-FreeBSD" @@ -102,7 +102,7 @@ typedef struct { unsigned char *pattern; - int len; + size_t len; int qsBc[UCHAR_MAX + 1]; /* flags */ int bol; @@ -122,7 +122,8 @@ extern char *color, *label; extern int grepbehave, binbehave, filebehave, devbehave, dirbehave, linkbehave; -extern int first, prev, matchall, patterns, epatterns, tail, notfound; +extern int first, prev, matchall, tail, notfound; +extern unsigned int patterns, epatterns; extern char **pattern; extern struct epat *epattern; extern regex_t *r_pattern, *er_pattern; @@ -133,7 +134,7 @@ extern char re_error[RE_ERROR_BUF + 1]; /* Seems big enough */ /* util.c */ -int procfile(char *fn); +int procfile(const char *fn); int grep_tree(char **argv); void *grep_malloc(size_t size); void *grep_calloc(size_t nmemb, size_t size); @@ -148,7 +149,7 @@ /* file.c */ void grep_close(struct file *f); struct file *grep_stdin_open(void); -struct file *grep_open(char *path); +struct file *grep_open(const char *path); int grep_feof(struct file *f); int grep_fgetc(struct file *f); char *grep_fgetln(struct file *f, size_t *len); ==== //depot/projects/soc2008/gabor_textproc/grep/queue.c#8 (text+ko) ==== @@ -53,7 +53,7 @@ }; static STAILQ_HEAD(, qentry) queue = STAILQ_HEAD_INITIALIZER(queue); -static int count; +static unsigned long long count; static struct qentry *dequeue(void); ==== //depot/projects/soc2008/gabor_textproc/grep/util.c#83 (text+ko) ==== @@ -65,8 +65,9 @@ { FTS *fts; FTSENT *p; - int i, c, ok, fts_flags; + int c, ok, fts_flags; char *d, *dir; + unsigned int i; c = fts_flags = 0; @@ -142,7 +143,7 @@ * passing the lines to procline(). */ int -procfile(char *fn) +procfile(const char *fn) { struct str ln; struct file *f; @@ -179,7 +180,8 @@ return (0); } - ln.file = fn; + ln.file = grep_malloc(strlen(fn) + 1); + strcpy(ln.file, fn); ln.line_no = 0; ln.len = 0; linesqueued = 0; @@ -251,8 +253,9 @@ { regmatch_t pmatch; regmatch_t matches[MAX_LINE_MATCHES]; - regoff_t st = 0; - int c = 0, i, r = 0, m = 0; + size_t st = 0; + int c = 0, r = 0, m = 0; + unsigned int i; if (!matchall) { /* Loop to process the whole line */ @@ -280,21 +283,21 @@ continue; /* Check for full match */ if (r == 0 && xflag) - if (pmatch.rm_so != 0 || pmatch.rm_eo != l->len) + if (pmatch.rm_so != 0 || (size_t)pmatch.rm_eo != l->len) r = REG_NOMATCH; /* Check for whole word match */ - if (r == 0 && wflag && pmatch.rm_so != 0 && pmatch.rm_eo != l->len) { + if (r == 0 && wflag && pmatch.rm_so != 0 && (size_t)pmatch.rm_eo != l->len) { wchar_t *wbegin; wint_t wend; size_t size; size = mbstowcs(NULL, l->dat, pmatch.rm_so); - if (size == -1) + if (size == ((size_t) - 1)) r = REG_NOMATCH; else { wbegin = grep_malloc(size); - if (mbstowcs(wbegin, l->dat, pmatch.rm_so) == -1) + if (mbstowcs(wbegin, l->dat, pmatch.rm_so) == ((size_t) - 1)) r = REG_NOMATCH; else if (sscanf(&l->dat[pmatch.rm_eo], "%lc", &wend) != 1) r = REG_NOMATCH; @@ -316,7 +319,7 @@ if (!oflag && !color) break; - if (st == pmatch.rm_so) + if (st == (size_t)pmatch.rm_so) break; /* No matches */ } } else From dforsyth at FreeBSD.org Tue Jun 2 03:34:53 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Tue Jun 2 03:35:00 2009 Subject: PERFORCE change 163332 for review Message-ID: <200906020334.n523Yp3x020838@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163332 Change 163332 by dforsyth@squirrel on 2009/06/02 03:33:52 Finished read_file_to_text up. Need to move it. Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.h#4 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_info.c#4 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#4 edit Differences ... ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.h#4 (text+ko) ==== @@ -43,6 +43,6 @@ struct pkg_info; -struct pkg_info *pkg_info_digest_info_from_text(const char *text); +struct pkg_info *pkg_info_parse_info_from_text(const char *text); #endif ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_info.c#4 (text+ko) ==== @@ -29,7 +29,7 @@ }; struct pkg_info * -pkg_info_digest_info_from_text(const char *text) +pkg_info_parse_info_from_text(const char *text) { struct pkg_info *pi; ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#4 (text+ko) ==== @@ -7,6 +7,7 @@ #include #include #include +#include #include "pkg_util.h" #include "pkg_info.h" @@ -128,7 +129,7 @@ return (NULL); } - text = pkgdb_read_read_pkg_file_to_text(db, p, COMMENT_FILE); + text = pkgdb_read_file_to_text(db, p, COMMENT_FILE); pkg_set_comment(p, text); free(text); @@ -212,23 +213,30 @@ if (path == NULL) return (NULL); strcpy(path, dir); - strcat(path, '/'); + strcat(path, "/"); strcat(path, filename); s = stat(path, &sb); - if (s < 0 || !S_ISREG(st.st_mode)) { + if (s < 0 || !S_ISREG(sb.st_mode)) { free(path); return (NULL); } - fd = open(path, O_READONLY); - if (fd < 0) { - free(path); + fd = open(path, O_RDONLY); + free(path); + text = malloc(sb.st_size + 1); + if (fd < 0 || text == NULL) { + free(text); + return (NULL); + } + /* reuse s */ + s = read(fd, text, sb.st_size); + if (s < 0) { + free(text); return (NULL); } - + text[sb.st_size] = '\0'; - return (text); } From dforsyth at FreeBSD.org Tue Jun 2 05:38:59 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Tue Jun 2 05:39:06 2009 Subject: PERFORCE change 163333 for review Message-ID: <200906020538.n525cvHG042484@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163333 Change 163333 by dforsyth@squirrel on 2009/06/02 05:38:46 Blotted out the newline from read comments. pkg_info prints names and comments, though with poor formatting. Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/info/main.c#3 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#4 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#5 edit Differences ... ==== //depot/projects/soc2009/dforsyth_libpkg/info/main.c#3 (text+ko) ==== @@ -56,7 +56,7 @@ void usage(int exit_val) { - printf("If you don't know how to use me, then you shouldn't be...\n"); + fprintf(stderr, "%s", "If you don't know how to use me, then you shouldn't be...\n"); exit(exit_val); } ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#4 (text+ko) ==== @@ -36,7 +36,8 @@ struct pkg * pkg_set_comment(struct pkg *p, const char *comment) { - int l; + int c; + char *f; if (p == NULL) return (p); @@ -52,6 +53,13 @@ /* Something bad happened... I should probably let people know * about it... */ } + + /* Blot out a trailing '\n'. */ + c = (int) '\n'; + f = strrchr(p->comment, c); + if (f != NULL) + *f = '\0'; + return (p); } ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#5 (text+ko) ==== @@ -231,6 +231,7 @@ } /* reuse s */ s = read(fd, text, sb.st_size); + close(fd); if (s < 0) { free(text); return (NULL); @@ -247,6 +248,7 @@ pkgdb_pkg_list_init(struct pkgdb *db) { if (db == NULL) return; + TAILQ_INIT(&db->p_head); } From rene at FreeBSD.org Tue Jun 2 06:20:41 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Tue Jun 2 06:20:47 2009 Subject: PERFORCE change 163334 for review Message-ID: <200906020620.n526Ke0Q047595@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163334 Change 163334 by rene@rene_self on 2009/06/02 06:19:39 Add link for Dutch version of the website. Affected files ... .. //depot/projects/docproj_nl/www/en/index.xsl#5 edit Differences ... ==== //depot/projects/docproj_nl/www/en/index.xsl#5 (text+ko) ==== @@ -159,6 +159,9 @@ ja
    • + nl +
    • +
    • ru
    • From dforsyth at FreeBSD.org Tue Jun 2 06:26:48 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Tue Jun 2 06:26:54 2009 Subject: PERFORCE change 163336 for review Message-ID: <200906020626.n526QkcE048085@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163336 Change 163336 by dforsyth@squirrel on 2009/06/02 06:26:40 Added pkg_private.h. It's empty. Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_private.h#1 add Differences ... From hselasky at FreeBSD.org Tue Jun 2 06:41:04 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Tue Jun 2 06:41:10 2009 Subject: PERFORCE change 163337 for review Message-ID: <200906020641.n526f1U8049472@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163337 Change 163337 by hselasky@hselasky_laptop001 on 2009/06/02 06:40:59 USB input: - style fix patch from Sylvestre Gallon Affected files ... .. //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#15 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#15 (text+ko) ==== @@ -822,7 +822,7 @@ return (ENXIO); /* error */ } -int +static int ukbd_detach(device_t dev) { struct ukbd_softc *sc = device_get_softc(dev); @@ -1569,7 +1569,7 @@ ukbd_driver_load(module_t mod, int what, void *arg) { switch (what) { - case MOD_LOAD: + case MOD_LOAD: kbd_add_driver(&ukbd_kbd_driver); break; case MOD_UNLOAD: From trasz at FreeBSD.org Tue Jun 2 08:18:44 2009 From: trasz at FreeBSD.org (Edward Tomasz Napierala) Date: Tue Jun 2 08:18:50 2009 Subject: PERFORCE change 163338 for review Message-ID: <200906020818.n528IfDX080627@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163338 Change 163338 by trasz@trasz_victim on 2009/06/02 08:18:32 I need IPSEC for stuff unrelated to HRL; add IPSEC to the kernel config file, so I don't have to switch trees. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/i386/conf/GENERIC#3 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/i386/conf/GENERIC#3 (text+ko) ==== @@ -32,6 +32,9 @@ # # env "GENERIC.env" +options IPSEC +device crypto + makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols options SCHED_ULE # ULE scheduler From rene at FreeBSD.org Tue Jun 2 08:53:18 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Tue Jun 2 08:53:25 2009 Subject: PERFORCE change 163340 for review Message-ID: <200906020853.n528rHYI006757@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163340 Change 163340 by rene@rene_self on 2009/06/02 08:52:44 Change text from "Download FreeBSD" to "Verkrijg FreeBSD" since one can also get it on physical media. Affected files ... .. //depot/projects/docproj_nl/www/nl/index.xsl#8 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/index.xsl#8 (text+ko) ==== @@ -98,7 +98,7 @@ From rene at FreeBSD.org Tue Jun 2 12:12:52 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Tue Jun 2 12:12:57 2009 Subject: PERFORCE change 163346 for review Message-ID: <200906021212.n52CCm7V027035@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163346 Change 163346 by rene@rene_self on 2009/06/02 12:11:49 [website] Activate the build of publish.sgml Affected files ... .. //depot/projects/docproj_nl/www/nl/Makefile#10 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/Makefile#10 (text+ko) ==== @@ -21,7 +21,7 @@ DOCS+= internet.sgml DOCS+= logo.sgml DOCS+= mailto.sgml -#DOCS+= publish.sgml +DOCS+= publish.sgml DOCS+= relnotes.sgml DOCS+= send-pr.sgml DOCS+= support.sgml From rene at FreeBSD.org Tue Jun 2 12:22:03 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Tue Jun 2 12:22:11 2009 Subject: PERFORCE change 163347 for review Message-ID: <200906021222.n52CM2Wv027828@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163347 Change 163347 by rene@rene_self on 2009/06/02 12:21:55 IFC (and fix some conflicts) Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#23 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml#24 edit .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#31 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml#14 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml#14 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml#22 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/share/sgml/transtable.xml#5 integrate .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#20 integrate .. //depot/projects/docproj_nl/share/sgml/man-refs.ent#18 integrate .. //depot/projects/docproj_nl/www/en/gnome/docs/faq2.sgml#4 integrate .. //depot/projects/docproj_nl/www/en/projects/netperf/index.sgml#2 integrate .. //depot/projects/docproj_nl/www/en/releng/index.sgml#24 integrate .. //depot/projects/docproj_nl/www/nl/Makefile#11 integrate .. //depot/projects/docproj_nl/www/nl/Makefile.inc#4 integrate .. //depot/projects/docproj_nl/www/nl/about.sgml#7 integrate .. //depot/projects/docproj_nl/www/nl/administration.sgml#6 integrate .. //depot/projects/docproj_nl/www/nl/applications.sgml#7 integrate .. //depot/projects/docproj_nl/www/nl/art.sgml#6 integrate .. //depot/projects/docproj_nl/www/nl/availability.sgml#6 integrate .. //depot/projects/docproj_nl/www/nl/community.xsl#5 integrate .. //depot/projects/docproj_nl/www/nl/docs.sgml#5 integrate .. //depot/projects/docproj_nl/www/nl/features.sgml#5 integrate .. //depot/projects/docproj_nl/www/nl/index.xsl#9 integrate .. //depot/projects/docproj_nl/www/nl/internet.sgml#5 integrate .. //depot/projects/docproj_nl/www/nl/logo.sgml#5 integrate .. //depot/projects/docproj_nl/www/nl/mailto.sgml#6 integrate .. //depot/projects/docproj_nl/www/nl/relnotes.sgml#5 integrate .. //depot/projects/docproj_nl/www/nl/send-pr.sgml#6 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/catalog#5 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/catalog.xml#5 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#6 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/l10n.ent#6 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#7 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#6 integrate .. //depot/projects/docproj_nl/www/nl/support.sgml#6 integrate .. //depot/projects/docproj_nl/www/nl/vendors.html#4 integrate .. //depot/projects/docproj_nl/www/nl/where.sgml#7 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#23 (text+ko) ==== @@ -1,4 +1,4 @@ - + + 8.0-CURRENT after adding hierarchical jails and removing global securelevel. - 800092 May 29, 2009 @@ -13142,9 +13141,20 @@ a new SX_NOADAPTIVE flag is introduced in order to handle the reversed logic. - + + 800093 + May 29, 2009 + 8.0-CURRENT after adding mnt_xflag to + struct mount. + + + 800094 + May 30, 2009 + 8.0-CURRENT after adding + &man.VOP.ACCESSX.9;. + - 800093 + 800095 May 30, 2009 8.0-CURRENT after changing the polling KPI. The polling handlers now return the number of packets @@ -13154,6 +13164,17 @@ not significant and the counting should be skipped. + + 800096 + June 1, 2009 + 8.0-CURRENT after updating to the new netisr + implementation and after changing the way we + store and access FIBs. + + ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml#14 (text+ko) ==== @@ -1,4 +1,4 @@ - + ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml#14 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -746,6 +746,11 @@ &pgpkey.nemoliu; + + &a.zml; + &pgpkey.zml; + + &a.nox; &pgpkey.nox; @@ -756,11 +761,6 @@ &pgpkey.remko; - - &a.zml; - &pgpkey.zml; - - &a.avl; &pgpkey.avl; ==== //depot/projects/docproj_nl/share/sgml/man-refs.ent#18 (text+ko) ==== @@ -20,7 +20,7 @@ lexicographical order by the entity (i.e., the dots used in place of special characters should not be expanded when comparing). - $FreeBSD: doc/share/sgml/man-refs.ent,v 1.486 2009/05/16 10:47:00 brueffer Exp $ + $FreeBSD: doc/share/sgml/man-refs.ent,v 1.487 2009/06/02 01:34:15 gabor Exp $ --> @@ -4723,6 +4723,7 @@ + ==== //depot/projects/docproj_nl/www/en/gnome/docs/faq2.sgml#4 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -1105,14 +1105,13 @@

      Up until GNOME 2.20, GDM would read the locale settings from /etc/login.conf or ~/.login.conf. - This was broken in 2.20, and since GDM 2.22 will use - a new locale scheme, it will not be fixed. However, all - hope is not lost. It is actually very easy to set the - locale for use with the GNOME Destop. GDM offers a - pull-down Language menu from which you can choose your - current locale. If you would rather not use this menu, - you can set the locale by adding the following to - ~/.profile:

      + This was broken in 2.20, and finally restored in GDM + 2.26.1_3.

      + +

      However, GDM also offers a pull-down Language menu from which + you can choose your current locale. If you would rather not + use this menu or /etc/login.conf, you can set the + locale by adding the following to ~/.profile:

       export LANG=<locale>
      @@ -1123,7 +1122,9 @@
       	      (e.g. en_US.UTF-8, es_ES.ISO8859-15, fr_FR.ISO8859-1, etc.).

      To set the default locale for the GDM greeter, add the - same environment variables to /etc/profile.

      + same environment variables to /etc/profile or + define gdm_lang to the desired locale + in /etc/rc.conf.

    • ==== //depot/projects/docproj_nl/www/en/projects/netperf/index.sgml#2 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -53,11 +53,10 @@ will work toward these goals:

        -
      • Complete locking work to make sure all components of the stack - are able to run without the Giant lock. While most of the network - stack, especially mainstream protocols, runs without Giant, some - components require Giant to be placed back over the stack if compiled - into the kernel, reducing parallelism.

      • +
      • The Netperf project has completed locking work for all components + of the network stack; as of FreeBSD 7.0 we have removed non-MPSAFE + protocol shims, and as of FreeBSD 8.0 we have removed non-MPSAFE + device driver shims.

      • Optimize locking strategies to find better balances between locking granularity and locking overhead. In the first cut at locking @@ -126,7 +125,8 @@ increasing effective CPU utilization and hence throughput. For example, introducing additional netisr threads capable of running on more than one CPU at a time can increase input parallelism, subject - to maintaining desirable packet ordering.

      • + to maintaining desirable packet ordering (present in FreeBSD + 8.0).

      @@ -204,13 +204,12 @@ Employ queued dispatch across netisr dispatch API &a.rwatson; - 20041124 - &status.prototyped; - Pull all of the mbufs in the netisr ifqueue out of the ifqueue - into a thread-local mbuf queue to avoid repeated lock operations - to access the queue. Also use lock-free operations to test for - queue contents being present. This has been prototyped in the - rwatson_netperf branch. + 20090601 + &status.done + Pull all of the mbufs in the netisr queue into a thread-local + mbuf queue to avoid repeated lock operations to access the queue. + This work was completed as part of the netisr2 project, and will + ship with 8.0-RELEASE. @@ -247,8 +246,8 @@ critical sections to synchronize access instead of a mutex. While malloc(9) is less frequently used in the network stack than uma(9), it is used for socket address data, so is on performance critical - paths for datagram operations. This has been committed and will - appear in 6.0-RELEASE. + paths for datagram operations. This has been committed and appeared + 6.0-RELEASE. @@ -266,11 +265,11 @@ cost of critical sections in the common case by avoiding expensive microcode operations on the CPU. By restoring this model, or a variation on it, critical sections can be made substantially - cheaper to enter. In particular, this change will lower the cost + cheaper to enter. In particular, this change lowers the cost of critical sections on UP such that it is approximately the same cost as a mutex, meaning that optimizations on SMP to use critical sections instead of mutexes will not harm UP performance. This - change has now been committed, and will appear in 6.0-RELEASE. + change has now been committed, and appeared in 6.0-RELEASE. @@ -296,26 +295,41 @@ Add true inpcb reference count support &a.mohans;, &a.rwatson;, &a.peter; - 20060412 - &status.new; - Currently, the in-bound TCP and UDP socket paths rely on the + 20081208 + &status.done; + Historically, the in-bound TCP and UDP socket paths relied on global pcbinfo info locks to prevent PCBs being delivered to from being garbage collected by another thread while in use. This set of changes introduces a true reference model for PCBs so that the - global lock can be released during in-bound process. + global lock can be released during in-bound process, and appear + in 8.0-RELEASE./td> Fine-grained locking for UNIX domain sockets &a.rwatson; - 20060416 - &status.prototyped; - Currently, UNIX domain sockets in FreeBSD 5.x and 6.x use a - single global subsystem lock. This is sufficient to allow it to - run without Giant, but results in contention with large numbers - of processors simultaneously operating on UNIX domain sockets. - This task introduces per-protocol control block locks in order - to reduce contention on a larger subsystem lock. + 20070226 + &status.done; + UNIX domain sockets in FreeBSD 5.x and 6.x use a single global + subsystem lock. This is sufficient to allow it to run without + Giant, but results in contention with large numbers of processors + simultaneously operating on UNIX domain sockets. This task + introduced per-protocol control block locks in order to reduce + contention on a larger subsystem lock, and the results appeared in + 7.0-RELEASE. + + + + Multiple netisr threads + &a.rwatson; + 20090601 + &status.done; + Historically, the BSD network stack has used a single network + software interrupt context, for deferred network processing. With + the introduction of multi-processing, this became a single + software interrupt thread. In FreeBSD 8.0, multiple netisr + threads are now supported, up to the number of CPUs present in the + system. ==== //depot/projects/docproj_nl/www/en/releng/index.sgml#24 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -56,7 +56,7 @@ August 2009 FreeBSD 8.0 -   + code slush since June 1st ==== //depot/projects/docproj_nl/www/nl/Makefile#11 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: www/nl/Makefile,v 1.1 2004/09/27 12:00:03 josef Exp $ +# $FreeBSD: www/nl/Makefile,v 1.2 2009/06/01 20:02:31 rene Exp $ # %SOURCE% en/Makefile # %SRCID% 1.146 ==== //depot/projects/docproj_nl/www/nl/Makefile.inc#4 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: www/nl/Makefile.inc,v 1.1 2004/09/27 12:00:03 josef Exp $ +# $FreeBSD: www/nl/Makefile.inc,v 1.2 2009/06/01 20:02:31 rene Exp $ # %SOURCE% en/Makefile.inc # %SRCID% 1.8 ==== //depot/projects/docproj_nl/www/nl/about.sgml#7 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/administration.sgml#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/applications.sgml#7 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/art.sgml#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/availability.sgml#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/community.xsl#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/docs.sgml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/features.sgml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/index.xsl#9 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/internet.sgml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/logo.sgml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/mailto.sgml#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/relnotes.sgml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/send-pr.sgml#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/share/sgml/catalog#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/share/sgml/catalog.xml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/share/sgml/l10n.ent#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#7 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/support.sgml#6 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/vendors.html#4 (text+ko) ==== ==== //depot/projects/docproj_nl/www/nl/where.sgml#7 (text+ko) ==== From fangwang at FreeBSD.org Tue Jun 2 13:26:09 2009 From: fangwang at FreeBSD.org (Fang Wang) Date: Tue Jun 2 13:28:23 2009 Subject: PERFORCE change 163351 for review Message-ID: <200906021326.n52DQ7fO043721@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163351 Change 163351 by fangwang@fangwang_utobsd on 2009/06/02 13:25:39 Add uto relative variables to struct tcpch. Add some macro defines. Affected files ... .. //depot/projects/soc2009/tcputo/src/sys/netinet/tcp_var.h#2 edit Differences ... ==== //depot/projects/soc2009/tcputo/src/sys/netinet/tcp_var.h#2 (text+ko) ==== @@ -190,6 +190,15 @@ struct toe_usrreqs *t_tu; /* offload operations vector */ void *t_toe; /* TOE pcb pointer */ int t_bytes_acked; /* # bytes acked during current RTT */ + +/* user timeout variables (RFC 5482) */ + u_int t_rcvuto; /* received user timeout value */ + u_char rcv_uto_granularity:1; /* received user timeout granularity */ + u_int t_snduto; /* send user timeout value */ + u_char snd_uto_granularity:1; /* received user timeout granularity */ + u_char uto_enable:1; /* flag controls whether the UTO option is enabled for a connection */ + u_char uto_changeable:1; /* flag that controls whether USER_TIMEOUT may be changed based on t_rcvuto */ + u_int t_uto; /* implemented user timeout value */ }; /* @@ -221,6 +230,7 @@ #define TF_ECN_PERMIT 0x4000000 /* connection ECN-ready */ #define TF_ECN_SND_CWR 0x8000000 /* ECN CWR in queue */ #define TF_ECN_SND_ECE 0x10000000 /* ECN ECE in queue */ +#define TF_RCVD_UTO 0x20000000 /* a user timeout was received in SYN */ #define IN_FASTRECOVERY(tp) (tp->t_flags & TF_FASTRECOVERY) #define ENTER_FASTRECOVERY(tp) tp->t_flags |= TF_FASTRECOVERY @@ -264,6 +274,7 @@ #define TOF_SIGNATURE 0x0040 /* TCP-MD5 signature option (RFC2385) */ #define TOF_SACK 0x0080 /* Peer sent SACK option */ #define TOF_MAXOPT 0x0100 +#define TOF_UTO 0x0200 /* user timeout (RFC5482) */ u_int32_t to_tsval; /* new timestamp */ u_int32_t to_tsecr; /* reflected timestamp */ u_int16_t to_mss; /* maximum segment size */ From fangwang at FreeBSD.org Tue Jun 2 14:09:54 2009 From: fangwang at FreeBSD.org (Fang Wang) Date: Tue Jun 2 14:10:00 2009 Subject: PERFORCE change 163352 for review Message-ID: <200906021409.n52E9quv048160@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163352 Change 163352 by fangwang@fangwang_utobsd on 2009/06/02 14:09:16 Add uto variables in struct tcpopt. Affected files ... .. //depot/projects/soc2009/tcputo/src/sys/netinet/tcp_var.h#3 edit Differences ... ==== //depot/projects/soc2009/tcputo/src/sys/netinet/tcp_var.h#3 (text+ko) ==== @@ -282,6 +282,8 @@ u_int8_t to_nsacks; /* number of SACK blocks */ u_char *to_sacks; /* pointer to the first SACK blocks */ u_char *to_signature; /* pointer to the TCP-MD5 signature */ + u_int16_t to_uto:15; /* user timeout */ + u_int16_t to_granularity:1; /* user timeout granularity */ }; /* From hselasky at FreeBSD.org Tue Jun 2 15:30:15 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Tue Jun 2 15:30:21 2009 Subject: PERFORCE change 163353 for review Message-ID: <200906021530.n52FUDou055430@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163353 Change 163353 by hselasky@hselasky_laptop001 on 2009/06/02 15:29:37 USB CORE: Remove duplicate free(), as result of automatic integration. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usb_device.c#37 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usb_device.c#37 (text+ko) ==== @@ -1992,13 +1992,6 @@ #if USB_HAVE_UGEN KASSERT(LIST_FIRST(&udev->pd_list) == NULL, ("leaked cdev entries")); #endif - /* free all allocated strings */ - if (udev->serial) - free(udev->serial, M_USB); - if (udev->manufacturer) - free(udev->manufacturer, M_USB); - if (udev->product) - free(udev->product, M_USB); /* free device */ free(udev->serial, M_USB); From rene at FreeBSD.org Tue Jun 2 18:51:41 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Tue Jun 2 18:51:47 2009 Subject: PERFORCE change 163362 for review Message-ID: <200906021851.n52IpdoP088017@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163362 Change 163362 by rene@rene_self on 2009/06/02 18:51:33 [website] Fix CSS and topnav overflow issues. Submitted by: gabor (slightly different version) Affected files ... .. //depot/projects/docproj_nl/www/nl/index.xsl#10 edit .. //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#7 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/index.xsl#10 (text+ko) ==== @@ -38,8 +38,8 @@ CVS, CVSup, Nieuws, Commerciele Leveranciers, homepage, CTM, Unix"/> - - + + ==== //depot/projects/docproj_nl/www/nl/share/sgml/header.l10n.ent#7 (text+ko) ==== @@ -49,14 +49,14 @@ - - '> + + '> ]]> - - '> + + '> @@ -128,7 +128,7 @@
        -
      • Beginpagina
      • +
      • Begin
      • Over
      • Verkrijg &os;
      • Documentatie
      • From hselasky at FreeBSD.org Tue Jun 2 19:06:56 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Tue Jun 2 19:07:03 2009 Subject: PERFORCE change 163365 for review Message-ID: <200906021906.n52J6tmX090236@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163365 Change 163365 by hselasky@hselasky_laptop001 on 2009/06/02 19:06:20 USB CORE: - Separate out cdev ref data from cdev private data. This finally solves some races when multiple threads are reading/writing/polling/ioctling on the same c-device. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usb_dev.c#26 edit .. //depot/projects/usb/src/sys/dev/usb/usb_dev.h#12 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usb_dev.c#26 (text+ko) ==== @@ -88,9 +88,9 @@ static void usb2_loc_fill(struct usb_fs_privdata *, struct usb_cdev_privdata *); static void usb2_close(void *); -static usb_error_t usb2_ref_device(struct usb_cdev_privdata *, int); -static usb_error_t usb2_usb_ref_device(struct usb_cdev_privdata *); -static void usb2_unref_device(struct usb_cdev_privdata *); +static usb_error_t usb2_ref_device(struct usb_cdev_privdata *, struct usb_cdev_refdata *, int); +static usb_error_t usb2_usb_ref_device(struct usb_cdev_privdata *, struct usb_cdev_refdata *); +static void usb2_unref_device(struct usb_cdev_privdata *, struct usb_cdev_refdata *); static d_open_t usb2_open; static d_ioctl_t usb2_ioctl; @@ -158,29 +158,30 @@ * Else: Failure. *------------------------------------------------------------------------*/ usb_error_t -usb2_ref_device(struct usb_cdev_privdata* cpd, int need_uref) +usb2_ref_device(struct usb_cdev_privdata *cpd, + struct usb_cdev_refdata *crd, int need_uref) { struct usb_fifo **ppf; struct usb_fifo *f; - DPRINTFN(2, "usb2_ref_device, cpd=%p need uref=%d\n", cpd, need_uref); + DPRINTFN(2, "cpd=%p need uref=%d\n", cpd, need_uref); + + /* clear all refs */ + memset(crd, 0, sizeof(*crd)); mtx_lock(&usb2_ref_lock); cpd->bus = devclass_get_softc(usb2_devclass_ptr, cpd->bus_index); if (cpd->bus == NULL) { DPRINTFN(2, "no bus at %u\n", cpd->bus_index); - need_uref = 0; goto error; } cpd->udev = cpd->bus->devices[cpd->dev_index]; if (cpd->udev == NULL) { DPRINTFN(2, "no device at %u\n", cpd->dev_index); - need_uref = 0; goto error; } if (cpd->udev->refcount == USB_DEV_REF_MAX) { DPRINTFN(2, "no dev ref\n"); - need_uref = 0; goto error; } if (need_uref) { @@ -200,79 +201,64 @@ /* * Set "is_uref" after grabbing the default SX lock */ - cpd->is_uref = 1; + crd->is_uref = 1; } /* check if we are doing an open */ if (cpd->fflags == 0) { - /* set defaults */ - cpd->txfifo = NULL; - cpd->rxfifo = NULL; - cpd->is_write = 0; - cpd->is_read = 0; - cpd->is_usbfs = 0; + /* use zero defaults */ } else { - /* initialise "is_usbfs" flag */ - cpd->is_usbfs = 0; - /* check for write */ if (cpd->fflags & FWRITE) { ppf = cpd->udev->fifo; f = ppf[cpd->fifo_index + USB_FIFO_TX]; - cpd->txfifo = f; - cpd->is_write = 1; /* ref */ + crd->txfifo = f; + crd->is_write = 1; /* ref */ if (f == NULL || f->refcount == USB_FIFO_REF_MAX) goto error; if (f->curr_cpd != cpd) goto error; /* check if USB-FS is active */ if (f->fs_ep_max != 0) { - cpd->is_usbfs = 1; + crd->is_usbfs = 1; } - } else { - cpd->txfifo = NULL; - cpd->is_write = 0; /* no ref */ } /* check for read */ if (cpd->fflags & FREAD) { ppf = cpd->udev->fifo; f = ppf[cpd->fifo_index + USB_FIFO_RX]; - cpd->rxfifo = f; - cpd->is_read = 1; /* ref */ + crd->rxfifo = f; + crd->is_read = 1; /* ref */ if (f == NULL || f->refcount == USB_FIFO_REF_MAX) goto error; if (f->curr_cpd != cpd) goto error; /* check if USB-FS is active */ if (f->fs_ep_max != 0) { - cpd->is_usbfs = 1; + crd->is_usbfs = 1; } - } else { - cpd->rxfifo = NULL; - cpd->is_read = 0; /* no ref */ } } /* when everything is OK we increment the refcounts */ - if (cpd->is_write) { + if (crd->is_write) { DPRINTFN(2, "ref write\n"); - cpd->txfifo->refcount++; + crd->txfifo->refcount++; } - if (cpd->is_read) { + if (crd->is_read) { DPRINTFN(2, "ref read\n"); - cpd->rxfifo->refcount++; + crd->rxfifo->refcount++; } mtx_unlock(&usb2_ref_lock); - if (need_uref) { + if (crd->is_uref) { mtx_lock(&Giant); /* XXX */ } return (0); error: - if (need_uref) { - cpd->is_uref = 0; + if (crd->is_uref) { sx_unlock(cpd->udev->default_sx + 1); if (--(cpd->udev->refcount) == 0) { usb2_cv_signal(cpd->udev->default_cv + 1); @@ -294,25 +280,22 @@ * Else: Failure. *------------------------------------------------------------------------*/ static usb_error_t -usb2_usb_ref_device(struct usb_cdev_privdata *cpd) +usb2_usb_ref_device(struct usb_cdev_privdata *cpd, + struct usb_cdev_refdata *crd) { - uint8_t is_uref; - - is_uref = cpd->is_uref && sx_xlocked(cpd->udev->default_sx + 1); - /* * Check if we already got an USB reference on this location: */ - if (is_uref) + if (crd->is_uref) return (0); /* success */ /* * To avoid deadlock at detach we need to drop the FIFO ref * and re-acquire a new ref! */ - usb2_unref_device(cpd); + usb2_unref_device(cpd, crd); - return (usb2_ref_device(cpd, 1 /* need uref */)); + return (usb2_ref_device(cpd, crd, 1 /* need uref */)); } /*------------------------------------------------------------------------* @@ -322,34 +305,34 @@ * given USB device. *------------------------------------------------------------------------*/ void -usb2_unref_device(struct usb_cdev_privdata *cpd) +usb2_unref_device(struct usb_cdev_privdata *cpd, + struct usb_cdev_refdata *crd) { - uint8_t is_uref; - is_uref = cpd->is_uref && sx_xlocked(cpd->udev->default_sx + 1); + DPRINTFN(2, "cpd=%p is_uref=%d\n", cpd, crd->is_uref); - if (is_uref) { - cpd->is_uref = 0; + if (crd->is_uref) { mtx_unlock(&Giant); /* XXX */ sx_unlock(cpd->udev->default_sx + 1); } mtx_lock(&usb2_ref_lock); - if (cpd->is_read) { - if (--(cpd->rxfifo->refcount) == 0) { - usb2_cv_signal(&cpd->rxfifo->cv_drain); + if (crd->is_read) { + if (--(crd->rxfifo->refcount) == 0) { + usb2_cv_signal(&crd->rxfifo->cv_drain); } - cpd->is_read = 0; + crd->is_read = 0; } - if (cpd->is_write) { - if (--(cpd->txfifo->refcount) == 0) { - usb2_cv_signal(&cpd->txfifo->cv_drain); + if (crd->is_write) { + if (--(crd->txfifo->refcount) == 0) { + usb2_cv_signal(&crd->txfifo->cv_drain); } - cpd->is_write = 0; + crd->is_write = 0; } - if (is_uref) { + if (crd->is_uref) { if (--(cpd->udev->refcount) == 0) { usb2_cv_signal(cpd->udev->default_cv + 1); } + crd->is_uref = 0; } mtx_unlock(&usb2_ref_lock); } @@ -372,7 +355,8 @@ * usb2_fifo_create *------------------------------------------------------------------------*/ static int -usb2_fifo_create(struct usb_cdev_privdata *cpd) +usb2_fifo_create(struct usb_cdev_privdata *cpd, + struct usb_cdev_refdata *crd) { struct usb_device *udev = cpd->udev; struct usb_fifo *f; @@ -396,13 +380,13 @@ f = udev->fifo[cpd->fifo_index + USB_FIFO_TX]; if (f == NULL) return (EINVAL); - cpd->txfifo = f; + crd->txfifo = f; } if (is_rx) { f = udev->fifo[cpd->fifo_index + USB_FIFO_RX]; if (f == NULL) return (EINVAL); - cpd->rxfifo = f; + crd->rxfifo = f; } return (0); } @@ -531,10 +515,10 @@ mtx_unlock(&usb2_ref_lock); } if (is_tx) { - cpd->txfifo = udev->fifo[n + USB_FIFO_TX]; + crd->txfifo = udev->fifo[n + USB_FIFO_TX]; } if (is_rx) { - cpd->rxfifo = udev->fifo[n + USB_FIFO_RX]; + crd->rxfifo = udev->fifo[n + USB_FIFO_RX]; } /* fill out fifo index */ DPRINTFN(5, "fifo index = %d\n", n); @@ -821,6 +805,7 @@ usb2_open(struct cdev *dev, int fflags, int devtype, struct thread *td) { struct usb_fs_privdata* pd = (struct usb_fs_privdata*)dev->si_drv1; + struct usb_cdev_refdata refs; struct usb_cdev_privdata *cpd; int err, ep; @@ -837,7 +822,7 @@ ep = cpd->ep_addr = pd->ep_addr; usb2_loc_fill(pd, cpd); - err = usb2_ref_device(cpd, 1); + err = usb2_ref_device(cpd, &refs, 1); if (err) { DPRINTFN(2, "cannot ref device\n"); free(cpd, M_USBDEV); @@ -846,36 +831,36 @@ cpd->fflags = fflags; /* access mode for open lifetime */ /* create FIFOs, if any */ - err = usb2_fifo_create(cpd); + err = usb2_fifo_create(cpd, &refs); /* check for error */ if (err) { DPRINTFN(2, "cannot create fifo\n"); - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); free(cpd, M_USBDEV); return (err); } if (fflags & FREAD) { - err = usb2_fifo_open(cpd, cpd->rxfifo, fflags); + err = usb2_fifo_open(cpd, refs.rxfifo, fflags); if (err) { DPRINTFN(2, "read open failed\n"); - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); free(cpd, M_USBDEV); return (err); } } if (fflags & FWRITE) { - err = usb2_fifo_open(cpd, cpd->txfifo, fflags); + err = usb2_fifo_open(cpd, refs.txfifo, fflags); if (err) { DPRINTFN(2, "write open failed\n"); if (fflags & FREAD) { - usb2_fifo_close(cpd->rxfifo, fflags); + usb2_fifo_close(refs.rxfifo, fflags); } - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); free(cpd, M_USBDEV); return (err); } } - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); devfs_set_cdevpriv(cpd, usb2_close); return (0); @@ -887,24 +872,25 @@ static void usb2_close(void *arg) { + struct usb_cdev_refdata refs; struct usb_cdev_privdata *cpd = arg; int err; DPRINTFN(2, "cpd=%p\n", cpd); - err = usb2_ref_device(cpd, 1); + err = usb2_ref_device(cpd, &refs, 1); if (err) { free(cpd, M_USBDEV); return; } if (cpd->fflags & FREAD) { - usb2_fifo_close(cpd->rxfifo, cpd->fflags); + usb2_fifo_close(refs.rxfifo, cpd->fflags); } if (cpd->fflags & FWRITE) { - usb2_fifo_close(cpd->txfifo, cpd->fflags); + usb2_fifo_close(refs.txfifo, cpd->fflags); } - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); free(cpd, M_USBDEV); return; } @@ -1003,6 +989,7 @@ static int usb2_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int fflag, struct thread* td) { + struct usb_cdev_refdata refs; struct usb_cdev_privdata* cpd; struct usb_fifo *f; int fflags; @@ -1015,11 +1002,11 @@ return (err); /* - * Performance optimistaion: We try to check for IOCTL's that + * Performance optimisation: We try to check for IOCTL's that * don't need the USB reference first. Then we grab the USB * reference if we need it! */ - err = usb2_ref_device(cpd, 0 /* no uref */ ); + err = usb2_ref_device(cpd, &refs, 0 /* no uref */ ); if (err) { return (ENXIO); } @@ -1029,11 +1016,11 @@ err = ENOIOCTL; /* set default value */ if (fflags & FWRITE) { - f = cpd->txfifo; + f = refs.txfifo; err = usb2_ioctl_f_sub(f, cmd, addr, td); } if (fflags & FREAD) { - f = cpd->rxfifo; + f = refs.rxfifo; err = usb2_ioctl_f_sub(f, cmd, addr, td); } KASSERT(f != NULL, ("fifo not found")); @@ -1041,7 +1028,7 @@ err = (f->methods->f_ioctl) (f, cmd, addr, fflags); DPRINTFN(2, "f_ioctl cmd 0x%lx = %d\n", cmd, err); if (err == ENOIOCTL) { - if (usb2_usb_ref_device(cpd)) { + if (usb2_usb_ref_device(cpd, &refs)) { err = ENXIO; goto done; } @@ -1053,7 +1040,7 @@ err = ENOTTY; } done: - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); return (err); } @@ -1061,13 +1048,14 @@ static int usb2_poll(struct cdev* dev, int events, struct thread* td) { + struct usb_cdev_refdata refs; struct usb_cdev_privdata* cpd; struct usb_fifo *f; struct usb_mbuf *m; int fflags, revents; if (devfs_get_cdevpriv((void **)&cpd) != 0 || - usb2_ref_device(cpd, 0) != 0) + usb2_ref_device(cpd, &refs, 0) != 0) return (events & (POLLHUP|POLLIN|POLLRDNORM|POLLOUT|POLLWRNORM)); @@ -1078,11 +1066,11 @@ if ((events & (POLLOUT | POLLWRNORM)) && (fflags & FWRITE)) { - f = cpd->txfifo; + f = refs.txfifo; mtx_lock(f->priv_mtx); - if (!cpd->is_usbfs) { + if (!refs.is_usbfs) { if (f->flag_iserror) { /* we got an error */ m = (void *)1; @@ -1117,11 +1105,11 @@ if ((events & (POLLIN | POLLRDNORM)) && (fflags & FREAD)) { - f = cpd->rxfifo; + f = refs.rxfifo; mtx_lock(f->priv_mtx); - if (!cpd->is_usbfs) { + if (!refs.is_usbfs) { if (f->flag_iserror) { /* we have and error */ m = (void *)1; @@ -1150,7 +1138,7 @@ f->flag_isselect = 1; selrecord(td, &f->selinfo); - if (!cpd->is_usbfs) { + if (!refs.is_usbfs) { /* start reading data */ (f->methods->f_start_read) (f); } @@ -1158,13 +1146,14 @@ mtx_unlock(f->priv_mtx); } - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); return (revents); } static int usb2_read(struct cdev *dev, struct uio *uio, int ioflag) { + struct usb_cdev_refdata refs; struct usb_cdev_privdata* cpd; struct usb_fifo *f; struct usb_mbuf *m; @@ -1178,15 +1167,16 @@ if (err != 0) return (err); - err = usb2_ref_device(cpd, 0 /* no uref */ ); + err = usb2_ref_device(cpd, &refs, 0 /* no uref */ ); if (err) { return (ENXIO); } fflags = cpd->fflags; - f = cpd->rxfifo; + f = refs.rxfifo; if (f == NULL) { /* should not happen */ + usb2_unref_device(cpd, &refs); return (EPERM); } @@ -1200,7 +1190,7 @@ goto done; } /* check if USB-FS interface is active */ - if (cpd->is_usbfs) { + if (refs.is_usbfs) { /* * The queue is used for events that should be * retrieved using the "USB_FS_COMPLETE" ioctl. @@ -1278,7 +1268,7 @@ done: mtx_unlock(f->priv_mtx); - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); return (err); } @@ -1286,6 +1276,7 @@ static int usb2_write(struct cdev *dev, struct uio *uio, int ioflag) { + struct usb_cdev_refdata refs; struct usb_cdev_privdata* cpd; struct usb_fifo *f; struct usb_mbuf *m; @@ -1301,16 +1292,16 @@ if (err != 0) return (err); - err = usb2_ref_device(cpd, 0 /* no uref */ ); + err = usb2_ref_device(cpd, &refs, 0 /* no uref */ ); if (err) { return (ENXIO); } fflags = cpd->fflags; - f = cpd->txfifo; + f = refs.txfifo; if (f == NULL) { /* should not happen */ - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); return (EPERM); } resid = uio->uio_resid; @@ -1323,7 +1314,7 @@ goto done; } /* check if USB-FS interface is active */ - if (cpd->is_usbfs) { + if (refs.is_usbfs) { /* * The queue is used for events that should be * retrieved using the "USB_FS_COMPLETE" ioctl. @@ -1391,7 +1382,7 @@ done: mtx_unlock(f->priv_mtx); - usb2_unref_device(cpd); + usb2_unref_device(cpd, &refs); return (err); } ==== //depot/projects/usb/src/sys/dev/usb/usb_dev.h#12 (text+ko) ==== @@ -88,13 +88,19 @@ struct usb_bus *bus; struct usb_device *udev; struct usb_interface *iface; - struct usb_fifo *rxfifo; - struct usb_fifo *txfifo; int bus_index; /* bus index */ int dev_index; /* device index */ int ep_addr; /* endpoint address */ int fflags; uint8_t fifo_index; /* FIFO index */ +}; + +/* + * Private per-device and per-thread reference information + */ +struct usb_cdev_refdata { + struct usb_fifo *rxfifo; + struct usb_fifo *txfifo; uint8_t is_read; /* location has read access */ uint8_t is_write; /* location has write access */ uint8_t is_uref; /* USB refcount decr. needed */ From antab at FreeBSD.org Tue Jun 2 19:12:03 2009 From: antab at FreeBSD.org (Arnar Mar Sig) Date: Tue Jun 2 19:12:10 2009 Subject: PERFORCE change 163366 for review Message-ID: <200906021912.n52JC0Cf090654@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163366 Change 163366 by antab@antab_farm on 2009/06/02 19:11:29 * Set ETH_TX_DESC_WRAP for last tx buffer, forgot to wrap tx_clean_ptr * Fix atomic ops, atomic_cmpset should return 1 and not the value at *address, atomic_add/fetchadd are sometimes called with -1, so we must handle this. Affected files ... .. //depot/projects/avr32/src/sys/avr32/include/atomic.h#8 edit .. //depot/projects/avr32/src/sys/dev/ate/if_ate.c#3 edit Differences ... ==== //depot/projects/avr32/src/sys/avr32/include/atomic.h#8 (text+ko) ==== @@ -90,6 +90,7 @@ "brne 2f\n" "stcond %1, %4\n" "brne 1b\n" + "mov %0, 1\n" "rjmp 3f\n" "2:\n" "mov %0, 0\n" @@ -110,11 +111,11 @@ "1:" "ssrf 5\n" "ld.w %0, %2\n" - "add %0, %3\n" + "sub %0, %3\n" "stcond %1, %0\n" "brne 1b" : "=&r"(tmp), "=m"(*address) - : "m"(*address), "r"(val) + : "m"(*address), "r"(-val) : "cc", "memory"); } @@ -147,12 +148,11 @@ "1:" "ssrf 5\n" "ld.w %0, %3\n" - "mov %2, %0\n" - "add %2, %4\n" + "sub %2, %0, %4\n" "stcond %1, %2\n" "brne 1b\n" : "=&r"(ret), "=m"(*address), "=r" (tmp) - : "m"(*address), "r"(val) + : "m"(*address), "r"(-val) : "cc", "memory"); return ret; ==== //depot/projects/avr32/src/sys/dev/ate/if_ate.c#3 (text) ==== @@ -399,6 +399,9 @@ bus_dmamap_sync(sc->tx_desc_tag, sc->tx_desc_map, BUS_DMASYNC_PREWRITE); sc->tx_descs[sc->txcur].addr = segs[0].ds_addr; sc->tx_descs[sc->txcur].status = mapsize | ETH_TX_DESC_LAST; + if (sc->txcur == ATE_MAX_TX_BUFFERS - 1) { + sc->tx_descs[sc->txcur].status |= ETH_TX_DESC_WRAP; + } bus_dmamap_sync(sc->tx_desc_tag, sc->tx_desc_map, BUS_DMASYNC_POSTWRITE); } #endif /* ATE_EMACB */ @@ -983,7 +986,7 @@ m_freem(sc->sent_mbuf[sc->tx_clean_ptr]); sc->sent_mbuf[sc->tx_clean_ptr] = NULL; ifp->if_opackets++; - sc->tx_clean_ptr++; + sc->tx_clean_ptr = (sc->tx_clean_ptr + 1) % ATE_MAX_TX_BUFFERS; } #else /* ATE_EMACB */ /* XXX TSR register should be cleared */ From thompsa at FreeBSD.org Tue Jun 2 19:42:40 2009 From: thompsa at FreeBSD.org (Andrew Thompson) Date: Tue Jun 2 19:42:49 2009 Subject: PERFORCE change 163369 for review Message-ID: <200906021942.n52JgaCX093073@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163369 Change 163369 by thompsa@thompsa_burger on 2009/06/02 19:42:29 IFC Affected files ... .. //depot/projects/usb/src/sys/amd64/conf/GENERIC#26 integrate .. //depot/projects/usb/src/sys/amd64/conf/MAC#2 delete .. //depot/projects/usb/src/sys/amd64/linux32/linux.h#14 integrate .. //depot/projects/usb/src/sys/amd64/linux32/linux32_sysent.c#10 integrate .. //depot/projects/usb/src/sys/boot/i386/libi386/biosdisk.c#10 integrate .. //depot/projects/usb/src/sys/compat/freebsd32/freebsd32_sysent.c#15 integrate .. //depot/projects/usb/src/sys/compat/linux/linux_socket.c#14 integrate .. //depot/projects/usb/src/sys/compat/svr4/svr4_sysent.c#5 integrate .. //depot/projects/usb/src/sys/conf/files#66 integrate .. //depot/projects/usb/src/sys/conf/options#31 integrate .. //depot/projects/usb/src/sys/contrib/dev/mwl/LICENSE#1 branch .. //depot/projects/usb/src/sys/contrib/dev/mwl/Makefile#1 branch .. //depot/projects/usb/src/sys/contrib/dev/mwl/mw88W8363.fw.uu#1 branch .. //depot/projects/usb/src/sys/contrib/dev/mwl/mwlboot.fw.uu#1 branch .. //depot/projects/usb/src/sys/contrib/pf/net/pf_ioctl.c#14 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/Makefile#2 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm.c#2 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm_gram.y#3 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y#3 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l#2 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm_scan.l#2 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.c#2 integrate .. //depot/projects/usb/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.h#2 integrate .. //depot/projects/usb/src/sys/dev/ata/ata-all.h#13 integrate .. //depot/projects/usb/src/sys/dev/ata/chipsets/ata-ahci.c#8 integrate .. //depot/projects/usb/src/sys/dev/bwi/if_bwi.c#4 integrate .. //depot/projects/usb/src/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c#3 integrate .. //depot/projects/usb/src/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c#11 integrate .. //depot/projects/usb/src/sys/dev/ksyms/ksyms.c#2 integrate .. //depot/projects/usb/src/sys/dev/mii/e1000phy.c#8 integrate .. //depot/projects/usb/src/sys/dev/mii/e1000phyreg.h#5 integrate .. //depot/projects/usb/src/sys/dev/msk/if_msk.c#12 integrate .. //depot/projects/usb/src/sys/dev/msk/if_mskreg.h#9 integrate .. //depot/projects/usb/src/sys/dev/mwl/if_mwl.c#1 branch .. //depot/projects/usb/src/sys/dev/mwl/if_mwl_pci.c#1 branch .. //depot/projects/usb/src/sys/dev/mwl/if_mwlioctl.h#1 branch .. //depot/projects/usb/src/sys/dev/mwl/if_mwlvar.h#1 branch .. //depot/projects/usb/src/sys/dev/mwl/mwldiag.h#1 branch .. //depot/projects/usb/src/sys/dev/mwl/mwlhal.c#1 branch .. //depot/projects/usb/src/sys/dev/mwl/mwlhal.h#1 branch .. //depot/projects/usb/src/sys/dev/mwl/mwlreg.h#1 branch .. //depot/projects/usb/src/sys/dev/mxge/if_mxge.c#12 integrate .. //depot/projects/usb/src/sys/dev/mxge/if_mxge_var.h#12 integrate .. //depot/projects/usb/src/sys/dev/pci/pci.c#22 integrate .. //depot/projects/usb/src/sys/dev/pci/pcivar.h#10 integrate .. //depot/projects/usb/src/sys/dev/puc/pucdata.c#12 integrate .. //depot/projects/usb/src/sys/dev/sound/pci/hda/hdac.c#28 integrate .. //depot/projects/usb/src/sys/dev/usb/controller/avr32dci.c#6 integrate .. //depot/projects/usb/src/sys/dev/usb/controller/avr32dci.h#7 integrate .. //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#16 integrate .. //depot/projects/usb/src/sys/dev/usb/usb_compat_linux.h#17 integrate .. //depot/projects/usb/src/sys/dev/usb/usb_dev.c#27 integrate .. //depot/projects/usb/src/sys/dev/usb/usb_dev.h#13 integrate .. //depot/projects/usb/src/sys/dev/usb/usb_request.c#20 integrate .. //depot/projects/usb/src/sys/i386/conf/GENERIC#25 integrate .. //depot/projects/usb/src/sys/i386/conf/MAC#2 delete .. //depot/projects/usb/src/sys/i386/ibcs2/ibcs2_sysent.c#4 integrate .. //depot/projects/usb/src/sys/i386/linux/linux.h#13 integrate .. //depot/projects/usb/src/sys/i386/linux/linux_sysent.c#9 integrate .. //depot/projects/usb/src/sys/ia64/conf/GENERIC#12 integrate .. //depot/projects/usb/src/sys/ia64/conf/MAC#2 delete .. //depot/projects/usb/src/sys/kern/init_sysent.c#12 integrate .. //depot/projects/usb/src/sys/kern/kern_conf.c#17 integrate .. //depot/projects/usb/src/sys/kern/kern_descrip.c#22 integrate .. //depot/projects/usb/src/sys/kern/kern_lock.c#15 integrate .. //depot/projects/usb/src/sys/kern/kern_proc.c#19 integrate .. //depot/projects/usb/src/sys/kern/kern_prot.c#13 integrate .. //depot/projects/usb/src/sys/kern/kern_rwlock.c#16 integrate .. //depot/projects/usb/src/sys/kern/kern_sx.c#16 integrate .. //depot/projects/usb/src/sys/kern/makesyscalls.sh#7 integrate .. //depot/projects/usb/src/sys/kern/subr_sglist.c#1 branch .. //depot/projects/usb/src/sys/kern/sys_socket.c#10 integrate .. //depot/projects/usb/src/sys/kern/uipc_mbuf.c#11 integrate .. //depot/projects/usb/src/sys/kern/uipc_shm.c#5 integrate .. //depot/projects/usb/src/sys/kern/uipc_sockbuf.c#11 integrate .. //depot/projects/usb/src/sys/kern/uipc_socket.c#19 integrate .. //depot/projects/usb/src/sys/kern/uipc_syscalls.c#15 integrate .. //depot/projects/usb/src/sys/kern/uipc_usrreq.c#16 integrate .. //depot/projects/usb/src/sys/kern/vfs_aio.c#11 integrate .. //depot/projects/usb/src/sys/modules/Makefile#35 integrate .. //depot/projects/usb/src/sys/modules/mwl/Makefile#1 branch .. //depot/projects/usb/src/sys/modules/mwlfw/Makefile#1 branch .. //depot/projects/usb/src/sys/net/if.c#27 integrate .. //depot/projects/usb/src/sys/net/netisr.c#9 integrate .. //depot/projects/usb/src/sys/net/netisr.h#7 integrate .. //depot/projects/usb/src/sys/net/route.c#17 integrate .. //depot/projects/usb/src/sys/net/route.h#10 integrate .. //depot/projects/usb/src/sys/net/rtsock.c#24 integrate .. //depot/projects/usb/src/sys/net/vnet.h#9 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211.c#22 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_ddb.c#15 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_freebsd.c#18 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_hostap.c#13 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_ht.h#10 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_input.c#16 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_ioctl.c#22 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_ioctl.h#11 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_monitor.c#4 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_node.h#15 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_proto.h#16 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_radiotap.c#3 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_scan.h#7 integrate .. //depot/projects/usb/src/sys/net80211/ieee80211_var.h#22 integrate .. //depot/projects/usb/src/sys/netatalk/ddp_input.c#4 integrate .. //depot/projects/usb/src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c#8 integrate .. //depot/projects/usb/src/sys/netgraph/ng_ksocket.c#6 integrate .. //depot/projects/usb/src/sys/netinet/accf_data.c#3 integrate .. //depot/projects/usb/src/sys/netinet/accf_dns.c#3 integrate .. //depot/projects/usb/src/sys/netinet/accf_http.c#3 integrate .. //depot/projects/usb/src/sys/netinet/igmp.c#17 integrate .. //depot/projects/usb/src/sys/netinet/in_rmx.c#16 integrate .. //depot/projects/usb/src/sys/netinet/ip_divert.c#17 integrate .. //depot/projects/usb/src/sys/netinet/tcp_input.c#22 integrate .. //depot/projects/usb/src/sys/netinet/tcp_syncache.c#21 integrate .. //depot/projects/usb/src/sys/netinet6/in6_ifattach.c#20 integrate .. //depot/projects/usb/src/sys/netinet6/in6_rmx.c#15 integrate .. //depot/projects/usb/src/sys/netinet6/ip6_input.c#22 integrate .. //depot/projects/usb/src/sys/netinet6/nd6.c#18 integrate .. //depot/projects/usb/src/sys/netinet6/nd6_rtr.c#16 integrate .. //depot/projects/usb/src/sys/netsmb/smb_trantcp.c#6 integrate .. //depot/projects/usb/src/sys/nfsclient/bootp_subr.c#13 integrate .. //depot/projects/usb/src/sys/nfsclient/nfs_socket.c#12 integrate .. //depot/projects/usb/src/sys/nfsserver/nfs.h#10 integrate .. //depot/projects/usb/src/sys/nfsserver/nfs_srvsock.c#10 integrate .. //depot/projects/usb/src/sys/nfsserver/nfs_syscalls.c#13 integrate .. //depot/projects/usb/src/sys/pc98/conf/GENERIC#19 integrate .. //depot/projects/usb/src/sys/pc98/conf/MAC#2 delete .. //depot/projects/usb/src/sys/powerpc/conf/GENERIC#20 integrate .. //depot/projects/usb/src/sys/powerpc/conf/MAC#2 delete .. //depot/projects/usb/src/sys/rpc/clnt_dg.c#4 integrate .. //depot/projects/usb/src/sys/rpc/clnt_vc.c#5 integrate .. //depot/projects/usb/src/sys/rpc/svc_dg.c#3 integrate .. //depot/projects/usb/src/sys/rpc/svc_vc.c#4 integrate .. //depot/projects/usb/src/sys/security/mac/mac_framework.c#10 integrate .. //depot/projects/usb/src/sys/security/mac/mac_internal.h#12 integrate .. //depot/projects/usb/src/sys/security/mac/mac_socket.c#9 integrate .. //depot/projects/usb/src/sys/sparc64/conf/GENERIC#19 integrate .. //depot/projects/usb/src/sys/sparc64/conf/MAC#2 delete .. //depot/projects/usb/src/sys/sun4v/conf/GENERIC#13 integrate .. //depot/projects/usb/src/sys/sun4v/conf/MAC#2 delete .. //depot/projects/usb/src/sys/sys/conf.h#17 integrate .. //depot/projects/usb/src/sys/sys/param.h#34 integrate .. //depot/projects/usb/src/sys/sys/sglist.h#1 branch .. //depot/projects/usb/src/sys/sys/sockbuf.h#2 integrate .. //depot/projects/usb/src/sys/sys/socketvar.h#10 integrate .. //depot/projects/usb/src/sys/sys/sysent.h#11 integrate .. //depot/projects/usb/src/sys/sys/ucred.h#6 integrate .. //depot/projects/usb/src/sys/sys/user.h#9 integrate .. //depot/projects/usb/src/sys/sys/vnode.h#21 integrate .. //depot/projects/usb/src/sys/ufs/ffs/ffs_softdep.c#12 integrate .. //depot/projects/usb/src/sys/vm/vm_mmap.c#17 integrate .. //depot/projects/usb/src/sys/vm/vnode_pager.c#17 integrate Differences ... ==== //depot/projects/usb/src/sys/amd64/conf/GENERIC#26 (text+ko) ==== @@ -16,7 +16,7 @@ # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # -# $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.525 2009/05/10 00:00:25 kuriyama Exp $ +# $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.526 2009/06/02 18:31:08 rwatson Exp $ cpu HAMMER ident GENERIC @@ -70,6 +70,7 @@ options STOP_NMI # Stop CPUS using NMI instead of IPI options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) options AUDIT # Security event auditing +options MAC # TrustedBSD MAC Framework #options KDTRACE_FRAME # Ensure frames are compiled in #options KDTRACE_HOOKS # Kernel DTrace hooks ==== //depot/projects/usb/src/sys/amd64/linux32/linux.h#14 (text+ko) ==== @@ -27,7 +27,7 @@ * (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: src/sys/amd64/linux32/linux.h,v 1.28 2009/05/16 18:48:41 dchagin Exp $ + * $FreeBSD: src/sys/amd64/linux32/linux.h,v 1.29 2009/06/01 20:48:39 dchagin Exp $ */ #ifndef _AMD64_LINUX_H_ @@ -669,6 +669,7 @@ #define LINUX_GETSOCKOPT 15 #define LINUX_SENDMSG 16 #define LINUX_RECVMSG 17 +#define LINUX_ACCEPT4 18 #define LINUX_SOL_SOCKET 1 #define LINUX_SOL_IP 0 ==== //depot/projects/usb/src/sys/amd64/linux32/linux32_sysent.c#10 (text+ko) ==== @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.39 2008/11/29 14:57:58 kib Exp $ + * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.40 2009/06/01 16:14:38 rwatson Exp $ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 185438 2008-11-29 14:55:24Z kib */ @@ -19,321 +19,321 @@ /* The casts are bogus but will do for now. */ struct sysent linux_sysent[] = { #define nosys linux_nosys - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 0 = setup */ - { AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT, NULL, 0, 0 }, /* 1 = exit */ - { 0, (sy_call_t *)linux_fork, AUE_FORK, NULL, 0, 0 }, /* 2 = linux_fork */ - { AS(read_args), (sy_call_t *)read, AUE_NULL, NULL, 0, 0 }, /* 3 = read */ - { AS(write_args), (sy_call_t *)write, AUE_NULL, NULL, 0, 0 }, /* 4 = write */ - { AS(linux_open_args), (sy_call_t *)linux_open, AUE_OPEN_RWTC, NULL, 0, 0 }, /* 5 = linux_open */ - { AS(close_args), (sy_call_t *)close, AUE_CLOSE, NULL, 0, 0 }, /* 6 = close */ - { AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_WAIT4, NULL, 0, 0 }, /* 7 = linux_waitpid */ - { AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_CREAT, NULL, 0, 0 }, /* 8 = linux_creat */ - { AS(linux_link_args), (sy_call_t *)linux_link, AUE_LINK, NULL, 0, 0 }, /* 9 = linux_link */ - { AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_UNLINK, NULL, 0, 0 }, /* 10 = linux_unlink */ - { AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_EXECVE, NULL, 0, 0 }, /* 11 = linux_execve */ - { AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_CHDIR, NULL, 0, 0 }, /* 12 = linux_chdir */ - { AS(linux_time_args), (sy_call_t *)linux_time, AUE_NULL, NULL, 0, 0 }, /* 13 = linux_time */ - { AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_MKNOD, NULL, 0, 0 }, /* 14 = linux_mknod */ - { AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_CHMOD, NULL, 0, 0 }, /* 15 = linux_chmod */ - { AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_LCHOWN, NULL, 0, 0 }, /* 16 = linux_lchown16 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 17 = break */ - { AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_STAT, NULL, 0, 0 }, /* 18 = linux_stat */ - { AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_LSEEK, NULL, 0, 0 }, /* 19 = linux_lseek */ - { 0, (sy_call_t *)linux_getpid, AUE_GETPID, NULL, 0, 0 }, /* 20 = linux_getpid */ - { AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_MOUNT, NULL, 0, 0 }, /* 21 = linux_mount */ - { AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_UMOUNT, NULL, 0, 0 }, /* 22 = linux_oldumount */ - { AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_SETUID, NULL, 0, 0 }, /* 23 = linux_setuid16 */ - { 0, (sy_call_t *)linux_getuid16, AUE_GETUID, NULL, 0, 0 }, /* 24 = linux_getuid16 */ - { 0, (sy_call_t *)linux_stime, AUE_SETTIMEOFDAY, NULL, 0, 0 }, /* 25 = linux_stime */ - { AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_PTRACE, NULL, 0, 0 }, /* 26 = linux_ptrace */ - { AS(linux_alarm_args), (sy_call_t *)linux_alarm, AUE_NULL, NULL, 0, 0 }, /* 27 = linux_alarm */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 28 = fstat */ - { 0, (sy_call_t *)linux_pause, AUE_NULL, NULL, 0, 0 }, /* 29 = linux_pause */ - { AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_UTIME, NULL, 0, 0 }, /* 30 = linux_utime */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 31 = stty */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 32 = gtty */ - { AS(linux_access_args), (sy_call_t *)linux_access, AUE_ACCESS, NULL, 0, 0 }, /* 33 = linux_access */ - { AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NICE, NULL, 0, 0 }, /* 34 = linux_nice */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 35 = ftime */ - { 0, (sy_call_t *)sync, AUE_SYNC, NULL, 0, 0 }, /* 36 = sync */ - { AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_KILL, NULL, 0, 0 }, /* 37 = linux_kill */ - { AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME, NULL, 0, 0 }, /* 38 = linux_rename */ - { AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_MKDIR, NULL, 0, 0 }, /* 39 = linux_mkdir */ - { AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_RMDIR, NULL, 0, 0 }, /* 40 = linux_rmdir */ - { AS(dup_args), (sy_call_t *)dup, AUE_DUP, NULL, 0, 0 }, /* 41 = dup */ - { AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_PIPE, NULL, 0, 0 }, /* 42 = linux_pipe */ - { AS(linux_times_args), (sy_call_t *)linux_times, AUE_NULL, NULL, 0, 0 }, /* 43 = linux_times */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 44 = prof */ - { AS(linux_brk_args), (sy_call_t *)linux_brk, AUE_NULL, NULL, 0, 0 }, /* 45 = linux_brk */ - { AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_SETGID, NULL, 0, 0 }, /* 46 = linux_setgid16 */ - { 0, (sy_call_t *)linux_getgid16, AUE_GETGID, NULL, 0, 0 }, /* 47 = linux_getgid16 */ - { AS(linux_signal_args), (sy_call_t *)linux_signal, AUE_NULL, NULL, 0, 0 }, /* 48 = linux_signal */ - { 0, (sy_call_t *)linux_geteuid16, AUE_GETEUID, NULL, 0, 0 }, /* 49 = linux_geteuid16 */ - { 0, (sy_call_t *)linux_getegid16, AUE_GETEGID, NULL, 0, 0 }, /* 50 = linux_getegid16 */ - { AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0 }, /* 51 = acct */ - { AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_UMOUNT, NULL, 0, 0 }, /* 52 = linux_umount */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 53 = lock */ - { AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_IOCTL, NULL, 0, 0 }, /* 54 = linux_ioctl */ - { AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_FCNTL, NULL, 0, 0 }, /* 55 = linux_fcntl */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 56 = mpx */ - { AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP, NULL, 0, 0 }, /* 57 = setpgid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 58 = ulimit */ - { 0, (sy_call_t *)linux_olduname, AUE_NULL, NULL, 0, 0 }, /* 59 = linux_olduname */ - { AS(umask_args), (sy_call_t *)umask, AUE_UMASK, NULL, 0, 0 }, /* 60 = umask */ - { AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT, NULL, 0, 0 }, /* 61 = chroot */ - { AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL, NULL, 0, 0 }, /* 62 = linux_ustat */ - { AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2, NULL, 0, 0 }, /* 63 = dup2 */ - { 0, (sy_call_t *)linux_getppid, AUE_GETPPID, NULL, 0, 0 }, /* 64 = linux_getppid */ - { 0, (sy_call_t *)getpgrp, AUE_GETPGRP, NULL, 0, 0 }, /* 65 = getpgrp */ - { 0, (sy_call_t *)setsid, AUE_SETSID, NULL, 0, 0 }, /* 66 = setsid */ - { AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL, NULL, 0, 0 }, /* 67 = linux_sigaction */ - { 0, (sy_call_t *)linux_sgetmask, AUE_NULL, NULL, 0, 0 }, /* 68 = linux_sgetmask */ - { AS(linux_ssetmask_args), (sy_call_t *)linux_ssetmask, AUE_NULL, NULL, 0, 0 }, /* 69 = linux_ssetmask */ - { AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_SETREUID, NULL, 0, 0 }, /* 70 = linux_setreuid16 */ - { AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_SETREGID, NULL, 0, 0 }, /* 71 = linux_setregid16 */ - { AS(linux_sigsuspend_args), (sy_call_t *)linux_sigsuspend, AUE_NULL, NULL, 0, 0 }, /* 72 = linux_sigsuspend */ - { AS(linux_sigpending_args), (sy_call_t *)linux_sigpending, AUE_NULL, NULL, 0, 0 }, /* 73 = linux_sigpending */ - { AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_SYSCTL, NULL, 0, 0 }, /* 74 = linux_sethostname */ - { AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_SETRLIMIT, NULL, 0, 0 }, /* 75 = linux_setrlimit */ - { AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_GETRLIMIT, NULL, 0, 0 }, /* 76 = linux_old_getrlimit */ - { AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_GETRUSAGE, NULL, 0, 0 }, /* 77 = linux_getrusage */ - { AS(linux_gettimeofday_args), (sy_call_t *)linux_gettimeofday, AUE_NULL, NULL, 0, 0 }, /* 78 = linux_gettimeofday */ - { AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_SETTIMEOFDAY, NULL, 0, 0 }, /* 79 = linux_settimeofday */ - { AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_GETGROUPS, NULL, 0, 0 }, /* 80 = linux_getgroups16 */ - { AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_SETGROUPS, NULL, 0, 0 }, /* 81 = linux_setgroups16 */ - { AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_SELECT, NULL, 0, 0 }, /* 82 = linux_old_select */ - { AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_SYMLINK, NULL, 0, 0 }, /* 83 = linux_symlink */ - { AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_LSTAT, NULL, 0, 0 }, /* 84 = linux_lstat */ - { AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_READLINK, NULL, 0, 0 }, /* 85 = linux_readlink */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 86 = linux_uselib */ - { AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON, NULL, 0, 0 }, /* 87 = swapon */ - { AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_REBOOT, NULL, 0, 0 }, /* 88 = linux_reboot */ - { AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 89 = linux_readdir */ - { AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_MMAP, NULL, 0, 0 }, /* 90 = linux_mmap */ - { AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP, NULL, 0, 0 }, /* 91 = munmap */ - { AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_TRUNCATE, NULL, 0, 0 }, /* 92 = linux_truncate */ - { AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_FTRUNCATE, NULL, 0, 0 }, /* 93 = linux_ftruncate */ - { AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD, NULL, 0, 0 }, /* 94 = fchmod */ - { AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN, NULL, 0, 0 }, /* 95 = fchown */ - { AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY, NULL, 0, 0 }, /* 96 = linux_getpriority */ - { AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY, NULL, 0, 0 }, /* 97 = setpriority */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 98 = profil */ - { AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_STATFS, NULL, 0, 0 }, /* 99 = linux_statfs */ - { AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_FSTATFS, NULL, 0, 0 }, /* 100 = linux_fstatfs */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 101 = ioperm */ - { AS(linux_socketcall_args), (sy_call_t *)linux_socketcall, AUE_NULL, NULL, 0, 0 }, /* 102 = linux_socketcall */ - { AS(linux_syslog_args), (sy_call_t *)linux_syslog, AUE_NULL, NULL, 0, 0 }, /* 103 = linux_syslog */ - { AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_SETITIMER, NULL, 0, 0 }, /* 104 = linux_setitimer */ - { AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_GETITIMER, NULL, 0, 0 }, /* 105 = linux_getitimer */ - { AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_STAT, NULL, 0, 0 }, /* 106 = linux_newstat */ - { AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_LSTAT, NULL, 0, 0 }, /* 107 = linux_newlstat */ - { AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_FSTAT, NULL, 0, 0 }, /* 108 = linux_newfstat */ - { 0, (sy_call_t *)linux_uname, AUE_NULL, NULL, 0, 0 }, /* 109 = linux_uname */ - { AS(linux_iopl_args), (sy_call_t *)linux_iopl, AUE_NULL, NULL, 0, 0 }, /* 110 = linux_iopl */ - { 0, (sy_call_t *)linux_vhangup, AUE_NULL, NULL, 0, 0 }, /* 111 = linux_vhangup */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 112 = idle */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 113 = vm86old */ - { AS(linux_wait4_args), (sy_call_t *)linux_wait4, AUE_WAIT4, NULL, 0, 0 }, /* 114 = linux_wait4 */ - { 0, (sy_call_t *)linux_swapoff, AUE_SWAPOFF, NULL, 0, 0 }, /* 115 = linux_swapoff */ - { AS(linux_sysinfo_args), (sy_call_t *)linux_sysinfo, AUE_NULL, NULL, 0, 0 }, /* 116 = linux_sysinfo */ - { AS(linux_ipc_args), (sy_call_t *)linux_ipc, AUE_NULL, NULL, 0, 0 }, /* 117 = linux_ipc */ - { AS(fsync_args), (sy_call_t *)fsync, AUE_FSYNC, NULL, 0, 0 }, /* 118 = fsync */ - { AS(linux_sigreturn_args), (sy_call_t *)linux_sigreturn, AUE_SIGRETURN, NULL, 0, 0 }, /* 119 = linux_sigreturn */ - { AS(linux_clone_args), (sy_call_t *)linux_clone, AUE_RFORK, NULL, 0, 0 }, /* 120 = linux_clone */ - { AS(linux_setdomainname_args), (sy_call_t *)linux_setdomainname, AUE_SYSCTL, NULL, 0, 0 }, /* 121 = linux_setdomainname */ - { AS(linux_newuname_args), (sy_call_t *)linux_newuname, AUE_NULL, NULL, 0, 0 }, /* 122 = linux_newuname */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 123 = modify_ldt */ - { 0, (sy_call_t *)linux_adjtimex, AUE_ADJTIME, NULL, 0, 0 }, /* 124 = linux_adjtimex */ - { AS(linux_mprotect_args), (sy_call_t *)linux_mprotect, AUE_MPROTECT, NULL, 0, 0 }, /* 125 = linux_mprotect */ - { AS(linux_sigprocmask_args), (sy_call_t *)linux_sigprocmask, AUE_SIGPROCMASK, NULL, 0, 0 }, /* 126 = linux_sigprocmask */ - { 0, (sy_call_t *)linux_create_module, AUE_NULL, NULL, 0, 0 }, /* 127 = linux_create_module */ - { 0, (sy_call_t *)linux_init_module, AUE_NULL, NULL, 0, 0 }, /* 128 = linux_init_module */ - { 0, (sy_call_t *)linux_delete_module, AUE_NULL, NULL, 0, 0 }, /* 129 = linux_delete_module */ - { 0, (sy_call_t *)linux_get_kernel_syms, AUE_NULL, NULL, 0, 0 }, /* 130 = linux_get_kernel_syms */ - { 0, (sy_call_t *)linux_quotactl, AUE_QUOTACTL, NULL, 0, 0 }, /* 131 = linux_quotactl */ - { AS(getpgid_args), (sy_call_t *)getpgid, AUE_GETPGID, NULL, 0, 0 }, /* 132 = getpgid */ - { AS(fchdir_args), (sy_call_t *)fchdir, AUE_FCHDIR, NULL, 0, 0 }, /* 133 = fchdir */ - { 0, (sy_call_t *)linux_bdflush, AUE_BDFLUSH, NULL, 0, 0 }, /* 134 = linux_bdflush */ - { AS(linux_sysfs_args), (sy_call_t *)linux_sysfs, AUE_NULL, NULL, 0, 0 }, /* 135 = linux_sysfs */ - { AS(linux_personality_args), (sy_call_t *)linux_personality, AUE_PERSONALITY, NULL, 0, 0 }, /* 136 = linux_personality */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 137 = afs_syscall */ - { AS(linux_setfsuid16_args), (sy_call_t *)linux_setfsuid16, AUE_SETFSUID, NULL, 0, 0 }, /* 138 = linux_setfsuid16 */ - { AS(linux_setfsgid16_args), (sy_call_t *)linux_setfsgid16, AUE_SETFSGID, NULL, 0, 0 }, /* 139 = linux_setfsgid16 */ - { AS(linux_llseek_args), (sy_call_t *)linux_llseek, AUE_LSEEK, NULL, 0, 0 }, /* 140 = linux_llseek */ - { AS(linux_getdents_args), (sy_call_t *)linux_getdents, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 141 = linux_getdents */ - { AS(linux_select_args), (sy_call_t *)linux_select, AUE_SELECT, NULL, 0, 0 }, /* 142 = linux_select */ - { AS(flock_args), (sy_call_t *)flock, AUE_FLOCK, NULL, 0, 0 }, /* 143 = flock */ - { AS(linux_msync_args), (sy_call_t *)linux_msync, AUE_MSYNC, NULL, 0, 0 }, /* 144 = linux_msync */ - { AS(linux_readv_args), (sy_call_t *)linux_readv, AUE_READV, NULL, 0, 0 }, /* 145 = linux_readv */ - { AS(linux_writev_args), (sy_call_t *)linux_writev, AUE_WRITEV, NULL, 0, 0 }, /* 146 = linux_writev */ - { AS(linux_getsid_args), (sy_call_t *)linux_getsid, AUE_GETSID, NULL, 0, 0 }, /* 147 = linux_getsid */ - { AS(linux_fdatasync_args), (sy_call_t *)linux_fdatasync, AUE_NULL, NULL, 0, 0 }, /* 148 = linux_fdatasync */ - { AS(linux_sysctl_args), (sy_call_t *)linux_sysctl, AUE_SYSCTL, NULL, 0, 0 }, /* 149 = linux_sysctl */ - { AS(mlock_args), (sy_call_t *)mlock, AUE_MLOCK, NULL, 0, 0 }, /* 150 = mlock */ - { AS(munlock_args), (sy_call_t *)munlock, AUE_MUNLOCK, NULL, 0, 0 }, /* 151 = munlock */ - { AS(mlockall_args), (sy_call_t *)mlockall, AUE_MLOCKALL, NULL, 0, 0 }, /* 152 = mlockall */ - { 0, (sy_call_t *)munlockall, AUE_MUNLOCKALL, NULL, 0, 0 }, /* 153 = munlockall */ - { AS(sched_setparam_args), (sy_call_t *)sched_setparam, AUE_SCHED_SETPARAM, NULL, 0, 0 }, /* 154 = sched_setparam */ - { AS(sched_getparam_args), (sy_call_t *)sched_getparam, AUE_SCHED_GETPARAM, NULL, 0, 0 }, /* 155 = sched_getparam */ - { AS(linux_sched_setscheduler_args), (sy_call_t *)linux_sched_setscheduler, AUE_SCHED_SETSCHEDULER, NULL, 0, 0 }, /* 156 = linux_sched_setscheduler */ - { AS(linux_sched_getscheduler_args), (sy_call_t *)linux_sched_getscheduler, AUE_SCHED_GETSCHEDULER, NULL, 0, 0 }, /* 157 = linux_sched_getscheduler */ - { 0, (sy_call_t *)sched_yield, AUE_NULL, NULL, 0, 0 }, /* 158 = sched_yield */ - { AS(linux_sched_get_priority_max_args), (sy_call_t *)linux_sched_get_priority_max, AUE_SCHED_GET_PRIORITY_MAX, NULL, 0, 0 }, /* 159 = linux_sched_get_priority_max */ - { AS(linux_sched_get_priority_min_args), (sy_call_t *)linux_sched_get_priority_min, AUE_SCHED_GET_PRIORITY_MIN, NULL, 0, 0 }, /* 160 = linux_sched_get_priority_min */ - { AS(linux_sched_rr_get_interval_args), (sy_call_t *)linux_sched_rr_get_interval, AUE_SCHED_RR_GET_INTERVAL, NULL, 0, 0 }, /* 161 = linux_sched_rr_get_interval */ - { AS(linux_nanosleep_args), (sy_call_t *)linux_nanosleep, AUE_NULL, NULL, 0, 0 }, /* 162 = linux_nanosleep */ - { AS(linux_mremap_args), (sy_call_t *)linux_mremap, AUE_NULL, NULL, 0, 0 }, /* 163 = linux_mremap */ - { AS(linux_setresuid16_args), (sy_call_t *)linux_setresuid16, AUE_SETRESUID, NULL, 0, 0 }, /* 164 = linux_setresuid16 */ - { AS(linux_getresuid16_args), (sy_call_t *)linux_getresuid16, AUE_GETRESUID, NULL, 0, 0 }, /* 165 = linux_getresuid16 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 166 = vm86 */ - { 0, (sy_call_t *)linux_query_module, AUE_NULL, NULL, 0, 0 }, /* 167 = linux_query_module */ - { AS(poll_args), (sy_call_t *)poll, AUE_POLL, NULL, 0, 0 }, /* 168 = poll */ - { 0, (sy_call_t *)linux_nfsservctl, AUE_NULL, NULL, 0, 0 }, /* 169 = linux_nfsservctl */ - { AS(linux_setresgid16_args), (sy_call_t *)linux_setresgid16, AUE_SETRESGID, NULL, 0, 0 }, /* 170 = linux_setresgid16 */ - { AS(linux_getresgid16_args), (sy_call_t *)linux_getresgid16, AUE_GETRESGID, NULL, 0, 0 }, /* 171 = linux_getresgid16 */ - { AS(linux_prctl_args), (sy_call_t *)linux_prctl, AUE_PRCTL, NULL, 0, 0 }, /* 172 = linux_prctl */ - { AS(linux_rt_sigreturn_args), (sy_call_t *)linux_rt_sigreturn, AUE_NULL, NULL, 0, 0 }, /* 173 = linux_rt_sigreturn */ - { AS(linux_rt_sigaction_args), (sy_call_t *)linux_rt_sigaction, AUE_NULL, NULL, 0, 0 }, /* 174 = linux_rt_sigaction */ - { AS(linux_rt_sigprocmask_args), (sy_call_t *)linux_rt_sigprocmask, AUE_NULL, NULL, 0, 0 }, /* 175 = linux_rt_sigprocmask */ - { AS(linux_rt_sigpending_args), (sy_call_t *)linux_rt_sigpending, AUE_NULL, NULL, 0, 0 }, /* 176 = linux_rt_sigpending */ - { AS(linux_rt_sigtimedwait_args), (sy_call_t *)linux_rt_sigtimedwait, AUE_NULL, NULL, 0, 0 }, /* 177 = linux_rt_sigtimedwait */ - { 0, (sy_call_t *)linux_rt_sigqueueinfo, AUE_NULL, NULL, 0, 0 }, /* 178 = linux_rt_sigqueueinfo */ - { AS(linux_rt_sigsuspend_args), (sy_call_t *)linux_rt_sigsuspend, AUE_NULL, NULL, 0, 0 }, /* 179 = linux_rt_sigsuspend */ - { AS(linux_pread_args), (sy_call_t *)linux_pread, AUE_PREAD, NULL, 0, 0 }, /* 180 = linux_pread */ - { AS(linux_pwrite_args), (sy_call_t *)linux_pwrite, AUE_PWRITE, NULL, 0, 0 }, /* 181 = linux_pwrite */ - { AS(linux_chown16_args), (sy_call_t *)linux_chown16, AUE_CHOWN, NULL, 0, 0 }, /* 182 = linux_chown16 */ - { AS(linux_getcwd_args), (sy_call_t *)linux_getcwd, AUE_GETCWD, NULL, 0, 0 }, /* 183 = linux_getcwd */ - { 0, (sy_call_t *)linux_capget, AUE_CAPGET, NULL, 0, 0 }, /* 184 = linux_capget */ - { 0, (sy_call_t *)linux_capset, AUE_CAPSET, NULL, 0, 0 }, /* 185 = linux_capset */ - { AS(linux_sigaltstack_args), (sy_call_t *)linux_sigaltstack, AUE_NULL, NULL, 0, 0 }, /* 186 = linux_sigaltstack */ - { 0, (sy_call_t *)linux_sendfile, AUE_SENDFILE, NULL, 0, 0 }, /* 187 = linux_sendfile */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 188 = getpmsg */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 189 = putpmsg */ - { 0, (sy_call_t *)linux_vfork, AUE_VFORK, NULL, 0, 0 }, /* 190 = linux_vfork */ - { AS(linux_getrlimit_args), (sy_call_t *)linux_getrlimit, AUE_GETRLIMIT, NULL, 0, 0 }, /* 191 = linux_getrlimit */ - { AS(linux_mmap2_args), (sy_call_t *)linux_mmap2, AUE_MMAP, NULL, 0, 0 }, /* 192 = linux_mmap2 */ - { AS(linux_truncate64_args), (sy_call_t *)linux_truncate64, AUE_TRUNCATE, NULL, 0, 0 }, /* 193 = linux_truncate64 */ - { AS(linux_ftruncate64_args), (sy_call_t *)linux_ftruncate64, AUE_FTRUNCATE, NULL, 0, 0 }, /* 194 = linux_ftruncate64 */ - { AS(linux_stat64_args), (sy_call_t *)linux_stat64, AUE_STAT, NULL, 0, 0 }, /* 195 = linux_stat64 */ - { AS(linux_lstat64_args), (sy_call_t *)linux_lstat64, AUE_LSTAT, NULL, 0, 0 }, /* 196 = linux_lstat64 */ - { AS(linux_fstat64_args), (sy_call_t *)linux_fstat64, AUE_FSTAT, NULL, 0, 0 }, /* 197 = linux_fstat64 */ - { AS(linux_lchown_args), (sy_call_t *)linux_lchown, AUE_LCHOWN, NULL, 0, 0 }, /* 198 = linux_lchown */ - { 0, (sy_call_t *)linux_getuid, AUE_GETUID, NULL, 0, 0 }, /* 199 = linux_getuid */ - { 0, (sy_call_t *)linux_getgid, AUE_GETGID, NULL, 0, 0 }, /* 200 = linux_getgid */ - { 0, (sy_call_t *)geteuid, AUE_GETEUID, NULL, 0, 0 }, /* 201 = geteuid */ - { 0, (sy_call_t *)getegid, AUE_GETEGID, NULL, 0, 0 }, /* 202 = getegid */ - { AS(setreuid_args), (sy_call_t *)setreuid, AUE_SETREUID, NULL, 0, 0 }, /* 203 = setreuid */ - { AS(setregid_args), (sy_call_t *)setregid, AUE_SETREGID, NULL, 0, 0 }, /* 204 = setregid */ - { AS(linux_getgroups_args), (sy_call_t *)linux_getgroups, AUE_GETGROUPS, NULL, 0, 0 }, /* 205 = linux_getgroups */ - { AS(linux_setgroups_args), (sy_call_t *)linux_setgroups, AUE_SETGROUPS, NULL, 0, 0 }, /* 206 = linux_setgroups */ - { AS(fchown_args), (sy_call_t *)fchown, AUE_NULL, NULL, 0, 0 }, /* 207 = fchown */ - { AS(setresuid_args), (sy_call_t *)setresuid, AUE_SETRESUID, NULL, 0, 0 }, /* 208 = setresuid */ - { AS(getresuid_args), (sy_call_t *)getresuid, AUE_GETRESUID, NULL, 0, 0 }, /* 209 = getresuid */ - { AS(setresgid_args), (sy_call_t *)setresgid, AUE_SETRESGID, NULL, 0, 0 }, /* 210 = setresgid */ - { AS(getresgid_args), (sy_call_t *)getresgid, AUE_GETRESGID, NULL, 0, 0 }, /* 211 = getresgid */ - { AS(linux_chown_args), (sy_call_t *)linux_chown, AUE_CHOWN, NULL, 0, 0 }, /* 212 = linux_chown */ - { AS(setuid_args), (sy_call_t *)setuid, AUE_SETUID, NULL, 0, 0 }, /* 213 = setuid */ - { AS(setgid_args), (sy_call_t *)setgid, AUE_SETGID, NULL, 0, 0 }, /* 214 = setgid */ - { AS(linux_setfsuid_args), (sy_call_t *)linux_setfsuid, AUE_SETFSUID, NULL, 0, 0 }, /* 215 = linux_setfsuid */ - { AS(linux_setfsgid_args), (sy_call_t *)linux_setfsgid, AUE_SETFSGID, NULL, 0, 0 }, /* 216 = linux_setfsgid */ - { AS(linux_pivot_root_args), (sy_call_t *)linux_pivot_root, AUE_PIVOT_ROOT, NULL, 0, 0 }, /* 217 = linux_pivot_root */ - { AS(linux_mincore_args), (sy_call_t *)linux_mincore, AUE_MINCORE, NULL, 0, 0 }, /* 218 = linux_mincore */ - { AS(madvise_args), (sy_call_t *)madvise, AUE_MADVISE, NULL, 0, 0 }, /* 219 = madvise */ - { AS(linux_getdents64_args), (sy_call_t *)linux_getdents64, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 220 = linux_getdents64 */ - { AS(linux_fcntl64_args), (sy_call_t *)linux_fcntl64, AUE_FCNTL, NULL, 0, 0 }, /* 221 = linux_fcntl64 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 222 = */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 223 = */ - { 0, (sy_call_t *)linux_gettid, AUE_NULL, NULL, 0, 0 }, /* 224 = linux_gettid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 225 = linux_readahead */ - { 0, (sy_call_t *)linux_setxattr, AUE_NULL, NULL, 0, 0 }, /* 226 = linux_setxattr */ - { 0, (sy_call_t *)linux_lsetxattr, AUE_NULL, NULL, 0, 0 }, /* 227 = linux_lsetxattr */ - { 0, (sy_call_t *)linux_fsetxattr, AUE_NULL, NULL, 0, 0 }, /* 228 = linux_fsetxattr */ - { 0, (sy_call_t *)linux_getxattr, AUE_NULL, NULL, 0, 0 }, /* 229 = linux_getxattr */ - { 0, (sy_call_t *)linux_lgetxattr, AUE_NULL, NULL, 0, 0 }, /* 230 = linux_lgetxattr */ - { 0, (sy_call_t *)linux_fgetxattr, AUE_NULL, NULL, 0, 0 }, /* 231 = linux_fgetxattr */ - { 0, (sy_call_t *)linux_listxattr, AUE_NULL, NULL, 0, 0 }, /* 232 = linux_listxattr */ - { 0, (sy_call_t *)linux_llistxattr, AUE_NULL, NULL, 0, 0 }, /* 233 = linux_llistxattr */ - { 0, (sy_call_t *)linux_flistxattr, AUE_NULL, NULL, 0, 0 }, /* 234 = linux_flistxattr */ - { 0, (sy_call_t *)linux_removexattr, AUE_NULL, NULL, 0, 0 }, /* 235 = linux_removexattr */ - { 0, (sy_call_t *)linux_lremovexattr, AUE_NULL, NULL, 0, 0 }, /* 236 = linux_lremovexattr */ - { 0, (sy_call_t *)linux_fremovexattr, AUE_NULL, NULL, 0, 0 }, /* 237 = linux_fremovexattr */ - { AS(linux_tkill_args), (sy_call_t *)linux_tkill, AUE_NULL, NULL, 0, 0 }, /* 238 = linux_tkill */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 239 = linux_sendfile64 */ - { AS(linux_sys_futex_args), (sy_call_t *)linux_sys_futex, AUE_NULL, NULL, 0, 0 }, /* 240 = linux_sys_futex */ - { AS(linux_sched_setaffinity_args), (sy_call_t *)linux_sched_setaffinity, AUE_NULL, NULL, 0, 0 }, /* 241 = linux_sched_setaffinity */ - { AS(linux_sched_getaffinity_args), (sy_call_t *)linux_sched_getaffinity, AUE_NULL, NULL, 0, 0 }, /* 242 = linux_sched_getaffinity */ - { AS(linux_set_thread_area_args), (sy_call_t *)linux_set_thread_area, AUE_NULL, NULL, 0, 0 }, /* 243 = linux_set_thread_area */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 244 = linux_get_thread_area */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 245 = linux_io_setup */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 246 = linux_io_destroy */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 247 = linux_io_getevents */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 248 = inux_io_submit */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 249 = linux_io_cancel */ - { 0, (sy_call_t *)linux_fadvise64, AUE_NULL, NULL, 0, 0 }, /* 250 = linux_fadvise64 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 251 = */ - { AS(linux_exit_group_args), (sy_call_t *)linux_exit_group, AUE_EXIT, NULL, 0, 0 }, /* 252 = linux_exit_group */ - { 0, (sy_call_t *)linux_lookup_dcookie, AUE_NULL, NULL, 0, 0 }, /* 253 = linux_lookup_dcookie */ - { 0, (sy_call_t *)linux_epoll_create, AUE_NULL, NULL, 0, 0 }, /* 254 = linux_epoll_create */ - { 0, (sy_call_t *)linux_epoll_ctl, AUE_NULL, NULL, 0, 0 }, /* 255 = linux_epoll_ctl */ - { 0, (sy_call_t *)linux_epoll_wait, AUE_NULL, NULL, 0, 0 }, /* 256 = linux_epoll_wait */ - { 0, (sy_call_t *)linux_remap_file_pages, AUE_NULL, NULL, 0, 0 }, /* 257 = linux_remap_file_pages */ - { AS(linux_set_tid_address_args), (sy_call_t *)linux_set_tid_address, AUE_NULL, NULL, 0, 0 }, /* 258 = linux_set_tid_address */ - { 0, (sy_call_t *)linux_timer_create, AUE_NULL, NULL, 0, 0 }, /* 259 = linux_timer_create */ - { 0, (sy_call_t *)linux_timer_settime, AUE_NULL, NULL, 0, 0 }, /* 260 = linux_timer_settime */ - { 0, (sy_call_t *)linux_timer_gettime, AUE_NULL, NULL, 0, 0 }, /* 261 = linux_timer_gettime */ - { 0, (sy_call_t *)linux_timer_getoverrun, AUE_NULL, NULL, 0, 0 }, /* 262 = linux_timer_getoverrun */ - { 0, (sy_call_t *)linux_timer_delete, AUE_NULL, NULL, 0, 0 }, /* 263 = linux_timer_delete */ - { AS(linux_clock_settime_args), (sy_call_t *)linux_clock_settime, AUE_CLOCK_SETTIME, NULL, 0, 0 }, /* 264 = linux_clock_settime */ - { AS(linux_clock_gettime_args), (sy_call_t *)linux_clock_gettime, AUE_NULL, NULL, 0, 0 }, /* 265 = linux_clock_gettime */ - { AS(linux_clock_getres_args), (sy_call_t *)linux_clock_getres, AUE_NULL, NULL, 0, 0 }, /* 266 = linux_clock_getres */ - { AS(linux_clock_nanosleep_args), (sy_call_t *)linux_clock_nanosleep, AUE_NULL, NULL, 0, 0 }, /* 267 = linux_clock_nanosleep */ - { AS(linux_statfs64_args), (sy_call_t *)linux_statfs64, AUE_STATFS, NULL, 0, 0 }, /* 268 = linux_statfs64 */ - { 0, (sy_call_t *)linux_fstatfs64, AUE_FSTATFS, NULL, 0, 0 }, /* 269 = linux_fstatfs64 */ - { AS(linux_tgkill_args), (sy_call_t *)linux_tgkill, AUE_NULL, NULL, 0, 0 }, /* 270 = linux_tgkill */ - { AS(linux_utimes_args), (sy_call_t *)linux_utimes, AUE_UTIMES, NULL, 0, 0 }, /* 271 = linux_utimes */ - { 0, (sy_call_t *)linux_fadvise64_64, AUE_NULL, NULL, 0, 0 }, /* 272 = linux_fadvise64_64 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 273 = */ - { 0, (sy_call_t *)linux_mbind, AUE_NULL, NULL, 0, 0 }, /* 274 = linux_mbind */ - { 0, (sy_call_t *)linux_get_mempolicy, AUE_NULL, NULL, 0, 0 }, /* 275 = linux_get_mempolicy */ - { 0, (sy_call_t *)linux_set_mempolicy, AUE_NULL, NULL, 0, 0 }, /* 276 = linux_set_mempolicy */ - { 0, (sy_call_t *)linux_mq_open, AUE_NULL, NULL, 0, 0 }, /* 277 = linux_mq_open */ - { 0, (sy_call_t *)linux_mq_unlink, AUE_NULL, NULL, 0, 0 }, /* 278 = linux_mq_unlink */ - { 0, (sy_call_t *)linux_mq_timedsend, AUE_NULL, NULL, 0, 0 }, /* 279 = linux_mq_timedsend */ - { 0, (sy_call_t *)linux_mq_timedreceive, AUE_NULL, NULL, 0, 0 }, /* 280 = linux_mq_timedreceive */ - { 0, (sy_call_t *)linux_mq_notify, AUE_NULL, NULL, 0, 0 }, /* 281 = linux_mq_notify */ - { 0, (sy_call_t *)linux_mq_getsetattr, AUE_NULL, NULL, 0, 0 }, /* 282 = linux_mq_getsetattr */ - { 0, (sy_call_t *)linux_kexec_load, AUE_NULL, NULL, 0, 0 }, /* 283 = linux_kexec_load */ - { 0, (sy_call_t *)linux_waitid, AUE_NULL, NULL, 0, 0 }, /* 284 = linux_waitid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 285 = */ - { 0, (sy_call_t *)linux_add_key, AUE_NULL, NULL, 0, 0 }, /* 286 = linux_add_key */ - { 0, (sy_call_t *)linux_request_key, AUE_NULL, NULL, 0, 0 }, /* 287 = linux_request_key */ - { 0, (sy_call_t *)linux_keyctl, AUE_NULL, NULL, 0, 0 }, /* 288 = linux_keyctl */ - { 0, (sy_call_t *)linux_ioprio_set, AUE_NULL, NULL, 0, 0 }, /* 289 = linux_ioprio_set */ - { 0, (sy_call_t *)linux_ioprio_get, AUE_NULL, NULL, 0, 0 }, /* 290 = linux_ioprio_get */ - { 0, (sy_call_t *)linux_inotify_init, AUE_NULL, NULL, 0, 0 }, /* 291 = linux_inotify_init */ - { 0, (sy_call_t *)linux_inotify_add_watch, AUE_NULL, NULL, 0, 0 }, /* 292 = linux_inotify_add_watch */ - { 0, (sy_call_t *)linux_inotify_rm_watch, AUE_NULL, NULL, 0, 0 }, /* 293 = linux_inotify_rm_watch */ - { 0, (sy_call_t *)linux_migrate_pages, AUE_NULL, NULL, 0, 0 }, /* 294 = linux_migrate_pages */ - { AS(linux_openat_args), (sy_call_t *)linux_openat, AUE_OPEN_RWTC, NULL, 0, 0 }, /* 295 = linux_openat */ - { AS(linux_mkdirat_args), (sy_call_t *)linux_mkdirat, AUE_MKDIRAT, NULL, 0, 0 }, /* 296 = linux_mkdirat */ - { AS(linux_mknodat_args), (sy_call_t *)linux_mknodat, AUE_MKNODAT, NULL, 0, 0 }, /* 297 = linux_mknodat */ - { AS(linux_fchownat_args), (sy_call_t *)linux_fchownat, AUE_FCHOWNAT, NULL, 0, 0 }, /* 298 = linux_fchownat */ - { AS(linux_futimesat_args), (sy_call_t *)linux_futimesat, AUE_FUTIMESAT, NULL, 0, 0 }, /* 299 = linux_futimesat */ - { AS(linux_fstatat64_args), (sy_call_t *)linux_fstatat64, AUE_FSTATAT, NULL, 0, 0 }, /* 300 = linux_fstatat64 */ - { AS(linux_unlinkat_args), (sy_call_t *)linux_unlinkat, AUE_UNLINKAT, NULL, 0, 0 }, /* 301 = linux_unlinkat */ - { AS(linux_renameat_args), (sy_call_t *)linux_renameat, AUE_RENAMEAT, NULL, 0, 0 }, /* 302 = linux_renameat */ - { AS(linux_linkat_args), (sy_call_t *)linux_linkat, AUE_LINKAT, NULL, 0, 0 }, /* 303 = linux_linkat */ - { AS(linux_symlinkat_args), (sy_call_t *)linux_symlinkat, AUE_SYMLINKAT, NULL, 0, 0 }, /* 304 = linux_symlinkat */ - { AS(linux_readlinkat_args), (sy_call_t *)linux_readlinkat, AUE_READLINKAT, NULL, 0, 0 }, /* 305 = linux_readlinkat */ - { AS(linux_fchmodat_args), (sy_call_t *)linux_fchmodat, AUE_FCHMODAT, NULL, 0, 0 }, /* 306 = linux_fchmodat */ - { AS(linux_faccessat_args), (sy_call_t *)linux_faccessat, AUE_FACCESSAT, NULL, 0, 0 }, /* 307 = linux_faccessat */ - { 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0 }, /* 308 = linux_pselect6 */ - { 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0 }, /* 309 = linux_ppoll */ - { 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0 }, /* 310 = linux_unshare */ - { AS(linux_set_robust_list_args), (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0 }, /* 311 = linux_set_robust_list */ - { AS(linux_get_robust_list_args), (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0 }, /* 312 = linux_get_robust_list */ - { 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0 }, /* 313 = linux_splice */ - { 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0 }, /* 314 = linux_sync_file_range */ - { 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0 }, /* 315 = linux_tee */ - { 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0 }, /* 316 = linux_vmsplice */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 0 = setup */ + { AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT, NULL, 0, 0, 0 }, /* 1 = exit */ + { 0, (sy_call_t *)linux_fork, AUE_FORK, NULL, 0, 0, 0 }, /* 2 = linux_fork */ + { AS(read_args), (sy_call_t *)read, AUE_NULL, NULL, 0, 0, 0 }, /* 3 = read */ + { AS(write_args), (sy_call_t *)write, AUE_NULL, NULL, 0, 0, 0 }, /* 4 = write */ + { AS(linux_open_args), (sy_call_t *)linux_open, AUE_OPEN_RWTC, NULL, 0, 0, 0 }, /* 5 = linux_open */ + { AS(close_args), (sy_call_t *)close, AUE_CLOSE, NULL, 0, 0, 0 }, /* 6 = close */ + { AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_WAIT4, NULL, 0, 0, 0 }, /* 7 = linux_waitpid */ + { AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_CREAT, NULL, 0, 0, 0 }, /* 8 = linux_creat */ + { AS(linux_link_args), (sy_call_t *)linux_link, AUE_LINK, NULL, 0, 0, 0 }, /* 9 = linux_link */ + { AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_UNLINK, NULL, 0, 0, 0 }, /* 10 = linux_unlink */ + { AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_EXECVE, NULL, 0, 0, 0 }, /* 11 = linux_execve */ + { AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_CHDIR, NULL, 0, 0, 0 }, /* 12 = linux_chdir */ + { AS(linux_time_args), (sy_call_t *)linux_time, AUE_NULL, NULL, 0, 0, 0 }, /* 13 = linux_time */ + { AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_MKNOD, NULL, 0, 0, 0 }, /* 14 = linux_mknod */ + { AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_CHMOD, NULL, 0, 0, 0 }, /* 15 = linux_chmod */ + { AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_LCHOWN, NULL, 0, 0, 0 }, /* 16 = linux_lchown16 */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 17 = break */ + { AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_STAT, NULL, 0, 0, 0 }, /* 18 = linux_stat */ + { AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_LSEEK, NULL, 0, 0, 0 }, /* 19 = linux_lseek */ + { 0, (sy_call_t *)linux_getpid, AUE_GETPID, NULL, 0, 0, 0 }, /* 20 = linux_getpid */ + { AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_MOUNT, NULL, 0, 0, 0 }, /* 21 = linux_mount */ + { AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_UMOUNT, NULL, 0, 0, 0 }, /* 22 = linux_oldumount */ + { AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_SETUID, NULL, 0, 0, 0 }, /* 23 = linux_setuid16 */ + { 0, (sy_call_t *)linux_getuid16, AUE_GETUID, NULL, 0, 0, 0 }, /* 24 = linux_getuid16 */ + { 0, (sy_call_t *)linux_stime, AUE_SETTIMEOFDAY, NULL, 0, 0, 0 }, /* 25 = linux_stime */ + { AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_PTRACE, NULL, 0, 0, 0 }, /* 26 = linux_ptrace */ + { AS(linux_alarm_args), (sy_call_t *)linux_alarm, AUE_NULL, NULL, 0, 0, 0 }, /* 27 = linux_alarm */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 28 = fstat */ + { 0, (sy_call_t *)linux_pause, AUE_NULL, NULL, 0, 0, 0 }, /* 29 = linux_pause */ + { AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_UTIME, NULL, 0, 0, 0 }, /* 30 = linux_utime */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 31 = stty */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 32 = gtty */ + { AS(linux_access_args), (sy_call_t *)linux_access, AUE_ACCESS, NULL, 0, 0, 0 }, /* 33 = linux_access */ + { AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NICE, NULL, 0, 0, 0 }, /* 34 = linux_nice */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 35 = ftime */ + { 0, (sy_call_t *)sync, AUE_SYNC, NULL, 0, 0, 0 }, /* 36 = sync */ + { AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_KILL, NULL, 0, 0, 0 }, /* 37 = linux_kill */ + { AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME, NULL, 0, 0, 0 }, /* 38 = linux_rename */ + { AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_MKDIR, NULL, 0, 0, 0 }, /* 39 = linux_mkdir */ + { AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_RMDIR, NULL, 0, 0, 0 }, /* 40 = linux_rmdir */ + { AS(dup_args), (sy_call_t *)dup, AUE_DUP, NULL, 0, 0, 0 }, /* 41 = dup */ + { AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_PIPE, NULL, 0, 0, 0 }, /* 42 = linux_pipe */ + { AS(linux_times_args), (sy_call_t *)linux_times, AUE_NULL, NULL, 0, 0, 0 }, /* 43 = linux_times */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 44 = prof */ + { AS(linux_brk_args), (sy_call_t *)linux_brk, AUE_NULL, NULL, 0, 0, 0 }, /* 45 = linux_brk */ + { AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_SETGID, NULL, 0, 0, 0 }, /* 46 = linux_setgid16 */ + { 0, (sy_call_t *)linux_getgid16, AUE_GETGID, NULL, 0, 0, 0 }, /* 47 = linux_getgid16 */ + { AS(linux_signal_args), (sy_call_t *)linux_signal, AUE_NULL, NULL, 0, 0, 0 }, /* 48 = linux_signal */ + { 0, (sy_call_t *)linux_geteuid16, AUE_GETEUID, NULL, 0, 0, 0 }, /* 49 = linux_geteuid16 */ + { 0, (sy_call_t *)linux_getegid16, AUE_GETEGID, NULL, 0, 0, 0 }, /* 50 = linux_getegid16 */ + { AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0, 0 }, /* 51 = acct */ + { AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_UMOUNT, NULL, 0, 0, 0 }, /* 52 = linux_umount */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 53 = lock */ + { AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_IOCTL, NULL, 0, 0, 0 }, /* 54 = linux_ioctl */ + { AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_FCNTL, NULL, 0, 0, 0 }, /* 55 = linux_fcntl */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 56 = mpx */ + { AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP, NULL, 0, 0, 0 }, /* 57 = setpgid */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 58 = ulimit */ + { 0, (sy_call_t *)linux_olduname, AUE_NULL, NULL, 0, 0, 0 }, /* 59 = linux_olduname */ + { AS(umask_args), (sy_call_t *)umask, AUE_UMASK, NULL, 0, 0, 0 }, /* 60 = umask */ + { AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT, NULL, 0, 0, 0 }, /* 61 = chroot */ + { AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL, NULL, 0, 0, 0 }, /* 62 = linux_ustat */ + { AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2, NULL, 0, 0, 0 }, /* 63 = dup2 */ + { 0, (sy_call_t *)linux_getppid, AUE_GETPPID, NULL, 0, 0, 0 }, /* 64 = linux_getppid */ + { 0, (sy_call_t *)getpgrp, AUE_GETPGRP, NULL, 0, 0, 0 }, /* 65 = getpgrp */ + { 0, (sy_call_t *)setsid, AUE_SETSID, NULL, 0, 0, 0 }, /* 66 = setsid */ + { AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL, NULL, 0, 0, 0 }, /* 67 = linux_sigaction */ + { 0, (sy_call_t *)linux_sgetmask, AUE_NULL, NULL, 0, 0, 0 }, /* 68 = linux_sgetmask */ + { AS(linux_ssetmask_args), (sy_call_t *)linux_ssetmask, AUE_NULL, NULL, 0, 0, 0 }, /* 69 = linux_ssetmask */ + { AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_SETREUID, NULL, 0, 0, 0 }, /* 70 = linux_setreuid16 */ + { AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_SETREGID, NULL, 0, 0, 0 }, /* 71 = linux_setregid16 */ + { AS(linux_sigsuspend_args), (sy_call_t *)linux_sigsuspend, AUE_NULL, NULL, 0, 0, 0 }, /* 72 = linux_sigsuspend */ + { AS(linux_sigpending_args), (sy_call_t *)linux_sigpending, AUE_NULL, NULL, 0, 0, 0 }, /* 73 = linux_sigpending */ + { AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_SYSCTL, NULL, 0, 0, 0 }, /* 74 = linux_sethostname */ + { AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_SETRLIMIT, NULL, 0, 0, 0 }, /* 75 = linux_setrlimit */ + { AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_GETRLIMIT, NULL, 0, 0, 0 }, /* 76 = linux_old_getrlimit */ + { AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_GETRUSAGE, NULL, 0, 0, 0 }, /* 77 = linux_getrusage */ + { AS(linux_gettimeofday_args), (sy_call_t *)linux_gettimeofday, AUE_NULL, NULL, 0, 0, 0 }, /* 78 = linux_gettimeofday */ + { AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_SETTIMEOFDAY, NULL, 0, 0, 0 }, /* 79 = linux_settimeofday */ + { AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_GETGROUPS, NULL, 0, 0, 0 }, /* 80 = linux_getgroups16 */ + { AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_SETGROUPS, NULL, 0, 0, 0 }, /* 81 = linux_setgroups16 */ + { AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_SELECT, NULL, 0, 0, 0 }, /* 82 = linux_old_select */ + { AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_SYMLINK, NULL, 0, 0, 0 }, /* 83 = linux_symlink */ + { AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_LSTAT, NULL, 0, 0, 0 }, /* 84 = linux_lstat */ + { AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_READLINK, NULL, 0, 0, 0 }, /* 85 = linux_readlink */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 86 = linux_uselib */ + { AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON, NULL, 0, 0, 0 }, /* 87 = swapon */ + { AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_REBOOT, NULL, 0, 0, 0 }, /* 88 = linux_reboot */ + { AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_GETDIRENTRIES, NULL, 0, 0, 0 }, /* 89 = linux_readdir */ + { AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_MMAP, NULL, 0, 0, 0 }, /* 90 = linux_mmap */ + { AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP, NULL, 0, 0, 0 }, /* 91 = munmap */ + { AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_TRUNCATE, NULL, 0, 0, 0 }, /* 92 = linux_truncate */ + { AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_FTRUNCATE, NULL, 0, 0, 0 }, /* 93 = linux_ftruncate */ + { AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD, NULL, 0, 0, 0 }, /* 94 = fchmod */ + { AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN, NULL, 0, 0, 0 }, /* 95 = fchown */ + { AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY, NULL, 0, 0, 0 }, /* 96 = linux_getpriority */ + { AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY, NULL, 0, 0, 0 }, /* 97 = setpriority */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 98 = profil */ + { AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_STATFS, NULL, 0, 0, 0 }, /* 99 = linux_statfs */ + { AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_FSTATFS, NULL, 0, 0, 0 }, /* 100 = linux_fstatfs */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 101 = ioperm */ + { AS(linux_socketcall_args), (sy_call_t *)linux_socketcall, AUE_NULL, NULL, 0, 0, 0 }, /* 102 = linux_socketcall */ + { AS(linux_syslog_args), (sy_call_t *)linux_syslog, AUE_NULL, NULL, 0, 0, 0 }, /* 103 = linux_syslog */ + { AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_SETITIMER, NULL, 0, 0, 0 }, /* 104 = linux_setitimer */ + { AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_GETITIMER, NULL, 0, 0, 0 }, /* 105 = linux_getitimer */ + { AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_STAT, NULL, 0, 0, 0 }, /* 106 = linux_newstat */ + { AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_LSTAT, NULL, 0, 0, 0 }, /* 107 = linux_newlstat */ + { AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_FSTAT, NULL, 0, 0, 0 }, /* 108 = linux_newfstat */ + { 0, (sy_call_t *)linux_uname, AUE_NULL, NULL, 0, 0, 0 }, /* 109 = linux_uname */ + { AS(linux_iopl_args), (sy_call_t *)linux_iopl, AUE_NULL, NULL, 0, 0, 0 }, /* 110 = linux_iopl */ + { 0, (sy_call_t *)linux_vhangup, AUE_NULL, NULL, 0, 0, 0 }, /* 111 = linux_vhangup */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 112 = idle */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 113 = vm86old */ + { AS(linux_wait4_args), (sy_call_t *)linux_wait4, AUE_WAIT4, NULL, 0, 0, 0 }, /* 114 = linux_wait4 */ + { 0, (sy_call_t *)linux_swapoff, AUE_SWAPOFF, NULL, 0, 0, 0 }, /* 115 = linux_swapoff */ + { AS(linux_sysinfo_args), (sy_call_t *)linux_sysinfo, AUE_NULL, NULL, 0, 0, 0 }, /* 116 = linux_sysinfo */ + { AS(linux_ipc_args), (sy_call_t *)linux_ipc, AUE_NULL, NULL, 0, 0, 0 }, /* 117 = linux_ipc */ + { AS(fsync_args), (sy_call_t *)fsync, AUE_FSYNC, NULL, 0, 0, 0 }, /* 118 = fsync */ + { AS(linux_sigreturn_args), (sy_call_t *)linux_sigreturn, AUE_SIGRETURN, NULL, 0, 0, 0 }, /* 119 = linux_sigreturn */ + { AS(linux_clone_args), (sy_call_t *)linux_clone, AUE_RFORK, NULL, 0, 0, 0 }, /* 120 = linux_clone */ + { AS(linux_setdomainname_args), (sy_call_t *)linux_setdomainname, AUE_SYSCTL, NULL, 0, 0, 0 }, /* 121 = linux_setdomainname */ + { AS(linux_newuname_args), (sy_call_t *)linux_newuname, AUE_NULL, NULL, 0, 0, 0 }, /* 122 = linux_newuname */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 123 = modify_ldt */ + { 0, (sy_call_t *)linux_adjtimex, AUE_ADJTIME, NULL, 0, 0, 0 }, /* 124 = linux_adjtimex */ + { AS(linux_mprotect_args), (sy_call_t *)linux_mprotect, AUE_MPROTECT, NULL, 0, 0, 0 }, /* 125 = linux_mprotect */ + { AS(linux_sigprocmask_args), (sy_call_t *)linux_sigprocmask, AUE_SIGPROCMASK, NULL, 0, 0, 0 }, /* 126 = linux_sigprocmask */ + { 0, (sy_call_t *)linux_create_module, AUE_NULL, NULL, 0, 0, 0 }, /* 127 = linux_create_module */ + { 0, (sy_call_t *)linux_init_module, AUE_NULL, NULL, 0, 0, 0 }, /* 128 = linux_init_module */ + { 0, (sy_call_t *)linux_delete_module, AUE_NULL, NULL, 0, 0, 0 }, /* 129 = linux_delete_module */ + { 0, (sy_call_t *)linux_get_kernel_syms, AUE_NULL, NULL, 0, 0, 0 }, /* 130 = linux_get_kernel_syms */ + { 0, (sy_call_t *)linux_quotactl, AUE_QUOTACTL, NULL, 0, 0, 0 }, /* 131 = linux_quotactl */ + { AS(getpgid_args), (sy_call_t *)getpgid, AUE_GETPGID, NULL, 0, 0, 0 }, /* 132 = getpgid */ + { AS(fchdir_args), (sy_call_t *)fchdir, AUE_FCHDIR, NULL, 0, 0, 0 }, /* 133 = fchdir */ + { 0, (sy_call_t *)linux_bdflush, AUE_BDFLUSH, NULL, 0, 0, 0 }, /* 134 = linux_bdflush */ + { AS(linux_sysfs_args), (sy_call_t *)linux_sysfs, AUE_NULL, NULL, 0, 0, 0 }, /* 135 = linux_sysfs */ + { AS(linux_personality_args), (sy_call_t *)linux_personality, AUE_PERSONALITY, NULL, 0, 0, 0 }, /* 136 = linux_personality */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 137 = afs_syscall */ + { AS(linux_setfsuid16_args), (sy_call_t *)linux_setfsuid16, AUE_SETFSUID, NULL, 0, 0, 0 }, /* 138 = linux_setfsuid16 */ + { AS(linux_setfsgid16_args), (sy_call_t *)linux_setfsgid16, AUE_SETFSGID, NULL, 0, 0, 0 }, /* 139 = linux_setfsgid16 */ + { AS(linux_llseek_args), (sy_call_t *)linux_llseek, AUE_LSEEK, NULL, 0, 0, 0 }, /* 140 = linux_llseek */ + { AS(linux_getdents_args), (sy_call_t *)linux_getdents, AUE_GETDIRENTRIES, NULL, 0, 0, 0 }, /* 141 = linux_getdents */ + { AS(linux_select_args), (sy_call_t *)linux_select, AUE_SELECT, NULL, 0, 0, 0 }, /* 142 = linux_select */ + { AS(flock_args), (sy_call_t *)flock, AUE_FLOCK, NULL, 0, 0, 0 }, /* 143 = flock */ + { AS(linux_msync_args), (sy_call_t *)linux_msync, AUE_MSYNC, NULL, 0, 0, 0 }, /* 144 = linux_msync */ + { AS(linux_readv_args), (sy_call_t *)linux_readv, AUE_READV, NULL, 0, 0, 0 }, /* 145 = linux_readv */ + { AS(linux_writev_args), (sy_call_t *)linux_writev, AUE_WRITEV, NULL, 0, 0, 0 }, /* 146 = linux_writev */ + { AS(linux_getsid_args), (sy_call_t *)linux_getsid, AUE_GETSID, NULL, 0, 0, 0 }, /* 147 = linux_getsid */ + { AS(linux_fdatasync_args), (sy_call_t *)linux_fdatasync, AUE_NULL, NULL, 0, 0, 0 }, /* 148 = linux_fdatasync */ + { AS(linux_sysctl_args), (sy_call_t *)linux_sysctl, AUE_SYSCTL, NULL, 0, 0, 0 }, /* 149 = linux_sysctl */ + { AS(mlock_args), (sy_call_t *)mlock, AUE_MLOCK, NULL, 0, 0, 0 }, /* 150 = mlock */ + { AS(munlock_args), (sy_call_t *)munlock, AUE_MUNLOCK, NULL, 0, 0, 0 }, /* 151 = munlock */ + { AS(mlockall_args), (sy_call_t *)mlockall, AUE_MLOCKALL, NULL, 0, 0, 0 }, /* 152 = mlockall */ + { 0, (sy_call_t *)munlockall, AUE_MUNLOCKALL, NULL, 0, 0, 0 }, /* 153 = munlockall */ + { AS(sched_setparam_args), (sy_call_t *)sched_setparam, AUE_SCHED_SETPARAM, NULL, 0, 0, 0 }, /* 154 = sched_setparam */ + { AS(sched_getparam_args), (sy_call_t *)sched_getparam, AUE_SCHED_GETPARAM, NULL, 0, 0, 0 }, /* 155 = sched_getparam */ + { AS(linux_sched_setscheduler_args), (sy_call_t *)linux_sched_setscheduler, AUE_SCHED_SETSCHEDULER, NULL, 0, 0, 0 }, /* 156 = linux_sched_setscheduler */ + { AS(linux_sched_getscheduler_args), (sy_call_t *)linux_sched_getscheduler, AUE_SCHED_GETSCHEDULER, NULL, 0, 0, 0 }, /* 157 = linux_sched_getscheduler */ + { 0, (sy_call_t *)sched_yield, AUE_NULL, NULL, 0, 0, 0 }, /* 158 = sched_yield */ + { AS(linux_sched_get_priority_max_args), (sy_call_t *)linux_sched_get_priority_max, AUE_SCHED_GET_PRIORITY_MAX, NULL, 0, 0, 0 }, /* 159 = linux_sched_get_priority_max */ + { AS(linux_sched_get_priority_min_args), (sy_call_t *)linux_sched_get_priority_min, AUE_SCHED_GET_PRIORITY_MIN, NULL, 0, 0, 0 }, /* 160 = linux_sched_get_priority_min */ + { AS(linux_sched_rr_get_interval_args), (sy_call_t *)linux_sched_rr_get_interval, AUE_SCHED_RR_GET_INTERVAL, NULL, 0, 0, 0 }, /* 161 = linux_sched_rr_get_interval */ + { AS(linux_nanosleep_args), (sy_call_t *)linux_nanosleep, AUE_NULL, NULL, 0, 0, 0 }, /* 162 = linux_nanosleep */ + { AS(linux_mremap_args), (sy_call_t *)linux_mremap, AUE_NULL, NULL, 0, 0, 0 }, /* 163 = linux_mremap */ + { AS(linux_setresuid16_args), (sy_call_t *)linux_setresuid16, AUE_SETRESUID, NULL, 0, 0, 0 }, /* 164 = linux_setresuid16 */ + { AS(linux_getresuid16_args), (sy_call_t *)linux_getresuid16, AUE_GETRESUID, NULL, 0, 0, 0 }, /* 165 = linux_getresuid16 */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 166 = vm86 */ + { 0, (sy_call_t *)linux_query_module, AUE_NULL, NULL, 0, 0, 0 }, /* 167 = linux_query_module */ + { AS(poll_args), (sy_call_t *)poll, AUE_POLL, NULL, 0, 0, 0 }, /* 168 = poll */ + { 0, (sy_call_t *)linux_nfsservctl, AUE_NULL, NULL, 0, 0, 0 }, /* 169 = linux_nfsservctl */ + { AS(linux_setresgid16_args), (sy_call_t *)linux_setresgid16, AUE_SETRESGID, NULL, 0, 0, 0 }, /* 170 = linux_setresgid16 */ + { AS(linux_getresgid16_args), (sy_call_t *)linux_getresgid16, AUE_GETRESGID, NULL, 0, 0, 0 }, /* 171 = linux_getresgid16 */ + { AS(linux_prctl_args), (sy_call_t *)linux_prctl, AUE_PRCTL, NULL, 0, 0, 0 }, /* 172 = linux_prctl */ + { AS(linux_rt_sigreturn_args), (sy_call_t *)linux_rt_sigreturn, AUE_NULL, NULL, 0, 0, 0 }, /* 173 = linux_rt_sigreturn */ + { AS(linux_rt_sigaction_args), (sy_call_t *)linux_rt_sigaction, AUE_NULL, NULL, 0, 0, 0 }, /* 174 = linux_rt_sigaction */ + { AS(linux_rt_sigprocmask_args), (sy_call_t *)linux_rt_sigprocmask, AUE_NULL, NULL, 0, 0, 0 }, /* 175 = linux_rt_sigprocmask */ + { AS(linux_rt_sigpending_args), (sy_call_t *)linux_rt_sigpending, AUE_NULL, NULL, 0, 0, 0 }, /* 176 = linux_rt_sigpending */ + { AS(linux_rt_sigtimedwait_args), (sy_call_t *)linux_rt_sigtimedwait, AUE_NULL, NULL, 0, 0, 0 }, /* 177 = linux_rt_sigtimedwait */ + { 0, (sy_call_t *)linux_rt_sigqueueinfo, AUE_NULL, NULL, 0, 0, 0 }, /* 178 = linux_rt_sigqueueinfo */ + { AS(linux_rt_sigsuspend_args), (sy_call_t *)linux_rt_sigsuspend, AUE_NULL, NULL, 0, 0, 0 }, /* 179 = linux_rt_sigsuspend */ + { AS(linux_pread_args), (sy_call_t *)linux_pread, AUE_PREAD, NULL, 0, 0, 0 }, /* 180 = linux_pread */ + { AS(linux_pwrite_args), (sy_call_t *)linux_pwrite, AUE_PWRITE, NULL, 0, 0, 0 }, /* 181 = linux_pwrite */ + { AS(linux_chown16_args), (sy_call_t *)linux_chown16, AUE_CHOWN, NULL, 0, 0, 0 }, /* 182 = linux_chown16 */ + { AS(linux_getcwd_args), (sy_call_t *)linux_getcwd, AUE_GETCWD, NULL, 0, 0, 0 }, /* 183 = linux_getcwd */ + { 0, (sy_call_t *)linux_capget, AUE_CAPGET, NULL, 0, 0, 0 }, /* 184 = linux_capget */ + { 0, (sy_call_t *)linux_capset, AUE_CAPSET, NULL, 0, 0, 0 }, /* 185 = linux_capset */ + { AS(linux_sigaltstack_args), (sy_call_t *)linux_sigaltstack, AUE_NULL, NULL, 0, 0, 0 }, /* 186 = linux_sigaltstack */ + { 0, (sy_call_t *)linux_sendfile, AUE_SENDFILE, NULL, 0, 0, 0 }, /* 187 = linux_sendfile */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 188 = getpmsg */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 189 = putpmsg */ + { 0, (sy_call_t *)linux_vfork, AUE_VFORK, NULL, 0, 0, 0 }, /* 190 = linux_vfork */ + { AS(linux_getrlimit_args), (sy_call_t *)linux_getrlimit, AUE_GETRLIMIT, NULL, 0, 0, 0 }, /* 191 = linux_getrlimit */ + { AS(linux_mmap2_args), (sy_call_t *)linux_mmap2, AUE_MMAP, NULL, 0, 0, 0 }, /* 192 = linux_mmap2 */ + { AS(linux_truncate64_args), (sy_call_t *)linux_truncate64, AUE_TRUNCATE, NULL, 0, 0, 0 }, /* 193 = linux_truncate64 */ + { AS(linux_ftruncate64_args), (sy_call_t *)linux_ftruncate64, AUE_FTRUNCATE, NULL, 0, 0, 0 }, /* 194 = linux_ftruncate64 */ + { AS(linux_stat64_args), (sy_call_t *)linux_stat64, AUE_STAT, NULL, 0, 0, 0 }, /* 195 = linux_stat64 */ + { AS(linux_lstat64_args), (sy_call_t *)linux_lstat64, AUE_LSTAT, NULL, 0, 0, 0 }, /* 196 = linux_lstat64 */ + { AS(linux_fstat64_args), (sy_call_t *)linux_fstat64, AUE_FSTAT, NULL, 0, 0, 0 }, /* 197 = linux_fstat64 */ + { AS(linux_lchown_args), (sy_call_t *)linux_lchown, AUE_LCHOWN, NULL, 0, 0, 0 }, /* 198 = linux_lchown */ + { 0, (sy_call_t *)linux_getuid, AUE_GETUID, NULL, 0, 0, 0 }, /* 199 = linux_getuid */ + { 0, (sy_call_t *)linux_getgid, AUE_GETGID, NULL, 0, 0, 0 }, /* 200 = linux_getgid */ + { 0, (sy_call_t *)geteuid, AUE_GETEUID, NULL, 0, 0, 0 }, /* 201 = geteuid */ + { 0, (sy_call_t *)getegid, AUE_GETEGID, NULL, 0, 0, 0 }, /* 202 = getegid */ + { AS(setreuid_args), (sy_call_t *)setreuid, AUE_SETREUID, NULL, 0, 0, 0 }, /* 203 = setreuid */ + { AS(setregid_args), (sy_call_t *)setregid, AUE_SETREGID, NULL, 0, 0, 0 }, /* 204 = setregid */ + { AS(linux_getgroups_args), (sy_call_t *)linux_getgroups, AUE_GETGROUPS, NULL, 0, 0, 0 }, /* 205 = linux_getgroups */ + { AS(linux_setgroups_args), (sy_call_t *)linux_setgroups, AUE_SETGROUPS, NULL, 0, 0, 0 }, /* 206 = linux_setgroups */ + { AS(fchown_args), (sy_call_t *)fchown, AUE_NULL, NULL, 0, 0, 0 }, /* 207 = fchown */ + { AS(setresuid_args), (sy_call_t *)setresuid, AUE_SETRESUID, NULL, 0, 0, 0 }, /* 208 = setresuid */ + { AS(getresuid_args), (sy_call_t *)getresuid, AUE_GETRESUID, NULL, 0, 0, 0 }, /* 209 = getresuid */ + { AS(setresgid_args), (sy_call_t *)setresgid, AUE_SETRESGID, NULL, 0, 0, 0 }, /* 210 = setresgid */ + { AS(getresgid_args), (sy_call_t *)getresgid, AUE_GETRESGID, NULL, 0, 0, 0 }, /* 211 = getresgid */ + { AS(linux_chown_args), (sy_call_t *)linux_chown, AUE_CHOWN, NULL, 0, 0, 0 }, /* 212 = linux_chown */ + { AS(setuid_args), (sy_call_t *)setuid, AUE_SETUID, NULL, 0, 0, 0 }, /* 213 = setuid */ + { AS(setgid_args), (sy_call_t *)setgid, AUE_SETGID, NULL, 0, 0, 0 }, /* 214 = setgid */ + { AS(linux_setfsuid_args), (sy_call_t *)linux_setfsuid, AUE_SETFSUID, NULL, 0, 0, 0 }, /* 215 = linux_setfsuid */ + { AS(linux_setfsgid_args), (sy_call_t *)linux_setfsgid, AUE_SETFSGID, NULL, 0, 0, 0 }, /* 216 = linux_setfsgid */ + { AS(linux_pivot_root_args), (sy_call_t *)linux_pivot_root, AUE_PIVOT_ROOT, NULL, 0, 0, 0 }, /* 217 = linux_pivot_root */ + { AS(linux_mincore_args), (sy_call_t *)linux_mincore, AUE_MINCORE, NULL, 0, 0, 0 }, /* 218 = linux_mincore */ + { AS(madvise_args), (sy_call_t *)madvise, AUE_MADVISE, NULL, 0, 0, 0 }, /* 219 = madvise */ + { AS(linux_getdents64_args), (sy_call_t *)linux_getdents64, AUE_GETDIRENTRIES, NULL, 0, 0, 0 }, /* 220 = linux_getdents64 */ + { AS(linux_fcntl64_args), (sy_call_t *)linux_fcntl64, AUE_FCNTL, NULL, 0, 0, 0 }, /* 221 = linux_fcntl64 */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 222 = */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 223 = */ + { 0, (sy_call_t *)linux_gettid, AUE_NULL, NULL, 0, 0, 0 }, /* 224 = linux_gettid */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 225 = linux_readahead */ + { 0, (sy_call_t *)linux_setxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 226 = linux_setxattr */ + { 0, (sy_call_t *)linux_lsetxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 227 = linux_lsetxattr */ + { 0, (sy_call_t *)linux_fsetxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 228 = linux_fsetxattr */ + { 0, (sy_call_t *)linux_getxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 229 = linux_getxattr */ + { 0, (sy_call_t *)linux_lgetxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 230 = linux_lgetxattr */ + { 0, (sy_call_t *)linux_fgetxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 231 = linux_fgetxattr */ + { 0, (sy_call_t *)linux_listxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 232 = linux_listxattr */ + { 0, (sy_call_t *)linux_llistxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 233 = linux_llistxattr */ + { 0, (sy_call_t *)linux_flistxattr, AUE_NULL, NULL, 0, 0, 0 }, /* 234 = linux_flistxattr */ + { 0, (sy_call_t *)linux_removexattr, AUE_NULL, NULL, 0, 0, 0 }, /* 235 = linux_removexattr */ + { 0, (sy_call_t *)linux_lremovexattr, AUE_NULL, NULL, 0, 0, 0 }, /* 236 = linux_lremovexattr */ + { 0, (sy_call_t *)linux_fremovexattr, AUE_NULL, NULL, 0, 0, 0 }, /* 237 = linux_fremovexattr */ + { AS(linux_tkill_args), (sy_call_t *)linux_tkill, AUE_NULL, NULL, 0, 0, 0 }, /* 238 = linux_tkill */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 239 = linux_sendfile64 */ + { AS(linux_sys_futex_args), (sy_call_t *)linux_sys_futex, AUE_NULL, NULL, 0, 0, 0 }, /* 240 = linux_sys_futex */ + { AS(linux_sched_setaffinity_args), (sy_call_t *)linux_sched_setaffinity, AUE_NULL, NULL, 0, 0, 0 }, /* 241 = linux_sched_setaffinity */ + { AS(linux_sched_getaffinity_args), (sy_call_t *)linux_sched_getaffinity, AUE_NULL, NULL, 0, 0, 0 }, /* 242 = linux_sched_getaffinity */ + { AS(linux_set_thread_area_args), (sy_call_t *)linux_set_thread_area, AUE_NULL, NULL, 0, 0, 0 }, /* 243 = linux_set_thread_area */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 244 = linux_get_thread_area */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 245 = linux_io_setup */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 246 = linux_io_destroy */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 247 = linux_io_getevents */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 248 = inux_io_submit */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 249 = linux_io_cancel */ + { 0, (sy_call_t *)linux_fadvise64, AUE_NULL, NULL, 0, 0, 0 }, /* 250 = linux_fadvise64 */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 251 = */ + { AS(linux_exit_group_args), (sy_call_t *)linux_exit_group, AUE_EXIT, NULL, 0, 0, 0 }, /* 252 = linux_exit_group */ + { 0, (sy_call_t *)linux_lookup_dcookie, AUE_NULL, NULL, 0, 0, 0 }, /* 253 = linux_lookup_dcookie */ + { 0, (sy_call_t *)linux_epoll_create, AUE_NULL, NULL, 0, 0, 0 }, /* 254 = linux_epoll_create */ + { 0, (sy_call_t *)linux_epoll_ctl, AUE_NULL, NULL, 0, 0, 0 }, /* 255 = linux_epoll_ctl */ + { 0, (sy_call_t *)linux_epoll_wait, AUE_NULL, NULL, 0, 0, 0 }, /* 256 = linux_epoll_wait */ + { 0, (sy_call_t *)linux_remap_file_pages, AUE_NULL, NULL, 0, 0, 0 }, /* 257 = linux_remap_file_pages */ + { AS(linux_set_tid_address_args), (sy_call_t *)linux_set_tid_address, AUE_NULL, NULL, 0, 0, 0 }, /* 258 = linux_set_tid_address */ + { 0, (sy_call_t *)linux_timer_create, AUE_NULL, NULL, 0, 0, 0 }, /* 259 = linux_timer_create */ + { 0, (sy_call_t *)linux_timer_settime, AUE_NULL, NULL, 0, 0, 0 }, /* 260 = linux_timer_settime */ + { 0, (sy_call_t *)linux_timer_gettime, AUE_NULL, NULL, 0, 0, 0 }, /* 261 = linux_timer_gettime */ + { 0, (sy_call_t *)linux_timer_getoverrun, AUE_NULL, NULL, 0, 0, 0 }, /* 262 = linux_timer_getoverrun */ + { 0, (sy_call_t *)linux_timer_delete, AUE_NULL, NULL, 0, 0, 0 }, /* 263 = linux_timer_delete */ + { AS(linux_clock_settime_args), (sy_call_t *)linux_clock_settime, AUE_CLOCK_SETTIME, NULL, 0, 0, 0 }, /* 264 = linux_clock_settime */ + { AS(linux_clock_gettime_args), (sy_call_t *)linux_clock_gettime, AUE_NULL, NULL, 0, 0, 0 }, /* 265 = linux_clock_gettime */ + { AS(linux_clock_getres_args), (sy_call_t *)linux_clock_getres, AUE_NULL, NULL, 0, 0, 0 }, /* 266 = linux_clock_getres */ + { AS(linux_clock_nanosleep_args), (sy_call_t *)linux_clock_nanosleep, AUE_NULL, NULL, 0, 0, 0 }, /* 267 = linux_clock_nanosleep */ + { AS(linux_statfs64_args), (sy_call_t *)linux_statfs64, AUE_STATFS, NULL, 0, 0, 0 }, /* 268 = linux_statfs64 */ + { 0, (sy_call_t *)linux_fstatfs64, AUE_FSTATFS, NULL, 0, 0, 0 }, /* 269 = linux_fstatfs64 */ + { AS(linux_tgkill_args), (sy_call_t *)linux_tgkill, AUE_NULL, NULL, 0, 0, 0 }, /* 270 = linux_tgkill */ + { AS(linux_utimes_args), (sy_call_t *)linux_utimes, AUE_UTIMES, NULL, 0, 0, 0 }, /* 271 = linux_utimes */ + { 0, (sy_call_t *)linux_fadvise64_64, AUE_NULL, NULL, 0, 0, 0 }, /* 272 = linux_fadvise64_64 */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 273 = */ + { 0, (sy_call_t *)linux_mbind, AUE_NULL, NULL, 0, 0, 0 }, /* 274 = linux_mbind */ + { 0, (sy_call_t *)linux_get_mempolicy, AUE_NULL, NULL, 0, 0, 0 }, /* 275 = linux_get_mempolicy */ + { 0, (sy_call_t *)linux_set_mempolicy, AUE_NULL, NULL, 0, 0, 0 }, /* 276 = linux_set_mempolicy */ + { 0, (sy_call_t *)linux_mq_open, AUE_NULL, NULL, 0, 0, 0 }, /* 277 = linux_mq_open */ + { 0, (sy_call_t *)linux_mq_unlink, AUE_NULL, NULL, 0, 0, 0 }, /* 278 = linux_mq_unlink */ + { 0, (sy_call_t *)linux_mq_timedsend, AUE_NULL, NULL, 0, 0, 0 }, /* 279 = linux_mq_timedsend */ + { 0, (sy_call_t *)linux_mq_timedreceive, AUE_NULL, NULL, 0, 0, 0 }, /* 280 = linux_mq_timedreceive */ + { 0, (sy_call_t *)linux_mq_notify, AUE_NULL, NULL, 0, 0, 0 }, /* 281 = linux_mq_notify */ + { 0, (sy_call_t *)linux_mq_getsetattr, AUE_NULL, NULL, 0, 0, 0 }, /* 282 = linux_mq_getsetattr */ + { 0, (sy_call_t *)linux_kexec_load, AUE_NULL, NULL, 0, 0, 0 }, /* 283 = linux_kexec_load */ + { 0, (sy_call_t *)linux_waitid, AUE_NULL, NULL, 0, 0, 0 }, /* 284 = linux_waitid */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 }, /* 285 = */ + { 0, (sy_call_t *)linux_add_key, AUE_NULL, NULL, 0, 0, 0 }, /* 286 = linux_add_key */ + { 0, (sy_call_t *)linux_request_key, AUE_NULL, NULL, 0, 0, 0 }, /* 287 = linux_request_key */ + { 0, (sy_call_t *)linux_keyctl, AUE_NULL, NULL, 0, 0, 0 }, /* 288 = linux_keyctl */ + { 0, (sy_call_t *)linux_ioprio_set, AUE_NULL, NULL, 0, 0, 0 }, /* 289 = linux_ioprio_set */ + { 0, (sy_call_t *)linux_ioprio_get, AUE_NULL, NULL, 0, 0, 0 }, /* 290 = linux_ioprio_get */ + { 0, (sy_call_t *)linux_inotify_init, AUE_NULL, NULL, 0, 0, 0 }, /* 291 = linux_inotify_init */ + { 0, (sy_call_t *)linux_inotify_add_watch, AUE_NULL, NULL, 0, 0, 0 }, /* 292 = linux_inotify_add_watch */ + { 0, (sy_call_t *)linux_inotify_rm_watch, AUE_NULL, NULL, 0, 0, 0 }, /* 293 = linux_inotify_rm_watch */ + { 0, (sy_call_t *)linux_migrate_pages, AUE_NULL, NULL, 0, 0, 0 }, /* 294 = linux_migrate_pages */ + { AS(linux_openat_args), (sy_call_t *)linux_openat, AUE_OPEN_RWTC, NULL, 0, 0, 0 }, /* 295 = linux_openat */ + { AS(linux_mkdirat_args), (sy_call_t *)linux_mkdirat, AUE_MKDIRAT, NULL, 0, 0, 0 }, /* 296 = linux_mkdirat */ + { AS(linux_mknodat_args), (sy_call_t *)linux_mknodat, AUE_MKNODAT, NULL, 0, 0, 0 }, /* 297 = linux_mknodat */ + { AS(linux_fchownat_args), (sy_call_t *)linux_fchownat, AUE_FCHOWNAT, NULL, 0, 0, 0 }, /* 298 = linux_fchownat */ + { AS(linux_futimesat_args), (sy_call_t *)linux_futimesat, AUE_FUTIMESAT, NULL, 0, 0, 0 }, /* 299 = linux_futimesat */ + { AS(linux_fstatat64_args), (sy_call_t *)linux_fstatat64, AUE_FSTATAT, NULL, 0, 0, 0 }, /* 300 = linux_fstatat64 */ + { AS(linux_unlinkat_args), (sy_call_t *)linux_unlinkat, AUE_UNLINKAT, NULL, 0, 0, 0 }, /* 301 = linux_unlinkat */ + { AS(linux_renameat_args), (sy_call_t *)linux_renameat, AUE_RENAMEAT, NULL, 0, 0, 0 }, /* 302 = linux_renameat */ + { AS(linux_linkat_args), (sy_call_t *)linux_linkat, AUE_LINKAT, NULL, 0, 0, 0 }, /* 303 = linux_linkat */ + { AS(linux_symlinkat_args), (sy_call_t *)linux_symlinkat, AUE_SYMLINKAT, NULL, 0, 0, 0 }, /* 304 = linux_symlinkat */ + { AS(linux_readlinkat_args), (sy_call_t *)linux_readlinkat, AUE_READLINKAT, NULL, 0, 0, 0 }, /* 305 = linux_readlinkat */ + { AS(linux_fchmodat_args), (sy_call_t *)linux_fchmodat, AUE_FCHMODAT, NULL, 0, 0, 0 }, /* 306 = linux_fchmodat */ + { AS(linux_faccessat_args), (sy_call_t *)linux_faccessat, AUE_FACCESSAT, NULL, 0, 0, 0 }, /* 307 = linux_faccessat */ + { 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0, 0 }, /* 308 = linux_pselect6 */ + { 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0, 0 }, /* 309 = linux_ppoll */ + { 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0, 0 }, /* 310 = linux_unshare */ + { AS(linux_set_robust_list_args), (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0, 0 }, /* 311 = linux_set_robust_list */ + { AS(linux_get_robust_list_args), (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0, 0 }, /* 312 = linux_get_robust_list */ + { 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0, 0 }, /* 313 = linux_splice */ + { 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0, 0 }, /* 314 = linux_sync_file_range */ + { 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0, 0 }, /* 315 = linux_tee */ + { 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0, 0 }, /* 316 = linux_vmsplice */ }; ==== //depot/projects/usb/src/sys/boot/i386/libi386/biosdisk.c#10 (text+ko) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/boot/i386/libi386/biosdisk.c,v 1.59 2009/04/14 14:19:18 jhb Exp $"); +__FBSDID("$FreeBSD: src/sys/boot/i386/libi386/biosdisk.c,v 1.60 2009/06/01 14:20:13 jhb Exp $"); /* * BIOS disk device handling. @@ -387,6 +387,7 @@ sprintf(line, "%s: FreeBSD swap%s\n", prefix, stats); else sprintf(line, "%s: %08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x%s\n", + prefix, gp->gp_type.time_low, gp->gp_type.time_mid, gp->gp_type.time_hi_and_version, gp->gp_type.clock_seq_hi_and_reserved, gp->gp_type.clock_seq_low, ==== //depot/projects/usb/src/sys/compat/freebsd32/freebsd32_sysent.c#15 (text+ko) ==== @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * $FreeBSD: src/sys/compat/freebsd32/freebsd32_sysent.c,v 1.100 2009/04/29 21:50:13 jamie Exp $ + * $FreeBSD: src/sys/compat/freebsd32/freebsd32_sysent.c,v 1.101 2009/06/01 16:14:38 rwatson Exp $ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 191673 2009-04-29 21:14:15Z jamie */ @@ -38,513 +38,513 @@ /* The casts are bogus but will do for now. */ struct sysent freebsd32_sysent[] = { - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 0 = syscall */ - { AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT, NULL, 0, 0 }, /* 1 = exit */ - { 0, (sy_call_t *)fork, AUE_FORK, NULL, 0, 0 }, /* 2 = fork */ - { AS(read_args), (sy_call_t *)read, AUE_READ, NULL, 0, 0 }, /* 3 = read */ - { AS(write_args), (sy_call_t *)write, AUE_WRITE, NULL, 0, 0 }, /* 4 = write */ - { AS(open_args), (sy_call_t *)open, AUE_OPEN_RWTC, NULL, 0, 0 }, /* 5 = open */ - { AS(close_args), (sy_call_t *)close, AUE_CLOSE, NULL, 0, 0 }, /* 6 = close */ - { AS(freebsd32_wait4_args), (sy_call_t *)freebsd32_wait4, AUE_WAIT4, NULL, 0, 0 }, /* 7 = freebsd32_wait4 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 8 = obsolete old creat */ - { AS(link_args), (sy_call_t *)link, AUE_LINK, NULL, 0, 0 }, /* 9 = link */ - { AS(unlink_args), (sy_call_t *)unlink, AUE_UNLINK, NULL, 0, 0 }, /* 10 = unlink */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 11 = obsolete execv */ - { AS(chdir_args), (sy_call_t *)chdir, AUE_CHDIR, NULL, 0, 0 }, /* 12 = chdir */ - { AS(fchdir_args), (sy_call_t *)fchdir, AUE_FCHDIR, NULL, 0, 0 }, /* 13 = fchdir */ - { AS(mknod_args), (sy_call_t *)mknod, AUE_MKNOD, NULL, 0, 0 }, /* 14 = mknod */ - { AS(chmod_args), (sy_call_t *)chmod, AUE_CHMOD, NULL, 0, 0 }, /* 15 = chmod */ - { AS(chown_args), (sy_call_t *)chown, AUE_CHOWN, NULL, 0, 0 }, /* 16 = chown */ - { AS(obreak_args), (sy_call_t *)obreak, AUE_NULL, NULL, 0, 0 }, /* 17 = break */ - { compat4(AS(freebsd4_freebsd32_getfsstat_args),freebsd32_getfsstat), AUE_GETFSSTAT, NULL, 0, 0 }, /* 18 = old freebsd32_getfsstat */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 19 = obsolete olseek */ - { 0, (sy_call_t *)getpid, AUE_GETPID, NULL, 0, 0 }, /* 20 = getpid */ - { AS(mount_args), (sy_call_t *)mount, AUE_MOUNT, NULL, 0, 0 }, /* 21 = mount */ - { AS(unmount_args), (sy_call_t *)unmount, AUE_UMOUNT, NULL, 0, 0 }, /* 22 = unmount */ - { AS(setuid_args), (sy_call_t *)setuid, AUE_SETUID, NULL, 0, 0 }, /* 23 = setuid */ - { 0, (sy_call_t *)getuid, AUE_GETUID, NULL, 0, 0 }, /* 24 = getuid */ - { 0, (sy_call_t *)geteuid, AUE_GETEUID, NULL, 0, 0 }, /* 25 = geteuid */ - { AS(ptrace_args), (sy_call_t *)ptrace, AUE_PTRACE, NULL, 0, 0 }, /* 26 = ptrace */ - { AS(freebsd32_recvmsg_args), (sy_call_t *)freebsd32_recvmsg, AUE_RECVMSG, NULL, 0, 0 }, /* 27 = freebsd32_recvmsg */ - { AS(freebsd32_sendmsg_args), (sy_call_t *)freebsd32_sendmsg, AUE_SENDMSG, NULL, 0, 0 }, /* 28 = freebsd32_sendmsg */ - { AS(freebsd32_recvfrom_args), (sy_call_t *)freebsd32_recvfrom, AUE_RECVFROM, NULL, 0, 0 }, /* 29 = freebsd32_recvfrom */ - { AS(accept_args), (sy_call_t *)accept, AUE_ACCEPT, NULL, 0, 0 }, /* 30 = accept */ - { AS(getpeername_args), (sy_call_t *)getpeername, AUE_GETPEERNAME, NULL, 0, 0 }, /* 31 = getpeername */ - { AS(getsockname_args), (sy_call_t *)getsockname, AUE_GETSOCKNAME, NULL, 0, 0 }, /* 32 = getsockname */ - { AS(access_args), (sy_call_t *)access, AUE_ACCESS, NULL, 0, 0 }, /* 33 = access */ - { AS(chflags_args), (sy_call_t *)chflags, AUE_CHFLAGS, NULL, 0, 0 }, /* 34 = chflags */ - { AS(fchflags_args), (sy_call_t *)fchflags, AUE_FCHFLAGS, NULL, 0, 0 }, /* 35 = fchflags */ - { 0, (sy_call_t *)sync, AUE_SYNC, NULL, 0, 0 }, /* 36 = sync */ - { AS(kill_args), (sy_call_t *)kill, AUE_KILL, NULL, 0, 0 }, /* 37 = kill */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 38 = ostat */ - { 0, (sy_call_t *)getppid, AUE_GETPPID, NULL, 0, 0 }, /* 39 = getppid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 40 = olstat */ - { AS(dup_args), (sy_call_t *)dup, AUE_DUP, NULL, 0, 0 }, /* 41 = dup */ - { 0, (sy_call_t *)pipe, AUE_PIPE, NULL, 0, 0 }, /* 42 = pipe */ - { 0, (sy_call_t *)getegid, AUE_GETEGID, NULL, 0, 0 }, /* 43 = getegid */ - { AS(profil_args), (sy_call_t *)profil, AUE_PROFILE, NULL, 0, 0 }, /* 44 = profil */ - { AS(ktrace_args), (sy_call_t *)ktrace, AUE_KTRACE, NULL, 0, 0 }, /* 45 = ktrace */ - { compat(AS(ofreebsd32_sigaction_args),freebsd32_sigaction), AUE_SIGACTION, NULL, 0, 0 }, /* 46 = old freebsd32_sigaction */ - { 0, (sy_call_t *)getgid, AUE_GETGID, NULL, 0, 0 }, /* 47 = getgid */ - { compat(AS(ofreebsd32_sigprocmask_args),freebsd32_sigprocmask), AUE_SIGPROCMASK, NULL, 0, 0 }, /* 48 = old freebsd32_sigprocmask */ - { AS(getlogin_args), (sy_call_t *)getlogin, AUE_GETLOGIN, NULL, 0, 0 }, /* 49 = getlogin */ - { AS(setlogin_args), (sy_call_t *)setlogin, AUE_SETLOGIN, NULL, 0, 0 }, /* 50 = setlogin */ - { AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0 }, /* 51 = acct */ - { compat(0,freebsd32_sigpending), AUE_SIGPENDING, NULL, 0, 0 }, /* 52 = old freebsd32_sigpending */ - { AS(freebsd32_sigaltstack_args), (sy_call_t *)freebsd32_sigaltstack, AUE_SIGALTSTACK, NULL, 0, 0 }, /* 53 = freebsd32_sigaltstack */ - { AS(freebsd32_ioctl_args), (sy_call_t *)freebsd32_ioctl, AUE_NULL, NULL, 0, 0 }, /* 54 = freebsd32_ioctl */ - { AS(reboot_args), (sy_call_t *)reboot, AUE_REBOOT, NULL, 0, 0 }, /* 55 = reboot */ - { AS(revoke_args), (sy_call_t *)revoke, AUE_REVOKE, NULL, 0, 0 }, /* 56 = revoke */ - { AS(symlink_args), (sy_call_t *)symlink, AUE_SYMLINK, NULL, 0, 0 }, /* 57 = symlink */ - { AS(readlink_args), (sy_call_t *)readlink, AUE_READLINK, NULL, 0, 0 }, /* 58 = readlink */ - { AS(freebsd32_execve_args), (sy_call_t *)freebsd32_execve, AUE_EXECVE, NULL, 0, 0 }, /* 59 = freebsd32_execve */ - { AS(umask_args), (sy_call_t *)umask, AUE_UMASK, NULL, 0, 0 }, /* 60 = umask */ - { AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT, NULL, 0, 0 }, /* 61 = chroot */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 62 = obsolete ofstat */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 63 = obsolete ogetkerninfo */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 64 = obsolete ogetpagesize */ - { AS(msync_args), (sy_call_t *)msync, AUE_MSYNC, NULL, 0, 0 }, /* 65 = msync */ - { 0, (sy_call_t *)vfork, AUE_VFORK, NULL, 0, 0 }, /* 66 = vfork */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 67 = obsolete vread */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 68 = obsolete vwrite */ - { AS(sbrk_args), (sy_call_t *)sbrk, AUE_SBRK, NULL, 0, 0 }, /* 69 = sbrk */ - { AS(sstk_args), (sy_call_t *)sstk, AUE_SSTK, NULL, 0, 0 }, /* 70 = sstk */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 71 = obsolete ommap */ - { AS(ovadvise_args), (sy_call_t *)ovadvise, AUE_O_VADVISE, NULL, 0, 0 }, /* 72 = vadvise */ - { AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP, NULL, 0, 0 }, /* 73 = munmap */ - { AS(mprotect_args), (sy_call_t *)mprotect, AUE_MPROTECT, NULL, 0, 0 }, /* 74 = mprotect */ - { AS(madvise_args), (sy_call_t *)madvise, AUE_MADVISE, NULL, 0, 0 }, /* 75 = madvise */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 76 = obsolete vhangup */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 77 = obsolete vlimit */ - { AS(mincore_args), (sy_call_t *)mincore, AUE_MINCORE, NULL, 0, 0 }, /* 78 = mincore */ - { AS(getgroups_args), (sy_call_t *)getgroups, AUE_GETGROUPS, NULL, 0, 0 }, /* 79 = getgroups */ - { AS(setgroups_args), (sy_call_t *)setgroups, AUE_SETGROUPS, NULL, 0, 0 }, /* 80 = setgroups */ - { 0, (sy_call_t *)getpgrp, AUE_GETPGRP, NULL, 0, 0 }, /* 81 = getpgrp */ - { AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP, NULL, 0, 0 }, /* 82 = setpgid */ - { AS(freebsd32_setitimer_args), (sy_call_t *)freebsd32_setitimer, AUE_SETITIMER, NULL, 0, 0 }, /* 83 = freebsd32_setitimer */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 84 = obsolete owait */ - { AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON, NULL, 0, 0 }, /* 85 = swapon */ - { AS(freebsd32_getitimer_args), (sy_call_t *)freebsd32_getitimer, AUE_GETITIMER, NULL, 0, 0 }, /* 86 = freebsd32_getitimer */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 87 = obsolete ogethostname */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 88 = obsolete osethostname */ - { 0, (sy_call_t *)getdtablesize, AUE_GETDTABLESIZE, NULL, 0, 0 }, /* 89 = getdtablesize */ - { AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2, NULL, 0, 0 }, /* 90 = dup2 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 91 = getdopt */ - { AS(fcntl_args), (sy_call_t *)fcntl, AUE_FCNTL, NULL, 0, 0 }, /* 92 = fcntl */ - { AS(freebsd32_select_args), (sy_call_t *)freebsd32_select, AUE_SELECT, NULL, 0, 0 }, /* 93 = freebsd32_select */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 94 = setdopt */ - { AS(fsync_args), (sy_call_t *)fsync, AUE_FSYNC, NULL, 0, 0 }, /* 95 = fsync */ - { AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY, NULL, 0, 0 }, /* 96 = setpriority */ - { AS(socket_args), (sy_call_t *)socket, AUE_SOCKET, NULL, 0, 0 }, /* 97 = socket */ - { AS(connect_args), (sy_call_t *)connect, AUE_CONNECT, NULL, 0, 0 }, /* 98 = connect */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 99 = obsolete oaccept */ - { AS(getpriority_args), (sy_call_t *)getpriority, AUE_GETPRIORITY, NULL, 0, 0 }, /* 100 = getpriority */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 101 = obsolete osend */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 102 = obsolete orecv */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 103 = obsolete osigreturn */ - { AS(bind_args), (sy_call_t *)bind, AUE_BIND, NULL, 0, 0 }, /* 104 = bind */ - { AS(setsockopt_args), (sy_call_t *)setsockopt, AUE_SETSOCKOPT, NULL, 0, 0 }, /* 105 = setsockopt */ - { AS(listen_args), (sy_call_t *)listen, AUE_LISTEN, NULL, 0, 0 }, /* 106 = listen */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 107 = obsolete vtimes */ - { compat(AS(ofreebsd32_sigvec_args),freebsd32_sigvec), AUE_O_SIGVEC, NULL, 0, 0 }, /* 108 = old freebsd32_sigvec */ - { compat(AS(ofreebsd32_sigblock_args),freebsd32_sigblock), AUE_O_SIGBLOCK, NULL, 0, 0 }, /* 109 = old freebsd32_sigblock */ - { compat(AS(ofreebsd32_sigsetmask_args),freebsd32_sigsetmask), AUE_O_SIGSETMASK, NULL, 0, 0 }, /* 110 = old freebsd32_sigsetmask */ - { compat(AS(ofreebsd32_sigsuspend_args),freebsd32_sigsuspend), AUE_SIGSUSPEND, NULL, 0, 0 }, /* 111 = old freebsd32_sigsuspend */ - { compat(AS(ofreebsd32_sigstack_args),freebsd32_sigstack), AUE_O_SIGSTACK, NULL, 0, 0 }, /* 112 = old freebsd32_sigstack */ >>> TRUNCATED FOR MAIL (1000 lines) <<< From thompsa at FreeBSD.org Tue Jun 2 19:47:45 2009 From: thompsa at FreeBSD.org (Andrew Thompson) Date: Tue Jun 2 19:47:52 2009 Subject: PERFORCE change 163370 for review Message-ID: <200906021947.n52Jlhc2093505@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163370 Change 163370 by thompsa@thompsa_burger on 2009/06/02 19:47:34 IFC after updating branchspec for libusb and usbconfig Affected files ... .. //depot/projects/usb/src/lib/libusb/libusb.3#13 integrate .. //depot/projects/usb/src/lib/libusb/libusb20.c#4 integrate .. //depot/projects/usb/src/lib/libusb/libusb20.h#4 integrate .. //depot/projects/usb/src/lib/libusb/libusb20_int.h#3 integrate .. //depot/projects/usb/src/lib/libusb/libusb20_ugen20.c#3 integrate .. //depot/projects/usb/src/lib/libusbhid/descr.c#8 integrate .. //depot/projects/usb/src/sys/cddl/compat/opensolaris/sys/acl.h#4 branch .. //depot/projects/usb/src/sys/dev/usb/README.TXT#3 delete .. //depot/projects/usb/src/sys/powerpc/powerpc/uio_machdep.c#5 branch .. //depot/projects/usb/src/usr.sbin/usbconfig/Makefile#5 integrate .. //depot/projects/usb/src/usr.sbin/usbconfig/dump.c#12 integrate .. //depot/projects/usb/src/usr.sbin/usbconfig/dump.h#7 integrate .. //depot/projects/usb/src/usr.sbin/usbconfig/usbconfig.8#5 integrate .. //depot/projects/usb/src/usr.sbin/usbconfig/usbconfig.c#15 integrate Differences ... ==== //depot/projects/usb/src/lib/libusb/libusb.3#13 (text+ko) ==== @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD: src/lib/libusb/libusb.3,v 1.2 2009/04/05 18:30:24 thompsa Exp $ +.\" $FreeBSD: src/lib/libusb/libusb.3,v 1.5 2009/06/02 17:27:51 thompsa Exp $ .\" .Dd May 28, 2009 .Dt LIBUSB 3 @@ -111,7 +111,7 @@ .Ft const char * .Fn libusb20_dev_get_backend_name "struct libusb20_device *" .Ft int -.Fn libusb20_dev_get_info "struct libusb20_device *pdev" "struct usb2_device_info *pinfo" +.Fn libusb20_dev_get_info "struct libusb20_device *pdev" "struct usb_device_info *pinfo" .Ft int .Fn libusb20_dev_get_iface_desc "struct libusb20_device *pdev" "uint8_t iface_index" "char *buf" "uint8_t len" .Ft const char * @@ -489,7 +489,7 @@ .Pp . .Fn libusb20_dev_get_info -retrives the BSD specific usb2_device_info structure into the memory location given by +retrives the BSD specific usb_device_info structure into the memory location given by .Fa pinfo . The USB device given by .Fa pdev ==== //depot/projects/usb/src/lib/libusb/libusb20.c#4 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20.c,v 1.1 2009/03/09 17:09:46 thompsa Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20.c,v 1.3 2009/06/02 17:27:51 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -931,7 +931,7 @@ int libusb20_dev_get_info(struct libusb20_device *pdev, - struct usb2_device_info *pinfo) + struct usb_device_info *pinfo) { if (pinfo == NULL) return (LIBUSB20_ERROR_INVALID_PARAM); ==== //depot/projects/usb/src/lib/libusb/libusb20.h#4 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20.h,v 1.2 2009/03/17 21:20:39 delphij Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20.h,v 1.4 2009/06/02 17:27:51 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * Copyright (c) 2007-2008 Daniel Drake. All rights reserved. @@ -175,7 +175,7 @@ LIBUSB20_POWER_RESUME, }; -struct usb2_device_info; +struct usb_device_info; struct libusb20_transfer; struct libusb20_backend; struct libusb20_backend_methods; @@ -254,7 +254,7 @@ int libusb20_dev_set_power_mode(struct libusb20_device *pdev, uint8_t power_mode); uint8_t libusb20_dev_get_power_mode(struct libusb20_device *pdev); int libusb20_dev_set_alt_index(struct libusb20_device *pdev, uint8_t iface_index, uint8_t alt_index); -int libusb20_dev_get_info(struct libusb20_device *pdev, struct usb2_device_info *pinfo); +int libusb20_dev_get_info(struct libusb20_device *pdev, struct usb_device_info *pinfo); int libusb20_dev_get_iface_desc(struct libusb20_device *pdev, uint8_t iface_index, char *buf, uint8_t len); struct LIBUSB20_DEVICE_DESC_DECODED *libusb20_dev_get_device_desc(struct libusb20_device *pdev); ==== //depot/projects/usb/src/lib/libusb/libusb20_int.h#3 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20_int.h,v 1.1 2009/03/09 17:09:46 thompsa Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20_int.h,v 1.2 2009/05/28 17:36:36 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -49,7 +49,7 @@ typedef int (libusb20_root_add_dev_quirk_t)(struct libusb20_backend *pbe, struct libusb20_quirk *pq); typedef int (libusb20_root_remove_dev_quirk_t)(struct libusb20_backend *pbe, struct libusb20_quirk *pq); typedef int (libusb20_close_device_t)(struct libusb20_device *pdev); -typedef int (libusb20_dev_get_info_t)(struct libusb20_device *pdev, struct usb2_device_info *pinfo); +typedef int (libusb20_dev_get_info_t)(struct libusb20_device *pdev, struct usb_device_info *pinfo); typedef int (libusb20_dev_get_iface_desc_t)(struct libusb20_device *pdev, uint8_t iface_index, char *buf, uint8_t len); typedef int (libusb20_init_backend_t)(struct libusb20_backend *pbe); typedef int (libusb20_open_device_t)(struct libusb20_device *pdev, uint16_t transfer_count_max); ==== //depot/projects/usb/src/lib/libusb/libusb20_ugen20.c#3 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20_ugen20.c,v 1.1 2009/03/09 17:09:46 thompsa Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20_ugen20.c,v 1.2 2009/05/28 17:36:36 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -126,8 +126,8 @@ ugen20_enumerate(struct libusb20_device *pdev, const char *id) { const char *tmp = id; - struct usb2_device_descriptor ddesc; - struct usb2_device_info devinfo; + struct usb_device_descriptor ddesc; + struct usb_device_info devinfo; uint32_t plugtime; char buf[64]; int f; @@ -213,7 +213,7 @@ } struct ugen20_urd_state { - struct usb2_read_dir urd; + struct usb_read_dir urd; uint32_t nparsed; int f; uint8_t *ptr; @@ -298,7 +298,7 @@ static void ugen20_tr_release(struct libusb20_device *pdev) { - struct usb2_fs_uninit fs_uninit; + struct usb_fs_uninit fs_uninit; if (pdev->nTransfer == 0) { return; @@ -316,8 +316,8 @@ static int ugen20_tr_renew(struct libusb20_device *pdev) { - struct usb2_fs_init fs_init; - struct usb2_fs_endpoint *pfse; + struct usb_fs_init fs_init; + struct usb_fs_endpoint *pfse; int error; uint32_t size; uint16_t nMaxTransfer; @@ -419,7 +419,7 @@ static int ugen20_close_device(struct libusb20_device *pdev) { - struct usb2_fs_uninit fs_uninit; + struct usb_fs_uninit fs_uninit; if (pdev->privBeData) { memset(&fs_uninit, 0, sizeof(fs_uninit)); @@ -447,8 +447,8 @@ ugen20_get_config_desc_full(struct libusb20_device *pdev, uint8_t **ppbuf, uint16_t *plen, uint8_t cfg_index) { - struct usb2_gen_descriptor gen_desc; - struct usb2_config_descriptor cdesc; + struct usb_gen_descriptor gen_desc; + struct usb_config_descriptor cdesc; uint8_t *ptr; uint16_t len; int error; @@ -542,7 +542,7 @@ ugen20_set_alt_index(struct libusb20_device *pdev, uint8_t iface_index, uint8_t alt_index) { - struct usb2_alt_interface alt_iface; + struct usb_alt_interface alt_iface; memset(&alt_iface, 0, sizeof(alt_iface)); @@ -663,7 +663,7 @@ struct LIBUSB20_CONTROL_SETUP_DECODED *setup, void *data, uint16_t *pactlen, uint32_t timeout, uint8_t flags) { - struct usb2_ctl_request req; + struct usb_ctl_request req; memset(&req, 0, sizeof(req)); @@ -688,8 +688,8 @@ static int ugen20_process(struct libusb20_device *pdev) { - struct usb2_fs_complete temp; - struct usb2_fs_endpoint *fsep; + struct usb_fs_complete temp; + struct usb_fs_endpoint *fsep; struct libusb20_transfer *xfer; while (1) { @@ -739,8 +739,8 @@ ugen20_tr_open(struct libusb20_transfer *xfer, uint32_t MaxBufSize, uint32_t MaxFrameCount, uint8_t ep_no) { - struct usb2_fs_open temp; - struct usb2_fs_endpoint *fsep; + struct usb_fs_open temp; + struct usb_fs_endpoint *fsep; memset(&temp, 0, sizeof(temp)); @@ -772,7 +772,7 @@ static int ugen20_tr_close(struct libusb20_transfer *xfer) { - struct usb2_fs_close temp; + struct usb_fs_close temp; memset(&temp, 0, sizeof(temp)); @@ -787,7 +787,7 @@ static int ugen20_tr_clear_stall_sync(struct libusb20_transfer *xfer) { - struct usb2_fs_clear_stall_sync temp; + struct usb_fs_clear_stall_sync temp; memset(&temp, 0, sizeof(temp)); @@ -804,8 +804,8 @@ static void ugen20_tr_submit(struct libusb20_transfer *xfer) { - struct usb2_fs_start temp; - struct usb2_fs_endpoint *fsep; + struct usb_fs_start temp; + struct usb_fs_endpoint *fsep; memset(&temp, 0, sizeof(temp)); @@ -839,7 +839,7 @@ static void ugen20_tr_cancel_async(struct libusb20_transfer *xfer) { - struct usb2_fs_stop temp; + struct usb_fs_stop temp; memset(&temp, 0, sizeof(temp)); @@ -876,7 +876,7 @@ ugen20_dev_get_iface_desc(struct libusb20_device *pdev, uint8_t iface_index, char *buf, uint8_t len) { - struct usb2_gen_descriptor ugd; + struct usb_gen_descriptor ugd; memset(&ugd, 0, sizeof(ugd)); @@ -892,7 +892,7 @@ static int ugen20_dev_get_info(struct libusb20_device *pdev, - struct usb2_device_info *pinfo) + struct usb_device_info *pinfo) { if (ioctl(pdev->file, USB_GET_DEVICEINFO, pinfo)) { return (LIBUSB20_ERROR_INVALID_PARAM); @@ -904,7 +904,7 @@ ugen20_root_get_dev_quirk(struct libusb20_backend *pbe, uint16_t quirk_index, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); @@ -931,7 +931,7 @@ ugen20_root_get_quirk_name(struct libusb20_backend *pbe, uint16_t quirk_index, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); @@ -954,7 +954,7 @@ ugen20_root_add_dev_quirk(struct libusb20_backend *pbe, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); @@ -978,7 +978,7 @@ ugen20_root_remove_dev_quirk(struct libusb20_backend *pbe, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); ==== //depot/projects/usb/src/lib/libusbhid/descr.c#8 (text+ko) ==== @@ -27,7 +27,7 @@ */ #include -__FBSDID("$FreeBSD: src/lib/libusbhid/descr.c,v 1.11 2009/02/27 15:30:42 thompsa Exp $"); +__FBSDID("$FreeBSD: src/lib/libusbhid/descr.c,v 1.12 2009/05/28 20:21:01 thompsa Exp $"); #include @@ -76,7 +76,7 @@ report_desc_t hid_get_report_desc(int fd) { - struct usb2_gen_descriptor ugd; + struct usb_gen_descriptor ugd; report_desc_t rep; void *data; ==== //depot/projects/usb/src/usr.sbin/usbconfig/Makefile#5 (text+ko) ==== @@ -1,5 +1,5 @@ # -# $FreeBSD: head/usr.sbin/usbconfig/Makefile 189585 2009-03-09 17:05:31Z thompsa $ +# $FreeBSD: src/usr.sbin/usbconfig/Makefile,v 1.2 2009/03/09 17:05:31 thompsa Exp $ # PROG= usbconfig MAN= usbconfig.8 ==== //depot/projects/usb/src/usr.sbin/usbconfig/dump.c#12 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: head/usr.sbin/usbconfig/dump.c 189110 2009-02-27 17:27:16Z thompsa $ */ +/* $FreeBSD: src/usr.sbin/usbconfig/dump.c,v 1.4 2009/02/27 17:27:16 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * ==== //depot/projects/usb/src/usr.sbin/usbconfig/dump.h#7 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: head/usr.sbin/usbconfig/dump.h 189110 2009-02-27 17:27:16Z thompsa $ */ +/* $FreeBSD: src/usr.sbin/usbconfig/dump.h,v 1.3 2009/02/27 17:27:16 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * ==== //depot/projects/usb/src/usr.sbin/usbconfig/usbconfig.8#5 (text+ko) ==== @@ -1,4 +1,4 @@ -.\" $FreeBSD: head/usr.sbin/usbconfig/usbconfig.8 184610 2008-11-04 02:31:03Z alfred $ +.\" $FreeBSD: src/usr.sbin/usbconfig/usbconfig.8,v 1.2 2009/05/27 19:21:29 thompsa Exp $ .\" .\" Copyright (c) 2008 Hans Petter Selasky. All rights reserved. .\" ==== //depot/projects/usb/src/usr.sbin/usbconfig/usbconfig.c#15 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: head/usr.sbin/usbconfig/usbconfig.c 189110 2009-02-27 17:27:16Z thompsa $ */ +/* $FreeBSD: src/usr.sbin/usbconfig/usbconfig.c,v 1.8 2009/03/17 21:21:33 delphij Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -501,7 +501,6 @@ { struct libusb20_backend *pbe; struct options *opt = &options; - char *cp; int n; int t; From mav at FreeBSD.org Tue Jun 2 20:56:56 2009 From: mav at FreeBSD.org (Alexander Motin) Date: Tue Jun 2 20:57:37 2009 Subject: PERFORCE change 163376 for review Message-ID: <200906022056.n52Kus3j011649@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163376 Change 163376 by mav@mav_mavbook on 2009/06/02 20:56:08 Report absent drive via CAM_SEL_TIMEOUT error on any command, same as SCSI. ATA unable to determine that error type so fast, so use scan info for this. Affected files ... .. //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#11 edit Differences ... ==== //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#11 (text+ko) ==== @@ -1668,6 +1668,12 @@ /* Common cases first */ case XPT_ATA_IO: /* Execute the requested I/O operation */ case XPT_SCSI_IO: + if ((((ATA_ATA_MASTER | ATA_ATAPI_MASTER) << + ccb->ccb_h.target_id) & ch->devices) == 0) { + ccb->ccb_h.status = CAM_SEL_TIMEOUT; + xpt_done(ccb); + break; + } ahci_begin_transaction(ch->dev, ccb); break; case XPT_EN_LUN: /* Enable LUN as a target */ @@ -1744,10 +1750,6 @@ { struct ccb_pathinq *cpi = &ccb->cpi; - if (ccb->ccb_h.target_id == CAM_TARGET_WILDCARD || - (((ATA_ATA_MASTER | ATA_ATAPI_MASTER) << - ccb->ccb_h.target_id) & ch->devices)) { - cpi->version_num = 1; /* XXX??? */ cpi->hba_inquiry = PI_SDTR_ABLE | PI_TAG_ABLE; cpi->target_sprt = 0; @@ -1764,15 +1766,12 @@ cpi->unit_number = cam_sim_unit(sim); cpi->transport = XPORT_ATA; cpi->transport_version = 2; - if ((ATA_ATA_MASTER << ccb->ccb_h.target_id) & ch->devices) + if ((ATA_ATAPI_MASTER << ccb->ccb_h.target_id) & ch->devices) + cpi->protocol = PROTO_SCSI; + else cpi->protocol = PROTO_ATA; - else - cpi->protocol = PROTO_SCSI; cpi->protocol_version = SCSI_REV_2; cpi->ccb_h.status = CAM_REQ_CMP; - } else { - ccb->ccb_h.status = CAM_REQ_INVALID; - } xpt_done(ccb); break; } From rene at FreeBSD.org Tue Jun 2 21:28:29 2009 From: rene at FreeBSD.org (Rene Ladan) Date: Tue Jun 2 21:28:37 2009 Subject: PERFORCE change 163381 for review Message-ID: <200906022128.n52LSR2l016501@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163381 Change 163381 by rene@rene_self on 2009/06/02 21:28:26 [website] translate publish.sgml up to at least 29% Affected files ... .. //depot/projects/docproj_nl/www/nl/publish.sgml#4 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/publish.sgml#4 (text+ko) ==== @@ -3,6 +3,10 @@ ]> + &header; @@ -33,7 +37,7 @@ href="&enbase;/doc/nl_NL.ISO8859-1/handbook/bibliography.html">bibliografie.

        - Klik op een afbeelden om een grotere versie te zien. + Klik op een afbeelding om een grotere versie te zien.

        @@ -42,8 +46,8 @@ - + - + @@ -68,163 +72,147 @@ - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - + - + - + Internet-servers bouwen met &os; (in het Indonesisch), + uitgegeven door Elex Media + Komputindo, 2000. - - + + - - + + - - + + - + + Engelse versie: 2000, Addison Wesley. ISBN 0-201-70481-1
        + Japanse versie: 2001, Pearson Education Japan. ISBN 4-89471-464-7 - + + The Bit Tree Press. ISBN 0-9712045-1-9 - + - + - + - + + src="&enbase;/gifs/cahiers_adm_cov.jpg" width="187" height="215" + alt="Les cahiers de l'Admin BSD boekomslag"> @@ -331,13 +318,12 @@ suite, ALTQ, spamd, address translation, and more for &os;, NetBSD, OpenBSD, and DragonFly. August 2006, Reed Media Services. - ISBN 978-0-9790342-0-6. - + ISBN 978-0-9790342-0-6. - @@ -345,25 +331,23 @@ &os; to its fullest potential. Jun 7, 2006, - Sams. ISBN 0-672-32875-5 - + Sams. ISBN 0-672-32875-5 + href="http://www.twbsd.org/cht/book/">Drmaster. ISBN 9-575-27878-X @@ -379,7 +363,7 @@ @@ -389,7 +373,7 @@ @@ -398,8 +382,7 @@ tutorials covering a wide range of &os; and open source Unix topics. December 2007. Reed Media Services. - ISBN 978-0-9790342-2-0. - + ISBN 978-0-9790342-2-0.
        boekomslagboekomslag Een publicatie van Tatsumi Hosokawa en anderen. Onder de computerboeken is het een top-seller in Japan en het overtrof de @@ -52,8 +56,8 @@
        boekomslagboekomslag (Japans boek over &os; met 2.0.5, getiteld "&os;: Plezierige en eenvoudige installatie")
        boekomslagboekomslag Dit is "The Complete &os;" van BSDi met installatiegids, handleidingspagina's en ingesloten CD's.
        book coverboekomslagThis book was published (early 1997) in Taiwan. Its title - is "&os;: introduction and applications" and the author is - Jian-Da Li (aka. jdli).Dit boek werd in Taiwan (begin 1997) gepubliceerd. De titel is + "&os;: introductie en applicaties" en de auteur is Jian-Da Li + (ook bekend als jdli).
        book coverboekomslagThis is the "Getting Started with &os;" from Fuki-Shuppan. - Other than the standard installation guide and Japanese environment, - it emphasizes system administration and low-level information (such - as the boot process, etc.) &os;-2.2.2R and XFree86-3.2 on CDROM. - 264 pages, 3,400 yen.Dit is "Aan de slag met &os;" door Fuki-Shuppan. Anders dan de + standaard installatiegids en Japanse omgeving legt het de nadruk op + systeembeheer en low-level informatie (zoals het opstartproces). + &os;-2.2.2R en XFree86-3.2 op CD-ROM. 264 pagina's, 3.400 yen.
        book coverboekomslagThe "Personal Unix Starter Kit - &os;" from ASCII. Includes - history of &unix;, a guide to build a Japanese documentation - processing system and how to create ports. 2.1.7.1R and XFree86-3.2 - in CDROM. 384 pages, 3,000 yen.Het "Persoonlijk Unix beginpakket - &os;" van ASCII. Bevat een + geschiedenis van &unix, een gids om een Japans systeem voor + documentverwerking te bouwen en om ports te creëren. 2.1.7.1R + en XFree86-3.2 op CD-ROM. 384 pagina's, 3.000 yen.
        book coverboekomslagBSD mit Methode, M. Schulze, B. Roehrig, M. Hoelzer und andere, - C&L Computer und Literatur Verlag, 1998, 850 pages. 2 CDROMs, - &os; 2.2.6, NetBSD 1.2.1 and 1.3.2, OpenBSD 2.2 and 2.3. DM + BSD mit Methode, M. Schulze, B. Roehrig, M. Hoelzer en andere, + C&L Computer und Literatur Verlag, 1998, 850 pagina's. 2 + CD-ROMs, &os; 2.2.6, NetBSD 1.2.1 en 1.3.2, OpenBSD 2.2 en 2.3. DM 98,-.
        book coverboekomslagThis is the "&os; Install and utilization manual" from Mainichi - Communications. General introduction to &os; from installation - to utilization with troubleshooting under the supervision of the - user group in Japan. 2.2.7-RELEASE &os;(98)2.2.7-Rev01 PAO and - distfiles in CDROM. 472 pages, 3,600yen.Dit is het "Installatie- en gebruikershandboek voor &os;" van + Mainichi Communications. Algemene introductie tot &os; van + installatie to gebruik met probleemoplossing onder het toeziend oog + van de gebruikersgroep in Japan. 2.2.7-RELEASE &os;(98)2.2.7-Rev01 + PAO en distributiebestanden op CD-ROM. 472 pagina's, 3.600 yen.
        book coverboekomslagThe "&os; User's Reference Manual" from Mainichi - Communications, under the supervision of "jpman project", the manual - translation project by the user group in Japan. Japanese edition of - the section 1 of the &os; manual. 2.2.7-RELEASE - &os;(98)2.2.7-Rev01 and PAO in CDROM. 1,040 pages, 3,800yen.Het "Naslagwerk voor &os;-gebruikers" van Mainichi Communications, + onder het toezicht van het "jpman project", het + handleidingvertaalproject door de gebruikersgroep in Japan. Japanse + editie van sectie 1 van de &os;-handleiding. 2.2.7-RELEASE + &os;(98)2.2.7-Rev01 en PAO op CD-ROM. 1.040 pagina's, 3.800 yen.
        book coverboekomslagThe "&os; System Administrator's Manual" from Mainichi - Communications, under the supervision of "jpman project", the manual - translation project by the user group in Japan. Japanese edition of - the section 5 and 8 of the &os; manual. 756 pages, 3,300yen. - De "Handleiding voor &os;-systeembeheerders" van Mainichi + Communications, onder het toezicht van het "jpman project", het + handleidingvertaalproject door de gebruikersgroep in Japan. Japanse + editie van sectie 5 en 8 van de &os;-handleiding. 756 pagina's, + 3.300 yen.
        book coverboekomslagThis is "About &os;" from Youngjin.com. It is first &os; - book in Korea, and covers several topics from installation to - Korean environment. 3.5.1-RELEASE/PAO and 4.1-RELEASE in - 3 CDROMs. 788 pages, 26,000 won.Dit is "Over &os;" van Youngjin.com. Het is het eerste &os;-boek + in Korea, en behandelt verschillende onderwerpen van installatie + tot de Koreaanse omgeving. 3.5.1-RELEASE/PAO en 4.1-RELEASE op 3 + CD-ROMs. 788 pagina's, 26.000 won.
        book coverboekomslag - Onno W Purbo, Dodi Maryanto, Syahrial Hubbany, Widjil Widodo: + Onno W Purbo, Dodi Maryanto, Syahrial Hubbany, Widjil Widodo: - Building Internet Server with - &os; (in Indonesia Language), published - by Elex Media Komputindo, - 2000. -
        book cover - The &os; Handbook 1st Edition is a comprehensive &os; - Tutorial and reference. It covers installation, day-to-day use - of &os;, and much more. - - April 2000, BSDi. ISBN 1-57176-241-8 - boekomslagDe 1e editie van het &os; Handboek is een uitvoerige tutorial en + naslagwerk over &os;. Het behandelt de installatie en het alledaagse + gebruik van &os; en nog veel meer. April 2000, BSDi. ISBN + 1-57176-241-8
        book cover - The Complete &os; with CDs, 3rd Ed, &os; 4.2. - Everything you ever wanted to know about how to get - your computer up and running &os;. Includes 4 CDs - containing the &os; operating system! - - Released: November 2000 ISBN: 1-57176-246-9 - boekomslagThe Complete &os; met CD's, 3de 3ditie, &os; 4.2. Alles wat + u altijd al wilde weten over hoe uw computer &os; te laten draaien. + Bevat 4 CD's met het besturingssysteem &os;. Uigegeven: november + 2000, ISBN: 1-57176-246-9
        book cover - The &os; Handbook 2nd Edition is a comprehensive &os; - Tutorial and reference. It covers installation, day-to-day use - of &os;, and much more. - - November 2001, Wind River Systems. ISBN 1-57176-303-1 - boekomslagDe 2e editie van het &os; Handboek is een uitvoerige tutorial en + naslagwerk. Het behandelt de installatie en het dagelijkse gebruik + van &os; en nog veel meer. November 2001, Wind River Systems. + ISBN 1-57176-303-1
        book coverboekomslag - "The &os; Corporate Networker's Guide" Mittelstaedt, Ted. + "The &os; Corporate Networker's Guide" door Ted Mittelstaedt. Addison Wesley, 2000.
        - There are two printings: the first has disk 1 of &os; 4.2, the - second has disk 1 of &os; 4.4. 400 pages. The Japanese translation - was published in 2001.
        - The Networker's Guide covers integration of &os; into typical - corporate networks with special emphasis on interoperation with + Er zijn twee drukken: de eerste heeft disk 1 van &os; 4.2, de + tweede heeft disk 1 van &os; 4.4. 400 pagina's. De Japanse + vertaling werd gepubliceerd in 2001.
        + The Networker's Guide behandel de integratie van &os; in typische + bedrijfsnetwerken met speciale nadruk op de samenwerking met Windows 95/98/ME/NT/2K.
        - - English version: 2000, Addison Wesley. ISBN 0-201-70481-1
        - Japanese version: 2001, Pearson Education Japan. ISBN 4-89471-464-7 -
        book coverboekomslag "&os;, An Open-Source Operating System for Your Personal Computer", Annelise Anderson.
        An introduction to &os; for users new to both &os; and UNIX. @@ -232,12 +220,11 @@ you need to know about installation of the system and third-party software; getting sound, X Window, your network, and printing working; building your own kernel; and upgrading. Second Edition. December 2001, - The Bit Tree Press. ISBN 0-9712045-1-9 -
        Absolute BSD book coverAbsolute BSD boekomslag Absolute BSD. This book discusses management of &os;-based servers in high-performance enterprise environments. @@ -247,7 +234,7 @@
        &os; Open Documentation Library&os; Open Documentation Library Fultus presents &os; Open Documentation Library. This @@ -271,9 +258,9 @@
        - book cover + boekomslag "Building an Internet Server with &os; 6" is a step-by-step guide for helping new and experienced users to &os; install and configure the latest Internet server applications @@ -285,7 +272,7 @@
        book coverboekomslag Written by the professionals of EnderUNIX and Huseyin Yuce this book is the first Turkish &os; book. The book is @@ -310,8 +297,8 @@
        Les cahiers de l'Admin BSD book cover Les cahiers de l'Admin: BSD (the BSD sysadmin notebook), from Emmanuel Dreyfus, covers various &unix; administrative @@ -323,7 +310,7 @@
        The OpenBSD PF Packet Filter Book
        &os; 6 Unleashed
        The &os; 6.0 Book (Traditional Chinese &os; book with 6.0) December 2005, Drmaster. ISBN 9-575-27878-X -
        Utilizare, administrare, configurare
        The RadioBSD Crier: Issue 2007/01: Managing &os; and NetBSD Firewalls
        - The Best of &os; Basics by Dru Lavigne
        @@ -408,14 +391,14 @@

        CDROMs

        For more about recent releases go to &os; release information page. + href="&enbase;/releases/index.html">&os; release information page.

        - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
        CD coverCD-hoes This is InfoMagic's BSDisc, containing &os; 2.0 and NetBSD 1.0 on a single CD. This is the only example I have which had cover @@ -423,24 +406,24 @@
        CD coverCD-hoes This is the original 4.4 BSD Lite2 release from UC Berkeley, the core technology behind much of &os;.
        CD coverCD-hoes The first of Laser5's "BSD" series. Contains &os;-2.0.5R, NetBSD-1.0, XFree86-3.1.1 and &os;(98) kernel.
        CD coverCD-hoes The second of Laser5's "BSD" series. From this version, the CDs come in a standard jewel box. Contains &os;-2.1R, NetBSD-1.1, @@ -448,24 +431,24 @@
        CD coverCD-hoes This is the Laser5 Japanese edition of the &os; CDROM. It is a 4 CD set.
        CD coverCD-hoes This is the only &os; CD Pacific Hitech produced before merging their product line with that of Walnut Creek CDROM. PHT now also produces the &os;/J (Japanese) CD product.
        CD coverCD-hoes This is the cover disc from the Korean magazine. Note the creative cover art! The @@ -474,8 +457,8 @@
        CD coverCD-hoes This is it - the very first &os; CD published! Both the &os; Project and Walnut Creek CDROM were fairly young back then, @@ -485,8 +468,8 @@
        CD coverCD-hoes This was the second &os; CD published by Walnut Creek CDROM and also the very last on the 1.x branch (ref USL/Novell lawsuit and @@ -496,8 +479,8 @@
        CD coverCD-hoes This unusual CD is something of a collector's item now given that almost all existing examples were systematically tracked down and @@ -509,8 +492,8 @@
        CD coverCD-hoes This is the fixed-up version of the &os; 2.0 CD. Note that the color scheme has even been changed in the corrected version, @@ -519,38 +502,38 @@
        CD coverCD-hoes The &os; 2.0.5 release CD. This was the first CD to feature Tatsumi Hosokawa's daemon artwork.
        CD coverCD-hoes The &os; 2.1 release CD. This was the first CD release on the 2.1 branch (the last being 2.1.7).
        CD coverCD-hoes The &os; 2.1.5 release CD.
        CD coverCD-hoes The &os; 2.1.6 release CD.
        CD coverCD-hoes The Japanese version of 2.1.6. This was the first and last Japanese localized version published by WC, responsibility for that @@ -560,46 +543,46 @@
        CD coverCD-hoes The &os; 2.1.7 release CD. Also the last CD released on the 2.1.x branch. Done primarily as a security fixup for 2.1.6
        CD coverCD-hoes An early release SNAPshot of 2.2 (done before 2.2.1 was released).
        CD coverCD-hoes The &os; 2.2.1 release CD. This was the first CD on the 2.2 branch.
        CD coverCD-hoes The &os; 2.2.2 release CD.
        CD coverCD-hoes The &os; 3.0 snapshot CD.
        CD coverCD-hoes The &os; mailing list and newsgroup archives, turned into HTML and semi-indexed by thread. This product ran for 2 releases and @@ -609,27 +592,27 @@
        CD coverCD-hoes &os; Toolkit: Six disc set of resources to make your &os; experience more enriching.
        CD coverCD-hoes &os; Alpha 4.2 - The full version of the DEC Alpha 64-bit UNIX operating system.
        CD coverCD-hoes &os; 4.2: The full version of the PC 32-bit UNIX operating system.
        CD coverCD-hoes &os; 4.2 CD-ROM. Lehmanns CD-ROM Edition. January 2001, 4 CD-ROMs. Lehmanns Fachbuchhandlung. Germany. @@ -637,14 +620,14 @@
        CD coverCD-hoes &os; 4.3 RELEASE CDROM. April 2001, Wind River Systems. ISBN 1-57176-300-7.
        CD coverCD-hoes &os; Toolkit: Six disc set of resources to make your &os; experience more enriching. @@ -653,7 +636,7 @@
        CD coverCD-hoes &os; 4.4 CD-ROM. Lehmanns CD-ROM Edition. November 2001, 6 CD-ROMs in Jewelcase. @@ -663,14 +646,14 @@
        CD coverCD-hoes &os; 4.4 RELEASE CDROM. Wind River Systems. September 2001. ISBN 1-57176-304-X.
        CD coverCD-hoes &os; 4.5 RELEASE CDROM. February 2002, &os; Mall Inc. ISBN 1-57176-306-6. @@ -685,24 +668,24 @@ - + - + - + - + - + - - - + + + @@ -247,8 +246,8 @@ critical sections to synchronize access instead of a mutex. While malloc(9) is less frequently used in the network stack than uma(9), it is used for socket address data, so is on performance critical - paths for datagram operations. This has been committed and will - appear in 6.0-RELEASE. + paths for datagram operations. This has been committed and appeared + 6.0-RELEASE. @@ -266,11 +265,11 @@ cost of critical sections in the common case by avoiding expensive microcode operations on the CPU. By restoring this model, or a variation on it, critical sections can be made substantially - cheaper to enter. In particular, this change will lower the cost + cheaper to enter. In particular, this change lowers the cost of critical sections on UP such that it is approximately the same cost as a mutex, meaning that optimizations on SMP to use critical sections instead of mutexes will not harm UP performance. This - change has now been committed, and will appear in 6.0-RELEASE. + change has now been committed, and appeared in 6.0-RELEASE. @@ -296,26 +295,41 @@ - - - + + + global lock can be released during in-bound process, and appear + in 8.0-RELEASE./td> - - - + + + + + + + + + + +
        magazine coveromslag van tijdschrift Cover of Korean UNIX magazine, May 1997 issue. Also included &os; 2.2.1 with cover CDs.
        magazine coveromslag van tijdschrift UNIX User Magazine November 1996 issue. Also included &os; 2.1.5 on cover CD.
        magazine coveromslag van tijdschrift This is the "&os; Full Course" special in April 1997's Software Design (published by Gijutsu Hyoron Sha). There are 80 pages of @@ -711,9 +694,9 @@
        magazine coveromslag van tijdschrift Quality @@ -723,8 +706,8 @@
        magazine coveromslag van tijdschrift This is the "BSD magazine" published by ASCII corporation, the world's first publication specialized in BSD. From peter at FreeBSD.org Tue Jun 2 21:32:40 2009 From: peter at FreeBSD.org (Peter Wemm) Date: Tue Jun 2 21:32:50 2009 Subject: PERFORCE change 163382 for review Message-ID: <200906022132.n52LWVsq016841@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163382 Change 163382 by peter@peter_daintree on 2009/06/02 21:32:11 IFC @163377 Affected files ... .. //depot/projects/hammer/ObsoleteFiles.inc#67 integrate .. //depot/projects/hammer/UPDATING#132 integrate .. //depot/projects/hammer/bin/chflags/chflags.c#9 integrate .. //depot/projects/hammer/bin/cp/Makefile#2 integrate .. //depot/projects/hammer/bin/cp/utils.c#16 integrate .. //depot/projects/hammer/bin/ps/print.c#23 integrate .. //depot/projects/hammer/bin/rm/rm.c#15 integrate .. //depot/projects/hammer/bin/sh/alias.c#8 integrate .. //depot/projects/hammer/bin/sh/eval.c#19 integrate .. //depot/projects/hammer/bin/sh/eval.h#4 integrate .. //depot/projects/hammer/bin/sh/exec.c#11 integrate .. //depot/projects/hammer/bin/sh/histedit.c#7 integrate .. //depot/projects/hammer/bin/sh/main.c#7 integrate .. //depot/projects/hammer/bin/sh/memalloc.c#6 integrate .. //depot/projects/hammer/bin/sh/memalloc.h#4 integrate .. //depot/projects/hammer/bin/sh/miscbltin.c#11 integrate .. //depot/projects/hammer/bin/sh/mkinit.c#4 integrate .. //depot/projects/hammer/bin/sh/mksyntax.c#7 integrate .. //depot/projects/hammer/bin/sh/parser.c#15 integrate .. //depot/projects/hammer/bin/sh/sh.1#31 integrate .. //depot/projects/hammer/bin/sh/trap.c#8 integrate .. //depot/projects/hammer/bin/sh/var.c#15 integrate .. //depot/projects/hammer/bin/test/TEST.sh#3 integrate .. //depot/projects/hammer/bin/test/test.c#4 integrate .. //depot/projects/hammer/cddl/contrib/opensolaris/cmd/lockstat/lockstat.1#1 branch .. //depot/projects/hammer/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c#1 branch .. //depot/projects/hammer/cddl/contrib/opensolaris/cmd/lockstat/sym.c#1 branch .. //depot/projects/hammer/cddl/usr.sbin/Makefile#7 integrate .. //depot/projects/hammer/cddl/usr.sbin/lockstat/Makefile#1 branch .. //depot/projects/hammer/contrib/bind9/CHANGES#15 integrate .. //depot/projects/hammer/contrib/bind9/COPYRIGHT#8 integrate .. //depot/projects/hammer/contrib/bind9/FAQ#9 integrate .. //depot/projects/hammer/contrib/bind9/FAQ.xml#7 integrate .. //depot/projects/hammer/contrib/bind9/Makefile.in#5 integrate .. //depot/projects/hammer/contrib/bind9/NSEC3-NOTES#1 branch .. //depot/projects/hammer/contrib/bind9/README#10 integrate .. //depot/projects/hammer/contrib/bind9/README.idnkit#2 integrate .. //depot/projects/hammer/contrib/bind9/README.pkcs11#1 branch .. //depot/projects/hammer/contrib/bind9/acconfig.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/check-tool.c#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/check-tool.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkconf.8#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkconf.c#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkconf.docbook#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkconf.html#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkzone.8#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkzone.c#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkzone.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/check/named-checkzone.html#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/dig.1#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/dig.c#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/dig.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/dig.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/dighost.c#9 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/host.1#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/host.c#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/host.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/host.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/include/dig/dig.h#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/nslookup.1#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/nslookup.c#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/nslookup.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dig/nslookup.html#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html#1 branch .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keygen.8#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keygen.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keygen.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-keygen.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-signzone.8#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-signzone.c#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-signzone.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssec-signzone.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssectool.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/dnssec/dnssectool.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/bind9.xsl#1 branch .. //depot/projects/hammer/contrib/bind9/bin/named/bind9.xsl.h#1 branch .. //depot/projects/hammer/contrib/bind9/bin/named/builtin.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/client.c#11 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/config.c#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/control.c#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/controlconf.c#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/convertxsl.pl#1 branch .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/builtin.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/client.h#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/config.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/control.h#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/globals.h#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/interfacemgr.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/listenlist.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/log.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/logconf.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/lwaddr.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/lwdclient.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/lwresd.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/lwsearch.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/main.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/notify.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/ns_smf_globals.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/query.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/server.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/sortlist.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/statschannel.h#1 branch .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/tkeyconf.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/tsigconf.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/types.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/update.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/xfrout.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/include/named/zoneconf.h#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/interfacemgr.c#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/listenlist.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/log.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/logconf.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwaddr.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwdclient.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwderror.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwdgabn.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwdgnba.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwdgrbn.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwdnoop.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwresd.8#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwresd.c#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwresd.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwresd.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/lwsearch.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/main.c#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/named.8#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/named.conf.5#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/named.conf.docbook#9 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/named.conf.html#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/named.docbook#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/named.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/notify.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/query.c#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/server.c#11 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/sortlist.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/statschannel.c#1 branch .. //depot/projects/hammer/contrib/bind9/bin/named/tkeyconf.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/tsigconf.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/unix/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/unix/include/named/os.h#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/unix/os.c#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/update.c#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/xfrout.c#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/named/zoneconf.c#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/nsupdate/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/nsupdate/nsupdate.1#2 integrate .. //depot/projects/hammer/contrib/bind9/bin/nsupdate/nsupdate.c#8 integrate .. //depot/projects/hammer/contrib/bind9/bin/nsupdate/nsupdate.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/nsupdate/nsupdate.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/include/rndc/os.h#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc-confgen.8#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc-confgen.c#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc-confgen.docbook#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc-confgen.html#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.8#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.c#9 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.conf#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.conf.5#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.conf.docbook#5 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.conf.html#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.docbook#6 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/rndc.html#7 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/unix/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/unix/os.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/util.c#3 integrate .. //depot/projects/hammer/contrib/bind9/bin/rndc/util.h#3 integrate .. //depot/projects/hammer/contrib/bind9/config.guess#3 integrate .. //depot/projects/hammer/contrib/bind9/config.h.in#2 integrate .. //depot/projects/hammer/contrib/bind9/configure.in#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM-book.xml#11 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch01.html#8 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch02.html#8 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch03.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch04.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch05.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch06.html#10 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch07.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch08.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch09.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.ch10.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.html#9 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Bv9ARM.pdf#8 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/Makefile.in#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.dig.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html#1 branch .. //depot/projects/hammer/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html#1 branch .. //depot/projects/hammer/contrib/bind9/doc/arm/man.dnssec-keygen.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.dnssec-signzone.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.host.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.named-checkconf.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.named-checkzone.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.named.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.nsupdate.html#1 branch .. //depot/projects/hammer/contrib/bind9/doc/arm/man.rndc-confgen.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.rndc.conf.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/arm/man.rndc.html#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-baba-dnsext-acl-reqts-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-daigle-napstr-04.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-danisch-dns-rr-smtp-03.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-dnsext-opcode-discover-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-durand-dnsop-dynreverse-00.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-2929bis-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-axfr-clarify-05.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dhcid-rr-12.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dns-name-p-s-00.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-2535typecode-change-06.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-bis-updates-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-experiments-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-online-signing-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-opt-in-07.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-rsasha256-00.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-dnssec-trans-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-ds-sha256-05.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-ecc-key-07.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-interop3597-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-keyrr-key-signing-flag-12.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-mdns-43.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-nsec3-04.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-nsid-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2536bis-dsa-06.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2538bis-04.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-rfc2539bis-dhk-06.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-signed-nonexistence-requirements-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-tkey-renewal-mode-05.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-trustupdate-threshold-00.txt#3 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-trustupdate-timers-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-tsig-sha-06.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsext-wcard-clarify-10.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-bad-dns-res-05.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-dnssec-operational-practices-08.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-inaddr-required-07.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-dns-configuration-06.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-dns-issues-11.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-ipv6-transport-guidelines-01.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-key-rollover-requirements-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-respsize-02.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-dnsop-serverid-06.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-enum-e164-gstn-np-05.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-ipv6-node-requirements-08.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ietf-secsh-dns-05.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-ihren-dnsext-threshold-validation-00.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-kato-dnsop-local-zones-00.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/draft-park-ipv6-extensions-dns-pnp-00.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/draft/update#2 delete .. //depot/projects/hammer/contrib/bind9/doc/misc/Makefile.in#5 integrate .. //depot/projects/hammer/contrib/bind9/doc/misc/format-options.pl#4 integrate .. //depot/projects/hammer/contrib/bind9/doc/misc/ipv6#3 integrate .. //depot/projects/hammer/contrib/bind9/doc/misc/migration#6 integrate .. //depot/projects/hammer/contrib/bind9/doc/misc/options#6 integrate .. //depot/projects/hammer/contrib/bind9/doc/misc/sort-options.pl#2 integrate .. //depot/projects/hammer/contrib/bind9/doc/rfc/index#6 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1032.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1033.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1034.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1035.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1101.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1122.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1123.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1183.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1348.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1535.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1536.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1537.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1591.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1611.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1612.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1706.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1712.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1750.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1876.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1886.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1982.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1995.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc1996.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2052.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2104.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2119.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2133.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2136.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2137.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2163.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2168.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2181.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2230.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2308.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2317.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2373.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2374.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2375.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2418.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2535.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2536.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2537.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2538.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2539.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2540.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2541.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2553.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2671.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2672.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2673.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2782.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2825.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2826.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2845.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2874.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2915.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2929.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2930.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc2931.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3007.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3008.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3071.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3090.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3110.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3123.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3152.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3197.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3225.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3226.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3258.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3363.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3364.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3425.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3445.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3467.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3490.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3491.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3492.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3493.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3513.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3596.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3597.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3645.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3655.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3658.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3757.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3833.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3845.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc3901.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4025.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4033.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4034.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4035.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4074.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4159.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4193.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4255.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4343.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4367.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4398.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4408.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4431.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4470.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4634.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4641.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4648.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc4701.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc5155.txt#2 delete .. //depot/projects/hammer/contrib/bind9/doc/rfc/rfc952.txt#2 delete .. //depot/projects/hammer/contrib/bind9/isc-config.sh.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind/Makefile.in#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/README#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/aclocal.m4#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/api#8 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/Makefile.in#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/daemon.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/ftruncate.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/gettimeofday.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/mktemp.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/putenv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/readv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/setenv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/setitimer.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/strcasecmp.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/strdup.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/strerror.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/strpbrk.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/strsep.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/strtoul.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/utimes.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/bsd/writev.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/config.h.in#8 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/configure.in#9 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/Makefile.in#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/dst_api.c#8 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/dst_internal.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/hmac_link.c#7 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/md5.h#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/md5_dgst.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/md5_locl.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/dst/support.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/Makefile.in#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/arpa/inet.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/arpa/nameser.h#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/arpa/nameser_compat.h#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/fd_setsize.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/hesiod.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/irp.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/irs.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/assertions.h#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/ctl.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/dst.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/eventlib.h#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/heap.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/irpmarshall.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/list.h#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/logging.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/memcluster.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/misc.h#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/platform.h.in#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/isc/tree.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/netdb.h#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/netgroup.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/res_update.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/resolv.h#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/include/resolv_mt.h#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/Makefile.in#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_addr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_cidr_ntop.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_cidr_pton.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_data.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_lnaof.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_makeaddr.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_net_ntop.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_net_pton.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_neta.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_netof.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_network.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_ntoa.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_ntop.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/inet_pton.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/inet/nsap_addr.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/Makefile.in#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_gr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_ho.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_nw.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_pr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_pw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/dns_sv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gai_strerror.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_gr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_ho.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_ng.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_nw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_pr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_pw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gen_sv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getaddrinfo.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getgrent.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getgrent_r.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gethostent.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/gethostent_r.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getnameinfo.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getnetent.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getnetent_r.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getnetgrent.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getnetgrent_r.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getprotoent.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getprotoent_r.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getpwent.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getpwent_r.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getservent.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/getservent_r.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/hesiod.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/hesiod_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_gr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_ho.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_ng.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_nw.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_pr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_pw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irp_sv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irpmarshall.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irs_data.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irs_data.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/irs_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_gr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_ho.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_ng.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_nw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_pr.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_pw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/lcl_sv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_gr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_ho.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_ng.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_nw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_pr.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_pw.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nis_sv.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/nul_ng.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/pathnames.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/irs/util.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/Makefile.in#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/assertions.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/assertions.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/base64.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/bitncmp.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/bitncmp.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ctl_clnt.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ctl_p.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ctl_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ctl_srvr.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ev_connects.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ev_files.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ev_streams.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ev_timers.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/ev_waits.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/eventlib.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/eventlib.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/eventlib_p.h#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/heap.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/heap.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/hex.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/logging.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/logging.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/logging_p.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/memcluster.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/memcluster.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/movefile.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/tree.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/isc/tree.mdoc#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/make/includes.in#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/make/mkdep.in#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/make/rules.in#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/mkinstalldirs#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/Makefile.in#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_date.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_name.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_netint.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_parse.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_print.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_samedomain.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_sign.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_ttl.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/nameser/ns_verify.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/port/Makefile.in#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/port/freebsd/Makefile.in#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/port/freebsd/include/Makefile.in#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/port/freebsd/include/sys/bitypes.h#2 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/port_after.h.in#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/port_before.h.in#7 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/Makefile.in#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/herror.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/mtctxres.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_comp.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_data.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_debug.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_debug.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_findzonecut.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_init.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_mkquery.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_mkupdate.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_mkupdate.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_private.h#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_query.c#4 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_send.c#6 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_sendsigned.c#5 delete .. //depot/projects/hammer/contrib/bind9/lib/bind/resolv/res_update.c#3 delete .. //depot/projects/hammer/contrib/bind9/lib/bind9/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/api#8 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/check.c#10 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/getaddresses.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/include/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/include/bind9/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/include/bind9/check.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/include/bind9/getaddresses.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/include/bind9/version.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/bind9/version.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/Makefile.in#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/acache.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/acl.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/adb.c#8 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/api#12 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/byaddr.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/cache.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/callbacks.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/compress.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/db.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dbiterator.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dbtable.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/diff.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dispatch.c#9 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dlz.c#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dnssec.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/ds.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_api.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_internal.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_lib.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_openssl.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_parse.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_parse.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/dst_result.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/forward.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/gen-unix.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/gen.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/gssapi_link.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/gssapictx.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/hmac_link.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/acache.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/acl.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/adb.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/bit.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/byaddr.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/cache.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/callbacks.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/cert.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/compress.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/db.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/dbiterator.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/dbtable.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/diff.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/dispatch.h#8 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/dlz.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/dnssec.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/ds.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/events.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/fixedname.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/forward.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/iptable.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/journal.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/keyflags.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/keytable.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/keyvalues.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/lib.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/log.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/lookup.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/master.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/masterdump.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/message.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/name.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/ncache.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/nsec.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/nsec3.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/opcode.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/order.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/peer.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/portlist.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rbt.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rcode.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdata.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdataclass.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdatalist.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdataset.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdatasetiter.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdataslab.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rdatatype.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/request.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/resolver.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/result.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/rootns.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/sdb.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/sdlz.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/secalg.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/secproto.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/soa.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/ssu.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/stats.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/tcpmsg.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/time.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/timer.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/tkey.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/tsig.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/ttl.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/types.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/validator.h#7 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/version.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/view.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/xfrin.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/zone.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/zonekey.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dns/zt.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dst/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dst/dst.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dst/gssapi.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dst/lib.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/include/dst/result.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/iptable.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/journal.c#7 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/key.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/keytable.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/lib.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/log.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/lookup.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/master.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/masterdump.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/message.c#7 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/name.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/ncache.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/nsec.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/nsec3.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/openssl_link.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/openssldh_link.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/openssldsa_link.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/opensslrsa_link.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/order.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/peer.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/portlist.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rbt.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rbtdb.c#7 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rbtdb.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rbtdb64.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rbtdb64.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rcode.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/ch_3/a_1.c#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/ch_3/a_1.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/cert_37.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/cert_37.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/cname_5.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/cname_5.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/dname_39.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/dname_39.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ds_43.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ds_43.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/gpos_27.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/gpos_27.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/isdn_20.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/isdn_20.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/key_25.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/key_25.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/loc_29.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/loc_29.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mb_7.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mb_7.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/md_3.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/md_3.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mf_4.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mf_4.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mg_8.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mg_8.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/minfo_14.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/minfo_14.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mr_9.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mr_9.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mx_15.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/mx_15.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ns_2.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ns_2.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nsec_47.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nsec_47.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/null_10.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/null_10.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nxt_30.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/nxt_30.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/opt_41.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/opt_41.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/proforma.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/proforma.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ptr_12.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/ptr_12.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/rp_17.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/rp_17.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/rt_21.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/rt_21.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/sig_24.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/sig_24.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/soa_6.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/soa_6.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/spf_99.c#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/spf_99.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/tkey_249.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/tkey_249.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/txt_16.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/txt_16.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/unspec_103.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/unspec_103.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/x25_19.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/generic/x25_19.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/hs_4/a_1.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/hs_4/a_1.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/a6_38.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/a6_38.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/a_1.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/a_1.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/apl_42.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/apl_42.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/kx_36.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/kx_36.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/px_26.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/px_26.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/srv_33.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/srv_33.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/wks_11.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/in_1/wks_11.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/rdatastructpre.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdata/rdatastructsuf.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdatalist.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdatalist_p.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdataset.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdatasetiter.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rdataslab.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/request.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/resolver.c#12 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/result.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/rootns.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/sdb.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/sdlz.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/soa.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/spnego.asn1#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/spnego.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/spnego.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/spnego_asn1.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/spnego_asn1.pl#1 branch .. //depot/projects/hammer/contrib/bind9/lib/dns/ssu.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/stats.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/tcpmsg.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/time.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/timer.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/tkey.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/tsig.c#7 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/ttl.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/validator.c#10 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/version.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/view.c#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/xfrin.c#9 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/zone.c#8 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/zonekey.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/dns/zt.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/Makefile.in#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/alpha/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/alpha/include/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/alpha/include/isc/atomic.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/api#9 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/assertions.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/base32.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/base64.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/bitstring.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/buffer.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/bufferlist.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/commandline.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/entropy.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/error.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/event.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/fsaccess.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/hash.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/heap.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/hex.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/hmacmd5.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/hmacsha.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/httpd.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/ia64/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/ia64/include/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/ia64/include/isc/atomic.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/Makefile.in#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/Makefile.in#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/app.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/assertions.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/base32.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/base64.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/bitstring.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/boolean.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/buffer.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/bufferlist.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/commandline.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/entropy.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/error.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/event.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/eventclass.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/file.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/formatcheck.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/fsaccess.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/hash.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/heap.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/hex.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/hmacmd5.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/hmacsha.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/httpd.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/interfaceiter.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/ipv6.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/iterated_hash.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/lang.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/lex.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/lfsr.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/lib.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/list.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/log.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/magic.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/md5.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/mem.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/msgcat.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/msgs.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/mutexblock.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/netaddr.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/netscope.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/ondestroy.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/os.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/parseint.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/platform.h.in#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/portset.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/print.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/quota.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/radix.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/random.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/ratelimiter.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/refcount.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/region.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/resource.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/result.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/resultclass.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/rwlock.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/serial.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/sha1.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/sha2.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/sockaddr.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/socket.h#5 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/stats.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/stdio.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/stdlib.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/string.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/symtab.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/task.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/taskpool.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/timer.h#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/types.h#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/util.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/version.h#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/include/isc/xml.h#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/inet_aton.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/inet_ntop.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/inet_pton.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/iterated_hash.c#1 branch .. //depot/projects/hammer/contrib/bind9/lib/isc/lex.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/lfsr.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/lib.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/log.c#4 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/md5.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/mem.c#6 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/mips/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/mips/include/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/mips/include/isc/Makefile.in#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/mips/include/isc/atomic.h#2 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/mutexblock.c#3 integrate .. //depot/projects/hammer/contrib/bind9/lib/isc/netaddr.c#3 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From peter at FreeBSD.org Tue Jun 2 21:33:42 2009 From: peter at FreeBSD.org (Peter Wemm) Date: Tue Jun 2 21:33:48 2009 Subject: PERFORCE change 163383 for review Message-ID: <200906022133.n52LXdGN017018@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163383 Change 163383 by peter@peter_daintree on 2009/06/02 21:33:37 IFC @163382 Affected files ... .. //depot/projects/hammer/sys/dev/ath/if_ath.c#71 integrate Differences ... ==== //depot/projects/hammer/sys/dev/ath/if_ath.c#71 (text+ko) ==== @@ -28,7 +28,7 @@ */ #include -__FBSDID("$FreeBSD: src/sys/dev/ath/if_ath.c,v 1.255 2009/06/02 21:13:57 sam Exp $"); +__FBSDID("$FreeBSD: src/sys/dev/ath/if_ath.c,v 1.256 2009/06/02 21:17:56 sam Exp $"); /* * Driver for the Atheros Wireless LAN controller. @@ -1710,7 +1710,6 @@ DPRINTF(sc, ATH_DEBUG_XMIT, "%s: %s\n", __func__, STAILQ_FIRST(&sc->sc_txbuf) == NULL ? "out of xmit buffers" : "xmit buffer busy"); - sc->sc_stats.ast_tx_nobuf++; } return bf; } @@ -6832,55 +6831,60 @@ struct ifnet *ifp = ic->ic_ifp; struct ath_softc *sc = ifp->if_softc; struct ath_buf *bf; + int error; if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 || sc->sc_invalid) { DPRINTF(sc, ATH_DEBUG_XMIT, "%s: discard frame, %s", __func__, (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 ? "!running" : "invalid"); - sc->sc_stats.ast_tx_raw_fail++; - ieee80211_free_node(ni); m_freem(m); - return ENETDOWN; + error = ENETDOWN; + goto bad; } /* * Grab a TX buffer and associated resources. */ bf = ath_getbuf(sc); if (bf == NULL) { - /* NB: ath_getbuf handles stat+msg */ - ieee80211_free_node(ni); + sc->sc_stats.ast_tx_nobuf++; m_freem(m); - return ENOBUFS; + error = ENOBUFS; + goto bad; } - ifp->if_opackets++; - sc->sc_stats.ast_tx_raw++; - if (params == NULL) { /* * Legacy path; interpret frame contents to decide * precisely how to send the frame. */ - if (ath_tx_start(sc, ni, bf, m)) - goto bad; + if (ath_tx_start(sc, ni, bf, m)) { + error = EIO; /* XXX */ + goto bad2; + } } else { /* * Caller supplied explicit parameters to use in * sending the frame. */ - if (ath_tx_raw_start(sc, ni, bf, m, params)) - goto bad; + if (ath_tx_raw_start(sc, ni, bf, m, params)) { + error = EIO; /* XXX */ + goto bad2; + } } sc->sc_wd_timer = 5; + ifp->if_opackets++; + sc->sc_stats.ast_tx_raw++; return 0; -bad: - ifp->if_oerrors++; +bad2: ATH_TXBUF_LOCK(sc); STAILQ_INSERT_HEAD(&sc->sc_txbuf, bf, bf_list); ATH_TXBUF_UNLOCK(sc); +bad: + ifp->if_oerrors++; + sc->sc_stats.ast_tx_raw_fail++; ieee80211_free_node(ni); - return EIO; /* XXX */ + return error; } /* From anchie at FreeBSD.org Tue Jun 2 21:57:05 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Tue Jun 2 21:57:12 2009 Subject: PERFORCE change 163384 for review Message-ID: <200906022157.n52Lv3eV019120@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163384 Change 163384 by anchie@anchie_malimis on 2009/06/02 21:57:01 Preparations for hooks that are function pointers seeded when loading the send module. Changed ordering of new ICMP6 types the header file. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/modules/send/Makefile#1 add .. //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#3 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#1 add .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#1 add Differences ... ==== //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#3 (text+ko) ==== @@ -117,9 +117,6 @@ #define ND_NEIGHBOR_ADVERT 136 /* neighbor advertisement */ #define ND_REDIRECT 137 /* redirect */ -#define SEND_CERT_PATH_SOLICIT 148 /* cert path solicitation */ -#define SEND_CERT_PATH_ADVERT 149 /* cert_path advertisement */ - #define ICMP6_ROUTER_RENUMBERING 138 /* router renumbering */ #define ICMP6_WRUREQUEST 139 /* who are you request */ @@ -130,6 +127,9 @@ #define ICMP6_NI_REPLY 140 /* node information reply */ #define MLDV2_LISTENER_REPORT 143 /* RFC3810 listener report */ +#define SEND_CERT_PATH_SOLICIT 148 /* cert path solicitation */ +#define SEND_CERT_PATH_ADVERT 149 /* cert path advertisement */ + /* The definitions below are experimental. TBA */ #define MLD_MTRACE_RESP 200 /* mtrace resp (to sender) */ #define MLD_MTRACE 201 /* mtrace messages */ From anchie at FreeBSD.org Tue Jun 2 22:05:13 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Tue Jun 2 22:05:20 2009 Subject: PERFORCE change 163385 for review Message-ID: <200906022205.n52M5BM3020664@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163385 Change 163385 by anchie@anchie_malimis on 2009/06/02 22:04:34 Preparations for hooks that are function pointers seeded when loading the send module. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/modules/Makefile#2 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#4 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#2 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#2 edit Differences ... ==== //depot/projects/soc2009/anchie_send/src/sys/modules/Makefile#2 (text+ko) ==== ==== //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#4 (text+ko) ==== ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#2 (text+ko) ==== ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#2 (text+ko) ==== From anchie at FreeBSD.org Tue Jun 2 23:31:42 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Tue Jun 2 23:31:49 2009 Subject: PERFORCE change 163388 for review Message-ID: <200906022331.n52NVerG028464@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163388 Change 163388 by anchie@anchie_malimis on 2009/06/02 23:31:20 Cosmetic changes. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/modules/Makefile#3 delete .. //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#5 delete .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#3 delete .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#3 delete Differences ... From kabaev at gmail.com Wed Jun 3 01:18:15 2009 From: kabaev at gmail.com (Alexander Kabaev) Date: Wed Jun 3 01:18:22 2009 Subject: PERFORCE change 163352 for review In-Reply-To: <200906021409.n52E9quv048160@repoman.freebsd.org> References: <200906021409.n52E9quv048160@repoman.freebsd.org> Message-ID: <20090602204927.22f0e224@kan.dnsalias.net> On Tue, 2 Jun 2009 14:09:52 GMT Fang Wang wrote: > http://perforce.freebsd.org/chv.cgi?CH=163352 > > Change 163352 by fangwang@fangwang_utobsd on 2009/06/02 14:09:16 > > Add uto variables in struct tcpopt. > > Affected files ... > > .. //depot/projects/soc2009/tcputo/src/sys/netinet/tcp_var.h#3 edit > > Differences ... > > ==== //depot/projects/soc2009/tcputo/src/sys/netinet/tcp_var.h#3 > (text+ko) ==== > > @@ -282,6 +282,8 @@ > u_int8_t to_nsacks; /* number of SACK blocks */ > u_char *to_sacks; /* pointer to the > first SACK blocks */ u_char *to_signature; /* > pointer to the TCP-MD5 signature */ > + u_int16_t to_uto:15; /* user timeout */ > + u_int16_t to_granularity:1; /* user timeout granularity */ > }; > > /* This commit is using wrong whitespace. This needs to be fixed if code is meant to make it to official sources any time in the future. -- Alexander Kabaev -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 188 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/p4-projects/attachments/20090603/524eac59/signature.pgp From anchie at FreeBSD.org Wed Jun 3 01:47:00 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Wed Jun 3 01:47:06 2009 Subject: PERFORCE change 163390 for review Message-ID: <200906030146.n531kwFc053383@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163390 Change 163390 by anchie@anchie_malimis on 2009/06/03 01:46:28 Fixing repository (#1). Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/netinet/icmp6.h#6 add Differences ... From anchie at FreeBSD.org Wed Jun 3 01:53:05 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Wed Jun 3 01:53:17 2009 Subject: PERFORCE change 163391 for review Message-ID: <200906030153.n531r416053876@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163391 Change 163391 by anchie@anchie_malimis on 2009/06/03 01:52:55 Fixing repository (#2). Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#4 add .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#4 add Differences ... From anchie at FreeBSD.org Wed Jun 3 02:03:17 2009 From: anchie at FreeBSD.org (Ana Kukec) Date: Wed Jun 3 02:03:23 2009 Subject: PERFORCE change 163392 for review Message-ID: <200906030203.n5323E5O055574@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163392 Change 163392 by anchie@anchie_malimis on 2009/06/03 02:02:35 Initial introduction of hooks mechanism based on send module. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/icmp6.c#3 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#5 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#5 edit Differences ... ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/icmp6.c#3 (text+ko) ==== @@ -763,6 +763,8 @@ /* give up local */ /* send incoming SeND-protected/ND packet to sendd */ + if (send_input_hook != NULL) + send_input_hook(); nd6_rs_input(m, off, icmp6len); m = NULL; ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#5 (text+ko) ==== @@ -1,1 +1,45 @@ /* send module */ + +#include +#include +#include +#include + +#include + +static int X_send_input_hook(void); + +static int +X_send_input_hook(void) +{ + return 0; +} + +static int +send_modevent(module_t mod, int type, void *unused) +{ + int err = 0; + + switch (type) { + case MOD_LOAD: + send_input_hook = X_send_input_hook; + break; + + case MOD_UNLOAD: + send_input_hook = NULL; + break; + + default: + break; + } + return err; +} + +static moduledata_t sendmod = { + "send", + send_modevent, + 0 +}; + +DECLARE_MODULE(send, sendmod, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_ANY); + ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#5 (text+ko) ==== @@ -1,1 +1,2 @@ /* send.c */ +int (*send_input_hook)(void); From dforsyth at FreeBSD.org Wed Jun 3 03:57:12 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Wed Jun 3 03:57:19 2009 Subject: PERFORCE change 163393 for review Message-ID: <200906030357.n533vApG068411@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163393 Change 163393 by dforsyth@squirrel on 2009/06/03 03:57:00 Moved things around, made a mess. Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/Makefile#2 edit .. //depot/projects/soc2009/dforsyth_libpkg/info/Makefile#2 delete .. //depot/projects/soc2009/dforsyth_libpkg/info/main.c#4 delete .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#5 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.h#5 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_info.c#5 delete .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_info.h#3 delete .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#6 edit .. //depot/projects/soc2009/dforsyth_libpkg/pkg_info/Makefile#1 add .. //depot/projects/soc2009/dforsyth_libpkg/pkg_info/main.c#1 add Differences ... ==== //depot/projects/soc2009/dforsyth_libpkg/Makefile#2 (text+ko) ==== @@ -1,2 +1,2 @@ -SUBDIR= libpkg info +SUBDIR= libpkg pkg_info .include ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#5 (text+ko) ==== @@ -4,6 +4,7 @@ #include "pkg_util.h" #include "pkgdb.h" +#include "pkg_private.h" #include "pkg.h" @@ -64,7 +65,7 @@ } struct pkg * -pkg_set_pkg_info(struct pkg *p, struct pkg_info *pi) +pkg_set_pkg_contents(struct pkg *p, struct pkg_contents *pc) { return (p); } ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.h#5 (text+ko) ==== @@ -6,11 +6,15 @@ struct pkg; struct pkg *pkg_new(const char *ident); + struct pkg *pkg_set_path(struct pkg *p, const char *path); + struct pkg *pkg_set_comment(struct pkg *p, const char *comment); char *pkg_ident(struct pkg *p); + char *pkg_name(struct pkg *p); + char *pkg_comment(struct pkg *p); void pkg_free(struct pkg *p); @@ -19,30 +23,24 @@ struct pkgdb; -struct pkgdb *pkgdb_new_hierdb(const char *db_root); +struct pkgdb *pkgdb_read_db_hierdb(const char *db_root); + +int pkgdb_refresh_db_hierdb(struct pkgdb *db); -int pkgdb_init_hierdb(struct pkgdb *db); struct pkg *pkgdb_read_pkg_hierdb(struct pkgdb *db, const char *ident); + struct pkg *pkgdb_next_pkg(struct pkgdb *db); struct pkg *pkgdb_query_pkg(struct pkgdb *db, const char *ident); char *pkgdb_pkg_path(struct pkgdb *db, struct pkg *p); -void pkgdb_pkg_list_init(struct pkgdb *db); -struct pkg *pkgdb_pkg_list_first(struct pkgdb *db); -void pkgdb_pkg_list_append(struct pkgdb *db, struct pkg *p); - -char *pkgdb_read_file_to_text(struct pkgdb *db, struct pkg *p, - const char *filename); - void pkgdb_free_hierdb(struct pkgdb *db); -void pkgdb_free_pkg_list(struct pkgdb *db); -/* pkg_info */ +/* pkg_contents */ -struct pkg_info; +struct pkg_contents; -struct pkg_info *pkg_info_parse_info_from_text(const char *text); +struct pkg_contents *pkg_contents_read_info_from_text(const char *text); #endif ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#6 (text+ko) ==== @@ -10,8 +10,9 @@ #include #include "pkg_util.h" -#include "pkg_info.h" +#include "pkg_contents.h" #include "pkgdb.h" +#include "pkg_private.h" #include "pkg.h" /* Everything in here is written with the current database setup in mind. @@ -23,7 +24,7 @@ /* Allocate and create a new hierdb. */ struct pkgdb * -pkgdb_new_hierdb(const char *db_root) +pkgdb_read_db_hierdb(const char *db_root) { int s; struct stat sb; @@ -60,7 +61,7 @@ * number of subdirectories in the database. */ int -pkgdb_init_hierdb(struct pkgdb *db) +pkgdb_refresh_db_hierdb(struct pkgdb *db) { int i; int p_count; @@ -146,12 +147,13 @@ Need to add callbacks before I do this. } */ - +/* struct pkg * pkgdb_query_pkg_hierdb(struct pkgdb *db, const char *ident) { return (NULL); } +*/ char * pkgdb_pkg_path(struct pkgdb *db, struct pkg *p) From dforsyth at FreeBSD.org Wed Jun 3 03:58:13 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Wed Jun 3 03:58:26 2009 Subject: PERFORCE change 163395 for review Message-ID: <200906030358.n533wCC4068478@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163395 Change 163395 by dforsyth@squirrel on 2009/06/03 03:57:27 Forgot these... Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_contents.c#1 add .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_contents.h#1 add Differences ... From thompsa at FreeBSD.org Wed Jun 3 03:58:14 2009 From: thompsa at FreeBSD.org (Andrew Thompson) Date: Wed Jun 3 03:58:26 2009 Subject: PERFORCE change 163396 for review Message-ID: <200906030358.n533wCc0068483@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163396 Change 163396 by thompsa@thompsa_burger on 2009/06/03 03:57:28 Checkpoint WIP. Not much more than variable renames. Affected files ... .. //depot/projects/usb_buf/src/sys/dev/usb/controller/ehci.c#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_busdma.c#6 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_busdma.h#4 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_controller.h#6 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_core.h#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_debug.c#6 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_debug.h#5 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_dev.h#4 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_device.c#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_device.h#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_generic.c#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_handle_request.c#5 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_hub.c#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_msctest.c#4 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_request.c#8 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_transfer.c#7 edit .. //depot/projects/usb_buf/src/sys/dev/usb/usb_transfer.h#6 edit Differences ... ==== //depot/projects/usb_buf/src/sys/dev/usb/controller/ehci.c#7 (text+ko) ==== @@ -70,7 +70,7 @@ ((uint8_t *)&(((ehci_softc_t *)0)->sc_bus)))) #if USB_DEBUG -static int ehcidebug = 0; +static int ehcidebug = 100; static int ehcinohighspeed = 0; SYSCTL_NODE(_hw_usb, OID_AUTO, ehci, CTLFLAG_RW, 0, "USB ehci"); @@ -94,8 +94,8 @@ extern struct usb_pipe_methods ehci_device_isoc_hs_methods; static void ehci_do_poll(struct usb_bus *bus); -static void ehci_device_done(struct usb_xfer *xfer, usb_error_t error); -static uint8_t ehci_check_transfer(struct usb_xfer *xfer); +static void ehci_device_done(struct usb_urb *urb, usb_error_t error); +static uint8_t ehci_check_transfer(struct usb_urb *urb); static void ehci_timeout(void *arg); static void ehci_root_intr(ehci_softc_t *sc); @@ -952,18 +952,20 @@ #endif static void -ehci_transfer_intr_enqueue(struct usb_xfer *xfer) +ehci_transfer_intr_enqueue(struct usb_urb *urb) { + struct usb_pipe *pipe = urb->ub_pipe; + /* check for early completion */ - if (ehci_check_transfer(xfer)) { + if (ehci_check_transfer(urb)) { return; } /* put transfer on interrupt queue */ - usb2_transfer_enqueue(&xfer->xroot->bus->intr_q, xfer); + usb2_transfer_enqueue(&pipe->xroot->bus->intr_q, urb); /* start timeout, if any */ - if (xfer->timeout != 0) { - usb2_transfer_timeout_ms(xfer, &ehci_timeout, xfer->timeout); + if (urb->timeout != 0) { + usb2_transfer_timeout_ms(urb, &ehci_timeout, urb->timeout); } } @@ -1121,19 +1123,20 @@ } static usb_error_t -ehci_non_isoc_done_sub(struct usb_xfer *xfer) +ehci_non_isoc_done_sub(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + ehci_softc_t *sc = EHCI_BUS2SC(urb->ub_pipe->bus); + struct usb_pipe *pipe = urb->ub_pipe; ehci_qtd_t *td; ehci_qtd_t *td_alt_next; uint32_t status; uint16_t len; - td = xfer->td_transfer_cache; + td = urb->td_transfer_cache; td_alt_next = td->alt_next; - if (xfer->aframes != xfer->nframes) { - xfer->frlengths[xfer->aframes] = 0; + if (urb->aframes != urb->nframes) { + urb->frlengths[urb->aframes] = 0; } while (1) { @@ -1151,11 +1154,11 @@ DPRINTF("Invalid status length, " "0x%04x/0x%04x bytes\n", len, td->len); status |= EHCI_QTD_HALTED; - } else if (xfer->aframes != xfer->nframes) { - xfer->frlengths[xfer->aframes] += td->len - len; + } else if (urb->aframes != urb->nframes) { + urb->frlengths[urb->aframes] += td->len - len; } /* Check for last transfer */ - if (((void *)td) == xfer->td_transfer_last) { + if (((void *)td) == urb->td_transfer_last) { td = NULL; break; } @@ -1167,7 +1170,7 @@ } /* Check for short transfer */ if (len > 0) { - if (xfer->flags_int.short_frames_ok) { + if (urb->flags_int.short_frames_ok) { /* follow alt next */ td = td->alt_next; } else { @@ -1186,18 +1189,18 @@ /* update transfer cache */ - xfer->td_transfer_cache = td; + urb->td_transfer_cache = td; /* update data toggle */ - xfer->endpoint->toggle_next = + pipe->endpoint->toggle_next = (status & EHCI_QTD_TOGGLE_MASK) ? 1 : 0; #if USB_DEBUG if (status & EHCI_QTD_STATERRS) { DPRINTFN(11, "error, addr=%d, endpt=0x%02x, frame=0x%02x" "status=%s%s%s%s%s%s%s%s\n", - xfer->address, xfer->endpointno, xfer->aframes, + pipe->address, pipe->endpointno, urb->aframes, (status & EHCI_QTD_ACTIVE) ? "[ACTIVE]" : "[NOT_ACTIVE]", (status & EHCI_QTD_HALTED) ? "[HALTED]" : "", (status & EHCI_QTD_BUFERR) ? "[BUFERR]" : "", @@ -1214,54 +1217,55 @@ } static void -ehci_non_isoc_done(struct usb_xfer *xfer) +ehci_non_isoc_done(struct usb_urb *urb) { + struct usb_pipe *pipe = urb->ub_pipe; usb_error_t err = 0; - DPRINTFN(13, "xfer=%p endpoint=%p transfer done\n", - xfer, xfer->endpoint); + DPRINTFN(13, "urb=%p endpoint=%p transfer done\n", + urb, pipe->endpoint); #if USB_DEBUG if (ehcidebug > 10) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); - ehci_dump_sqtds(sc, xfer->td_transfer_first); + ehci_dump_sqtds(sc, urb->td_transfer_first); } #endif /* reset scanner */ - xfer->td_transfer_cache = xfer->td_transfer_first; + urb->td_transfer_cache = urb->td_transfer_first; - if (xfer->flags_int.control_xfr) { + if (urb->flags_int.control_xfr) { - if (xfer->flags_int.control_hdr) { + if (urb->flags_int.control_hdr) { - err = ehci_non_isoc_done_sub(xfer); + err = ehci_non_isoc_done_sub(urb); } - xfer->aframes = 1; + urb->aframes = 1; - if (xfer->td_transfer_cache == NULL) { + if (urb->td_transfer_cache == NULL) { goto done; } } - while (xfer->aframes != xfer->nframes) { + while (urb->aframes != urb->nframes) { - err = ehci_non_isoc_done_sub(xfer); - xfer->aframes++; + err = ehci_non_isoc_done_sub(urb); + urb->aframes++; - if (xfer->td_transfer_cache == NULL) { + if (urb->td_transfer_cache == NULL) { goto done; } } - if (xfer->flags_int.control_xfr && - !xfer->flags_int.control_act) { + if (urb->flags_int.control_xfr && + !urb->flags_int.control_act) { - err = ehci_non_isoc_done_sub(xfer); + err = ehci_non_isoc_done_sub(urb); } done: - ehci_device_done(xfer, err); + ehci_device_done(urb, err); } /*------------------------------------------------------------------------* @@ -1272,32 +1276,33 @@ * Else: USB transfer is finished *------------------------------------------------------------------------*/ static uint8_t -ehci_check_transfer(struct usb_xfer *xfer) +ehci_check_transfer(struct usb_urb *urb) { - struct usb_pipe_methods *methods = xfer->endpoint->methods; - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + struct usb_pipe_methods *methods = pipe->endpoint->methods; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); uint32_t status; - DPRINTFN(13, "xfer=%p checking transfer\n", xfer); + DPRINTFN(13, "urb=%p checking transfer\n", urb); if (methods == &ehci_device_isoc_fs_methods) { ehci_sitd_t *td; /* isochronous full speed transfer */ - td = xfer->td_transfer_last; + td = urb->td_transfer_last; usb2_pc_cpu_invalidate(td->page_cache); status = hc32toh(sc, td->sitd_status); /* also check if first is complete */ - td = xfer->td_transfer_first; + td = urb->td_transfer_first; usb2_pc_cpu_invalidate(td->page_cache); status |= hc32toh(sc, td->sitd_status); if (!(status & EHCI_SITD_ACTIVE)) { - ehci_device_done(xfer, USB_ERR_NORMAL_COMPLETION); + ehci_device_done(urb, USB_ERR_NORMAL_COMPLETION); goto transferred; } } else if (methods == &ehci_device_isoc_hs_methods) { @@ -1305,7 +1310,7 @@ /* isochronous high speed transfer */ - td = xfer->td_transfer_last; + td = urb->td_transfer_last; usb2_pc_cpu_invalidate(td->page_cache); status = td->itd_status[0] | td->itd_status[1] | @@ -1314,7 +1319,7 @@ td->itd_status[6] | td->itd_status[7]; /* also check first transfer */ - td = xfer->td_transfer_first; + td = urb->td_transfer_first; usb2_pc_cpu_invalidate(td->page_cache); status |= td->itd_status[0] | td->itd_status[1] | @@ -1324,7 +1329,7 @@ /* if no transactions are active we continue */ if (!(status & htohc32(sc, EHCI_ITD_ACTIVE))) { - ehci_device_done(xfer, USB_ERR_NORMAL_COMPLETION); + ehci_device_done(urb, USB_ERR_NORMAL_COMPLETION); goto transferred; } } else { @@ -1336,7 +1341,7 @@ * check whether there is an error somewhere in the middle, * or whether there was a short packet (SPD and not ACTIVE) */ - td = xfer->td_transfer_cache; + td = urb->td_transfer_cache; while (1) { usb2_pc_cpu_invalidate(td->page_cache); @@ -1347,13 +1352,13 @@ */ if (status & EHCI_QTD_ACTIVE) { /* update cache */ - xfer->td_transfer_cache = td; + urb->td_transfer_cache = td; goto done; } /* * last transfer descriptor makes the transfer done */ - if (((void *)td) == xfer->td_transfer_last) { + if (((void *)td) == urb->td_transfer_last) { break; } /* @@ -1367,7 +1372,7 @@ * packet also makes the transfer done */ if (EHCI_QTD_GET_BYTES(status)) { - if (xfer->flags_int.short_frames_ok) { + if (urb->flags_int.short_frames_ok) { /* follow alt next */ if (td->alt_next) { td = td->alt_next; @@ -1379,12 +1384,12 @@ } td = td->obj_next; } - ehci_non_isoc_done(xfer); + ehci_non_isoc_done(urb); goto transferred; } done: - DPRINTFN(13, "xfer=%p is still active\n", xfer); + DPRINTFN(13, "urb=%p is still active\n", urb); return (0); transferred: @@ -1408,14 +1413,14 @@ static void ehci_interrupt_poll(ehci_softc_t *sc) { - struct usb_xfer *xfer; + struct usb_urb *urb; repeat: - TAILQ_FOREACH(xfer, &sc->sc_bus.intr_q.head, wait_entry) { + TAILQ_FOREACH(urb, &sc->sc_bus.intr_q.head, wait_entry) { /* * check if transfer is transferred */ - if (ehci_check_transfer(xfer)) { + if (ehci_check_transfer(urb)) { /* queue has been modified */ goto repeat; } @@ -1499,14 +1504,14 @@ static void ehci_timeout(void *arg) { - struct usb_xfer *xfer = arg; + struct usb_urb *urb = arg; - DPRINTF("xfer=%p\n", xfer); + DPRINTF("urb=%p\n", urb); - USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED); + //USB_BUS_LOCK_ASSERT(urb->pipe->bus, MA_OWNED); /* transfer is transferred */ - ehci_device_done(xfer, USB_ERR_TIMEOUT); + ehci_device_done(urb, USB_ERR_TIMEOUT); } static void @@ -1705,8 +1710,9 @@ } static void -ehci_setup_standard_chain(struct usb_xfer *xfer, ehci_qh_t **qh_last) +ehci_setup_standard_chain(struct usb_urb *urb, ehci_qh_t **qh_last) { + struct usb_pipe *pipe = urb->ub_pipe; struct ehci_std_temp temp; struct usb_pipe_methods *methods; ehci_qh_t *qh; @@ -1716,30 +1722,30 @@ uint32_t x; DPRINTFN(9, "addr=%d endpt=%d sumlen=%d speed=%d\n", - xfer->address, UE_GET_ADDR(xfer->endpointno), - xfer->sumlen, usb2_get_speed(xfer->xroot->udev)); + pipe->address, UE_GET_ADDR(pipe->endpointno), + urb->sumlen, usb2_get_speed(pipe->xroot->udev)); - temp.average = xfer->max_hc_frame_size; - temp.max_frame_size = xfer->max_frame_size; - temp.sc = EHCI_BUS2SC(xfer->xroot->bus); + temp.average = pipe->max_hc_frame_size; + temp.max_frame_size = pipe->max_frame_size; + temp.sc = EHCI_BUS2SC(pipe->xroot->bus); /* toggle the DMA set we are using */ - xfer->flags_int.curr_dma_set ^= 1; + urb->flags_int.curr_dma_set ^= 1; /* get next DMA set */ - td = xfer->td_start[xfer->flags_int.curr_dma_set]; + td = urb->td_start[urb->flags_int.curr_dma_set]; - xfer->td_transfer_first = td; - xfer->td_transfer_cache = td; + urb->td_transfer_first = td; + urb->td_transfer_cache = td; temp.td = NULL; temp.td_next = td; temp.qtd_status = 0; temp.last_frame = 0; - temp.setup_alt_next = xfer->flags_int.short_frames_ok; + temp.setup_alt_next = urb->flags_int.short_frames_ok; - if (xfer->flags_int.control_xfr) { - if (xfer->endpoint->toggle_next) { + if (urb->flags_int.control_xfr) { + if (pipe->endpoint->toggle_next) { /* DATA1 is next */ temp.qtd_status |= htohc32(temp.sc, EHCI_QTD_SET_TOGGLE(1)); @@ -1749,15 +1755,15 @@ temp.auto_data_toggle = 1; } - if (usb2_get_speed(xfer->xroot->udev) != USB_SPEED_HIGH) { + if (usb2_get_speed(pipe->udev) != USB_SPEED_HIGH) { /* max 3 retries */ temp.qtd_status |= htohc32(temp.sc, EHCI_QTD_SET_CERR(3)); } /* check if we should prepend a setup message */ - if (xfer->flags_int.control_xfr) { - if (xfer->flags_int.control_hdr) { + if (urb->flags_int.control_xfr) { + if (urb->flags_int.control_hdr) { temp.qtd_status &= htohc32(temp.sc, EHCI_QTD_SET_CERR(3)); @@ -1766,13 +1772,13 @@ EHCI_QTD_SET_PID(EHCI_QTD_PID_SETUP) | EHCI_QTD_SET_TOGGLE(0)); - temp.len = xfer->frlengths[0]; - temp.pc = xfer->frbuffers + 0; + temp.len = urb->frlengths[0]; + temp.pc = urb->frbuffers + 0; temp.shortpkt = temp.len ? 1 : 0; /* check for last frame */ - if (xfer->nframes == 1) { + if (urb->nframes == 1) { /* no STATUS stage yet, SETUP is last */ - if (xfer->flags_int.control_act) { + if (urb->flags_int.control_act) { temp.last_frame = 1; temp.setup_alt_next = 0; } @@ -1784,19 +1790,19 @@ x = 0; } - while (x != xfer->nframes) { + while (x != urb->nframes) { /* DATA0 / DATA1 message */ - temp.len = xfer->frlengths[x]; - temp.pc = xfer->frbuffers + x; + temp.len = urb->frlengths[x]; + temp.pc = urb->frbuffers + x; x++; - if (x == xfer->nframes) { - if (xfer->flags_int.control_xfr) { + if (x == urb->nframes) { + if (urb->flags_int.control_xfr) { /* no STATUS stage yet, DATA is last */ - if (xfer->flags_int.control_act) { + if (urb->flags_int.control_act) { temp.last_frame = 1; temp.setup_alt_next = 0; } @@ -1821,13 +1827,13 @@ /* regular data transfer */ - temp.shortpkt = (xfer->flags.force_short_xfer) ? 0 : 1; + temp.shortpkt = (pipe->flags.force_short_xfer) ? 0 : 1; } /* set endpoint direction */ temp.qtd_status |= - (UE_GET_DIR(xfer->endpointno) == UE_DIR_IN) ? + (UE_GET_DIR(pipe->endpointno) == UE_DIR_IN) ? htohc32(temp.sc, EHCI_QTD_ACTIVE | EHCI_QTD_SET_PID(EHCI_QTD_PID_IN)) : htohc32(temp.sc, EHCI_QTD_ACTIVE | @@ -1838,8 +1844,8 @@ /* check if we should append a status stage */ - if (xfer->flags_int.control_xfr && - !xfer->flags_int.control_act) { + if (urb->flags_int.control_xfr && + !urb->flags_int.control_act) { /* * Send a DATA1 message and invert the current endpoint @@ -1849,7 +1855,7 @@ temp.qtd_status &= htohc32(temp.sc, EHCI_QTD_SET_CERR(3) | EHCI_QTD_SET_TOGGLE(1)); temp.qtd_status |= - (UE_GET_DIR(xfer->endpointno) == UE_DIR_OUT) ? + (UE_GET_DIR(pipe->endpointno) == UE_DIR_OUT) ? htohc32(temp.sc, EHCI_QTD_ACTIVE | EHCI_QTD_SET_PID(EHCI_QTD_PID_IN) | EHCI_QTD_SET_TOGGLE(1)) : @@ -1876,36 +1882,36 @@ /* must have at least one frame! */ - xfer->td_transfer_last = td; + urb->td_transfer_last = td; #if USB_DEBUG if (ehcidebug > 8) { DPRINTF("nexttog=%d; data before transfer:\n", - xfer->endpoint->toggle_next); + pipe->endpoint->toggle_next); ehci_dump_sqtds(temp.sc, - xfer->td_transfer_first); + urb->td_transfer_first); } #endif - methods = xfer->endpoint->methods; + methods = pipe->endpoint->methods; - qh = xfer->qh_start[xfer->flags_int.curr_dma_set]; + qh = urb->qh_start[urb->flags_int.curr_dma_set]; /* the "qh_link" field is filled when the QH is added */ qh_endp = - (EHCI_QH_SET_ADDR(xfer->address) | - EHCI_QH_SET_ENDPT(UE_GET_ADDR(xfer->endpointno)) | - EHCI_QH_SET_MPL(xfer->max_packet_size)); + (EHCI_QH_SET_ADDR(pipe->address) | + EHCI_QH_SET_ENDPT(UE_GET_ADDR(pipe->endpointno)) | + EHCI_QH_SET_MPL(pipe->max_packet_size)); - if (usb2_get_speed(xfer->xroot->udev) == USB_SPEED_HIGH) { + if (usb2_get_speed(pipe->xroot->udev) == USB_SPEED_HIGH) { qh_endp |= (EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH) | EHCI_QH_DTC); if (methods != &ehci_device_intr_methods) qh_endp |= EHCI_QH_SET_NRL(8); } else { - if (usb2_get_speed(xfer->xroot->udev) == USB_SPEED_FULL) { + if (usb2_get_speed(pipe->xroot->udev) == USB_SPEED_FULL) { qh_endp |= (EHCI_QH_SET_EPS(EHCI_QH_SPEED_FULL) | EHCI_QH_DTC); } else { @@ -1925,11 +1931,11 @@ qh->qh_endp = htohc32(temp.sc, qh_endp); qh_endphub = - (EHCI_QH_SET_MULT(xfer->max_packet_count & 3) | - EHCI_QH_SET_CMASK(xfer->usb2_cmask) | - EHCI_QH_SET_SMASK(xfer->usb2_smask) | - EHCI_QH_SET_HUBA(xfer->xroot->udev->hs_hub_addr) | - EHCI_QH_SET_PORT(xfer->xroot->udev->hs_port_no)); + (EHCI_QH_SET_MULT(pipe->max_packet_count & 3) | + EHCI_QH_SET_CMASK(pipe->usb2_cmask) | + EHCI_QH_SET_SMASK(pipe->usb2_smask) | + EHCI_QH_SET_HUBA(pipe->udev->hs_hub_addr) | + EHCI_QH_SET_PORT(pipe->udev->hs_port_no)); qh->qh_endphub = htohc32(temp.sc, qh_endphub); qh->qh_curqtd = htohc32(temp.sc, 0); @@ -1943,13 +1949,13 @@ qh->qh_endp &= htohc32(temp.sc, ~EHCI_QH_DTC); - if (xfer->endpoint->toggle_next) { + if (pipe->endpoint->toggle_next) { /* DATA1 is next */ qh->qh_qtd.qtd_status |= htohc32(temp.sc, EHCI_QTD_SET_TOGGLE(1)); } } - td = xfer->td_transfer_first; + td = urb->td_transfer_first; qh->qh_qtd.qtd_next = td->qtd_self; qh->qh_qtd.qtd_altnext = @@ -1957,7 +1963,7 @@ usb2_pc_cpu_flush(qh->page_cache); - if (xfer->xroot->udev->flags.self_suspended == 0) { + if (pipe->udev->flags.self_suspended == 0) { EHCI_APPEND_QH(qh, *qh_last); } } @@ -1990,17 +1996,18 @@ } static void -ehci_isoc_fs_done(ehci_softc_t *sc, struct usb_xfer *xfer) +ehci_isoc_fs_done(ehci_softc_t *sc, struct usb_urb *urb) { - uint32_t nframes = xfer->nframes; + struct usb_pipe *pipe = urb->ub_pipe; + uint32_t nframes = urb->nframes; uint32_t status; - uint32_t *plen = xfer->frlengths; + uint32_t *plen = urb->frlengths; uint16_t len = 0; - ehci_sitd_t *td = xfer->td_transfer_first; - ehci_sitd_t **pp_last = &sc->sc_isoc_fs_p_last[xfer->qh_pos]; + ehci_sitd_t *td = urb->td_transfer_first; + ehci_sitd_t **pp_last = &sc->sc_isoc_fs_p_last[pipe->qh_pos]; - DPRINTFN(13, "xfer=%p endpoint=%p transfer done\n", - xfer, xfer->endpoint); + DPRINTFN(13, "urb=%p endpoint=%p transfer done\n", + urb, pipe->endpoint); while (nframes--) { if (td == NULL) { @@ -2039,22 +2046,23 @@ td = td->obj_next; } - xfer->aframes = xfer->nframes; + urb->aframes = urb->nframes; } static void -ehci_isoc_hs_done(ehci_softc_t *sc, struct usb_xfer *xfer) +ehci_isoc_hs_done(ehci_softc_t *sc, struct usb_urb *urb) { - uint32_t nframes = xfer->nframes; + struct usb_pipe *pipe = urb->ub_pipe; + uint32_t nframes = urb->nframes; uint32_t status; - uint32_t *plen = xfer->frlengths; + uint32_t *plen = urb->frlengths; uint16_t len = 0; uint8_t td_no = 0; - ehci_itd_t *td = xfer->td_transfer_first; - ehci_itd_t **pp_last = &sc->sc_isoc_hs_p_last[xfer->qh_pos]; + ehci_itd_t *td = urb->td_transfer_first; + ehci_itd_t **pp_last = &sc->sc_isoc_hs_p_last[pipe->qh_pos]; - DPRINTFN(13, "xfer=%p endpoint=%p transfer done\n", - xfer, xfer->endpoint); + DPRINTFN(13, "urb=%p endpoint=%p transfer done\n", + urb, pipe->endpoint); while (nframes--) { if (td == NULL) { @@ -2104,92 +2112,94 @@ td = td->obj_next; } } - xfer->aframes = xfer->nframes; + urb->aframes = urb->nframes; } /* NOTE: "done" can be run two times in a row, * from close and from interrupt */ static void -ehci_device_done(struct usb_xfer *xfer, usb_error_t error) +ehci_device_done(struct usb_urb *urb, usb_error_t error) { - struct usb_pipe_methods *methods = xfer->endpoint->methods; - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + struct usb_pipe_methods *methods = pipe->endpoint->methods; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); USB_BUS_LOCK_ASSERT(&sc->sc_bus, MA_OWNED); - DPRINTFN(2, "xfer=%p, endpoint=%p, error=%d\n", - xfer, xfer->endpoint, error); + DPRINTFN(2, "urb=%p, endpoint=%p, error=%d\n", + urb, pipe->endpoint, error); if ((methods == &ehci_device_bulk_methods) || (methods == &ehci_device_ctrl_methods)) { #if USB_DEBUG if (ehcidebug > 8) { DPRINTF("nexttog=%d; data after transfer:\n", - xfer->endpoint->toggle_next); + pipe->endpoint->toggle_next); ehci_dump_sqtds(sc, - xfer->td_transfer_first); + urb->td_transfer_first); } #endif - EHCI_REMOVE_QH(xfer->qh_start[xfer->flags_int.curr_dma_set], + EHCI_REMOVE_QH(urb->qh_start[urb->flags_int.curr_dma_set], sc->sc_async_p_last); } if (methods == &ehci_device_intr_methods) { - EHCI_REMOVE_QH(xfer->qh_start[xfer->flags_int.curr_dma_set], - sc->sc_intr_p_last[xfer->qh_pos]); + EHCI_REMOVE_QH(urb->qh_start[urb->flags_int.curr_dma_set], + sc->sc_intr_p_last[pipe->qh_pos]); } /* * Only finish isochronous transfers once which will update - * "xfer->frlengths". + * "urb->frlengths". */ - if (xfer->td_transfer_first && - xfer->td_transfer_last) { + if (urb->td_transfer_first && + urb->td_transfer_last) { if (methods == &ehci_device_isoc_fs_methods) { - ehci_isoc_fs_done(sc, xfer); + ehci_isoc_fs_done(sc, urb); } if (methods == &ehci_device_isoc_hs_methods) { - ehci_isoc_hs_done(sc, xfer); + ehci_isoc_hs_done(sc, urb); } - xfer->td_transfer_first = NULL; - xfer->td_transfer_last = NULL; + urb->td_transfer_first = NULL; + urb->td_transfer_last = NULL; } /* dequeue transfer and start next transfer */ - usb2_transfer_done(xfer, error); + usb2_transfer_done(urb, error); } /*------------------------------------------------------------------------* * ehci bulk support *------------------------------------------------------------------------*/ static void -ehci_device_bulk_open(struct usb_xfer *xfer) +ehci_device_bulk_open(struct usb_urb *urb) { return; } static void -ehci_device_bulk_close(struct usb_xfer *xfer) +ehci_device_bulk_close(struct usb_urb *urb) { - ehci_device_done(xfer, USB_ERR_CANCELLED); + ehci_device_done(urb, USB_ERR_CANCELLED); } static void -ehci_device_bulk_enter(struct usb_xfer *xfer) +ehci_device_bulk_enter(struct usb_urb *urb) { return; } static void -ehci_device_bulk_start(struct usb_xfer *xfer) +ehci_device_bulk_start(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); uint32_t temp; /* setup TD's and QH */ - ehci_setup_standard_chain(xfer, &sc->sc_async_p_last); + ehci_setup_standard_chain(urb, &sc->sc_async_p_last); /* put transfer on interrupt queue */ - ehci_transfer_intr_enqueue(xfer); + ehci_transfer_intr_enqueue(urb); /* XXX Performance quirk: Some Host Controllers have a too low * interrupt rate. Issue an IAAD to stimulate the Host @@ -2212,33 +2222,34 @@ * ehci control support *------------------------------------------------------------------------*/ static void -ehci_device_ctrl_open(struct usb_xfer *xfer) +ehci_device_ctrl_open(struct usb_urb *urb) { return; } static void -ehci_device_ctrl_close(struct usb_xfer *xfer) +ehci_device_ctrl_close(struct usb_urb *urb) { - ehci_device_done(xfer, USB_ERR_CANCELLED); + ehci_device_done(urb, USB_ERR_CANCELLED); } static void -ehci_device_ctrl_enter(struct usb_xfer *xfer) +ehci_device_ctrl_enter(struct usb_urb *urb) { return; } static void -ehci_device_ctrl_start(struct usb_xfer *xfer) +ehci_device_ctrl_start(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); /* setup TD's and QH */ - ehci_setup_standard_chain(xfer, &sc->sc_async_p_last); + ehci_setup_standard_chain(urb, &sc->sc_async_p_last); /* put transfer on interrupt queue */ - ehci_transfer_intr_enqueue(xfer); + ehci_transfer_intr_enqueue(urb); } struct usb_pipe_methods ehci_device_ctrl_methods = @@ -2253,9 +2264,10 @@ * ehci interrupt support *------------------------------------------------------------------------*/ static void -ehci_device_intr_open(struct usb_xfer *xfer) +ehci_device_intr_open(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); uint16_t best; uint16_t bit; uint16_t x; @@ -2264,16 +2276,16 @@ /* Allocate a microframe slot first: */ slot = usb2_intr_schedule_adjust - (xfer->xroot->udev, xfer->max_frame_size, USB_HS_MICRO_FRAMES_MAX); + (pipe->xroot->udev, pipe->max_frame_size, USB_HS_MICRO_FRAMES_MAX); - if (usb2_get_speed(xfer->xroot->udev) == USB_SPEED_HIGH) { - xfer->usb2_uframe = slot; - xfer->usb2_smask = (1 << slot) & 0xFF; - xfer->usb2_cmask = 0; + if (usb2_get_speed(pipe->xroot->udev) == USB_SPEED_HIGH) { + pipe->usb2_uframe = slot; + pipe->usb2_smask = (1 << slot) & 0xFF; + pipe->usb2_cmask = 0; } else { - xfer->usb2_uframe = slot; - xfer->usb2_smask = (1 << slot) & 0x3F; - xfer->usb2_cmask = (-(4 << slot)) & 0xFE; + pipe->usb2_uframe = slot; + pipe->usb2_smask = (1 << slot) & 0x3F; + pipe->usb2_cmask = (-(4 << slot)) & 0xFE; } /* @@ -2283,7 +2295,7 @@ best = 0; bit = EHCI_VIRTUAL_FRAMELIST_COUNT / 2; while (bit) { - if (xfer->interval >= bit) { + if (pipe->interval >= bit) { x = bit; best = bit; while (x & bit) { @@ -2299,42 +2311,44 @@ } sc->sc_intr_stat[best]++; - xfer->qh_pos = best; + pipe->qh_pos = best; DPRINTFN(3, "best=%d interval=%d\n", - best, xfer->interval); + best, pipe->interval); } static void -ehci_device_intr_close(struct usb_xfer *xfer) +ehci_device_intr_close(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); uint8_t slot; slot = usb2_intr_schedule_adjust - (xfer->xroot->udev, -(xfer->max_frame_size), xfer->usb2_uframe); + (pipe->xroot->udev, -(pipe->max_frame_size), pipe->usb2_uframe); - sc->sc_intr_stat[xfer->qh_pos]--; + sc->sc_intr_stat[pipe->qh_pos]--; - ehci_device_done(xfer, USB_ERR_CANCELLED); + ehci_device_done(urb, USB_ERR_CANCELLED); } static void -ehci_device_intr_enter(struct usb_xfer *xfer) +ehci_device_intr_enter(struct usb_urb *urb) { return; } static void -ehci_device_intr_start(struct usb_xfer *xfer) +ehci_device_intr_start(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); /* setup TD's and QH */ - ehci_setup_standard_chain(xfer, &sc->sc_intr_p_last[xfer->qh_pos]); + ehci_setup_standard_chain(urb, &sc->sc_intr_p_last[pipe->qh_pos]); /* put transfer on interrupt queue */ - ehci_transfer_intr_enqueue(xfer); + ehci_transfer_intr_enqueue(urb); } struct usb_pipe_methods ehci_device_intr_methods = @@ -2349,20 +2363,21 @@ * ehci full speed isochronous support *------------------------------------------------------------------------*/ static void -ehci_device_isoc_fs_open(struct usb_xfer *xfer) +ehci_device_isoc_fs_open(struct usb_urb *urb) { - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; + ehci_softc_t *sc = EHCI_BUS2SC(pipe->xroot->bus); ehci_sitd_t *td; uint32_t sitd_portaddr; uint8_t ds; sitd_portaddr = - EHCI_SITD_SET_ADDR(xfer->address) | - EHCI_SITD_SET_ENDPT(UE_GET_ADDR(xfer->endpointno)) | - EHCI_SITD_SET_HUBA(xfer->xroot->udev->hs_hub_addr) | - EHCI_SITD_SET_PORT(xfer->xroot->udev->hs_port_no); + EHCI_SITD_SET_ADDR(pipe->address) | + EHCI_SITD_SET_ENDPT(UE_GET_ADDR(pipe->endpointno)) | + EHCI_SITD_SET_HUBA(pipe->xroot->udev->hs_hub_addr) | + EHCI_SITD_SET_PORT(pipe->xroot->udev->hs_port_no); - if (UE_GET_DIR(xfer->endpointno) == UE_DIR_IN) { + if (UE_GET_DIR(pipe->endpointno) == UE_DIR_IN) { sitd_portaddr |= EHCI_SITD_SET_DIR_IN; } sitd_portaddr = htohc32(sc, sitd_portaddr); @@ -2371,7 +2386,7 @@ for (ds = 0; ds != 2; ds++) { - for (td = xfer->td_start[ds]; td; td = td->obj_next) { + for (td = urb->td_start[ds]; td; td = td->obj_next) { td->sitd_portaddr = sitd_portaddr; @@ -2390,16 +2405,17 @@ } static void -ehci_device_isoc_fs_close(struct usb_xfer *xfer) +ehci_device_isoc_fs_close(struct usb_urb *urb) { - ehci_device_done(xfer, USB_ERR_CANCELLED); + ehci_device_done(urb, USB_ERR_CANCELLED); } static void -ehci_device_isoc_fs_enter(struct usb_xfer *xfer) +ehci_device_isoc_fs_enter(struct usb_urb *urb) { struct usb_page_search buf_res; - ehci_softc_t *sc = EHCI_BUS2SC(xfer->xroot->bus); + struct usb_pipe *pipe = urb->ub_pipe; >>> TRUNCATED FOR MAIL (1000 lines) <<< From dforsyth at FreeBSD.org Wed Jun 3 04:20:36 2009 From: dforsyth at FreeBSD.org (David Forsythe) Date: Wed Jun 3 04:20:42 2009 Subject: PERFORCE change 163398 for review Message-ID: <200906030420.n534KZ4r071223@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163398 Change 163398 by dforsyth@squirrel on 2009/06/03 04:20:14 Cleaned up the build. Affected files ... .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/Makefile#2 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#6 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_contents.c#2 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_private.h#2 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#7 edit .. //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.h#4 edit .. //depot/projects/soc2009/dforsyth_libpkg/pkg_info/main.c#2 edit Differences ... ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/Makefile#2 (text+ko) ==== @@ -1,7 +1,7 @@ LIB= pkg INCS= pkg.h WARNS?= 6 -SRCS= pkgdb.c pkg_info.c pkg.c pkg_util.c +SRCS= pkgdb.c pkg_contents.c pkg.c pkg_util.c NO_MAN= yes .include ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg.c#6 (text+ko) ==== @@ -45,7 +45,7 @@ if (comment == NULL) { /* embrace it... */ - p->comment = comment; + p->comment = NULL; return (p); } @@ -64,11 +64,13 @@ return (p); } +#if 0 struct pkg * pkg_set_pkg_contents(struct pkg *p, struct pkg_contents *pc) { return (p); } +#endif char * ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_contents.c#2 (text+ko) ==== @@ -31,10 +31,6 @@ struct pkg_contents * pkg_contents_read_info_from_text(const char *text) { - int newline_pos; - int line_len; - char *line; - int meta; struct pkg_contents *pi; /* This function will parse text and create a pkg_contents */ ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkg_private.h#2 (text+ko) ==== @@ -1,6 +1,13 @@ #ifndef __PKG_PRIVATE_H__ #define __PKG_PRIVATE_H__ -/* Hey look at me I'm empty. */ +struct pkg { + TAILQ_ENTRY(pkg) next; + + char *ident; /* User given name for this pkg. */ + + char *comment; /* Mmmmm, should be 70 or less, right? */ + struct pkg_contents *contents; +}; #endif ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.c#7 (text+ko) ==== @@ -6,8 +6,10 @@ #include #include #include +#include #include #include +#include #include "pkg_util.h" #include "pkg_contents.h" ==== //depot/projects/soc2009/dforsyth_libpkg/libpkg/pkgdb.h#4 (text+ko) ==== @@ -1,17 +1,9 @@ #ifndef __PKGDB_H__ #define __PKGDB_H__ -#include "pkg_info.h" +#include "pkg_contents.h" #include -struct pkg { - TAILQ_ENTRY(pkg) next; - - char *ident; /* User given name for this pkg. */ - - char *comment; /* Mmmmm, should be 70 or less, right? */ - struct pkg_contents *contents; -}; struct pkgdb { int dirty; /* changes have been made to this database. */ @@ -26,4 +18,13 @@ /* Callbacks */ }; +void pkgdb_pkg_list_init(struct pkgdb *db); +struct pkg *pkgdb_pkg_list_first(struct pkgdb *db); +void pkgdb_pkg_list_append(struct pkgdb *db, struct pkg *p); + +char *pkgdb_read_file_to_text(struct pkgdb *db, struct pkg *p, + const char *filename); + +void pkgdb_free_pkg_list(struct pkgdb *db); + #endif ==== //depot/projects/soc2009/dforsyth_libpkg/pkg_info/main.c#2 (text+ko) ==== @@ -13,11 +13,13 @@ short opt_show_comment = 0; char *info_targets; +#if 0 static char opts[] = "a"; static struct option lopts[] = { {"all", no_argument, NULL, 'a'}, {NULL, 0, NULL, 0}, // <-- something that pkg_add in 7.2 forgot... }; +#endif /* Mock pkg_info for testing, */ @@ -32,11 +34,11 @@ const char *db_root; struct pkgdb *db; - if (argc == 1) { + if (argc == 1 && argv != NULL /* Giving argv something to do */) { opt_all = 1; } - parse_opts(argc, argv); + /* parse_opts(argc, argv); */ db_root = getenv("PKG_DBDIR"); /* User set it */ if (db_root == NULL) @@ -60,18 +62,20 @@ exit(exit_val); } +#if 0 void parse_opts(int argc, char **argv) { /* Ehh... Worthless to write this at this point. */ opt_all = 1; } +#endif void perform_on_db(struct pkgdb *db) { int count; - char *target; + /* char *target; */ struct pkg *p; /* There will be cases where an init is useless, but since I haven't From kientzle at freebsd.org Wed Jun 3 05:14:06 2009 From: kientzle at freebsd.org (Tim Kientzle) Date: Wed Jun 3 05:14:12 2009 Subject: PERFORCE change 163398 for review In-Reply-To: <200906030420.n534KZ4r071223@repoman.freebsd.org> References: <200906030420.n534KZ4r071223@repoman.freebsd.org> Message-ID: <4A25FE1D.8030105@freebsd.org> David Forsythe wrote: > http://perforce.freebsd.org/chv.cgi?CH=163398 > > Change 163398 by dforsyth@squirrel on 2009/06/03 04:20:14 > > Cleaned up the build. Thank you. T From pgj at FreeBSD.org Wed Jun 3 08:12:32 2009 From: pgj at FreeBSD.org (Gabor Pali) Date: Wed Jun 3 08:12:39 2009 Subject: PERFORCE change 163402 for review Message-ID: <200906030812.n538CUaa004261@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163402 Change 163402 by pgj@beehive on 2009/06/03 08:12:12 IFC Affected files ... .. //depot/projects/docproj_hu/doc/hu_HU.ISO8859-2/books/handbook/config/chapter.sgml#25 integrate .. //depot/projects/docproj_hu/doc/hu_HU.ISO8859-2/books/handbook/mirrors/chapter.sgml#31 integrate .. //depot/projects/docproj_hu/doc/share/pgpkeys/pgpkeys-developers.sgml#26 integrate .. //depot/projects/docproj_hu/doc/share/sgml/man-refs.ent#19 integrate .. //depot/projects/docproj_hu/www/en/gnome/docs/faq2.sgml#5 integrate .. //depot/projects/docproj_hu/www/en/index.xsl#5 integrate .. //depot/projects/docproj_hu/www/en/projects/netperf/index.sgml#2 integrate .. //depot/projects/docproj_hu/www/en/releng/index.sgml#27 integrate .. //depot/projects/docproj_hu/www/share/sgml/header.ent#3 integrate .. //depot/projects/docproj_hu/www/share/sgml/templates.news-rdf.xsl#2 integrate .. //depot/projects/docproj_hu/www/share/sgml/templates.news-rss.xsl#2 integrate .. //depot/projects/docproj_hu/www/share/sgml/templates.press-rss.xsl#2 integrate .. //depot/projects/docproj_hu/www/share/sgml/templates.usergroups.xsl#2 integrate Differences ... ==== //depot/projects/docproj_hu/doc/hu_HU.ISO8859-2/books/handbook/config/chapter.sgml#25 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -741,6 +741,11 @@ &pgpkey.nemoliu; + + &a.zml; + &pgpkey.zml; + + &a.nox; &pgpkey.nox; @@ -756,11 +761,6 @@ &pgpkey.rene; - - &a.zml; - &pgpkey.zml; - - &a.avl; &pgpkey.avl; ==== //depot/projects/docproj_hu/doc/share/sgml/man-refs.ent#19 (text+ko) ==== @@ -20,7 +20,7 @@ lexicographical order by the entity (i.e., the dots used in place of special characters should not be expanded when comparing). - $FreeBSD: doc/share/sgml/man-refs.ent,v 1.486 2009/05/16 10:47:00 brueffer Exp $ + $FreeBSD: doc/share/sgml/man-refs.ent,v 1.487 2009/06/02 01:34:15 gabor Exp $ --> @@ -4723,6 +4723,7 @@ + ==== //depot/projects/docproj_hu/www/en/gnome/docs/faq2.sgml#5 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -1105,14 +1105,13 @@

        Up until GNOME 2.20, GDM would read the locale settings from /etc/login.conf or ~/.login.conf. - This was broken in 2.20, and since GDM 2.22 will use - a new locale scheme, it will not be fixed. However, all - hope is not lost. It is actually very easy to set the - locale for use with the GNOME Destop. GDM offers a - pull-down Language menu from which you can choose your - current locale. If you would rather not use this menu, - you can set the locale by adding the following to - ~/.profile:

        + This was broken in 2.20, and finally restored in GDM + 2.26.1_3.

        + +

        However, GDM also offers a pull-down Language menu from which + you can choose your current locale. If you would rather not + use this menu or /etc/login.conf, you can set the + locale by adding the following to ~/.profile:

         export LANG=<locale>
        @@ -1123,7 +1122,9 @@
         	      (e.g. en_US.UTF-8, es_ES.ISO8859-15, fr_FR.ISO8859-1, etc.).

        To set the default locale for the GDM greeter, add the - same environment variables to /etc/profile.

        + same environment variables to /etc/profile or + define gdm_lang to the desired locale + in /etc/rc.conf.

        ==== //depot/projects/docproj_hu/www/en/index.xsl#5 (text+ko) ==== @@ -4,7 +4,7 @@ ]> - + @@ -34,6 +34,13 @@ CVS, CVSup, News, Commercial Vendors, homepage, CTM, Unix"/> + @@ -159,6 +166,9 @@ ja
      • + nl +
      • +
      • ru
      • ==== //depot/projects/docproj_hu/www/en/projects/netperf/index.sgml#2 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -53,11 +53,10 @@ will work toward these goals:

          -
        • Complete locking work to make sure all components of the stack - are able to run without the Giant lock. While most of the network - stack, especially mainstream protocols, runs without Giant, some - components require Giant to be placed back over the stack if compiled - into the kernel, reducing parallelism.

        • +
        • The Netperf project has completed locking work for all components + of the network stack; as of FreeBSD 7.0 we have removed non-MPSAFE + protocol shims, and as of FreeBSD 8.0 we have removed non-MPSAFE + device driver shims.

        • Optimize locking strategies to find better balances between locking granularity and locking overhead. In the first cut at locking @@ -126,7 +125,8 @@ increasing effective CPU utilization and hence throughput. For example, introducing additional netisr threads capable of running on more than one CPU at a time can increase input parallelism, subject - to maintaining desirable packet ordering.

        • + to maintaining desirable packet ordering (present in FreeBSD + 8.0).

        @@ -204,13 +204,12 @@
      • Employ queued dispatch across netisr dispatch API &a.rwatson; 20041124 &status.prototyped; Pull all of the mbufs in the netisr ifqueue out of the ifqueue - into a thread-local mbuf queue to avoid repeated lock operations - to access the queue. Also use lock-free operations to test for - queue contents being present. This has been prototyped in the - rwatson_netperf branch. 20090601 &status.done Pull all of the mbufs in the netisr queue into a thread-local + mbuf queue to avoid repeated lock operations to access the queue. + This work was completed as part of the netisr2 project, and will + ship with 8.0-RELEASE.
        Add true inpcb reference count support &a.mohans;, &a.rwatson;, &a.peter; 20060412 &status.new; Currently, the in-bound TCP and UDP socket paths rely on the + 20081208 &status.done; Historically, the in-bound TCP and UDP socket paths relied on global pcbinfo info locks to prevent PCBs being delivered to from being garbage collected by another thread while in use. This set of changes introduces a true reference model for PCBs so that the - global lock can be released during in-bound process.
        Fine-grained locking for UNIX domain sockets &a.rwatson; 20060416 &status.prototyped; Currently, UNIX domain sockets in FreeBSD 5.x and 6.x use a - single global subsystem lock. This is sufficient to allow it to - run without Giant, but results in contention with large numbers - of processors simultaneously operating on UNIX domain sockets. - This task introduces per-protocol control block locks in order - to reduce contention on a larger subsystem lock. 20070226 &status.done; UNIX domain sockets in FreeBSD 5.x and 6.x use a single global + subsystem lock. This is sufficient to allow it to run without + Giant, but results in contention with large numbers of processors + simultaneously operating on UNIX domain sockets. This task + introduced per-protocol control block locks in order to reduce + contention on a larger subsystem lock, and the results appeared in + 7.0-RELEASE.
        Multiple netisr threads &a.rwatson; 20090601 &status.done; Historically, the BSD network stack has used a single network + software interrupt context, for deferred network processing. With + the introduction of multi-processing, this became a single + software interrupt thread. In FreeBSD 8.0, multiple netisr + threads are now supported, up to the number of CPUs present in the + system.
        ==== //depot/projects/docproj_hu/www/en/releng/index.sgml#27 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -56,7 +56,7 @@
        August 2009 FreeBSD 8.0 code slush since June 1st
        ==== //depot/projects/docproj_hu/www/share/sgml/header.ent#3 (text+ko) ==== @@ -1,4 +1,4 @@ - + @@ -46,12 +46,26 @@ + '> ]]> + '> ==== //depot/projects/docproj_hu/www/share/sgml/templates.news-rdf.xsl#2 (text+ko) ==== @@ -5,14 +5,14 @@ ]> - + - + ==== //depot/projects/docproj_hu/www/share/sgml/templates.news-rss.xsl#2 (text+ko) ==== @@ -7,7 +7,7 @@ ]> - + - + ==== //depot/projects/docproj_hu/www/share/sgml/templates.press-rss.xsl#2 (text+ko) ==== @@ -7,7 +7,7 @@ ]> - + + - From pgj at FreeBSD.org Wed Jun 3 08:43:03 2009 From: pgj at FreeBSD.org (Gabor Pali) Date: Wed Jun 3 08:43:10 2009 Subject: PERFORCE change 163406 for review Message-ID: <200906030843.n538h1v1006815@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163406 Change 163406 by pgj@beehive on 2009/06/03 08:42:27 MFen (www): 1.167 -> 1.169 hu/index.xsl 1.10 -> 1.11 hu/share/sgml/header.l10n.ent 1.2 -> 1.3 hu/share/sgml/templates.news-rdf.xsl 1.2 -> 1.3 hu/share/sgml/templates.news-rss.xsl 1.1 -> 1.2 hu/share/sgml/templates.press-rss.xsl Affected files ... .. //depot/projects/docproj_hu/www/hu/index.xsl#23 edit .. //depot/projects/docproj_hu/www/hu/share/sgml/header.l10n.ent#11 edit .. //depot/projects/docproj_hu/www/hu/share/sgml/templates.news-rdf.xsl#4 edit .. //depot/projects/docproj_hu/www/hu/share/sgml/templates.news-rss.xsl#4 edit .. //depot/projects/docproj_hu/www/hu/share/sgml/templates.press-rss.xsl#4 edit Differences ... ==== //depot/projects/docproj_hu/www/hu/index.xsl#23 (text+ko) ==== @@ -9,7 +9,7 @@ @@ -167,6 +167,9 @@ ja
      • + nl +
      • +
      • ru
      • ==== //depot/projects/docproj_hu/www/hu/share/sgml/header.l10n.ent#11 (text+ko) ==== @@ -4,7 +4,7 @@ ==== //depot/projects/docproj_hu/www/hu/share/sgml/templates.news-rdf.xsl#4 (text+ko) ==== @@ -10,7 +10,7 @@ - + ==== //depot/projects/docproj_hu/www/hu/share/sgml/templates.news-rss.xsl#4 (text+ko) ==== @@ -12,7 +12,7 @@ - - + + ==== //depot/projects/docproj_hu/www/hu/share/sgml/templates.press-rss.xsl#4 (text+ko) ==== @@ -38,7 +38,7 @@ - + From hselasky at FreeBSD.org Wed Jun 3 13:58:23 2009 From: hselasky at FreeBSD.org (Hans Petter Selasky) Date: Wed Jun 3 13:58:29 2009 Subject: PERFORCE change 163414 for review Message-ID: <200906031358.n53DwLLC058173@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163414 Change 163414 by hselasky@hselasky_laptop001 on 2009/06/03 13:57:30 USB input: - remove duplicate variable setting - reported by Sylvestre Gallon Affected files ... .. //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#17 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#17 (text+ko) ==== @@ -706,7 +706,6 @@ sc->sc_iface_index = uaa->info.bIfaceIndex; sc->sc_iface_no = uaa->info.bIfaceNum; sc->sc_mode = K_XLATE; - sc->sc_iface = uaa->iface; usb2_callout_init_mtx(&sc->sc_callout, &Giant, 0); From pgj at FreeBSD.org Wed Jun 3 15:05:39 2009 From: pgj at FreeBSD.org (Gabor Pali) Date: Wed Jun 3 15:05:44 2009 Subject: PERFORCE change 163418 for review Message-ID: <200906031505.n53F5UGZ065861@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163418 Change 163418 by pgj@petymeg-current on 2009/06/03 15:04:33 Add a very initial version of the netstat library, to be filled incrementally. Affected files ... .. //depot/projects/soc2009/pgj_libstat/src/lib/Makefile#2 edit .. //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/Makefile#1 add .. //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/netstat.h#1 add .. //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/netstat_internal.h#1 add .. //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/netstat_util.c#1 add .. //depot/projects/soc2009/pgj_libstat/src/share/mk/bsd.libnames.mk#2 edit Differences ... ==== //depot/projects/soc2009/pgj_libstat/src/lib/Makefile#2 (text+ko) ==== @@ -36,7 +36,7 @@ libdwarf libedit libexpat libfetch libftpio libgeom ${_libgpib} \ ${_libgssapi} ${_librpcsec_gss} libipsec \ ${_libipx} libkiconv libmagic libmemstat ${_libmilter} ${_libmp} \ - ${_libncp} ${_libngatm} libopie libpam libpcap \ + libnetstat ${_libncp} ${_libngatm} libopie libpam libpcap \ ${_libpmc} libproc librt ${_libsdp} ${_libsm} ${_libsmb} \ ${_libsmdb} \ ${_libsmutil} libstand ${_libtelnet} ${_libthr} libthread_db libufs \ ==== //depot/projects/soc2009/pgj_libstat/src/share/mk/bsd.libnames.mk#2 (text+ko) ==== @@ -96,6 +96,7 @@ LIBNCURSES?= ${DESTDIR}${LIBDIR}/libncurses.a LIBNCURSESW?= ${DESTDIR}${LIBDIR}/libncursesw.a LIBNETGRAPH?= ${DESTDIR}${LIBDIR}/libnetgraph.a +LIBNETSTAT?= ${DESTDIR}${LIBDIR}/libnetstat.a LIBNGATM?= ${DESTDIR}${LIBDIR}/libngatm.a LIBNVPAIR?= ${DESTDIR}${LIBDIR}/libnvpair.a LIBOBJC?= ${DESTDIR}${LIBDIR}/libobjc.a From gk at FreeBSD.org Wed Jun 3 15:09:36 2009 From: gk at FreeBSD.org (Gleb Kurtsou) Date: Wed Jun 3 15:09:42 2009 Subject: PERFORCE change 163419 for review Message-ID: <200906031509.n53F9YvM066133@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163419 Change 163419 by gk@gk_h1 on 2009/06/03 15:09:09 reorganize Milestones a little Affected files ... .. //depot/projects/soc2009/gk_pefs/Milestones#2 edit Differences ... ==== //depot/projects/soc2009/gk_pefs/Milestones#2 (text+ko) ==== @@ -1,10 +1,11 @@ Milestones -* May 23 - June 14. Use codebase as a start point. Add trivial -encryption (XOR, single key) to simplify development. +* May 23 - June 7. Use codebase as a start point. + +* June 8 - June 14. Add XTS implementation into kernel. -* June 15 - June 21. Import XTS implementation into kernel. (I already have one, -but it's too memory hungry, fix it, or use one from OpenBSD) +* June 15 - June 21. Add trivial encryption (XOR, single key) to simplify +development. * June 22 - July 5. Add kernel device for specifying keys for mounted filesystem. Add userspace configuration utility. From zec at FreeBSD.org Wed Jun 3 15:43:10 2009 From: zec at FreeBSD.org (Marko Zec) Date: Wed Jun 3 15:43:17 2009 Subject: PERFORCE change 163420 for review Message-ID: <200906031543.n53Fh8WX068941@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163420 Change 163420 by zec@zec_amdx4 on 2009/06/03 15:43:03 Fix misinntegration. Affected files ... .. //depot/projects/vimage/src/sys/netinet6/in6_proto.c#41 edit Differences ... ==== //depot/projects/vimage/src/sys/netinet6/in6_proto.c#41 (text+ko) ==== @@ -450,9 +450,6 @@ sysctl_ip6_temppltime(SYSCTL_HANDLER_ARGS) { INIT_VNET_INET6(curvnet); -#ifdef VIMAGE - SYSCTL_RESOLVE_V_ARG1(); -#endif int error = 0; int old; @@ -475,9 +472,6 @@ sysctl_ip6_tempvltime(SYSCTL_HANDLER_ARGS) { INIT_VNET_INET6(curvnet); -#ifdef VIMAGE - SYSCTL_RESOLVE_V_ARG1(); -#endif int error = 0; int old; From thompsa at FreeBSD.org Wed Jun 3 15:47:15 2009 From: thompsa at FreeBSD.org (Andrew Thompson) Date: Wed Jun 3 15:47:25 2009 Subject: PERFORCE change 163421 for review Message-ID: <200906031547.n53FlDIx069249@repoman.freebsd.org> http://perforce.freebsd.org/chv.cgi?CH=163421 Change 163421 by thompsa@thompsa_burger on 2009/06/03 15:46:24 IFC Affected files ... .. //depot/projects/usb_buf/src/lib/libusb/libusb.3#5 integrate .. //depot/projects/usb_buf/src/lib/libusb/libusb20.c#3 integrate .. //depot/projects/usb_buf/src/lib/libusb/libusb20.h#3 integrate .. //depot/projects/usb_buf/src/lib/libusb/libusb20_int.h#2 integrate .. //depot/projects/usb_buf/src/lib/libusb/libusb20_ugen20.c#2 integrate .. //depot/projects/usb_buf/src/lib/libusbhid/descr.c#2 integrate .. //depot/projects/usb_buf/src/sys/amd64/conf/GENERIC#2 integrate .. //depot/projects/usb_buf/src/sys/amd64/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/amd64/linux32/linux.h#3 integrate .. //depot/projects/usb_buf/src/sys/amd64/linux32/linux32_sysent.c#2 integrate .. //depot/projects/usb_buf/src/sys/arm/xscale/ixp425/if_npe.c#3 integrate .. //depot/projects/usb_buf/src/sys/arm/xscale/ixp425/ixp425_qmgr.c#2 integrate .. //depot/projects/usb_buf/src/sys/arm/xscale/ixp425/ixp425_qmgr.h#2 integrate .. //depot/projects/usb_buf/src/sys/boot/common/boot.c#2 integrate .. //depot/projects/usb_buf/src/sys/boot/i386/libi386/biosdisk.c#2 integrate .. //depot/projects/usb_buf/src/sys/boot/uboot/lib/net.c#2 integrate .. //depot/projects/usb_buf/src/sys/cddl/compat/opensolaris/sys/acl.h#1 branch .. //depot/projects/usb_buf/src/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c#2 integrate .. //depot/projects/usb_buf/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#2 integrate .. //depot/projects/usb_buf/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#2 integrate .. //depot/projects/usb_buf/src/sys/compat/freebsd32/freebsd32_sysent.c#2 integrate .. //depot/projects/usb_buf/src/sys/compat/linux/linux_socket.c#4 integrate .. //depot/projects/usb_buf/src/sys/compat/svr4/svr4_stat.c#3 integrate .. //depot/projects/usb_buf/src/sys/compat/svr4/svr4_sysent.c#2 integrate .. //depot/projects/usb_buf/src/sys/conf/NOTES#4 integrate .. //depot/projects/usb_buf/src/sys/conf/files#6 integrate .. //depot/projects/usb_buf/src/sys/conf/files.powerpc#4 integrate .. //depot/projects/usb_buf/src/sys/conf/options#4 integrate .. //depot/projects/usb_buf/src/sys/contrib/dev/mwl/LICENSE#1 branch .. //depot/projects/usb_buf/src/sys/contrib/dev/mwl/Makefile#1 branch .. //depot/projects/usb_buf/src/sys/contrib/dev/mwl/mw88W8363.fw.uu#1 branch .. //depot/projects/usb_buf/src/sys/contrib/dev/mwl/mwlboot.fw.uu#1 branch .. //depot/projects/usb_buf/src/sys/contrib/pf/net/pf_ioctl.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/Makefile#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm_gram.y#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm_scan.l#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/ata/ata-all.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/ata/chipsets/ata-ahci.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/ata/chipsets/ata-intel.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/bge/if_bge.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/bwi/if_bwi.c#4 integrate .. //depot/projects/usb_buf/src/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/dc/if_dc.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/e1000/if_em.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/firewire/if_fwe.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/firewire/if_fwip.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/fxp/if_fxp.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/ixgb/if_ixgb.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/ksyms/ksyms.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/lmc/if_lmc.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/lmc/if_lmc.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/mge/if_mge.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/mii/e1000phy.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/mii/e1000phyreg.h#3 integrate .. //depot/projects/usb_buf/src/sys/dev/msk/if_msk.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/msk/if_mskreg.h#3 integrate .. //depot/projects/usb_buf/src/sys/dev/mwl/if_mwl.c#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/if_mwl_pci.c#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/if_mwlioctl.h#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/if_mwlvar.h#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/mwldiag.h#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/mwlhal.c#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/mwlhal.h#1 branch .. //depot/projects/usb_buf/src/sys/dev/mwl/mwlreg.h#1 branch .. //depot/projects/usb_buf/src/sys/dev/mxge/if_mxge.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/mxge/if_mxge_var.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/nfe/if_nfe.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/nge/if_nge.c#4 integrate .. //depot/projects/usb_buf/src/sys/dev/pci/pci.c#3 integrate .. //depot/projects/usb_buf/src/sys/dev/pci/pcivar.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/puc/pucdata.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/re/if_re.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/sf/if_sf.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/sis/if_sis.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/smc/if_smc.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/sound/pci/hda/hdac.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/ste/if_ste.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/stge/if_stge.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/syscons/scterm-teken.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/syscons/teken/sequences#2 integrate .. //depot/projects/usb_buf/src/sys/dev/syscons/teken/teken.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/syscons/teken/teken.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/syscons/teken/teken_subr_compat.h#2 integrate .. //depot/projects/usb_buf/src/sys/dev/tsec/if_tsec.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/README.TXT#2 delete .. //depot/projects/usb_buf/src/sys/dev/usb/controller/avr32dci.c#6 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/controller/avr32dci.h#4 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/input/ukbd.c#6 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/storage/umass.c#6 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/usb_compat_linux.h#6 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/usb_dev.c#7 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/usb_dev.h#5 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/usb_device.c#8 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/usb_request.c#9 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/usbdevs#5 integrate .. //depot/projects/usb_buf/src/sys/dev/usb/wlan/if_zyd.c#6 integrate .. //depot/projects/usb_buf/src/sys/dev/vge/if_vge.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/vr/if_vr.c#2 integrate .. //depot/projects/usb_buf/src/sys/dev/xl/if_xl.c#2 integrate .. //depot/projects/usb_buf/src/sys/fs/nfsclient/nfs_clbio.c#4 integrate .. //depot/projects/usb_buf/src/sys/fs/nfsclient/nfs_clnode.c#4 integrate .. //depot/projects/usb_buf/src/sys/fs/nfsclient/nfs_clvnops.c#4 integrate .. //depot/projects/usb_buf/src/sys/fs/nfsserver/nfs_nfsdport.c#4 integrate .. //depot/projects/usb_buf/src/sys/fs/nullfs/null_subr.c#2 integrate .. //depot/projects/usb_buf/src/sys/fs/nullfs/null_vnops.c#2 integrate .. //depot/projects/usb_buf/src/sys/fs/pseudofs/pseudofs_vnops.c#3 integrate .. //depot/projects/usb_buf/src/sys/geom/label/g_label.c#2 integrate .. //depot/projects/usb_buf/src/sys/i386/conf/GENERIC#2 integrate .. //depot/projects/usb_buf/src/sys/i386/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/i386/ibcs2/ibcs2_sysent.c#2 integrate .. //depot/projects/usb_buf/src/sys/i386/include/apicvar.h#2 integrate .. //depot/projects/usb_buf/src/sys/i386/linux/linux.h#3 integrate .. //depot/projects/usb_buf/src/sys/i386/linux/linux_sysent.c#2 integrate .. //depot/projects/usb_buf/src/sys/i386/xen/mp_machdep.c#3 integrate .. //depot/projects/usb_buf/src/sys/ia64/conf/GENERIC#2 integrate .. //depot/projects/usb_buf/src/sys/ia64/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/kern/init_sysent.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_conf.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_cpu.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_descrip.c#5 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_lock.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_poll.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_proc.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_prot.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_rwlock.c#4 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_sx.c#4 integrate .. //depot/projects/usb_buf/src/sys/kern/kern_vimage.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/makesyscalls.sh#2 integrate .. //depot/projects/usb_buf/src/sys/kern/subr_sglist.c#1 branch .. //depot/projects/usb_buf/src/sys/kern/sys_socket.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/uipc_mbuf.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/uipc_shm.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/uipc_sockbuf.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/uipc_socket.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/uipc_syscalls.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/uipc_usrreq.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/vfs_aio.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/vfs_bio.c#5 integrate .. //depot/projects/usb_buf/src/sys/kern/vfs_cache.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/vfs_default.c#2 integrate .. //depot/projects/usb_buf/src/sys/kern/vfs_mount.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/vfs_subr.c#3 integrate .. //depot/projects/usb_buf/src/sys/kern/vnode_if.src#2 integrate .. //depot/projects/usb_buf/src/sys/modules/Makefile#3 integrate .. //depot/projects/usb_buf/src/sys/modules/cpufreq/Makefile#2 integrate .. //depot/projects/usb_buf/src/sys/modules/geom/geom_part/geom_part_ebr/Makefile#2 integrate .. //depot/projects/usb_buf/src/sys/modules/mwl/Makefile#1 branch .. //depot/projects/usb_buf/src/sys/modules/mwlfw/Makefile#1 branch .. //depot/projects/usb_buf/src/sys/modules/usb/Makefile#3 integrate .. //depot/projects/usb_buf/src/sys/modules/zfs/Makefile#3 integrate .. //depot/projects/usb_buf/src/sys/net/if.c#3 integrate .. //depot/projects/usb_buf/src/sys/net/if.h#2 integrate .. //depot/projects/usb_buf/src/sys/net/if_var.h#3 integrate .. //depot/projects/usb_buf/src/sys/net/netisr.c#3 integrate .. //depot/projects/usb_buf/src/sys/net/netisr.h#3 integrate .. //depot/projects/usb_buf/src/sys/net/route.c#2 integrate .. //depot/projects/usb_buf/src/sys/net/route.h#2 integrate .. //depot/projects/usb_buf/src/sys/net/rtsock.c#3 integrate .. //depot/projects/usb_buf/src/sys/net/vnet.h#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_ddb.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_dfs.c#2 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_freebsd.c#5 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_hostap.c#4 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_ht.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_ht.h#2 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_input.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_ioctl.c#2 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_ioctl.h#2 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_monitor.c#4 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_node.h#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_proto.h#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_radiotap.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_scan.h#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_superg.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_tdma.c#3 integrate .. //depot/projects/usb_buf/src/sys/net80211/ieee80211_var.h#3 integrate .. //depot/projects/usb_buf/src/sys/netatalk/ddp_input.c#2 integrate .. //depot/projects/usb_buf/src/sys/netatalk/ddp_usrreq.c#2 integrate .. //depot/projects/usb_buf/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c#3 integrate .. //depot/projects/usb_buf/src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h#3 integrate .. //depot/projects/usb_buf/src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c#3 integrate .. //depot/projects/usb_buf/src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c#2 integrate .. //depot/projects/usb_buf/src/sys/netgraph/ng_ksocket.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/accf_data.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/accf_dns.c#3 integrate .. //depot/projects/usb_buf/src/sys/netinet/accf_http.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/if_ether.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/igmp.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/in.h#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/in_pcb.c#4 integrate .. //depot/projects/usb_buf/src/sys/netinet/in_pcb.h#3 integrate .. //depot/projects/usb_buf/src/sys/netinet/in_rmx.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/ip_divert.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/ip_input.c#3 integrate .. //depot/projects/usb_buf/src/sys/netinet/ip_output.c#3 integrate .. //depot/projects/usb_buf/src/sys/netinet/raw_ip.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/sctp_pcb.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/sctp_sysctl.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/sctp_sysctl.h#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/sctp_uio.h#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/sctputil.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet/tcp_input.c#3 integrate .. //depot/projects/usb_buf/src/sys/netinet/tcp_syncache.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet6/in6.h#3 integrate .. //depot/projects/usb_buf/src/sys/netinet6/in6_ifattach.c#4 integrate .. //depot/projects/usb_buf/src/sys/netinet6/in6_pcb.c#3 integrate .. //depot/projects/usb_buf/src/sys/netinet6/in6_rmx.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet6/ip6_input.c#3 integrate .. //depot/projects/usb_buf/src/sys/netinet6/ip6_output.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet6/nd6.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet6/nd6_rtr.c#2 integrate .. //depot/projects/usb_buf/src/sys/netinet6/vinet6.h#2 integrate .. //depot/projects/usb_buf/src/sys/netipsec/ipsec_input.c#2 integrate .. //depot/projects/usb_buf/src/sys/netipx/ipx_input.c#2 integrate .. //depot/projects/usb_buf/src/sys/netnatm/natm_proto.c#2 integrate .. //depot/projects/usb_buf/src/sys/netsmb/smb_trantcp.c#2 integrate .. //depot/projects/usb_buf/src/sys/nfsclient/bootp_subr.c#4 integrate .. //depot/projects/usb_buf/src/sys/nfsclient/nfs_bio.c#4 integrate .. //depot/projects/usb_buf/src/sys/nfsclient/nfs_socket.c#3 integrate .. //depot/projects/usb_buf/src/sys/nfsserver/nfs.h#2 integrate .. //depot/projects/usb_buf/src/sys/nfsserver/nfs_srvsock.c#3 integrate .. //depot/projects/usb_buf/src/sys/nfsserver/nfs_syscalls.c#2 integrate .. //depot/projects/usb_buf/src/sys/pc98/conf/GENERIC#2 integrate .. //depot/projects/usb_buf/src/sys/pc98/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/pci/if_rl.c#2 integrate .. //depot/projects/usb_buf/src/sys/powerpc/aim/machdep.c#3 integrate .. //depot/projects/usb_buf/src/sys/powerpc/booke/machdep.c#4 integrate .. //depot/projects/usb_buf/src/sys/powerpc/conf/GENERIC#2 integrate .. //depot/projects/usb_buf/src/sys/powerpc/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/powerpc/conf/NOTES#2 integrate .. //depot/projects/usb_buf/src/sys/powerpc/cpufreq/dfs.c#1 branch .. //depot/projects/usb_buf/src/sys/powerpc/mpc85xx/atpic.c#2 integrate .. //depot/projects/usb_buf/src/sys/powerpc/ofw/ofw_cpu.c#1 branch .. //depot/projects/usb_buf/src/sys/powerpc/powermac/pmu.c#2 integrate .. //depot/projects/usb_buf/src/sys/powerpc/powermac/vcoregpio.c#1 branch .. //depot/projects/usb_buf/src/sys/powerpc/powerpc/cpu.c#2 integrate .. //depot/projects/usb_buf/src/sys/powerpc/powerpc/uio_machdep.c#1 branch .. //depot/projects/usb_buf/src/sys/rpc/clnt_dg.c#2 integrate .. //depot/projects/usb_buf/src/sys/rpc/clnt_vc.c#2 integrate .. //depot/projects/usb_buf/src/sys/rpc/svc_dg.c#2 integrate .. //depot/projects/usb_buf/src/sys/rpc/svc_vc.c#2 integrate .. //depot/projects/usb_buf/src/sys/rpc/xdr.h#3 integrate .. //depot/projects/usb_buf/src/sys/security/mac/mac_framework.c#4 integrate .. //depot/projects/usb_buf/src/sys/security/mac/mac_internal.h#3 integrate .. //depot/projects/usb_buf/src/sys/security/mac/mac_socket.c#2 integrate .. //depot/projects/usb_buf/src/sys/sparc64/conf/GENERIC#3 integrate .. //depot/projects/usb_buf/src/sys/sparc64/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/sun4v/conf/GENERIC#2 integrate .. //depot/projects/usb_buf/src/sys/sun4v/conf/MAC#2 delete .. //depot/projects/usb_buf/src/sys/sys/buf.h#3 integrate .. //depot/projects/usb_buf/src/sys/sys/conf.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/cpu.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/mount.h#3 integrate .. //depot/projects/usb_buf/src/sys/sys/param.h#5 integrate .. //depot/projects/usb_buf/src/sys/sys/pcpu.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/priv.h#4 integrate .. //depot/projects/usb_buf/src/sys/sys/sglist.h#1 branch .. //depot/projects/usb_buf/src/sys/sys/sockbuf.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/socketvar.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/sockio.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/syscallsubr.h#3 integrate .. //depot/projects/usb_buf/src/sys/sys/sysent.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/ucred.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/user.h#2 integrate .. //depot/projects/usb_buf/src/sys/sys/vimage.h#5 integrate .. //depot/projects/usb_buf/src/sys/sys/vnode.h#2 integrate .. //depot/projects/usb_buf/src/sys/ufs/ffs/ffs_softdep.c#2 integrate .. //depot/projects/usb_buf/src/sys/vm/vm_mmap.c#2 integrate .. //depot/projects/usb_buf/src/sys/vm/vm_page.c#3 integrate .. //depot/projects/usb_buf/src/sys/vm/vm_page.h#3 integrate .. //depot/projects/usb_buf/src/sys/vm/vnode_pager.c#3 integrate .. //depot/projects/usb_buf/src/sys/xen/evtchn/evtchn.c#2 integrate .. //depot/projects/usb_buf/src/usr.sbin/usbconfig/Makefile#2 integrate .. //depot/projects/usb_buf/src/usr.sbin/usbconfig/dump.c#2 integrate .. //depot/projects/usb_buf/src/usr.sbin/usbconfig/dump.h#2 integrate .. //depot/projects/usb_buf/src/usr.sbin/usbconfig/usbconfig.8#3 integrate .. //depot/projects/usb_buf/src/usr.sbin/usbconfig/usbconfig.c#2 integrate Differences ... ==== //depot/projects/usb_buf/src/lib/libusb/libusb.3#5 (text+ko) ==== @@ -24,7 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD: src/lib/libusb/libusb.3,v 1.2 2009/04/05 18:30:24 thompsa Exp $ +.\" $FreeBSD: src/lib/libusb/libusb.3,v 1.5 2009/06/02 17:27:51 thompsa Exp $ .\" .Dd May 28, 2009 .Dt LIBUSB 3 @@ -111,7 +111,7 @@ .Ft const char * .Fn libusb20_dev_get_backend_name "struct libusb20_device *" .Ft int -.Fn libusb20_dev_get_info "struct libusb20_device *pdev" "struct usb2_device_info *pinfo" +.Fn libusb20_dev_get_info "struct libusb20_device *pdev" "struct usb_device_info *pinfo" .Ft int .Fn libusb20_dev_get_iface_desc "struct libusb20_device *pdev" "uint8_t iface_index" "char *buf" "uint8_t len" .Ft const char * @@ -489,7 +489,7 @@ .Pp . .Fn libusb20_dev_get_info -retrives the BSD specific usb2_device_info structure into the memory location given by +retrives the BSD specific usb_device_info structure into the memory location given by .Fa pinfo . The USB device given by .Fa pdev ==== //depot/projects/usb_buf/src/lib/libusb/libusb20.c#3 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20.c,v 1.1 2009/03/09 17:09:46 thompsa Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20.c,v 1.3 2009/06/02 17:27:51 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -931,7 +931,7 @@ int libusb20_dev_get_info(struct libusb20_device *pdev, - struct usb2_device_info *pinfo) + struct usb_device_info *pinfo) { if (pinfo == NULL) return (LIBUSB20_ERROR_INVALID_PARAM); ==== //depot/projects/usb_buf/src/lib/libusb/libusb20.h#3 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20.h,v 1.2 2009/03/17 21:20:39 delphij Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20.h,v 1.4 2009/06/02 17:27:51 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * Copyright (c) 2007-2008 Daniel Drake. All rights reserved. @@ -175,7 +175,7 @@ LIBUSB20_POWER_RESUME, }; -struct usb2_device_info; +struct usb_device_info; struct libusb20_transfer; struct libusb20_backend; struct libusb20_backend_methods; @@ -254,7 +254,7 @@ int libusb20_dev_set_power_mode(struct libusb20_device *pdev, uint8_t power_mode); uint8_t libusb20_dev_get_power_mode(struct libusb20_device *pdev); int libusb20_dev_set_alt_index(struct libusb20_device *pdev, uint8_t iface_index, uint8_t alt_index); -int libusb20_dev_get_info(struct libusb20_device *pdev, struct usb2_device_info *pinfo); +int libusb20_dev_get_info(struct libusb20_device *pdev, struct usb_device_info *pinfo); int libusb20_dev_get_iface_desc(struct libusb20_device *pdev, uint8_t iface_index, char *buf, uint8_t len); struct LIBUSB20_DEVICE_DESC_DECODED *libusb20_dev_get_device_desc(struct libusb20_device *pdev); ==== //depot/projects/usb_buf/src/lib/libusb/libusb20_int.h#2 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20_int.h,v 1.1 2009/03/09 17:09:46 thompsa Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20_int.h,v 1.2 2009/05/28 17:36:36 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -49,7 +49,7 @@ typedef int (libusb20_root_add_dev_quirk_t)(struct libusb20_backend *pbe, struct libusb20_quirk *pq); typedef int (libusb20_root_remove_dev_quirk_t)(struct libusb20_backend *pbe, struct libusb20_quirk *pq); typedef int (libusb20_close_device_t)(struct libusb20_device *pdev); -typedef int (libusb20_dev_get_info_t)(struct libusb20_device *pdev, struct usb2_device_info *pinfo); +typedef int (libusb20_dev_get_info_t)(struct libusb20_device *pdev, struct usb_device_info *pinfo); typedef int (libusb20_dev_get_iface_desc_t)(struct libusb20_device *pdev, uint8_t iface_index, char *buf, uint8_t len); typedef int (libusb20_init_backend_t)(struct libusb20_backend *pbe); typedef int (libusb20_open_device_t)(struct libusb20_device *pdev, uint16_t transfer_count_max); ==== //depot/projects/usb_buf/src/lib/libusb/libusb20_ugen20.c#2 (text+ko) ==== @@ -1,4 +1,4 @@ -/* $FreeBSD: src/lib/libusb/libusb20_ugen20.c,v 1.1 2009/03/09 17:09:46 thompsa Exp $ */ +/* $FreeBSD: src/lib/libusb/libusb20_ugen20.c,v 1.2 2009/05/28 17:36:36 thompsa Exp $ */ /*- * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. * @@ -126,8 +126,8 @@ ugen20_enumerate(struct libusb20_device *pdev, const char *id) { const char *tmp = id; - struct usb2_device_descriptor ddesc; - struct usb2_device_info devinfo; + struct usb_device_descriptor ddesc; + struct usb_device_info devinfo; uint32_t plugtime; char buf[64]; int f; @@ -213,7 +213,7 @@ } struct ugen20_urd_state { - struct usb2_read_dir urd; + struct usb_read_dir urd; uint32_t nparsed; int f; uint8_t *ptr; @@ -298,7 +298,7 @@ static void ugen20_tr_release(struct libusb20_device *pdev) { - struct usb2_fs_uninit fs_uninit; + struct usb_fs_uninit fs_uninit; if (pdev->nTransfer == 0) { return; @@ -316,8 +316,8 @@ static int ugen20_tr_renew(struct libusb20_device *pdev) { - struct usb2_fs_init fs_init; - struct usb2_fs_endpoint *pfse; + struct usb_fs_init fs_init; + struct usb_fs_endpoint *pfse; int error; uint32_t size; uint16_t nMaxTransfer; @@ -419,7 +419,7 @@ static int ugen20_close_device(struct libusb20_device *pdev) { - struct usb2_fs_uninit fs_uninit; + struct usb_fs_uninit fs_uninit; if (pdev->privBeData) { memset(&fs_uninit, 0, sizeof(fs_uninit)); @@ -447,8 +447,8 @@ ugen20_get_config_desc_full(struct libusb20_device *pdev, uint8_t **ppbuf, uint16_t *plen, uint8_t cfg_index) { - struct usb2_gen_descriptor gen_desc; - struct usb2_config_descriptor cdesc; + struct usb_gen_descriptor gen_desc; + struct usb_config_descriptor cdesc; uint8_t *ptr; uint16_t len; int error; @@ -542,7 +542,7 @@ ugen20_set_alt_index(struct libusb20_device *pdev, uint8_t iface_index, uint8_t alt_index) { - struct usb2_alt_interface alt_iface; + struct usb_alt_interface alt_iface; memset(&alt_iface, 0, sizeof(alt_iface)); @@ -663,7 +663,7 @@ struct LIBUSB20_CONTROL_SETUP_DECODED *setup, void *data, uint16_t *pactlen, uint32_t timeout, uint8_t flags) { - struct usb2_ctl_request req; + struct usb_ctl_request req; memset(&req, 0, sizeof(req)); @@ -688,8 +688,8 @@ static int ugen20_process(struct libusb20_device *pdev) { - struct usb2_fs_complete temp; - struct usb2_fs_endpoint *fsep; + struct usb_fs_complete temp; + struct usb_fs_endpoint *fsep; struct libusb20_transfer *xfer; while (1) { @@ -739,8 +739,8 @@ ugen20_tr_open(struct libusb20_transfer *xfer, uint32_t MaxBufSize, uint32_t MaxFrameCount, uint8_t ep_no) { - struct usb2_fs_open temp; - struct usb2_fs_endpoint *fsep; + struct usb_fs_open temp; + struct usb_fs_endpoint *fsep; memset(&temp, 0, sizeof(temp)); @@ -772,7 +772,7 @@ static int ugen20_tr_close(struct libusb20_transfer *xfer) { - struct usb2_fs_close temp; + struct usb_fs_close temp; memset(&temp, 0, sizeof(temp)); @@ -787,7 +787,7 @@ static int ugen20_tr_clear_stall_sync(struct libusb20_transfer *xfer) { - struct usb2_fs_clear_stall_sync temp; + struct usb_fs_clear_stall_sync temp; memset(&temp, 0, sizeof(temp)); @@ -804,8 +804,8 @@ static void ugen20_tr_submit(struct libusb20_transfer *xfer) { - struct usb2_fs_start temp; - struct usb2_fs_endpoint *fsep; + struct usb_fs_start temp; + struct usb_fs_endpoint *fsep; memset(&temp, 0, sizeof(temp)); @@ -839,7 +839,7 @@ static void ugen20_tr_cancel_async(struct libusb20_transfer *xfer) { - struct usb2_fs_stop temp; + struct usb_fs_stop temp; memset(&temp, 0, sizeof(temp)); @@ -876,7 +876,7 @@ ugen20_dev_get_iface_desc(struct libusb20_device *pdev, uint8_t iface_index, char *buf, uint8_t len) { - struct usb2_gen_descriptor ugd; + struct usb_gen_descriptor ugd; memset(&ugd, 0, sizeof(ugd)); @@ -892,7 +892,7 @@ static int ugen20_dev_get_info(struct libusb20_device *pdev, - struct usb2_device_info *pinfo) + struct usb_device_info *pinfo) { if (ioctl(pdev->file, USB_GET_DEVICEINFO, pinfo)) { return (LIBUSB20_ERROR_INVALID_PARAM); @@ -904,7 +904,7 @@ ugen20_root_get_dev_quirk(struct libusb20_backend *pbe, uint16_t quirk_index, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); @@ -931,7 +931,7 @@ ugen20_root_get_quirk_name(struct libusb20_backend *pbe, uint16_t quirk_index, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); @@ -954,7 +954,7 @@ ugen20_root_add_dev_quirk(struct libusb20_backend *pbe, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); @@ -978,7 +978,7 @@ ugen20_root_remove_dev_quirk(struct libusb20_backend *pbe, struct libusb20_quirk *pq) { - struct usb2_gen_quirk q; + struct usb_gen_quirk q; int error; memset(&q, 0, sizeof(q)); ==== //depot/projects/usb_buf/src/lib/libusbhid/descr.c#2 (text+ko) ==== @@ -27,7 +27,7 @@ */ #include -__FBSDID("$FreeBSD: src/lib/libusbhid/descr.c,v 1.11 2009/02/27 15:30:42 thompsa Exp $"); +__FBSDID("$FreeBSD: src/lib/libusbhid/descr.c,v 1.12 2009/05/28 20:21:01 thompsa Exp $"); #include @@ -76,7 +76,7 @@ report_desc_t hid_get_report_desc(int fd) { - struct usb2_gen_descriptor ugd; + struct usb_gen_descriptor ugd; report_desc_t rep; void *data; ==== //depot/projects/usb_buf/src/sys/amd64/conf/GENERIC#2 (text+ko) ==== @@ -16,7 +16,7 @@ # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # -# $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.525 2009/05/10 00:00:25 kuriyama Exp $ +# $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.526 2009/06/02 18:31:08 rwatson Exp $ cpu HAMMER ident GENERIC @@ -70,6 +70,7 @@ options STOP_NMI # Stop CPUS using NMI instead of IPI options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) options AUDIT # Security event auditing +options MAC # TrustedBSD MAC Framework #options KDTRACE_FRAME # Ensure frames are compiled in #options KDTRACE_HOOKS # Kernel DTrace hooks ==== //depot/projects/usb_buf/src/sys/amd64/linux32/linux.h#3 (text+ko) ==== @@ -27,7 +27,7 @@ * (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: src/sys/amd64/linux32/linux.h,v 1.28 2009/05/16 18:48:41 dchagin Exp $ + * $FreeBSD: src/sys/amd64/linux32/linux.h,v 1.29 2009/06/01 20:48:39 dchagin Exp $ */ #ifndef _AMD64_LINUX_H_ @@ -669,6 +669,7 @@ #define LINUX_GETSOCKOPT 15 #define LINUX_SENDMSG 16 #define LINUX_RECVMSG 17 +#define LINUX_ACCEPT4 18 #define LINUX_SOL_SOCKET 1 #define LINUX_SOL_IP 0 ==== //depot/projects/usb_buf/src/sys/amd64/linux32/linux32_sysent.c#2 (text+ko) ==== @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.39 2008/11/29 14:57:58 kib Exp $ + * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.40 2009/06/01 16:14:38 rwatson Exp $ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 185438 2008-11-29 14:55:24Z kib */ @@ -19,321 +19,321 @@ /* The casts are bogus but will do for now. */ struct sysent linux_sysent[] = { #define nosys linux_nosys - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 0 = setup */ - { AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT, NULL, 0, 0 }, /* 1 = exit */ - { 0, (sy_call_t *)linux_fork, AUE_FORK, NULL, 0, 0 }, /* 2 = linux_fork */ - { AS(read_args), (sy_call_t *)read, AUE_NULL, NULL, 0, 0 }, /* 3 = read */ - { AS(write_args), (sy_call_t *)write, AUE_NULL, NULL, 0, 0 }, /* 4 = write */ - { AS(linux_open_args), (sy_call_t *)linux_open, AUE_OPEN_RWTC, NULL, 0, 0 }, /* 5 = linux_open */ - { AS(close_args), (sy_call_t *)close, AUE_CLOSE, NULL, 0, 0 }, /* 6 = close */ - { AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_WAIT4, NULL, 0, 0 }, /* 7 = linux_waitpid */ - { AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_CREAT, NULL, 0, 0 }, /* 8 = linux_creat */ - { AS(linux_link_args), (sy_call_t *)linux_link, AUE_LINK, NULL, 0, 0 }, /* 9 = linux_link */ - { AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_UNLINK, NULL, 0, 0 }, /* 10 = linux_unlink */ - { AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_EXECVE, NULL, 0, 0 }, /* 11 = linux_execve */ - { AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_CHDIR, NULL, 0, 0 }, /* 12 = linux_chdir */ - { AS(linux_time_args), (sy_call_t *)linux_time, AUE_NULL, NULL, 0, 0 }, /* 13 = linux_time */ - { AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_MKNOD, NULL, 0, 0 }, /* 14 = linux_mknod */ - { AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_CHMOD, NULL, 0, 0 }, /* 15 = linux_chmod */ - { AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_LCHOWN, NULL, 0, 0 }, /* 16 = linux_lchown16 */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 17 = break */ - { AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_STAT, NULL, 0, 0 }, /* 18 = linux_stat */ - { AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_LSEEK, NULL, 0, 0 }, /* 19 = linux_lseek */ - { 0, (sy_call_t *)linux_getpid, AUE_GETPID, NULL, 0, 0 }, /* 20 = linux_getpid */ - { AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_MOUNT, NULL, 0, 0 }, /* 21 = linux_mount */ - { AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_UMOUNT, NULL, 0, 0 }, /* 22 = linux_oldumount */ - { AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_SETUID, NULL, 0, 0 }, /* 23 = linux_setuid16 */ - { 0, (sy_call_t *)linux_getuid16, AUE_GETUID, NULL, 0, 0 }, /* 24 = linux_getuid16 */ - { 0, (sy_call_t *)linux_stime, AUE_SETTIMEOFDAY, NULL, 0, 0 }, /* 25 = linux_stime */ - { AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_PTRACE, NULL, 0, 0 }, /* 26 = linux_ptrace */ - { AS(linux_alarm_args), (sy_call_t *)linux_alarm, AUE_NULL, NULL, 0, 0 }, /* 27 = linux_alarm */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 28 = fstat */ - { 0, (sy_call_t *)linux_pause, AUE_NULL, NULL, 0, 0 }, /* 29 = linux_pause */ - { AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_UTIME, NULL, 0, 0 }, /* 30 = linux_utime */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 31 = stty */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 32 = gtty */ - { AS(linux_access_args), (sy_call_t *)linux_access, AUE_ACCESS, NULL, 0, 0 }, /* 33 = linux_access */ - { AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NICE, NULL, 0, 0 }, /* 34 = linux_nice */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 35 = ftime */ - { 0, (sy_call_t *)sync, AUE_SYNC, NULL, 0, 0 }, /* 36 = sync */ - { AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_KILL, NULL, 0, 0 }, /* 37 = linux_kill */ - { AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME, NULL, 0, 0 }, /* 38 = linux_rename */ - { AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_MKDIR, NULL, 0, 0 }, /* 39 = linux_mkdir */ - { AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_RMDIR, NULL, 0, 0 }, /* 40 = linux_rmdir */ - { AS(dup_args), (sy_call_t *)dup, AUE_DUP, NULL, 0, 0 }, /* 41 = dup */ - { AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_PIPE, NULL, 0, 0 }, /* 42 = linux_pipe */ - { AS(linux_times_args), (sy_call_t *)linux_times, AUE_NULL, NULL, 0, 0 }, /* 43 = linux_times */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 44 = prof */ - { AS(linux_brk_args), (sy_call_t *)linux_brk, AUE_NULL, NULL, 0, 0 }, /* 45 = linux_brk */ - { AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_SETGID, NULL, 0, 0 }, /* 46 = linux_setgid16 */ - { 0, (sy_call_t *)linux_getgid16, AUE_GETGID, NULL, 0, 0 }, /* 47 = linux_getgid16 */ - { AS(linux_signal_args), (sy_call_t *)linux_signal, AUE_NULL, NULL, 0, 0 }, /* 48 = linux_signal */ - { 0, (sy_call_t *)linux_geteuid16, AUE_GETEUID, NULL, 0, 0 }, /* 49 = linux_geteuid16 */ - { 0, (sy_call_t *)linux_getegid16, AUE_GETEGID, NULL, 0, 0 }, /* 50 = linux_getegid16 */ - { AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0 }, /* 51 = acct */ - { AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_UMOUNT, NULL, 0, 0 }, /* 52 = linux_umount */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 53 = lock */ - { AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_IOCTL, NULL, 0, 0 }, /* 54 = linux_ioctl */ - { AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_FCNTL, NULL, 0, 0 }, /* 55 = linux_fcntl */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 56 = mpx */ - { AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP, NULL, 0, 0 }, /* 57 = setpgid */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 58 = ulimit */ - { 0, (sy_call_t *)linux_olduname, AUE_NULL, NULL, 0, 0 }, /* 59 = linux_olduname */ - { AS(umask_args), (sy_call_t *)umask, AUE_UMASK, NULL, 0, 0 }, /* 60 = umask */ - { AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT, NULL, 0, 0 }, /* 61 = chroot */ - { AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL, NULL, 0, 0 }, /* 62 = linux_ustat */ - { AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2, NULL, 0, 0 }, /* 63 = dup2 */ - { 0, (sy_call_t *)linux_getppid, AUE_GETPPID, NULL, 0, 0 }, /* 64 = linux_getppid */ - { 0, (sy_call_t *)getpgrp, AUE_GETPGRP, NULL, 0, 0 }, /* 65 = getpgrp */ - { 0, (sy_call_t *)setsid, AUE_SETSID, NULL, 0, 0 }, /* 66 = setsid */ - { AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL, NULL, 0, 0 }, /* 67 = linux_sigaction */ - { 0, (sy_call_t *)linux_sgetmask, AUE_NULL, NULL, 0, 0 }, /* 68 = linux_sgetmask */ - { AS(linux_ssetmask_args), (sy_call_t *)linux_ssetmask, AUE_NULL, NULL, 0, 0 }, /* 69 = linux_ssetmask */ - { AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_SETREUID, NULL, 0, 0 }, /* 70 = linux_setreuid16 */ - { AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_SETREGID, NULL, 0, 0 }, /* 71 = linux_setregid16 */ - { AS(linux_sigsuspend_args), (sy_call_t *)linux_sigsuspend, AUE_NULL, NULL, 0, 0 }, /* 72 = linux_sigsuspend */ - { AS(linux_sigpending_args), (sy_call_t *)linux_sigpending, AUE_NULL, NULL, 0, 0 }, /* 73 = linux_sigpending */ - { AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_SYSCTL, NULL, 0, 0 }, /* 74 = linux_sethostname */ - { AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_SETRLIMIT, NULL, 0, 0 }, /* 75 = linux_setrlimit */ - { AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_GETRLIMIT, NULL, 0, 0 }, /* 76 = linux_old_getrlimit */ - { AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_GETRUSAGE, NULL, 0, 0 }, /* 77 = linux_getrusage */ - { AS(linux_gettimeofday_args), (sy_call_t *)linux_gettimeofday, AUE_NULL, NULL, 0, 0 }, /* 78 = linux_gettimeofday */ - { AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_SETTIMEOFDAY, NULL, 0, 0 }, /* 79 = linux_settimeofday */ - { AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_GETGROUPS, NULL, 0, 0 }, /* 80 = linux_getgroups16 */ - { AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_SETGROUPS, NULL, 0, 0 }, /* 81 = linux_setgroups16 */ - { AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_SELECT, NULL, 0, 0 }, /* 82 = linux_old_select */ - { AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_SYMLINK, NULL, 0, 0 }, /* 83 = linux_symlink */ - { AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_LSTAT, NULL, 0, 0 }, /* 84 = linux_lstat */ - { AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_READLINK, NULL, 0, 0 }, /* 85 = linux_readlink */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 86 = linux_uselib */ - { AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON, NULL, 0, 0 }, /* 87 = swapon */ - { AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_REBOOT, NULL, 0, 0 }, /* 88 = linux_reboot */ - { AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 89 = linux_readdir */ - { AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_MMAP, NULL, 0, 0 }, /* 90 = linux_mmap */ - { AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP, NULL, 0, 0 }, /* 91 = munmap */ - { AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_TRUNCATE, NULL, 0, 0 }, /* 92 = linux_truncate */ - { AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_FTRUNCATE, NULL, 0, 0 }, /* 93 = linux_ftruncate */ - { AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD, NULL, 0, 0 }, /* 94 = fchmod */ - { AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN, NULL, 0, 0 }, /* 95 = fchown */ - { AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY, NULL, 0, 0 }, /* 96 = linux_getpriority */ - { AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY, NULL, 0, 0 }, /* 97 = setpriority */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 98 = profil */ - { AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_STATFS, NULL, 0, 0 }, /* 99 = linux_statfs */ - { AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_FSTATFS, NULL, 0, 0 }, /* 100 = linux_fstatfs */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 101 = ioperm */ - { AS(linux_socketcall_args), (sy_call_t *)linux_socketcall, AUE_NULL, NULL, 0, 0 }, /* 102 = linux_socketcall */ - { AS(linux_syslog_args), (sy_call_t *)linux_syslog, AUE_NULL, NULL, 0, 0 }, /* 103 = linux_syslog */ - { AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_SETITIMER, NULL, 0, 0 }, /* 104 = linux_setitimer */ - { AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_GETITIMER, NULL, 0, 0 }, /* 105 = linux_getitimer */ - { AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_STAT, NULL, 0, 0 }, /* 106 = linux_newstat */ - { AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_LSTAT, NULL, 0, 0 }, /* 107 = linux_newlstat */ - { AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_FSTAT, NULL, 0, 0 }, /* 108 = linux_newfstat */ - { 0, (sy_call_t *)linux_uname, AUE_NULL, NULL, 0, 0 }, /* 109 = linux_uname */ - { AS(linux_iopl_args), (sy_call_t *)linux_iopl, AUE_NULL, NULL, 0, 0 }, /* 110 = linux_iopl */ - { 0, (sy_call_t *)linux_vhangup, AUE_NULL, NULL, 0, 0 }, /* 111 = linux_vhangup */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 112 = idle */ - { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 113 = vm86old */ - { AS(linux_wait4_args)