From owner-p4-projects@FreeBSD.ORG Sun Feb 20 16:57:15 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 1B9F91065672; Sun, 20 Feb 2011 16:57:15 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2738106566C for ; Sun, 20 Feb 2011 16:57:14 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id C040A8FC0A for ; Sun, 20 Feb 2011 16:57:14 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1KGvEDj036493 for ; Sun, 20 Feb 2011 16:57:14 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1KGvEj8036490 for perforce@freebsd.org; Sun, 20 Feb 2011 16:57:14 GMT (envelope-from trasz@freebsd.org) Date: Sun, 20 Feb 2011 16:57:14 GMT Message-Id: <201102201657.p1KGvEj8036490@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 188975 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 16:57:15 -0000 http://p4web.freebsd.org/@@188975?ac=10 Change 188975 by trasz@trasz_victim on 2011/02/20 16:56:30 Fix copyinstr(9) error handling. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_loginclass.c#29 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_loginclass.c#29 (text+ko) ==== @@ -195,8 +195,8 @@ if (error != 0) return (error); error = copyinstr(uap->namebuf, lcname, sizeof(lcname), NULL); - if (error == ENAMETOOLONG) - return (EINVAL); + if (error != 0) + return (error); newcred = crget(); newlc = loginclass_find(lcname); From owner-p4-projects@FreeBSD.ORG Sun Feb 20 17:01:38 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2ABDB1065670; Sun, 20 Feb 2011 17:01:38 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E180F1065674 for ; Sun, 20 Feb 2011 17:01:37 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id CF38F8FC13 for ; Sun, 20 Feb 2011 17:01:37 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1KH1b76037560 for ; Sun, 20 Feb 2011 17:01:37 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1KH1bYU037557 for perforce@freebsd.org; Sun, 20 Feb 2011 17:01:37 GMT (envelope-from trasz@freebsd.org) Date: Sun, 20 Feb 2011 17:01:37 GMT Message-Id: <201102201701.p1KH1bYU037557@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 188976 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 17:01:38 -0000 http://p4web.freebsd.org/@@188976?ac=10 Change 188976 by trasz@trasz_victim on 2011/02/20 17:00:33 Prevent root from crashing the system by adding a rule with too long loginclass name. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_loginclass.c#30 edit .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#33 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_loginclass.c#30 (text+ko) ==== @@ -113,8 +113,8 @@ { struct loginclass *lc, *newlc; - KASSERT(strlen(name) <= MAXLOGNAME - 1, - ("loginclass_find: got too long name")); + if (strlen(name) > MAXLOGNAME - 1) + return (NULL); newlc = malloc(sizeof(*newlc), M_LOGINCLASS, M_ZERO | M_WAITOK); container_create(&newlc->lc_container); @@ -200,6 +200,7 @@ newcred = crget(); newlc = loginclass_find(lcname); + KASSERT(newlc != NULL, ("loginclass_find() failed")); PROC_LOCK(p); oldcred = crcopysafe(p, newcred); ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#33 (text+ko) ==== @@ -837,6 +837,10 @@ case RCTL_SUBJECT_TYPE_LOGINCLASS: rule->rr_subject.hr_loginclass = loginclass_find(subject_idstr); + if (rule->rr_subject.hr_loginclass == NULL) { + error = ENAMETOOLONG; + goto out; + } break; case RCTL_SUBJECT_TYPE_JAIL: rule->rr_subject.rs_prison = From owner-p4-projects@FreeBSD.ORG Sun Feb 20 17:20:17 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id F2C121065670; Sun, 20 Feb 2011 17:20:16 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B8FD106564A for ; Sun, 20 Feb 2011 17:20:16 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 7F6518FC13 for ; Sun, 20 Feb 2011 17:20:16 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1KHKGDB041425 for ; Sun, 20 Feb 2011 17:20:16 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1KHKGW9041421 for perforce@freebsd.org; Sun, 20 Feb 2011 17:20:16 GMT (envelope-from trasz@freebsd.org) Date: Sun, 20 Feb 2011 17:20:16 GMT Message-Id: <201102201720.p1KHKGW9041421@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 188977 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 17:20:17 -0000 http://p4web.freebsd.org/@@188977?ac=10 Change 188977 by trasz@trasz_victim on 2011/02/20 17:19:36 Properly pass error from rctl_string_to_rule(). Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#34 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#34 (text+ko) ==== @@ -780,8 +780,8 @@ return (1); } -static struct rctl_rule * -rctl_rule_from_string(char *rulestr) +static int +rctl_string_to_rule(char *rulestr, struct rctl_rule **rulep) { int error = 0; char *subjectstr, *subject_idstr, *resourcestr, *actionstr, @@ -862,7 +862,7 @@ mtx_unlock(&rule->rr_subject.rs_prison->pr_mtx); break; default: - panic("rctl_rule_from_string: unknown subject type %d", + panic("rctl_string_to_rule: unknown subject type %d", rule->rr_subject_type); } } @@ -903,12 +903,12 @@ } out: - if (error != 0) { + if (error == 0) + *rulep = rule; + else rctl_rule_release(rule); - return (NULL); - } - return (rule); + return (error); } /* @@ -1230,12 +1230,12 @@ sx_slock(&allproc_lock); sx_slock(&allprison_lock); - filter = rctl_rule_from_string(inputstr); + error = rctl_string_to_rule(inputstr, &filter); free(inputstr, M_RCTL); - if (filter == NULL) { + if (error != 0) { sx_sunlock(&allprison_lock); sx_sunlock(&allproc_lock); - return (EINVAL); + return (error); } switch (filter->rr_subject_type) { @@ -1328,12 +1328,12 @@ sx_slock(&allproc_lock); sx_slock(&allprison_lock); - filter = rctl_rule_from_string(inputstr); + error = rctl_string_to_rule(inputstr, &filter); free(inputstr, M_RCTL); - if (filter == NULL) { + if (error != 0) { sx_sunlock(&allprison_lock); sx_sunlock(&allproc_lock); - return (EINVAL); + return (error); } again: @@ -1404,12 +1404,12 @@ sx_slock(&allproc_lock); sx_slock(&allprison_lock); - filter = rctl_rule_from_string(inputstr); + error = rctl_string_to_rule(inputstr, &filter); free(inputstr, M_RCTL); - if (filter == NULL) { + if (error != 0) { sx_sunlock(&allprison_lock); sx_sunlock(&allproc_lock); - return (EINVAL); + return (error); } if (filter->rr_subject_type == RCTL_SUBJECT_TYPE_UNDEFINED) { @@ -1480,12 +1480,12 @@ sx_slock(&allproc_lock); sx_slock(&allprison_lock); - rule = rctl_rule_from_string(inputstr); + error = rctl_string_to_rule(inputstr, &rule); free(inputstr, M_RCTL); - if (rule == NULL) { + if (error != 0) { sx_sunlock(&allprison_lock); sx_sunlock(&allproc_lock); - return (EINVAL); + return (error); } /* * The 'per' part of a rule is optional. @@ -1525,12 +1525,12 @@ sx_slock(&allproc_lock); sx_slock(&allprison_lock); - filter = rctl_rule_from_string(inputstr); + error = rctl_string_to_rule(inputstr, &filter); free(inputstr, M_RCTL); - if (filter == NULL) { + if (error != 0) { sx_sunlock(&allprison_lock); sx_sunlock(&allproc_lock); - return (EINVAL); + return (error); } error = rctl_rule_remove(filter); From owner-p4-projects@FreeBSD.ORG Sun Feb 20 18:05:14 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5EBAF106566C; Sun, 20 Feb 2011 18:05:14 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07C79106564A for ; Sun, 20 Feb 2011 18:05:14 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id AE2398FC12 for ; Sun, 20 Feb 2011 18:05:13 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1KI5DUI050853 for ; Sun, 20 Feb 2011 18:05:13 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1KI5DAL050850 for perforce@freebsd.org; Sun, 20 Feb 2011 18:05:13 GMT (envelope-from trasz@freebsd.org) Date: Sun, 20 Feb 2011 18:05:13 GMT Message-Id: <201102201805.p1KI5DAL050850@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 188979 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 18:05:14 -0000 http://p4web.freebsd.org/@@188979?ac=10 Change 188979 by trasz@trasz_victim on 2011/02/20 18:04:39 Improve errno usage. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#35 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#35 (text+ko) ==== @@ -937,11 +937,11 @@ if (rule->rr_action == RCTL_ACTION_DENY && (rule->rr_resource == RUSAGE_CPU || rule->rr_resource == RUSAGE_WALLCLOCK)) - return (EINVAL); + return (EOPNOTSUPP); if (rule->rr_per == RCTL_SUBJECT_TYPE_PROCESS && rusage_is_sloppy(rule->rr_resource)) - return (EINVAL); + return (EOPNOTSUPP); /* * Make sure there are no duplicated rules. Also, for the "deny" @@ -963,7 +963,7 @@ * No resource limits for system processes. */ if (p->p_flag & P_SYSTEM) - return (EINVAL); + return (EPERM); rctl_container_add_rule(p->p_container, rule); /* @@ -1783,35 +1783,35 @@ rctl_get_usage(struct thread *td, struct rctl_get_usage_args *uap) { - return (EOPNOTSUPP); + return (ENOSYS); } int rctl_get_rules(struct thread *td, struct rctl_get_rules_args *uap) { - return (EOPNOTSUPP); + return (ENOSYS); } int rctl_get_limits(struct thread *td, struct rctl_get_limits_args *uap) { - return (EOPNOTSUPP); + return (ENOSYS); } int rctl_add_rule(struct thread *td, struct rctl_add_rule_args *uap) { - return (EOPNOTSUPP); + return (ENOSYS); } int rctl_remove_rule(struct thread *td, struct rctl_remove_rule_args *uap) { - return (EOPNOTSUPP); + return (ENOSYS); } #endif /* !RCTL */ From owner-p4-projects@FreeBSD.ORG Sun Feb 20 21:36:00 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5F906106567A; Sun, 20 Feb 2011 21:36:00 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21A93106566B for ; Sun, 20 Feb 2011 21:36:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 0B1CF8FC1A for ; Sun, 20 Feb 2011 21:36:00 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1KLZx2h096238 for ; Sun, 20 Feb 2011 21:35:59 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1KLZxu9096235 for perforce@freebsd.org; Sun, 20 Feb 2011 21:35:59 GMT (envelope-from rene@FreeBSD.org) Date: Sun, 20 Feb 2011 21:35:59 GMT Message-Id: <201102202135.p1KLZxu9096235@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 188984 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 21:36:00 -0000 http://p4web.freebsd.org/@@188984?ac=10 Change 188984 by rene@rene_acer on 2011/02/20 21:35:14 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/committers-guide/article.sgml#34 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#28 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#100 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#51 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#54 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml#21 integrate .. //depot/projects/docproj_nl/share/pgpkeys/eadler.key#1 branch .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#51 integrate .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#48 integrate .. //depot/projects/docproj_nl/www/en/java/news.xml#7 integrate .. //depot/projects/docproj_nl/www/nl/administration.sgml#26 integrate .. //depot/projects/docproj_nl/www/nl/index.xsl#15 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#15 integrate .. //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#17 integrate .. //depot/projects/docproj_nl/www/share/sgml/news.xml#101 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/committers-guide/article.sgml#34 (text+ko) ==== @@ -9,7 +9,7 @@ The &os; Documentation Project - $FreeBSD: doc/en_US.ISO8859-1/articles/committers-guide/article.sgml,v 1.291 2011/02/17 15:43:01 ryusuke Exp $ + $FreeBSD: doc/en_US.ISO8859-1/articles/committers-guide/article.sgml,v 1.292 2011/02/19 09:34:25 linimon Exp $ 1999 @@ -1052,7 +1052,9 @@ Conventions and Traditions As a new developer there are a number of things you should do - first. The first set is specific to committers only. + first. The first set is specific to committers only. (If you are + not a committer, e.g. have GNATS-only access, then your mentor needs + to do these things for you.) Guidelines For Committers @@ -1142,16 +1144,19 @@ - If you subscribe to &a.svn-src-all.name; or the &a.cvsall;, + (For committers only:) + If you subscribe to &a.svn-src-all.name; or the &a.cvsall;, you will probably want to unsubscribe to avoid receiving duplicate copies of commit messages and their followups. + All src commits should go to &os.current; first before being merged to &os.stable;. No major new features or high-risk modifications should be made to the &os.stable; branch. + ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#28 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -5662,10 +5662,17 @@ here. To enable support for CARP, the &os; - kernel must be rebuilt with the following option: + kernel must be rebuilt as described in with the following option: device carp + Alternatively, the if_carp.ko module can + be loaded at boot time. Add the following line to the + /boot/loader.conf: + + if_carp_load="YES" + CARP functionality should now be available and may be tuned via several sysctl OIDs: ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#100 (text+ko) ==== @@ -1,7 +1,7 @@ 9.0-CURRENT after the addition of log2 to libm. + + 900028 + December 21, 2010 + 9.0-CURRENT after the addition of the Hhook (Helper + Hook), Khelp (Kernel Helpers) and Object Specific Data + (OSD) KPIs. + + + 900029 + December 28, 2010 + 9.0-CURRENT after the modification of the TCP stack + to allow Khelp modules to interact with it via helper + hook points and store per-connection data in the TCP + control block. + + + 900030 + January 12, 2011 + 9.0-CURRENT after the update of libdialog to version + 20100428. + + + 900031 + February 7, 2011 + 9.0-CURRENT after the addition of + pthread_getthreadid_np(3). + + + 900032 + February 8, 2011 + 9.0-CURRENT after the removal of the uio_yield + prototype and symbol. + + + 900033 + February 18, 2011 + 9.0-CURRENT after the update of binutils to version + 2.17.50. + ==== //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#51 (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.532 2010/12/07 23:00:16 flo Exp $ + $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.533 2011/02/18 04:33:48 linimon Exp $ --> aaron@FreeBSD.org"> @@ -332,6 +332,8 @@ dwmalone@FreeBSD.org"> +eadler@FreeBSD.org"> + ed@FreeBSD.org"> edwin@FreeBSD.org"> ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#54 (text+ko) ==== @@ -1,10 +1,10 @@ @@ -6190,11 +6190,18 @@ zoals in het voorbeeld dat hier is gegeven. Om ondersteuning voor CARP aan te zetten, - dient de &os;-kernel herbouwd te worden met de volgende + dient de &os;-kernel herbouwd zoals beschreven in + met de volgende optie: device carp + Als alternatief kan de if_carp.ko + module geladen worden tijdens het opstarten. Voeg de volgende + regel toe aan /boot/loader.conf: + + if_carp_load="YES" + De functionaliteit van CARP zou nu beschikbaar moeten zijn en kan met verschillende sysctl-OIDs worden ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml#21 (text+ko) ==== @@ -1,10 +1,10 @@ @@ -678,36 +678,88 @@ - Maak de geheugenstick klaar voor gebruik + Schrijf het beeldbestand naar de geheugenstick + + + &os; gebruiken om het beeldbestand te schrijven + + + Het onderstaande voorbeeld vermeldt + /dev/da0 als het + doelapparaat van waar af u zal opstarten. Zorg er voor dat u het + juiste apparaat als het uitvoerapparaat opgeeft om te voorkomen + dat u uw bestaande gegevens vernietigd. + + + Stel de sysctl kern.geom.debugflags in om + een master boot record naar het doelapparaat te kunnen + schrijven. + + + Het onderstaande voorbeeld vermeldt + /dev/da0 als het + doelapparaat van waar af u zal opstarten. Zorg er voor dat u het + juiste apparaat als het uitvoerapparaat opgeeft om te voorkomen + dat u uw bestaande gegevens vernietigd. + + + + Het beeldbestand schrijven door middel van &man.dd.1; + + Stel de sysctl kern.geom.debugflags in om + een master boot record naar het doelapparaat te kunnen + schrijven. + + &prompt.root; sysctl kern.geom.debugflags=16 + + Het .img-bestand is + geen gewoon bestand dat u naar de geheugenstick + kopieert. Het is een afbeelding van de complete inhoud van de + stick. Dit betekent dat u de bestanden niet + op de gewone manier van de ene schijf naar de andere kopieëren. + U dient in plaats hiervan &man.dd.1; gebruiken om de afbeelding + direct naar de schijf te schrijven: - - Het onderstaande voorbeeld vermeldt - /dev/da0 als het - doelapparaat van waar af u zal opstarten. Zorg er voor dat u het - juiste apparaat als het uitvoerapparaat opgeeft om te voorkomen - dat u uw bestaande gegevens vernietigd. - + &prompt.root; dd if=&os;-&rel.current;-RELEASE-&arch.i386;-memstick.img of=/dev/da0 bs=64k + + - Stel de sysctl kern.geom.debugflags in om - een master boot record naar het doelapparaat te kunnen - schrijven. + + &windows; gebruiken om het beeldbestand te schrijven - &prompt.root; sysctl kern.geom.debugflags=16 - + + Het onderstaande voorbeeld vermeldt + H: als de schijfletter + van het apparaat waar het bestand op wordt geschreven. Zorg er + voor dat u het juiste apparaat alshet uitvoerapparaat opgeeft om + te voorkomen dat u uw bestaande gegevens vernietigd. + + + <application>Image Writer for Windows</application> verkrijgen - - Schrijf het imagebestand naar de geheugenstick + Image Writer for Windows + is een gratis applicatie die een beeld bestand correct naar + een geheugen-stick kan schrijven. Download deze van + + en pak deze uit in een map. + - Het .img-bestand is - geen gewoon bestand dat u naar de geheugenstick - kopieert. Het is een afbeelding van de complete inhoud van de - stick. Dit betekent dat u de bestanden niet - op de gewone manier van de ene schijf naar de andere kopieëren. - U dient in plaats hiervan &man.dd.1; gebruiken om de afbeelding - direct naar de schijf te schrijven: + + Writing The Image with Image Writer - &prompt.root; dd if=&os;-&rel.current;-RELEASE-&arch.i386;-memstick.img of=/dev/da0 bs=64k + Dubbelklik op het Win23DiskImager + icoon om het programma te starten. Controleer of de schijf + letter welke getoond is onder Device + de schijf is van de geheugen-stick. Klik op het map icoon + en selecteer het bestand welke naar de geheugen-stick + geschreven moet worden. Klik op Save + om het bestand te accepteren. Controleer of alles correct is + en dat er geen bestanden en dergelijke open zijn in andere + windows. Klik als laatste op Write + om het bestand te schrijven naar de schijf. + + ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#51 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -14,6 +14,11 @@ &pgpkey.tabthorpe; + + &a.eadler; + &pgpkey.eadler; + + &a.shaun; &pgpkey.shaun; ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#48 (text+ko) ==== @@ -1,5 +1,5 @@ - + @@ -95,6 +95,7 @@ + ==== //depot/projects/docproj_nl/www/en/java/news.xml#7 (text+ko) ==== @@ -20,7 +20,7 @@ - $FreeBSD: www/en/java/news.xml,v 1.11 2011/02/13 06:21:04 glewis Exp $ + $FreeBSD: www/en/java/news.xml,v 1.12 2011/02/19 03:55:41 ryusuke Exp $ @@ -1301,7 +1301,7 @@ December - . 21 + 21 jdk1.1.7.V98-12-21.tar.gz ==== //depot/projects/docproj_nl/www/nl/administration.sgml#26 (text+ko) ==== @@ -1,5 +1,5 @@ + %developers; @@ -7,7 +7,7 @@ &header; @@ -68,7 +68,6 @@ Coördinatoren
  • Perforce Reservoir Beheerders
  • Postmeesterteam
  • -
  • Ref Beheerders
  • Webmasterteam
  • @@ -571,26 +570,6 @@
  • &a.dhw; <dhw@FreeBSD.org>
  • -

    Referentiesysteem Beheerders - - <refadm@>

    - -

    De Referentiesysteem Beheerders zijn verantwoordelijk voor het beheren, - bijwerken en onderhouden van de referentiesystemen in het &os;-cluster. - Deze systemen zijn beschikbaar voor alle &os;-committers.

    - - -

    Webmasterteam <webmaster@FreeBSD.org>

    ==== //depot/projects/docproj_nl/www/nl/index.xsl#15 (text+ko) ==== @@ -1,14 +1,14 @@ ]> - + @@ -331,7 +331,7 @@
    • - Meer + Meer
    • Erratamededelingen RSS feed ==== //depot/projects/docproj_nl/www/nl/share/sgml/libcommon.xsl#15 (text+ko) ==== @@ -1,9 +1,9 @@ - @@ -189,12 +189,14 @@ + + - + ==== //depot/projects/docproj_nl/www/nl/share/sgml/navibar.l10n.ent#17 (text+ko) ==== @@ -1,6 +1,6 @@ - @@ -182,6 +182,7 @@
    • Beveiligingsinformatie
    • Bugrapportages
        ==== //depot/projects/docproj_nl/www/share/sgml/news.xml#101 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.362 2011/02/04 11:03:18 jkois Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.363 2011/02/18 07:27:49 miwi Exp $ @@ -36,6 +36,15 @@ 2 + 18 + +

        Enhanced commit privileges: Martin Wilke + (src, ports, doc)

        +
        +
        + + 3 From owner-p4-projects@FreeBSD.ORG Sun Feb 20 21:46:59 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2B6B71065673; Sun, 20 Feb 2011 21:46:59 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E235B1065670 for ; Sun, 20 Feb 2011 21:46:58 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id CDAF38FC23 for ; Sun, 20 Feb 2011 21:46:58 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1KLkwBJ098178 for ; Sun, 20 Feb 2011 21:46:58 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1KLkw82098175 for perforce@freebsd.org; Sun, 20 Feb 2011 21:46:58 GMT (envelope-from trasz@freebsd.org) Date: Sun, 20 Feb 2011 21:46:58 GMT Message-Id: <201102202146.p1KLkw82098175@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 188985 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 21:46:59 -0000 http://p4web.freebsd.org/@@188985?ac=10 Change 188985 by trasz@trasz_victim on 2011/02/20 21:46:46 Loginclass name must not be empty. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_loginclass.c#31 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_loginclass.c#31 (text+ko) ==== @@ -113,7 +113,7 @@ { struct loginclass *lc, *newlc; - if (strlen(name) > MAXLOGNAME - 1) + if (name[0] == '\0' || strlen(name) > MAXLOGNAME - 1) return (NULL); newlc = malloc(sizeof(*newlc), M_LOGINCLASS, M_ZERO | M_WAITOK); @@ -198,9 +198,10 @@ if (error != 0) return (error); + newlc = loginclass_find(lcname); + if (newlc == NULL) + return (EINVAL); newcred = crget(); - newlc = loginclass_find(lcname); - KASSERT(newlc != NULL, ("loginclass_find() failed")); PROC_LOCK(p); oldcred = crcopysafe(p, newcred); From owner-p4-projects@FreeBSD.ORG Tue Feb 22 16:06:18 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 24E651065674; Tue, 22 Feb 2011 16:06:18 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBBB5106566B for ; Tue, 22 Feb 2011 16:06:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id C862D8FC19 for ; Tue, 22 Feb 2011 16:06:17 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1MG6HKt028268 for ; Tue, 22 Feb 2011 16:06:17 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1MG6H02028265 for perforce@freebsd.org; Tue, 22 Feb 2011 16:06:17 GMT (envelope-from jhb@freebsd.org) Date: Tue, 22 Feb 2011 16:06:17 GMT Message-Id: <201102221606.p1MG6H02028265@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189034 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Feb 2011 16:06:18 -0000 http://p4web.freebsd.org/@@189034?ac=10 Change 189034 by jhb@jhb_jhbbsd on 2011/02/22 16:05:23 Don't use getline() stub on newer FreeBSD versions. Affected files ... .. //depot/projects/mcelog/config.c#3 edit Differences ... ==== //depot/projects/mcelog/config.c#3 (text) ==== @@ -18,6 +18,9 @@ Author: Andi Kleen */ #define _GNU_SOURCE 1 +#ifdef __FreeBSD__ +#include +#endif #include #include #include @@ -126,11 +129,8 @@ return s; } -#ifdef __FreeBSD__ -/* - * Newer versions do have getline(), so this should use a version test - * at some point. - */ +#if defined(__FreeBSD__) && __FreeBSD_version < 800067 +/* Provide a stub getline() for older versions of FreeBSD. */ static ssize_t getline(char **cp, size_t *lenp, FILE *f) { From owner-p4-projects@FreeBSD.ORG Wed Feb 23 06:07:42 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B38BF1065670; Wed, 23 Feb 2011 06:07:42 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75AAF106566B for ; Wed, 23 Feb 2011 06:07:42 +0000 (UTC) (envelope-from remko@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 2BDF88FC14 for ; Wed, 23 Feb 2011 06:07:42 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1N67gMm007323 for ; Wed, 23 Feb 2011 06:07:42 GMT (envelope-from remko@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1N67fmq007320 for perforce@freebsd.org; Wed, 23 Feb 2011 06:07:41 GMT (envelope-from remko@freebsd.org) Date: Wed, 23 Feb 2011 06:07:41 GMT Message-Id: <201102230607.p1N67fmq007320@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to remko@freebsd.org using -f From: Remko Lodder To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189047 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Feb 2011 06:07:43 -0000 http://p4web.freebsd.org/@@189047?ac=10 Change 189047 by remko@remko_nakur on 2011/02/23 06:07:07 IFC the latest and greatest changes we made recently, including some additional translation of the FAQ which is outdated and needs a lot of work. Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/committers-guide/article.sgml#35 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/install/chapter.sgml#17 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/faq/book.sgml#21 edit .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml#22 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/committers-guide/article.sgml#35 (text+ko) ==== @@ -9,7 +9,7 @@ The &os; Documentation Project - $FreeBSD: doc/en_US.ISO8859-1/articles/committers-guide/article.sgml,v 1.292 2011/02/19 09:34:25 linimon Exp $ + $FreeBSD: doc/en_US.ISO8859-1/articles/committers-guide/article.sgml,v 1.293 2011/02/22 10:27:25 ryusuke Exp $ 1999 @@ -2934,7 +2934,7 @@ (this was the point of the exercise, remember?) The new category should be listed first. This will help to - ensure that the the PKGORIGIN + ensure that the PKGORIGIN is correct. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/install/chapter.sgml#17 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -639,17 +639,6 @@ The example below lists /dev/da0 as the - target device from which you will be booting. Be very careful - that you have the correct device as the output target, or you - may destroy your existing data. - - - Set the kern.geom.debugflags sysctl to be - able to write a master boot record to the target device. - - - The example below - lists /dev/da0 as the target device where the image will be written. Be very careful that you have the correct device as the output target, or you may destroy your existing data. @@ -679,11 +668,8 @@ Using &windows; To Write the Image - The example below - lists H: as the drive - letter of the device where the image will be written. Be very - careful that you have the correct device as the output target, - or you may destroy existing data. + Make sure you use the correct drive letter as the output + target, or you may overwrite and destroy existing data. @@ -691,8 +677,8 @@ Image Writer for Windows is a free application that can correctly write an image file to a - memory stick. Download it - from + memory stick. Download it from + and extract it into a folder. ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/faq/book.sgml#21 (text+ko) ==== @@ -528,8 +528,8 @@ -STABLE een beetje frustrerend zijn. - Meer informatie over het releage engineering - process (inclusief een schema van opkomende versies) + Meer informatie over het release engineering + process (inclusief een schema van aankomende versies) kan gevonden worden op de release engineering pagina's op de &os; website. @@ -1068,9 +1068,9 @@ verwacht dat deze de pijn van het lezen van de handleidingen of eigen onderzoek verzachten. Het is primair een chat kanaal, en de onderwerpen daar gaan - net zo makkelijk over sex, sport en nucleare wapens + net zo makkelijk over sex, sport en nucleaire wapens als dat ze over &os; gaan. Je bent gewaarschuwd! - Een beschikbare server is + Een van de beschikbare servers is irc.chat.org. @@ -2477,19 +2477,19 @@ - Which CD-ROM drives are supported by &os;? + Welke CD-ROM spelers worden ondersteund door &os;? - Any SCSI drive connected to a supported controller is - supported. + Elke SCSI speler die gekoppeld is aan een ondersteunde + controller wordt ondersteund. - The following proprietary CD-ROM interfaces are also - supported: + De volgende proprietary CD-ROM interfaces worden ook + ondersteund: - Mitsumi LU002 (8bit), LU005 (16bit) and FX001D + Mitsumi LU002 (8bit), LU005 (16bit) en FX001D (16bit 2x Speed). @@ -2498,7 +2498,7 @@ - Sound Blaster Non-SCSI CD-ROM + Sound Blaster zonder SCSI CD-ROM @@ -2510,48 +2510,52 @@ - All non-SCSI cards are known to be extremely slow - compared to SCSI drives, and some ATAPI CD-ROMs may not - work. + Bij alle niet SCSI kaarten is het bekend dat deze + extreem langzaam zijn in vergelijking met SCSI schijven + en sommige ATAPI CD-ROMs kunnen helemaal niet + werken. - The official &os; CD-ROM ISO, and CD-ROMs from Daemon - News and &os; Mall, support booting directly from the - CD. + De officiele &os; CD-ROM ISO en de CD-ROMs van + Daemon News en &os; Mall, ondersteunen het direct + opstarten vanaf CD. - Which CD-RW drives are supported by &os;? + Welke CD-RW spelers worden ondersteund door &os;? - &os; supports any ATAPI-compatible IDE CD-R or CD-RW - drive. See &man.burncd.8; for details. + &os; ondersteund elke ATAPI-compatible IDE CD-R of + CD-RW apparaat. Zie &man.burncd.8; voor meer + details. - &os; also supports any SCSI CD-R or CD-RW drives. - Install and use the cdrecord command - from the ports or packages system, and make sure that you - have the pass device compiled in - your kernel. + &os; ondersteund ook elke SCSI CD-R of CD-RW schijf. + Installeer en gebruik het cdrecord + commando vanuit de Ports Collectie of het packages systeem, + en zorg ervoor dat het pass + apparaat in de kernel gecompileerd is. - Does &os; support &iomegazip; drives? + Ondersteund &os; &iomegazip; schijven? - &os; supports SCSI and ATAPI (IDE) &iomegazip; drives - out of the box. SCSI ZIP drives can only be set to run at - SCSI target IDs 5 or 6, but if your SCSI host adapter's - BIOS supports it you can even boot from it. It is not - clear which host adapters support booting from targets - other than 0 or 1, so you will have to consult your - adapter's documentation if you would like to use this - feature. + &os; ondersteund zowel SCSI als ATAPI (IDE) &iomagezip; + schijven zonder verdere aanpassingen. SCSI ZIP schijven + kunnen alleen in gebruik worden genomen als deze zijn ingesteld + als SCSI target ID 5 of 6. Als zelfs de SCSI host adapter's BIOS + het ondersteund kan er vanaf opgestart worden. Het is niet + duidelijk welke host adapters het opstarten ondersteunen voor + targets anders dan 0 of 1, bekijk de documentatie van de adapter + als deze optie gebruikt moet worden. + &os; ondersteund ook Parallele port ZIP schijven. + Controleer &os; also supports Parallel Port Zip Drives. Check that your kernel contains the scbus0, ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml#22 (text+ko) ==== @@ -1,10 +1,10 @@ @@ -685,18 +685,6 @@ Het onderstaande voorbeeld vermeldt - /dev/da0 als het - doelapparaat van waar af u zal opstarten. Zorg er voor dat u het - juiste apparaat als het uitvoerapparaat opgeeft om te voorkomen - dat u uw bestaande gegevens vernietigd. - - - Stel de sysctl kern.geom.debugflags in om - een master boot record naar het doelapparaat te kunnen - schrijven. - - - Het onderstaande voorbeeld vermeldt /dev/da0 als het doelapparaat van waar af u zal opstarten. Zorg er voor dat u het juiste apparaat als het uitvoerapparaat opgeeft om te voorkomen @@ -727,13 +715,9 @@ &windows; gebruiken om het beeldbestand te schrijven - - Het onderstaande voorbeeld vermeldt - H: als de schijfletter - van het apparaat waar het bestand op wordt geschreven. Zorg er - voor dat u het juiste apparaat alshet uitvoerapparaat opgeeft om - te voorkomen dat u uw bestaande gegevens vernietigd. - + Zorg ervoor dat de juiste schijf letter gebruikt + wordt als doelschijf, anders kan het voorkomen dat er + bestaande data wordt overschreven. <application>Image Writer for Windows</application> verkrijgen @@ -741,7 +725,7 @@ Image Writer for Windows is een gratis applicatie die een beeld bestand correct naar een geheugen-stick kan schrijven. Download deze van - + en pak deze uit in een map. From owner-p4-projects@FreeBSD.ORG Wed Feb 23 06:28:32 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id A89891065673; Wed, 23 Feb 2011 06:28:31 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B7A51065670 for ; Wed, 23 Feb 2011 06:28:31 +0000 (UTC) (envelope-from remko@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 4016A8FC13 for ; Wed, 23 Feb 2011 06:28:31 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1N6SVKE012011 for ; Wed, 23 Feb 2011 06:28:31 GMT (envelope-from remko@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1N6SVNh012008 for perforce@freebsd.org; Wed, 23 Feb 2011 06:28:31 GMT (envelope-from remko@freebsd.org) Date: Wed, 23 Feb 2011 06:28:31 GMT Message-Id: <201102230628.p1N6SVNh012008@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to remko@freebsd.org using -f From: Remko Lodder To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189048 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Feb 2011 06:28:32 -0000 http://p4web.freebsd.org/@@189048?ac=10 Change 189048 by remko@remko_nakur on 2011/02/23 06:27:36 Translate an additional paragraph, this unbreaks the local doc_NL build that runs on my host. Affected files ... .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/faq/book.sgml#22 edit Differences ... ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/faq/book.sgml#22 (text+ko) ==== @@ -2545,7 +2545,7 @@ - &os; ondersteund zowel SCSI als ATAPI (IDE) &iomagezip; + &os; ondersteund zowel SCSI als ATAPI (IDE) &iomegazip; schijven zonder verdere aanpassingen. SCSI ZIP schijven kunnen alleen in gebruik worden genomen als deze zijn ingesteld als SCSI target ID 5 of 6. Als zelfs de SCSI host adapter's BIOS @@ -2555,20 +2555,20 @@ als deze optie gebruikt moet worden. &os; ondersteund ook Parallele port ZIP schijven. - Controleer - &os; also supports Parallel Port Zip Drives. Check - that your kernel contains the + Controleer of de kernel de volgende drivers bevat: scbus0, da0, - ppbus0, and - vp0 drivers (the - GENERIC kernel contains everything - except vp0). With all these - drivers present, the Parallel Port drive should be available - as /dev/da0s4. Disks can be - mounted using mount /dev/da0s4 /mnt OR - (for DOS disks) mount_msdos /dev/da0s4 /mnt - as appropriate. + ppbus0, en + vp0 (de + GENERIC kernel bevat al deze + drivers behalve vp0). + Met de beschikking over al deze stuurprogramma's zal + de parallelle port schijf beschikbaar zijn als + /dev/da0s4. De schijven + kunnen gekoppeld worden door + mount /dev/da0s4 /mnt of + (voor DOS schijven) + mount_msdos /dev/da0s4 /mnt. Also check out the FAQ on removable drives later in this chapter, and Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 39BF1106566C; Wed, 23 Feb 2011 21:36:21 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6F03106564A for ; Wed, 23 Feb 2011 21:36:20 +0000 (UTC) (envelope-from gpf@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id D1B5B8FC0A for ; Wed, 23 Feb 2011 21:36:20 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1NLaKML005307 for ; Wed, 23 Feb 2011 21:36:20 GMT (envelope-from gpf@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1NLZG7W005295 for perforce@freebsd.org; Wed, 23 Feb 2011 21:35:16 GMT (envelope-from gpf@FreeBSD.org) Date: Wed, 23 Feb 2011 21:35:16 GMT Message-Id: <201102232135.p1NLZG7W005295@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to gpf@FreeBSD.org using -f From: Efstratios Karatzas To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189070 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Feb 2011 21:36:21 -0000 http://p4web.freebsd.org/@@189070?ac=10 Change 189070 by gpf@gpf_desktop on 2011/02/23 21:34:27 IFC done testing with UFS, both old nfs server & new (NFS v3 & v4) - everything seems to be working as it were, also fixed a few errors of mine with vnode references in experimental NSF server. Affected files ... .. //depot/projects/soc2010/gpf_audit/freebsd/doc/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/da_DK.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/articles/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/articles/linux-comparison/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/articles/solid-state/Makefile#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/articles/solid-state/article.sgml#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/ipv6/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/kerneldebug/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/policies/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/secure/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/sockets/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/testing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/tools/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/developers-handbook/x86/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/faq/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/fdp-primer/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/audit/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/mac/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/users/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/books/porters-handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/de_DE.ISO8859-1/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/articles/problem-reports/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/freebsd.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/trademarks.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/el_GR.ISO8859-7/share/sgml/translators.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/casestudy-argentina.com/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/committers-guide/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/contrib.corealumni.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/contrib.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/contributors/contrib.portmgralumni.sgml#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/cups/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/euro/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/freebsd-update-server/Makefile#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/freebsd-update-server/article.sgml#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/freebsd-update-server/diff.txt#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/freebsd-update-server/init.txt#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/hubs/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/ldap-auth/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/linux-comparison/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/linux-emulation/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/linux-users/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/nanobsd/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/portbuild/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/problem-reports/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/releng-packages/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/releng/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/serial-uart/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/solid-state/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/storage-devices/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/articles/vm-design/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/arch-handbook/jail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/arch-handbook/locking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/arch-handbook/mac/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/arch-handbook/usb/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/corp-net-guide/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/dev-model/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/developers-handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/developers-handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/developers-handbook/policies/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/developers-handbook/testing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/faq/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/books/porters-handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/share/sgml/authors.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/es_ES.ISO8859-1/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/es_ES.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/audit/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/fr_FR.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/compiz-fusion/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/compiz-fusion/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/cups/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/cups/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/dialup-firewall/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/dialup-firewall/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/gjournal-desktop/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/gjournal-desktop/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/laptop/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/laptop/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/linux-comparison/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/linux-users/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/linux-users/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/multi-os/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/multi-os/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/version-guide/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/articles/version-guide/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/faq/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/faq/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/examples/appendix.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/psgml-mode/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/sgml-markup/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/sgml-primer/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/fdp-primer/the-website/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/advanced-networking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/dtrace/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/filesystems/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/mac/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/users/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/sgml/freebsd.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/sgml/translators.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/hu_HU.ISO8859-2/share/tools/checkupdate/notify#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/it_IT.ISO8859-15/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/articles/contributing/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/books/porters-handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ja_JP.eucJP/share/sgml/transtable.xml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/audit/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/mn_MN.UTF-8/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/articles/problem-reports/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/articles/solid-state/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/audit/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/nl_NL.ISO8859-1/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/pl_PL.ISO8859-2/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/pt_BR.ISO8859-1/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/5-roadmap/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/checkpoint/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/checkpoint/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/cups/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/fbsd-from-scratch/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/gjournal-desktop/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/hubs/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/ipsec-must/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/ipsec-must/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/pr-guidelines/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/problem-reports/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/relaydelay/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/releng/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/releng/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/solid-state/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/version-guide/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/articles/vm-design/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/chapters.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/filesystems/Makefile#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/filesystems/chapter.sgml#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/ru_RU.KOI8-R/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/articles/releng/branches-releng8.pic#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/adduser2.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/config-country.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/config-keymap.scr#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/dist-set.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/dist-set2.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/docmenu1.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/ed0-conf.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/ed0-conf2.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/edit-inetd-conf.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/ftp-anon1.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/main-doc.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/main-keymap.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/main-options.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/main-std.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/main1.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/media.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/options.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/images/books/handbook/install/sysinstall-exit.scr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/ache.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/ae.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/andrew.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/arved.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/ashish.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/bapt.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/beech.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/bf.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/culot.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/decke.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/des.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/dim.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/dougb.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/eadler.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/ehaupt.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/fjoe.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/flo.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/garga.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/gjb.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/jchandra.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/jonathan.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/jsa.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/keramida.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/marck.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/martymac.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/novel.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/ohauer.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/pgpkeys-core.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/pgpkeys-developers.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/pgpkeys.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/pluknet.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/rea.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/remko.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/snb.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/sunpoet.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/swills.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/tabthorpe.key#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/taras.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/tijl.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/pgpkeys/zack.key#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/freebsd-common.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/freebsd-html.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/freebsd-print.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/freebsd.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/man-refs.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/mirrors.xml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/articles/linux-users/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/articles/nanobsd/article.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/arch-handbook/jail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/arch-handbook/mac/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/arch-handbook/usb/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/advanced-networking/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/audit/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/basics/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/bibliography/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/boot/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/config/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/cutting-edge/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/desktop/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/disks/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/eresources/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/firewalls/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/geom/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/install/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/introduction/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/jails/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/kernelconfig/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/l10n/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/linuxemu/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/mail/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/mirrors/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/multimedia/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/network-servers/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/ports/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/ppp-and-slip/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/preface/preface.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/printing/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/security/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/serialcomms/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/updating/Makefile#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/updating/chapter.sgml#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/vinum/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/virtualization/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/handbook/x11/chapter.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/books/porters-handbook/book.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/share/sgml/glossary/freebsd-glossary.sgml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/share/sgml/mailing-lists.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_CN.GB2312/share/sgml/trademarks.ent#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/doc/zh_TW.Big5/share/sgml/freebsd.dsl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/CHANGES#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/COPYRIGHT#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/GIDs#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/KNOBS#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/LEGAL#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/MOVED#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.apache.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.autotools.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.commands.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.cran.mk#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.database.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.destdir.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.efl.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.emacs.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.fpc.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.gcc.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.gecko.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.gnome.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.gnustep.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.gstreamer.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.java.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.kde4.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.licenses.db.mk#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.licenses.mk#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.linux-apps.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.linux-rpm.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.lua.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.octave.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.perl.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.php.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.port.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.port.subdir.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.python.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.qt.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.ruby.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.sdl.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.sites.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.wx.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Mk/bsd.xfce.mk#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Templates/BSD.local.dist#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/4/bindist/README#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/4/bindist/delete#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/4/bindist/dirlist#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/4/bindist/files/usr/bin/uname#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/4/mkbindist.conf#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/5/bindist/files/usr/bin/uname#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/5/mkbindist.conf#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/conf/.cvsignore#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/conf/README.dotunnel#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/conf/client.conf#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/conf/common.conf#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/conf/make.conf#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/conf/server.conf#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/errorlogs/index.shtml#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/allgohans#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/allgohans.safe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/build#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/buildenv#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/buildfailure#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/buildproxy#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/buildproxy-client#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/buildscript#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/buildsuccess#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/claim-chroot#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/clean-chroot#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/cleanup-chroots#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/client-metrics#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/cpdistfiles#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/do-cleanup-chroots#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/dodistfiles#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/dologs#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/dopackages#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/dopackages.wrapper#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/dopackagestats#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/dosetupnode#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/flushsquid#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/getmachine#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/keeprestr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/makeduds#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/makeindex#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/makerestr#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/makeworld#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/mkbindist#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/nukesquid#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/packagebuild#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/pdispatch#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/portbuild#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/processfail#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/processlogs#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/processlogs2#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/processonelog#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/prunefailure#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/reportload#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/retcodes#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/stats#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/updatesnap#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/updatesnap.ports#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/zbackup#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/zexpire#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/portbuild/scripts/zsync#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/scripts/addport#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/scripts/distclean.sh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/scripts/mark_safe.pl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/scripts/notconnected#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/ports/Tools/scripts/tindex#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/UIDs#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/ports/UPDATING#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/COPYRIGHT#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/Makefile.inc1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/Makefile.mips#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/ObsoleteFiles.inc#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/README#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/UPDATING#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/chflags/chflags.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/chio/chio.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/cp/cp.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/csh.1#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/csh.2#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/csh.3#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/csh.4#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/csh.a#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/csh.g#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/csh/USD.doc/tabs#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/date/date.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/df/df.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/echo/echo.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/ed/ed.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/expr/expr.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/getfacl/getfacl.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/kenv/kenv.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/kill/kill.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/kill/kill.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/ln/ln.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/pax/pat_rep.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/pax/pax.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/pax/tar.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/pkill/pkill.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/pkill/pkill.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/ps/extern.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/ps/keyword.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/ps/print.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/ps/ps.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/rm/rm.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/rm/rm.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/setfacl/setfacl.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/setfacl/setfacl.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/TOUR#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/alias.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/alias.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/arith.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/arith.y#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/arith_lex.l#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/arith_yacc.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/arith_yacc.h#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/arith_yylex.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/bltin/bltin.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/bltin/echo.1#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/builtins.def#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/cd.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/error.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/error.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/eval.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/exec.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/exec.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/expand.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/expand.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/funcs/suspend#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/histedit.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/init.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/input.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/jobs.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/jobs.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/mail.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/main.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/memalloc.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/memalloc.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/miscbltin.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/mkinit.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/mksyntax.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/myhistedit.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/nodes.c.pat#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/options.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/output.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/output.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/parser.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/parser.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/redir.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/sh.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/shell.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/show.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/trap.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/trap.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/var.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sh/var.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sleep/sleep.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/sleep/sleep.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/stty/key.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/stty/stty.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/test/TEST.README#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/test/TEST.csh#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/test/TEST.sh#2 delete .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/test/test.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/bin/test/test.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/Makefile.inc#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/compat/opensolaris/include/mnttab.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/compat/opensolaris/misc/fsshare.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/compat/opensolaris/misc/mnttab.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/dtracetoolkit/dtruss#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/baddof.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/chkargs/chkargs.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/dstyle.pl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/dtest.pl#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_SCALAR.stddevtoofew.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.stddevnoarg.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.stddevtoomany.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearstddev.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearstddev.d.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs1.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs2.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs2.d.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs3.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs3.d.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.stddev.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.stddev.d.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.subr.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.orthogonality.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.D_PDESC_ZERO.lowfrequency.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.D_PDESC_ZERO.malformedoverflow.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.D_PDESC_ZERO.nonexistentevent.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.cpcvscpustatpart1.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.cpcvscpustatpart2.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.cputrackfailtostart.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.cputrackterminates.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/err.toomanyenablings.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/tst.allcpus.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/tst.genericevent.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/tst.platformevent.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.AddSearchPath.d.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithModule.d.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ELFGenerationOut.d.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ELFGenerationWithO.d.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.PreprocessorStatement.d.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.motoofew.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.motoomany.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtatoofew.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtatoomany.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.index.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv4remote.pl#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv6remote.pl#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localudp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localudp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remoteicmp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remoteicmp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remotetcp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remotetcp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remoteudp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remoteudp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6remoteicmp.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6remoteicmp.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.remotetcpstate.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.remotetcpstate.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/TestFunctionLookup.java#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/TestGetAggregate.java#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/tst.FunctionLookup.ksh.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/tst.GetAggregate.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/tst.include.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/tst.macroglob.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/tst.macroglob.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/tst.schrock.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PDESC_ZERO.badlib.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_CREATEFAIL.many.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_FUNC.badfunc.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_LIB.libdash.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.alldash.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.badname.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.globdash.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_OFF.toobig.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.coverage.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.emptystack.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.fork.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.gcc.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.killonerror.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.probemod.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex1.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex2.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex3.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex4.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/plockstat/tst.available.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/plockstat/tst.libmap.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/tst.basics.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/tst.basics.d.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/tst.largeusersym.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/tst.walltimestamp.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.printT.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.printY.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.str.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.str.d.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.sym.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.sym.d.out#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.exec.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.execfail.ENOENT.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.execfail.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.sigwait.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.D_MACRO_UNUSED.overflow.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.arguments.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.egid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.euid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.gid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.ppid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.projid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.sid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.stringmacro.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.taskid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/tst.uid.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/tst.sdtargs.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/tst.sdtargs.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/err.D_AGG_SPEC.SpeculateWithStddev.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sysevent/tst.post_chan.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/Makefile#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/main.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/prov.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/prov.h#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.badguess.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.corruptenv.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.dlclose1.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.dlclose2.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.dlclose3.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.eliminate.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled2.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled2.ksh.out#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.entryreturn.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.fork.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.guess32.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.guess64.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.header.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.include.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.linkpriv.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.linkunpriv.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.nodtrace.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.onlyenabled.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reeval.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.static.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.static2.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.user.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/vars/tst.ucaller.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/funcs/tst.badcopyin.d#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/tst.basic.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/tst.hvmenable.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/tst.memenable.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/tst.schedargs.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/tst.schedenable.ksh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/pid/err.D_PROC_ALIGN.misaligned.exe#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/usdt/tst.tailcall.ksh#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/plockstat/plockstat.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/pyzfs/pyzfs.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zdb/zdb.8#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zdb/zdb.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zdb/zdb_il.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zfs/zfs.8#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zinject/zinject.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/cmd/ztest/ztest.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/common/avl/avl.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/drti.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_aggregate.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_dof.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_error.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_lex.l#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_module.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_program.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_string.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/dtrace.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/mkerrno.sh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/common/mksignal.sh#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/i386/dt_isadep.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/i386/regs.d.in#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/i386/regs.sed.in#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/sparc/dt_isadep.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libdtrace/sparc/regs.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libgen/common/gmatch.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_changelist.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_graph.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_impl.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_mount.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/libzpool/common/taskq.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/__init__.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/allow.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/dataset.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/groupspace.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/ioctl.c#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/unallow.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/userspace.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/lib/pyzfs/common/util.py#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/tools/ctf/cvt/output.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/tools/ctf/cvt/st_parse.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/contrib/opensolaris/tools/ctf/cvt/tdata.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/lib/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/lib/drti/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/lib/libdtrace/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/lib/libdtrace/libproc_compat.h#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/lib/libdtrace/regs_x86.d#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/lib/libzpool/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.bin/ctfconvert/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.bin/ctfconvert/ctfconvert.1#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.bin/ctfdump/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.bin/ctfdump/ctfdump.1#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.bin/ctfmerge/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.bin/ctfmerge/ctfmerge.1#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/dtrace/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/dtruss/Makefile#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/dtruss/dtruss.1#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/lockstat/Makefile#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/plockstat/Makefile#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/cddl/usr.sbin/plockstat/plockstat.1#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/CHANGES#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/COPYRIGHT#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/README#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.html#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.pdf#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.txt#1 branch .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/check/check-tool.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/check/check-tool.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/check/named-checkconf.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/check/named-checkzone.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dig/dig.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dig/dighost.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dig/host.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dig/nslookup.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dig/nslookup.docbook#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dig/nslookup.html#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dnssec/dnssec-keygen.html#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dnssec/dnssec-signzone.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/dnssec/dnssec-signzone.html#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/builtin.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/client.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/control.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/include/named/globals.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/include/named/query.h#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/main.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/query.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/server.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/update.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/named/xfrout.c#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/nsupdate/nsupdate.1#2 integrate .. //depot/projects/soc2010/gpf_audit/freebsd/src/contrib/bind9/bin/nsupdate/nsupdate.c#2 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Wed Feb 23 22:35:37 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 49D3E1065672; Wed, 23 Feb 2011 22:35:37 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A59C106566B for ; Wed, 23 Feb 2011 22:35:37 +0000 (UTC) (envelope-from gpf@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id EB85E8FC14 for ; Wed, 23 Feb 2011 22:35:36 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1NMZaVb017641 for ; Wed, 23 Feb 2011 22:35:36 GMT (envelope-from gpf@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1NMZaev017638 for perforce@freebsd.org; Wed, 23 Feb 2011 22:35:36 GMT (envelope-from gpf@FreeBSD.org) Date: Wed, 23 Feb 2011 22:35:36 GMT Message-Id: <201102232235.p1NMZaev017638@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to gpf@FreeBSD.org using -f From: Efstratios Karatzas To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189073 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Feb 2011 22:35:37 -0000 http://p4web.freebsd.org/@@189073?ac=10 Change 189073 by gpf@gpf_desktop on 2011/02/23 22:34:46 - call to nfsrv_auditpath() should be after possible unlocking of 'nvp' Affected files ... .. //depot/projects/soc2010/gpf_audit/freebsd/src/sys/fs/nfsserver/nfs_nfsdsocket.c#16 edit Differences ... ==== //depot/projects/soc2010/gpf_audit/freebsd/src/sys/fs/nfsserver/nfs_nfsdsocket.c#16 (text+ko) ==== @@ -915,12 +915,7 @@ vn_start_write(vp, &temp_mp, V_WAIT); nvp = NULL; error = (*(nfsrv4_ops1[op]))(nd, isdgram, vp, - &nvp, (fhandle_t *)fh.nfsrvfh_data, p, &vpnes); - if (nvp != NULL) { - nfsrv_auditpath(nvp, NULL, NULL, - (fhandle_t *)fh.nfsrvfh_data, 1); - vrele(nvp); - } + &nvp, (fhandle_t *)fh.nfsrvfh_data, p, &vpnes); if (!error && !nd->nd_repstat) { if (op == NFSV4OP_LOOKUP || op == NFSV4OP_LOOKUPP) { new_mp = nvp->v_mount; @@ -950,6 +945,11 @@ } else vrele(nvp); } + if (nvp != NULL) { + nfsrv_auditpath(nvp, NULL, NULL, + (fhandle_t *)fh.nfsrvfh_data, 1); + vrele(nvp); + } if (nfsv4_opflag[op].modifyfs) vn_finished_write(temp_mp); } else if (nfsv4_opflag[op].retfh == 2) { From owner-p4-projects@FreeBSD.ORG Thu Feb 24 21:17:54 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C68BF106567A; Thu, 24 Feb 2011 21:17:54 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 711E21065670 for ; Thu, 24 Feb 2011 21:17:54 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 5DC6E8FC17 for ; Thu, 24 Feb 2011 21:17:54 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1OLHs4V006653 for ; Thu, 24 Feb 2011 21:17:54 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1OLHrAf006650 for perforce@freebsd.org; Thu, 24 Feb 2011 21:17:53 GMT (envelope-from trasz@freebsd.org) Date: Thu, 24 Feb 2011 21:17:53 GMT Message-Id: <201102242117.p1OLHrAf006650@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189096 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Feb 2011 21:17:55 -0000 http://p4web.freebsd.org/@@189096?ac=10 Change 189096 by trasz@trasz_victim on 2011/02/24 21:17:41 Implement "devctl" action. Affected files ... .. //depot/projects/soc2009/trasz_limits/etc/devd.conf#7 edit .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#36 edit .. //depot/projects/soc2009/trasz_limits/sys/sys/rctl.h#13 edit .. //depot/projects/soc2009/trasz_limits/usr.bin/rctl/rctl.8#9 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/etc/devd.conf#7 (text+ko) ==== @@ -301,6 +301,7 @@ # Button: Button pressed (0 for power, 1 for sleep) # CMBAT: ACPI battery events # Lid: Lid state (0 is closed, 1 is open) +# RCTL: Resource limits # Suspend, Resume: Suspend and resume notification # Thermal: ACPI thermal zone events # @@ -313,4 +314,13 @@ match "subsystem" "ACAD"; action "/etc/acpi_ac $notify"; }; + +# This example works around a memory leak in PostgreSQL, restarting +# it when "user:pgsql:swap:devctl=1G" rctl(8) rule gets triggered. +notify 0 { + match "system" "RCTL"; + match "rule" "user:70:swap:.*"; + action "/usr/local/etc/rc.d/postgresql restart" +}; + */ ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#36 (text+ko) ==== @@ -32,9 +32,10 @@ #include __FBSDID("$FreeBSD$"); +#include +#include #include #include -#include #include #include #include @@ -157,6 +158,7 @@ { "sigthr", RCTL_ACTION_SIGTHR }, { "deny", RCTL_ACTION_DENY }, { "log", RCTL_ACTION_LOG }, + { "devctl", RCTL_ACTION_DEVCTL }, { NULL, -1 }}; static void rctl_init(void); @@ -331,6 +333,27 @@ free(buf, M_RCTL); link->rrl_exceeded = 1; continue; + case RCTL_ACTION_DEVCTL: + if (link->rrl_exceeded != 0) + continue; + + buf = malloc(RCTL_LOG_BUFSIZE, M_RCTL, M_NOWAIT); + if (buf == NULL) { + printf("rctl_enforce: out of memory\n"); + continue; + } + sbuf_new(&sb, buf, RCTL_LOG_BUFSIZE, SBUF_FIXEDLEN); + sbuf_printf(&sb, "rule="); + rctl_rule_to_sbuf(&sb, rule); + sbuf_printf(&sb, " pid=%d ruid=%d jid=%d", p->p_pid, + p->p_ucred->cr_ruid, p->p_ucred->cr_prison->pr_id); + sbuf_finish(&sb); + devctl_notify_f("RCTL", "rule", "matched", + sbuf_data(&sb), M_NOWAIT); + sbuf_delete(&sb); + free(buf, M_RCTL); + link->rrl_exceeded = 1; + continue; default: if (link->rrl_exceeded != 0) continue; ==== //depot/projects/soc2009/trasz_limits/sys/sys/rctl.h#13 (text+ko) ==== @@ -128,7 +128,8 @@ #define RCTL_ACTION_SIGNAL_MAX RCTL_ACTION_SIGTHR #define RCTL_ACTION_DENY (RCTL_ACTION_SIGNAL_MAX + 1) #define RCTL_ACTION_LOG (RCTL_ACTION_SIGNAL_MAX + 2) -#define RCTL_ACTION_MAX RCTL_ACTION_LOG +#define RCTL_ACTION_DEVCTL (RCTL_ACTION_SIGNAL_MAX + 3) +#define RCTL_ACTION_MAX RCTL_ACTION_DEVCTL #define RCTL_AMOUNT_UNDEFINED -1 ==== //depot/projects/soc2009/trasz_limits/usr.bin/rctl/rctl.8#9 (text+ko) ==== @@ -151,6 +151,8 @@ .Bl -column -offset 3n "msgqqueued" .It deny deny the allocation; not supported for cpu and wallclock .It log log a warning to the console +.It devctl send notification to +.Xr devd 8 .It sig* e.g. sigterm; send a signal to the offending process .El .Pp From owner-p4-projects@FreeBSD.ORG Fri Feb 25 03:11:15 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C79A41065675; Fri, 25 Feb 2011 03:11:14 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C38A1065673 for ; Fri, 25 Feb 2011 03:11:14 +0000 (UTC) (envelope-from lz@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 696048FC13 for ; Fri, 25 Feb 2011 03:11:14 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1P3BEBd086157 for ; Fri, 25 Feb 2011 03:11:14 GMT (envelope-from lz@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1P3BE5t086153 for perforce@freebsd.org; Fri, 25 Feb 2011 03:11:14 GMT (envelope-from lz@FreeBSD.org) Date: Fri, 25 Feb 2011 03:11:14 GMT Message-Id: <201102250311.p1P3BE5t086153@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to lz@FreeBSD.org using -f From: Zheng Liu To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189112 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Feb 2011 03:11:15 -0000 http://p4web.freebsd.org/@@189112?ac=10 Change 189112 by lz@freebsd-dev on 2011/02/25 03:10:56 Update latest changes in ext2fs. Affected files ... .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#33 integrate Differences ... ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#33 (text+ko) ==== @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * @(#)ffs_alloc.c 8.8 (Berkeley) 2/21/94 - * $FreeBSD: src/sys/fs/ext2fs/ext2_alloc.c,v 1.6 2011/02/08 13:02:25 jhb Exp $ + * $FreeBSD: src/sys/fs/ext2fs/ext2_alloc.c,v 1.7 2011/02/24 22:11:36 jhb Exp $ */ #include @@ -1423,16 +1423,12 @@ } } i = start + len - loc; - map = ibp[i]; - ipref = i * NBBY; - for (i = 1; i < (1 << NBBY); i <<= 1, ipref++) { - if ((map & i) == 0) { - goto gotit; - } + map = ibp[i] ^ 0xff; + if (map == 0) { + printf("fs = %s\n", fs->e2fs_fsmnt); + panic("ext2fs_nodealloccg: block not in map"); } - printf("fs = %s\n", fs->e2fs_fsmnt); - panic("ext2fs_nodealloccg: block not in map"); - /* NOTREACHED */ + ipref = i * NBBY + ffs(map) - 1; gotit: setbit(ibp, ipref); EXT2_LOCK(ump); @@ -1560,7 +1556,6 @@ static daddr_t ext2_mapsearch(struct m_ext2fs *fs, char *bbp, daddr_t bpref) { - daddr_t bno; int start, len, loc, i, map; /* @@ -1590,15 +1585,12 @@ } } i = start + len - loc; - map = bbp[i]; - bno = i * NBBY; - for (i = 1; i < (1 << NBBY); i <<= 1, bno++) { - if ((map & i) == 0) - return (bno); + map = bbp[i] ^ 0xff; + if (map == 0) { + printf("fs = %s\n", fs->e2fs_fsmnt); + panic("ext2fs_mapsearch: block not in map"); } - printf("fs = %s\n", fs->e2fs_fsmnt); - panic("ext2fs_mapsearch: block not in map"); - /* NOTREACHED */ + return (i * NBBY + ffs(map) - 1); } /* From owner-p4-projects@FreeBSD.ORG Fri Feb 25 16:51:10 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6AEF31065670; Fri, 25 Feb 2011 16:51:10 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BED6106566B for ; Fri, 25 Feb 2011 16:51:10 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 1905B8FC0C for ; Fri, 25 Feb 2011 16:51:10 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1PGp9e2069103 for ; Fri, 25 Feb 2011 16:51:09 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1PGp9bF069100 for perforce@freebsd.org; Fri, 25 Feb 2011 16:51:09 GMT (envelope-from trasz@freebsd.org) Date: Fri, 25 Feb 2011 16:51:09 GMT Message-Id: <201102251651.p1PGp9bF069100@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189148 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Feb 2011 16:51:10 -0000 http://p4web.freebsd.org/@@189148?ac=10 Change 189148 by trasz@trasz_victim on 2011/02/25 16:50:50 In "devctl" action, pass jail name, not jail id. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#37 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/kern/kern_rctl.c#37 (text+ko) ==== @@ -326,9 +326,9 @@ rctl_rule_to_sbuf(&sb, rule); sbuf_finish(&sb); printf("rctl: rule \"%s\" matched by pid %d " - "(%s), uid %d, jid %d\n", sbuf_data(&sb), p->p_pid, - p->p_comm, p->p_ucred->cr_uid, - p->p_ucred->cr_prison->pr_id); + "(%s), uid %d, jail %s\n", sbuf_data(&sb), + p->p_pid, p->p_comm, p->p_ucred->cr_uid, + p->p_ucred->cr_prison->pr_name); sbuf_delete(&sb); free(buf, M_RCTL); link->rrl_exceeded = 1; @@ -345,8 +345,9 @@ sbuf_new(&sb, buf, RCTL_LOG_BUFSIZE, SBUF_FIXEDLEN); sbuf_printf(&sb, "rule="); rctl_rule_to_sbuf(&sb, rule); - sbuf_printf(&sb, " pid=%d ruid=%d jid=%d", p->p_pid, - p->p_ucred->cr_ruid, p->p_ucred->cr_prison->pr_id); + sbuf_printf(&sb, " pid=%d ruid=%d jail=%s", + p->p_pid, p->p_ucred->cr_ruid, + p->p_ucred->cr_prison->pr_name); sbuf_finish(&sb); devctl_notify_f("RCTL", "rule", "matched", sbuf_data(&sb), M_NOWAIT); From owner-p4-projects@FreeBSD.ORG Sat Feb 26 01:51:15 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6E2D41065672; Sat, 26 Feb 2011 01:51:15 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 184AF106566C for ; Sat, 26 Feb 2011 01:51:15 +0000 (UTC) (envelope-from lz@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 03B3E8FC08 for ; Sat, 26 Feb 2011 01:51:15 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1Q1pEr2085000 for ; Sat, 26 Feb 2011 01:51:14 GMT (envelope-from lz@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1Q1pESt084997 for perforce@freebsd.org; Sat, 26 Feb 2011 01:51:14 GMT (envelope-from lz@FreeBSD.org) Date: Sat, 26 Feb 2011 01:51:14 GMT Message-Id: <201102260151.p1Q1pESt084997@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to lz@FreeBSD.org using -f From: Zheng Liu To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189166 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Feb 2011 01:51:15 -0000 http://p4web.freebsd.org/@@189166?ac=10 Change 189166 by lz@freebsd-dev on 2011/02/26 01:51:06 ext2_reallocblks() and ext2_clusteralloc() functions cleanups. Affected files ... .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#34 edit Differences ... ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#34 (text+ko) ==== @@ -678,7 +678,7 @@ */ #ifdef FANCY_REALLOC -static int doasyncfree = 1; +static int doasyncfree = 0; SYSCTL_INT(_vfs_ext2fs, OID_AUTO, doasyncfree, CTLFLAG_RW, &doasyncfree, 0, "Use asychronous writes to update block pointers when freeing blocks"); @@ -699,6 +699,9 @@ return ENOSPC; #else + if (doreallocblks == 0) + return (ENOSPC); + struct m_ext2fs *fs; struct inode *ip; struct vnode *vp; @@ -754,11 +757,6 @@ soff = idp->in_off; } /* - * Find the preferred location for the cluster. - */ - EXT2_LOCK(ump); - pref = ext2_blkpref(ip, start_lbn, soff, sbap, blkno); - /* * If the block range spans two block maps, get the second map. */ if (end_lvl == 0 || (idp = &end_ap[end_lvl - 1])->in_off + 1 >= len) { @@ -769,17 +767,20 @@ panic("ext2_reallocblk: start == end"); #endif ssize = len - (idp->in_off + 1); - if (bread(vp, idp->in_lbn, (int)fs->e2fs_bsize, NOCRED, &ebp)){ - EXT2_UNLOCK(ump); + if (bread(vp, idp->in_lbn, (int)fs->e2fs_bsize, NOCRED, &ebp)) goto fail; - } ebap = (int32_t *)ebp->b_data; } /* + * Find the preferred location for the cluster. + */ + EXT2_LOCK(ump); + pref = ext2_blkpref(ip, start_lbn, soff, sbap, blkno); + /* * Search the block map looking for an allocation of the desired size. */ if ((newblk = (int32_t)ext2_hashalloc(ip, dtog(fs, pref), pref, - len, ext2_clusteralloc)) == 0){ + len, ext2_clusteralloc)) == 0) { EXT2_UNLOCK(ump); goto fail; } @@ -792,9 +793,10 @@ */ blkno = newblk; for (bap = &sbap[soff], i = 0; i < len; i++, blkno += fs->e2fs_fpb) { - if (i == ssize) + if (i == ssize) { bap = ebap; soff = -i; + } #ifdef DIAGNOSTIC if (buflist->bs_children[i]->b_blkno != fsbtodb(fs, *bap)) panic("ext2_reallocblks: alloc mismatch"); @@ -851,80 +853,6 @@ #endif /* FANCY_REALLOC */ } -static daddr_t -ext2_clusteralloc(struct inode *ip, int cg, daddr_t bpref, int len) -{ - struct m_ext2fs *fs; - struct ext2mount *ump; - struct buf *bp; - int error, i, got, run; - char *bbp; - daddr_t bno; - - fs = ip->i_e2fs; - ump = ip->i_ump; - - /* - * TODO: we need to define a new member in m_ext2fs structure - * to save max cluster. But for simplicity, we assume that the - * max cluster is equal to the number of blocks per group. - */ - if (fs->e2fs_gd[cg].ext2bgd_nbfree < len) - return (0); - - EXT2_UNLOCK(ump); - error = bread(ip->i_devvp, - fsbtodb(fs, fs->e2fs_gd[cg].ext2bgd_b_bitmap), - (int)fs->e2fs_bsize, NOCRED, &bp); - if (error) - goto fail_lock; - - bbp = (char *)bp->b_data; - bp->b_xflags |= BX_BKGRDWRITE; - - /* - * TODO: check to see if a cluster of the needed size is - * available in this cg. - */ - - if (dtog(fs, bpref) != cg) - bpref = 0; - else - bpref = dtogd(fs, bpref); - - for (run = 0, got = bpref; got < fs->e2fs_bpg; got++) { - if (!isclr(bbp, got)) - run = 0; - else { - run++; - if (run == len) - break; - } - } - - if (got >= fs->e2fs_bpg) - goto fail_lock; - - for (i = 1; i <= len; i++) - if (!isclr(bbp, got - run + i)) - panic("ext2_clusteralloc: map mismatch"); - bno = got - run + 1; - if (bno >= fs->e2fs_bpg) - panic("ext2_clusteralloc: allocated out of group"); - - for (i = 0; i < len; i++) - setbit(bbp, (daddr_t)bno + i); - - bdwrite(bp); - - return (phy_blk(cg, fs) + bno); - -fail_lock: - EXT2_LOCK(ump); - brelse(bp); - return (0); -} - /* * Allocate an inode in the file system. * @@ -1295,10 +1223,6 @@ runlen = 0; continue; } - if (bbp[loc] == (char)0xff) { - runlen = 0; - continue; - } /* Start of a run, find the number of high clear bits. */ if (runlen == 0) { @@ -1313,7 +1237,7 @@ * Finish the current run. If it isn't long * enough, start a new one. */ - bit = fls(bbp[loc]) - 1; + bit = ffs(bbp[loc]) - 1; runlen += bit; if (runlen >= 8) { bno = runstart; @@ -1339,12 +1263,12 @@ } #endif /* 0 */ - bno = ext2_mapsearch(fs, bbp, bpref); - if (bno < 0){ - brelse(bp); - EXT2_LOCK(ump); - return (0); - } + bno = ext2_mapsearch(fs, bbp, bpref); + if (bno < 0){ + brelse(bp); + EXT2_LOCK(ump); + return (0); + } gotit: #ifdef DIAGNOSTIC if (isset(bbp, bno)) { @@ -1363,6 +1287,83 @@ return (cg * fs->e2fs->e2fs_fpg + fs->e2fs->e2fs_first_dblock + bno); } +#ifdef FANCY_REALLOC +static daddr_t +ext2_clusteralloc(struct inode *ip, int cg, daddr_t bpref, int len) +{ + struct m_ext2fs *fs; + struct ext2mount *ump; + struct buf *bp; + int error, i, got, run; + char *bbp; + daddr_t bno; + + fs = ip->i_e2fs; + ump = ip->i_ump; + + /* + * TODO: we need to define a new member in m_ext2fs structure + * to save max cluster. But for simplicity, we assume that the + * max cluster is equal to the number of blocks per group. + */ + if (fs->e2fs_gd[cg].ext2bgd_nbfree < len) + return (0); + + EXT2_UNLOCK(ump); + error = bread(ip->i_devvp, + fsbtodb(fs, fs->e2fs_gd[cg].ext2bgd_b_bitmap), + (int)fs->e2fs_bsize, NOCRED, &bp); + if (error) + goto fail_lock; + + bbp = (char *)bp->b_data; + bp->b_xflags |= BX_BKGRDWRITE; + + /* + * TODO: check to see if a cluster of the needed size is + * available in this cg. + */ + + if (dtog(fs, bpref) != cg) + bpref = 0; + else + bpref = dtogd(fs, bpref); + + for (run = 0, got = bpref; got < fs->e2fs_bpg; got++) { + if (!isclr(bbp, got)) + run = 0; + else { + run++; + if (run == len) + break; + } + } + + if (got >= fs->e2fs_bpg) + goto fail_lock; + /* + * Allocate the cluster that we have found. + */ + for (i = 1; i <= len; i++) + if (!isclr(bbp, got - run + i)) + panic("ext2_clusteralloc: map mismatch"); + bno = got - run + 1; + if (bno >= fs->e2fs_bpg) + panic("ext2_clusteralloc: allocated out of group"); + + for (i = 0; i < len; i++) + setbit(bbp, (daddr_t)bno + i); + + bdwrite(bp); + return (phy_blk(cg, fs) + bno); + +fail_lock: + EXT2_LOCK(ump); + brelse(bp); + return (0); +} +#endif /* FANCY_REALLOC */ + /* * Determine whether an inode can be allocated. * From owner-p4-projects@FreeBSD.ORG Sat Feb 26 19:48:48 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B9CA91065703; Sat, 26 Feb 2011 19:48:48 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78C411065707 for ; Sat, 26 Feb 2011 19:48:48 +0000 (UTC) (envelope-from trasz@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 631078FC14 for ; Sat, 26 Feb 2011 19:48:48 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p1QJmmIs018327 for ; Sat, 26 Feb 2011 19:48:48 GMT (envelope-from trasz@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p1QJmF43018324 for perforce@freebsd.org; Sat, 26 Feb 2011 19:48:15 GMT (envelope-from trasz@freebsd.org) Date: Sat, 26 Feb 2011 19:48:15 GMT Message-Id: <201102261948.p1QJmF43018324@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to trasz@freebsd.org using -f From: Edward Tomasz Napierala To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 189200 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Feb 2011 19:48:49 -0000 http://p4web.freebsd.org/@@189200?ac=10 Change 189200 by trasz@trasz_victim on 2011/02/26 19:47:38 IFC. Affected files ... .. //depot/projects/soc2009/trasz_limits/Makefile.inc1#21 integrate .. //depot/projects/soc2009/trasz_limits/ObsoleteFiles.inc#35 integrate .. //depot/projects/soc2009/trasz_limits/UPDATING#34 integrate .. //depot/projects/soc2009/trasz_limits/bin/df/df.c#4 integrate .. //depot/projects/soc2009/trasz_limits/bin/kenv/kenv.1#2 integrate .. //depot/projects/soc2009/trasz_limits/bin/sh/expand.c#18 integrate .. //depot/projects/soc2009/trasz_limits/bin/test/test.c#4 integrate .. //depot/projects/soc2009/trasz_limits/cddl/lib/libzpool/Makefile#4 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/MAINTAINERS#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/Makefile.def#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/Makefile.tpl#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ChangeLog-0203#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ChangeLog-2006#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/acinclude.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aclocal.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout-arm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout-encap.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout-sparcle.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout-target.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout0.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout32.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aout64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aoutf1.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/aoutx.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/archive.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/archive64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/archures.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/armnetbsd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/bfd-in.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/bfd-in2.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/bfd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/bfdio.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/bfdwin.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/binary.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/bout.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cache.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-alpha.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-arm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-aux.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-i386.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-ia64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-ppc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-rs6000.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-sparc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff-x86_64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coff64-rs6000.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coffcode.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coffgen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cofflink.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/coffswap.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/config.bfd#4 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/config.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/configure.host#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/configure.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/corefile.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-alpha.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-arc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-arm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-cr16.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-i386.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-ia64-opc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-ia64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-mep.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-mips.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-powerpc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-rs6000.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-s390.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-score.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-sparc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/cpu-spu.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/demo64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/dep-in.sed#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/aoutx.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/archive.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/archures.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/bfd.texinfo#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/bfdint.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/bfdio.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/bfdt.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/bfdwin.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/cache.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/chew.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/coffcode.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/core.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/elf.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/elfcode.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/fdl.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/format.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/hash.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/init.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/libbfd.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/linker.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/mmo.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/opncls.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/reloc.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/section.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/syms.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/doc/targets.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/dwarf1.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/dwarf2.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ecoff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ecofflink.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ecoffswap.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/efi-app-ia32.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/efi-app-ia64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf-attrs.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf-bfd.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf-eh-frame.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf-strtab.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf-vxworks.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf-vxworks.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-arc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-arm.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-arm.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-avr.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-cr16.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-gen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-i386.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-mep.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-ppc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-ppc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-s390.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-score.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-sh-relocs.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-sparc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-spu.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32-spu.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf32.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-alpha.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-gen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-ppc.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-ppc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-s390.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-sparc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64-x86-64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elf64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfarm-nabi.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfarm-oabi.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfcode.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfcore.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elflink.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elflink.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfn32-mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfxx-ia64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfxx-mips.c#4 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfxx-mips.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfxx-sparc.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfxx-sparc.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/elfxx-target.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/format.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/freebsd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/gen-aout.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/genlink.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/hash.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/host-aout.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/i386aout.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/i386bsd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/i386freebsd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/i386linux.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/i386netbsd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ieee.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ihex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/init.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libaout.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libbfd-in.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libbfd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libbfd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libcoff-in.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libcoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libecoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libieee.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libpei.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/libxcoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/linker.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/mep-relocs.pl#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/merge.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/mipsbsd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/netbsd-core.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/netbsd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/opncls.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/osf-core.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pe-arm-wince.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pe-arm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pe-i386.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pe-mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pe-ppc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pe-x86_64.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/peXXigen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pei-arm-wince.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pei-mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/pei-x86_64.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/peicode.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/po/BLD-POTFILES.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/po/Make-in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/po/POTFILES.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/po/SRC-POTFILES.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/po/bfd.pot#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ppcboot.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/ptrace-core.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/reloc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/reloc16.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/rs6000-core.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/sco5-core.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/section.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/simple.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/sparclinux.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/sparcnetbsd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/srec.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/stab-syms.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/stabs.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/sunos.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/syms.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/sysdep.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/targets.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/tekhex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/trad-core.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/version.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/xcoff-target.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/bfd/xcofflink.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/ChangeLog-2006#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/MAINTAINERS#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/NEWS#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/acinclude.m4#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/aclocal.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/addr2line.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/ar.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/arlex.l#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/arparse.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/arsup.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/arsup.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/bin2c.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/binemul.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/binemul.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/bucomm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/bucomm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/budbg.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/budemang.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/budemang.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/coffdump.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/coffgrok.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/coffgrok.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/config.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/configure.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/cxxfilt.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/debug.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/debug.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/deflex.l#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/defparse.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/defparse.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/defparse.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/dep-in.sed#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/dlltool.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/dlltool.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/dllwrap.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/addr2line.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/ar.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/binutils.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/cxxfilt.man#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/dlltool.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/fdl.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/nm.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/objcopy.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/objdump.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/ranlib.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/readelf.1#3 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/size.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/strings.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/doc/strip.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/dwarf.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/dwarf.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/embedspu.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/emul_vanilla.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/filemode.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/ieee.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/mclex.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/mcparse.y#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/nm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/objcopy.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/objdump.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/po/Make-in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/po/POTFILES.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/po/binutils.pot#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/prdbg.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/ranlib.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rclex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rclex.l#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rcparse.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rdcoff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rddbg.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/readelf.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rename.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/resbin.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/rescoff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/resrc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/resres.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/size.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/srconv.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/stabs.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/strings.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/sysdep.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/sysdump.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/sysinfo.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/syslex.l#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/unwind-ia64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/unwind-ia64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/version.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/windint.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/windmc.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/windmc.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/binutils/wrstabs.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config-ml.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config.guess#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config.if#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config.rpath#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config.sub#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/acinclude.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/confsubdir.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/ld-symbolic.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-cxux#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-mingw32#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-necv4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-openedition#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-sco#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-solaris#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-sysv#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-sysv4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mh-sysv5#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-armpic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-elfalphapic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-ia64pic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-linux#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-mep#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-papic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-ppcpic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-s390pic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-sparcpic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-spu#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-v810#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/mt-x86pic#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/multi.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/config/unwind_ipinfo.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/configure.ac#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/configure.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/contrib/ChangeLog#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/contrib/texi2pod.pl#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/etc/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/etc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog-0001#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog-0203#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog-2006#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog-9295#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog-9697#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ChangeLog-9899#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/NEWS#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/README#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/acinclude.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/aclocal.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/app.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/as.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/as.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/asintl.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/atof-generic.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/bignum-copy.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/bignum.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/bit_fix.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/cgen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/cgen.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/cond.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/aout_gnu.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/atof-ieee.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/atof-vax.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/itbl-mips.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-aout.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-aout.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-coff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-coff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-ecoff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-ecoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-elf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-elf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-generic.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-generic.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-ieee.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-ieee.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/obj-multi.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-alpha.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-alpha.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-arc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-arc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-arm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-arm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-cr16.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-cr16.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-generic.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-generic.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-i386.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-i386.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-ia64.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-ia64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-m68851.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-mep.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-mep.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-mips.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-mips.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-ppc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-ppc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-s390.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-s390.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-score.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-score.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-sparc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-sparc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-spu.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/tc-spu.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-386bsd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-aux.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-freebsd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-nbsd.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-pep.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-ppcnw.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-sparcaout.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-sysv32.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/config/te-tmips.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/configure.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/debug.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/dep-in.sed#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/depend.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/all.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/as.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/as.texinfo#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-alpha.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-arc.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-arm.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-avr.texi#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-cr16.texi#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-i386.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-ia64.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-mips.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-ppc.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-sh.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/c-sparc.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/gasp.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/gasver.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/doc/internals.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/dw2gencfi.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/dw2gencfi.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/dwarf2dbg.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/dwarf2dbg.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ecoff.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ecoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/ehopt.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/emul-target.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/emul.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/expr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/expr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/flonum-copy.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/flonum-konst.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/flonum-mult.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/flonum.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/frags.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/frags.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/gasp.c#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/gdbinit.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/hash.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/hash.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/input-file.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/input-file.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/input-scrub.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/itbl-lex.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/itbl-lex.l#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/itbl-ops.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/itbl-ops.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/itbl-parse.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/link.cmd#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/listing.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/listing.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/literal.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/macro.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/macro.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/messages.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/obj.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/output-file.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/output-file.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/po/Make-in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/po/POTFILES.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/po/gas.pot#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/read.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/read.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/sb.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/sb.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/stabs.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/struc-symbol.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/subsegs.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/subsegs.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/symbols.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/symbols.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/tc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/write.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gas/write.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gprof/mips.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gprof/po/Make-in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gprof/po/gprof.pot#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/gprof/po/ms.po#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/ansidecl.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/aout64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/ar.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/encap.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/host.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/ranlib.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/reloc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/stab.def#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/stab_gnu.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/aout/sun4.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/bfdlink.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/bin-bugs.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/callback.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/alpha.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/arm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/aux-coff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/ecoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/external.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/i386.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/ia64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/mips.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/mipspe.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/pe.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/powerpc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/rs6000.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/rs6k64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/sh.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/sparc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/symconst.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/ti.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/coff/xcoff.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/demangle.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/dis-asm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/dyn-string.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/ChangeLog-9103#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/alpha.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/arc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/arm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/avr.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/bfin.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/common.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/cr16.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/cris.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/crx.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/d10v.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/d30v.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/dlx.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/dwarf.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/dwarf2.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/external.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/fr30.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/frv.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/h8.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/hppa.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/i370.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/i386.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/i860.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/i960.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/ia64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/internal.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/ip2k.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/iq2000.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/m32c.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/m32r.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/m68hc11.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/m68k.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mcore.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mep.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mips.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mmix.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mn10200.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mn10300.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/msp430.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/mt.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/openrisc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/or32.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/pj.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/ppc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/ppc64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/reloc-macros.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/s390.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/score.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/sh.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/sparc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/spu.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/v850.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/vax.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/x86-64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/xstormy16.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/elf/xtensa.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/fibheap.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/filenames.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/floatformat.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/fnmatch.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/gdbm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/hashtab.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/ieee.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/libiberty.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/md5.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/objalloc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/obstack.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/ChangeLog-9103#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/alpha.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/arc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/arm.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/cgen.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/convex.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/cr16.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/i386.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/ia64.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/mips.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/np1.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/pn.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/ppc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/s390.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/score-datadep.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/score-inst.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/sparc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/spu-insns.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/opcode/spu.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/partition.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/progress.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/regs/ChangeLog#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/remote-sim.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/safe-ctype.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/sort.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/splay-tree.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/symcat.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/ternary.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/include/xregex2.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/install-sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ChangeLog-2006#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/NEWS#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/acinclude.m4#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/aclocal.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/config.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/configure.host#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/configure.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/configure.tgt#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/deffile.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/deffilep.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/dep-in.sed#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/arcelf.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/arm_wince_pe.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/armelf.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/armelf_fbsd.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/armelf_linux.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/armelf_nbsd.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/armelf_oabi.sh#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/armpe.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/avr6.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32_sparc.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32_spu.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32bmip.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32bmipn32-defs.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32bmipn32.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32btsmip.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32btsmipn32.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32cr16.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32mep.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32ppc.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32ppccommon.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf32ppclinux.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64_ia64.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64_ia64_fbsd.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64_s390.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64_sparc.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64_sparc_fbsd.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64alpha.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64bmip-defs.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64bmip.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64btsmip.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf64ppc.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf_i386.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf_i386_chaos.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf_i386_ldso.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf_s390.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf_x86_64.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/elf_x86_64_fbsd.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386freebsd.sh#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386moss.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386nto.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386nw.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386pe.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386pe_posix.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/i386pep.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/mipsidt.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/mipsidtl.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/mipspe.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/ppcnw.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/ppcpe.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/scoreelf.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/shelf_uclinux.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/shelf_vxworks.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emulparams/shlelf_vxworks.sh#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/alphaelf.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/armcoff.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/armelf.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/armelf_oabi.em#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/avrelf.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/cr16elf.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/elf-generic.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/elf32.em#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/genelf.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/generic.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/ia64elf.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/linux.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/mipsecoff.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/mipself.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/needrelax.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/pe.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/pep.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/ppc32elf.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/ppc64elf.em#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/scoreelf.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/spu_ovl.S#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/spu_ovl.o#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/spuelf.em#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/sunos.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/ticoff.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/emultempl/vanilla.em#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/fdl.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/gen-doc.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/genscripts.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ld.1#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ld.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ld.texinfo#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldcref.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldctor.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldctor.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldemul.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldemul.h#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldexp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldexp.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldfile.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldfile.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldgram.y#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldint.texinfo#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldlang.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldlang.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldlex.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldlex.l#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldmain.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldmain.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldmisc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldmisc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldver.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldver.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldver.texi#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldwrite.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/ldwrite.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/lexsup.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/mri.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/mri.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/pe-dll.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/pe-dll.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/pep-dll.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/pep-dll.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/po/Make-in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/po/POTFILES.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/po/ld.pot#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/scripttempl/elf.sc#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/scripttempl/elf32cr16.sc#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/scripttempl/mep.sc#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/scripttempl/mips.sc#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/scripttempl/pe.sc#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/scripttempl/pep.sc#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ld/sysdep.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/_doprnt.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/aclocal.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/alloca.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/argv.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/asprintf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/at-file.texi#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/atexit.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/basename.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/bcmp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/bcopy.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/bsearch.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/bzero.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/calloc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/choose-temp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/clock.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/concat.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/config.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/config.table#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/configure.in#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/copying-lib.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/copysign.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/cp-demangle.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/cp-demangle.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/cp-demint.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/cplus-dem.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/dyn-string.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/fdmatch.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/ffs.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/fibheap.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/filename_cmp.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/floatformat.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/fnmatch.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/functions.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/gather-docs#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/getcwd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/getpagesize.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/getpwd.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/getruntime.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/hashtab.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/hex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/index.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/insque.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/lbasename.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/libiberty.texi#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/lrealpath.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/maint-tool#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/make-relative-prefix.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/make-temp-file.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/md5.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/memchr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/memcmp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/memcpy.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/memmove.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/memset.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/mkstemps.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/objalloc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/obstack.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/partition.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/pexecute.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/physmem.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/putenv.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/random.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/regex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/rename.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/rindex.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/safe-ctype.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/setenv.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/sigsetmask.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/sort.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/spaces.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/splay-tree.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strcasecmp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strchr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strdup.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strerror.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strncasecmp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strncmp.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strrchr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strsignal.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strstr.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strtod.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strtol.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/strtoul.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/ternary.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/tmpnam.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/unlink-if-ordinary.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/vasprintf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/vfork.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/vfprintf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/vprintf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/vsprintf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/waitpid.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/xatexit.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/xexit.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/xmalloc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/xmemdup.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/xstrdup.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libiberty/xstrerror.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/libtool.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltcf-c.sh#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltcf-cxx.sh#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltcf-gcj.sh#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltconfig#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltgcc.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltmain.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltoptions.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltsugar.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/ltversion.m4#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/md5.sum#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/missing#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/mkinstalldirs#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/move-if-change#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ChangeLog#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ChangeLog-2006#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/Makefile.am#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/Makefile.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/acinclude.m4#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/aclocal.m4#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/alpha-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/alpha-opc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arc-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arc-dis.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arc-ext.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arc-ext.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arc-opc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arm-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/arm-opc.h#2 delete .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen-asm.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen-asm.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen-dis.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen-ibld.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen-opc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cgen.sh#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/config.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/configure#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/configure.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cr16-dis.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/cr16-opc.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/dep-in.sed#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/dis-buf.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/dis-init.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/disassemble.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-gen.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-opc.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-opc.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-opc.tbl#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-reg.tbl#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/i386-tbl.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-asmtab.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-asmtab.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-gen.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-ic.tbl#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-a.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-b.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-d.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-f.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-i.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-m.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc-x.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-opc.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-raw.tbl#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ia64-waw.tbl#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-asm.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-desc.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-desc.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-dis.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-ibld.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-opc.c#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mep-opc.h#1 branch .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mips-dis.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mips-opc.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/mips16-opc.c#3 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/opintl.h#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/po/Make-in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/po/POTFILES.in#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/po/opcodes.pot#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ppc-dis.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/ppc-opc.c#2 integrate .. //depot/projects/soc2009/trasz_limits/contrib/binutils/opcodes/s390-dis.c#2 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<<
    • DatumNaam advies
      Datum naam