From owner-p4-projects@FreeBSD.ORG Mon Jun 17 10:28:45 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id A5D3B5D2; Mon, 17 Jun 2013 10:28:45 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 67BFD5D0 for ; Mon, 17 Jun 2013 10:28:45 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5765719F4 for ; Mon, 17 Jun 2013 10:28:45 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5HASjkC090656 for ; Mon, 17 Jun 2013 10:28:45 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5HASjmP090653 for perforce@freebsd.org; Mon, 17 Jun 2013 10:28:45 GMT (envelope-from jonathan@freebsd.org) Date: Mon, 17 Jun 2013 10:28:45 GMT Message-Id: <201306171028.r5HASjmP090653@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229807 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2013 10:28:45 -0000 http://p4web.freebsd.org/@@229807?ac=10 Change 229807 by jonathan@jonathan-on-zenith on 2013/06/17 10:28:40 Better syscall prototype for amd64. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/sys/tesla-kernel.h#3 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/sys/tesla-kernel.h#3 (text+ko) ==== @@ -36,24 +36,23 @@ */ /* - * Un-protyped functions that we care about. - * - * XXXRW: Solution is actually to prototype them properly. Some don't have - * consistent prototypes across architectures. + * Convenient assertion wrappers for various scopes. */ + +#if defined(__amd64__) +extern void amd64_syscall(struct trapframe *, int); +#define TESLA_SYSCALL(x) TESLA_WITHIN(amd64_syscall, x) +#else extern void syscall(void); -extern void trap_pfault(struct trapframe *, int, vm_offset_t); - -/* - * Convenient assertion wrappers for various scopes. - */ #define TESLA_SYSCALL(x) TESLA_WITHIN(syscall, x) +#endif /* * XXXRW: Not all architectures have a trap_pfault() function. Can't use * vm_fault() as it is used in non-trap contexts -- e.g., PMAP initialisation. */ #if 0 +extern void trap_pfault(struct trapframe *, int, vm_offset_t); #define TESLA_PAGE_FAULT(x) TESLA_WITHIN(trap_pfault, x) #else #define TESLA_PAGE_FAULT(x) From owner-p4-projects@FreeBSD.ORG Tue Jun 18 09:03:23 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id F26445E9; Tue, 18 Jun 2013 09:03:22 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B37F65E7 for ; Tue, 18 Jun 2013 09:03:22 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id A52DD18A7 for ; Tue, 18 Jun 2013 09:03:22 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5I93M1B074977 for ; Tue, 18 Jun 2013 09:03:22 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5I93MBv074974 for perforce@freebsd.org; Tue, 18 Jun 2013 09:03:22 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 09:03:22 GMT Message-Id: <201306180903.r5I93MBv074974@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229863 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 09:03:23 -0000 http://p4web.freebsd.org/@@229863?ac=10 Change 229863 by jonathan@jonathan-on-zenith on 2013/06/18 09:02:57 Ensure we don't create too many cloines. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#5 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#5 (text+ko) ==== @@ -89,6 +89,8 @@ print_class(class); + int error = TESLA_SUCCESS; + // Did we match any instances? bool matched_something = false; @@ -97,13 +99,15 @@ // Make space for cloning existing instances. size_t cloned = 0; + const size_t max_clones = class->tc_free; struct clone_info { tesla_instance *old; const tesla_transition *transition; - } clones[class->tc_free]; + } clones[max_clones]; // Iterate over existing instances, figure out what to do with each. for (uint32_t i = 0; i < class->tc_limit; i++) { + assert(class->tc_instances != NULL); tesla_instance *inst = class->tc_instances + i; const tesla_transition *trigger = NULL; @@ -129,6 +133,11 @@ break; case FORK: { + if (cloned >= max_clones) { + error = TESLA_ERROR_ENOMEM; + goto cleanup; + } + struct clone_info *clone = clones + cloned++; clone->old = inst; clone->transition = trigger; @@ -190,9 +199,9 @@ print_class(class); PRINT("\n====\n\n"); +cleanup: tesla_class_put(class); - - return (TESLA_SUCCESS); + return error; } enum tesla_action_t From owner-p4-projects@FreeBSD.ORG Tue Jun 18 09:04:24 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 46B3F6EB; Tue, 18 Jun 2013 09:04:24 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 093C46E9 for ; Tue, 18 Jun 2013 09:04:24 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id EE63C18B6 for ; Tue, 18 Jun 2013 09:04:23 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5I94Nvu075053 for ; Tue, 18 Jun 2013 09:04:23 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5I94NX6075050 for perforce@freebsd.org; Tue, 18 Jun 2013 09:04:23 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 09:04:23 GMT Message-Id: <201306180904.r5I94NX6075050@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229864 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 09:04:24 -0000 http://p4web.freebsd.org/@@229864?ac=10 Change 229864 by jonathan@jonathan-on-zenith on 2013/06/18 09:03:57 Do declare staticly-allocated things static. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#7 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#7 (text+ko) ==== @@ -282,7 +282,7 @@ DEBUG(libtesla.event, "ignore '%s':%s", tcp->tc_name, buffer); } -const struct tesla_event_handlers printf_handlers = { +static const struct tesla_event_handlers printf_handlers = { .teh_init = print_new_instance, .teh_transition = print_transition_taken, .teh_clone = print_clone, @@ -314,7 +314,7 @@ tesla_panic("TESLA: failure in '%s': bad transition", tcp->tc_name); } -const struct tesla_event_handlers failstop_handlers = { +static const struct tesla_event_handlers failstop_handlers = { .teh_init = ev_noop, .teh_transition = ev_noop, .teh_clone = ev_noop, From owner-p4-projects@FreeBSD.ORG Tue Jun 18 10:26:57 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 7537EB84; Tue, 18 Jun 2013 10:26:57 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1BA8AB82 for ; Tue, 18 Jun 2013 10:26:57 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id E75461E03 for ; Tue, 18 Jun 2013 10:26:56 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5IAQu47087290 for ; Tue, 18 Jun 2013 10:26:56 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5IAQu63087287 for perforce@freebsd.org; Tue, 18 Jun 2013 10:26:56 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 10:26:56 GMT Message-Id: <201306181026.r5IAQu63087287@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229882 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 10:26:57 -0000 http://p4web.freebsd.org/@@229882?ac=10 Change 229882 by jonathan@jonathan-on-zenith on 2013/06/18 10:26:28 Impprove printf-based handling of TESLA events in the kernel. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_debug.c#4 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#8 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_debug.c#4 (text+ko) ==== @@ -132,6 +132,24 @@ tesla_debugging(const char *name) { #ifdef _KERNEL + /* + * In the kernel, only print 'libtesla.{event,instance}*' output. + */ + static const char* allowed[] = { + "libtesla.event", + "libtesla.instance", + NULL, + }; + const size_t len = sizeof(allowed) / sizeof(allowed[0]); + + for (size_t i = 0; (i < len) && (allowed[i] != NULL); i++) { + const char *s = allowed[i]; + const size_t len = strlen(s); + + if (strncmp(s, name, len) == 0) + return 1; + } + return 0; #else #ifdef HAVE_ISSETUGID ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#8 (text+ko) ==== @@ -229,7 +229,7 @@ next = sprint_transitions(next, end, transp); assert(next > buffer); - error("%s", buffer); + DEBUG(libtesla.instance.fail, "%s", buffer); } static void @@ -255,7 +255,7 @@ next = sprint_transitions(next, end, transp); assert(next > buffer); - error("%s", buffer); + DEBUG(libtesla.instance.fail, "%s", buffer); } static void @@ -326,8 +326,8 @@ /** - * Default event handlers: always print, then use DTrace in the kernel - * if it's available; if it isn't, panic on failure. + * Default event handlers: printf first (but disable in kernel), then + * either use DTrace or fail-stop if DTrace is not available. */ const static struct tesla_event_handlers* const default_handlers[] = { &printf_handlers, @@ -340,7 +340,11 @@ static struct tesla_event_metahandler default_event_handlers = { .tem_length = sizeof(default_handlers) / sizeof(*default_handlers), - .tem_mask = 0xFFFF, +#if defined(_KERNEL) && defined(KDTRACE_HOOKS) + .tem_mask = 0x2, +#else + .tem_mask = 0x3, +#endif .tem_handlers = default_handlers, }; From owner-p4-projects@FreeBSD.ORG Tue Jun 18 10:29:00 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id F0414C9E; Tue, 18 Jun 2013 10:28:59 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9697EC9C for ; Tue, 18 Jun 2013 10:28:59 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 790851E1F for ; Tue, 18 Jun 2013 10:28:59 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5IASxlH087480 for ; Tue, 18 Jun 2013 10:28:59 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5IASxrp087477 for perforce@freebsd.org; Tue, 18 Jun 2013 10:28:59 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 10:28:59 GMT Message-Id: <201306181028.r5IASxrp087477@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229884 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 10:29:00 -0000 http://p4web.freebsd.org/@@229884?ac=10 Change 229884 by jonathan@jonathan-on-zenith on 2013/06/18 10:28:01 Add tan event-handling path for less-serious-than-panic() errors. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#7 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_internal.h#7 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#9 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#7 (text+ko) ==== @@ -230,6 +230,9 @@ typedef void (*tesla_ev_bad_transition)(struct tesla_class *, struct tesla_instance *, const struct tesla_transitions *); +/** Generic error handler. */ +typedef void (*tesla_ev_error)(struct tesla_class *, int32_t, const char *); + /** A @ref tesla_instance has accepted a sequence of events. */ typedef void (*tesla_ev_accept)(struct tesla_class *, struct tesla_instance *); @@ -245,6 +248,7 @@ tesla_ev_clone teh_clone; tesla_ev_no_instance teh_fail_no_instance; tesla_ev_bad_transition teh_bad_transition; + tesla_ev_error teh_err; tesla_ev_accept teh_accept; tesla_ev_ignored teh_ignored; }; ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_internal.h#7 (text+ko) ==== @@ -324,6 +324,7 @@ const struct tesla_transitions *); void ev_bad_transition(struct tesla_class *, struct tesla_instance *, const struct tesla_transitions *); +void ev_err(struct tesla_class *tcp, int errno, const char *message); void ev_accept(struct tesla_class *, struct tesla_instance *); void ev_ignored(const struct tesla_class *, const struct tesla_key *, const struct tesla_transitions *); ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#9 (text+ko) ==== @@ -47,7 +47,7 @@ if (!tehp || !tehp->teh_init || !tehp->teh_transition || !tehp->teh_clone || !tehp->teh_fail_no_instance - || !tehp->teh_bad_transition + || !tehp->teh_bad_transition || !tehp->teh_err || !tehp->teh_accept || !tehp->teh_ignored) return (TESLA_ERROR_EINVAL); @@ -151,6 +151,13 @@ } void +ev_err(struct tesla_class *tcp, int errno, const char *message) +{ + + FOREACH_ERROR_HANDLER()->teh_err(tcp, errno, message); +} + +void ev_accept(struct tesla_class *tcp, struct tesla_instance *tip) { @@ -259,6 +266,14 @@ } static void +print_error(struct tesla_class *tcp, int errno, const char *message) +{ + + DEBUG(libtesla.event, "%s in '%s': %s\n", + tesla_strerror(errno), tcp->tc_name, message); +} + +static void print_accept(struct tesla_class *tcp, struct tesla_instance *tip) { @@ -288,6 +303,7 @@ .teh_clone = print_clone, .teh_fail_no_instance = print_no_instance, .teh_bad_transition = print_bad_transition, + .teh_err = print_error, .teh_accept = print_accept, .teh_ignored = print_ignored, }; From owner-p4-projects@FreeBSD.ORG Tue Jun 18 13:46:34 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9D80EDD3; Tue, 18 Jun 2013 13:46:34 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5E880DD1 for ; Tue, 18 Jun 2013 13:46:34 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4F05B1AAF for ; Tue, 18 Jun 2013 13:46:34 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5IDkY0j013661 for ; Tue, 18 Jun 2013 13:46:34 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5IDkY8Z013658 for perforce@freebsd.org; Tue, 18 Jun 2013 13:46:34 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 13:46:34 GMT Message-Id: <201306181346.r5IDkY8Z013658@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229888 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 13:46:34 -0000 http://p4web.freebsd.org/@@229888?ac=10 Change 229888 by jonathan@jonathan-on-zenith on 2013/06/18 13:45:52 Report errors with ev_err() rather than a return code. Instrumentation should be very simplle: it's better to call a void tesla_update_state() than try to handle errors from generated instrumentation. Instead, we use the new ev_errr() event handler from within tesla_update_state() to handle errors like ENOMEM. This change will require (not-yet-committed) TESLA instrumenter changes. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#8 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#6 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#8 (text+ko) ==== @@ -194,7 +194,7 @@ /** * Update all automata instances that match a given key to a new state. */ -int32_t tesla_update_state(enum tesla_context context, uint32_t class_id, +void tesla_update_state(enum tesla_context context, uint32_t class_id, const struct tesla_key *key, const char *name, const char *description, const struct tesla_transitions*); ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#6 (text+ko) ==== @@ -37,23 +37,16 @@ #include #endif -#define CHECK(fn, ...) do { \ - int err = fn(__VA_ARGS__); \ - if (err != TESLA_SUCCESS) { \ - PRINT("error in " #fn ": %s\n", tesla_strerror(err)); \ - return (err); \ - } \ -} while(0) - #define DEBUG_NAME "libtesla.state.update" #define PRINT(...) DEBUG(libtesla.state.update, __VA_ARGS__) -int32_t +void tesla_update_state(enum tesla_context tesla_context, uint32_t class_id, const struct tesla_key *pattern, const char *name, const char *description, const struct tesla_transitions *trans) { + int err; if (tesla_debugging(DEBUG_NAME)) { /* We should never see with multiple <> transitions. */ @@ -80,17 +73,20 @@ PRINT("\n----\n"); struct tesla_store *store; - CHECK(tesla_store_get, tesla_context, TESLA_MAX_CLASSES, - TESLA_MAX_INSTANCES, &store); + err = tesla_store_get(tesla_context, TESLA_MAX_CLASSES, + TESLA_MAX_INSTANCES, &store); + if (err != TESLA_SUCCESS) + return; + PRINT("store: 0x%tx\n", (intptr_t) store); struct tesla_class *class; - CHECK(tesla_class_get, store, class_id, &class, name, description); + err = tesla_class_get(store, class_id, &class, name, description); + if (err != TESLA_SUCCESS) + return; print_class(class); - int error = TESLA_SUCCESS; - // Did we match any instances? bool matched_something = false; @@ -134,7 +130,8 @@ case FORK: { if (cloned >= max_clones) { - error = TESLA_ERROR_ENOMEM; + err = TESLA_ERROR_ENOMEM; + ev_err(class, err, "too many clones"); goto cleanup; } @@ -154,11 +151,19 @@ for (size_t i = 0; i < cloned; i++) { struct clone_info *c = clones + i; struct tesla_instance *clone; - CHECK(tesla_instance_clone, class, c->old, &clone); + err = tesla_instance_clone(class, c->old, &clone); + if (err != TESLA_SUCCESS) { + ev_err(class, err, "failed to clone instance"); + goto cleanup; + } tesla_key new_name = *pattern; new_name.tk_mask &= c->transition->to_mask; - CHECK(tesla_key_union, &clone->ti_key, &new_name); + err = tesla_key_union(&clone->ti_key, &new_name); + if (err != TESLA_SUCCESS) { + ev_err(class, err, "failed to union keys"); + goto cleanup; + } clone->ti_state = c->transition->to; @@ -174,7 +179,12 @@ const tesla_transition *t = trans->transitions + i; if (t->flags & TESLA_TRANS_INIT) { struct tesla_instance *inst; - CHECK(tesla_instance_new, class, pattern, t->to, &inst); + err = tesla_instance_new(class, pattern, t->to, &inst); + if (err != TESLA_SUCCESS) { + ev_err(class, err, "failed to create instance"); + goto cleanup; + } + assert(tesla_instance_active(inst)); matched_something = true; @@ -201,7 +211,6 @@ cleanup: tesla_class_put(class); - return error; } enum tesla_action_t From owner-p4-projects@FreeBSD.ORG Tue Jun 18 14:20:12 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id E719C8EC; Tue, 18 Jun 2013 14:20:11 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A9E178EA for ; Tue, 18 Jun 2013 14:20:11 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 80AD91C68 for ; Tue, 18 Jun 2013 14:20:11 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5IEKBiN018501 for ; Tue, 18 Jun 2013 14:20:11 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5IEKBLx018498 for perforce@freebsd.org; Tue, 18 Jun 2013 14:20:11 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 14:20:11 GMT Message-Id: <201306181420.r5IEKBLx018498@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229889 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 14:20:12 -0000 http://p4web.freebsd.org/@@229889?ac=10 Change 229889 by jonathan@jonathan-on-joe on 2013/06/18 14:19:21 Now that we have an alternate error handling path, we mightn't need these asserts (that do not appear in the upstream TESLA repository). Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_class.c#4 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_key.c#4 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#10 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_store.c#4 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_class.c#4 (text+ko) ==== @@ -138,12 +138,7 @@ // A new instance must not look inactive. if ((state == 0) && (name->tk_mask == 0)) -#ifdef _KERNEL - tesla_panic("inactive-looking new instance: state %d, mask 0x%x", - state, name->tk_mask); -#else return (TESLA_ERROR_EINVAL); -#endif if (tclass->tc_free == 0) return (TESLA_ERROR_ENOMEM); ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_key.c#4 (text+ko) ==== @@ -72,10 +72,6 @@ if (IS_SET(source->tk_mask, i)) { if (IS_SET(dest->tk_mask, i)) { if (dest->tk_keys[i] != source->tk_keys[i]) -#ifdef _KERNEL - tesla_panic("dest key %d (0x%x) != source (0x%x)", - i, dest->tk_keys[i], source->tk_keys[i]); -#endif return (TESLA_ERROR_EINVAL); } else { dest->tk_keys[i] = source->tk_keys[i]; ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#10 (text+ko) ==== @@ -236,7 +236,7 @@ next = sprint_transitions(next, end, transp); assert(next > buffer); - DEBUG(libtesla.instance.fail, "%s", buffer); + error("%s", buffer); } static void @@ -262,7 +262,7 @@ next = sprint_transitions(next, end, transp); assert(next > buffer); - DEBUG(libtesla.instance.fail, "%s", buffer); + error("%s", buffer); } static void ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_store.c#4 (text+ko) ==== @@ -96,11 +96,7 @@ } default: -#ifdef _KERNEL - tesla_panic("invliad TESLA_CONTEXT %d", context); -#else return (TESLA_ERROR_EINVAL); -#endif } if (store->length == 0) { @@ -163,11 +159,7 @@ assert(tclassp != NULL); if (id >= store->length) -#ifdef _KERNEL - tesla_panic("requested class id %d > store length (%d)", id, store->length); -#else return (TESLA_ERROR_EINVAL); -#endif tesla_class *tclass = &store->classes[id]; assert(tclass != NULL); From owner-p4-projects@FreeBSD.ORG Tue Jun 18 14:22:14 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 414E8C9C; Tue, 18 Jun 2013 14:22:14 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 03AD3C9A for ; Tue, 18 Jun 2013 14:22:14 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id E800C1CAC for ; Tue, 18 Jun 2013 14:22:13 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5IEMDwr019014 for ; Tue, 18 Jun 2013 14:22:13 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5IEMDBA019011 for perforce@freebsd.org; Tue, 18 Jun 2013 14:22:13 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 14:22:13 GMT Message-Id: <201306181422.r5IEMDBA019011@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229891 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 14:22:14 -0000 http://p4web.freebsd.org/@@229891?ac=10 Change 229891 by jonathan@jonathan-on-joe on 2013/06/18 14:21:41 If the first tesla_store_get() call fails, it deserves an assert() rather than just a return (the new error-handling path only applies when we have a tesla_class*, which we don't yet here). Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#7 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#7 (text+ko) ==== @@ -46,7 +46,6 @@ const char *name, const char *description, const struct tesla_transitions *trans) { - int err; if (tesla_debugging(DEBUG_NAME)) { /* We should never see with multiple <> transitions. */ @@ -73,15 +72,13 @@ PRINT("\n----\n"); struct tesla_store *store; - err = tesla_store_get(tesla_context, TESLA_MAX_CLASSES, - TESLA_MAX_INSTANCES, &store); - if (err != TESLA_SUCCESS) - return; + assert(tesla_store_get(tesla_context, TESLA_MAX_CLASSES, + TESLA_MAX_INSTANCES, &store) == TESLA_SUCCESS); PRINT("store: 0x%tx\n", (intptr_t) store); struct tesla_class *class; - err = tesla_class_get(store, class_id, &class, name, description); + int err = tesla_class_get(store, class_id, &class, name, description); if (err != TESLA_SUCCESS) return; From owner-p4-projects@FreeBSD.ORG Tue Jun 18 14:24:16 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 991D9DBF; Tue, 18 Jun 2013 14:24:16 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5A632DBD for ; Tue, 18 Jun 2013 14:24:16 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 495D21CCC for ; Tue, 18 Jun 2013 14:24:16 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5IEOG67019166 for ; Tue, 18 Jun 2013 14:24:16 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5IEOGVg019163 for perforce@freebsd.org; Tue, 18 Jun 2013 14:24:16 GMT (envelope-from jonathan@freebsd.org) Date: Tue, 18 Jun 2013 14:24:16 GMT Message-Id: <201306181424.r5IEOGVg019163@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229892 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 14:24:16 -0000 http://p4web.freebsd.org/@@229892?ac=10 Change 229892 by jonathan@jonathan-on-joe on 2013/06/18 14:23:32 As for the last change, use assert() for failures in finding the relevant tesla_class*. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#8 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#8 (text+ko) ==== @@ -78,9 +78,8 @@ PRINT("store: 0x%tx\n", (intptr_t) store); struct tesla_class *class; - int err = tesla_class_get(store, class_id, &class, name, description); - if (err != TESLA_SUCCESS) - return; + assert(tesla_class_get(store, class_id, &class, name, description) + == TESLA_SUCCESS); print_class(class); @@ -99,6 +98,7 @@ } clones[max_clones]; // Iterate over existing instances, figure out what to do with each. + int err = TESLA_SUCCESS; for (uint32_t i = 0; i < class->tc_limit; i++) { assert(class->tc_instances != NULL); tesla_instance *inst = class->tc_instances + i; From owner-p4-projects@FreeBSD.ORG Tue Jun 18 21:51:28 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id CBF69FCF; Tue, 18 Jun 2013 21:51:28 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8CF76FCB for ; Tue, 18 Jun 2013 21:51:28 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 630B21702 for ; Tue, 18 Jun 2013 21:51:28 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5ILpSp1078470 for ; Tue, 18 Jun 2013 21:51:28 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5ILpSG9078467 for perforce@freebsd.org; Tue, 18 Jun 2013 21:51:28 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Tue, 18 Jun 2013 21:51:28 GMT Message-Id: <201306182151.r5ILpSG9078467@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson Subject: PERFORCE change 229923 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 21:51:29 -0000 http://p4web.freebsd.org/@@229923?ac=10 Change 229923 by rwatson@rwatson_cinnamon on 2013/06/18 21:51:11 Implement the tesla_event_handler teh_err method for DTrace and failstop in preference to dereferencing a NULL pointer. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_dtrace.c#6 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#11 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_dtrace.c#6 (text+ko) ==== @@ -52,6 +52,8 @@ SDT_PROBE_DEFINE3(tesla, kernel, notify, bad_transition, bad-transition, "struct tesla_class *", "struct tesla_instance *", "struct tesla_transitions *"); +SDT_PROBE_DEFINE3(tesla, kernel, notify, err, err, "struct tesla_class *", + "int", "const char *"); SDT_PROBE_DEFINE2(tesla, kernel, notify, accept, accept, "struct tesla_class *", "struct tesla_instance *"); SDT_PROBE_DEFINE3(tesla, kernel, notify, ignored, ignored-event, @@ -98,6 +100,13 @@ } static void +err(struct tesla_class *tcp, int errno, const char *message) +{ + + SDT_PROBE(tesla, kernel, notify, err, tcp, errno, message, 0, 0); +} + +static void accept(struct tesla_class *tcp, struct tesla_instance *tip) { @@ -118,6 +127,7 @@ .teh_clone = clone, .teh_fail_no_instance = no_instance, .teh_bad_transition = bad_transition, + .teh_err = err, .teh_accept = accept, .teh_ignored = ignored, }; ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#11 (text+ko) ==== @@ -330,12 +330,21 @@ tesla_panic("TESLA: failure in '%s': bad transition", tcp->tc_name); } +static void +panic_err(struct tesla_class *tcp, int errno, const char *message) +{ + + tesla_panic("TESLA: error in '%s': %s (%d)", tcp->tc_name, message, + errno); +} + static const struct tesla_event_handlers failstop_handlers = { .teh_init = ev_noop, .teh_transition = ev_noop, .teh_clone = ev_noop, .teh_fail_no_instance = panic_no_instance, .teh_bad_transition = panic_bad_transition, + .teh_err = panic_err, .teh_accept = ev_noop, .teh_ignored = ev_noop, }; From owner-p4-projects@FreeBSD.ORG Tue Jun 18 23:20:09 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id CF1822D8; Tue, 18 Jun 2013 23:20:08 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8E9E82D6 for ; Tue, 18 Jun 2013 23:20:08 +0000 (UTC) (envelope-from brooks@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6211E1A2D for ; Tue, 18 Jun 2013 23:20:08 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5INK8Ic090558 for ; Tue, 18 Jun 2013 23:20:08 GMT (envelope-from brooks@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5INK58N090403 for perforce@freebsd.org; Tue, 18 Jun 2013 23:20:05 GMT (envelope-from brooks@freebsd.org) Date: Tue, 18 Jun 2013 23:20:05 GMT Message-Id: <201306182320.r5INK58N090403@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to brooks@freebsd.org using -f From: Brooks Davis Subject: PERFORCE change 229928 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 23:20:09 -0000 http://p4web.freebsd.org/@@229928?ac=10 Change 229928 by brooks@brooks_zenith on 2013/06/18 23:19:12 IFC @ 229906. Includes the fix for FreeBSD-SA-13:06.mmap. NOTE: this version requires -DWITHOUT_SVNLITE when building on mips (and from tinderbox presumably arm and powerpc). This is expected to be a brief state of affairs. Affected files ... .. //depot/projects/ctsrd/beribsd/src/Makefile#9 integrate .. //depot/projects/ctsrd/beribsd/src/Makefile.inc1#13 integrate .. //depot/projects/ctsrd/beribsd/src/ObsoleteFiles.inc#10 integrate .. //depot/projects/ctsrd/beribsd/src/UPDATING#12 integrate .. //depot/projects/ctsrd/beribsd/src/bin/sh/jobs.c#9 integrate .. //depot/projects/ctsrd/beribsd/src/bin/sh/sh.1#8 integrate .. //depot/projects/ctsrd/beribsd/src/bin/sleep/sleep.c#4 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c#6 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/cmd/zhack/zhack.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c#6 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/cmd/ztest/ztest.c#7 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c#7 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c#4 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c#5 integrate .. //depot/projects/ctsrd/beribsd/src/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/CHANGES#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/LICENSE#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/Makefile.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/Makefile.win#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/NOTICE#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/README#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/apr-util.pc.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/apr-util.spec#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/aprutil.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/aprutil.dsw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/apu-config.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_brigade.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_alloc.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_eos.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_file.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_flush.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_heap.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_mmap.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_pipe.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_pool.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_refcount.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_simple.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buckets/apr_buckets_socket.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/build-outputs.mk#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/build.conf#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/buildconf#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/config.layout#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/configure#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/configure.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_crypto.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_crypto_nss.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_crypto_nss.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_crypto_openssl.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_crypto_openssl.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_md4.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_md5.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/apr_sha1.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/getuuid.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/crypto/uuid.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/NWGNUdbdfreetds#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/NWGNUdbdmysql#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/NWGNUdbdpgsql#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/NWGNUdbdsqli2#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/NWGNUdbdsqli3#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_freetds.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_freetds.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_mysql.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_mysql.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_odbc.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_odbc.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_oracle.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_oracle.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_pgsql.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_pgsql.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite2.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite2.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite3.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite3.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/NWGNUdbmdb#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/NWGNUdbmgdbm#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm_berkeleydb.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm_db.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm_gdbm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm_gdbm.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm_ndbm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/apr_dbm_sdbm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm_hash.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm_lock.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm_pair.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm_pair.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm_private.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/dbm/sdbm/sdbm_tune.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/docs/doxygen.conf#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/encoding/apr_base64.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/export_vars.sh.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/hooks/apr_hooks.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_anylock.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_base64.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_buckets.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_crypto.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_date.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_dbd.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_dbm.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_hooks.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap.hnw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap.hw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap_init.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap_option.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap_rebind.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_ldap_url.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_md4.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_md5.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_memcache.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_optional.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_optional_hooks.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_queue.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_reslist.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_rmm.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_sdbm.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_sha1.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_strmatch.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_thread_pool.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_uri.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_uuid.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_xlate.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apr_xml.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu.hnw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu.hw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu_errno.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu_version.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu_want.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu_want.hnw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/apu_want.hw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apr_crypto_internal.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apr_dbd_internal.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apr_dbd_odbc_v2.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apr_dbm_private.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apu_config.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apu_config.hnw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apu_config.hw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apu_internal.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apu_select_dbm.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/include/private/apu_select_dbm.hw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/apr_ldap.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/apr_ldap_init.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/apr_ldap_option.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/apr_ldap_rebind.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/apr_ldap_stub.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/ldap/apr_ldap_url.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/libaprutil.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/libaprutil.rc#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/memcache/apr_memcache.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apr_date.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apr_queue.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apr_reslist.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apr_rmm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apr_thread_pool.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apu_dso.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/misc/apu_version.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/renames_pending#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/strmatch/apr_strmatch.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/Makefile.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/Makefile.win#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/NWGNUaputest#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/abts.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/abts.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/abts_tests.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/data/billion-laughs.xml#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/dbd.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/nw_misc.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/test_apu.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testall.dsw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testbuckets.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testcrypto.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testdate.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testdbd.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testdbm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testldap.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testmd4.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testmd5.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testmemcache.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testpass.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testqueue.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testreslist.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testrmm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testssl.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/teststrmatch.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testuri.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testutil.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testutil.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testutildll.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testutillib.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testuuid.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testxlate.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/test/testxml.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/uri/apr_uri.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/xlate/xlate.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/xml/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr-util/xml/apr_xml.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/CHANGES#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/LICENSE#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/Makefile.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/Makefile.win#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/NOTICE#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/README#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr-config.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr.dep#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr.dsw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr.mak#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr.pc.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/apr.spec#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/atomic/unix/builtins.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/atomic/unix/ia32.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/atomic/unix/mutex.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/atomic/unix/ppc.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/atomic/unix/s390.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/atomic/unix/solaris.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/build-outputs.mk#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/build.conf#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/buildconf#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/config.layout#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/configure#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/configure.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/APRDesign.html#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/canonical_filenames.html#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/doxygen.conf#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/incomplete_types#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/non_apr_programs#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/pool-design.html#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/docs/win32_builds.html#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/dso/unix/dso.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/emacs-mode#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/buffer.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/copy.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/dir.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/fileacc.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/filedup.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/filepath.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/filepath_util.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/filestat.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/flock.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/fullrw.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/mktemp.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/open.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/pipe.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/readwrite.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/seek.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/file_io/unix/tempdir.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/helpers/apr_rename.pl#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr.hnw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr.hw#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_allocator.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_atomic.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_dso.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_env.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_errno.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_file_info.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_file_io.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_fnmatch.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_general.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_getopt.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_global_mutex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_hash.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_inherit.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_lib.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_mmap.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_network_io.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_poll.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_pools.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_portable.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_proc_mutex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_random.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_ring.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_shm.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_signal.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_strings.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_support.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_tables.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_thread_cond.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_thread_mutex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_thread_proc.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_thread_rwlock.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_time.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_user.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_version.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/apr_want.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/apr_private_common.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_atomic.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_dso.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_file_io.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_global_mutex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_inherit.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_internal_time.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_misc.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_networkio.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_poll_private.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_proc_mutex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_shm.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_thread_cond.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_thread_mutex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_thread_rwlock.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_arch_threadproc.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/include/arch/unix/apr_private.h.in#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/libapr.dep#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/libapr.dsp#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/libapr.mak#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/libapr.rc#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/locks/unix/global_mutex.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/locks/unix/proc_mutex.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/locks/unix/thread_cond.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/locks/unix/thread_mutex.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/locks/unix/thread_rwlock.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/memory/unix/apr_pools.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/charset.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/env.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/errorcodes.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/getopt.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/otherchild.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/rand.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/randbyte_os2.inc#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/start.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/misc/unix/version.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/mmap/unix/common.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/mmap/unix/mmap.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/inet_ntop.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/inet_pton.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/multicast.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/sendrecv.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/sockaddr.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/socket_util.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/sockets.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/network_io/unix/sockopt.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/passwd/apr_getpass.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/epoll.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/kqueue.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/poll.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/pollcb.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/pollset.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/port.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/poll/unix/select.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/random/unix/apr_random.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/random/unix/sha2.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/random/unix/sha2.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/random/unix/sha2_glue.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/shmem/unix/shm.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/strings/apr_cpystrn.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/strings/apr_fnmatch.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/strings/apr_snprintf.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/strings/apr_strings.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/strings/apr_strnatcmp.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/strings/apr_strtok.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/support/unix/waitio.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/tables/apr_hash.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/tables/apr_tables.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/threadproc/unix/proc.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/threadproc/unix/procsup.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/threadproc/unix/signals.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/threadproc/unix/thread.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/threadproc/unix/threadpriv.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/time/unix/time.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/time/unix/timestr.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/user/unix/groupinfo.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/apr/user/unix/userinfo.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/binutils/include/elf/dwarf2.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/bmake/ChangeLog#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/bmake/Makefile#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/bmake/job.c#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/bmake/make.1#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/bmake/var.c#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/AUTHORS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/BUGS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/COPYING#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/COPYING.LIB#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/ChangeLog.zoo#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/DEVEL-CVS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/FAQ#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/FREEBSD-Xlist#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/FREEBSD-upgrade#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/FREEBSD-vendstock#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/HACKING#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/INSTALL#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/MINOR-BUGS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/Makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/NEWS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/PROJECTS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/README#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/TESTS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/TODO#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/acinclude.m4#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/aclocal.m4#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/compile#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/config.h.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/configure#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/configure.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/Makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/README#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/check_cvs.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/clmerge.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cln_hist.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/commit_prep.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cvs2vendor.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cvs_acls.html#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cvs_acls.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cvscheck.man#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cvscheck.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/cvshelp.man#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/debug_check_log.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/descend.man#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/descend.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/dirfns.shar#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/intro.doc#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/log.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/log_accum.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/mfpipe.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/pvcs2rcs.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/rcs-to-cvs.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/rcs2log.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/rcs2sccs.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/rcslock.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/contrib/sccs2rcs.in#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/cvs-format.el#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/depcomp#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/Makefile.in#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/analyze.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/cmpbuf.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/cmpbuf.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/context.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/diff.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/diff.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/diff3.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/diffrun.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/dir.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/ed.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/ifdef.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/io.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/normal.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/side.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/system.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/util.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/diff/version.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/ChangeLog.fsf#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/HACKING.DOCS#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/Makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/RCSFILES#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/cvs-paper.ms#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/cvs.1#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/cvs.man.footer#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/cvs.man.header#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/cvs.texinfo#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/cvsclient.texi#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/mdate-sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/mkman.pl#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/stamp-1#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/stamp-vti#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/version-client.texi#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/doc/version.texi#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/install-sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/ChangeLog.fsf#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/Makefile.in#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/argmatch.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/dup2.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/fncase.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/fnmatch.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/fnmatch.h.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/ftruncate.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getdate.y#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/gethostname.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getline.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getline.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getopt.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getopt.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getopt1.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getpagesize.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/getpass.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/md5.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/md5.h#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/memmove.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/mkdir.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/regex.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/regex.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/rename.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/savecwd.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/savecwd.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/sighandle.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/strerror.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/stripslash.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/strstr.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/strtoul.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/system.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/test-getdate.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/valloc.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/wait.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/waitpid.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/xgetwd.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/xgssapi.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/xselect.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/xsize.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/xtime.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/lib/yesno.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/man/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/man/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/man/Makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/man/cvs.1#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/man/cvs.5#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/man/cvsbug.8#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/mdate-sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/missing#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/mkinstalldirs#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/mktemp.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/ChangeLog-9194#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/ChangeLog-9395#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/ChangeLog-96#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/ChangeLog-97#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/Makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/add.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/admin.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/annotate.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/buffer.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/buffer.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/checkin.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/checkout.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/classify.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/client.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/client.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/commit.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/create_adm.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/cvs.h#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/cvsbug.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/cvsrc.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/diff.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/edit.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/edit.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/entries.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/error.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/error.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/expand_path.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/fileattr.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/fileattr.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/filesubr.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/find_names.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/hardlink.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/hardlink.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/hash.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/hash.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/history.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/history.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/ignore.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/import.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/lock.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/log.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/login.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/logmsg.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/main.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/mkmodules.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/modules.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/myndbm.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/myndbm.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/no_diff.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/parseinfo.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/patch.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/rcs.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/rcs.h#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/rcscmds.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/recurse.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/release.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/remove.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/repos.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/root.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/root.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/run.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/sanity.sh#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/scramble.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/server.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/server.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/stack.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/stack.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/status.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/subr.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/tag.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/update.c#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/update.h#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/vers_ts.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/version.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/watch.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/watch.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/wrapper.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/src/zlib.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/tools/ChangeLog#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/tools/Makefile.am#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/tools/Makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/cvs/tools/README#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/CHANGES#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/VERSION#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/aclocal.m4#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/argv.c#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/arrows.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/buildlist.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/buttons.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/calendar.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/checklist.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/columns.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/config.guess#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/config.sub#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/configure#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/configure.in#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dialog-config.in#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dialog.1#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dialog.3#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dialog.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dialog.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dlg_colors.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dlg_keys.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/dlg_keys.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/editbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/formbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/fselect.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/guage.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/headers-sh.in#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/help.c#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/inputbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/inputstr.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/makefile.in#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/menubox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/mixedform.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/mixedgauge.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/mouse.c#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/mousewget.c#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/msgbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/package/debian/changelog#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/package/dialog.spec#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/pause.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/an.po#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/cs.po#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/el.po#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/gl.po#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/hr.po#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/ia.po#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/sr.po#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/po/zh_TW.po#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/prgbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/progressbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/rangebox.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/rc.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/rename.sh#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/README#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/buildlist#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/buildlist2#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/checklist12#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/admin.funcs#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/common.funcs#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.funcs#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifman1#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifman2#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifmcfg2#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifmcfg4#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifmcfg5#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifpoll1#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifpoll2#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifreq1#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.ifreq2#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.rcnews#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.sendifm1#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.sendifm2#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.trnrc#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/copi.wheel#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copifuncs/ifpatch#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/copismall#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/debian.rc#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/dft-cancel#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/dft-extra#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/dft-help#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/dft-no#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/dialog.py#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/dselect#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/form1#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/fselect0#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/inputmenu#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/inputmenu-stdout#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/inputmenu1#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/inputmenu2#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/inputmenu3#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/inputmenu4#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/install/FDISK.TEST#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/install/makefile.in#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/install/setup.c#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/install/setup.help#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/killall#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/menubox12#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/prgbox#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/prgbox2#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/rangebox#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/rangebox2#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/rangebox3#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/rangebox4#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/report-button#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/report-edit#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/report-string#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/report-tempfile#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/report-yesno#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/setup-edit#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/setup-tempfile#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/setup-utf8#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/setup-vars#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/slackware.rc#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/sourcemage.rc#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/suse.rc#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/tailboxbg#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/tailboxbg1#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/tailboxbg2#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/testdata-8bit#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/treeview#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/treeview2#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/valgrind.log#3 delete .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/wheel#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/whiptail.rc#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/with-dquotes#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/samples/with-squotes#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/tailbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/textbox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/timebox.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/trace.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/treeview.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/ui_getc.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/util.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/dialog/yesno.c#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/gdb/gdb/dwarf2read.c#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/gdb/gdb/frame-unwind.c#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/libgnuregex/regcomp.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/libgnuregex/regex.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/libgnuregex/regex.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/libgnuregex/regex_internal.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/libgnuregex/regex_internal.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/libgnuregex/regexec.c#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/Core.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/ExecutionEngine.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/Object.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/Target.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/TargetMachine.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm-c/Transforms/Vectorize.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/ArrayRef.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/DenseMap.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/Hashing.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/InMemoryStruct.h#2 delete .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/PointerIntPair.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/StringRef.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/Triple.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ADT/Twine.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Analysis/RegionInfo.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/FastISel.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/LiveInterval.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/MachineFunction.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/Passes.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/CodeGen/ValueTypes.td#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/DIBuilder.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/DebugInfo.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Argument.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Attributes.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/BasicBlock.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Constants.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/DataLayout.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/DerivedTypes.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/GlobalValue.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/IRBuilder.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Intrinsics.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/IntrinsicsMips.td#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/LLVMContext.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/MDBuilder.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Module.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Type.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Use.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/IR/Value.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/InitializePasses.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/LinkAllPasses.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Linker.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCAsmInfo.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCAssembler.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCELFStreamer.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCExpr.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCInst.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCObjectStreamer.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCSection.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCSectionCOFF.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCSectionELF.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCSectionMachO.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCStreamer.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/MachineLocation.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/MC/SubtargetFeature.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Object/Binary.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Object/ELF.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Object/MachO.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Object/MachOObject.h#5 delete .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Object/ObjectFile.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Object/RelocVisitor.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/PassManager.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/PassRegistry.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/CBindingWrapping.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/CodeGen.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/CommandLine.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/Compression.h#1 branch .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/ELF.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/Endian.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/Host.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/MemoryBuffer.h#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/PatternMatch.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/Program.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Support/SourceMgr.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/Target.td#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/TargetCallingConv.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/TargetInstrInfo.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/TargetLowering.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/TargetMachine.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/TargetOptions.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Transforms/Utils/BlackList.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Transforms/Utils/Local.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/include/llvm/Transforms/Vectorize.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/Analysis.cpp#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/ConstantFolding.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/IPA/IPA.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/InstructionSimplify.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/RegionInfo.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/ScalarEvolution.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/AsmParser/LLLexer.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/AsmParser/LLParser.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/AsmParser/LLToken.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/Analysis.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/CallingConvLower.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/CodeGen.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/IfConversion.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/InlineSpiller.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineScheduler.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/MachineVerifier.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/Passes.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/TargetSchedule.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFContext.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFContext.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/DebugInfo/DWARFFormValue.h#4 delete .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/AsmWriter.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/AttributeImpl.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Attributes.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Constants.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/ConstantsContext.h#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Core.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/DIBuilder.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/DataLayout.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/DebugInfo.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Function.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Metadata.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/PassManager.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Type.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Value.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/IR/Verifier.cpp#2 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Linker/LinkModules.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/Linker/Linker.cpp#4 delete .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCAsmInfo.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCAsmStreamer.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCAssembler.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCDwarf.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCELFStreamer.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCExpr.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCMachOStreamer.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCNullStreamer.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCObjectFileInfo.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCObjectStreamer.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCParser/AsmParser.cpp#7 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp#4 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCPureStreamer.cpp#5 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCSectionCOFF.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCSectionELF.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCSectionMachO.cpp#3 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/MCStreamer.cpp#6 integrate .. //depot/projects/ctsrd/beribsd/src/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp#4 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Wed Jun 19 15:52:13 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9607BCC2; Wed, 19 Jun 2013 15:52:13 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 55C0FCC0 for ; Wed, 19 Jun 2013 15:52:13 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4564C1B9D for ; Wed, 19 Jun 2013 15:52:13 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JFqDU9022095 for ; Wed, 19 Jun 2013 15:52:13 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JFqDqV022092 for perforce@freebsd.org; Wed, 19 Jun 2013 15:52:13 GMT (envelope-from jhb@freebsd.org) Date: Wed, 19 Jun 2013 15:52:13 GMT Message-Id: <201306191552.r5JFqDqV022092@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 229954 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 15:52:13 -0000 http://p4web.freebsd.org/@@229954?ac=10 Change 229954 by jhb@jhb_jhbbsd on 2013/06/19 15:52:07 IFC @229952 - initial branch Affected files ... .. //depot/projects/stdio_file/lib/libc/Makefile#1 branch .. //depot/projects/stdio_file/lib/libc/Versions.def#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/SYS.h#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/_fpmath.h#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/arith.h#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gd_qnan.h#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/_set_tp.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/_setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fabs.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/flt_rounds.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpgetmask.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpgetprec.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpgetround.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpgetsticky.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpsetmask.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpsetprec.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/fpsetround.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/getcontextx.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/infinity.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/makecontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/rfork_thread.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/signalcontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/gen/sigsetjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/stdlib/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/stdlib/div.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/stdlib/ldiv.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/stdlib/lldiv.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/bcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/bcopy.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/bzero.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/memcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/memcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/memmove.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/memset.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/stpcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/strcat.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/strcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/string/strcpy.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/__vdso_gettc.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/amd64_get_fsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/amd64_get_gsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/amd64_set_fsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/amd64_set_gsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/brk.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/cerror.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/exect.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/getcontext.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/pipe.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/ptrace.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/reboot.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/sbrk.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/setlogin.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/sigreturn.S#1 branch .. //depot/projects/stdio_file/lib/libc/amd64/sys/vfork.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/arm/SYS.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/arm/Symbol_oabi.map#1 branch .. //depot/projects/stdio_file/lib/libc/arm/_fpmath.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/aeabi/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/arm/aeabi/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/arm/aeabi/aeabi_atexit.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/aeabi/aeabi_double.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/aeabi/aeabi_float.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/aeabi/aeabi_unwind_cpp.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/arith.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gd_qnan.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/__aeabi_read_tp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/_ctx_start.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/_set_tp.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/_setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/alloca.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/arm_initfini.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/divsi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/fabs.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/flt_rounds.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/getcontextx.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/infinity.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/makecontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/signalcontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/gen/sigsetjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/softfloat/arm-gcc.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/softfloat/milieu.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/softfloat/softfloat.h#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/bcopy.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/bzero.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/ffs.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/memcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/memcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/memcpy_arm.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/memcpy_xscale.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/memmove.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/memset.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/strcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/strlen.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/string/strncmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/Ovfork.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/__vdso_gettc.c#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/brk.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/cerror.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/fork.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/pipe.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/ptrace.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/sbrk.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/shmat.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/sigreturn.S#1 branch .. //depot/projects/stdio_file/lib/libc/arm/sys/syscall.S#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/creat.2#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/creat.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/gethostid.3#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/gethostid.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/getwd.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/killpg.2#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/killpg.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/sethostid.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/setpgrp.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/setrgid.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/setruid.3#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/setruid.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/sigcompat.c#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/sigpause.2#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/sigsetmask.2#1 branch .. //depot/projects/stdio_file/lib/libc/compat-43/sigvec.2#1 branch .. //depot/projects/stdio_file/lib/libc/db/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/README#1 branch .. //depot/projects/stdio_file/lib/libc/db/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_close.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_conv.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_debug.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_delete.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_get.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_open.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_overflow.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_page.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_put.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_search.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_seq.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_split.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/bt_utils.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/btree.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/btree/extern.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/changelog#1 branch .. //depot/projects/stdio_file/lib/libc/db/db/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/db/db.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/docs/hash.usenix.ps#1 branch .. //depot/projects/stdio_file/lib/libc/db/docs/libtp.usenix.ps#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/README#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/extern.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash_bigkey.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash_buf.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash_func.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash_log2.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/hash_page.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/ndbm.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/hash/page.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/btree.3#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/dbm.3#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/dbopen.3#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/hash.3#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/mpool.3#1 branch .. //depot/projects/stdio_file/lib/libc/db/man/recno.3#1 branch .. //depot/projects/stdio_file/lib/libc/db/mpool/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/mpool/README#1 branch .. //depot/projects/stdio_file/lib/libc/db/mpool/mpool-compat.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/mpool/mpool.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/mpool/mpool.libtp#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/extern.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_close.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_delete.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_get.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_open.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_put.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_search.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_seq.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/rec_utils.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/recno/recno.h#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/Makefile#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/README#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/btree.tests/main.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/dbtest.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/driver2.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/makedb.sh#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/tcreat3.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/tdel.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/testit#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/thash4.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/tread2.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/tseq.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/hash.tests/tverify.c#1 branch .. //depot/projects/stdio_file/lib/libc/db/test/run.test#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/_hdtoa.c#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/_hldtoa.c#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/_ldtoa.c#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/glue.c#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/machdep_ldisQ.c#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/machdep_ldisd.c#1 branch .. //depot/projects/stdio_file/lib/libc/gdtoa/machdep_ldisx.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/gen/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/gen/__getosreldate.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/__xuname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/_once_stub.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/_pthread_stubs.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/_rand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/_spinlock_stub.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/_thread_init.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/alarm.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/alarm.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/arc4random.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/arc4random.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/assert.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/auxv.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/basename.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/basename.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/cap_sandboxed.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/cap_sandboxed.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/check_utility_compat.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/check_utility_compat.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/clock.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/clock.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/clock_getcpuclockid.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/clock_getcpuclockid.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/closedir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/confstr.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/confstr.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/crypt.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ctermid.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ctermid.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/daemon.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/daemon.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/devname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/devname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/directory.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dirfd.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dirname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dirname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/disklabel.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dl_iterate_phdr.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dladdr.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dlfcn.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dlinfo.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dllockinit.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/dlopen.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/drand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/elf_utils.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/erand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/err.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/err.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/errlst.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/errno.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/exec.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/exec.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fdevname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/feature_present.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/feature_present.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fmtcheck.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fmtcheck.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fmtmsg.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fmtmsg.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fnmatch.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fnmatch.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fpclassify.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fpclassify.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/frexp.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/frexp.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fstab.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ftok.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ftok.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fts-compat.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fts-compat.h#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fts.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/fts.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ftw.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ftw.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/gen-private.h#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getbootfile.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getbootfile.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getbsize.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getbsize.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getcap.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getcap.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getcontext.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getcwd.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getcwd.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getdiskbyname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getdomainname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getdomainname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getfsent.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getgrent.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getgrent.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getgrouplist.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getgrouplist.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/gethostname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/gethostname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getloadavg.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getloadavg.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getlogin.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getmntinfo.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getmntinfo.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getnetgrent.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getnetgrent.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getosreldate.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getosreldate.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpagesize.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpagesize.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpagesizes.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpagesizes.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpass.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpeereid.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpeereid.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getprogname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getprogname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpwent.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getpwent.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getttyent.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getttyent.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getusershell.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getusershell.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getutxent.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getutxent.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getvfsbyname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/getvfsbyname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/glob.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/glob.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/initgroups.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/initgroups.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/isatty.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/isgreater.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/isinf.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/isnan.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/jrand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/lcong48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ldexp.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ldexp.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/libc_dlopen.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/lockf.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/lockf.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/lrand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/makecontext.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/modf.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/modf.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/mrand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/nftw.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/nice.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/nice.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/nlist.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/nlist.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/nrand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/opendir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/pause.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/pause.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/pmadvise.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/popen.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/popen.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawn.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawn.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawn_file_actions_addopen.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawn_file_actions_init.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_getflags.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_getpgroup.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_getschedparam.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_getschedpolicy.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_getsigdefault.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_getsigmask.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/posix_spawnattr_init.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/psignal.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/psignal.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/pututxline.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/pw_scan.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/pw_scan.h#1 branch .. //depot/projects/stdio_file/lib/libc/gen/raise.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/raise.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/rand48.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/rand48.h#1 branch .. //depot/projects/stdio_file/lib/libc/gen/readdir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/readpassphrase.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/readpassphrase.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/rewinddir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/rfork_thread.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/scandir.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/scandir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/seed48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/seekdir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_destroy.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_getvalue.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_init.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_new.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_open.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_post.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_timedwait.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sem_wait.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/semctl.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setdomainname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sethostname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setjmp.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setjmperr.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setmode.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setmode.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setproctitle.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setproctitle.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/setprogname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/siginterrupt.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/siginterrupt.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/siglist.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/signal.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/signal.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sigsetops.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sigsetops.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sleep.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sleep.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/srand48.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/statvfs.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/statvfs.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/stringlist.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/stringlist.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/strtofflags.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/strtofflags.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/swapcontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sysconf.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sysconf.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sysctl.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sysctl.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sysctlbyname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/sysctlnametomib.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/syslog.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/syslog.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tcgetpgrp.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tcgetsid.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tcsendbreak.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tcsetattr.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tcsetpgrp.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tcsetsid.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/telldir.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/telldir.h#1 branch .. //depot/projects/stdio_file/lib/libc/gen/termios.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/time.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/time.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/times.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/times.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/timezone.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/timezone.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tls.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ttyname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ttyname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ttyslot.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/tzset.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ualarm.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ualarm.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ucontext.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ulimit.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/ulimit.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/uname.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/uname.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/unvis-compat.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/usleep.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/usleep.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/utime.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/utime.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/utxdb.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/utxdb.h#1 branch .. //depot/projects/stdio_file/lib/libc/gen/valloc.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/valloc.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/wait.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/wait3.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/waitid.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/waitpid.c#1 branch .. //depot/projects/stdio_file/lib/libc/gen/wordexp.3#1 branch .. //depot/projects/stdio_file/lib/libc/gen/wordexp.c#1 branch .. //depot/projects/stdio_file/lib/libc/gmon/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/gmon/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/gmon/gmon.c#1 branch .. //depot/projects/stdio_file/lib/libc/gmon/mcount.c#1 branch .. //depot/projects/stdio_file/lib/libc/gmon/moncontrol.3#1 branch .. //depot/projects/stdio_file/lib/libc/i386/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/i386/SYS.h#1 branch .. //depot/projects/stdio_file/lib/libc/i386/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/i386/_fpmath.h#1 branch .. //depot/projects/stdio_file/lib/libc/i386/arith.h#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gd_qnan.h#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/_ctx_start.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/_set_tp.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/_setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/fabs.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/flt_rounds.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/getcontextx.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/infinity.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/makecontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/rfork_thread.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/signalcontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/gen/sigsetjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/stdlib/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/i386/stdlib/div.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/stdlib/ldiv.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/bcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/bcopy.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/bzero.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/ffs.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/memchr.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/memcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/memcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/memmove.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/memset.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/strcat.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/strchr.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/strcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/strcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/strncmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/strrchr.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/swab.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/wcschr.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/wcscmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/wcslen.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/string/wmemchr.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/Ovfork.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/__vdso_gettc.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/brk.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/cerror.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/exect.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/getcontext.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_clr_watch.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_get_fsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_get_gsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_get_ioperm.2#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_get_ioperm.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_get_ldt.2#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_get_ldt.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_set_fsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_set_gsbase.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_set_ioperm.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_set_ldt.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_set_watch.3#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_set_watch.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_vm86.2#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/i386_vm86.c#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/pipe.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/ptrace.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/reboot.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/sbrk.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/setlogin.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/sigreturn.S#1 branch .. //depot/projects/stdio_file/lib/libc/i386/sys/syscall.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/SYS.h#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/_fpmath.h#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/arith.h#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gd_qnan.h#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__divdf3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__divdi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__divsf3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__divsi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__moddi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__modsi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__udivdi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__udivsi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__umoddi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/__umodsi3.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/_mcount.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/_set_tp.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/_setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/fabs.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/flt_rounds.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/fpgetmask.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/fpgetround.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/fpsetmask.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/fpsetround.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/getcontextx.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/infinity.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/makecontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/signalcontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/sigsetjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/gen/unwind.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/string/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/string/bcopy.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/string/bzero.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/string/ffs.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/string/memcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/string/memmove.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/Ovfork.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/__vdso_gettc.c#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/brk.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/cerror.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/exect.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/fork.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/getcontext.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/pipe.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/ptrace.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/sbrk.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/setlogin.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/sigreturn.S#1 branch .. //depot/projects/stdio_file/lib/libc/ia64/sys/swapcontext.S#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/__iconv_get_list.3#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/_strtol.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/_strtoul.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_aliasname_local.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_bcs.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_bcs.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_bcs_strtol.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_bcs_strtoul.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_csmapper.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_csmapper.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db_factory.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db_factory.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db_file.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db_hash.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_db_hash.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_esdb.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_esdb.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_esdb_file.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_fix_grouping.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_hash.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_hash.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_iconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_iconv.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_iconv_local.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_lock.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_lookup.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_lookup.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_lookup_factory.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_lookup_factory.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_lookup_file.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_mapper.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_mapper.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_mapper_local.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_memstream.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_memstream.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_mmap.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_mmap.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_module.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_module.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_namespace.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_none.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_none.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_pivot_factory.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_pivot_factory.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_pivot_file.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_prop.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_prop.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_region.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_stdenc.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_stdenc.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_stdenc_local.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_stdenc_template.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/citrus_types.h#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/iconv.3#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/iconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/iconv_canonicalize.3#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/iconvctl.3#1 branch .. //depot/projects/stdio_file/lib/libc/iconv/iconvlist.3#1 branch .. //depot/projects/stdio_file/lib/libc/include/compat.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/fpmath.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/isc/eventlib.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/isc/list.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/isc/platform.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/libc_private.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/namespace.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/nscache.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/nscachedcli.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/nss_tls.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/port_after.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/port_before.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/reentrant.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/resolv_mt.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/spinlock.h#1 branch .. //depot/projects/stdio_file/lib/libc/include/un-namespace.h#1 branch .. //depot/projects/stdio_file/lib/libc/inet/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/inet/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_addr.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_cidr_ntop.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_cidr_pton.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_lnaof.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_makeaddr.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_net_ntop.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_net_pton.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_neta.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_netof.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_network.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_ntoa.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_ntop.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/inet_pton.c#1 branch .. //depot/projects/stdio_file/lib/libc/inet/nsap_addr.c#1 branch .. //depot/projects/stdio_file/lib/libc/isc/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/isc/ev_streams.c#1 branch .. //depot/projects/stdio_file/lib/libc/isc/ev_timers.c#1 branch .. //depot/projects/stdio_file/lib/libc/isc/eventlib_p.h#1 branch .. //depot/projects/stdio_file/lib/libc/libc.ldscript#1 branch .. //depot/projects/stdio_file/lib/libc/locale/DESIGN.xlocale#1 branch .. //depot/projects/stdio_file/lib/libc/locale/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/locale/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ascii.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/big5.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/big5.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/btowc.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/btowc.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/c16rtomb.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/c16rtomb_iconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/c32rtomb.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/c32rtomb_iconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/cXXrtomb_iconv.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/collate.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/collate.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/collcmp.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ctype.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ctype.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ctype_l.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/digittoint.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/duplocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/euc.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/euc.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/fix_grouping.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/freelocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/gb18030.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/gb18030.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/gb2312.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/gb2312.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/gbk.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/gbk.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isalnum.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isalpha.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isascii.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isblank.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/iscntrl.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isctype.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isdigit.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isgraph.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isideogram.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/islower.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isphonogram.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isprint.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ispunct.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isrune.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isspace.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isspecial.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isupper.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/iswalnum.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/iswalnum_l.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/iswctype.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/isxdigit.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ldpart.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/ldpart.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/lmessages.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/lmessages.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/lmonetary.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/lmonetary.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/lnumeric.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/lnumeric.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/localeconv.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/localeconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mblen.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mblen.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mblocal.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrlen.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrlen.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtoc16.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtoc16_iconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtoc32.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtoc32_iconv.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtocXX_iconv.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtowc.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbrtowc.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbsinit.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbsinit.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbsnrtowcs.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbsrtowcs.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbsrtowcs.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbstowcs.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbstowcs.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbtowc.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mbtowc.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mskanji.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/mskanji.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/multibyte.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/newlocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/nextwctype.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/nextwctype.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/nl_langinfo.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/nl_langinfo.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/nomacros.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/none.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/querylocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/rpmatch.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/rpmatch.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/rune.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/runefile.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/runetype.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/setlocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/setlocale.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/setlocale.h#1 branch .. //depot/projects/stdio_file/lib/libc/locale/setrunelocale.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/table.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/toascii.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/tolower.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/tolower.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/toupper.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/toupper.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/towlower.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/towupper.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/uselocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/utf8.5#1 branch .. //depot/projects/stdio_file/lib/libc/locale/utf8.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcrtomb.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcrtomb.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcsftime.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcsftime.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcsnrtombs.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcsrtombs.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcsrtombs.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstod.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstod.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstof.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstoimax.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstol.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstol.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstold.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstoll.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstombs.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstombs.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstoul.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstoull.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcstoumax.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctob.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctomb.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctomb.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctrans.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctrans.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctype.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wctype.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcwidth.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/wcwidth.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/xlocale.3#1 branch .. //depot/projects/stdio_file/lib/libc/locale/xlocale.c#1 branch .. //depot/projects/stdio_file/lib/libc/locale/xlocale_private.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/mips/SYS.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/mips/_fpmath.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/arith.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gd_qnan.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gdtoa/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gdtoa/arith.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/_ctx_start.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/_set_tp.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/_setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/fabs.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/fabs.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/flt_rounds.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/getcontextx.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/hardfloat/fpgetmask.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/hardfloat/fpgetround.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/hardfloat/fpgetsticky.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/hardfloat/fpsetmask.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/hardfloat/fpsetround.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/hardfloat/fpsetsticky.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/infinity.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/ldexp.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/longjmp.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/makecontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/setjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/signalcontext.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/gen/sigsetjmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/net/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/mips/net/htonl.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/net/htons.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/net/ntohl.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/net/ntohs.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/softfloat/milieu.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/softfloat/mips-gcc.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/softfloat/softfloat.h#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/bcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/bcopy.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/bzero.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/ffs.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/memcpy.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/memmove.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/strchr.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/strcmp.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/strlen.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/string/strrchr.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/Ovfork.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/__vdso_gettc.c#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/brk.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/cerror.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/exect.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/fork.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/pipe.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/ptrace.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/sbrk.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/shmat.S#1 branch .. //depot/projects/stdio_file/lib/libc/mips/sys/syscall.S#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/ns_name.c#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/ns_netint.c#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/ns_parse.c#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/ns_print.c#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/ns_samedomain.c#1 branch .. //depot/projects/stdio_file/lib/libc/nameser/ns_ttl.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/Makefile.inc#1 branch .. //depot/projects/stdio_file/lib/libc/net/Symbol.map#1 branch .. //depot/projects/stdio_file/lib/libc/net/base64.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/byteorder.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/ether_addr.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/ethers.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/eui64.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/eui64.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/gai_strerror.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/gai_strerror.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getaddrinfo.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getaddrinfo.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/gethostbydns.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/gethostbyht.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/gethostbyname.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/gethostbynis.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/gethostnamadr.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getifaddrs.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getifaddrs.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getifmaddrs.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getifmaddrs.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getipnodebyname.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnameinfo.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnameinfo.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnetbydns.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnetbyht.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnetbynis.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnetent.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getnetnamadr.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getproto.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getprotoent.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getprotoent.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getprotoname.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/getservent.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/getservent.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/hesiod.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/hesiod.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/if_indextoname.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/if_indextoname.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/if_nameindex.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/if_nametoindex.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/inet.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/inet6_opt_init.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/inet6_option_space.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/inet6_rth_space.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/inet6_rthdr_space.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/inet_net.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/ip6opt.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/linkaddr.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/linkaddr.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/map_v4v6.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/name6.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/netdb_private.h#1 branch .. //depot/projects/stdio_file/lib/libc/net/nscache.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/nscachedcli.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/nsdispatch.3#1 branch .. //depot/projects/stdio_file/lib/libc/net/nsdispatch.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/nslexer.l#1 branch .. //depot/projects/stdio_file/lib/libc/net/nsparser.y#1 branch .. //depot/projects/stdio_file/lib/libc/net/nss_backends.h#1 branch .. //depot/projects/stdio_file/lib/libc/net/nss_compat.c#1 branch .. //depot/projects/stdio_file/lib/libc/net/ntoh.c#1 branch >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Wed Jun 19 15:54:17 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 7B12FF65; Wed, 19 Jun 2013 15:54:17 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3DDD8F63 for ; Wed, 19 Jun 2013 15:54:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 2DDEB1BBC for ; Wed, 19 Jun 2013 15:54:17 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JFsHWQ022243 for ; Wed, 19 Jun 2013 15:54:17 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JFsFpW022240 for perforce@freebsd.org; Wed, 19 Jun 2013 15:54:15 GMT (envelope-from jhb@freebsd.org) Date: Wed, 19 Jun 2013 15:54:15 GMT Message-Id: <201306191554.r5JFsFpW022240@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 229955 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 15:54:17 -0000 http://p4web.freebsd.org/@@229955?ac=10 Change 229955 by jhb@jhb_jhbbsd on 2013/06/19 15:53:27 IFC @229952 Affected files ... .. //depot/projects/smpng/share/man/man9/Makefile#34 integrate .. //depot/projects/smpng/share/man/man9/kernel_mount.9#4 integrate .. //depot/projects/smpng/share/man/man9/locking.9#13 integrate .. //depot/projects/smpng/share/man/man9/pci.9#6 integrate .. //depot/projects/smpng/share/man/man9/signal.9#3 integrate .. //depot/projects/smpng/share/man/man9/vfs_mount.9#4 delete .. //depot/projects/smpng/share/man/man9/vfsconf.9#3 integrate .. //depot/projects/smpng/sys/amd64/amd64/db_trace.c#31 integrate .. //depot/projects/smpng/sys/amd64/amd64/exception.S#35 integrate .. //depot/projects/smpng/sys/amd64/amd64/fpu.c#30 integrate .. //depot/projects/smpng/sys/amd64/amd64/genassym.c#39 integrate .. //depot/projects/smpng/sys/amd64/amd64/identcpu.c#48 integrate .. //depot/projects/smpng/sys/amd64/amd64/machdep.c#114 integrate .. //depot/projects/smpng/sys/amd64/amd64/mp_machdep.c#87 integrate .. //depot/projects/smpng/sys/amd64/amd64/pmap.c#128 integrate .. //depot/projects/smpng/sys/amd64/amd64/trap.c#91 integrate .. //depot/projects/smpng/sys/amd64/amd64/vm_machdep.c#59 integrate .. //depot/projects/smpng/sys/amd64/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/amd64/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/amd64/conf/GENERIC#106 integrate .. //depot/projects/smpng/sys/amd64/conf/NOTES#70 integrate .. //depot/projects/smpng/sys/amd64/ia32/ia32_signal.c#37 integrate .. //depot/projects/smpng/sys/amd64/include/fdt.h#1 branch .. //depot/projects/smpng/sys/amd64/include/md_var.h#28 integrate .. //depot/projects/smpng/sys/amd64/include/metadata.h#5 integrate .. //depot/projects/smpng/sys/amd64/include/ofw_machdep.h#1 branch .. //depot/projects/smpng/sys/amd64/include/param.h#33 integrate .. //depot/projects/smpng/sys/amd64/include/pcb.h#26 integrate .. //depot/projects/smpng/sys/amd64/include/pcpu.h#20 integrate .. //depot/projects/smpng/sys/amd64/include/pmap.h#45 integrate .. //depot/projects/smpng/sys/amd64/include/vmparam.h#22 integrate .. //depot/projects/smpng/sys/amd64/include/xen/xen-os.h#3 integrate .. //depot/projects/smpng/sys/amd64/linux32/linux32_machdep.c#41 integrate .. //depot/projects/smpng/sys/amd64/linux32/linux32_sysvec.c#56 integrate .. //depot/projects/smpng/sys/amd64/vmm/io/vlapic.c#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm_dev.c#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm_stat.c#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm_stat.h#4 integrate .. //depot/projects/smpng/sys/arm/arm/cpufunc_asm_pj4b.S#4 integrate .. //depot/projects/smpng/sys/arm/arm/cpufunc_asm_sheeva.S#6 integrate .. //depot/projects/smpng/sys/arm/arm/db_trace.c#23 integrate .. //depot/projects/smpng/sys/arm/arm/exception.S#11 integrate .. //depot/projects/smpng/sys/arm/arm/locore.S#26 integrate .. //depot/projects/smpng/sys/arm/arm/mp_machdep.c#4 integrate .. //depot/projects/smpng/sys/arm/arm/pmap-v6.c#5 integrate .. //depot/projects/smpng/sys/arm/arm/pmap.c#73 integrate .. //depot/projects/smpng/sys/arm/arm/stack_machdep.c#3 integrate .. //depot/projects/smpng/sys/arm/arm/stdatomic.c#1 branch .. //depot/projects/smpng/sys/arm/arm/swtch.S#24 integrate .. //depot/projects/smpng/sys/arm/arm/trap.c#37 integrate .. //depot/projects/smpng/sys/arm/arm/vfp.c#4 integrate .. //depot/projects/smpng/sys/arm/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/arm/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/arm/conf/BEAGLEBONE#5 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/bus_space.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/common.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/console.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/i2c.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_ccm.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_ccmreg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_ccmvar.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_dpllreg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_gpio.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_iomux.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_iomuxreg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_iomuxvar.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_ipuv3.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_ipuv3reg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_sdmareg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_ssireg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_tzicreg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_gpt.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_gptreg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_gptvar.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_machdep.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_wdog.c#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_wdogreg.h#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/tzic.c#2 integrate .. //depot/projects/smpng/sys/arm/include/armreg.h#16 integrate .. //depot/projects/smpng/sys/arm/include/asm.h#11 integrate .. //depot/projects/smpng/sys/arm/include/param.h#21 integrate .. //depot/projects/smpng/sys/arm/include/pmap.h#41 integrate .. //depot/projects/smpng/sys/arm/include/setjmp.h#5 integrate .. //depot/projects/smpng/sys/arm/include/vfp.h#4 integrate .. //depot/projects/smpng/sys/arm/include/vmparam.h#21 integrate .. //depot/projects/smpng/sys/arm/mv/armadaxp/armadaxp.c#4 integrate .. //depot/projects/smpng/sys/arm/mv/armadaxp/armadaxp_mp.c#3 integrate .. //depot/projects/smpng/sys/arm/mv/armadaxp/std.armadaxp#3 integrate .. //depot/projects/smpng/sys/arm/mv/common.c#16 integrate .. //depot/projects/smpng/sys/arm/mv/mv_machdep.c#23 integrate .. //depot/projects/smpng/sys/arm/mv/mvreg.h#13 integrate .. //depot/projects/smpng/sys/arm/mv/mvvar.h#9 integrate .. //depot/projects/smpng/sys/arm/mv/mvwin.h#9 integrate .. //depot/projects/smpng/sys/arm/mv/timer.c#10 integrate .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_lcd.c#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_lcd.h#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_lcd_syscons.c#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_prcm.c#3 integrate .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_pwm.c#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_pwm.h#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_scm.h#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/files.am335x#3 integrate .. //depot/projects/smpng/sys/arm/ti/ti_machdep.c#4 integrate .. //depot/projects/smpng/sys/arm/ti/ti_mmchs.c#4 integrate .. //depot/projects/smpng/sys/arm/ti/ti_prcm.h#3 integrate .. //depot/projects/smpng/sys/boot/arm/at91/Makefile.inc#9 integrate .. //depot/projects/smpng/sys/boot/arm/at91/boot2/Makefile#5 integrate .. //depot/projects/smpng/sys/boot/arm/ixp425/Makefile.inc#3 integrate .. //depot/projects/smpng/sys/boot/arm/ixp425/boot2/Makefile#4 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/am335x-evm.dts#1 branch .. //depot/projects/smpng/sys/boot/fdt/dts/am335x.dtsi#2 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/beaglebone-black.dts#1 branch .. //depot/projects/smpng/sys/boot/fdt/dts/beaglebone.dts#5 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/db78460.dts#3 integrate .. //depot/projects/smpng/sys/boot/pc98/libpc98/biosdisk.c#20 integrate .. //depot/projects/smpng/sys/boot/pc98/libpc98/comconsole.c#7 integrate .. //depot/projects/smpng/sys/boot/sparc64/loader/main.c#41 integrate .. //depot/projects/smpng/sys/cam/ata/ata_da.c#23 integrate .. //depot/projects/smpng/sys/cam/ata/ata_pmp.c#12 integrate .. //depot/projects/smpng/sys/cam/ata/ata_xpt.c#22 integrate .. //depot/projects/smpng/sys/cam/cam_ccb.h#28 integrate .. //depot/projects/smpng/sys/cam/cam_compat.c#1 branch .. //depot/projects/smpng/sys/cam/cam_compat.h#1 branch .. //depot/projects/smpng/sys/cam/cam_periph.c#53 integrate .. //depot/projects/smpng/sys/cam/cam_xpt.c#86 integrate .. //depot/projects/smpng/sys/cam/cam_xpt_periph.h#9 integrate .. //depot/projects/smpng/sys/cam/ctl/scsi_ctl.c#8 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_all.c#42 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_all.h#28 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_cd.c#58 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_ch.c#29 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_da.c#110 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_enc_ses.c#6 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_pass.c#34 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_pt.c#23 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_sa.c#44 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_sg.c#16 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_target.c#36 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c#16 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c#25 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c#17 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c#10 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c#12 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c#16 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c#13 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h#15 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_userhold.h#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h#3 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h#12 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/unique.h#3 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_leaf.h#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h#10 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_rlock.h#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h#13 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c#10 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c#15 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#26 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_sa.c#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c#25 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#36 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c#23 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c#13 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c#20 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h#5 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/sys/fm/fs/zfs.h#5 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/amd64/dtrace_isa.c#5 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/dtrace_ioctl.c#7 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/dtrace_test.c#3 integrate .. //depot/projects/smpng/sys/cddl/dev/sdt/sdt.c#4 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_misc.c#81 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_proto.h#76 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_syscall.h#75 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_syscalls.c#75 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_sysent.c#76 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_systrace_args.c#9 integrate .. //depot/projects/smpng/sys/compat/freebsd32/syscalls.master#79 integrate .. //depot/projects/smpng/sys/compat/linprocfs/linprocfs.c#97 integrate .. //depot/projects/smpng/sys/conf/Makefile.amd64#23 integrate .. //depot/projects/smpng/sys/conf/Makefile.i386#32 integrate .. //depot/projects/smpng/sys/conf/NOTES#203 integrate .. //depot/projects/smpng/sys/conf/files#284 integrate .. //depot/projects/smpng/sys/conf/files.amd64#94 integrate .. //depot/projects/smpng/sys/conf/files.arm#28 integrate .. //depot/projects/smpng/sys/conf/files.i386#153 integrate .. //depot/projects/smpng/sys/conf/files.mips#22 integrate .. //depot/projects/smpng/sys/conf/files.powerpc#77 integrate .. //depot/projects/smpng/sys/conf/kern.mk#38 integrate .. //depot/projects/smpng/sys/conf/options#200 integrate .. //depot/projects/smpng/sys/conf/options.arm#32 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/acpica_prep.sh#22 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/changes.txt#23 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/adisasm.c#22 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/adwalk.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/dmextern.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/dmrestag.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/dmtable.c#15 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/dmtbdump.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/getopt.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslanalyze.c#19 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslbtypes.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslcodegen.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslcompile.c#22 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslcompiler.h#23 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslerror.c#18 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslfold.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslglobal.h#19 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslhex.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asllength.c#10 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asllisting.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asllistsup.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslload.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asllookup.c#16 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslmain.c#23 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslmessages.h#11 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslmethod.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslnamesp.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asloffset.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslopcodes.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asloperands.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asloptions.c#1 branch .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslpredef.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslresource.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslrestype1i.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslrestype2s.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslstartup.c#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslsupport.l#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asltransform.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asltree.c#14 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asltypes.h#21 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslutils.c#18 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslwalks.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/aslxref.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dtexpress.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dtfield.c#7 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dtio.c#10 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dtsubtable.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dttable.c#8 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dtutils.c#8 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/prscan.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbcmds.c#7 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbconvert.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbdisply.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbexec.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbhistry.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbinput.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbmethod.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbnames.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbstats.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbutils.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/debugger/dbxface.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmnames.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmobject.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmopcode.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmresrc.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/disassembler/dmwalk.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dsfield.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dsinit.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dsobject.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dsutils.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dswexec.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dswload.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/dispatcher/dswload2.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evglock.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evgpe.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evgpeblk.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evgpeinit.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evhandler.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evmisc.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evrgnini.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evxfgpe.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/events/evxfregn.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exconfig.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exconvrt.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/excreate.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exdebug.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exdump.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exfield.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exfldio.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exmisc.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exnames.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exoparg1.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exoparg2.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exoparg3.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exoparg6.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exprep.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exregion.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exresnte.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exresolv.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exresop.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exstore.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exstoren.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/hardware/hwacpi.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/hardware/hwgpe.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/hardware/hwregs.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/hardware/hwxface.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsaccess.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsconvert.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsdump.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsinit.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nspredef.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsprepkg.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsrepair.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsrepair2.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsutils.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsxfeval.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/parser/psargs.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/parser/psloop.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/parser/psobject.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/parser/psparse.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/parser/pstree.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/resources/rscalc.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/resources/rscreate.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/resources/rsdump.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/resources/rsmisc.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/resources/rsutils.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/resources/rsxface.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/tables/tbinstal.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/tables/tbprint.c#1 branch .. //depot/projects/smpng/sys/contrib/dev/acpica/components/tables/tbutils.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/tables/tbxfload.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utbuffer.c#1 branch .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utcopy.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utdebug.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utdelete.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/uterror.c#1 branch .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/uteval.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utexcep.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utids.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utmisc.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utobject.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utstring.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/uttrack.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utxferror.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acapps.h#8 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acglobal.h#21 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acpiosxf.h#11 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acpixf.h#23 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/actypes.h#17 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acutils.h#14 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/platform/acenv.h#10 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h#2 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.c#2 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-app-init.h#7 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-helper-board.c#10 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-helper-sgmii.c#4 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-mgmt-port.c#5 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-mgmt-port.h#5 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-pcie.c#4 integrate .. //depot/projects/smpng/sys/contrib/octeon-sdk/cvmx-rtc.h#4 integrate .. //depot/projects/smpng/sys/dev/aac/aac.c#81 integrate .. //depot/projects/smpng/sys/dev/aac/aac_cam.c#35 integrate .. //depot/projects/smpng/sys/dev/aac/aac_disk.c#32 integrate .. //depot/projects/smpng/sys/dev/aac/aacvar.h#41 integrate .. //depot/projects/smpng/sys/dev/aacraid/aacraid.c#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_cam.c#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_debug.c#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_debug.h#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_linux.c#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_pci.c#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_reg.h#1 branch .. //depot/projects/smpng/sys/dev/aacraid/aacraid_var.h#1 branch .. //depot/projects/smpng/sys/dev/acpi_support/acpi_rapidstart.c#1 branch .. //depot/projects/smpng/sys/dev/acpica/Osd/OsdTable.c#17 integrate .. //depot/projects/smpng/sys/dev/age/if_age.c#20 integrate .. //depot/projects/smpng/sys/dev/ahci/ahci.c#29 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aic7xxx.h#16 integrate .. //depot/projects/smpng/sys/dev/ata/ata-lowlevel.c#50 integrate .. //depot/projects/smpng/sys/dev/ata/chipsets/ata-acerlabs.c#16 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ah.c#22 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ah.h#23 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ah_desc.h#12 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ah_internal.h#25 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c#19 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c#4 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c#15 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c#8 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c#24 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar5416/ar5416desc.h#7 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285.h#6 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c#10 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c#4 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c#4 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h#3 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c#4 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h#3 integrate .. //depot/projects/smpng/sys/dev/ath/ath_hal/ar9002/ar9285_reset.c#5 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath.c#107 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_alq.c#3 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_alq.h#3 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_beacon.c#5 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_btcoex.c#1 branch .. //depot/projects/smpng/sys/dev/ath/if_ath_btcoex.h#1 branch .. //depot/projects/smpng/sys/dev/ath/if_ath_debug.h#7 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_lna_div.c#1 branch .. //depot/projects/smpng/sys/dev/ath/if_ath_lna_div.h#1 branch .. //depot/projects/smpng/sys/dev/ath/if_ath_misc.h#9 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_rx.c#8 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_sysctl.c#13 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tdma.c#4 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tx.c#12 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tx.h#9 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tx_edma.c#5 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tx_ht.c#12 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tx_ht.h#4 integrate .. //depot/projects/smpng/sys/dev/ath/if_athioctl.h#33 integrate .. //depot/projects/smpng/sys/dev/ath/if_athvar.h#65 integrate .. //depot/projects/smpng/sys/dev/atkbdc/psm.c#26 integrate .. //depot/projects/smpng/sys/dev/bce/if_bce.c#51 integrate .. //depot/projects/smpng/sys/dev/bce/if_bcefw.h#12 integrate .. //depot/projects/smpng/sys/dev/bce/if_bcereg.h#31 integrate .. //depot/projects/smpng/sys/dev/bge/if_bge.c#130 integrate .. //depot/projects/smpng/sys/dev/bge/if_bgereg.h#74 integrate .. //depot/projects/smpng/sys/dev/bwn/if_bwn.c#19 integrate .. //depot/projects/smpng/sys/dev/cesa/cesa.c#5 integrate .. //depot/projects/smpng/sys/dev/cesa/cesa.h#3 integrate .. //depot/projects/smpng/sys/dev/cfi/cfi_core.c#9 integrate .. //depot/projects/smpng/sys/dev/cfi/cfi_disk.c#5 integrate .. //depot/projects/smpng/sys/dev/cfi/cfi_reg.h#4 integrate .. //depot/projects/smpng/sys/dev/cp/if_cp.c#32 integrate .. //depot/projects/smpng/sys/dev/ctau/if_ct.c#32 integrate .. //depot/projects/smpng/sys/dev/cx/csigma.c#4 integrate .. //depot/projects/smpng/sys/dev/cx/if_cx.c#38 integrate .. //depot/projects/smpng/sys/dev/cxgb/cxgb_main.c#45 integrate .. //depot/projects/smpng/sys/dev/cxgb/sys/uipc_mvec.c#13 integrate .. //depot/projects/smpng/sys/dev/cxgbe/offload.h#8 integrate .. //depot/projects/smpng/sys/dev/cxgbe/t4_main.c#13 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_cpl_io.c#6 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_ddp.c#4 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_listen.c#5 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_tom.h#5 integrate .. //depot/projects/smpng/sys/dev/drm2/i915/i915_gem.c#5 integrate .. //depot/projects/smpng/sys/dev/drm2/i915/intel_fb.c#3 integrate .. //depot/projects/smpng/sys/dev/drm2/ttm/ttm_tt.c#2 integrate .. //depot/projects/smpng/sys/dev/e1000/if_em.c#36 integrate .. //depot/projects/smpng/sys/dev/e1000/if_em.h#14 integrate .. //depot/projects/smpng/sys/dev/e1000/if_lem.c#17 integrate .. //depot/projects/smpng/sys/dev/e1000/if_lem.h#7 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch.c#5 integrate .. //depot/projects/smpng/sys/dev/etherswitch/etherswitch.c#4 integrate .. //depot/projects/smpng/sys/dev/etherswitch/etherswitch.h#4 integrate .. //depot/projects/smpng/sys/dev/etherswitch/etherswitch_if.m#4 integrate .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip175c.c#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip175c.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip175d.c#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip175d.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x.c#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_phy.c#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_phy.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_reg.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_var.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_vlans.c#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_vlans.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/ukswitch/ukswitch.c#2 integrate .. //depot/projects/smpng/sys/dev/fdt/fdt_x86.c#1 branch .. //depot/projects/smpng/sys/dev/filemon/filemon.c#3 integrate .. //depot/projects/smpng/sys/dev/filemon/filemon_wrapper.c#4 integrate .. //depot/projects/smpng/sys/dev/flash/mx25l.c#8 integrate .. //depot/projects/smpng/sys/dev/fxp/if_fxp.c#105 integrate .. //depot/projects/smpng/sys/dev/hptmv/entry.c#26 integrate .. //depot/projects/smpng/sys/dev/hwpmc/hwpmc_mod.c#44 integrate .. //depot/projects/smpng/sys/dev/isci/scil/scif_sas_domain.c#3 integrate .. //depot/projects/smpng/sys/dev/isp/isp_freebsd.c#79 integrate .. //depot/projects/smpng/sys/dev/ixgbe/README#5 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe.c#35 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe.h#21 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_82598.c#14 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_82599.c#12 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_api.c#14 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_api.h#15 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_common.c#15 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_common.h#13 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_dcb.c#1 branch .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_dcb.h#1 branch .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_dcb_82598.c#1 branch .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_dcb_82598.h#1 branch .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_dcb_82599.c#1 branch .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_dcb_82599.h#1 branch .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_osdep.h#13 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_phy.c#14 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_phy.h#13 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_type.h#15 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_vf.c#6 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_x540.c#5 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe_x540.h#4 integrate .. //depot/projects/smpng/sys/dev/md/md.c#106 integrate .. //depot/projects/smpng/sys/dev/mfi/mfi_cam.c#10 integrate .. //depot/projects/smpng/sys/dev/mfi/mfireg.h#18 integrate .. //depot/projects/smpng/sys/dev/mmc/mmcsd.c#15 integrate .. //depot/projects/smpng/sys/dev/mps/mps.c#11 integrate .. //depot/projects/smpng/sys/dev/mps/mps_mapping.c#4 integrate .. //depot/projects/smpng/sys/dev/mps/mps_user.c#8 integrate .. //depot/projects/smpng/sys/dev/mpt/mpt_raid.c#24 integrate .. //depot/projects/smpng/sys/dev/mpt/mpt_user.c#7 integrate .. //depot/projects/smpng/sys/dev/msk/if_msk.c#38 integrate .. //depot/projects/smpng/sys/dev/mvs/mvs.c#13 integrate .. //depot/projects/smpng/sys/dev/nand/nand.h#3 integrate .. //depot/projects/smpng/sys/dev/nand/nand_geom.c#3 integrate .. //depot/projects/smpng/sys/dev/nand/nandbus.c#3 integrate .. //depot/projects/smpng/sys/dev/netmap/netmap.c#8 integrate .. //depot/projects/smpng/sys/dev/netmap/netmap_kern.h#8 integrate .. //depot/projects/smpng/sys/dev/netmap/netmap_mem2.c#6 integrate .. //depot/projects/smpng/sys/dev/nsp/nsp.c#15 integrate .. //depot/projects/smpng/sys/dev/pci/pci.c#132 integrate .. //depot/projects/smpng/sys/dev/pci/pcireg.h#42 integrate .. //depot/projects/smpng/sys/dev/puc/puc_bfe.h#5 integrate .. //depot/projects/smpng/sys/dev/puc/puc_cfg.h#5 integrate .. //depot/projects/smpng/sys/dev/puc/pucdata.c#63 integrate .. //depot/projects/smpng/sys/dev/qlxgb/README.txt#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_dbg.c#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_dbg.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_def.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_glbl.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_hw.c#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_hw.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_inline.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_ioctl.c#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_ioctl.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_isr.c#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_misc.c#4 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_os.c#5 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_os.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_reg.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgb/qla_ver.h#3 integrate .. //depot/projects/smpng/sys/dev/qlxgbe/README.txt#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_dbg.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_dbg.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_def.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_glbl.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_hw.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_hw.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_inline.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_ioctl.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_ioctl.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_isr.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_misc.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_os.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_os.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_reset.c#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_tmplt.h#1 branch .. //depot/projects/smpng/sys/dev/qlxgbe/ql_ver.h#1 branch .. //depot/projects/smpng/sys/dev/rt/if_rt.c#5 integrate .. //depot/projects/smpng/sys/dev/sfxge/common/efx_mcdi.c#4 integrate .. //depot/projects/smpng/sys/dev/sk/if_sk.c#26 integrate .. //depot/projects/smpng/sys/dev/sk/if_skreg.h#10 integrate .. //depot/projects/smpng/sys/dev/sn/if_sn.c#34 integrate .. //depot/projects/smpng/sys/dev/sound/pci/envy24ht.c#17 integrate .. //depot/projects/smpng/sys/dev/sound/pci/envy24ht.h#6 integrate .. //depot/projects/smpng/sys/dev/sound/pci/hda/hdaa_patches.c#6 integrate .. //depot/projects/smpng/sys/dev/sound/usb/uaudio.c#50 integrate .. //depot/projects/smpng/sys/dev/stg/tmc18c30.c#15 integrate .. //depot/projects/smpng/sys/dev/sym/sym_hipd.c#44 integrate .. //depot/projects/smpng/sys/dev/syscons/scvgarndr.c#16 integrate .. //depot/projects/smpng/sys/dev/tws/tws.h#6 integrate .. //depot/projects/smpng/sys/dev/uart/uart_bus_fdt.c#9 integrate .. //depot/projects/smpng/sys/dev/uart/uart_core.c#27 integrate .. //depot/projects/smpng/sys/dev/uart/uart_cpu_fdt.c#1 branch .. //depot/projects/smpng/sys/dev/usb/controller/ehci.c#30 integrate .. //depot/projects/smpng/sys/dev/usb/controller/uhci.c#25 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci.c#11 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci.h#8 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci_pci.c#11 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhcireg.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_aue.c#22 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_axe.c#27 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_axereg.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_cuereg.h#4 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_ipheth.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_mos.c#7 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_rue.c#20 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_smsc.c#5 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_udav.c#22 integrate .. //depot/projects/smpng/sys/dev/usb/quirk/usb_quirk.c#30 integrate .. //depot/projects/smpng/sys/dev/usb/serial/usb_serial.c#20 integrate .. //depot/projects/smpng/sys/dev/usb/serial/usb_serial.h#12 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uslcom.c#19 integrate .. //depot/projects/smpng/sys/dev/usb/template/usb_template.c#18 integrate .. //depot/projects/smpng/sys/dev/usb/usb_debug.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/usb_device.c#36 integrate .. //depot/projects/smpng/sys/dev/usb/usb_device.h#24 integrate .. //depot/projects/smpng/sys/dev/usb/usb_dynamic.c#13 integrate .. //depot/projects/smpng/sys/dev/usb/usb_freebsd.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/usb_freebsd_loader.h#2 integrate .. //depot/projects/smpng/sys/dev/usb/usb_generic.c#27 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hub.c#30 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hub.h#11 integrate .. //depot/projects/smpng/sys/dev/usb/usb_ioctl.h#14 integrate .. //depot/projects/smpng/sys/dev/usb/usb_msctest.c#20 integrate .. //depot/projects/smpng/sys/dev/usb/usb_parse.c#11 integrate .. //depot/projects/smpng/sys/dev/usb/usb_request.c#28 integrate .. //depot/projects/smpng/sys/dev/usb/usb_request.h#16 integrate .. //depot/projects/smpng/sys/dev/usb/usbdevs#179 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtwn.c#1 branch .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtwnreg.h#1 branch .. //depot/projects/smpng/sys/dev/virtio/network/if_vtnet.c#6 integrate .. //depot/projects/smpng/sys/dev/vxge/vxge.h#3 integrate .. //depot/projects/smpng/sys/dev/xen/blkfront/blkfront.c#18 integrate .. //depot/projects/smpng/sys/dev/xen/blkfront/block.h#8 integrate .. //depot/projects/smpng/sys/dev/xen/netfront/netfront.c#24 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_alloc.c#10 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_balloc.c#6 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_bmap.c#6 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_dinode.h#8 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_dir.h#5 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_inode.c#9 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_inode_cnv.c#6 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_lookup.c#8 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_vfsops.c#11 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_vnops.c#8 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2fs.h#8 integrate .. //depot/projects/smpng/sys/fs/ext2fs/fs.h#5 integrate .. //depot/projects/smpng/sys/fs/ext2fs/inode.h#8 integrate .. //depot/projects/smpng/sys/fs/fdescfs/fdesc_vnops.c#42 integrate .. //depot/projects/smpng/sys/fs/msdosfs/msdosfs_denode.c#41 integrate .. //depot/projects/smpng/sys/fs/msdosfs/msdosfs_vnops.c#58 integrate .. //depot/projects/smpng/sys/fs/nandfs/nandfs_segment.c#3 integrate .. //depot/projects/smpng/sys/fs/nandfs/nandfs_vnops.c#3 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clport.c#18 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clvnops.c#28 integrate .. //depot/projects/smpng/sys/fs/nfsserver/nfs_nfsdport.c#30 integrate .. //depot/projects/smpng/sys/fs/nullfs/null.h#11 integrate .. //depot/projects/smpng/sys/fs/nullfs/null_subr.c#26 integrate .. //depot/projects/smpng/sys/fs/nullfs/null_vfsops.c#38 integrate .. //depot/projects/smpng/sys/fs/nullfs/null_vnops.c#51 integrate .. //depot/projects/smpng/sys/fs/procfs/procfs_map.c#23 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs.h#16 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs_io.c#41 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs_vfsops.c#47 integrate .. //depot/projects/smpng/sys/fs/tmpfs/tmpfs_subr.c#23 integrate .. //depot/projects/smpng/sys/fs/tmpfs/tmpfs_vnops.c#28 integrate .. //depot/projects/smpng/sys/geom/geom_disk.c#70 integrate .. //depot/projects/smpng/sys/geom/geom_dump.c#30 integrate .. //depot/projects/smpng/sys/geom/geom_flashmap.c#4 integrate .. //depot/projects/smpng/sys/geom/label/g_label_ntfs.c#9 integrate .. //depot/projects/smpng/sys/geom/part/g_part.c#44 integrate .. //depot/projects/smpng/sys/geom/part/g_part_ebr.c#18 integrate .. //depot/projects/smpng/sys/geom/part/g_part_gpt.c#26 integrate .. //depot/projects/smpng/sys/geom/part/g_part_ldm.c#4 integrate .. //depot/projects/smpng/sys/geom/part/g_part_mbr.c#21 integrate .. //depot/projects/smpng/sys/geom/part/g_part_pc98.c#17 integrate .. //depot/projects/smpng/sys/geom/raid/md_ddf.c#5 integrate .. //depot/projects/smpng/sys/i386/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/i386/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/i386/conf/GENERIC#135 integrate .. //depot/projects/smpng/sys/i386/conf/NOTES#162 integrate .. //depot/projects/smpng/sys/i386/i386/exception.s#36 integrate .. //depot/projects/smpng/sys/i386/i386/machdep.c#180 integrate .. //depot/projects/smpng/sys/i386/i386/mp_machdep.c#147 integrate .. //depot/projects/smpng/sys/i386/i386/pmap.c#167 integrate .. //depot/projects/smpng/sys/i386/i386/trap.c#139 integrate .. //depot/projects/smpng/sys/i386/i386/vm_machdep.c#106 integrate .. //depot/projects/smpng/sys/i386/include/fdt.h#1 branch .. //depot/projects/smpng/sys/i386/include/metadata.h#5 integrate .. //depot/projects/smpng/sys/i386/include/ofw_machdep.h#1 branch .. //depot/projects/smpng/sys/i386/include/param.h#31 integrate .. //depot/projects/smpng/sys/i386/include/vmparam.h#23 integrate .. //depot/projects/smpng/sys/i386/include/xen/xen-os.h#8 integrate .. //depot/projects/smpng/sys/i386/include/xen/xenvar.h#9 integrate .. //depot/projects/smpng/sys/i386/xen/mp_machdep.c#27 integrate .. //depot/projects/smpng/sys/i386/xen/pmap.c#31 integrate .. //depot/projects/smpng/sys/i386/xen/xen_machdep.c#16 integrate .. //depot/projects/smpng/sys/ia64/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/ia64/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/ia64/conf/GENERIC#81 integrate .. //depot/projects/smpng/sys/ia64/ia64/pmap.c#111 integrate .. //depot/projects/smpng/sys/ia64/include/param.h#30 integrate .. //depot/projects/smpng/sys/ia64/include/vmparam.h#24 integrate .. //depot/projects/smpng/sys/kern/init_sysent.c#109 integrate .. //depot/projects/smpng/sys/kern/kern_alq.c#25 integrate .. //depot/projects/smpng/sys/kern/kern_cpuset.c#17 integrate .. //depot/projects/smpng/sys/kern/kern_descrip.c#146 integrate .. //depot/projects/smpng/sys/kern/kern_event.c#71 integrate .. //depot/projects/smpng/sys/kern/kern_exec.c#146 integrate .. //depot/projects/smpng/sys/kern/kern_hhook.c#5 integrate .. //depot/projects/smpng/sys/kern/kern_jail.c#94 integrate .. //depot/projects/smpng/sys/kern/kern_khelp.c#4 integrate .. //depot/projects/smpng/sys/kern/kern_lock.c#92 integrate .. //depot/projects/smpng/sys/kern/kern_mbuf.c#39 integrate .. //depot/projects/smpng/sys/kern/kern_poll.c#41 integrate .. //depot/projects/smpng/sys/kern/kern_priv.c#10 integrate .. //depot/projects/smpng/sys/kern/kern_rwlock.c#38 integrate .. //depot/projects/smpng/sys/kern/kern_umtx.c#52 integrate .. //depot/projects/smpng/sys/kern/subr_bus_dma.c#2 integrate .. //depot/projects/smpng/sys/kern/subr_pctrie.c#1 branch .. //depot/projects/smpng/sys/kern/subr_sbuf.c#23 integrate .. //depot/projects/smpng/sys/kern/subr_witness.c#195 integrate .. //depot/projects/smpng/sys/kern/sys_capability.c#9 integrate .. //depot/projects/smpng/sys/kern/syscalls.c#108 integrate .. //depot/projects/smpng/sys/kern/syscalls.master#115 integrate .. //depot/projects/smpng/sys/kern/systrace_args.c#33 integrate .. //depot/projects/smpng/sys/kern/uipc_sem.c#39 integrate .. //depot/projects/smpng/sys/kern/uipc_sockbuf.c#22 integrate .. //depot/projects/smpng/sys/kern/uipc_socket.c#152 integrate .. //depot/projects/smpng/sys/kern/uipc_syscalls.c#143 integrate .. //depot/projects/smpng/sys/kern/uipc_usrreq.c#103 integrate .. //depot/projects/smpng/sys/kern/vfs_aio.c#94 integrate .. //depot/projects/smpng/sys/kern/vfs_bio.c#146 integrate .. //depot/projects/smpng/sys/kern/vfs_cluster.c#58 integrate .. //depot/projects/smpng/sys/kern/vfs_default.c#79 integrate .. //depot/projects/smpng/sys/kern/vfs_mount.c#116 integrate .. //depot/projects/smpng/sys/kern/vfs_subr.c#196 integrate .. //depot/projects/smpng/sys/kern/vfs_syscalls.c#174 integrate .. //depot/projects/smpng/sys/kern/vfs_vnops.c#118 integrate .. //depot/projects/smpng/sys/mips/cavium/octe/ethernet-common.c#9 integrate .. //depot/projects/smpng/sys/mips/cavium/octe/wrapper-cvmx-includes.h#6 integrate .. //depot/projects/smpng/sys/mips/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/mips/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/mips/conf/CARAMBOLA2#1 branch .. //depot/projects/smpng/sys/mips/conf/CARAMBOLA2.hints#1 branch .. //depot/projects/smpng/sys/mips/conf/OCTEON1#15 integrate .. //depot/projects/smpng/sys/mips/conf/ROUTERSTATION#4 integrate .. //depot/projects/smpng/sys/mips/conf/ROUTERSTATION.hints#3 integrate .. //depot/projects/smpng/sys/mips/include/param.h#18 integrate .. //depot/projects/smpng/sys/mips/include/vmparam.h#13 integrate .. //depot/projects/smpng/sys/mips/mips/bus_space_fdt.c#2 integrate .. //depot/projects/smpng/sys/mips/mips/bus_space_generic.c#7 integrate .. //depot/projects/smpng/sys/mips/mips/db_trace.c#9 integrate .. //depot/projects/smpng/sys/mips/mips/mp_machdep.c#20 integrate .. //depot/projects/smpng/sys/mips/mips/pmap.c#40 integrate .. //depot/projects/smpng/sys/mips/mips/stack_machdep.c#4 integrate .. //depot/projects/smpng/sys/mips/mips/stdatomic.c#1 branch .. //depot/projects/smpng/sys/modules/Makefile#195 integrate .. //depot/projects/smpng/sys/modules/aacraid/Makefile#1 branch .. //depot/projects/smpng/sys/modules/aacraid/Makefile.inc#1 branch .. //depot/projects/smpng/sys/modules/aacraid/aacraid_linux/Makefile#1 branch .. //depot/projects/smpng/sys/modules/acpi/acpi/Makefile#37 integrate .. //depot/projects/smpng/sys/modules/acpi/acpi_rapidstart/Makefile#1 branch .. //depot/projects/smpng/sys/modules/ata/atacbus/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/ath/Makefile#21 integrate .. //depot/projects/smpng/sys/modules/cam/Makefile#23 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtrace_test/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/filemon/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/ixgbe/Makefile#13 integrate .. //depot/projects/smpng/sys/modules/linux/Makefile#33 integrate .. //depot/projects/smpng/sys/modules/qlxgbe/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/Makefile#30 integrate .. //depot/projects/smpng/sys/modules/usb/urtwn/Makefile#1 branch .. //depot/projects/smpng/sys/net/bpf.c#106 integrate .. //depot/projects/smpng/sys/net/if.c#150 integrate .. //depot/projects/smpng/sys/net/if_ethersubr.c#119 integrate .. //depot/projects/smpng/sys/net/if_gre.c#51 integrate .. //depot/projects/smpng/sys/net/if_lagg.c#30 integrate .. //depot/projects/smpng/sys/net/if_llatbl.c#20 integrate .. //depot/projects/smpng/sys/net/if_llatbl.h#17 integrate .. //depot/projects/smpng/sys/net/if_var.h#86 integrate .. //depot/projects/smpng/sys/net/if_vlan.c#84 integrate .. //depot/projects/smpng/sys/net/netmap.h#6 integrate .. //depot/projects/smpng/sys/net/netmap_user.h#7 integrate .. //depot/projects/smpng/sys/net/ppp_defs.h#4 integrate .. //depot/projects/smpng/sys/net/route.c#67 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_ht.c#23 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_ioctl.c#58 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_output.c#58 integrate .. //depot/projects/smpng/sys/net80211/ieee80211_var.h#58 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c#9 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c#9 integrate .. //depot/projects/smpng/sys/netinet/icmp6.h#22 integrate .. //depot/projects/smpng/sys/netinet/if_ether.c#100 integrate .. //depot/projects/smpng/sys/netinet/igmp.c#47 integrate .. //depot/projects/smpng/sys/netinet/in_pcb.h#79 integrate .. //depot/projects/smpng/sys/netinet/in_var.h#37 integrate .. //depot/projects/smpng/sys/netinet/ip_gre.c#24 integrate .. //depot/projects/smpng/sys/netinet/ip_id.c#13 integrate .. //depot/projects/smpng/sys/netinet/ip_input.c#125 integrate .. //depot/projects/smpng/sys/netinet/sctp_os_bsd.h#39 integrate .. //depot/projects/smpng/sys/netinet/sctp_output.c#57 integrate .. //depot/projects/smpng/sys/netinet/sctp_pcb.c#57 integrate .. //depot/projects/smpng/sys/netinet/sctputil.c#58 integrate .. //depot/projects/smpng/sys/netinet/tcp_input.c#151 integrate .. //depot/projects/smpng/sys/netinet/tcp_output.c#82 integrate .. //depot/projects/smpng/sys/netinet/tcp_subr.c#139 integrate .. //depot/projects/smpng/sys/netinet/tcp_var.h#90 integrate .. //depot/projects/smpng/sys/netinet6/in6.c#86 integrate .. //depot/projects/smpng/sys/netinet6/in6_ifattach.c#49 integrate .. //depot/projects/smpng/sys/netinet6/in6_ifattach.h#7 integrate .. //depot/projects/smpng/sys/netinet6/in6_proto.c#46 integrate .. //depot/projects/smpng/sys/netinet6/ip6_output.c#84 integrate .. //depot/projects/smpng/sys/netinet6/sctp6_usrreq.c#31 integrate .. //depot/projects/smpng/sys/netpfil/ipfw/ip_fw2.c#4 integrate .. //depot/projects/smpng/sys/netpfil/pf/if_pfsync.c#4 integrate .. //depot/projects/smpng/sys/netpfil/pf/pf.c#4 integrate .. //depot/projects/smpng/sys/netpfil/pf/pf_ioctl.c#3 integrate .. //depot/projects/smpng/sys/netsmb/smb_conn.c#24 integrate .. //depot/projects/smpng/sys/netsmb/smb_conn.h#15 integrate .. //depot/projects/smpng/sys/netsmb/smb_dev.c#32 integrate .. //depot/projects/smpng/sys/netsmb/smb_dev.h#7 integrate .. //depot/projects/smpng/sys/netsmb/smb_trantcp.c#28 integrate .. //depot/projects/smpng/sys/nfsclient/nfs_subs.c#51 integrate .. //depot/projects/smpng/sys/nfsclient/nfs_vnops.c#111 integrate .. //depot/projects/smpng/sys/nfsserver/nfs_serv.c#80 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/eq.c#2 integrate .. //depot/projects/smpng/sys/ofed/include/linux/fs.h#2 integrate .. //depot/projects/smpng/sys/ofed/include/linux/linux_compat.c#5 integrate .. //depot/projects/smpng/sys/ofed/include/linux/workqueue.h#3 integrate .. //depot/projects/smpng/sys/pc98/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/pc98/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/pc98/pc98/machdep.c#58 integrate .. //depot/projects/smpng/sys/powerpc/aim/mmu_oea.c#31 integrate .. //depot/projects/smpng/sys/powerpc/aim/mmu_oea64.c#28 integrate .. //depot/projects/smpng/sys/powerpc/booke/pmap.c#33 integrate .. //depot/projects/smpng/sys/powerpc/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/powerpc/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/powerpc/include/gdb_machdep.h#4 integrate .. //depot/projects/smpng/sys/powerpc/include/param.h#25 integrate .. //depot/projects/smpng/sys/powerpc/include/pcpu.h#24 integrate .. //depot/projects/smpng/sys/powerpc/include/vmparam.h#24 integrate .. //depot/projects/smpng/sys/powerpc/powermac/smu.c#13 integrate .. //depot/projects/smpng/sys/powerpc/powerpc/busdma_machdep.c#31 integrate .. //depot/projects/smpng/sys/powerpc/wii/wii_gpio.c#4 integrate .. //depot/projects/smpng/sys/powerpc/wii/wii_gpioreg.h#3 integrate .. //depot/projects/smpng/sys/security/mac/mac_process.c#26 integrate .. //depot/projects/smpng/sys/sparc64/compile/.cvsignore#2 delete .. //depot/projects/smpng/sys/sparc64/conf/.cvsignore#2 delete .. //depot/projects/smpng/sys/sparc64/include/atomic.h#23 integrate .. //depot/projects/smpng/sys/sparc64/include/param.h#27 integrate .. //depot/projects/smpng/sys/sparc64/include/vmparam.h#28 integrate .. //depot/projects/smpng/sys/sparc64/sparc64/mp_machdep.c#53 integrate .. //depot/projects/smpng/sys/sparc64/sparc64/pmap.c#106 integrate .. //depot/projects/smpng/sys/sys/_bitset.h#1 branch .. //depot/projects/smpng/sys/sys/_cpuset.h#4 integrate .. //depot/projects/smpng/sys/sys/_pctrie.h#1 branch .. //depot/projects/smpng/sys/sys/_types.h#20 integrate .. //depot/projects/smpng/sys/sys/aio.h#11 integrate .. //depot/projects/smpng/sys/sys/bitset.h#1 branch .. //depot/projects/smpng/sys/sys/buf.h#64 integrate .. //depot/projects/smpng/sys/sys/bufobj.h#13 integrate .. //depot/projects/smpng/sys/sys/cdefs.h#54 integrate .. //depot/projects/smpng/sys/sys/cpuset.h#11 integrate .. //depot/projects/smpng/sys/sys/errno.h#16 integrate .. //depot/projects/smpng/sys/sys/hhook.h#4 integrate .. //depot/projects/smpng/sys/sys/ksem.h#4 integrate .. //depot/projects/smpng/sys/sys/lock.h#60 integrate .. //depot/projects/smpng/sys/sys/lockmgr.h#32 integrate .. //depot/projects/smpng/sys/sys/mbuf.h#95 integrate .. //depot/projects/smpng/sys/sys/module_khelp.h#4 integrate .. //depot/projects/smpng/sys/sys/mount.h#90 integrate .. //depot/projects/smpng/sys/sys/mutex.h#85 integrate .. //depot/projects/smpng/sys/sys/param.h#182 integrate .. //depot/projects/smpng/sys/sys/pctrie.h#1 branch .. //depot/projects/smpng/sys/sys/proc.h#227 integrate .. //depot/projects/smpng/sys/sys/queue.h#28 integrate .. //depot/projects/smpng/sys/sys/sdt.h#8 integrate .. //depot/projects/smpng/sys/sys/socket.h#43 integrate .. //depot/projects/smpng/sys/sys/socketvar.h#73 integrate .. //depot/projects/smpng/sys/sys/stdatomic.h#1 branch .. //depot/projects/smpng/sys/sys/syscall.h#107 integrate .. //depot/projects/smpng/sys/sys/syscall.mk#107 integrate .. //depot/projects/smpng/sys/sys/sysproto.h#112 integrate .. //depot/projects/smpng/sys/sys/time.h#37 integrate .. //depot/projects/smpng/sys/sys/timex.h#6 integrate .. //depot/projects/smpng/sys/sys/ucontext.h#13 integrate .. //depot/projects/smpng/sys/sys/user.h#51 integrate .. //depot/projects/smpng/sys/ufs/ffs/ffs_balloc.c#28 integrate .. //depot/projects/smpng/sys/ufs/ffs/ffs_inode.c#43 integrate .. //depot/projects/smpng/sys/ufs/ffs/ffs_snapshot.c#84 integrate .. //depot/projects/smpng/sys/ufs/ffs/ffs_softdep.c#98 integrate .. //depot/projects/smpng/sys/ufs/ffs/ffs_vfsops.c#133 integrate .. //depot/projects/smpng/sys/vm/swap_pager.c#98 integrate .. //depot/projects/smpng/sys/vm/uma.h#32 integrate .. //depot/projects/smpng/sys/vm/uma_core.c#96 integrate .. //depot/projects/smpng/sys/vm/uma_dbg.c#19 integrate .. //depot/projects/smpng/sys/vm/uma_int.h#40 integrate .. //depot/projects/smpng/sys/vm/vm_extern.h#47 integrate .. //depot/projects/smpng/sys/vm/vm_fault.c#94 integrate .. //depot/projects/smpng/sys/vm/vm_glue.c#80 integrate .. //depot/projects/smpng/sys/vm/vm_map.c#124 integrate .. //depot/projects/smpng/sys/vm/vm_mmap.c#99 integrate .. //depot/projects/smpng/sys/vm/vm_object.c#129 integrate .. //depot/projects/smpng/sys/vm/vm_object.h#51 integrate .. //depot/projects/smpng/sys/vm/vm_page.c#134 integrate .. //depot/projects/smpng/sys/vm/vm_page.h#65 integrate .. //depot/projects/smpng/sys/vm/vm_pageout.c#95 integrate .. //depot/projects/smpng/sys/vm/vm_phys.c#19 integrate .. //depot/projects/smpng/sys/vm/vm_phys.h#10 integrate .. //depot/projects/smpng/sys/vm/vm_radix.c#2 integrate .. //depot/projects/smpng/sys/vm/vm_reserv.c#14 integrate .. //depot/projects/smpng/sys/vm/vm_reserv.h#6 integrate .. //depot/projects/smpng/sys/x86/acpica/srat.c#6 integrate .. //depot/projects/smpng/sys/x86/cpufreq/p4tcc.c#4 integrate .. //depot/projects/smpng/sys/x86/include/fdt.h#1 branch .. //depot/projects/smpng/sys/x86/include/ofw_machdep.h#1 branch .. //depot/projects/smpng/sys/x86/x86/busdma_machdep.c#9 integrate .. //depot/projects/smpng/sys/x86/x86/fdt_machdep.c#1 branch .. //depot/projects/smpng/sys/x86/x86/local_apic.c#18 integrate .. //depot/projects/smpng/sys/xen/evtchn/evtchn.c#12 integrate .. //depot/projects/smpng/sys/xen/hvm.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-arm.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-arm/hvm/save.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-ia64.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/arch-ia64/debug_op.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-ia64/hvm/memmap.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-ia64/hvm/save.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-ia64/sioemu.h#1 branch .. //depot/projects/smpng/sys/xen/interface/arch-x86/cpuid.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86/hvm/save.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86/xen-mca.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86/xen-x86_32.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86/xen-x86_64.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86/xen.h#4 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86_32.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/arch-x86_64.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/domctl.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/elfnote.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/event_channel.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/features.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/foreign/structs.py#3 integrate .. //depot/projects/smpng/sys/xen/interface/grant_table.h#4 integrate .. //depot/projects/smpng/sys/xen/interface/hvm/hvm_info_table.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/hvm/hvm_op.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/hvm/ioreq.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/hvm/params.h#5 integrate .. //depot/projects/smpng/sys/xen/interface/hvm/save.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/hvm/vmx_assist.h#2 delete .. //depot/projects/smpng/sys/xen/interface/io/blkif.h#5 integrate .. //depot/projects/smpng/sys/xen/interface/io/fsif.h#1 branch .. //depot/projects/smpng/sys/xen/interface/io/libxenvchan.h#1 branch .. //depot/projects/smpng/sys/xen/interface/io/netif.h#4 integrate .. //depot/projects/smpng/sys/xen/interface/io/pciif.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/io/protocols.h#4 integrate .. //depot/projects/smpng/sys/xen/interface/io/ring.h#4 integrate .. //depot/projects/smpng/sys/xen/interface/io/usbif.h#1 branch .. //depot/projects/smpng/sys/xen/interface/io/vscsiif.h#1 branch .. //depot/projects/smpng/sys/xen/interface/io/xs_wire.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/kexec.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/mem_event.h#1 branch .. //depot/projects/smpng/sys/xen/interface/memory.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/nmi.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/physdev.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/platform.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/sched.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/sysctl.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/tmem.h#1 branch .. //depot/projects/smpng/sys/xen/interface/trace.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/vcpu.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/version.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/xen-compat.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/xen.h#3 integrate .. //depot/projects/smpng/sys/xen/interface/xenoprof.h#2 integrate .. //depot/projects/smpng/sys/xen/interface/xsm/flask_op.h#1 branch .. //depot/projects/smpng/sys/xen/xenbus/xenbusb.c#6 integrate .. //depot/projects/smpng/sys/xen/xenstore/xenstore.c#8 integrate Differences ... ==== //depot/projects/smpng/share/man/man9/Makefile#34 (text+ko) ==== @@ -1,4 +1,4 @@ >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Wed Jun 19 15:57:21 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2B156113; Wed, 19 Jun 2013 15:57:21 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E17CD111 for ; Wed, 19 Jun 2013 15:57:20 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id C37011BE0 for ; Wed, 19 Jun 2013 15:57:20 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JFvKfx022519 for ; Wed, 19 Jun 2013 15:57:20 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JFvKAO022516 for perforce@freebsd.org; Wed, 19 Jun 2013 15:57:20 GMT (envelope-from jhb@freebsd.org) Date: Wed, 19 Jun 2013 15:57:20 GMT Message-Id: <201306191557.r5JFvKAO022516@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 229956 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 15:57:21 -0000 http://p4web.freebsd.org/@@229956?ac=10 Change 229956 by jhb@jhb_jhbbsd on 2013/06/19 15:56:44 Pull in src/include as well. Affected files ... .. //depot/projects/stdio_file/include/Makefile#1 branch .. //depot/projects/stdio_file/include/_ctype.h#1 branch .. //depot/projects/stdio_file/include/a.out.h#1 branch .. //depot/projects/stdio_file/include/ar.h#1 branch .. //depot/projects/stdio_file/include/arpa/Makefile#1 branch .. //depot/projects/stdio_file/include/arpa/ftp.h#1 branch .. //depot/projects/stdio_file/include/arpa/inet.h#1 branch .. //depot/projects/stdio_file/include/arpa/nameser.h#1 branch .. //depot/projects/stdio_file/include/arpa/nameser_compat.h#1 branch .. //depot/projects/stdio_file/include/arpa/telnet.h#1 branch .. //depot/projects/stdio_file/include/arpa/tftp.h#1 branch .. //depot/projects/stdio_file/include/assert.h#1 branch .. //depot/projects/stdio_file/include/bitstring.h#1 branch .. //depot/projects/stdio_file/include/complex.h#1 branch .. //depot/projects/stdio_file/include/cpio.h#1 branch .. //depot/projects/stdio_file/include/ctype.h#1 branch .. //depot/projects/stdio_file/include/db.h#1 branch .. //depot/projects/stdio_file/include/dirent.h#1 branch .. //depot/projects/stdio_file/include/dlfcn.h#1 branch .. //depot/projects/stdio_file/include/elf-hints.h#1 branch .. //depot/projects/stdio_file/include/elf.h#1 branch .. //depot/projects/stdio_file/include/err.h#1 branch .. //depot/projects/stdio_file/include/fmtmsg.h#1 branch .. //depot/projects/stdio_file/include/fnmatch.h#1 branch .. //depot/projects/stdio_file/include/fstab.h#1 branch .. //depot/projects/stdio_file/include/fts.h#1 branch .. //depot/projects/stdio_file/include/ftw.h#1 branch .. //depot/projects/stdio_file/include/getopt.h#1 branch .. //depot/projects/stdio_file/include/glob.h#1 branch .. //depot/projects/stdio_file/include/grp.h#1 branch .. //depot/projects/stdio_file/include/gssapi.h#1 branch .. //depot/projects/stdio_file/include/gssapi/Makefile#1 branch .. //depot/projects/stdio_file/include/gssapi/gssapi.h#1 branch .. //depot/projects/stdio_file/include/hesiod.h#1 branch .. //depot/projects/stdio_file/include/iconv.h#1 branch .. //depot/projects/stdio_file/include/ieeefp.h#1 branch .. //depot/projects/stdio_file/include/ifaddrs.h#1 branch .. //depot/projects/stdio_file/include/inttypes.h#1 branch .. //depot/projects/stdio_file/include/iso646.h#1 branch .. //depot/projects/stdio_file/include/kenv.h#1 branch .. //depot/projects/stdio_file/include/langinfo.h#1 branch .. //depot/projects/stdio_file/include/libgen.h#1 branch .. //depot/projects/stdio_file/include/limits.h#1 branch .. //depot/projects/stdio_file/include/link.h#1 branch .. //depot/projects/stdio_file/include/locale.h#1 branch .. //depot/projects/stdio_file/include/malloc.h#1 branch .. //depot/projects/stdio_file/include/malloc_np.h#1 branch .. //depot/projects/stdio_file/include/memory.h#1 branch .. //depot/projects/stdio_file/include/monetary.h#1 branch .. //depot/projects/stdio_file/include/mpool.h#1 branch .. //depot/projects/stdio_file/include/mqueue.h#1 branch .. //depot/projects/stdio_file/include/ndbm.h#1 branch .. //depot/projects/stdio_file/include/netconfig.h#1 branch .. //depot/projects/stdio_file/include/netdb.h#1 branch .. //depot/projects/stdio_file/include/nl_types.h#1 branch .. //depot/projects/stdio_file/include/nlist.h#1 branch .. //depot/projects/stdio_file/include/nss.h#1 branch .. //depot/projects/stdio_file/include/nsswitch.h#1 branch .. //depot/projects/stdio_file/include/paths.h#1 branch .. //depot/projects/stdio_file/include/printf.h#1 branch .. //depot/projects/stdio_file/include/proc_service.h#1 branch .. //depot/projects/stdio_file/include/protocols/Makefile#1 branch .. //depot/projects/stdio_file/include/protocols/dumprestore.h#1 branch .. //depot/projects/stdio_file/include/protocols/routed.h#1 branch .. //depot/projects/stdio_file/include/protocols/rwhod.h#1 branch .. //depot/projects/stdio_file/include/protocols/talkd.h#1 branch .. //depot/projects/stdio_file/include/protocols/timed.h#1 branch .. //depot/projects/stdio_file/include/pthread.h#1 branch .. //depot/projects/stdio_file/include/pthread_np.h#1 branch .. //depot/projects/stdio_file/include/pwd.h#1 branch .. //depot/projects/stdio_file/include/ranlib.h#1 branch .. //depot/projects/stdio_file/include/readpassphrase.h#1 branch .. //depot/projects/stdio_file/include/regex.h#1 branch .. //depot/projects/stdio_file/include/res_update.h#1 branch .. //depot/projects/stdio_file/include/resolv.h#1 branch .. //depot/projects/stdio_file/include/rpc/Makefile#1 branch .. //depot/projects/stdio_file/include/rpc/auth.h#1 branch .. //depot/projects/stdio_file/include/rpc/auth_des.h#1 branch .. //depot/projects/stdio_file/include/rpc/auth_kerb.h#1 branch .. //depot/projects/stdio_file/include/rpc/auth_unix.h#1 branch .. //depot/projects/stdio_file/include/rpc/clnt.h#1 branch .. //depot/projects/stdio_file/include/rpc/clnt_soc.h#1 branch .. //depot/projects/stdio_file/include/rpc/clnt_stat.h#1 branch .. //depot/projects/stdio_file/include/rpc/des.h#1 branch .. //depot/projects/stdio_file/include/rpc/des_crypt.h#1 branch .. //depot/projects/stdio_file/include/rpc/nettype.h#1 branch .. //depot/projects/stdio_file/include/rpc/pmap_clnt.h#1 branch .. //depot/projects/stdio_file/include/rpc/pmap_prot.h#1 branch .. //depot/projects/stdio_file/include/rpc/pmap_rmt.h#1 branch .. //depot/projects/stdio_file/include/rpc/raw.h#1 branch .. //depot/projects/stdio_file/include/rpc/rpc.h#1 branch .. //depot/projects/stdio_file/include/rpc/rpc_com.h#1 branch .. //depot/projects/stdio_file/include/rpc/rpc_msg.h#1 branch .. //depot/projects/stdio_file/include/rpc/rpcb_clnt.h#1 branch .. //depot/projects/stdio_file/include/rpc/rpcb_prot.x#1 branch .. //depot/projects/stdio_file/include/rpc/rpcent.h#1 branch .. //depot/projects/stdio_file/include/rpc/rpcsec_gss.h#1 branch .. //depot/projects/stdio_file/include/rpc/svc.h#1 branch .. //depot/projects/stdio_file/include/rpc/svc_auth.h#1 branch .. //depot/projects/stdio_file/include/rpc/svc_dg.h#1 branch .. //depot/projects/stdio_file/include/rpc/svc_soc.h#1 branch .. //depot/projects/stdio_file/include/rpc/xdr.h#1 branch .. //depot/projects/stdio_file/include/rpcsvc/Makefile#1 branch .. //depot/projects/stdio_file/include/rpcsvc/bootparam_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/crypt.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/key_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/klm_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/mount.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nfs_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nis.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nis_cache.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nis_callback.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nis_db.h#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nis_object.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nis_tags.h#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nislib.h#1 branch .. //depot/projects/stdio_file/include/rpcsvc/nlm_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/pmap_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/rex.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/rnusers.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/rquota.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/rstat.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/rwall.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/sm_inter.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/spray.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/yp.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/yp_prot.h#1 branch .. //depot/projects/stdio_file/include/rpcsvc/ypclnt.h#1 branch .. //depot/projects/stdio_file/include/rpcsvc/yppasswd.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/ypupdate_prot.x#1 branch .. //depot/projects/stdio_file/include/rpcsvc/ypxfrd.x#1 branch .. //depot/projects/stdio_file/include/runetype.h#1 branch .. //depot/projects/stdio_file/include/search.h#1 branch .. //depot/projects/stdio_file/include/semaphore.h#1 branch .. //depot/projects/stdio_file/include/setjmp.h#1 branch .. //depot/projects/stdio_file/include/signal.h#1 branch .. //depot/projects/stdio_file/include/spawn.h#1 branch .. //depot/projects/stdio_file/include/stab.h#1 branch .. //depot/projects/stdio_file/include/stdalign.h#1 branch .. //depot/projects/stdio_file/include/stdbool.h#1 branch .. //depot/projects/stdio_file/include/stddef.h#1 branch .. //depot/projects/stdio_file/include/stdio.h#1 branch .. //depot/projects/stdio_file/include/stdlib.h#1 branch .. //depot/projects/stdio_file/include/stdnoreturn.h#1 branch .. //depot/projects/stdio_file/include/string.h#1 branch .. //depot/projects/stdio_file/include/stringlist.h#1 branch .. //depot/projects/stdio_file/include/strings.h#1 branch .. //depot/projects/stdio_file/include/sysexits.h#1 branch .. //depot/projects/stdio_file/include/tar.h#1 branch .. //depot/projects/stdio_file/include/termios.h#1 branch .. //depot/projects/stdio_file/include/tgmath.h#1 branch .. //depot/projects/stdio_file/include/time.h#1 branch .. //depot/projects/stdio_file/include/timeconv.h#1 branch .. //depot/projects/stdio_file/include/timers.h#1 branch .. //depot/projects/stdio_file/include/ttyent.h#1 branch .. //depot/projects/stdio_file/include/uchar.h#1 branch .. //depot/projects/stdio_file/include/ulimit.h#1 branch .. //depot/projects/stdio_file/include/unistd.h#1 branch .. //depot/projects/stdio_file/include/unwind.h#1 branch .. //depot/projects/stdio_file/include/utime.h#1 branch .. //depot/projects/stdio_file/include/utmpx.h#1 branch .. //depot/projects/stdio_file/include/uuid.h#1 branch .. //depot/projects/stdio_file/include/varargs.h#1 branch .. //depot/projects/stdio_file/include/wchar.h#1 branch .. //depot/projects/stdio_file/include/wctype.h#1 branch .. //depot/projects/stdio_file/include/wordexp.h#1 branch .. //depot/projects/stdio_file/include/xlocale.h#1 branch .. //depot/projects/stdio_file/include/xlocale/Makefile#1 branch .. //depot/projects/stdio_file/include/xlocale/_ctype.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_inttypes.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_langinfo.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_locale.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_monetary.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_stdio.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_stdlib.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_string.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_time.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_uchar.h#1 branch .. //depot/projects/stdio_file/include/xlocale/_wchar.h#1 branch Differences ... From owner-p4-projects@FreeBSD.ORG Wed Jun 19 16:01:26 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5C8F33C5; Wed, 19 Jun 2013 16:01:26 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1E36B3C3 for ; Wed, 19 Jun 2013 16:01:26 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0EE1B1C14 for ; Wed, 19 Jun 2013 16:01:26 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JG1Pe8023392 for ; Wed, 19 Jun 2013 16:01:25 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JG1Poa023389 for perforce@freebsd.org; Wed, 19 Jun 2013 16:01:25 GMT (envelope-from jhb@freebsd.org) Date: Wed, 19 Jun 2013 16:01:25 GMT Message-Id: <201306191601.r5JG1Poa023389@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 229958 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 16:01:26 -0000 http://p4web.freebsd.org/@@229958?ac=10 Change 229958 by jhb@jhb_jhbbsd on 2013/06/19 16:00:32 Base patch to expand _file to an int. Affected files ... .. //depot/projects/stdio_file/include/stdio.h#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/Symbol.map#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/fclose.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/fdopen.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/fileno.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/findfp.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/fopen.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/freopen.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/funopen.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/local.h#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/vdprintf.c#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/vfwprintf.c#2 edit Differences ... ==== //depot/projects/stdio_file/include/stdio.h#2 (text+ko) ==== @@ -112,7 +112,7 @@ int _r; /* (*) read space left for getc() */ int _w; /* (*) write space left for putc() */ short _flags; /* (*) flags, below; this FILE is free if 0 */ - short _file; /* (*) fileno, if Unix descriptor, else -1 */ + short _ofile; /* (*) compat fileno for old binaries */ struct __sbuf _bf; /* (*) the buffer (at least 1 byte, if !NULL) */ int _lbfsize; /* (*) 0 or -_bf._size, for inline putc */ @@ -144,6 +144,7 @@ int _fl_count; /* recursive lock count */ int _orientation; /* orientation for fwide() */ __mbstate_t _mbstate; /* multibyte conversion state */ + int _file; /* fileno, if Unix descriptor, else -1 */ }; #ifndef _STDFILE_DECLARED #define _STDFILE_DECLARED @@ -483,17 +484,12 @@ #define __sfeof(p) (((p)->_flags & __SEOF) != 0) #define __sferror(p) (((p)->_flags & __SERR) != 0) #define __sclearerr(p) ((void)((p)->_flags &= ~(__SERR|__SEOF))) -#define __sfileno(p) ((p)->_file) #define feof(p) (!__isthreaded ? __sfeof(p) : (feof)(p)) #define ferror(p) (!__isthreaded ? __sferror(p) : (ferror)(p)) #define clearerr(p) (!__isthreaded ? __sclearerr(p) : (clearerr)(p)) -#if __POSIX_VISIBLE -#define fileno(p) (!__isthreaded ? __sfileno(p) : (fileno)(p)) -#endif - #define getc(fp) (!__isthreaded ? __sgetc(fp) : (getc)(fp)) #define putc(x, fp) (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp)) @@ -508,7 +504,6 @@ #define feof_unlocked(p) __sfeof(p) #define ferror_unlocked(p) __sferror(p) #define clearerr_unlocked(p) __sclearerr(p) -#define fileno_unlocked(p) __sfileno(p) #endif #if __POSIX_VISIBLE >= 199506 #define getc_unlocked(fp) __sgetc(fp) ==== //depot/projects/stdio_file/lib/libc/stdio/Symbol.map#2 (text) ==== @@ -10,7 +10,6 @@ clearerr; fclose; fcloseall; - fdopen; feof; ferror; fflush; @@ -27,7 +26,6 @@ __stdoutp; __stderrp; f_prealloc; /* deprecated??? */ - fopen; fprintf; fpurge; fputc; @@ -35,7 +33,6 @@ fputwc; fputws; fread; - freopen; fscanf; fseek; fseeko; @@ -118,6 +115,9 @@ }; FBSD_1.3 { + fdopen; + fopen; + freopen; asprintf_l; fprintf_l; fwprintf_l; ==== //depot/projects/stdio_file/lib/libc/stdio/fclose.c#2 (text+ko) ==== @@ -65,6 +65,7 @@ if (HASLB(fp)) FREELB(fp); fp->_file = -1; + fp->_ofile = -1; fp->_r = fp->_w = 0; /* Mess up if reaccessed. */ /* ==== //depot/projects/stdio_file/lib/libc/stdio/fdopen.c#2 (text+ko) ==== @@ -52,18 +52,6 @@ FILE *fp; int flags, oflags, fdflags, tmp; - /* - * File descriptors are a full int, but _file is only a short. - * If we get a valid file descriptor that is greater than - * SHRT_MAX, then the fd will get sign-extended into an - * invalid file descriptor. Handle this case by failing the - * open. - */ - if (fd > SHRT_MAX) { - errno = EMFILE; - return (NULL); - } - if ((flags = __sflags(mode, &oflags)) == 0) return (NULL); @@ -93,6 +81,10 @@ if ((oflags & O_APPEND) && !(fdflags & O_APPEND)) fp->_flags |= __SAPP; fp->_file = fd; + if (fd > SHRT_MAX) + fp->_ofile = -1; + else + fp->_ofile = fd; fp->_cookie = fp; fp->_read = __sread; fp->_write = __swrite; @@ -100,3 +92,25 @@ fp->_close = __sclose; return (fp); } + +FILE * +fdopen_ofile(fd, mode) + int fd; + const char *mode; +{ + + /* + * File descriptors are a full int, but _ofile is only a short. + * If we get a valid file descriptor that is greater than + * SHRT_MAX, then the fd will get sign-extended into an + * invalid file descriptor. Handle this case by failing the + * open. + */ + if (fd > SHRT_MAX) { + errno = EMFILE; + return (NULL); + } + return (fdopen(fd, mode)); +} + +__sym_compat(fdopen, fdopen_ofile, FBSD_1.0); ==== //depot/projects/stdio_file/lib/libc/stdio/fileno.c#2 (text+ko) ==== @@ -50,7 +50,7 @@ int fd; FLOCKFILE(fp); - fd = __sfileno(fp); + fd = fp->_file; FUNLOCKFILE(fp); return (fd); @@ -60,5 +60,5 @@ fileno_unlocked(FILE *fp) { - return (__sfileno(fp)); + return (fp->_file); } ==== //depot/projects/stdio_file/lib/libc/stdio/findfp.c#2 (text+ko) ==== @@ -56,6 +56,7 @@ #define std(flags, file) { \ ._flags = (flags), \ ._file = (file), \ + ._ofile = (file), \ ._cookie = __sF + (file), \ ._close = __sclose, \ ._read = __sread, \ @@ -147,6 +148,7 @@ fp->_bf._size = 0; fp->_lbfsize = 0; /* not line buffered */ fp->_file = -1; /* no file */ + fp->_ofile = -1; /* fp->_cookie = ; */ /* caller sets cookie, _read/_write etc */ fp->_ub._base = NULL; /* no ungetc buffer */ fp->_ub._size = 0; ==== //depot/projects/stdio_file/lib/libc/stdio/fopen.c#2 (text+ko) ==== @@ -48,8 +48,9 @@ #include "local.h" -FILE * -fopen(const char * __restrict file, const char * __restrict mode) +static FILE * +fopen_internal(const char * __restrict file, const char * __restrict mode, + int ofile) { FILE *fp; int f; @@ -64,19 +65,23 @@ return (NULL); } /* - * File descriptors are a full int, but _file is only a short. + * File descriptors are a full int, but _ofile is only a short. * If we get a valid file descriptor that is greater than * SHRT_MAX, then the fd will get sign-extended into an * invalid file descriptor. Handle this case by failing the * open. */ - if (f > SHRT_MAX) { + if (f > SHRT_MAX && ofile) { fp->_flags = 0; /* release */ _close(f); errno = EMFILE; return (NULL); } fp->_file = f; + if (f > SHRT_MAX) + fp->_ofile = -1; + else + fp->_ofile = f; fp->_flags = flags; fp->_cookie = fp; fp->_read = __sread; @@ -95,3 +100,19 @@ (void)_sseek(fp, (fpos_t)0, SEEK_END); return (fp); } + +FILE * +fopen(const char * __restrict file, const char * __restrict mode) +{ + + return (fopen_internal(file, mode, 0)); +} + +FILE * +fopen_ofile(const char * __restrict file, const char * __restrict mode) +{ + + return (fopen_internal(file, mode, 1)); +} + +__sym_compat(fopen, fopen_ofile, FBSD_1.0); ==== //depot/projects/stdio_file/lib/libc/stdio/freopen.c#2 (text+ko) ==== @@ -54,9 +54,9 @@ * ANSI is written such that the original file gets closed if at * all possible, no matter what. */ -FILE * -freopen(const char * __restrict file, const char * __restrict mode, - FILE * __restrict fp) +static FILE * +freopen_internal(const char * __restrict file, const char * __restrict mode, + FILE * __restrict fp, int ofile) { int f; int dflags, flags, isopen, oflags, sverrno, wantfd; @@ -203,13 +203,13 @@ } /* - * File descriptors are a full int, but _file is only a short. + * File descriptors are a full int, but _ofile is only a short. * If we get a valid file descriptor that is greater than * SHRT_MAX, then the fd will get sign-extended into an * invalid file descriptor. Handle this case by failing the * open. */ - if (f > SHRT_MAX) { + if (f > SHRT_MAX && ofile) { fp->_flags = 0; /* set it free */ FUNLOCKFILE(fp); errno = EMFILE; @@ -218,6 +218,10 @@ fp->_flags = flags; fp->_file = f; + if (f > SHRT_MAX) + fp->_ofile = -1; + else + fp->_ofile = f; fp->_cookie = fp; fp->_read = __sread; fp->_write = __swrite; @@ -236,3 +240,21 @@ FUNLOCKFILE(fp); return (fp); } + +FILE * +freopen(const char * __restrict file, const char * __restrict mode, + FILE * __restrict fp) +{ + + return (freopen_internal(file, mode, fp, 0)); +} + +FILE * +freopen_ofile(const char * __restrict file, const char * __restrict mode, + FILE * __restrict fp) +{ + + return (freopen_internal(file, mode, fp, 1)); +} + +__sym_compat(freopen, freopen_ofile, FBSD_1.0); ==== //depot/projects/stdio_file/lib/libc/stdio/funopen.c#2 (text+ko) ==== @@ -67,6 +67,7 @@ return (NULL); fp->_flags = flags; fp->_file = -1; + fp->_ofile = -1; fp->_cookie = (void *)cookie; fp->_read = readfn; fp->_write = writefn; ==== //depot/projects/stdio_file/lib/libc/stdio/local.h#2 (text+ko) ==== @@ -128,6 +128,7 @@ #define FAKE_FILE { \ ._file = -1, \ ._fl_mutex = PTHREAD_MUTEX_INITIALIZER, \ + ._ofile = -1, \ } /* ==== //depot/projects/stdio_file/lib/libc/stdio/vdprintf.c#2 (text+ko) ==== @@ -49,11 +49,6 @@ unsigned char buf[BUFSIZ]; int ret; - if (fd > SHRT_MAX) { - errno = EMFILE; - return (EOF); - } - f._p = buf; f._w = sizeof(buf); f._flags = __SWR; ==== //depot/projects/stdio_file/lib/libc/stdio/vfwprintf.c#2 (text+ko) ==== @@ -215,7 +215,7 @@ __sbprintf(FILE *fp, locale_t locale, const wchar_t *fmt, va_list ap) { int ret; - FILE fake; + FILE fake = FAKE_FILE; unsigned char buf[BUFSIZ]; /* XXX This is probably not needed. */ From owner-p4-projects@FreeBSD.ORG Wed Jun 19 16:12:39 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 60FB9977; Wed, 19 Jun 2013 16:12:39 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 22F26975 for ; Wed, 19 Jun 2013 16:12:39 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id ED04D1C9C for ; Wed, 19 Jun 2013 16:12:38 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JGCc3J024741 for ; Wed, 19 Jun 2013 16:12:38 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JGCcgV024738 for perforce@freebsd.org; Wed, 19 Jun 2013 16:12:38 GMT (envelope-from jhb@freebsd.org) Date: Wed, 19 Jun 2013 16:12:38 GMT Message-Id: <201306191612.r5JGCcgV024738@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 229959 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 16:12:39 -0000 http://p4web.freebsd.org/@@229959?ac=10 Change 229959 by jhb@jhb_jhbbsd on 2013/06/19 16:12:00 Cope with Perl's misbehavior. The PERL_CORE hack isn't really suitable though and I should replace that by adding a fdisown(). Affected files ... .. //depot/projects/stdio_file/include/stdio.h#3 edit .. //depot/projects/stdio_file/lib/libc/stdio/Makefile.inc#2 edit .. //depot/projects/stdio_file/lib/libc/stdio/Symbol.map#3 edit .. //depot/projects/stdio_file/lib/libc/stdio/fclose.c#3 edit Differences ... ==== //depot/projects/stdio_file/include/stdio.h#3 (text+ko) ==== @@ -144,7 +144,10 @@ int _fl_count; /* recursive lock count */ int _orientation; /* orientation for fwide() */ __mbstate_t _mbstate; /* multibyte conversion state */ +/* XXX: PERL_CORE is a temporary hack. */ +#if defined(STDIO_INTERNALS) || defined(PERL_CORE) int _file; /* fileno, if Unix descriptor, else -1 */ +#endif }; #ifndef _STDFILE_DECLARED #define _STDFILE_DECLARED ==== //depot/projects/stdio_file/lib/libc/stdio/Makefile.inc#2 (text+ko) ==== @@ -4,6 +4,8 @@ # stdio sources .PATH: ${.CURDIR}/stdio +CFLAGS+= -DSTDIO_INTERNALS + SRCS+= _flock_stub.c asprintf.c clrerr.c dprintf.c \ fclose.c fcloseall.c fdopen.c \ feof.c ferror.c fflush.c fgetc.c fgetln.c fgetpos.c fgets.c fgetwc.c \ ==== //depot/projects/stdio_file/lib/libc/stdio/Symbol.map#3 (text) ==== @@ -8,7 +8,6 @@ funlockfile; asprintf; clearerr; - fclose; fcloseall; feof; ferror; @@ -115,6 +114,7 @@ }; FBSD_1.3 { + fclose; fdopen; fopen; freopen; ==== //depot/projects/stdio_file/lib/libc/stdio/fclose.c#3 (text+ko) ==== @@ -84,3 +84,20 @@ FUNLOCKFILE(fp); return (r); } + +int +fclose_ofile(FILE *fp) +{ + + /* + * Older versions of Perl used to set _file to -1 directly + * to prevent the underlying fd from being closed. Detect + * this by looking for a mismatch between _ofile and _file + * and force _file to -1 if _ofile is -1. + */ + if (fp->_ofile != fp->_file) + fp->_file = fp->_ofile; + return (fclose(fp)); +} + +__sym_compat(fclose, fclose_ofile, FBSD_1.0); From owner-p4-projects@FreeBSD.ORG Wed Jun 19 19:13:09 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DA2D955F; Wed, 19 Jun 2013 19:13:09 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9DC5655D for ; Wed, 19 Jun 2013 19:13:09 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8F47719CC for ; Wed, 19 Jun 2013 19:13:09 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JJD9uH048840 for ; Wed, 19 Jun 2013 19:13:09 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JJD9kU048835 for perforce@freebsd.org; Wed, 19 Jun 2013 19:13:09 GMT (envelope-from jhb@freebsd.org) Date: Wed, 19 Jun 2013 19:13:09 GMT Message-Id: <201306191913.r5JJD9kU048835@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 229968 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 19:13:10 -0000 http://p4web.freebsd.org/@@229968?ac=10 Change 229968 by jhb@jhb_jhbbsd on 2013/06/19 19:12:25 - Document RA_RECURSED/RA_NOTRECURSED for rwlocks. - Document rm_assert/rm_sleep in the jhb_lock branch. Affected files ... .. //depot/projects/smpng/share/man/man9/Makefile#35 edit .. //depot/projects/smpng/share/man/man9/rmlock.9#8 edit .. //depot/projects/smpng/share/man/man9/rwlock.9#5 edit Differences ... ==== //depot/projects/smpng/share/man/man9/Makefile#35 (text+ko) ==== @@ -1081,12 +1081,14 @@ rman.9 rman_set_bustag.9 \ rman.9 rman_set_rid.9 \ rman.9 rman_set_virtual.9 -MLINKS+=rmlock.9 rm_destroy.9 \ +MLINKS+=rmlock.9 rm_assert.9 \ + rmlock.9 rm_destroy.9 \ rmlock.9 rm_init.9 \ rmlock.9 rm_rlock.9 \ - rmlock.9 rm_try_rlock.9 \ rmlock.9 rm_runlock.9 \ + rmlock.9 rm_sleep.9 \ rmlock.9 RM_SYSINIT.9 \ + rmlock.9 rm_try_rlock.9 \ rmlock.9 rm_wlock.9 \ rmlock.9 rm_wowned.9 \ rmlock.9 rm_wunlock.9 ==== //depot/projects/smpng/share/man/man9/rmlock.9#8 (text+ko) ==== @@ -40,6 +40,8 @@ .Nm rm_runlock , .Nm rm_wunlock , .Nm rm_wowned , +.Nm rm_sleep , +.Nm rm_assert , .Nm RM_SYSINIT .Nd kernel reader/writer lock optimized for read-mostly access patterns .Sh SYNOPSIS @@ -64,6 +66,13 @@ .Fn rm_wunlock "struct rmlock *rm" .Ft int .Fn rm_wowned "const struct rmlock *rm" +.Ft int +.Fn rm_sleep "void *wchan" "struct rmlock *rm" "int priority" "const char *wmesg" "int timo" +.Pp +.Cd "options INVARIANTS" +.Cd "options INVARIANT_SUPPORT" +.Ft void +.Fn rm_assert "struct rmlock *rm" "int what" .In sys/kernel.h .Fn RM_SYSINIT "name" "struct rmlock *rm" "const char *desc" "int opts" .Sh DESCRIPTION @@ -215,12 +224,63 @@ This function returns a non-zero value if the current thread owns an exclusive lock on .Fa rm . +.It Fn rm_sleep "void *wchan" "struct rmlock *rm" "int priority" "const char *wmesg" "int timo" +This function atomically releases +.Fa rm +while waiting for an event. +The +.Fa rm +lock must be exclusively locked. +For more details on the parameters to this function, +see +.Xr sleep 9 . +.It Fn rm_assert "struct rmlock *rm" "int what" +This function asserts that the +.Fa rm +lock is in the state specified by +.Fa what . +If the assertions are not true and the kernel is compiled with +.Cd "options INVARIANTS" +and +.Cd "options INVARIANT_SUPPORT" , +the kernel will panic. +Currently the following base assertions are supported: +.Bl -tag -width ".Dv RA_UNLOCKED" +.It Dv RA_LOCKED +Assert that current thread holds either a shared or exclusive lock +of +.Fa rm . +.It Dv RA_RLOCKED +Assert that current thread holds a shared lock of +.Fa rm . +.It Dv RA_WLOCKED +Assert that current thread holds an exclusive lock of +.Fa rm . +.It Dv RA_UNLOCKED +Assert that current thread holds neither a shared nor exclusive lock of +.Fa rm . +.El +.Pp +In addition, one of the following optional flags may be specified with +.Dv RA_LOCKED , +.Dv RA_RLOCKED , +or +.Dv RA_WLOCKED : +.Bl -tag -width ".Dv RA_NOTRECURSED" +.It Dv RA_RECURSED +Assert that the current thread holds a recursive lock of +.Fa rm . +.It Dv RA_NOTRECURSED +Assert that the current thread does not hold a recursive lock of +.Fa rm . +.El .El .Sh SEE ALSO .Xr locking 9 , .Xr mutex 9 , .Xr panic 9 , .Xr rwlock 9 , +.Xr sleep 9 , .Xr sema 9 , .Xr sx 9 .Sh HISTORY @@ -252,8 +312,3 @@ rmlocks in the system. If rmlocks become popular, hashing to multiple per CPU queues may be needed to speed up the writer lock process. -.Pp -The -.Nm -can currently not be used as a lock argument for condition variable -wait functions. ==== //depot/projects/smpng/share/man/man9/rwlock.9#5 (text+ko) ==== @@ -254,7 +254,7 @@ and .Cd "options INVARIANT_SUPPORT" , the kernel will panic. -Currently the following assertions are supported: +Currently the following base assertions are supported: .Bl -tag -width ".Dv RA_UNLOCKED" .It Dv RA_LOCKED Assert that current thread holds either a shared or exclusive lock @@ -270,6 +270,20 @@ Assert that current thread holds neither a shared nor exclusive lock of .Fa rw . .El +.Pp +In addition, one of the following optional flags may be specified with +.Dv RA_LOCKED , +.Dv RA_RLOCKED , +or +.Dv RA_WLOCKED : +.Bl -tag -width ".Dv RA_NOTRECURSED" +.It Dv RA_RECURSED +Assert that the current thread holds a recursive lock of +.Fa rw . +.It Dv RA_NOTRECURSED +Assert that the current thread does not hold a recursive lock of +.Fa rw . +.El .El .Sh SEE ALSO .Xr locking 9 , From owner-p4-projects@FreeBSD.ORG Wed Jun 19 19:17:17 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8AD6C766; Wed, 19 Jun 2013 19:17:17 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1C74E764 for ; Wed, 19 Jun 2013 19:17:17 +0000 (UTC) (envelope-from brooks@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 09E6319F2 for ; Wed, 19 Jun 2013 19:17:17 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JJHGdh049898 for ; Wed, 19 Jun 2013 19:17:16 GMT (envelope-from brooks@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JJHDGh049892 for perforce@freebsd.org; Wed, 19 Jun 2013 19:17:13 GMT (envelope-from brooks@freebsd.org) Date: Wed, 19 Jun 2013 19:17:13 GMT Message-Id: <201306191917.r5JJHDGh049892@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to brooks@freebsd.org using -f From: Brooks Davis Subject: PERFORCE change 229969 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 19:17:17 -0000 http://p4web.freebsd.org/@@229969?ac=10 Change 229969 by brooks@brooks_zenith on 2013/06/19 19:16:58 Sync CheriBSD with FreeBSD/BERI. Includes FreeBSD security fixes and potential SMP support for BERI/CHERI. Affected files ... .. //depot/projects/ctsrd/cheribsd/src/Makefile#8 integrate .. //depot/projects/ctsrd/cheribsd/src/Makefile.inc1#11 integrate .. //depot/projects/ctsrd/cheribsd/src/ObsoleteFiles.inc#9 integrate .. //depot/projects/ctsrd/cheribsd/src/UPDATING#9 integrate .. //depot/projects/ctsrd/cheribsd/src/bin/sh/jobs.c#8 integrate .. //depot/projects/ctsrd/cheribsd/src/bin/sh/sh.1#8 integrate .. //depot/projects/ctsrd/cheribsd/src/bin/sleep/sleep.c#4 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c#5 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/cmd/zhack/zhack.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c#6 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/cmd/ztest/ztest.c#7 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c#7 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c#4 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c#5 integrate .. //depot/projects/ctsrd/cheribsd/src/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/CHANGES#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/LICENSE#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/Makefile.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/Makefile.win#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/NOTICE#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/README#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/apr-util.pc.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/apr-util.spec#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/aprutil.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/aprutil.dsw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/apu-config.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_brigade.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_alloc.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_eos.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_file.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_flush.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_heap.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_mmap.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_pipe.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_pool.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_refcount.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_simple.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buckets/apr_buckets_socket.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/build-outputs.mk#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/build.conf#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/buildconf#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/config.layout#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/configure#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/configure.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_crypto.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_crypto_nss.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_crypto_nss.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_crypto_openssl.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_crypto_openssl.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_md4.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_md5.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/apr_sha1.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/getuuid.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/crypto/uuid.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/NWGNUdbdfreetds#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/NWGNUdbdmysql#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/NWGNUdbdpgsql#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/NWGNUdbdsqli2#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/NWGNUdbdsqli3#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_freetds.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_freetds.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_mysql.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_mysql.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_odbc.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_odbc.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_oracle.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_oracle.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_pgsql.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_pgsql.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite2.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite2.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite3.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbd/apr_dbd_sqlite3.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/NWGNUdbmdb#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/NWGNUdbmgdbm#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm_berkeleydb.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm_db.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm_gdbm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm_gdbm.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm_ndbm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/apr_dbm_sdbm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm_hash.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm_lock.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm_pair.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm_pair.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm_private.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/dbm/sdbm/sdbm_tune.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/docs/doxygen.conf#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/encoding/apr_base64.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/export_vars.sh.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/hooks/apr_hooks.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_anylock.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_base64.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_buckets.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_crypto.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_date.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_dbd.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_dbm.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_hooks.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap.hnw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap.hw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap_init.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap_option.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap_rebind.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_ldap_url.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_md4.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_md5.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_memcache.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_optional.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_optional_hooks.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_queue.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_reslist.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_rmm.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_sdbm.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_sha1.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_strmatch.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_thread_pool.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_uri.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_uuid.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_xlate.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apr_xml.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu.hnw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu.hw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu_errno.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu_version.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu_want.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu_want.hnw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/apu_want.hw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apr_crypto_internal.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apr_dbd_internal.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apr_dbd_odbc_v2.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apr_dbm_private.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apu_config.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apu_config.hnw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apu_config.hw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apu_internal.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apu_select_dbm.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/include/private/apu_select_dbm.hw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/apr_ldap.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/apr_ldap_init.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/apr_ldap_option.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/apr_ldap_rebind.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/apr_ldap_stub.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/ldap/apr_ldap_url.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/libaprutil.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/libaprutil.rc#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/memcache/apr_memcache.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apr_date.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apr_queue.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apr_reslist.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apr_rmm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apr_thread_pool.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apu_dso.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/misc/apu_version.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/renames_pending#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/strmatch/apr_strmatch.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/Makefile.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/Makefile.win#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/NWGNUaputest#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/abts.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/abts.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/abts_tests.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/data/billion-laughs.xml#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/dbd.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/nw_misc.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/test_apu.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testall.dsw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testbuckets.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testcrypto.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testdate.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testdbd.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testdbm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testldap.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testmd4.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testmd5.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testmemcache.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testpass.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testqueue.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testreslist.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testrmm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testssl.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/teststrmatch.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testuri.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testutil.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testutil.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testutildll.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testutillib.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testuuid.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testxlate.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/test/testxml.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/uri/apr_uri.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/xlate/xlate.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/xml/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr-util/xml/apr_xml.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/CHANGES#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/LICENSE#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/Makefile.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/Makefile.win#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/NOTICE#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/NWGNUmakefile#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/README#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr-config.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr.dep#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr.dsw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr.mak#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr.pc.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/apr.spec#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/atomic/unix/builtins.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/atomic/unix/ia32.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/atomic/unix/mutex.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/atomic/unix/ppc.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/atomic/unix/s390.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/atomic/unix/solaris.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/build-outputs.mk#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/build.conf#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/buildconf#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/config.layout#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/configure#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/configure.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/APRDesign.html#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/canonical_filenames.html#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/doxygen.conf#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/incomplete_types#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/non_apr_programs#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/pool-design.html#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/docs/win32_builds.html#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/dso/unix/dso.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/emacs-mode#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/buffer.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/copy.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/dir.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/fileacc.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/filedup.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/filepath.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/filepath_util.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/filestat.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/flock.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/fullrw.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/mktemp.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/open.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/pipe.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/readwrite.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/seek.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/file_io/unix/tempdir.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/helpers/apr_rename.pl#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr.hnw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr.hw#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_allocator.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_atomic.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_dso.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_env.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_errno.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_file_info.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_file_io.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_fnmatch.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_general.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_getopt.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_global_mutex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_hash.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_inherit.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_lib.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_mmap.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_network_io.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_poll.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_pools.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_portable.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_proc_mutex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_random.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_ring.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_shm.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_signal.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_strings.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_support.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_tables.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_thread_cond.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_thread_mutex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_thread_proc.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_thread_rwlock.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_time.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_user.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_version.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/apr_want.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/apr_private_common.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_atomic.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_dso.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_file_io.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_global_mutex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_inherit.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_internal_time.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_misc.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_networkio.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_poll_private.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_proc_mutex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_shm.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_thread_cond.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_thread_mutex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_thread_rwlock.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_arch_threadproc.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/include/arch/unix/apr_private.h.in#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/libapr.dep#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/libapr.dsp#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/libapr.mak#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/libapr.rc#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/locks/unix/global_mutex.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/locks/unix/proc_mutex.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/locks/unix/thread_cond.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/locks/unix/thread_mutex.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/locks/unix/thread_rwlock.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/memory/unix/apr_pools.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/charset.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/env.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/errorcodes.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/getopt.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/otherchild.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/rand.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/randbyte_os2.inc#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/start.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/misc/unix/version.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/mmap/unix/common.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/mmap/unix/mmap.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/inet_ntop.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/inet_pton.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/multicast.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/sendrecv.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/sockaddr.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/socket_util.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/sockets.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/network_io/unix/sockopt.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/passwd/apr_getpass.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/epoll.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/kqueue.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/poll.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/pollcb.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/pollset.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/port.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/poll/unix/select.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/random/unix/apr_random.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/random/unix/sha2.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/random/unix/sha2.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/random/unix/sha2_glue.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/shmem/unix/shm.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/strings/apr_cpystrn.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/strings/apr_fnmatch.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/strings/apr_snprintf.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/strings/apr_strings.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/strings/apr_strnatcmp.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/strings/apr_strtok.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/support/unix/waitio.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/tables/apr_hash.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/tables/apr_tables.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/threadproc/unix/proc.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/threadproc/unix/procsup.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/threadproc/unix/signals.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/threadproc/unix/thread.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/threadproc/unix/threadpriv.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/time/unix/time.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/time/unix/timestr.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/user/unix/groupinfo.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/apr/user/unix/userinfo.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/binutils/include/elf/dwarf2.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/bmake/ChangeLog#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/bmake/Makefile#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/bmake/job.c#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/bmake/make.1#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/bmake/var.c#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/AUTHORS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/BUGS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/COPYING#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/COPYING.LIB#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/ChangeLog.zoo#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/DEVEL-CVS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/FAQ#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/FREEBSD-Xlist#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/FREEBSD-upgrade#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/FREEBSD-vendstock#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/HACKING#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/INSTALL#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/MINOR-BUGS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/Makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/NEWS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/PROJECTS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/README#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/TESTS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/TODO#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/acinclude.m4#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/aclocal.m4#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/compile#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/config.h.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/configure#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/configure.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/Makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/README#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/check_cvs.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/clmerge.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cln_hist.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/commit_prep.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cvs2vendor.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cvs_acls.html#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cvs_acls.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cvscheck.man#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cvscheck.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/cvshelp.man#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/debug_check_log.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/descend.man#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/descend.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/dirfns.shar#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/intro.doc#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/log.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/log_accum.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/mfpipe.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/pvcs2rcs.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/rcs-to-cvs.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/rcs2log.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/rcs2sccs.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/rcslock.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/contrib/sccs2rcs.in#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/cvs-format.el#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/depcomp#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/Makefile.in#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/analyze.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/cmpbuf.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/cmpbuf.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/context.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/diff.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/diff.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/diff3.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/diffrun.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/dir.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/ed.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/ifdef.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/io.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/normal.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/side.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/system.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/util.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/diff/version.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/ChangeLog.fsf#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/HACKING.DOCS#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/Makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/RCSFILES#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/cvs-paper.ms#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/cvs.1#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/cvs.man.footer#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/cvs.man.header#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/cvs.texinfo#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/cvsclient.texi#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/mdate-sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/mkman.pl#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/stamp-1#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/stamp-vti#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/version-client.texi#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/doc/version.texi#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/install-sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/ChangeLog.fsf#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/Makefile.in#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/argmatch.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/dup2.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/fncase.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/fnmatch.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/fnmatch.h.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/ftruncate.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getdate.y#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/gethostname.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getline.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getline.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getopt.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getopt.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getopt1.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getpagesize.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/getpass.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/md5.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/md5.h#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/memmove.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/mkdir.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/regex.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/regex.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/rename.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/savecwd.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/savecwd.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/sighandle.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/strerror.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/stripslash.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/strstr.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/strtoul.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/system.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/test-getdate.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/valloc.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/wait.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/waitpid.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/xgetwd.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/xgssapi.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/xselect.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/xsize.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/xtime.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/lib/yesno.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/man/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/man/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/man/Makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/man/cvs.1#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/man/cvs.5#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/man/cvsbug.8#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/mdate-sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/missing#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/mkinstalldirs#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/mktemp.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/ChangeLog-9194#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/ChangeLog-9395#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/ChangeLog-96#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/ChangeLog-97#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/Makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/add.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/admin.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/annotate.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/buffer.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/buffer.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/checkin.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/checkout.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/classify.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/client.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/client.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/commit.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/create_adm.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/cvs.h#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/cvsbug.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/cvsrc.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/diff.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/edit.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/edit.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/entries.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/error.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/error.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/expand_path.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/fileattr.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/fileattr.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/filesubr.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/find_names.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/hardlink.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/hardlink.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/hash.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/hash.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/history.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/history.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/ignore.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/import.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/lock.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/log.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/login.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/logmsg.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/main.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/mkmodules.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/modules.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/myndbm.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/myndbm.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/no_diff.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/parseinfo.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/patch.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/rcs.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/rcs.h#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/rcscmds.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/recurse.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/release.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/remove.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/repos.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/root.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/root.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/run.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/sanity.sh#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/scramble.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/server.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/server.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/stack.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/stack.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/status.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/subr.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/tag.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/update.c#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/update.h#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/vers_ts.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/version.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/watch.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/watch.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/wrapper.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/src/zlib.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/tools/ChangeLog#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/tools/Makefile.am#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/tools/Makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/cvs/tools/README#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/CHANGES#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/VERSION#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/aclocal.m4#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/argv.c#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/arrows.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/buildlist.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/buttons.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/calendar.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/checklist.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/columns.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/config.guess#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/config.sub#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/configure#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/configure.in#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dialog-config.in#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dialog.1#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dialog.3#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dialog.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dialog.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dlg_colors.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dlg_keys.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/dlg_keys.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/editbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/formbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/fselect.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/guage.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/headers-sh.in#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/help.c#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/inputbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/inputstr.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/makefile.in#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/menubox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/mixedform.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/mixedgauge.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/mouse.c#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/mousewget.c#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/msgbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/package/debian/changelog#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/package/dialog.spec#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/pause.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/an.po#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/cs.po#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/el.po#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/gl.po#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/hr.po#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/ia.po#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/sr.po#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/po/zh_TW.po#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/prgbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/progressbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/rangebox.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/rc.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/rename.sh#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/README#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/buildlist#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/buildlist2#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/checklist12#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/admin.funcs#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/common.funcs#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.funcs#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifman1#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifman2#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifmcfg2#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifmcfg4#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifmcfg5#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifpoll1#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifpoll2#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifreq1#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.ifreq2#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.rcnews#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.sendifm1#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.sendifm2#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.trnrc#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/copi.wheel#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copifuncs/ifpatch#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/copismall#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/debian.rc#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/dft-cancel#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/dft-extra#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/dft-help#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/dft-no#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/dialog.py#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/dselect#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/form1#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/fselect0#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/inputmenu#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/inputmenu-stdout#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/inputmenu1#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/inputmenu2#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/inputmenu3#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/inputmenu4#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/install/FDISK.TEST#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/install/makefile.in#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/install/setup.c#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/install/setup.help#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/killall#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/menubox12#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/prgbox#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/prgbox2#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/rangebox#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/rangebox2#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/rangebox3#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/rangebox4#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/report-button#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/report-edit#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/report-string#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/report-tempfile#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/report-yesno#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/setup-edit#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/setup-tempfile#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/setup-utf8#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/setup-vars#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/slackware.rc#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/sourcemage.rc#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/suse.rc#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/tailboxbg#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/tailboxbg1#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/tailboxbg2#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/testdata-8bit#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/treeview#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/treeview2#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/valgrind.log#3 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/wheel#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/whiptail.rc#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/with-dquotes#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/samples/with-squotes#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/tailbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/textbox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/timebox.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/trace.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/treeview.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/ui_getc.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/util.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/dialog/yesno.c#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/gdb/gdb/dwarf2read.c#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/gdb/gdb/frame-unwind.c#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/libgnuregex/regcomp.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/libgnuregex/regex.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/libgnuregex/regex.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/libgnuregex/regex_internal.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/libgnuregex/regex_internal.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/libgnuregex/regexec.c#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/Core.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/ExecutionEngine.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/Object.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/Target.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/TargetMachine.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm-c/Transforms/Vectorize.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/ArrayRef.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/DenseMap.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/Hashing.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/InMemoryStruct.h#2 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/PointerIntPair.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/StringRef.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/Triple.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ADT/Twine.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Analysis/RegionInfo.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/FastISel.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/LiveInterval.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/MachineFunction.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/Passes.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/CodeGen/ValueTypes.td#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/DIBuilder.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/DebugInfo.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Argument.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Attributes.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/BasicBlock.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Constants.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/DataLayout.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/DerivedTypes.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/GlobalValue.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/IRBuilder.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Intrinsics.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/IntrinsicsMips.td#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/LLVMContext.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/MDBuilder.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Module.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Type.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Use.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/IR/Value.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/InitializePasses.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/LinkAllPasses.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Linker.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCAsmInfo.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCAssembler.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCELFStreamer.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCExpr.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCInst.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCObjectStreamer.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCSection.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCSectionCOFF.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCSectionELF.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCSectionMachO.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCStreamer.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/MachineLocation.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/MC/SubtargetFeature.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Object/Binary.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Object/ELF.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Object/MachO.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Object/MachOObject.h#5 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Object/ObjectFile.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Object/RelocVisitor.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/PassManager.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/PassRegistry.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/CBindingWrapping.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/CodeGen.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/CommandLine.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/Compression.h#1 branch .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/ELF.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/Endian.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/Host.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/MemoryBuffer.h#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/PatternMatch.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/Program.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Support/SourceMgr.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/Target.td#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/TargetCallingConv.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/TargetInstrInfo.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/TargetLowering.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/TargetMachine.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/TargetOptions.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Transforms/Utils/BlackList.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Transforms/Utils/Local.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/include/llvm/Transforms/Vectorize.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/Analysis.cpp#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/ConstantFolding.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/IPA/IPA.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/InstructionSimplify.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/RegionInfo.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/ScalarEvolution.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/AsmParser/LLLexer.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/AsmParser/LLParser.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/AsmParser/LLToken.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/Analysis.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/CallingConvLower.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/CodeGen.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/IfConversion.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/InlineSpiller.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineScheduler.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/MachineVerifier.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/Passes.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/TargetSchedule.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFContext.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFContext.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/DebugInfo/DWARFFormValue.h#4 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/AsmWriter.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/AttributeImpl.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Attributes.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Constants.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/ConstantsContext.h#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Core.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/DIBuilder.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/DataLayout.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/DebugInfo.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Function.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Metadata.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/PassManager.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Type.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Value.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/IR/Verifier.cpp#2 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Linker/LinkModules.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Linker/Linker.cpp#4 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCAsmInfo.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCAsmStreamer.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCAssembler.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCDwarf.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCELFStreamer.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCExpr.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCMachOStreamer.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCNullStreamer.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCObjectFileInfo.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCObjectStreamer.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCParser/AsmParser.cpp#7 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCPureStreamer.cpp#5 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCSectionCOFF.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCSectionELF.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCSectionMachO.cpp#3 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/MCStreamer.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp#4 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Object/COFFObjectFile.cpp#6 integrate .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Object/MachOObject.cpp#5 delete .. //depot/projects/ctsrd/cheribsd/src/contrib/llvm/lib/Object/MachOObjectFile.cpp#6 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Wed Jun 19 22:16:30 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9F52CCA1; Wed, 19 Jun 2013 22:16:30 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 62316C9F for ; Wed, 19 Jun 2013 22:16:30 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 51FAA126E for ; Wed, 19 Jun 2013 22:16:30 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JMGUg2091328 for ; Wed, 19 Jun 2013 22:16:30 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JMGUto091325 for perforce@freebsd.org; Wed, 19 Jun 2013 22:16:30 GMT (envelope-from jonathan@freebsd.org) Date: Wed, 19 Jun 2013 22:16:30 GMT Message-Id: <201306192216.r5JMGUto091325@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229975 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 22:16:30 -0000 http://p4web.freebsd.org/@@229975?ac=10 Change 229975 by jonathan@jonathan-on-zenith on 2013/06/19 22:15:48 Merge some upstream libtesla changes. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla-macros.h#4 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_class.c#5 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla-macros.h#4 (text+ko) ==== @@ -67,7 +67,9 @@ /** A strictly-ordered sequence of events. */ #define TSEQUENCE(...) __tesla_sequence(__tesla_ignore, __VA_ARGS__) -#define called(...) __tesla_call(__VA_ARGS__) +// This can be removed once all users are converted to the new syntax for calls. +#pragma clang diagnostic ignored "-Wunused" +#define called(...) __tesla_call(((void)__VA_ARGS__, __tesla_ignore)) #define returned(...) __tesla_return(__VA_ARGS__) #define callee(...) __tesla_callee(__tesla_ignore, __VA_ARGS__) ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_class.c#5 (text+ko) ==== @@ -192,15 +192,4 @@ bzero(c->tc_instances, sizeof(c->tc_instances[0]) * c->tc_limit); c->tc_free = c->tc_limit; - - switch (c->tc_context) { - case TESLA_CONTEXT_GLOBAL: - return tesla_class_global_release(c); - - case TESLA_CONTEXT_THREAD: - return tesla_class_perthread_release(c); - - default: - assert(0 && "unhandled TESLA context"); - } } From owner-p4-projects@FreeBSD.ORG Wed Jun 19 23:06:25 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 77AEC881; Wed, 19 Jun 2013 23:06:25 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E870487F for ; Wed, 19 Jun 2013 23:06:24 +0000 (UTC) (envelope-from brooks@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id D83A4160D for ; Wed, 19 Jun 2013 23:06:24 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JN6O9O097114 for ; Wed, 19 Jun 2013 23:06:24 GMT (envelope-from brooks@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JN6OW5097111 for perforce@freebsd.org; Wed, 19 Jun 2013 23:06:24 GMT (envelope-from brooks@freebsd.org) Date: Wed, 19 Jun 2013 23:06:24 GMT Message-Id: <201306192306.r5JN6OW5097111@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to brooks@freebsd.org using -f From: Brooks Davis Subject: PERFORCE change 229976 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 23:06:25 -0000 http://p4web.freebsd.org/@@229976?ac=10 Change 229976 by brooks@brooks_zenith on 2013/06/19 23:05:33 Improve the quality of the DE4 FDT file's /cpus section and prepare it for an SMP world. Enable SMP support in all kernel configs. Affected files ... .. //depot/projects/ctsrd/beribsd/src/sys/boot/fdt/dts/beripad-de4.dts#24 edit .. //depot/projects/ctsrd/beribsd/src/sys/mips/conf/BERI_TEMPLATE#8 edit Differences ... ==== //depot/projects/ctsrd/beribsd/src/sys/boot/fdt/dts/beripad-de4.dts#24 (text+ko) ==== @@ -51,8 +51,21 @@ #address-cells = <1>; #size-cells = <1>; + /* + * Secondary CPUs all start disabled and use the + * spin-table enable method. cpu-release-addr must be + * specified for each cpu other than cpu@0. Values of + * cpu-release-addr grow down from 0x100000 (kernel). + */ + status = "disabled"; + enable-method = "spin-table"; + cpu@0 { + device-type = "cpu"; compatible = "sri-cambridge,beri"; + + reg = <0>; + status = "okay"; }; }; ==== //depot/projects/ctsrd/beribsd/src/sys/mips/conf/BERI_TEMPLATE#8 (text+ko) ==== @@ -12,6 +12,7 @@ machine mips mips64 cpu CPU_BERI +options SMP options HZ=200 From owner-p4-projects@FreeBSD.ORG Wed Jun 19 23:07:26 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 06BA9973; Wed, 19 Jun 2013 23:07:26 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BBAD6971 for ; Wed, 19 Jun 2013 23:07:25 +0000 (UTC) (envelope-from brooks@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id AB9311616 for ; Wed, 19 Jun 2013 23:07:25 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JN7P2o097191 for ; Wed, 19 Jun 2013 23:07:25 GMT (envelope-from brooks@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JN7PBf097188 for perforce@freebsd.org; Wed, 19 Jun 2013 23:07:25 GMT (envelope-from brooks@freebsd.org) Date: Wed, 19 Jun 2013 23:07:25 GMT Message-Id: <201306192307.r5JN7PBf097188@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to brooks@freebsd.org using -f From: Brooks Davis Subject: PERFORCE change 229977 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 23:07:26 -0000 http://p4web.freebsd.org/@@229977?ac=10 Change 229977 by brooks@brooks_zenith on 2013/06/19 23:06:55 Fold in SMP prep work in 229976. Affected files ... .. //depot/projects/ctsrd/cheribsd/src/sys/boot/fdt/dts/beripad-de4.dts#11 integrate .. //depot/projects/ctsrd/cheribsd/src/sys/mips/conf/BERI_TEMPLATE#8 integrate Differences ... ==== //depot/projects/ctsrd/cheribsd/src/sys/boot/fdt/dts/beripad-de4.dts#11 (text+ko) ==== @@ -51,8 +51,21 @@ #address-cells = <1>; #size-cells = <1>; + /* + * Secondary CPUs all start disabled and use the + * spin-table enable method. cpu-release-addr must be + * specified for each cpu other than cpu@0. Values of + * cpu-release-addr grow down from 0x100000 (kernel). + */ + status = "disabled"; + enable-method = "spin-table"; + cpu@0 { + device-type = "cpu"; compatible = "sri-cambridge,beri"; + + reg = <0>; + status = "okay"; }; }; ==== //depot/projects/ctsrd/cheribsd/src/sys/mips/conf/BERI_TEMPLATE#8 (text+ko) ==== @@ -12,6 +12,7 @@ machine mips mips64 cpu CPU_BERI +options SMP options HZ=200 From owner-p4-projects@FreeBSD.ORG Wed Jun 19 23:33:55 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 358A95CC; Wed, 19 Jun 2013 23:33:55 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E93EC5CA for ; Wed, 19 Jun 2013 23:33:54 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id D9DEC1759 for ; Wed, 19 Jun 2013 23:33:54 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5JNXsNg001441 for ; Wed, 19 Jun 2013 23:33:54 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5JNXswQ001438 for perforce@freebsd.org; Wed, 19 Jun 2013 23:33:54 GMT (envelope-from jonathan@freebsd.org) Date: Wed, 19 Jun 2013 23:33:54 GMT Message-Id: <201306192333.r5JNXswQ001438@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229979 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2013 23:33:55 -0000 http://p4web.freebsd.org/@@229979?ac=10 Change 229979 by jonathan@jonathan-on-zenith on 2013/06/19 23:33:45 Rename DTrace probes. This makes it easier to trace only certain interesting classes of events, e.g. tesla::event: or tesla::fail:. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_dtrace.c#7 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_dtrace.c#7 (text+ko) ==== @@ -38,25 +38,25 @@ SDT_PROVIDER_DEFINE(tesla); -SDT_PROBE_DEFINE2(tesla, kernel, notify, new_instance, new-instance, +SDT_PROBE_DEFINE2(tesla, automata, instance, create, create, "struct tesla_class *", "struct tesla_instance *"); -SDT_PROBE_DEFINE3(tesla, kernel, notify, transition, transition, +SDT_PROBE_DEFINE3(tesla, automata, event, transition, state-transition, "struct tesla_class *", "struct tesla_instance *", "struct tesla_transition *"); -SDT_PROBE_DEFINE4(tesla, kernel, notify, clone, clone, +SDT_PROBE_DEFINE4(tesla, automata, instance, clone, clone, "struct tesla_class *", "struct tesla_instance *", "struct tesla_instance *", "struct tesla_transition *"); -SDT_PROBE_DEFINE3(tesla, kernel, notify, no_instance, no-instance-match, +SDT_PROBE_DEFINE3(tesla, automata, fail, no_instance, no-instance-match, "struct tesla_class *", "struct tesla_key *", "struct tesla_transitions *"); -SDT_PROBE_DEFINE3(tesla, kernel, notify, bad_transition, bad-transition, +SDT_PROBE_DEFINE3(tesla, automata, fail, bad_transition, bad-transition, "struct tesla_class *", "struct tesla_instance *", "struct tesla_transitions *"); -SDT_PROBE_DEFINE3(tesla, kernel, notify, err, err, "struct tesla_class *", - "int", "const char *"); -SDT_PROBE_DEFINE2(tesla, kernel, notify, accept, accept, +SDT_PROBE_DEFINE3(tesla, automata, fail, other_err, other-error, + "struct tesla_class *", "int", "const char *"); +SDT_PROBE_DEFINE2(tesla, automata, success, accept, accept, "struct tesla_class *", "struct tesla_instance *"); -SDT_PROBE_DEFINE3(tesla, kernel, notify, ignored, ignored-event, +SDT_PROBE_DEFINE3(tesla, automata, event, ignored, ignored-event, "struct tesla_class *", "struct tesla_key *", "struct tesla_transitions *"); @@ -64,7 +64,7 @@ new_instance(struct tesla_class *tcp, struct tesla_instance *tip) { - SDT_PROBE(tesla, kernel, notify, new_instance, tcp, tip, 0, 0, 0); + SDT_PROBE(tesla, automata, instance, create, tcp, tip, 0, 0, 0); } static void @@ -72,7 +72,7 @@ const struct tesla_transition *ttp) { - SDT_PROBE(tesla, kernel, notify, transition, tcp, tip, ttp, 0, 0); + SDT_PROBE(tesla, automata, event, transition, tcp, tip, ttp, 0, 0); } static void @@ -80,7 +80,7 @@ struct tesla_instance *copyp, const struct tesla_transition *ttp) { - SDT_PROBE(tesla, kernel, notify, clone, tcp, origp, copyp, ttp, 0); + SDT_PROBE(tesla, automata, instance, clone, tcp, origp, copyp, ttp, 0); } static void @@ -88,7 +88,7 @@ const struct tesla_transitions *ttp) { - SDT_PROBE(tesla, kernel, notify, no_instance, tcp, tkp, ttp, 0, 0); + SDT_PROBE(tesla, automata, fail, no_instance, tcp, tkp, ttp, 0, 0); } static void @@ -96,21 +96,21 @@ const struct tesla_transitions *ttp) { - SDT_PROBE(tesla, kernel, notify, bad_transition, tcp, tip, ttp, 0, 0); + SDT_PROBE(tesla, automata, fail, bad_transition, tcp, tip, ttp, 0, 0); } static void err(struct tesla_class *tcp, int errno, const char *message) { - SDT_PROBE(tesla, kernel, notify, err, tcp, errno, message, 0, 0); + SDT_PROBE(tesla, automata, fail, other_err, tcp, errno, message, 0, 0); } static void accept(struct tesla_class *tcp, struct tesla_instance *tip) { - SDT_PROBE(tesla, kernel, notify, accept, tcp, tip, 0, 0, 0); + SDT_PROBE(tesla, automata, success, accept, tcp, tip, 0, 0, 0); } static void @@ -118,7 +118,7 @@ const struct tesla_transitions *ttp) { - SDT_PROBE(tesla, kernel, notify, ignored, tcp, tkp, ttp, 0, 0); + SDT_PROBE(tesla, automata, event, ignored, tcp, tkp, ttp, 0, 0); } const struct tesla_event_handlers dtrace_handlers = { From owner-p4-projects@FreeBSD.ORG Thu Jun 20 14:16:37 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id E3D576F0; Thu, 20 Jun 2013 14:16:36 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A08216EE for ; Thu, 20 Jun 2013 14:16:36 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 752491C01 for ; Thu, 20 Jun 2013 14:16:36 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5KEGZgi088647 for ; Thu, 20 Jun 2013 14:16:35 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5KEGZrW088644 for perforce@freebsd.org; Thu, 20 Jun 2013 14:16:35 GMT (envelope-from jonathan@freebsd.org) Date: Thu, 20 Jun 2013 14:16:35 GMT Message-Id: <201306201416.r5KEGZrW088644@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 229999 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2013 14:16:37 -0000 http://p4web.freebsd.org/@@229999?ac=10 Change 229999 by jonathan@jonathan-on-zenith on 2013/06/20 14:15:48 Pull in updated tesla-macros.h Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla-macros.h#5 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla-macros.h#5 (text+ko) ==== @@ -64,29 +64,29 @@ /** An assertion in a thread's TESLA context. */ #define TESLA_PERTHREAD(...) TESLA_ASSERT(__tesla_perthread, __VA_ARGS__) +/** An epsilon transition in a a TESLA NFA; a non-event. */ +#define TIGNORE __tesla_ignore + /** A strictly-ordered sequence of events. */ -#define TSEQUENCE(...) __tesla_sequence(__tesla_ignore, __VA_ARGS__) +#define TSEQUENCE(...) __tesla_sequence(TIGNORE, __VA_ARGS__) -// This can be removed once all users are converted to the new syntax for calls. -#pragma clang diagnostic ignored "-Wunused" -#define called(...) __tesla_call(((void)__VA_ARGS__, __tesla_ignore)) +#define called(...) __tesla_call(((void)__VA_ARGS__, TIGNORE)) #define returned(...) __tesla_return(__VA_ARGS__) -#define callee(...) __tesla_callee(__tesla_ignore, __VA_ARGS__) -#define caller(...) __tesla_caller(__tesla_ignore, __VA_ARGS__) -#define strict(...) __tesla_strict(__tesla_ignore, __VA_ARGS__) -#define conditional(...) __tesla_conditional(__tesla_ignore, __VA_ARGS__) +#define callee(...) __tesla_callee(TIGNORE, __VA_ARGS__) +#define caller(...) __tesla_caller(TIGNORE, __VA_ARGS__) +#define strict(...) __tesla_strict(TIGNORE, __VA_ARGS__) +#define conditional(...) __tesla_conditional(TIGNORE, __VA_ARGS__) #define TESLA_NOW __tesla_now #define TESLA_STRUCT_AUTOMATON(...) __tesla_struct_usage(__VA_ARGS__) -#define automaton(name, ...) __tesla_automaton(name, __VA_ARGS__) +#define automaton(name, ...) __tesla_automaton(name, __VA_ARGS__) +#define tesla_done return (__tesla_automaton_done()) -#define tesla_done return (__tesla_automaton_done()) - -#define optional(...) __tesla_optional(__tesla_ignore, __VA_ARGS__) +#define optional(...) __tesla_optional(TIGNORE, __VA_ARGS__) #define ANY_REP INT_MAX #define REPEAT(m, n, ...) __tesla_repeat(m, n, __VA_ARGS__) #define UPTO(n, ...) __tesla_repeat(0, n, __VA_ARGS__) From owner-p4-projects@FreeBSD.ORG Thu Jun 20 16:54:29 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6C07BE8C; Thu, 20 Jun 2013 16:54:29 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2B115E8A for ; Thu, 20 Jun 2013 16:54:29 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks6.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1B18116A3 for ; Thu, 20 Jun 2013 16:54:29 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5KGsSED009048 for ; Thu, 20 Jun 2013 16:54:28 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5KGsS3Z009045 for perforce@freebsd.org; Thu, 20 Jun 2013 16:54:28 GMT (envelope-from jonathan@freebsd.org) Date: Thu, 20 Jun 2013 16:54:28 GMT Message-Id: <201306201654.r5KGsS3Z009045@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 230005 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2013 16:54:29 -0000 http://p4web.freebsd.org/@@230005?ac=10 Change 230005 by jonathan@jonathan-on-zenith on 2013/06/20 16:53:41 TESLA event handling sysctl. Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#9 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#12 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#9 (text+ko) ==== @@ -276,6 +276,12 @@ /** Register a set of event handling vectors. */ int tesla_set_event_handlers(struct tesla_event_metahandler *); +#ifdef _KERNEL +#define TESLA_KERN_PRINTF_EV 0x1 +#define TESLA_KERN_DTRACE_EV 0x2 +#define TESLA_KERN_PANIC_EV 0x4 +#endif + /** @} */ #endif /* _TESLA_STATE */ ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#12 (text+ko) ==== @@ -358,9 +358,8 @@ &printf_handlers, #if defined(_KERNEL) && defined(KDTRACE_HOOKS) &dtrace_handlers, -#else +#endif &failstop_handlers, -#endif }; static struct tesla_event_metahandler default_event_handlers = { @@ -373,4 +372,14 @@ .tem_handlers = default_handlers, }; +#ifdef _KERNEL +#include + +SYSCTL_NODE(, OID_AUTO, tesla, CTLFLAG_RW, 0, "TESLA"); +SYSCTL_NODE(_tesla, OID_AUTO, events, CTLFLAG_RW, 0, "control of TESLA events"); +SYSCTL_UINT(_tesla_events, OID_AUTO, handlers, CTLFLAG_RW, + &default_event_handlers.tem_mask, 0, + "Mask of currently-enabled TESLA event handlers"); +#endif + static struct tesla_event_metahandler *event_handlers = &default_event_handlers; From owner-p4-projects@FreeBSD.ORG Fri Jun 21 21:40:05 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0FE53280; Fri, 21 Jun 2013 21:40:05 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8B22927A for ; Fri, 21 Jun 2013 21:40:04 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [8.8.178.74]) by mx1.freebsd.org (Postfix) with ESMTP id 7B5711761 for ; Fri, 21 Jun 2013 21:40:04 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r5LLe4IX037541 for ; Fri, 21 Jun 2013 21:40:04 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r5LLe4Lx037538 for perforce@freebsd.org; Fri, 21 Jun 2013 21:40:04 GMT (envelope-from jhb@freebsd.org) Date: Fri, 21 Jun 2013 21:40:04 GMT Message-Id: <201306212140.r5LLe4Lx037538@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 230037 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.14 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2013 21:40:05 -0000 http://p4web.freebsd.org/@@230037?ac=10 Change 230037 by jhb@jhb_jhbbsd on 2013/06/21 21:39:25 Ok, the last idea of just reserving the alias ranges won't work if we have nested bridges as the nested bridges need to be able to allocate their windows. So, bite the bullet and fix this the right way by only allocating the non-alias ranges from the parent. This means a window can now have N resources and requires special handling everywhere we frob the window. Thankfully, we get lucky (I believe) and don't have to change the logic in pcib_grow_window() where we pick front and back windows because the granularity of I/O windows ensures you will always get 4 new non-alias ranges each step of window growth. In theory this will even properly handle a 32-bit capable I/O window that has the ISA enable bit set in that it uses small resources for < 64k and one regular resource for everything >= 64k. This is just the first draft, not compile tested. :) Affected files ... .. //depot/projects/pci/sys/dev/pci/pci_pci.c#30 edit .. //depot/projects/pci/sys/dev/pci/pcib_private.h#22 edit Differences ... ==== //depot/projects/pci/sys/dev/pci/pci_pci.c#30 (text+ko) ==== @@ -241,52 +241,140 @@ } static void -pcib_alloc_isa_ranges(struct pcib_softc *sc, u_long start, u_long end) +pcib_add_window_resources(struct pcib_window *w, struct resource **res, + int count) +{ + struct resource **newarray; + int error, i; + + newarray = malloc(sizeof(struct resource *) * (w->count + count), + M_DEVBUF, M_WAITOK); + if (w->res != NULL) + bcopy(w->res, newarray, sizeof(struct resource *) * w->count); + bcopy(res, newarray + w->count, sizeof(struct resource *) * count); + free(w->res, M_DEVBUF); + w->res = newarray; + w->count += count; + + for (i = 0; i < count; i++) { + error = rman_manage_region(&w->rman, rman_get_start(res[i]), + rman_get_end(res[i])); + if (error) + panic("Failed to add resource to rman"); + } +} + +typedef void (*nonisa_callback)(u_long start, u_long end, void *arg); + +static void +pcib_walk_nonisa_ranges(u_long start, u_long end, nonisa_callback *cb, + void *arg) { - struct resource *res; u_long next_end; - if (!(sc->bridgectl & PCIB_BCR_ISA_ENABLE)) - return (0); - /* ISA aliases are only in the lower 64KB of I/O space. */ - if (end > 65535) - end = 65535; - - /* XXX */ - device_printf(sc->dev, "Reserving ISA aliases for %#lx-%#lx\n", start, - end); - while (start <= end) { + while (start <= MIN(end, 65535)) { /* - * Find the first address that aliases to 0x0100 and - * reserve the space from that up to the alias with - * 0x03ff. As a special case, addresses in the range - * 0x000 - 0x0ff should also be reserved since those - * are used for various system I/O devices in ISA - * systems. + * If start is within an ISA alias range, move up to + * the start of the next non-alias range. As a + * special case, addresses in the range 0x000 - 0x0ff + * should also be skipped since those are used for + * various system I/O devices in ISA systems. */ - if (start >= 0x100 && (start & 0x300) == 0) { - start &= ~0xfful; - start |= 0x100; + if (start < 0x100 || (start & 0x300) != 0) { + start &= ~0x3fful; + start += 0x400; } - next_end = MIN(start | 0x3ff, end); - //if (bootverbose) - device_printf(sc->dev, - "Reserving ISA alias %#lx-%#lx\n", start, next_end); - res = rman_reserve_resource(&sc->io.rman, start, next_end, - next_end - start + 1, 0, sc->dev); - if (res == NULL) - device_printf(sc->dev, - "Failed to reserve ISA alias %#lx-%#lx\n", start, - next_end); + next_end = MIN(start | 0xff, end); + cb(start, end, arg); start = next_end + 1; } + + if (start <= end) + cb(start, end, arg); +} + +static void +count_ranges(u_long start, u_long end, void *arg) +{ + int *countp; + + countp = arg; + *countp++; +} + +struct alloc_state { + struct resource **res; + struct pcib_softc *sc; + int count, error; +}; + +static void +alloc_ranges(u_long start, u_long end, void *arg) +{ + struct alloc_state *as; + struct pcib_window *w; + int rid; + + as = arg; + if (as->error != 0) + return; + + w = &as->sc->io; + rid = w->reg; + /* XXX */ + if (bootverbose || 1) + device_printf(as->sc->dev, + "Allocating non-ISA range %#lx-%#lx\n", start, end); + as->res[as->count] = bus_alloc_resource(as->sc->dev, SYS_RES_IOPORT, + &rid, start, end, end - start + 1, 0); + if (as->res[as->count] == NULL) + as->error = ENXIO; + else + as->count++; +} + +static int +pcib_alloc_nonisa_ranges(struct pcib_softc *sc, u_long start, u_long end) +{ + struct alloc_state as; + int i, new_count; + + /* XXX */ + device_printf(sc->dev, "Allocating non-ISA ranges of %#lx-%#lx\n", + start, end); + + /* First, see how many ranges we need. */ + new_count = 0; + pcib_walk_nonisa_ranges(start, end, count_ranges, &new_count); + + /* Second, allocate the ranges. */ + as.res = malloc(sizeof(struct resource *) * new_count, M_DEVBUF, + M_WAITOK); + as.sc = sc; + as.count = 0; + as.error = 0; + pcib_walk_nonisa_ranges(start, end, alloc_ranges &as); + if (as.error != 0) { + for (i = 0; i < as.count; i++) + bus_release_resource(sc->dev, SYS_RES_IOPORT, + sc->io.reg, as.res[i]); + free(as.res, M_DEVBUF); + return (as.error); + } + KASSERT(as.count == newcount, ("%s: count mismatch", __func__)); + + /* Third, add the ranges to the window. */ + pcib_add_window_resources(&sc->io, as.res, as.count); + free(as.res, M_DEVBUF); + return (0); } static void pcib_alloc_window(struct pcib_softc *sc, struct pcib_window *w, int type, int flags, pci_addr_t max_address) { + struct resource *res; char buf[64]; int error, rid; @@ -311,9 +399,15 @@ "initial %s window has too many bits, ignoring\n", w->name); return; } - rid = w->reg; - w->res = bus_alloc_resource(sc->dev, type, &rid, w->base, w->limit, - w->limit - w->base + 1, flags); + if (type == SYS_RES_IOPORT && sc->bridgectl & PCIB_BCR_ISA_ENABLE) + (void)pcib_alloc_nonisa_ranges(sc, w->base, w->limit); + else { + rid = w->reg; + res = bus_alloc_resource(sc->dev, type, &rid, w->base, w->limit, + w->limit - w->base + 1, flags); + if (res != NULL) + pcib_add_window_resources(w, &res, 1); + } if (w->res == NULL) { device_printf(sc->dev, "failed to allocate initial %s window: %#jx-%#jx\n", @@ -324,11 +418,6 @@ return; } pcib_activate_window(sc, type); - - error = rman_manage_region(&w->rman, rman_get_start(w->res), - rman_get_end(w->res)); - if (error) - panic("Failed to initialize rman with resource"); } /* @@ -392,8 +481,6 @@ max = 0xffff; } pcib_alloc_window(sc, &sc->io, SYS_RES_IOPORT, 0, max); - pcib_alloc_isa_ranges(sc, sc->io.base, sc->io.base + - sc->io.limit - 1); } /* Read the existing memory window. */ @@ -937,9 +1024,184 @@ return (res); } +/* Allocate a fresh resource range for an unconfigured window. */ +static int +pcib_alloc_new_window(struct pcib_softc *sc, struct pcib_window *w, int type, + u_long start, u_long end, u_long count, u_int flags) +{ + struct resource *res; + u_long base, limit; + int error, rid; + + /* + * If this is an I/O window on a bridge with ISA enable set + * and the start address is below 64k, then try to allocate an + * initial window of 0x1000 bytes long starting at address + * 0xf000 and walking down. Note that if the original request + * was larger than the non-aliased range size of 0x100 our + * caller would have raised the start address up to 64k + * already. + */ + if (type == SYS_RES_IOPORT && sc->bridgectl & PCIB_BCR_ISA_ENABLE && + start < 65536) { + for (base = 0xf000; base >= 0; base -= 0x1000) { + limit = base + 0xfff; + + /* + * Skip ranges that wouldn't work for the + * original request. Note that the actual + * window that overlaps are the non-alias + * ranges within [base, limit], so this isn't + * quite a simple comparison. + */ + if (start + count > limit - 0x400) + continue; + if (base == 0) { + /* + * The first open region for the window at + * 0 is 0x400-0x4ff. + */ + if (end - count < 0x400) + continue; + } else { + if (end - count < base) + continue; + } + + if (pcib_alloc_nonisa_ranges(sc, base, limit) == 0) { + w->base = base; + w->limit = limit; + return (0); + } + } + } + + if (RF_ALIGNMENT(flags) < w->step) { + flags &= ~RF_ALIGNMENT_MASK; + flags |= RF_ALIGNMENT_LOG2(w->step); + } + start &= ~wmask; + end |= wmask; + count = roundup2(count, 1ul << w->step); + rid = w->reg; + res = bus_alloc_resource(sc->dev, type, &rid, start, end, count, + flags & ~RF_ACTIVE); + if (res == NULL) { + if (bootverbose) + device_printf(sc->dev, + "failed to allocate initial %s window (%#lx-%#lx,%#lx)\n", + w->name, start, end, count); + return (ENXIO); + } + if (bootverbose) + device_printf(sc->dev, + "allocated initial %s window of %#lx-%#lx\n", + w->name, rman_get_start(res), rman_get_end(res)); + pcib_add_window_resources(w, &res, 1); + pcib_activate_window(sc, type); + w->base = rman_get_start(res); + w->limit = rman_get_end(res); + return (0); +} + +/* Try to expand an existing window to the requested base and limit. */ +static int +pcib_expand_window(struct pcib_softc *sc, struct pcib_window *w, int type, + u_long base, u_long limit) +{ + struct resource *res; + int error, i, force_64k_base; + + KASSERT(base <= w->base && limit >= w->limit, + ("attempting to shrink window")); + + /* + * XXX: pcib_grow_window() doesn't try to do this anyway and + * the error handling for all the edge cases would be tedious. + */ + KASSERT(limit == w->limit || base == w->base, + ("attempting to grow both ends of a window")); + + /* + * Yet more special handling for requests to expand an I/O + * window behind an ISA-enabled bridge. Since I/O windows + * have to grow in 0x1000 increments and the end of the 0xffff + * range is an alias, growing a window below 64k will always + * result in allocating new resources and never adjusting an + * existing resource. + */ + if (type == SYS_RES_IOPORT && sc->bridgectl & PCIB_BCR_ISA_ENABLE && + limit <= 65535 || (base <= 65535 && base != w->base)) { + KASSERT(limit == w->limit || limit <= 65535, + ("attempting to grow both ends across 64k ISA alias")); + + if (base != w->base) + error = pcib_alloc_nonisa_ranges(sc, base, w->base - 1); + else + error = pcib_alloc_nonisa_ranges(sc, w->limit + 1, + limit); + if (error == 0) { + w->base = base; + w->limit = limit; + } + return (error); + } + + /* + * Find the existing resource to adjust. Usually there is only one, + * but for an ISA-enabled bridge we might be growing the I/O window + * above 64k and need to find the existing resource that maps all + * of the area above 64k. + */ + for (i = 0; i < w->count; i++) { + res = w->res[i]; + if (rman_get_end(res) == w->limit) + break; + } + KASSERT(i != w->count, ("did not find existing resource")); + + /* + * Usually the resource we found should match the window's + * existing range. The one exception is the ISA-enabled case + * mentioned above in which case the resource should start at + * 64k. + */ + if (type == SYS_RES_IOPORT && sc->bridgectl & PCIB_BCR_ISA_ENABLE && + w->base <= 65535) { + KASSERT(rman_get_start(res) == 65536, + ("existing resource mismatch")); + force_64k_base = 1; + } else { + KASSERT(w->base == rman_get_start(res), + ("existing resource mismatch")); + force_64k_base = 0; + } + + error = bus_adjust_resource(sc->dev, type, res, force_64k_base ? + rman_get_start(res) : base, limit); + if (error) + return (error); + + /* Add the newly allocated region to the resource manager. */ + if (w->base != base) { + error = rman_manage_region(&w->rman, base, w->base - 1); + w->base = base; + } else { + error = rman_manage_region(&w->rman, w->limit + 1, limit); + w->limit = rman_get_end(w->res); + } + if (error) { + if (bootverbose) + device_printf(sc->dev, + "failed to expand %s resource manager\n", w->name); + (void)bus_adjust_resource(sc->dev, type, res, force_64k_base ? + rman_get_start(res) : w->base, w->limit); + } + return (error); +} + /* * Attempt to grow a window to make room for a given resource request. - * The 'step' parameter is log_2 of the desired I/O window's alignment. */ static int pcib_grow_window(struct pcib_softc *sc, struct pcib_window *w, int type, @@ -971,40 +1233,10 @@ * aligned space for this resource. */ if (w->res == NULL) { - if (RF_ALIGNMENT(flags) < w->step) { - flags &= ~RF_ALIGNMENT_MASK; - flags |= RF_ALIGNMENT_LOG2(w->step); - } - start &= ~wmask; - end |= wmask; - count = roundup2(count, 1ul << w->step); - rid = w->reg; - w->res = bus_alloc_resource(sc->dev, type, &rid, start, end, - count, flags & ~RF_ACTIVE); - if (w->res == NULL) { - if (bootverbose) - device_printf(sc->dev, - "failed to allocate initial %s window (%#lx-%#lx,%#lx)\n", - w->name, start, end, count); - return (ENXIO); - } - if (bootverbose) - device_printf(sc->dev, - "allocated initial %s window of %#lx-%#lx\n", - w->name, rman_get_start(w->res), - rman_get_end(w->res)); - error = rman_manage_region(&w->rman, rman_get_start(w->res), - rman_get_end(w->res)); - if (error) { - if (bootverbose) - device_printf(sc->dev, - "failed to add initial %s window to rman\n", - w->name); - bus_release_resource(sc->dev, type, w->reg, w->res); - w->res = NULL; + error = pcib_alloc_new_window(sc, w, type, start, end, count, + flags); + if (error) return (error); - } - pcib_activate_window(sc, type); goto updatewin; } @@ -1027,10 +1259,10 @@ "attempting to grow %s window for (%#lx-%#lx,%#lx)\n", w->name, start, end, count); align = 1ul << RF_ALIGNMENT(flags); - if (start < rman_get_start(w->res)) { + if (start < w->base) { if (rman_first_free_region(&w->rman, &start_free, &end_free) != - 0 || start_free != rman_get_start(w->res)) - end_free = rman_get_start(w->res); + 0 || start_free != w->base) + end_free = w->base; if (end_free > end) end_free = end + 1; @@ -1051,15 +1283,15 @@ printf("\tfront candidate range: %#lx-%#lx\n", front, end_free); front &= ~wmask; - front = rman_get_start(w->res) - front; + front = w->base - front; } else front = 0; } else front = 0; - if (end > rman_get_end(w->res)) { + if (end > w->limit) { if (rman_last_free_region(&w->rman, &start_free, &end_free) != - 0 || end_free != rman_get_end(w->res)) - start_free = rman_get_end(w->res) + 1; + 0 || end_free != w->limit) + start_free = w->limit + 1; if (start_free < start) start_free = start; @@ -1079,7 +1311,7 @@ printf("\tback candidate range: %#lx-%#lx\n", start_free, back); back |= wmask; - back -= rman_get_end(w->res); + back -= w->limit; } else back = 0; } else @@ -1092,16 +1324,14 @@ error = ENOSPC; while (front != 0 || back != 0) { if (front != 0 && (front <= back || back == 0)) { - error = bus_adjust_resource(sc->dev, type, w->res, - rman_get_start(w->res) - front, - rman_get_end(w->res)); + error = pcib_expand_window(sc, w, type, w->base - front, + w->limit); if (error == 0) break; front = 0; } else { - error = bus_adjust_resource(sc->dev, type, w->res, - rman_get_start(w->res), - rman_get_end(w->res) + back); + error = pcib_expand_window(sc, w, type, w->base, + w->limit + back); if (error == 0) break; back = 0; @@ -1112,37 +1342,10 @@ return (error); if (bootverbose) device_printf(sc->dev, "grew %s window to %#lx-%#lx\n", - w->name, rman_get_start(w->res), rman_get_end(w->res)); - - /* Add the newly allocated region to the resource manager. */ - if (w->base != rman_get_start(w->res)) { - KASSERT(w->limit == rman_get_end(w->res), ("both ends moved")); - error = rman_manage_region(&w->rman, rman_get_start(w->res), - w->base - 1); - if (type == SYS_RES_IOPORT) - pcib_alloc_isa_ranges(sc, rman_get_start(w->res), - w->base - 1); - } else { - KASSERT(w->limit != rman_get_end(w->res), - ("neither end moved")); - error = rman_manage_region(&w->rman, w->limit + 1, - rman_get_end(w->res)); - if (type == SYS_RES_IOPORT) - pcib_alloc_isa_ranges(sc, w->limit + 1, - rman_get_end(w->res)); - } - if (error) { - if (bootverbose) - device_printf(sc->dev, - "failed to expand %s resource manager\n", w->name); - bus_adjust_resource(sc->dev, type, w->res, w->base, w->limit); - return (error); - } + w->name, w->base, w->limit); updatewin: - /* Save the new window. */ - w->base = rman_get_start(w->res); - w->limit = rman_get_end(w->res); + /* Write the new window. */ KASSERT((w->base & wmask) == 0, ("start address is not aligned")); KASSERT((w->limit & wmask) == wmask, ("end address is not aligned")); pcib_write_windows(sc, w->mask); ==== //depot/projects/pci/sys/dev/pci/pcib_private.h#22 (text+ko) ==== @@ -73,7 +73,8 @@ pci_addr_t base; /* base address */ pci_addr_t limit; /* topmost address */ struct rman rman; - struct resource *res; + struct resource **res; + int count; /* size of 'res' array */ int reg; /* resource id from parent */ int valid; int mask; /* WIN_* bitmask of this window */