From owner-p4-projects@FreeBSD.ORG Thu Aug 22 14:29:55 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2479A85C; Thu, 22 Aug 2013 14:29:55 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C19A085A for ; Thu, 22 Aug 2013 14:29:54 +0000 (UTC) (envelope-from jonathan@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [8.8.178.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB5F52169 for ; Thu, 22 Aug 2013 14:29: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 r7METs1b044128 for ; Thu, 22 Aug 2013 14:29:54 GMT (envelope-from jonathan@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r7METsws044125 for perforce@freebsd.org; Thu, 22 Aug 2013 14:29:54 GMT (envelope-from jonathan@freebsd.org) Date: Thu, 22 Aug 2013 14:29:54 GMT Message-Id: <201308221429.r7METsws044125@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jonathan@freebsd.org using -f From: Jonathan Anderson Subject: PERFORCE change 422201 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, 22 Aug 2013 14:29:55 -0000 http://p4web.freebsd.org/@@422201?ac=10 Change 422201 by jonathan@jonathan-on-joe on 2013/08/22 14:29:03 Pull in latest TESLA parts (commit db6ceb) from GitHub. This includes a very large change to how libtesla works; you will need to update TESLA tools to use this! Affected files ... .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#12 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla-macros.h#11 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla.h#10 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_class.c#8 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_debug.c#6 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_internal.h#12 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#16 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_store.c#8 edit .. //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#12 edit Differences ... ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/libtesla.h#12 (text+ko) ==== @@ -31,8 +31,12 @@ * $Id$ */ -#ifndef _TESLA_STATE -#define _TESLA_STATE +#ifndef _LIBTESLA_H +#define _LIBTESLA_H + +#include + +__BEGIN_DECLS /** * Support library for TESLA instrumentation. @@ -66,7 +70,54 @@ const char *tesla_strerror(int32_t error); + /** + * An internal description of a TESLA automaton, which may be instantiated + * a number of times with different names and current states. + */ +struct tesla_class; + +struct tesla_transitions; + +/** + * A static description of a TESLA automaton. + */ +struct tesla_automaton { + /** A unique name, hopefully human-readable. */ + const char *ta_name; + + /** + * The number of symbols in the input alphabet (events that can + * be observed). + * + * Input alphabet symbols are integers in the range [0,alphabet_size]. + */ + const int32_t ta_alphabet_size; + + /** + * Transitions that will be taken in response to events. + * + * The transitions that can be taken in response to event 42 will + * be found in transitions[42]. + */ + const struct tesla_transitions *ta_transitions; + + /** Original source description of the automaton. */ + const char *ta_description; + + /** Human-readable descriptions of input symbols (for debugging). */ + const char* *ta_symbol_names; +}; + + +/** + * Register a @ref tesla_automaton (which must survive for the lifetime of + * libtesla), receiving a registered @ref tesla_class back. + */ +int tesla_register(const struct tesla_automaton*, struct tesla_class**); + + +/** * A storage container for one or more @ref tesla_class objects. * * There may be one @ref tesla_store for each thread (for storing thread-local @@ -105,32 +156,21 @@ /** - * A description of a TESLA automaton, which may be instantiated a number of - * times with different names and current states. - */ -struct tesla_class; - -/** * Retrieve (or create) a @ref tesla_class from a @ref tesla_store. * * Once the caller is done with the @ref tesla_class, @ref tesla_class_put * must be called. * * @param[in] store where the @ref tesla_class is expected to be stored - * @param[in] id a client-generated handle (a small integer, used as - * an index into an array) + * @param[in] description information about the automaton * @param[out] tclass the retrieved (or generated) @ref tesla_class; * only set if function returns TESLA_SUCCESS - * @param[in] name a user-readable name (e.g. an automata filename) - * @param[in] description a user-readable description (for error messages) * * @returns a TESLA error code (TESLA_SUCCESS, TESLA_ERROR_EINVAL, etc.) */ int32_t tesla_class_get(struct tesla_store *store, - uint32_t id, - struct tesla_class **tclass, - const char *name, - const char *description); + const struct tesla_automaton *description, + struct tesla_class **tclass); /** Release resources (e.g., locks) associated with a @ref tesla_class. */ void tesla_class_put(struct tesla_class*); @@ -168,9 +208,6 @@ /** Possible transitions: exactly one must be taken. */ struct tesla_transition *transitions; - - /** A human-readable description for debugging purposes. */ - const char *description; }; #define TESLA_KEY_SIZE 4 @@ -196,10 +233,15 @@ /** * Update all automata instances that match a given key to a new state. + * + * @param context where the automaton is stored + * @param automaton static description of the automaton + * @param symbol identifier of the input symbol (event) to be consumed + * @param pattern the name extracted from the event */ -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*); +void tesla_update_state(enum tesla_context context, + const struct tesla_automaton *automaton, + uint32_t symbol, const struct tesla_key *pattern); /** A single instance of an automaton: a name (@ref ti_key) and a state. */ @@ -227,14 +269,15 @@ /** No @ref tesla_class instance was found to match a @ref tesla_key. */ typedef void (*tesla_ev_no_instance)(struct tesla_class *, - const struct tesla_key *, const struct tesla_transitions *); + int32_t symbol, const struct tesla_key *); /** A @ref tesla_instance is not in the right state to take a transition. */ typedef void (*tesla_ev_bad_transition)(struct tesla_class *, - struct tesla_instance *, const struct tesla_transitions *); + struct tesla_instance *, int32_t symbol); /** Generic error handler. */ -typedef void (*tesla_ev_error)(struct tesla_class *, int32_t, const char *); +typedef void (*tesla_ev_error)(const struct tesla_automaton *, + int32_t symbol, int32_t errno, const char *message); /** A @ref tesla_instance has accepted a sequence of events. */ typedef void (*tesla_ev_accept)(struct tesla_class *, @@ -242,7 +285,7 @@ /** An event is being ignored. */ typedef void (*tesla_ev_ignored)(const struct tesla_class *, - const struct tesla_key *, const struct tesla_transitions *); + int32_t symbol, const struct tesla_key *); /** A vector of event handlers. */ struct tesla_event_handlers { @@ -288,4 +331,6 @@ /** @} */ +__END_DECLS + #endif /* _TESLA_STATE */ ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla-macros.h#11 (text+ko) ==== @@ -32,6 +32,10 @@ #ifndef TESLA_MACROS_H #define TESLA_MACROS_H +#include + +__BEGIN_DECLS + /** * @addtogroup ConsumerAPI * @{ @@ -46,8 +50,8 @@ /** An assertion made within the execution of a particular function. */ #define TESLA_WITHIN(function, expression) \ TESLA_PERTHREAD( \ - callee(called(function)), \ - callee(returned(function)), \ + callee(call(function)), \ + callee(returnfrom(function)), \ expression \ ) @@ -70,8 +74,8 @@ /** A strictly-ordered sequence of events. */ #define TSEQUENCE(...) __tesla_sequence(TIGNORE, __VA_ARGS__) -#define called(...) __tesla_call(((void)__VA_ARGS__, TIGNORE)) -#define returned(...) __tesla_return(__VA_ARGS__) +#define call(...) __tesla_call(((void) __VA_ARGS__, TIGNORE)) +#define returnfrom(...) __tesla_return(((void) (__VA_ARGS__), TIGNORE)) #define callee(...) __tesla_callee(TIGNORE, __VA_ARGS__) #define caller(...) __tesla_caller(TIGNORE, __VA_ARGS__) @@ -104,4 +108,6 @@ /** @} */ +__END_DECLS + #endif /* !TESLA_MACROS_H */ ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/include/tesla.h#10 (text+ko) ==== @@ -39,6 +39,10 @@ #ifndef TESLA_H #define TESLA_H +#include + +__BEGIN_DECLS + /** * API for programmers who want to use TESLA in their code. * @@ -166,6 +170,10 @@ /** In an explicit automata description, return this to say "we're done". */ struct __tesla_automaton_description* __tesla_automaton_done(); +#ifndef __unused +#define __unused +#endif + inline struct __tesla_automaton_usage* __tesla_struct_uses_automaton(__unused const char *automaton, __unused __tesla_locality *loc, ...) @@ -234,4 +242,6 @@ /** @} */ +__END_DECLS + #endif /* TESLA_H */ ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_class.c#8 (text+ko) ==== @@ -151,7 +151,7 @@ return (TESLA_SUCCESS); } - tesla_assert(*out != NULL, ("no free instances but tc_free was > 0")); + tesla_assert(0 && ("no free instances but tc_free was > 0")); return (TESLA_ERROR_ENOMEM); } @@ -189,7 +189,8 @@ tesla_class_reset(struct tesla_class *c) { - DEBUG(libtesla.class.reset, "tesla_class_reset %s\n", c->tc_name); + DEBUG(libtesla.class.reset, "tesla_class_reset %s\n", + c->tc_automaton->ta_name); bzero(c->tc_instances, sizeof(c->tc_instances[0]) * c->tc_limit); c->tc_free = c->tc_limit; ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_debug.c#6 (text+ko) ==== @@ -217,7 +217,7 @@ print("----\n"); print("struct tesla_class @ 0x%tx {\n", (intptr_t) c); - print(" name: '%s',\n", c->tc_name); + print(" name: '%s',\n", c->tc_automaton->ta_name); print(" description: '[...]',\n"); // TL;DR print(" scope: "); switch (c->tc_context) { ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_internal.h#12 (text+ko) ==== @@ -33,6 +33,10 @@ #ifndef TESLA_INTERNAL_H #define TESLA_INTERNAL_H +#include + +__BEGIN_DECLS + /** * @addtogroup libtesla * @{ @@ -181,6 +185,17 @@ const struct tesla_key*, const struct tesla_transitions*, const struct tesla_transition** trigger); +static __inline uint32_t +fnv_hash32(uint32_t x) +{ + return x * ((uint32_t) 0x01000193UL); +} + +static __inline uint64_t +fnv_hash64(uint32_t x) +{ + return x * ((uint64_t) 0x100000001b3ULL); +} #ifndef __unused #if __has_attribute(unused) @@ -230,13 +245,15 @@ * we need to. */ struct tesla_class { - const char *tc_name; /* Name of the assertion. */ - const char *tc_description;/* Automaton representation. */ + /** + * Static automaton description. + */ + const struct tesla_automaton *tc_automaton; enum tesla_context tc_context; /* Global, thread... */ + uint32_t tc_limit; /* Maximum instances. */ - + uint32_t tc_free; /* Unused instances. */ struct tesla_instance *tc_instances; /* Instances of this class. */ - uint32_t tc_free; /* Unused instances. */ #ifdef _KERNEL struct mtx tc_lock; /* Synchronise tc_table. */ @@ -260,8 +277,11 @@ * or in a thread-local context. */ struct tesla_store { - uint32_t length; - struct tesla_class *classes; + /** Number of slots to hold TESLA classes. */ + uint32_t ts_length; + + /** Actual slots that classes might be stored in. */ + struct tesla_class *ts_classes; }; /** @@ -314,17 +334,18 @@ void ev_new_instance(struct tesla_class *, struct tesla_instance *); void ev_transition(struct tesla_class *, struct tesla_instance *, - const struct tesla_transition*); + const struct tesla_transition *); void ev_clone(struct tesla_class *, struct tesla_instance *orig, struct tesla_instance *copy, const struct tesla_transition *); -void ev_no_instance(struct tesla_class *, const struct tesla_key *, - const struct tesla_transitions *); +void ev_no_instance(struct tesla_class *, int32_t symbol, + const struct tesla_key *); 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); + int32_t symbol); +void ev_err(const struct tesla_automaton *, int symbol, int errno, + const char *); void ev_accept(struct tesla_class *, struct tesla_instance *); -void ev_ignored(const struct tesla_class *, const struct tesla_key *, - const struct tesla_transitions *); +void ev_ignored(const struct tesla_class *, int32_t symbol, + const struct tesla_key *); /* * Debug helpers. @@ -414,5 +435,6 @@ /** @} */ +__END_DECLS #endif /* TESLA_INTERNAL_H */ ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_notification.c#16 (text+ko) ==== @@ -143,26 +143,27 @@ } void -ev_no_instance(struct tesla_class *tcp, const struct tesla_key *tkp, - const struct tesla_transitions *ttp) +ev_no_instance(struct tesla_class *tcp, int32_t symbol, + const struct tesla_key *tkp) { - FOREACH_ERROR_HANDLER(teh_fail_no_instance, tcp, tkp, ttp); + FOREACH_ERROR_HANDLER(teh_fail_no_instance, tcp, symbol, tkp); } void ev_bad_transition(struct tesla_class *tcp, struct tesla_instance *tip, - const struct tesla_transitions *ttp) + int32_t symbol) { - FOREACH_ERROR_HANDLER(teh_bad_transition, tcp, tip, ttp); + FOREACH_ERROR_HANDLER(teh_bad_transition, tcp, tip, symbol); } void -ev_err(struct tesla_class *tcp, int errno, const char *message) +ev_err(const struct tesla_automaton *a, int symbol, int errno, + const char *message) { - FOREACH_ERROR_HANDLER(teh_err, tcp, errno, message); + FOREACH_ERROR_HANDLER(teh_err, a, symbol, errno, message); } void @@ -173,11 +174,11 @@ } void -ev_ignored(const struct tesla_class *tcp, const struct tesla_key *tkp, - const struct tesla_transitions *ttp) +ev_ignored(const struct tesla_class *tcp, int32_t symbol, + const struct tesla_key *tkp) { - FOREACH_ERROR_HANDLER(teh_ignored, tcp, tkp, ttp); + FOREACH_ERROR_HANDLER(teh_ignored, tcp, symbol, tkp); } @@ -193,7 +194,9 @@ kdb_backtrace(); #endif - error("In automaton '%s':\n%s\n", tcp->tc_name, tcp->tc_description); + error("In automaton '%s':\n%s\n", + tcp->tc_automaton->ta_name, + tcp->tc_automaton->ta_description); } static void @@ -225,13 +228,16 @@ } static void -print_no_instance(struct tesla_class *tcp, const struct tesla_key *tkp, - const struct tesla_transitions *transp) +print_no_instance(struct tesla_class *tcp, int32_t symbol, + const struct tesla_key *tkp) { assert(tcp != NULL); assert(tkp != NULL); + const tesla_transitions *transp = + tcp->tc_automaton->ta_transitions + symbol; + print_failure_header(tcp); char buffer[ERROR_BUFFER_LENGTH]; @@ -249,12 +255,15 @@ static void print_bad_transition(struct tesla_class *tcp, struct tesla_instance *tip, - const struct tesla_transitions *transp) + int32_t symbol) { assert(tcp != NULL); assert(tip != NULL); + const tesla_transitions *transp + = tcp->tc_automaton->ta_transitions + symbol; + print_failure_header(tcp); char buffer[ERROR_BUFFER_LENGTH]; @@ -274,11 +283,13 @@ } static void -print_error(struct tesla_class *tcp, int errno, const char *message) +print_error(const struct tesla_automaton *a, int symbol, int errno, + const char *message) { - DEBUG(libtesla.event, "%s in '%s': %s\n", - tesla_strerror(errno), tcp->tc_name, message); + DEBUG(libtesla.event, "%s in '%s' %s: %s\n", + message, a->ta_name, a->ta_symbol_names[symbol], + tesla_strerror(errno)); } static void @@ -286,23 +297,18 @@ { DEBUG(libtesla.instance.success, - "pass '%s': %td\n", tcp->tc_name, + "pass '%s': %td\n", tcp->tc_automaton->ta_name, tip - tcp->tc_instances); } static void -print_ignored(const struct tesla_class *tcp, const struct tesla_key *tkp, - const struct tesla_transitions *transp) +print_ignored(const struct tesla_class *tcp, int32_t symbol, + __unused const struct tesla_key *tkp) { - char buffer[ERROR_BUFFER_LENGTH]; - char *next = buffer; - const char *end = buffer + sizeof(buffer); + const struct tesla_automaton *a = tcp->tc_automaton; - next = key_string(next, end, tkp); - SAFE_SPRINTF(next, end, " : "); - sprint_transitions(next, end, transp); - - DEBUG(libtesla.event, "ignore '%s':%s", tcp->tc_name, buffer); + DEBUG(libtesla.event, "ignore '%s': %s", a->ta_name, + a->ta_symbol_names[symbol]); } static const struct tesla_event_handlers printf_handlers = { @@ -331,29 +337,33 @@ * Wrappers that panic on failure: */ static void -panic_no_instance(struct tesla_class *tcp, - __unused const struct tesla_key *tkp, - __unused const struct tesla_transitions *ttp) +panic_no_instance(struct tesla_class *tcp, int32_t symbol, + __unused const struct tesla_key *tkp) { + const char *event_name = tcp->tc_automaton->ta_symbol_names[symbol]; - tesla_panic("TESLA: failure in '%s': no such instance", tcp->tc_name); + tesla_panic("TESLA: failure in '%s' %s: no such instance", + tcp->tc_automaton->ta_name, event_name); } static void panic_bad_transition(struct tesla_class *tcp, - __unused struct tesla_instance *tip, - __unused const struct tesla_transitions *ttp) + __unused struct tesla_instance *tip, int32_t symbol) { + const char *event_name = tcp->tc_automaton->ta_symbol_names[symbol]; - tesla_panic("TESLA: failure in '%s': bad transition", tcp->tc_name); + tesla_panic("TESLA: failure in '%s' %s: bad transition", + tcp->tc_automaton->ta_name, event_name); } static void -panic_errno(struct tesla_class *tcp, int errno, const char *message) +panic_error(const struct tesla_automaton *a, int symbol, int errno, + const char *message) { - tesla_panic("TESLA: %s in '%s': %s", - tesla_strerror(errno), tcp->tc_name, message); + tesla_panic("TESLA: %s in '%s' %s: %s", message, + a->ta_name, a->ta_symbol_names[symbol], + tesla_strerror(errno)); } static const struct tesla_event_handlers failstop_handlers = { @@ -362,7 +372,7 @@ .teh_clone = 0, .teh_fail_no_instance = panic_no_instance, .teh_bad_transition = panic_bad_transition, - .teh_err = panic_errno, + .teh_err = panic_error, .teh_accept = 0, .teh_ignored = 0, }; ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_store.c#8 (text+ko) ==== @@ -43,7 +43,7 @@ void tesla_pthread_destructor(void*); #endif -static struct tesla_store global_store = { .length = 0 }; +static struct tesla_store global_store = { .ts_length = 0 }; static void tesla_class_acquire(tesla_class*); @@ -107,13 +107,13 @@ return (TESLA_ERROR_EINVAL); } - if (store->length == 0) { + if (store->ts_length == 0) { int32_t error = tesla_store_init(store, context, classes, instances); if (error != TESLA_SUCCESS) return (error); - assert(store->classes != NULL); + assert(store->ts_classes != NULL); } *storep = store; @@ -128,19 +128,21 @@ assert(classes > 0); assert(instances > 0); - store->length = classes; - store->classes = tesla_malloc(classes * sizeof(tesla_class)); - if (store->classes == NULL) + store->ts_length = classes; + store->ts_classes = tesla_malloc(classes * sizeof(tesla_class)); + if (store->ts_classes == NULL) return (TESLA_ERROR_ENOMEM); int error = TESLA_SUCCESS; for (uint32_t i = 0; i < classes; i++) { - error = tesla_class_init(store->classes + i, context, instances); + error = tesla_class_init(store->ts_classes + i, + context, instances); + assert(error == TESLA_SUCCESS); if (error != TESLA_SUCCESS) break; - assert(store->classes[i].tc_context >= 0); + assert(store->ts_classes[i].tc_context >= 0); } return (error); @@ -152,8 +154,8 @@ { DEBUG(libtesla.store.free, "tesla_store_free %tx\n", store); - for (uint32_t i = 0; i < store->length; i++) - tesla_class_destroy(store->classes + i); + for (uint32_t i = 0; i < store->ts_length; i++) + tesla_class_destroy(store->ts_classes + i); tesla_free(store); } @@ -164,30 +166,54 @@ { DEBUG(libtesla.store.reset, "tesla_store_reset %tx\n", store); - for (uint32_t i = 0; i < store->length; i++) - tesla_class_reset(store->classes + i); + for (uint32_t i = 0; i < store->ts_length; i++) + tesla_class_reset(store->ts_classes + i); } int32_t -tesla_class_get(tesla_store *store, uint32_t id, tesla_class **tclassp, - const char *name, const char *description) +tesla_class_get(struct tesla_store *store, + const struct tesla_automaton *description, + struct tesla_class **tclassp) { assert(store != NULL); + assert(description != NULL); assert(tclassp != NULL); - if (id >= store->length) - return (TESLA_ERROR_EINVAL); + uint32_t desc_hash = fnv_hash32((uint32_t) description); + const uint32_t len = store->ts_length; + + // Find the class: start at the bucket indicated by the hash but + // walk around the array if there is a collision. + tesla_class *tclass = NULL; + for (uint32_t i = 0; i < len; i++) { + tesla_class *t = store->ts_classes + ((desc_hash + i) % len); + assert(t != NULL); + + // If the bucket is empty, the class doesn't exist in the + // hash table; take ownership of this bucket. + if (t->tc_automaton == NULL) { + t->tc_automaton = description; + tclass = t; + break; + } + + // There is something there; is it the class we're looking for? + if (t->tc_automaton == description) { + tclass = t; + break; + } + + // Otherwise, there is a collision... keep walking around + // the hash table, looking for the desired class. + } + + if (tclass == NULL) + return (TESLA_ERROR_ENOENT); - tesla_class *tclass = &store->classes[id]; - assert(tclass != NULL); assert(tclass->tc_instances != NULL); assert(tclass->tc_context >= 0); - if (tclass->tc_name == NULL) tclass->tc_name = name; - if (tclass->tc_description == NULL) - tclass->tc_description = description; - tesla_class_acquire(tclass); *tclassp = tclass; ==== //depot/projects/ctsrd/tesla/src/sys/contrib/tesla/libtesla/tesla_update.c#12 (text+ko) ==== @@ -42,11 +42,12 @@ #define PRINT(...) DEBUG(libtesla.state.update, __VA_ARGS__) 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) +tesla_update_state(enum tesla_context tesla_context, + const struct tesla_automaton *autom, uint32_t symbol, + const struct tesla_key *pattern) { + const struct tesla_transitions *trans = + autom->ta_transitions + symbol; if (tesla_debugging(DEBUG_NAME)) { /* We should never see with multiple <> transitions. */ @@ -63,7 +64,7 @@ (tesla_context == TESLA_CONTEXT_GLOBAL ? "global" : "per-thread")); - PRINT(" class: %d ('%s')\n", class_id, name); + PRINT(" class: '%s'\n", autom->ta_name); PRINT(" transitions: "); print_transitions(DEBUG_NAME, trans); @@ -80,7 +81,7 @@ PRINT("store: 0x%tx\n", (intptr_t) store); struct tesla_class *class; - ret = tesla_class_get(store, class_id, &class, name, description); + ret = tesla_class_get(store, autom, &class); assert(ret == TESLA_SUCCESS); print_class(class); @@ -113,7 +114,7 @@ switch (action) { case FAIL: - ev_bad_transition(class, inst, trans); + ev_bad_transition(class, inst, symbol); break; case IGNORE: @@ -133,7 +134,7 @@ case FORK: { if (cloned >= max_clones) { err = TESLA_ERROR_ENOMEM; - ev_err(class, err, "too many clones"); + ev_err(autom, symbol, err, "too many clones"); goto cleanup; } @@ -172,7 +173,7 @@ struct tesla_instance *clone; err = tesla_instance_clone(class, c->old, &clone); if (err != TESLA_SUCCESS) { - ev_err(class, err, "failed to clone instance"); + ev_err(autom, symbol, err, "failed to clone instance"); goto cleanup; } @@ -180,7 +181,7 @@ new_name.tk_mask &= c->transition->to_mask; err = tesla_key_union(&clone->ti_key, &new_name); if (err != TESLA_SUCCESS) { - ev_err(class, err, "failed to union keys"); + ev_err(autom, symbol, err, "failed to union keys"); goto cleanup; } @@ -200,7 +201,8 @@ struct tesla_instance *inst; err = tesla_instance_new(class, pattern, t->to, &inst); if (err != TESLA_SUCCESS) { - ev_err(class, err, "failed to create instance"); + ev_err(autom, symbol, err, + "failed to init instance"); goto cleanup; } @@ -215,10 +217,10 @@ // If the class hasn't received any <> events yet, // simply ignore the event: it is out of scope. if (class->tc_free == class->tc_limit) - ev_ignored(class, pattern, trans); + ev_ignored(class, symbol, pattern); // Otherwise, we ought to have matched something. - else ev_no_instance(class, pattern, trans); + else ev_no_instance(class, symbol, pattern); } // Does it cause class cleanup? From owner-p4-projects@FreeBSD.ORG Fri Aug 23 02:50:07 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 3BC81719; Fri, 23 Aug 2013 02:50:07 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EE3DD715 for ; Fri, 23 Aug 2013 02:50:06 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [8.8.178.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA87026DB for ; Fri, 23 Aug 2013 02:50:06 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.7/8.14.7) with ESMTP id r7N2o6i6031356 for ; Fri, 23 Aug 2013 02:50:06 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r7N2o5l3031353 for perforce@freebsd.org; Fri, 23 Aug 2013 02:50:05 GMT (envelope-from jhb@freebsd.org) Date: Fri, 23 Aug 2013 02:50:05 GMT Message-Id: <201308230250.r7N2o5l3031353@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 427953 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, 23 Aug 2013 02:50:07 -0000 http://p4web.freebsd.org/@@427953?ac=10 Change 427953 by jhb@jhb_ralph on 2013/08/23 02:49:39 IFC @425645 Affected files ... .. //depot/projects/pci/sys/amd64/amd64/identcpu.c#7 integrate .. //depot/projects/pci/sys/amd64/amd64/initcpu.c#5 integrate .. //depot/projects/pci/sys/amd64/amd64/minidump_machdep.c#7 integrate .. //depot/projects/pci/sys/amd64/amd64/mp_machdep.c#8 integrate .. //depot/projects/pci/sys/amd64/amd64/pmap.c#9 integrate .. //depot/projects/pci/sys/amd64/amd64/sys_machdep.c#6 integrate .. //depot/projects/pci/sys/amd64/amd64/vm_machdep.c#7 integrate .. //depot/projects/pci/sys/amd64/conf/GENERIC#11 integrate .. //depot/projects/pci/sys/amd64/conf/NOTES#8 integrate .. //depot/projects/pci/sys/amd64/include/acpica_machdep.h#4 integrate .. //depot/projects/pci/sys/amd64/include/asm.h#3 integrate .. //depot/projects/pci/sys/amd64/include/atomic.h#3 integrate .. //depot/projects/pci/sys/amd64/include/cpu.h#4 integrate .. //depot/projects/pci/sys/amd64/include/md_var.h#5 integrate .. //depot/projects/pci/sys/amd64/include/pmap.h#7 integrate .. //depot/projects/pci/sys/amd64/include/vmparam.h#5 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx.c#3 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vtd.c#2 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm.c#3 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_instruction_emul.c#4 integrate .. //depot/projects/pci/sys/arm/allwinner/a20/a20_cpu_cfg.c#1 branch .. //depot/projects/pci/sys/arm/allwinner/a20/a20_cpu_cfg.h#1 branch .. //depot/projects/pci/sys/arm/allwinner/a20/files.a20#1 branch .. //depot/projects/pci/sys/arm/allwinner/a20/std.a20#1 branch .. //depot/projects/pci/sys/arm/allwinner/common.c#3 integrate .. //depot/projects/pci/sys/arm/allwinner/files.a10#3 integrate .. //depot/projects/pci/sys/arm/allwinner/timer.c#3 integrate .. //depot/projects/pci/sys/arm/arm/bus_space_generic.c#4 integrate .. //depot/projects/pci/sys/arm/arm/busdma_machdep-v6.c#4 integrate .. //depot/projects/pci/sys/arm/arm/busdma_machdep.c#6 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc.c#5 integrate .. //depot/projects/pci/sys/arm/arm/exception.S#4 integrate .. //depot/projects/pci/sys/arm/arm/genassym.c#3 integrate .. //depot/projects/pci/sys/arm/arm/gic.c#4 integrate .. //depot/projects/pci/sys/arm/arm/identcpu.c#5 integrate .. //depot/projects/pci/sys/arm/arm/machdep.c#5 integrate .. //depot/projects/pci/sys/arm/arm/mp_machdep.c#3 integrate .. //depot/projects/pci/sys/arm/arm/mpcore_timer.c#3 integrate .. //depot/projects/pci/sys/arm/arm/pl310.c#2 integrate .. //depot/projects/pci/sys/arm/arm/pmap-v6.c#4 integrate .. //depot/projects/pci/sys/arm/arm/pmap.c#7 integrate .. //depot/projects/pci/sys/arm/arm/swtch.S#4 integrate .. //depot/projects/pci/sys/arm/arm/undefined.c#3 integrate .. //depot/projects/pci/sys/arm/arm/vfp.c#4 integrate .. //depot/projects/pci/sys/arm/arm/vm_machdep.c#6 integrate .. //depot/projects/pci/sys/arm/at91/at91.c#4 integrate .. //depot/projects/pci/sys/arm/conf/AC100#3 integrate .. //depot/projects/pci/sys/arm/conf/ARMADAXP#3 integrate .. //depot/projects/pci/sys/arm/conf/ARNDALE#2 integrate .. //depot/projects/pci/sys/arm/conf/ATMEL#3 integrate .. //depot/projects/pci/sys/arm/conf/AVILA#7 integrate .. //depot/projects/pci/sys/arm/conf/BEAGLEBONE#4 integrate .. //depot/projects/pci/sys/arm/conf/BWCT#4 integrate .. //depot/projects/pci/sys/arm/conf/CAMBRIA#8 integrate .. //depot/projects/pci/sys/arm/conf/CNS11XXNAS#4 integrate .. //depot/projects/pci/sys/arm/conf/CRB#6 integrate .. //depot/projects/pci/sys/arm/conf/CUBIEBOARD#3 integrate .. //depot/projects/pci/sys/arm/conf/CUBIEBOARD2#1 branch .. //depot/projects/pci/sys/arm/conf/DB-78XXX#5 integrate .. //depot/projects/pci/sys/arm/conf/DB-88F5XXX#5 integrate .. //depot/projects/pci/sys/arm/conf/DB-88F6XXX#5 integrate .. //depot/projects/pci/sys/arm/conf/DOCKSTAR#5 integrate .. //depot/projects/pci/sys/arm/conf/DREAMPLUG-1001#2 integrate .. //depot/projects/pci/sys/arm/conf/EA3250#2 integrate .. //depot/projects/pci/sys/arm/conf/EB9200#2 integrate .. //depot/projects/pci/sys/arm/conf/EFIKA_MX#2 integrate .. //depot/projects/pci/sys/arm/conf/EP80219#6 integrate .. //depot/projects/pci/sys/arm/conf/ETHERNUT5#2 integrate .. //depot/projects/pci/sys/arm/conf/GUMSTIX#4 integrate .. //depot/projects/pci/sys/arm/conf/HL200#4 integrate .. //depot/projects/pci/sys/arm/conf/HL201#4 integrate .. //depot/projects/pci/sys/arm/conf/IQ31244#6 integrate .. //depot/projects/pci/sys/arm/conf/KB920X#4 integrate .. //depot/projects/pci/sys/arm/conf/LN2410SBC#4 integrate .. //depot/projects/pci/sys/arm/conf/NSLU#4 integrate .. //depot/projects/pci/sys/arm/conf/PANDABOARD#2 integrate .. //depot/projects/pci/sys/arm/conf/QILA9G20#4 integrate .. //depot/projects/pci/sys/arm/conf/RPI-B#4 integrate .. //depot/projects/pci/sys/arm/conf/SAM9260EK#2 integrate .. //depot/projects/pci/sys/arm/conf/SAM9G20EK#4 integrate .. //depot/projects/pci/sys/arm/conf/SAM9X25EK#2 integrate .. //depot/projects/pci/sys/arm/conf/SHEEVAPLUG#5 integrate .. //depot/projects/pci/sys/arm/conf/SN9G45#2 integrate .. //depot/projects/pci/sys/arm/conf/TS7800#5 integrate .. //depot/projects/pci/sys/arm/conf/VERSATILEPB#2 integrate .. //depot/projects/pci/sys/arm/conf/ZEDBOARD#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/console.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/files.imx51#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx.files#2 delete .. //depot/projects/pci/sys/arm/freescale/imx/imx51_machdep.c#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx_gpt.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx_gptreg.h#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx_machdep.c#2 delete .. //depot/projects/pci/sys/arm/freescale/imx/std.imx#2 delete .. //depot/projects/pci/sys/arm/freescale/imx/std.imx51#1 branch .. //depot/projects/pci/sys/arm/include/armreg.h#5 integrate .. //depot/projects/pci/sys/arm/include/asmacros.h#5 integrate .. //depot/projects/pci/sys/arm/include/atomic.h#3 integrate .. //depot/projects/pci/sys/arm/include/cpu.h#4 integrate .. //depot/projects/pci/sys/arm/include/fp.h#3 integrate .. //depot/projects/pci/sys/arm/include/frame.h#4 integrate .. //depot/projects/pci/sys/arm/include/kdb.h#3 integrate .. //depot/projects/pci/sys/arm/include/pcb.h#3 integrate .. //depot/projects/pci/sys/arm/include/pcpu.h#4 integrate .. //depot/projects/pci/sys/arm/include/pmap.h#6 integrate .. //depot/projects/pci/sys/arm/include/smp.h#3 integrate .. //depot/projects/pci/sys/arm/include/vmparam.h#6 integrate .. //depot/projects/pci/sys/arm/mv/armadaxp/armadaxp_mp.c#3 integrate .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2xx0_space.c#3 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_machdep.c#2 integrate .. //depot/projects/pci/sys/arm/ti/am335x/am335x_prcm.c#3 integrate .. //depot/projects/pci/sys/arm/ti/am335x/files.am335x#4 integrate .. //depot/projects/pci/sys/arm/ti/files.ti#2 integrate .. //depot/projects/pci/sys/arm/ti/omap4/omap4_prcm_clks.c#3 integrate .. //depot/projects/pci/sys/arm/ti/ti_prcm.h#3 integrate .. //depot/projects/pci/sys/arm/ti/ti_sdhci.c#1 branch .. //depot/projects/pci/sys/arm/xscale/i80321/i80321_space.c#3 integrate .. //depot/projects/pci/sys/arm/xscale/i8134x/i81342_space.c#3 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/ixp425_pci_space.c#3 integrate .. //depot/projects/pci/sys/boot/arm/uboot/Makefile#4 integrate .. //depot/projects/pci/sys/boot/common/part.c#3 integrate .. //depot/projects/pci/sys/boot/fdt/dts/am335x.dtsi#3 integrate .. //depot/projects/pci/sys/boot/fdt/dts/cubieboard2.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/pandaboard.dts#2 integrate .. //depot/projects/pci/sys/boot/ficl/loader.c#4 integrate .. //depot/projects/pci/sys/boot/forth/beastie.4th#4 integrate .. //depot/projects/pci/sys/boot/forth/color.4th#3 integrate .. //depot/projects/pci/sys/boot/forth/color.4th.8#3 integrate .. //depot/projects/pci/sys/boot/forth/loader.conf.5#5 integrate .. //depot/projects/pci/sys/boot/forth/loader.rc#4 integrate .. //depot/projects/pci/sys/boot/forth/menu.4th#4 integrate .. //depot/projects/pci/sys/boot/forth/menu.4th.8#4 integrate .. //depot/projects/pci/sys/boot/forth/menu.rc#4 integrate .. //depot/projects/pci/sys/boot/forth/version.4th.8#3 integrate .. //depot/projects/pci/sys/boot/pc98/boot2/boot2.c#6 integrate .. //depot/projects/pci/sys/boot/pc98/libpc98/biosdisk.c#4 integrate .. //depot/projects/pci/sys/cam/ata/ata_da.c#10 integrate .. //depot/projects/pci/sys/cam/cam.h#4 integrate .. //depot/projects/pci/sys/cam/cam_ccb.h#8 integrate .. //depot/projects/pci/sys/cam/cam_periph.c#9 integrate .. //depot/projects/pci/sys/cam/cam_queue.c#5 integrate .. //depot/projects/pci/sys/cam/cam_queue.h#4 integrate .. //depot/projects/pci/sys/cam/cam_xpt.c#10 integrate .. //depot/projects/pci/sys/cam/cam_xpt_internal.h#6 integrate .. //depot/projects/pci/sys/cam/cam_xpt_periph.h#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl.c#5 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend_internal.c#4 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_all.h#7 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_da.c#8 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_sa.c#6 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c#3 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/debug_compat.h#1 branch .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/kmem.h#5 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/mutex.h#4 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/rwlock.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_destroy.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h#7 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/amd64/dis_tables.c#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/amd64/dis_tables.h#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_load.c#4 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_unload.c#4 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/i386/dis_tables.c#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/i386/dis_tables.h#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/powerpc/dtrace_asm.S#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c#3 integrate .. //depot/projects/pci/sys/cddl/dev/fbt/fbt.c#5 integrate .. //depot/projects/pci/sys/cddl/dev/sdt/sdt.c#4 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32.h#7 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_capability.c#1 branch .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_misc.c#10 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_misc.h#1 branch .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_proto.h#10 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_signal.h#4 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_syscall.h#10 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_syscalls.c#10 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_sysent.c#10 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_systrace_args.c#8 integrate .. //depot/projects/pci/sys/compat/freebsd32/syscalls.master#10 integrate .. //depot/projects/pci/sys/compat/linux/linux_dtrace.h#2 integrate .. //depot/projects/pci/sys/compat/linux/linux_misc.c#6 integrate .. //depot/projects/pci/sys/compat/ndis/subr_ntoskrnl.c#4 integrate .. //depot/projects/pci/sys/conf/NOTES#13 integrate .. //depot/projects/pci/sys/conf/WITHOUT_SOURCELESS_UCODE#4 integrate .. //depot/projects/pci/sys/conf/files#14 integrate .. //depot/projects/pci/sys/conf/files.amd64#9 integrate .. //depot/projects/pci/sys/conf/files.arm#7 integrate .. //depot/projects/pci/sys/conf/files.i386#11 integrate .. //depot/projects/pci/sys/conf/kern.post.mk#5 integrate .. //depot/projects/pci/sys/conf/kern.pre.mk#9 integrate .. //depot/projects/pci/sys/conf/newvers.sh#8 integrate .. //depot/projects/pci/sys/conf/options#14 integrate .. //depot/projects/pci/sys/conf/options.amd64#4 integrate .. //depot/projects/pci/sys/conf/options.arm#4 integrate .. //depot/projects/pci/sys/conf/options.i386#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/changes.txt#8 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/common/dmextern.c#5 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/common/getopt.c#5 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/compiler/asloffset.c#2 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/compiler/asloperands.c#5 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/compiler/asloptions.c#2 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/compiler/dttemplate.c#5 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/executer/exoparg1.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/hardware/hwtimer.c#3 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/namespace/nspredef.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/namespace/nswalk.c#3 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/namespace/nsxfeval.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/tables/tbfadt.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/tables/tbxfroot.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/utilities/utglobal.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/utilities/utosi.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/components/utilities/utxface.c#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/acglobal.h#7 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/aclocal.h#6 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/acnamesp.h#5 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/acpixf.h#8 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/actables.h#5 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/actypes.h#6 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/include/acutils.h#5 integrate .. //depot/projects/pci/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu#2 delete .. //depot/projects/pci/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu#1 branch .. //depot/projects/pci/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu#1 branch .. //depot/projects/pci/sys/contrib/dev/rsu/rsu-rtl8712fw.fw.uu#1 branch .. //depot/projects/pci/sys/dev/aac/aac_pci.c#8 integrate .. //depot/projects/pci/sys/dev/aac/aacvar.h#5 integrate .. //depot/projects/pci/sys/dev/aacraid/aacraid_pci.c#2 integrate .. //depot/projects/pci/sys/dev/acpica/Osd/OsdSynch.c#4 integrate .. //depot/projects/pci/sys/dev/advansys/adw_pci.c#3 integrate .. //depot/projects/pci/sys/dev/agp/agp.c#5 integrate .. //depot/projects/pci/sys/dev/agp/agp_i810.c#4 integrate .. //depot/projects/pci/sys/dev/ahci/ahci.c#12 integrate .. //depot/projects/pci/sys/dev/ahci/ahci.h#8 integrate .. //depot/projects/pci/sys/dev/aic7xxx/ahc_pci.c#3 integrate .. //depot/projects/pci/sys/dev/aic7xxx/ahd_pci.c#3 integrate .. //depot/projects/pci/sys/dev/aic7xxx/aic7xxx_pci.c#3 integrate .. //depot/projects/pci/sys/dev/amr/amr_pci.c#4 integrate .. //depot/projects/pci/sys/dev/an/if_an_pci.c#3 integrate .. //depot/projects/pci/sys/dev/arcmsr/arcmsr.c#7 integrate .. //depot/projects/pci/sys/dev/asr/asr.c#4 integrate .. //depot/projects/pci/sys/dev/ata/ata-pci.c#6 integrate .. //depot/projects/pci/sys/dev/ata/ata-pci.h#9 integrate .. //depot/projects/pci/sys/dev/ata/chipsets/ata-intel.c#8 integrate .. //depot/projects/pci/sys/dev/ata/chipsets/ata-promise.c#6 integrate .. //depot/projects/pci/sys/dev/ath/if_ath_tx.c#7 integrate .. //depot/projects/pci/sys/dev/bce/if_bce.c#8 integrate .. //depot/projects/pci/sys/dev/bge/if_bge.c#10 integrate .. //depot/projects/pci/sys/dev/bge/if_bgereg.h#10 integrate .. //depot/projects/pci/sys/dev/bktr/bktr_core.c#5 integrate .. //depot/projects/pci/sys/dev/bktr/bktr_os.c#5 integrate .. //depot/projects/pci/sys/dev/buslogic/bt_pci.c#3 integrate .. //depot/projects/pci/sys/dev/bwi/bwimac.c#3 integrate .. //depot/projects/pci/sys/dev/bxe/if_bxe.c#8 integrate .. //depot/projects/pci/sys/dev/ciss/ciss.c#5 integrate .. //depot/projects/pci/sys/dev/cpuctl/cpuctl.c#5 integrate .. //depot/projects/pci/sys/dev/cxgbe/adapter.h#9 integrate .. //depot/projects/pci/sys/dev/cxgbe/common/t4_hw.c#7 integrate .. //depot/projects/pci/sys/dev/cxgbe/common/t4_hw.h#6 integrate .. //depot/projects/pci/sys/dev/cxgbe/t4_ioctl.h#7 integrate .. //depot/projects/pci/sys/dev/cxgbe/t4_main.c#9 integrate .. //depot/projects/pci/sys/dev/cxgbe/t4_sge.c#9 integrate .. //depot/projects/pci/sys/dev/cxgbe/t4_tracer.c#1 branch .. //depot/projects/pci/sys/dev/dpt/dpt_pci.c#3 integrate .. //depot/projects/pci/sys/dev/drm/drm_scatter.c#3 integrate .. //depot/projects/pci/sys/dev/drm2/drm_scatter.c#2 integrate .. //depot/projects/pci/sys/dev/drm2/i915/i915_gem.c#3 integrate .. //depot/projects/pci/sys/dev/drm2/i915/intel_ringbuffer.c#2 integrate .. //depot/projects/pci/sys/dev/drm2/ttm/ttm_bo_util.c#2 integrate .. //depot/projects/pci/sys/dev/drm2/ttm/ttm_bo_vm.c#3 integrate .. //depot/projects/pci/sys/dev/drm2/ttm/ttm_page_alloc.c#2 integrate .. //depot/projects/pci/sys/dev/drm2/ttm/ttm_tt.c#2 integrate .. //depot/projects/pci/sys/dev/e1000/if_em.c#9 integrate .. //depot/projects/pci/sys/dev/e1000/if_igb.c#13 integrate .. //depot/projects/pci/sys/dev/e1000/if_lem.c#7 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch.c#3 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_7240.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_8216.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_8226.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_8316.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_phy.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_reg.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_reg.h#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_vlans.c#1 branch .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitch_vlans.h#1 branch .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitchreg.h#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/arswitch/arswitchvar.h#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/etherswitch.h#3 integrate .. //depot/projects/pci/sys/dev/etherswitch/ip17x/ip175c.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/ip17x/ip175d.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/ip17x/ip17x_vlans.c#2 integrate .. //depot/projects/pci/sys/dev/etherswitch/rtl8366/rtl8366rb.c#3 integrate .. //depot/projects/pci/sys/dev/fatm/if_fatm.c#3 integrate .. //depot/projects/pci/sys/dev/filemon/filemon.c#3 integrate .. //depot/projects/pci/sys/dev/filemon/filemon_wrapper.c#3 integrate .. //depot/projects/pci/sys/dev/firewire/fwohci_pci.c#4 integrate .. //depot/projects/pci/sys/dev/fxp/if_fxp.c#8 integrate .. //depot/projects/pci/sys/dev/hatm/if_hatm.c#3 integrate .. //depot/projects/pci/sys/dev/hwpmc/hwpmc_core.c#7 integrate .. //depot/projects/pci/sys/dev/hwpmc/pmc_events.h#6 integrate .. //depot/projects/pci/sys/dev/ichsmb/ichsmb_pci.c#5 integrate .. //depot/projects/pci/sys/dev/ichwd/ichwd.c#7 integrate .. //depot/projects/pci/sys/dev/ichwd/ichwd.h#6 integrate .. //depot/projects/pci/sys/dev/iir/iir.c#5 integrate .. //depot/projects/pci/sys/dev/iir/iir.h#3 integrate .. //depot/projects/pci/sys/dev/iir/iir_ctrl.c#3 integrate .. //depot/projects/pci/sys/dev/iir/iir_pci.c#3 integrate .. //depot/projects/pci/sys/dev/ipmi/ipmi_isa.c#3 integrate .. //depot/projects/pci/sys/dev/ipmi/ipmivars.h#3 integrate .. //depot/projects/pci/sys/dev/ips/ips_pci.c#3 integrate .. //depot/projects/pci/sys/dev/iscsi/initiator/isc_cam.c#4 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/isc_sm.c#4 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/isc_soc.c#5 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/isc_subr.c#4 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/iscsi.c#5 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/iscsi.h#3 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/iscsi_subr.c#4 delete .. //depot/projects/pci/sys/dev/iscsi/initiator/iscsivar.h#4 delete .. //depot/projects/pci/sys/dev/iscsi_initiator/isc_cam.c#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/isc_sm.c#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/isc_soc.c#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/isc_subr.c#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/iscsi.c#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/iscsi.h#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/iscsi_subr.c#1 branch .. //depot/projects/pci/sys/dev/iscsi_initiator/iscsivar.h#1 branch .. //depot/projects/pci/sys/dev/isp/isp_freebsd.c#5 integrate .. //depot/projects/pci/sys/dev/isp/isp_pci.c#6 integrate .. //depot/projects/pci/sys/dev/iwn/if_iwn.c#8 integrate .. //depot/projects/pci/sys/dev/iwn/if_iwn_devid.h#1 branch .. //depot/projects/pci/sys/dev/iwn/if_iwnreg.h#6 integrate .. //depot/projects/pci/sys/dev/iwn/if_iwnvar.h#6 integrate .. //depot/projects/pci/sys/dev/ixgb/if_ixgb.c#6 integrate .. //depot/projects/pci/sys/dev/ixgbe/ixgbe.c#8 integrate .. //depot/projects/pci/sys/dev/ixgbe/ixv.c#8 integrate .. //depot/projects/pci/sys/dev/md/md.c#8 integrate .. //depot/projects/pci/sys/dev/mfi/mfi_pci.c#4 integrate .. //depot/projects/pci/sys/dev/mfi/mfi_syspd.c#2 integrate .. //depot/projects/pci/sys/dev/mge/if_mge.c#4 integrate .. //depot/projects/pci/sys/dev/mii/brgphy.c#6 integrate .. //depot/projects/pci/sys/dev/mii/miidevs#7 integrate .. //depot/projects/pci/sys/dev/mly/mly.c#5 integrate .. //depot/projects/pci/sys/dev/mmc/mmc.c#6 integrate .. //depot/projects/pci/sys/dev/mmc/mmcsd.c#6 integrate .. //depot/projects/pci/sys/dev/mn/if_mn.c#4 integrate .. //depot/projects/pci/sys/dev/mps/mps.c#5 integrate .. //depot/projects/pci/sys/dev/mps/mps_config.c#3 integrate .. //depot/projects/pci/sys/dev/mps/mps_mapping.c#4 integrate .. //depot/projects/pci/sys/dev/mps/mps_pci.c#5 integrate .. //depot/projects/pci/sys/dev/mps/mps_sas.c#5 integrate .. //depot/projects/pci/sys/dev/mps/mps_sas.h#3 integrate .. //depot/projects/pci/sys/dev/mps/mps_sas_lsi.c#3 integrate .. //depot/projects/pci/sys/dev/mps/mps_table.c#4 integrate .. //depot/projects/pci/sys/dev/mps/mps_user.c#5 integrate .. //depot/projects/pci/sys/dev/mps/mpsvar.h#5 integrate .. //depot/projects/pci/sys/dev/mpt/mpt_pci.c#9 integrate .. //depot/projects/pci/sys/dev/mwl/if_mwl_pci.c#3 integrate .. //depot/projects/pci/sys/dev/mxge/if_mxge.c#8 integrate .. //depot/projects/pci/sys/dev/nvd/nvd.c#4 integrate .. //depot/projects/pci/sys/dev/nvme/nvme.c#4 integrate .. //depot/projects/pci/sys/dev/nvme/nvme.h#4 integrate .. //depot/projects/pci/sys/dev/nvme/nvme_ctrlr.c#4 integrate .. //depot/projects/pci/sys/dev/nvme/nvme_ns.c#4 integrate .. //depot/projects/pci/sys/dev/nvme/nvme_ns_cmd.c#3 integrate .. //depot/projects/pci/sys/dev/nvme/nvme_private.h#4 integrate .. //depot/projects/pci/sys/dev/nvme/nvme_util.c#1 branch .. //depot/projects/pci/sys/dev/pccbb/pccbb_pci.c#10 integrate .. //depot/projects/pci/sys/dev/pci/fixup_pci.c#3 integrate .. //depot/projects/pci/sys/dev/pst/pst-pci.c#4 integrate .. //depot/projects/pci/sys/dev/random/ivy.c#2 integrate .. //depot/projects/pci/sys/dev/random/nehemiah.c#4 integrate .. //depot/projects/pci/sys/dev/random/probe.c#5 integrate .. //depot/projects/pci/sys/dev/random/random_adaptors.c#1 branch .. //depot/projects/pci/sys/dev/random/random_adaptors.h#1 branch .. //depot/projects/pci/sys/dev/random/randomdev.c#4 integrate .. //depot/projects/pci/sys/dev/random/randomdev.h#4 integrate .. //depot/projects/pci/sys/dev/random/randomdev_soft.c#5 integrate .. //depot/projects/pci/sys/dev/random/randomdev_soft.h#3 integrate .. //depot/projects/pci/sys/dev/random/yarrow.c#3 integrate .. //depot/projects/pci/sys/dev/rp/rp_pci.c#3 integrate .. //depot/projects/pci/sys/dev/safe/safe.c#5 integrate .. //depot/projects/pci/sys/dev/scc/scc_bfe.h#3 integrate .. //depot/projects/pci/sys/dev/scc/scc_bfe_ebus.c#5 integrate .. //depot/projects/pci/sys/dev/scc/scc_bfe_macio.c#4 integrate .. //depot/projects/pci/sys/dev/scc/scc_bfe_quicc.c#4 integrate .. //depot/projects/pci/sys/dev/scc/scc_bfe_sbus.c#4 integrate .. //depot/projects/pci/sys/dev/scc/scc_core.c#4 integrate .. //depot/projects/pci/sys/dev/scc/scc_dev_quicc.c#3 integrate .. //depot/projects/pci/sys/dev/scc/scc_dev_sab82532.c#3 integrate .. //depot/projects/pci/sys/dev/scc/scc_dev_z8530.c#3 integrate .. //depot/projects/pci/sys/dev/sdhci/sdhci.c#6 integrate .. //depot/projects/pci/sys/dev/sdhci/sdhci.h#5 integrate .. //depot/projects/pci/sys/dev/sound/pci/als4000.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/aureal.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/cmi.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/cs4281.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/csa.c#4 integrate .. //depot/projects/pci/sys/dev/sound/pci/ds1.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/emu10k1.c#4 integrate .. //depot/projects/pci/sys/dev/sound/pci/emu10kx.c#5 integrate .. //depot/projects/pci/sys/dev/sound/pci/envy24.c#4 integrate .. //depot/projects/pci/sys/dev/sound/pci/envy24ht.c#5 integrate .. //depot/projects/pci/sys/dev/sound/pci/es137x.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/fm801.c#4 integrate .. //depot/projects/pci/sys/dev/sound/pci/hdspe.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/maestro.c#4 integrate .. //depot/projects/pci/sys/dev/sound/pci/maestro3.c#4 integrate .. //depot/projects/pci/sys/dev/sound/pci/neomagic.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/solo.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/t4dwave.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/via82c686.c#3 integrate .. //depot/projects/pci/sys/dev/sound/pci/vibes.c#3 integrate .. //depot/projects/pci/sys/dev/stge/if_stge.c#5 integrate .. //depot/projects/pci/sys/dev/streams/streams.c#5 integrate .. //depot/projects/pci/sys/dev/sym/sym_hipd.c#6 integrate .. //depot/projects/pci/sys/dev/tdfx/tdfx_pci.c#5 integrate .. //depot/projects/pci/sys/dev/ti/if_ti.c#5 integrate .. //depot/projects/pci/sys/dev/twa/tw_osl_freebsd.c#7 integrate .. //depot/projects/pci/sys/dev/tws/tws.c#3 integrate .. //depot/projects/pci/sys/dev/uart/uart.h#5 integrate .. //depot/projects/pci/sys/dev/uart/uart_bus_fdt.c#6 integrate .. //depot/projects/pci/sys/dev/uart/uart_bus_pci.c#7 integrate .. //depot/projects/pci/sys/dev/uart/uart_core.c#6 integrate .. //depot/projects/pci/sys/dev/uart/uart_cpu_fdt.c#3 integrate .. //depot/projects/pci/sys/dev/uart/uart_dev_ns8250.c#6 integrate .. //depot/projects/pci/sys/dev/uart/uart_dev_ns8250.h#1 branch .. //depot/projects/pci/sys/dev/uart/uart_dev_ti8250.c#1 branch .. //depot/projects/pci/sys/dev/ubsec/ubsec.c#4 integrate .. //depot/projects/pci/sys/dev/usb/controller/ehci.c#7 integrate .. //depot/projects/pci/sys/dev/usb/controller/ehci_pci.c#6 integrate .. //depot/projects/pci/sys/dev/usb/controller/ohci_pci.c#5 integrate .. //depot/projects/pci/sys/dev/usb/controller/xhci.c#5 integrate .. //depot/projects/pci/sys/dev/usb/gadget/g_audio.c#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_audio.h#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_keyboard.c#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_keyboard.h#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_modem.c#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_modem.h#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_mouse.c#1 branch .. //depot/projects/pci/sys/dev/usb/gadget/g_mouse.h#1 branch .. //depot/projects/pci/sys/dev/usb/input/ukbd.c#10 integrate .. //depot/projects/pci/sys/dev/usb/net/if_ipheth.c#6 integrate .. //depot/projects/pci/sys/dev/usb/net/if_udav.c#9 integrate .. //depot/projects/pci/sys/dev/usb/serial/uark.c#5 integrate .. //depot/projects/pci/sys/dev/usb/usb_compat_linux.c#5 integrate .. //depot/projects/pci/sys/dev/usb/usb_hub.c#7 integrate .. //depot/projects/pci/sys/dev/usb/usb_ioctl.h#6 integrate .. //depot/projects/pci/sys/dev/usb/usb_pf.c#5 integrate .. //depot/projects/pci/sys/dev/usb/usb_request.c#7 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_rsu.c#1 branch .. //depot/projects/pci/sys/dev/usb/wlan/if_rsureg.h#1 branch .. //depot/projects/pci/sys/dev/usb/wlan/if_rumvar.h#4 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_runvar.h#4 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_uathvar.h#3 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_upgtvar.h#4 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_uralvar.h#4 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_urtwnreg.h#2 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_urtwvar.h#4 integrate .. //depot/projects/pci/sys/dev/usb/wlan/if_zydreg.h#4 integrate .. //depot/projects/pci/sys/dev/virtio/balloon/virtio_balloon.c#4 integrate .. //depot/projects/pci/sys/dev/watchdog/watchdog.c#5 integrate .. //depot/projects/pci/sys/dev/wi/if_wi.c#4 integrate .. //depot/projects/pci/sys/dev/wi/if_wi_macio.c#1 branch .. //depot/projects/pci/sys/dev/wi/if_wi_pci.c#3 integrate .. //depot/projects/pci/sys/dev/xen/blkback/blkback.c#5 integrate .. //depot/projects/pci/sys/dev/xen/netback/netback.c#5 integrate .. //depot/projects/pci/sys/dev/xen/xenpci/xenpci.c#3 integrate .. //depot/projects/pci/sys/fs/cd9660/iso.h#4 integrate .. //depot/projects/pci/sys/fs/devfs/devfs_rule.c#4 integrate .. //depot/projects/pci/sys/fs/devfs/devfs_vnops.c#6 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_alloc.c#7 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_balloc.c#6 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_bmap.c#5 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_dinode.h#7 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_extents.c#1 branch .. //depot/projects/pci/sys/fs/ext2fs/ext2_extents.h#1 branch .. //depot/projects/pci/sys/fs/ext2fs/ext2_extern.h#7 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_hash.c#2 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_inode.c#6 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_inode_cnv.c#6 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_lookup.c#8 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_subr.c#5 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_vfsops.c#9 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2_vnops.c#8 integrate .. //depot/projects/pci/sys/fs/ext2fs/ext2fs.h#8 integrate .. //depot/projects/pci/sys/fs/ext2fs/inode.h#7 integrate .. //depot/projects/pci/sys/fs/fuse/fuse_internal.h#3 integrate .. //depot/projects/pci/sys/fs/fuse/fuse_kernel.h#3 integrate .. //depot/projects/pci/sys/fs/fuse/fuse_vnops.c#3 integrate .. //depot/projects/pci/sys/fs/msdosfs/msdosfs_denode.c#5 integrate .. //depot/projects/pci/sys/fs/msdosfs/msdosfs_vnops.c#5 integrate .. //depot/projects/pci/sys/fs/nfs/nfs_commonsubs.c#8 integrate .. //depot/projects/pci/sys/fs/nfs/nfsport.h#8 integrate .. //depot/projects/pci/sys/fs/nfs/nfsrvcache.h#3 integrate .. //depot/projects/pci/sys/fs/nfsserver/nfs_nfsdcache.c#6 integrate .. //depot/projects/pci/sys/fs/nfsserver/nfs_nfsdport.c#9 integrate .. //depot/projects/pci/sys/fs/smbfs/smbfs_node.c#5 integrate .. //depot/projects/pci/sys/fs/smbfs/smbfs_vnops.c#6 integrate .. //depot/projects/pci/sys/fs/tmpfs/tmpfs.h#5 integrate .. //depot/projects/pci/sys/fs/tmpfs/tmpfs_subr.c#6 integrate .. //depot/projects/pci/sys/fs/tmpfs/tmpfs_vfsops.c#5 integrate .. //depot/projects/pci/sys/fs/tmpfs/tmpfs_vnops.c#6 integrate .. //depot/projects/pci/sys/gdb/gdb_cons.c#4 integrate .. //depot/projects/pci/sys/geom/geom_dev.c#8 integrate .. //depot/projects/pci/sys/geom/geom_pc98.c#5 integrate .. //depot/projects/pci/sys/geom/mirror/g_mirror.c#7 integrate .. //depot/projects/pci/sys/geom/part/g_part.c#6 integrate .. //depot/projects/pci/sys/geom/part/g_part_apm.c#6 integrate .. //depot/projects/pci/sys/geom/part/g_part_gpt.c#6 integrate .. //depot/projects/pci/sys/geom/part/g_part_pc98.c#5 integrate .. //depot/projects/pci/sys/geom/raid/g_raid.c#6 integrate .. //depot/projects/pci/sys/geom/raid/g_raid.h#3 integrate .. //depot/projects/pci/sys/geom/raid/g_raid_ctl.c#3 integrate .. //depot/projects/pci/sys/geom/raid/tr_raid5.c#2 integrate .. //depot/projects/pci/sys/i386/conf/GENERIC#11 integrate .. //depot/projects/pci/sys/i386/conf/NOTES#8 integrate .. //depot/projects/pci/sys/i386/conf/XBOX#7 integrate .. //depot/projects/pci/sys/i386/conf/XEN#5 integrate .. //depot/projects/pci/sys/i386/i386/genassym.c#5 integrate .. //depot/projects/pci/sys/i386/i386/identcpu.c#6 integrate .. //depot/projects/pci/sys/i386/i386/initcpu.c#5 integrate .. //depot/projects/pci/sys/i386/i386/machdep.c#9 integrate .. //depot/projects/pci/sys/i386/i386/mp_machdep.c#7 integrate .. //depot/projects/pci/sys/i386/i386/pmap.c#9 integrate .. //depot/projects/pci/sys/i386/i386/sys_machdep.c#5 integrate .. //depot/projects/pci/sys/i386/i386/vm_machdep.c#7 integrate .. //depot/projects/pci/sys/i386/ibcs2/imgact_coff.c#5 integrate .. //depot/projects/pci/sys/i386/include/acpica_machdep.h#4 integrate .. //depot/projects/pci/sys/i386/include/asm.h#4 integrate .. //depot/projects/pci/sys/i386/include/atomic.h#4 integrate .. //depot/projects/pci/sys/i386/include/cpu.h#5 integrate .. //depot/projects/pci/sys/i386/include/md_var.h#3 integrate .. //depot/projects/pci/sys/i386/include/pmap.h#6 integrate .. //depot/projects/pci/sys/i386/pci/pci_cfgreg.c#4 integrate .. //depot/projects/pci/sys/i386/xen/locore.s#3 integrate .. //depot/projects/pci/sys/i386/xen/mp_machdep.c#7 integrate .. //depot/projects/pci/sys/i386/xen/pmap.c#7 integrate .. //depot/projects/pci/sys/ia64/conf/GENERIC#8 integrate .. //depot/projects/pci/sys/ia64/ia64/mca.c#4 integrate .. //depot/projects/pci/sys/ia64/ia64/mp_machdep.c#7 integrate .. //depot/projects/pci/sys/ia64/ia64/pmap.c#10 integrate .. //depot/projects/pci/sys/ia64/include/acpica_machdep.h#4 integrate .. //depot/projects/pci/sys/ia64/include/cpu.h#3 integrate .. //depot/projects/pci/sys/ia64/pci/pci_cfgreg.c#3 integrate .. //depot/projects/pci/sys/kern/imgact_elf.c#7 integrate .. //depot/projects/pci/sys/kern/imgact_gzip.c#6 integrate .. //depot/projects/pci/sys/kern/init_main.c#6 integrate .. //depot/projects/pci/sys/kern/kern_descrip.c#12 integrate .. //depot/projects/pci/sys/kern/kern_event.c#6 integrate .. //depot/projects/pci/sys/kern/kern_exec.c#8 integrate .. //depot/projects/pci/sys/kern/kern_exit.c#9 integrate .. //depot/projects/pci/sys/kern/kern_fork.c#7 integrate .. //depot/projects/pci/sys/kern/kern_kthread.c#5 integrate .. //depot/projects/pci/sys/kern/kern_linker.c#7 integrate .. //depot/projects/pci/sys/kern/kern_malloc.c#7 integrate .. //depot/projects/pci/sys/kern/kern_mbuf.c#5 integrate .. //depot/projects/pci/sys/kern/kern_mutex.c#5 integrate .. //depot/projects/pci/sys/kern/kern_ntptime.c#4 integrate .. //depot/projects/pci/sys/kern/kern_physio.c#4 integrate .. //depot/projects/pci/sys/kern/kern_poll.c#5 integrate .. //depot/projects/pci/sys/kern/kern_proc.c#9 integrate .. //depot/projects/pci/sys/kern/kern_rangelock.c#2 integrate .. //depot/projects/pci/sys/kern/kern_sdt.c#3 integrate .. //depot/projects/pci/sys/kern/kern_sharedpage.c#3 integrate .. //depot/projects/pci/sys/kern/kern_sig.c#8 integrate .. //depot/projects/pci/sys/kern/kern_synch.c#7 integrate .. //depot/projects/pci/sys/kern/kern_sysctl.c#8 integrate .. //depot/projects/pci/sys/kern/kern_time.c#6 integrate .. //depot/projects/pci/sys/kern/kern_timeout.c#6 integrate .. //depot/projects/pci/sys/kern/kern_uuid.c#4 integrate .. //depot/projects/pci/sys/kern/sched_4bsd.c#9 integrate .. //depot/projects/pci/sys/kern/subr_bus.c#12 integrate .. //depot/projects/pci/sys/kern/subr_busdma_bufalloc.c#2 integrate .. //depot/projects/pci/sys/kern/subr_counter.c#3 integrate .. //depot/projects/pci/sys/kern/subr_uio.c#7 integrate .. //depot/projects/pci/sys/kern/subr_vmem.c#2 integrate .. //depot/projects/pci/sys/kern/subr_witness.c#6 integrate .. //depot/projects/pci/sys/kern/sys_capability.c#8 integrate .. //depot/projects/pci/sys/kern/sys_pipe.c#8 integrate .. //depot/projects/pci/sys/kern/sys_procdesc.c#3 integrate .. //depot/projects/pci/sys/kern/sys_process.c#7 integrate .. //depot/projects/pci/sys/kern/sys_socket.c#4 integrate .. //depot/projects/pci/sys/kern/sysv_shm.c#7 integrate .. //depot/projects/pci/sys/kern/tty_pts.c#7 integrate .. //depot/projects/pci/sys/kern/uipc_mbuf.c#6 integrate .. //depot/projects/pci/sys/kern/uipc_mqueue.c#6 integrate .. //depot/projects/pci/sys/kern/uipc_sem.c#6 integrate .. //depot/projects/pci/sys/kern/uipc_shm.c#7 integrate .. //depot/projects/pci/sys/kern/uipc_syscalls.c#9 integrate .. //depot/projects/pci/sys/kern/vfs_acl.c#5 integrate .. //depot/projects/pci/sys/kern/vfs_aio.c#5 integrate .. //depot/projects/pci/sys/kern/vfs_bio.c#9 integrate .. //depot/projects/pci/sys/kern/vfs_cluster.c#6 integrate .. //depot/projects/pci/sys/kern/vfs_lookup.c#5 integrate .. //depot/projects/pci/sys/kern/vfs_mountroot.c#6 integrate .. //depot/projects/pci/sys/kern/vfs_subr.c#13 integrate .. //depot/projects/pci/sys/kern/vfs_syscalls.c#9 integrate .. //depot/projects/pci/sys/kern/vfs_vnops.c#8 integrate .. //depot/projects/pci/sys/libkern/flsll.c#1 branch .. //depot/projects/pci/sys/mips/atheros/ar71xx_chip.c#7 integrate .. //depot/projects/pci/sys/mips/atheros/ar71xx_cpudef.h#6 integrate .. //depot/projects/pci/sys/mips/atheros/ar71xx_gpio.c#6 integrate .. //depot/projects/pci/sys/mips/atheros/ar71xx_setup.c#5 integrate .. //depot/projects/pci/sys/mips/atheros/ar724x_chip.c#8 integrate .. //depot/projects/pci/sys/mips/atheros/ar91xx_chip.c#8 integrate .. //depot/projects/pci/sys/mips/atheros/ar933x_chip.c#2 integrate .. //depot/projects/pci/sys/mips/atheros/ar934x_chip.c#1 branch .. //depot/projects/pci/sys/mips/atheros/ar934x_chip.h#1 branch .. //depot/projects/pci/sys/mips/atheros/files.ar71xx#5 integrate .. //depot/projects/pci/sys/mips/atheros/uart_bus_ar71xx.c#3 integrate .. //depot/projects/pci/sys/mips/atheros/uart_bus_ar933x.c#2 integrate .. //depot/projects/pci/sys/mips/atheros/uart_cpu_ar71xx.c#3 integrate .. //depot/projects/pci/sys/mips/atheros/uart_cpu_ar933x.c#2 integrate .. //depot/projects/pci/sys/mips/cavium/std.octeon1#3 integrate .. //depot/projects/pci/sys/mips/conf/AR71XX_BASE#3 integrate .. //depot/projects/pci/sys/mips/conf/AR724X_BASE#2 integrate .. //depot/projects/pci/sys/mips/conf/AR91XX_BASE#6 integrate .. //depot/projects/pci/sys/mips/conf/AR933X_BASE#2 integrate .. //depot/projects/pci/sys/mips/conf/AR934X_BASE#1 branch .. //depot/projects/pci/sys/mips/conf/AR934X_BASE.hints#1 branch .. //depot/projects/pci/sys/mips/conf/BERI_TEMPLATE#2 integrate .. //depot/projects/pci/sys/mips/conf/DB120#1 branch .. //depot/projects/pci/sys/mips/conf/DB120.hints#1 branch .. //depot/projects/pci/sys/mips/conf/DIR-825#2 integrate .. //depot/projects/pci/sys/mips/conf/DIR-825.hints#2 integrate .. //depot/projects/pci/sys/mips/conf/GXEMUL#2 integrate .. //depot/projects/pci/sys/mips/conf/OCTEON1#10 integrate .. //depot/projects/pci/sys/mips/conf/PB92#5 integrate .. //depot/projects/pci/sys/mips/conf/RT305X#5 integrate .. //depot/projects/pci/sys/mips/conf/XLR64#5 integrate .. //depot/projects/pci/sys/mips/conf/XLRN32#5 integrate .. //depot/projects/pci/sys/mips/conf/std.SWARM#6 integrate .. //depot/projects/pci/sys/mips/conf/std.XLP#4 integrate .. //depot/projects/pci/sys/mips/include/cpu.h#4 integrate .. //depot/projects/pci/sys/mips/mips/mp_machdep.c#6 integrate .. //depot/projects/pci/sys/mips/mips/pmap.c#7 integrate .. //depot/projects/pci/sys/mips/mips/vm_machdep.c#8 integrate .. //depot/projects/pci/sys/mips/sibyte/sb_zbpci.c#3 integrate .. //depot/projects/pci/sys/modules/Makefile#12 integrate .. //depot/projects/pci/sys/modules/cxgbe/if_cxgbe/Makefile#5 integrate .. //depot/projects/pci/sys/modules/cyclic/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/Makefile#6 integrate .. //depot/projects/pci/sys/modules/dtrace/dtio/Makefile#2 integrate .. //depot/projects/pci/sys/modules/dtrace/dtmalloc/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/dtnfscl/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/dtnfsclient/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/dtrace/Makefile#5 integrate .. //depot/projects/pci/sys/modules/dtrace/dtrace_test/Makefile#4 integrate .. //depot/projects/pci/sys/modules/dtrace/dtraceall/Makefile#5 integrate .. //depot/projects/pci/sys/modules/dtrace/fasttrap/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/fbt/Makefile#4 integrate .. //depot/projects/pci/sys/modules/dtrace/lockstat/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/profile/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/prototype/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/sdt/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/systrace/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/systrace_freebsd32/Makefile#3 integrate .. //depot/projects/pci/sys/modules/dtrace/systrace_linux32/Makefile#4 integrate .. //depot/projects/pci/sys/modules/ext2fs/Makefile#5 integrate .. //depot/projects/pci/sys/modules/iscsi/initiator/Makefile#3 delete .. //depot/projects/pci/sys/modules/iscsi_initiator/Makefile#1 branch .. //depot/projects/pci/sys/modules/iwn/Makefile#3 integrate .. //depot/projects/pci/sys/modules/iwnfw/Makefile#4 integrate .. //depot/projects/pci/sys/modules/iwnfw/iwn2030/Makefile#1 branch .. //depot/projects/pci/sys/modules/iwnfw/iwn6000g2a/Makefile#3 integrate .. //depot/projects/pci/sys/modules/nvme/Makefile#3 integrate .. //depot/projects/pci/sys/modules/opensolaris/Makefile#3 integrate .. //depot/projects/pci/sys/modules/random/Makefile#4 integrate .. //depot/projects/pci/sys/modules/runfw/Makefile#4 delete .. //depot/projects/pci/sys/modules/usb/Makefile#9 integrate .. //depot/projects/pci/sys/modules/usb/g_audio/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/g_keyboard/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/g_modem/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/g_mouse/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/rsu/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/rsufw/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/rsufw/Makefile.inc#1 branch .. //depot/projects/pci/sys/modules/usb/rsufw/rsurtl8712fw/Makefile#1 branch .. //depot/projects/pci/sys/modules/usb/runfw/Makefile#1 branch .. //depot/projects/pci/sys/modules/vmm/Makefile#2 integrate .. //depot/projects/pci/sys/modules/wi/Makefile#4 integrate .. //depot/projects/pci/sys/modules/zfs/Makefile#5 integrate .. //depot/projects/pci/sys/net/ieee8023ad_lacp.c#6 integrate .. //depot/projects/pci/sys/net/ieee8023ad_lacp.h#3 integrate .. //depot/projects/pci/sys/net/if_bridge.c#7 integrate .. //depot/projects/pci/sys/net/if_ethersubr.c#8 integrate .. //depot/projects/pci/sys/net/if_lagg.c#11 integrate .. //depot/projects/pci/sys/net/if_lagg.h#7 integrate .. //depot/projects/pci/sys/net/if_tun.c#7 integrate .. //depot/projects/pci/sys/net/rtsock.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211.h#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_action.c#5 integrate .. //depot/projects/pci/sys/net80211/ieee80211_freebsd.c#5 integrate .. //depot/projects/pci/sys/net80211/ieee80211_freebsd.h#4 integrate .. //depot/projects/pci/sys/net80211/ieee80211_hostap.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_hwmp.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_input.c#8 integrate .. //depot/projects/pci/sys/net80211/ieee80211_mesh.c#8 integrate .. //depot/projects/pci/sys/net80211/ieee80211_node.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_output.c#10 integrate .. //depot/projects/pci/sys/net80211/ieee80211_phy.c#4 integrate .. //depot/projects/pci/sys/net80211/ieee80211_power.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_proto.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_proto.h#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_scan_sta.c#6 integrate .. //depot/projects/pci/sys/net80211/ieee80211_superg.c#4 integrate .. //depot/projects/pci/sys/net80211/ieee80211_tdma.c#4 integrate .. //depot/projects/pci/sys/net80211/ieee80211_var.h#8 integrate .. //depot/projects/pci/sys/net80211/ieee80211_wds.c#5 integrate .. //depot/projects/pci/sys/netgraph/ng_pppoe.c#5 integrate .. //depot/projects/pci/sys/netgraph/ng_pppoe.h#3 integrate .. //depot/projects/pci/sys/netinet/if_ether.c#9 integrate .. //depot/projects/pci/sys/netinet/igmp.c#5 integrate .. //depot/projects/pci/sys/netinet/in_mcast.c#5 integrate .. //depot/projects/pci/sys/netinet/ip_carp.c#7 integrate .. //depot/projects/pci/sys/netinet/ip_fastfwd.c#3 integrate .. //depot/projects/pci/sys/netinet/ip_input.c#8 integrate .. //depot/projects/pci/sys/netinet/ip_output.c#7 integrate .. //depot/projects/pci/sys/netinet/ip_var.h#8 integrate .. //depot/projects/pci/sys/netinet/sctp.h#7 integrate .. //depot/projects/pci/sys/netinet/sctp_asconf.c#7 integrate .. //depot/projects/pci/sys/netinet/sctp_dtrace_define.h#5 integrate .. //depot/projects/pci/sys/netinet/sctp_indata.c#8 integrate .. //depot/projects/pci/sys/netinet/sctp_input.c#9 integrate .. //depot/projects/pci/sys/netinet/sctp_os_bsd.h#6 integrate .. //depot/projects/pci/sys/netinet/sctp_output.c#8 integrate .. //depot/projects/pci/sys/netinet/sctp_pcb.h#5 integrate .. //depot/projects/pci/sys/netinet/sctp_structs.h#7 integrate .. //depot/projects/pci/sys/netinet/sctp_sysctl.c#8 integrate .. //depot/projects/pci/sys/netinet/sctp_uio.h#6 integrate .. //depot/projects/pci/sys/netinet/sctp_usrreq.c#8 integrate .. //depot/projects/pci/sys/netinet/tcp_input.c#10 integrate .. //depot/projects/pci/sys/netinet/udp_usrreq.c#8 integrate .. //depot/projects/pci/sys/netinet6/icmp6.c#7 integrate .. //depot/projects/pci/sys/netinet6/in6.c#9 integrate .. //depot/projects/pci/sys/netinet6/in6.h#6 integrate .. //depot/projects/pci/sys/netinet6/in6_ifattach.c#6 integrate .. //depot/projects/pci/sys/netinet6/in6_mcast.c#4 integrate .. //depot/projects/pci/sys/netinet6/ip6_forward.c#5 integrate .. //depot/projects/pci/sys/netinet6/ip6_id.c#3 integrate .. //depot/projects/pci/sys/netinet6/ip6_mroute.c#5 integrate .. //depot/projects/pci/sys/netinet6/ip6_var.h#7 integrate .. //depot/projects/pci/sys/netinet6/mld6.c#5 integrate .. //depot/projects/pci/sys/netinet6/nd6.c#10 integrate .. //depot/projects/pci/sys/netinet6/nd6_rtr.c#6 integrate .. //depot/projects/pci/sys/netinet6/raw_ip6.c#6 integrate .. //depot/projects/pci/sys/netinet6/send.c#4 integrate .. //depot/projects/pci/sys/netinet6/udp6_usrreq.c#8 integrate .. //depot/projects/pci/sys/netipsec/ipsec.h#6 integrate .. //depot/projects/pci/sys/netpfil/pf/if_pfsync.c#3 integrate .. //depot/projects/pci/sys/netpfil/pf/pf.c#3 integrate .. //depot/projects/pci/sys/nfs/bootp_subr.c#5 integrate .. //depot/projects/pci/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c#5 integrate .. //depot/projects/pci/sys/ofed/drivers/net/mlx4/en_netdev.c#3 integrate .. //depot/projects/pci/sys/ofed/drivers/net/mlx4/en_tx.c#4 integrate .. //depot/projects/pci/sys/ofed/include/linux/bitops.h#2 integrate .. //depot/projects/pci/sys/ofed/include/linux/dma-mapping.h#2 integrate .. //depot/projects/pci/sys/ofed/include/linux/gfp.h#3 integrate .. //depot/projects/pci/sys/ofed/include/linux/linux_compat.c#5 integrate .. //depot/projects/pci/sys/ofed/include/linux/module.h#2 integrate .. //depot/projects/pci/sys/ofed/include/linux/page.h#3 integrate .. //depot/projects/pci/sys/ofed/include/linux/sysfs.h#3 integrate .. //depot/projects/pci/sys/ofed/include/rdma/sdp_socket.h#2 integrate .. //depot/projects/pci/sys/opencrypto/cryptodev.c#5 integrate .. //depot/projects/pci/sys/pc98/conf/GENERIC#8 integrate .. //depot/projects/pci/sys/pc98/pc98/machdep.c#9 integrate .. //depot/projects/pci/sys/pci/ncr.c#4 integrate .. //depot/projects/pci/sys/powerpc/aim/mmu_oea.c#8 integrate .. //depot/projects/pci/sys/powerpc/aim/mmu_oea64.c#10 integrate .. //depot/projects/pci/sys/powerpc/aim/vm_machdep.c#4 integrate .. //depot/projects/pci/sys/powerpc/booke/pmap.c#8 integrate .. //depot/projects/pci/sys/powerpc/booke/vm_machdep.c#4 integrate .. //depot/projects/pci/sys/powerpc/conf/GENERIC#8 integrate .. //depot/projects/pci/sys/powerpc/conf/GENERIC64#8 integrate .. //depot/projects/pci/sys/powerpc/conf/MPC85XX#6 integrate .. //depot/projects/pci/sys/powerpc/conf/WII#2 integrate .. //depot/projects/pci/sys/powerpc/include/cpu.h#3 integrate .. //depot/projects/pci/sys/powerpc/include/spr.h#5 integrate .. //depot/projects/pci/sys/powerpc/ofw/ofw_real.c#5 integrate .. //depot/projects/pci/sys/powerpc/ofw/ofw_syscons.c#4 integrate .. //depot/projects/pci/sys/powerpc/powermac/macio.c#5 integrate .. //depot/projects/pci/sys/powerpc/powermac/maciovar.h#4 integrate .. //depot/projects/pci/sys/powerpc/powerpc/busdma_machdep.c#6 integrate .. //depot/projects/pci/sys/powerpc/powerpc/mp_machdep.c#7 integrate .. //depot/projects/pci/sys/security/mac/mac_framework.h#4 integrate .. //depot/projects/pci/sys/security/mac/mac_policy.h#4 integrate .. //depot/projects/pci/sys/security/mac/mac_posix_shm.c#4 integrate .. //depot/projects/pci/sys/security/mac_biba/mac_biba.c#4 integrate .. //depot/projects/pci/sys/security/mac_mls/mac_mls.c#4 integrate .. //depot/projects/pci/sys/security/mac_stub/mac_stub.c#4 integrate .. //depot/projects/pci/sys/security/mac_test/mac_test.c#4 integrate .. //depot/projects/pci/sys/sparc64/conf/GENERIC#8 integrate .. //depot/projects/pci/sys/sparc64/include/atomic.h#5 integrate .. //depot/projects/pci/sys/sparc64/include/cpu.h#5 integrate .. //depot/projects/pci/sys/sparc64/include/pmap.h#5 integrate .. //depot/projects/pci/sys/sparc64/sparc64/bus_machdep.c#7 integrate .. //depot/projects/pci/sys/sparc64/sparc64/genassym.c#5 integrate .. //depot/projects/pci/sys/sparc64/sparc64/mem.c#4 integrate .. //depot/projects/pci/sys/sparc64/sparc64/mp_machdep.c#8 integrate .. //depot/projects/pci/sys/sparc64/sparc64/pmap.c#10 integrate .. //depot/projects/pci/sys/sparc64/sparc64/vm_machdep.c#7 integrate .. //depot/projects/pci/sys/sys/buf.h#6 integrate .. //depot/projects/pci/sys/sys/conf.h#6 integrate .. //depot/projects/pci/sys/sys/diskpc98.h#4 integrate .. //depot/projects/pci/sys/sys/event.h#4 integrate .. //depot/projects/pci/sys/sys/eventhandler.h#6 integrate .. //depot/projects/pci/sys/sys/file.h#7 integrate .. //depot/projects/pci/sys/sys/filedesc.h#7 integrate .. //depot/projects/pci/sys/sys/kernel.h#5 integrate .. //depot/projects/pci/sys/sys/libkern.h#5 integrate .. //depot/projects/pci/sys/sys/linker.h#3 integrate .. //depot/projects/pci/sys/sys/mbuf.h#8 integrate .. //depot/projects/pci/sys/sys/mman.h#4 integrate .. //depot/projects/pci/sys/sys/param.h#12 integrate .. //depot/projects/pci/sys/sys/priv.h#7 integrate .. //depot/projects/pci/sys/sys/proc.h#9 integrate .. //depot/projects/pci/sys/sys/rangelock.h#2 integrate .. //depot/projects/pci/sys/sys/sched.h#4 integrate .. //depot/projects/pci/sys/sys/sdt.h#6 integrate .. //depot/projects/pci/sys/sys/socket.h#6 integrate .. //depot/projects/pci/sys/sys/stat.h#4 integrate .. //depot/projects/pci/sys/sys/stdatomic.h#3 integrate .. //depot/projects/pci/sys/sys/syscallsubr.h#6 integrate .. //depot/projects/pci/sys/sys/uio.h#7 integrate .. //depot/projects/pci/sys/sys/uuid.h#3 integrate .. //depot/projects/pci/sys/sys/vmmeter.h#4 integrate .. //depot/projects/pci/sys/sys/wait.h#3 integrate .. //depot/projects/pci/sys/ufs/ffs/ffs_softdep.c#13 integrate .. //depot/projects/pci/sys/ufs/ufs/ufs_vnops.c#8 integrate .. //depot/projects/pci/sys/vm/_vm_radix.h#2 integrate .. //depot/projects/pci/sys/vm/device_pager.c#8 integrate .. //depot/projects/pci/sys/vm/memguard.c#4 integrate .. //depot/projects/pci/sys/vm/memguard.h#4 integrate .. //depot/projects/pci/sys/vm/phys_pager.c#4 integrate .. //depot/projects/pci/sys/vm/pmap.h#4 integrate .. //depot/projects/pci/sys/vm/sg_pager.c#5 integrate .. //depot/projects/pci/sys/vm/swap_pager.c#9 integrate .. //depot/projects/pci/sys/vm/uma_core.c#8 integrate .. //depot/projects/pci/sys/vm/uma_int.h#5 integrate .. //depot/projects/pci/sys/vm/vm.h#4 integrate .. //depot/projects/pci/sys/vm/vm_extern.h#6 integrate .. //depot/projects/pci/sys/vm/vm_fault.c#10 integrate .. //depot/projects/pci/sys/vm/vm_glue.c#7 integrate .. //depot/projects/pci/sys/vm/vm_init.c#4 integrate .. //depot/projects/pci/sys/vm/vm_kern.c#7 integrate .. //depot/projects/pci/sys/vm/vm_kern.h#4 integrate .. //depot/projects/pci/sys/vm/vm_map.c#9 integrate .. //depot/projects/pci/sys/vm/vm_map.h#6 integrate .. //depot/projects/pci/sys/vm/vm_mmap.c#8 integrate .. //depot/projects/pci/sys/vm/vm_object.c#9 integrate .. //depot/projects/pci/sys/vm/vm_object.h#7 integrate .. //depot/projects/pci/sys/vm/vm_page.c#10 integrate .. //depot/projects/pci/sys/vm/vm_page.h#8 integrate .. //depot/projects/pci/sys/vm/vm_pageout.c#8 integrate .. //depot/projects/pci/sys/vm/vm_param.h#3 integrate .. //depot/projects/pci/sys/vm/vm_phys.c#6 integrate .. //depot/projects/pci/sys/vm/vm_phys.h#5 integrate .. //depot/projects/pci/sys/vm/vm_radix.c#2 integrate .. //depot/projects/pci/sys/vm/vm_radix.h#2 integrate .. //depot/projects/pci/sys/vm/vm_zeroidle.c#3 integrate .. //depot/projects/pci/sys/vm/vnode_pager.c#8 integrate .. //depot/projects/pci/sys/x86/acpica/srat.c#5 integrate .. //depot/projects/pci/sys/x86/include/acpica_machdep.h#1 branch .. //depot/projects/pci/sys/x86/include/specialreg.h#3 integrate .. //depot/projects/pci/sys/x86/isa/clock.c#7 integrate .. //depot/projects/pci/sys/x86/x86/busdma_machdep.c#6 integrate .. //depot/projects/pci/sys/xen/gnttab.c#3 integrate Differences ... ==== //depot/projects/pci/sys/amd64/amd64/identcpu.c#7 (text+ko) ==== @@ -39,7 +39,7 @@ */ #include -__FBSDID("$FreeBSD: head/sys/amd64/amd64/identcpu.c 250495 2013-05-11 01:31:51Z rpaulo $"); +__FBSDID("$FreeBSD: head/sys/amd64/amd64/identcpu.c 253747 2013-07-28 17:54:42Z avg $"); #include "opt_cpu.h" @@ -532,6 +532,13 @@ } } + if (cpu_high >= 5 && (cpu_feature2 & CPUID2_MON) != 0) { + do_cpuid(5, regs); + cpu_mon_mwait_flags = regs[2]; + cpu_mon_min_size = regs[0] & CPUID5_MON_MIN_SIZE; + cpu_mon_max_size = regs[1] & CPUID5_MON_MAX_SIZE; + } + if (cpu_high >= 7) { cpuid_count(7, 0, regs); cpu_stdext_feature = regs[1]; ==== //depot/projects/pci/sys/amd64/amd64/initcpu.c#5 (text+ko) ==== @@ -28,7 +28,7 @@ */ #include -__FBSDID("$FreeBSD: head/sys/amd64/amd64/initcpu.c 242433 2012-11-01 15:17:43Z kib $"); +__FBSDID("$FreeBSD: head/sys/amd64/amd64/initcpu.c 254374 2013-08-15 17:44:44Z brooks $"); #include "opt_cpu.h" @@ -75,6 +75,9 @@ u_int cpu_clflush_line_size = 32; u_int cpu_stdext_feature; u_int cpu_max_ext_state_size; +u_int cpu_mon_mwait_flags; /* MONITOR/MWAIT flags (CPUID.05H.ECX) */ +u_int cpu_mon_min_size; /* MONITOR minimum range size, bytes */ +u_int cpu_mon_max_size; /* MONITOR minimum range size, bytes */ SYSCTL_UINT(_hw, OID_AUTO, via_feature_rng, CTLFLAG_RD, &via_feature_rng, 0, "VIA RNG feature available in CPU"); @@ -189,7 +192,7 @@ } void -initializecpucache() +initializecpucache(void) { /* ==== //depot/projects/pci/sys/amd64/amd64/minidump_machdep.c#7 (text) ==== @@ -25,7 +25,7 @@ */ #include -__FBSDID("$FreeBSD: head/sys/amd64/amd64/minidump_machdep.c 246384 2013-02-06 04:53:00Z neel $"); +__FBSDID("$FreeBSD: head/sys/amd64/amd64/minidump_machdep.c 254547 2013-08-20 02:09:26Z neel $"); #include "opt_pmap.h" #include "opt_watchdog.h" @@ -39,6 +39,7 @@ #include #include #include +#include #include #include #include @@ -220,8 +221,8 @@ vm_offset_t va; int error; >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Fri Aug 23 03:09:30 2013 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0E97AAFC; Fri, 23 Aug 2013 03:09:30 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C3D4BAFA for ; Fri, 23 Aug 2013 03:09:29 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [8.8.178.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF8C22822 for ; Fri, 23 Aug 2013 03:09: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 r7N39TIj058613 for ; Fri, 23 Aug 2013 03:09:29 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.7/8.14.6/Submit) id r7N39RBr058599 for perforce@freebsd.org; Fri, 23 Aug 2013 03:09:27 GMT (envelope-from jhb@freebsd.org) Date: Fri, 23 Aug 2013 03:09:27 GMT Message-Id: <201308230309.r7N39RBr058599@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 428105 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, 23 Aug 2013 03:09:30 -0000 http://p4web.freebsd.org/@@428105?ac=10 Change 428105 by jhb@jhb_ralph on 2013/08/23 03:08:55 IFC @425645 Affected files ... .. //depot/projects/smpng/share/man/man9/EVENTHANDLER.9#6 integrate .. //depot/projects/smpng/share/man/man9/Makefile#37 integrate .. //depot/projects/smpng/share/man/man9/SDT.9#1 branch .. //depot/projects/smpng/share/man/man9/VOP_GETPAGES.9#6 integrate .. //depot/projects/smpng/share/man/man9/atomic.9#6 integrate .. //depot/projects/smpng/share/man/man9/bus_dma.9#5 integrate .. //depot/projects/smpng/share/man/man9/locking.9#16 integrate .. //depot/projects/smpng/share/man/man9/microuptime.9#3 integrate .. //depot/projects/smpng/share/man/man9/mutex.9#5 integrate .. //depot/projects/smpng/share/man/man9/netisr.9#10 integrate .. //depot/projects/smpng/share/man/man9/sleep.9#8 integrate .. //depot/projects/smpng/share/man/man9/vm_page_alloc.9#6 integrate .. //depot/projects/smpng/share/man/man9/vm_page_busy.9#1 branch .. //depot/projects/smpng/share/man/man9/vm_page_grab.9#3 integrate .. //depot/projects/smpng/share/man/man9/vm_page_io.9#4 delete .. //depot/projects/smpng/share/man/man9/vm_page_sleep_if_busy.9#3 delete .. //depot/projects/smpng/share/man/man9/vm_page_wakeup.9#4 delete .. //depot/projects/smpng/share/man/man9/vmem.9#1 branch .. //depot/projects/smpng/sys/amd64/amd64/identcpu.c#49 integrate .. //depot/projects/smpng/sys/amd64/amd64/initcpu.c#20 integrate .. //depot/projects/smpng/sys/amd64/amd64/machdep.c#115 integrate .. //depot/projects/smpng/sys/amd64/amd64/minidump_machdep.c#16 integrate .. //depot/projects/smpng/sys/amd64/amd64/mp_machdep.c#88 integrate .. //depot/projects/smpng/sys/amd64/amd64/pmap.c#129 integrate .. //depot/projects/smpng/sys/amd64/amd64/sys_machdep.c#20 integrate .. //depot/projects/smpng/sys/amd64/amd64/vm_machdep.c#60 integrate .. //depot/projects/smpng/sys/amd64/conf/GENERIC#107 integrate .. //depot/projects/smpng/sys/amd64/conf/NOTES#71 integrate .. //depot/projects/smpng/sys/amd64/include/acpica_machdep.h#10 integrate .. //depot/projects/smpng/sys/amd64/include/asm.h#10 integrate .. //depot/projects/smpng/sys/amd64/include/atomic.h#39 integrate .. //depot/projects/smpng/sys/amd64/include/counter.h#3 integrate .. //depot/projects/smpng/sys/amd64/include/cpu.h#13 integrate .. //depot/projects/smpng/sys/amd64/include/md_var.h#29 integrate .. //depot/projects/smpng/sys/amd64/include/pmap.h#46 integrate .. //depot/projects/smpng/sys/amd64/include/vmparam.h#23 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/ept.c#3 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vmx.c#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vtd.c#3 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm.c#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm_instruction_emul.c#3 integrate .. //depot/projects/smpng/sys/arm/allwinner/a20/a20_cpu_cfg.c#1 branch .. //depot/projects/smpng/sys/arm/allwinner/a20/a20_cpu_cfg.h#1 branch .. //depot/projects/smpng/sys/arm/allwinner/a20/files.a20#1 branch .. //depot/projects/smpng/sys/arm/allwinner/a20/std.a20#1 branch .. //depot/projects/smpng/sys/arm/allwinner/common.c#3 integrate .. //depot/projects/smpng/sys/arm/allwinner/files.a10#3 integrate .. //depot/projects/smpng/sys/arm/allwinner/timer.c#3 integrate .. //depot/projects/smpng/sys/arm/arm/bus_space_generic.c#3 integrate .. //depot/projects/smpng/sys/arm/arm/busdma_machdep-v6.c#5 integrate .. //depot/projects/smpng/sys/arm/arm/busdma_machdep.c#41 integrate .. //depot/projects/smpng/sys/arm/arm/cpufunc.c#29 integrate .. //depot/projects/smpng/sys/arm/arm/db_trace.c#25 integrate .. //depot/projects/smpng/sys/arm/arm/elf_trampoline.c#32 integrate .. //depot/projects/smpng/sys/arm/arm/exception.S#13 integrate .. //depot/projects/smpng/sys/arm/arm/genassym.c#15 integrate .. //depot/projects/smpng/sys/arm/arm/generic_timer.c#1 branch .. //depot/projects/smpng/sys/arm/arm/gic.c#4 integrate .. //depot/projects/smpng/sys/arm/arm/identcpu.c#24 integrate .. //depot/projects/smpng/sys/arm/arm/machdep.c#44 integrate .. //depot/projects/smpng/sys/arm/arm/mp_machdep.c#5 integrate .. //depot/projects/smpng/sys/arm/arm/mpcore_timer.c#4 integrate .. //depot/projects/smpng/sys/arm/arm/pl310.c#3 integrate .. //depot/projects/smpng/sys/arm/arm/pmap-v6.c#6 integrate .. //depot/projects/smpng/sys/arm/arm/pmap.c#74 integrate .. //depot/projects/smpng/sys/arm/arm/swtch.S#25 integrate .. //depot/projects/smpng/sys/arm/arm/trap.c#38 integrate .. //depot/projects/smpng/sys/arm/arm/undefined.c#21 integrate .. //depot/projects/smpng/sys/arm/arm/vfp.c#5 integrate .. //depot/projects/smpng/sys/arm/arm/vm_machdep.c#43 integrate .. //depot/projects/smpng/sys/arm/at91/at91.c#27 integrate .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/bcm2835_fb.c#3 integrate .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/bcm2835_mbox.c#3 integrate .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/bcm2835_mbox.h#3 integrate .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c#3 integrate .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/files.bcm2835#4 integrate .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/std.bcm2835#1 branch .. //depot/projects/smpng/sys/arm/broadcom/bcm2835/std.rpi#1 branch .. //depot/projects/smpng/sys/arm/conf/AC100#4 integrate .. //depot/projects/smpng/sys/arm/conf/ARMADAXP#5 integrate .. //depot/projects/smpng/sys/arm/conf/ARNDALE#1 branch .. //depot/projects/smpng/sys/arm/conf/ATMEL#5 integrate .. //depot/projects/smpng/sys/arm/conf/AVILA#30 integrate .. //depot/projects/smpng/sys/arm/conf/BEAGLEBONE#6 integrate .. //depot/projects/smpng/sys/arm/conf/BWCT#15 integrate .. //depot/projects/smpng/sys/arm/conf/CAMBRIA#22 integrate .. //depot/projects/smpng/sys/arm/conf/CNS11XXNAS#7 integrate .. //depot/projects/smpng/sys/arm/conf/CRB#14 integrate .. //depot/projects/smpng/sys/arm/conf/CUBIEBOARD#3 integrate .. //depot/projects/smpng/sys/arm/conf/CUBIEBOARD2#1 branch .. //depot/projects/smpng/sys/arm/conf/DB-78XXX#14 integrate .. //depot/projects/smpng/sys/arm/conf/DB-88F5XXX#13 integrate .. //depot/projects/smpng/sys/arm/conf/DB-88F6XXX#15 integrate .. //depot/projects/smpng/sys/arm/conf/DOCKSTAR#7 integrate .. //depot/projects/smpng/sys/arm/conf/DREAMPLUG-1001#2 integrate .. //depot/projects/smpng/sys/arm/conf/EA3250#4 integrate .. //depot/projects/smpng/sys/arm/conf/EB9200#3 integrate .. //depot/projects/smpng/sys/arm/conf/EFIKA_MX#2 integrate .. //depot/projects/smpng/sys/arm/conf/EP80219#18 integrate .. //depot/projects/smpng/sys/arm/conf/ETHERNUT5#4 integrate .. //depot/projects/smpng/sys/arm/conf/GUMSTIX#11 integrate .. //depot/projects/smpng/sys/arm/conf/HL200#17 integrate .. //depot/projects/smpng/sys/arm/conf/HL201#8 integrate .. //depot/projects/smpng/sys/arm/conf/IQ31244#27 integrate .. //depot/projects/smpng/sys/arm/conf/KB920X#27 integrate .. //depot/projects/smpng/sys/arm/conf/LN2410SBC#8 integrate .. //depot/projects/smpng/sys/arm/conf/NSLU#13 integrate .. //depot/projects/smpng/sys/arm/conf/PANDABOARD#4 integrate .. //depot/projects/smpng/sys/arm/conf/QILA9G20#8 integrate .. //depot/projects/smpng/sys/arm/conf/RPI-B#4 integrate .. //depot/projects/smpng/sys/arm/conf/SAM9260EK#3 integrate .. //depot/projects/smpng/sys/arm/conf/SAM9G20EK#8 integrate .. //depot/projects/smpng/sys/arm/conf/SAM9X25EK#5 integrate .. //depot/projects/smpng/sys/arm/conf/SHEEVAPLUG#11 integrate .. //depot/projects/smpng/sys/arm/conf/SN9G45#4 integrate .. //depot/projects/smpng/sys/arm/conf/TS7800#7 integrate .. //depot/projects/smpng/sys/arm/conf/VERSATILEPB#2 integrate .. //depot/projects/smpng/sys/arm/conf/ZEDBOARD#2 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/console.c#3 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/files.imx51#1 branch .. //depot/projects/smpng/sys/arm/freescale/imx/imx.files#2 delete .. //depot/projects/smpng/sys/arm/freescale/imx/imx51_machdep.c#1 branch .. //depot/projects/smpng/sys/arm/freescale/imx/imx_gpt.c#3 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_gptreg.h#3 integrate .. //depot/projects/smpng/sys/arm/freescale/imx/imx_machdep.c#3 delete .. //depot/projects/smpng/sys/arm/freescale/imx/std.imx#2 delete .. //depot/projects/smpng/sys/arm/freescale/imx/std.imx51#1 branch .. //depot/projects/smpng/sys/arm/include/armreg.h#17 integrate .. //depot/projects/smpng/sys/arm/include/asmacros.h#13 integrate .. //depot/projects/smpng/sys/arm/include/atomic.h#37 integrate .. //depot/projects/smpng/sys/arm/include/counter.h#2 integrate .. //depot/projects/smpng/sys/arm/include/cpu.h#10 integrate .. //depot/projects/smpng/sys/arm/include/fp.h#6 integrate .. //depot/projects/smpng/sys/arm/include/frame.h#8 integrate .. //depot/projects/smpng/sys/arm/include/intr.h#17 integrate .. //depot/projects/smpng/sys/arm/include/kdb.h#7 integrate .. //depot/projects/smpng/sys/arm/include/pcb.h#9 integrate .. //depot/projects/smpng/sys/arm/include/pcpu.h#11 integrate .. //depot/projects/smpng/sys/arm/include/pmap.h#42 integrate .. //depot/projects/smpng/sys/arm/include/smp.h#4 integrate .. //depot/projects/smpng/sys/arm/include/vmparam.h#22 integrate .. //depot/projects/smpng/sys/arm/mv/armadaxp/armadaxp_mp.c#4 integrate .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2xx0_space.c#4 integrate .. //depot/projects/smpng/sys/arm/samsung/exynos/arch_timer.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/bus_space.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/common.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/ehci_exynos5.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/exynos5_machdep.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/exynos5_mp.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/files.exynos5#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/std.exynos5#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/uart.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/exynos/uart.h#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_pmic.c#3 integrate .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_prcm.c#4 integrate .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_pwm.c#2 integrate .. //depot/projects/smpng/sys/arm/ti/am335x/am335x_usbss.c#1 branch .. //depot/projects/smpng/sys/arm/ti/am335x/files.am335x#4 integrate .. //depot/projects/smpng/sys/arm/ti/files.ti#3 integrate .. //depot/projects/smpng/sys/arm/ti/omap4/omap4_prcm_clks.c#4 integrate .. //depot/projects/smpng/sys/arm/ti/ti_mmchs.c#5 integrate .. //depot/projects/smpng/sys/arm/ti/ti_mmchs.h#3 integrate .. //depot/projects/smpng/sys/arm/ti/ti_prcm.h#4 integrate .. //depot/projects/smpng/sys/arm/ti/ti_sdhci.c#1 branch .. //depot/projects/smpng/sys/arm/versatile/versatile_pci.c#2 integrate .. //depot/projects/smpng/sys/arm/versatile/versatile_sic.c#2 integrate .. //depot/projects/smpng/sys/arm/xscale/i80321/i80321_space.c#9 integrate .. //depot/projects/smpng/sys/arm/xscale/i8134x/i81342_space.c#4 integrate .. //depot/projects/smpng/sys/arm/xscale/ixp425/ixp425_pci_space.c#4 integrate .. //depot/projects/smpng/sys/boot/arm/uboot/Makefile#11 integrate .. //depot/projects/smpng/sys/boot/common/part.c#5 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/am335x-evm.dts#2 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/am335x.dtsi#3 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/bcm2835-rpi-b.dts#4 delete .. //depot/projects/smpng/sys/boot/fdt/dts/bcm2835.dtsi#1 branch .. //depot/projects/smpng/sys/boot/fdt/dts/beaglebone-black.dts#2 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/beaglebone.dts#6 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/cubieboard2.dts#1 branch .. //depot/projects/smpng/sys/boot/fdt/dts/exynos5250-arndale.dts#1 branch .. //depot/projects/smpng/sys/boot/fdt/dts/exynos5250.dtsi#1 branch .. //depot/projects/smpng/sys/boot/fdt/dts/pandaboard.dts#3 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/rpi.dts#1 branch .. //depot/projects/smpng/sys/boot/ficl/loader.c#11 integrate .. //depot/projects/smpng/sys/boot/forth/beastie.4th#20 integrate .. //depot/projects/smpng/sys/boot/forth/color.4th#5 integrate .. //depot/projects/smpng/sys/boot/forth/color.4th.8#6 integrate .. //depot/projects/smpng/sys/boot/forth/loader.conf#79 integrate .. //depot/projects/smpng/sys/boot/forth/loader.conf.5#19 integrate .. //depot/projects/smpng/sys/boot/forth/loader.rc#5 integrate .. //depot/projects/smpng/sys/boot/forth/menu.4th#8 integrate .. //depot/projects/smpng/sys/boot/forth/menu.4th.8#7 integrate .. //depot/projects/smpng/sys/boot/forth/menu.rc#5 integrate .. //depot/projects/smpng/sys/boot/forth/version.4th.8#5 integrate .. //depot/projects/smpng/sys/boot/i386/gptboot/Makefile#11 integrate .. //depot/projects/smpng/sys/boot/i386/gptboot/gptboot.8#1 branch .. //depot/projects/smpng/sys/boot/pc98/boot2/boot2.c#11 integrate .. //depot/projects/smpng/sys/boot/pc98/libpc98/biosdisk.c#21 integrate .. //depot/projects/smpng/sys/cam/ata/ata_da.c#24 integrate .. //depot/projects/smpng/sys/cam/cam.h#12 integrate .. //depot/projects/smpng/sys/cam/cam_ccb.h#29 integrate .. //depot/projects/smpng/sys/cam/cam_periph.c#54 integrate .. //depot/projects/smpng/sys/cam/cam_queue.c#11 integrate .. //depot/projects/smpng/sys/cam/cam_queue.h#7 integrate .. //depot/projects/smpng/sys/cam/cam_xpt.c#87 integrate .. //depot/projects/smpng/sys/cam/cam_xpt_internal.h#11 integrate .. //depot/projects/smpng/sys/cam/cam_xpt_periph.h#10 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl.c#7 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_backend_ramdisk.c#4 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_frontend_internal.c#6 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_all.c#45 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_all.h#30 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_ch.c#30 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_da.c#111 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_sa.c#45 integrate .. //depot/projects/smpng/sys/cam/scsi/scsi_xpt.c#16 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c#6 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c#7 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/sys/debug_compat.h#1 branch .. //depot/projects/smpng/sys/cddl/compat/opensolaris/sys/kmem.h#8 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/sys/mutex.h#8 integrate .. //depot/projects/smpng/sys/cddl/compat/opensolaris/sys/rwlock.h#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c#17 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c#26 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c#15 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c#18 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c#16 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c#15 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c#12 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c#17 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c#10 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c#14 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h#5 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h#5 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h#9 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h#12 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_destroy.h#2 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h#13 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h#13 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h#12 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h#5 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h#5 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zvol.h#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#16 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c#19 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c#11 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c#8 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c#10 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c#6 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c#15 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c#3 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c#12 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#27 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c#26 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#38 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c#24 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c#21 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c#4 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h#7 integrate .. //depot/projects/smpng/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h#12 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/amd64/dis_tables.c#4 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/amd64/dis_tables.h#3 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/dtrace_ioctl.c#8 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/dtrace_load.c#6 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/dtrace_unload.c#5 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/i386/dis_tables.c#4 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/i386/dis_tables.h#3 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/powerpc/dtrace_asm.S#3 integrate .. //depot/projects/smpng/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c#3 integrate .. //depot/projects/smpng/sys/cddl/dev/fbt/fbt.c#5 integrate .. //depot/projects/smpng/sys/cddl/dev/sdt/sdt.c#5 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32.h#20 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_capability.c#1 branch .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_misc.c#82 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_misc.h#1 branch .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_proto.h#77 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_signal.h#6 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_syscall.h#76 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_syscalls.c#76 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_sysent.c#77 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_systrace_args.c#10 integrate .. //depot/projects/smpng/sys/compat/freebsd32/syscalls.master#80 integrate .. //depot/projects/smpng/sys/compat/linux/linux_dtrace.h#3 integrate .. //depot/projects/smpng/sys/compat/linux/linux_ioctl.c#77 integrate .. //depot/projects/smpng/sys/compat/linux/linux_ioctl.h#24 integrate .. //depot/projects/smpng/sys/compat/linux/linux_misc.c#112 integrate .. //depot/projects/smpng/sys/compat/linux/linux_videodev.h#4 delete .. //depot/projects/smpng/sys/compat/linux/linux_videodev2.h#3 delete .. //depot/projects/smpng/sys/compat/ndis/subr_ntoskrnl.c#58 integrate .. //depot/projects/smpng/sys/conf/Makefile.amd64#24 integrate .. //depot/projects/smpng/sys/conf/Makefile.arm#43 integrate .. //depot/projects/smpng/sys/conf/NOTES#204 integrate .. //depot/projects/smpng/sys/conf/WITHOUT_SOURCELESS_HOST#3 integrate .. //depot/projects/smpng/sys/conf/WITHOUT_SOURCELESS_UCODE#3 integrate .. //depot/projects/smpng/sys/conf/files#287 integrate .. //depot/projects/smpng/sys/conf/files.amd64#96 integrate .. //depot/projects/smpng/sys/conf/files.arm#29 integrate .. //depot/projects/smpng/sys/conf/files.i386#154 integrate .. //depot/projects/smpng/sys/conf/files.ia64#76 integrate .. //depot/projects/smpng/sys/conf/files.mips#23 integrate .. //depot/projects/smpng/sys/conf/files.pc98#115 integrate .. //depot/projects/smpng/sys/conf/files.powerpc#78 integrate .. //depot/projects/smpng/sys/conf/files.sparc64#86 integrate .. //depot/projects/smpng/sys/conf/kern.post.mk#76 integrate .. //depot/projects/smpng/sys/conf/kern.pre.mk#81 integrate .. //depot/projects/smpng/sys/conf/kmod.mk#90 integrate .. //depot/projects/smpng/sys/conf/newvers.sh#39 integrate .. //depot/projects/smpng/sys/conf/options#202 integrate .. //depot/projects/smpng/sys/conf/options.amd64#35 integrate .. //depot/projects/smpng/sys/conf/options.arm#33 integrate .. //depot/projects/smpng/sys/conf/options.i386#70 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/changes.txt#25 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/dmextern.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/common/getopt.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asloffset.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asloperands.c#13 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/asloptions.c#2 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/compiler/dttemplate.c#8 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/executer/exoparg1.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/hardware/hwtimer.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nspredef.c#7 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nswalk.c#3 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/namespace/nsxfeval.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/tables/tbfadt.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/tables/tbxfroot.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utglobal.c#6 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utosi.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/components/utilities/utxface.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acglobal.h#22 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/aclocal.h#21 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acnamesp.h#12 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acpixf.h#25 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/actables.h#8 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/actypes.h#19 integrate .. //depot/projects/smpng/sys/contrib/dev/acpica/include/acutils.h#16 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c#4 integrate .. //depot/projects/smpng/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu#2 delete .. //depot/projects/smpng/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/dev/rsu/rsu-rtl8712fw.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/dev/urtwn/LICENSE#1 branch .. //depot/projects/smpng/sys/contrib/dev/urtwn/urtwn-rtl8192cfwT.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/dev/urtwn/urtwn-rtl8192cfwU.fw.uu#1 branch .. //depot/projects/smpng/sys/contrib/v4l/videodev.h#1 branch .. //depot/projects/smpng/sys/contrib/v4l/videodev2.h#1 branch .. //depot/projects/smpng/sys/crypto/sha2/sha2.c#11 integrate .. //depot/projects/smpng/sys/crypto/sha2/sha2.h#4 integrate .. //depot/projects/smpng/sys/crypto/siphash/siphash.c#1 branch .. //depot/projects/smpng/sys/crypto/siphash/siphash.h#1 branch .. //depot/projects/smpng/sys/crypto/siphash/siphash_test.c#1 branch .. //depot/projects/smpng/sys/dev/aac/aac_pci.c#57 integrate .. //depot/projects/smpng/sys/dev/aac/aacvar.h#42 integrate .. //depot/projects/smpng/sys/dev/aacraid/aacraid_pci.c#2 integrate .. //depot/projects/smpng/sys/dev/acpica/Osd/OsdSynch.c#28 integrate .. //depot/projects/smpng/sys/dev/acpica/acpi_pcib.c#41 integrate .. //depot/projects/smpng/sys/dev/acpica/acpi_pcib_acpi.c#41 integrate .. //depot/projects/smpng/sys/dev/acpica/acpi_resource.c#37 integrate .. //depot/projects/smpng/sys/dev/advansys/adw_pci.c#16 integrate .. //depot/projects/smpng/sys/dev/ae/if_ae.c#17 integrate .. //depot/projects/smpng/sys/dev/ae/if_aereg.h#3 integrate .. //depot/projects/smpng/sys/dev/agp/agp.c#18 integrate .. //depot/projects/smpng/sys/dev/agp/agp_i810.c#18 integrate .. //depot/projects/smpng/sys/dev/ahci/ahci.c#30 integrate .. //depot/projects/smpng/sys/dev/ahci/ahci.h#12 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/ahc_pci.c#25 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/ahd_pci.c#24 integrate .. //depot/projects/smpng/sys/dev/aic7xxx/aic7xxx_pci.c#21 integrate .. //depot/projects/smpng/sys/dev/amr/amr_pci.c#34 integrate .. //depot/projects/smpng/sys/dev/an/if_an_pci.c#23 integrate .. //depot/projects/smpng/sys/dev/arcmsr/arcmsr.c#33 integrate .. //depot/projects/smpng/sys/dev/arcmsr/arcmsr.h#13 integrate .. //depot/projects/smpng/sys/dev/asr/asr.c#47 integrate .. //depot/projects/smpng/sys/dev/ata/ata-pci.c#85 integrate .. //depot/projects/smpng/sys/dev/ata/ata-pci.h#82 integrate .. //depot/projects/smpng/sys/dev/ata/chipsets/ata-intel.c#22 integrate .. //depot/projects/smpng/sys/dev/ata/chipsets/ata-promise.c#19 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_rx_edma.c#6 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_tx.c#13 integrate .. //depot/projects/smpng/sys/dev/bce/if_bce.c#52 integrate .. //depot/projects/smpng/sys/dev/bce/if_bcereg.h#32 integrate .. //depot/projects/smpng/sys/dev/bge/if_bge.c#132 integrate .. //depot/projects/smpng/sys/dev/bge/if_bgereg.h#75 integrate .. //depot/projects/smpng/sys/dev/bktr/bktr_core.c#23 integrate .. //depot/projects/smpng/sys/dev/bktr/bktr_os.c#37 integrate .. //depot/projects/smpng/sys/dev/buslogic/bt_pci.c#14 integrate .. //depot/projects/smpng/sys/dev/bwi/bwimac.c#5 integrate .. //depot/projects/smpng/sys/dev/bxe/if_bxe.c#9 integrate .. //depot/projects/smpng/sys/dev/ciss/ciss.c#74 integrate .. //depot/projects/smpng/sys/dev/cpuctl/cpuctl.c#7 integrate .. //depot/projects/smpng/sys/dev/cxgbe/adapter.h#11 integrate .. //depot/projects/smpng/sys/dev/cxgbe/common/common.h#9 integrate .. //depot/projects/smpng/sys/dev/cxgbe/common/t4_hw.c#9 integrate .. //depot/projects/smpng/sys/dev/cxgbe/common/t4_hw.h#6 integrate .. //depot/projects/smpng/sys/dev/cxgbe/common/t4_msg.h#6 integrate .. //depot/projects/smpng/sys/dev/cxgbe/common/t4_regs_values.h#3 integrate .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t4fw-1.8.11.0.bin.uu#1 branch .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t4fw-1.8.4.0.bin.uu#2 delete .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t4fw_cfg.txt#5 integrate .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt#4 integrate .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t4fw_interface.h#7 integrate .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t5fw-1.8.22.0.bin.uu#1 branch .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t5fw_cfg.txt#1 branch .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t5fw_cfg_fpga.txt#1 branch .. //depot/projects/smpng/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt#1 branch .. //depot/projects/smpng/sys/dev/cxgbe/offload.h#9 integrate .. //depot/projects/smpng/sys/dev/cxgbe/t4_ioctl.h#8 integrate .. //depot/projects/smpng/sys/dev/cxgbe/t4_main.c#15 integrate .. //depot/projects/smpng/sys/dev/cxgbe/t4_sge.c#12 integrate .. //depot/projects/smpng/sys/dev/cxgbe/t4_tracer.c#1 branch .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_connect.c#5 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_listen.c#6 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_tom.c#5 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_tom.h#6 integrate .. //depot/projects/smpng/sys/dev/dpt/dpt_pci.c#18 integrate .. //depot/projects/smpng/sys/dev/drm/drm_scatter.c#13 integrate .. //depot/projects/smpng/sys/dev/drm2/drm_scatter.c#3 integrate .. //depot/projects/smpng/sys/dev/drm2/i915/i915_gem.c#6 integrate .. //depot/projects/smpng/sys/dev/drm2/i915/intel_ringbuffer.c#3 integrate .. //depot/projects/smpng/sys/dev/drm2/ttm/ttm_bo_util.c#2 integrate .. //depot/projects/smpng/sys/dev/drm2/ttm/ttm_bo_vm.c#2 integrate .. //depot/projects/smpng/sys/dev/drm2/ttm/ttm_page_alloc.c#2 integrate .. //depot/projects/smpng/sys/dev/drm2/ttm/ttm_tt.c#3 integrate .. //depot/projects/smpng/sys/dev/e1000/if_em.c#37 integrate .. //depot/projects/smpng/sys/dev/e1000/if_igb.c#42 integrate .. //depot/projects/smpng/sys/dev/e1000/if_lem.c#18 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch.c#6 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_7240.c#3 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_8216.c#3 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_8226.c#3 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_8316.c#3 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_phy.c#4 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_reg.c#4 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_reg.h#3 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_vlans.c#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitch_vlans.h#1 branch .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitchreg.h#3 integrate .. //depot/projects/smpng/sys/dev/etherswitch/arswitch/arswitchvar.h#4 integrate .. //depot/projects/smpng/sys/dev/etherswitch/etherswitch.h#5 integrate .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip175c.c#2 integrate .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip175d.c#2 integrate .. //depot/projects/smpng/sys/dev/etherswitch/ip17x/ip17x_vlans.c#2 integrate .. //depot/projects/smpng/sys/dev/etherswitch/rtl8366/rtl8366rb.c#4 integrate .. //depot/projects/smpng/sys/dev/fatm/if_fatm.c#25 integrate .. //depot/projects/smpng/sys/dev/filemon/filemon.c#4 integrate .. //depot/projects/smpng/sys/dev/filemon/filemon_wrapper.c#5 integrate .. //depot/projects/smpng/sys/dev/firewire/fwohci_pci.c#47 integrate .. //depot/projects/smpng/sys/dev/fxp/if_fxp.c#106 integrate .. //depot/projects/smpng/sys/dev/hatm/if_hatm.c#25 integrate .. //depot/projects/smpng/sys/dev/hme/if_hme.c#41 integrate .. //depot/projects/smpng/sys/dev/hpt27xx/hpt27xx_config.c#4 integrate .. //depot/projects/smpng/sys/dev/hpt27xx/hpt27xx_os_bsd.c#1 branch .. //depot/projects/smpng/sys/dev/hpt27xx/hpt27xx_osm_bsd.c#1 branch .. //depot/projects/smpng/sys/dev/hpt27xx/os_bsd.c#3 delete .. //depot/projects/smpng/sys/dev/hpt27xx/osm_bsd.c#4 delete .. //depot/projects/smpng/sys/dev/hptiop/hptiop.c#15 integrate .. //depot/projects/smpng/sys/dev/hptnr/README#1 branch .. //depot/projects/smpng/sys/dev/hptnr/amd64-elf.hptnr_lib.o.uu#1 branch .. //depot/projects/smpng/sys/dev/hptnr/array.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/him.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/himfuncs.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/hptintf.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/hptnr_config.c#1 branch .. //depot/projects/smpng/sys/dev/hptnr/hptnr_config.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/hptnr_os_bsd.c#1 branch .. //depot/projects/smpng/sys/dev/hptnr/hptnr_osm_bsd.c#1 branch .. //depot/projects/smpng/sys/dev/hptnr/i386-elf.hptnr_lib.o.uu#1 branch .. //depot/projects/smpng/sys/dev/hptnr/ldm.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/list.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/os_bsd.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/osm.h#1 branch .. //depot/projects/smpng/sys/dev/hptnr/wj.h#1 branch .. //depot/projects/smpng/sys/dev/hwpmc/hwpmc_core.c#18 integrate .. //depot/projects/smpng/sys/dev/hwpmc/pmc_events.h#17 integrate .. //depot/projects/smpng/sys/dev/ichsmb/ichsmb_pci.c#24 integrate .. //depot/projects/smpng/sys/dev/ichwd/ichwd.c#25 integrate .. //depot/projects/smpng/sys/dev/ichwd/ichwd.h#14 integrate .. //depot/projects/smpng/sys/dev/iir/iir.c#28 integrate .. //depot/projects/smpng/sys/dev/iir/iir.h#17 integrate .. //depot/projects/smpng/sys/dev/iir/iir_ctrl.c#19 integrate .. //depot/projects/smpng/sys/dev/iir/iir_pci.c#23 integrate .. //depot/projects/smpng/sys/dev/ipmi/ipmi_isa.c#4 integrate .. //depot/projects/smpng/sys/dev/ipmi/ipmivars.h#6 integrate .. //depot/projects/smpng/sys/dev/ips/ips_pci.c#18 integrate .. //depot/projects/smpng/sys/dev/iscsi/initiator/isc_cam.c#8 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/isc_sm.c#8 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/isc_soc.c#10 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/isc_subr.c#8 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/iscsi.c#15 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/iscsi.h#5 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/iscsi_subr.c#7 delete .. //depot/projects/smpng/sys/dev/iscsi/initiator/iscsivar.h#8 delete .. //depot/projects/smpng/sys/dev/iscsi_initiator/isc_cam.c#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/isc_sm.c#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/isc_soc.c#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/isc_subr.c#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/iscsi.c#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/iscsi.h#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/iscsi_subr.c#1 branch .. //depot/projects/smpng/sys/dev/iscsi_initiator/iscsivar.h#1 branch .. //depot/projects/smpng/sys/dev/isp/isp.c#74 integrate .. //depot/projects/smpng/sys/dev/isp/isp_freebsd.c#80 integrate .. //depot/projects/smpng/sys/dev/isp/isp_pci.c#74 integrate .. //depot/projects/smpng/sys/dev/isp/ispreg.h#16 integrate .. //depot/projects/smpng/sys/dev/iwn/if_iwn.c#30 integrate .. //depot/projects/smpng/sys/dev/iwn/if_iwn_devid.h#1 branch .. //depot/projects/smpng/sys/dev/iwn/if_iwnreg.h#9 integrate .. //depot/projects/smpng/sys/dev/iwn/if_iwnvar.h#12 integrate .. //depot/projects/smpng/sys/dev/ixgb/if_ixgb.c#28 integrate .. //depot/projects/smpng/sys/dev/ixgb/ixgb_ids.h#3 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixgbe.c#36 integrate .. //depot/projects/smpng/sys/dev/ixgbe/ixv.c#9 integrate .. //depot/projects/smpng/sys/dev/mbox/mbox_if.m#1 branch .. //depot/projects/smpng/sys/dev/md/md.c#107 integrate .. //depot/projects/smpng/sys/dev/mem/memdev.c#4 integrate .. //depot/projects/smpng/sys/dev/mfi/mfi.c#43 integrate .. //depot/projects/smpng/sys/dev/mfi/mfi_pci.c#16 integrate .. //depot/projects/smpng/sys/dev/mfi/mfi_syspd.c#3 integrate .. //depot/projects/smpng/sys/dev/mge/if_mge.c#14 integrate .. //depot/projects/smpng/sys/dev/mii/brgphy.c#63 integrate .. //depot/projects/smpng/sys/dev/mii/miidevs#54 integrate .. //depot/projects/smpng/sys/dev/mly/mly.c#41 integrate .. //depot/projects/smpng/sys/dev/mmc/mmc.c#24 integrate .. //depot/projects/smpng/sys/dev/mmc/mmcsd.c#16 integrate .. //depot/projects/smpng/sys/dev/mn/if_mn.c#4 integrate .. //depot/projects/smpng/sys/dev/mps/mps.c#12 integrate .. //depot/projects/smpng/sys/dev/mps/mps_config.c#4 integrate .. //depot/projects/smpng/sys/dev/mps/mps_mapping.c#5 integrate .. //depot/projects/smpng/sys/dev/mps/mps_pci.c#6 integrate .. //depot/projects/smpng/sys/dev/mps/mps_sas.c#13 integrate .. //depot/projects/smpng/sys/dev/mps/mps_sas.h#4 integrate .. //depot/projects/smpng/sys/dev/mps/mps_sas_lsi.c#5 integrate .. //depot/projects/smpng/sys/dev/mps/mps_table.c#5 integrate .. //depot/projects/smpng/sys/dev/mps/mps_user.c#9 integrate .. //depot/projects/smpng/sys/dev/mps/mpsvar.h#10 integrate .. //depot/projects/smpng/sys/dev/mpt/mpt_pci.c#48 integrate .. //depot/projects/smpng/sys/dev/mwl/if_mwl_pci.c#5 integrate .. //depot/projects/smpng/sys/dev/mxge/if_mxge.c#48 integrate .. //depot/projects/smpng/sys/dev/nvd/nvd.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme.h#5 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_ctrlr.c#5 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_ctrlr_cmd.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_ns.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_ns_cmd.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_private.h#5 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_qpair.c#5 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_sysctl.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_test.c#4 integrate .. //depot/projects/smpng/sys/dev/nvme/nvme_util.c#1 branch .. //depot/projects/smpng/sys/dev/oce/oce_hw.c#4 integrate .. //depot/projects/smpng/sys/dev/oce/oce_hw.h#4 integrate .. //depot/projects/smpng/sys/dev/oce/oce_if.c#5 integrate .. //depot/projects/smpng/sys/dev/oce/oce_if.h#4 integrate .. //depot/projects/smpng/sys/dev/oce/oce_mbox.c#4 integrate .. //depot/projects/smpng/sys/dev/oce/oce_queue.c#4 integrate .. //depot/projects/smpng/sys/dev/oce/oce_sysctl.c#4 integrate .. //depot/projects/smpng/sys/dev/oce/oce_util.c#4 integrate .. //depot/projects/smpng/sys/dev/pccbb/pccbb_pci.c#27 integrate .. //depot/projects/smpng/sys/dev/pci/fixup_pci.c#6 integrate .. //depot/projects/smpng/sys/dev/pci/pci.c#135 integrate .. //depot/projects/smpng/sys/dev/pci/pci_pci.c#53 integrate .. //depot/projects/smpng/sys/dev/pci/pci_private.h#31 integrate .. //depot/projects/smpng/sys/dev/pci/pcib_private.h#20 integrate .. //depot/projects/smpng/sys/dev/pci/pcivar.h#39 integrate .. //depot/projects/smpng/sys/dev/pst/pst-pci.c#10 integrate .. //depot/projects/smpng/sys/dev/qlxgbe/ql_os.c#2 integrate .. //depot/projects/smpng/sys/dev/ral/rt2560.c#27 integrate .. //depot/projects/smpng/sys/dev/ral/rt2661.c#21 integrate .. //depot/projects/smpng/sys/dev/ral/rt2860.c#3 integrate .. //depot/projects/smpng/sys/dev/random/ivy.c#3 integrate .. //depot/projects/smpng/sys/dev/random/nehemiah.c#10 integrate .. //depot/projects/smpng/sys/dev/random/probe.c#8 integrate .. //depot/projects/smpng/sys/dev/random/random_adaptors.c#1 branch .. //depot/projects/smpng/sys/dev/random/random_adaptors.h#1 branch .. //depot/projects/smpng/sys/dev/random/randomdev.c#34 integrate .. //depot/projects/smpng/sys/dev/random/randomdev.h#8 integrate .. //depot/projects/smpng/sys/dev/random/randomdev_soft.c#20 integrate .. //depot/projects/smpng/sys/dev/random/randomdev_soft.h#4 integrate .. //depot/projects/smpng/sys/dev/random/yarrow.c#16 integrate .. //depot/projects/smpng/sys/dev/rp/rp_pci.c#13 integrate .. //depot/projects/smpng/sys/dev/safe/safe.c#19 integrate .. //depot/projects/smpng/sys/dev/scc/scc_bfe.h#7 integrate .. //depot/projects/smpng/sys/dev/scc/scc_bfe_ebus.c#7 integrate .. //depot/projects/smpng/sys/dev/scc/scc_bfe_macio.c#6 integrate .. //depot/projects/smpng/sys/dev/scc/scc_bfe_quicc.c#5 integrate .. //depot/projects/smpng/sys/dev/scc/scc_bfe_sbus.c#6 integrate .. //depot/projects/smpng/sys/dev/scc/scc_core.c#8 integrate .. //depot/projects/smpng/sys/dev/scc/scc_dev_quicc.c#3 integrate .. //depot/projects/smpng/sys/dev/scc/scc_dev_sab82532.c#3 integrate .. //depot/projects/smpng/sys/dev/scc/scc_dev_z8530.c#4 integrate .. //depot/projects/smpng/sys/dev/sdhci/sdhci.c#16 integrate .. //depot/projects/smpng/sys/dev/sdhci/sdhci.h#6 integrate .. //depot/projects/smpng/sys/dev/sound/pci/als4000.c#25 integrate .. //depot/projects/smpng/sys/dev/sound/pci/aureal.c#19 integrate .. //depot/projects/smpng/sys/dev/sound/pci/cmi.c#41 integrate .. //depot/projects/smpng/sys/dev/sound/pci/cs4281.c#21 integrate .. //depot/projects/smpng/sys/dev/sound/pci/csa.c#25 integrate .. //depot/projects/smpng/sys/dev/sound/pci/ds1.c#30 integrate .. //depot/projects/smpng/sys/dev/sound/pci/emu10k1.c#40 integrate .. //depot/projects/smpng/sys/dev/sound/pci/emu10kx.c#15 integrate .. //depot/projects/smpng/sys/dev/sound/pci/envy24.c#19 integrate .. //depot/projects/smpng/sys/dev/sound/pci/envy24ht.c#18 integrate .. //depot/projects/smpng/sys/dev/sound/pci/es137x.c#32 integrate .. //depot/projects/smpng/sys/dev/sound/pci/fm801.c#26 integrate .. //depot/projects/smpng/sys/dev/sound/pci/hda/hdaa_patches.c#7 integrate .. //depot/projects/smpng/sys/dev/sound/pci/hda/hdac.h#6 integrate .. //depot/projects/smpng/sys/dev/sound/pci/hdspe.c#5 integrate .. //depot/projects/smpng/sys/dev/sound/pci/maestro.c#27 integrate .. //depot/projects/smpng/sys/dev/sound/pci/maestro3.c#32 integrate .. //depot/projects/smpng/sys/dev/sound/pci/neomagic.c#14 integrate .. //depot/projects/smpng/sys/dev/sound/pci/solo.c#24 integrate .. //depot/projects/smpng/sys/dev/sound/pci/t4dwave.c#29 integrate .. //depot/projects/smpng/sys/dev/sound/pci/via82c686.c#30 integrate .. //depot/projects/smpng/sys/dev/sound/pci/vibes.c#22 integrate .. //depot/projects/smpng/sys/dev/stge/if_stge.c#23 integrate .. //depot/projects/smpng/sys/dev/streams/streams.c#42 integrate .. //depot/projects/smpng/sys/dev/sym/sym_hipd.c#45 integrate .. //depot/projects/smpng/sys/dev/syscons/syscons.c#89 integrate .. //depot/projects/smpng/sys/dev/tdfx/tdfx_pci.c#29 integrate .. //depot/projects/smpng/sys/dev/ti/if_ti.c#20 integrate .. //depot/projects/smpng/sys/dev/twa/tw_osl_freebsd.c#20 integrate .. //depot/projects/smpng/sys/dev/tws/tws.c#6 integrate .. //depot/projects/smpng/sys/dev/uart/uart.h#13 integrate .. //depot/projects/smpng/sys/dev/uart/uart_bus_fdt.c#10 integrate .. //depot/projects/smpng/sys/dev/uart/uart_bus_pci.c#18 integrate .. //depot/projects/smpng/sys/dev/uart/uart_core.c#28 integrate .. //depot/projects/smpng/sys/dev/uart/uart_cpu_fdt.c#2 integrate .. //depot/projects/smpng/sys/dev/uart/uart_dev_ns8250.c#27 integrate .. //depot/projects/smpng/sys/dev/uart/uart_dev_ns8250.h#3 branch .. //depot/projects/smpng/sys/dev/uart/uart_dev_ti8250.c#1 branch .. //depot/projects/smpng/sys/dev/uart/uart_subr.c#11 integrate .. //depot/projects/smpng/sys/dev/ubsec/ubsec.c#32 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ehci.c#31 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ehci_pci.c#22 integrate .. //depot/projects/smpng/sys/dev/usb/controller/musb_otg.c#24 integrate .. //depot/projects/smpng/sys/dev/usb/controller/musb_otg.h#8 integrate .. //depot/projects/smpng/sys/dev/usb/controller/musb_otg_atmelarm.c#11 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ohci_pci.c#18 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci.c#12 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci.h#9 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci_pci.c#12 integrate .. //depot/projects/smpng/sys/dev/usb/gadget/g_audio.c#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_audio.h#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_keyboard.c#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_keyboard.h#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_modem.c#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_modem.h#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_mouse.c#1 branch .. //depot/projects/smpng/sys/dev/usb/gadget/g_mouse.h#1 branch .. //depot/projects/smpng/sys/dev/usb/input/ukbd.c#27 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_ipheth.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_udav.c#23 integrate .. //depot/projects/smpng/sys/dev/usb/quirk/usb_quirk.c#31 integrate .. //depot/projects/smpng/sys/dev/usb/serial/uark.c#17 integrate .. //depot/projects/smpng/sys/dev/usb/usb_compat_linux.c#23 integrate .. //depot/projects/smpng/sys/dev/usb/usb_hub.c#31 integrate .. //depot/projects/smpng/sys/dev/usb/usb_ioctl.h#15 integrate .. //depot/projects/smpng/sys/dev/usb/usb_pf.c#8 integrate .. //depot/projects/smpng/sys/dev/usb/usb_request.c#29 integrate .. //depot/projects/smpng/sys/dev/usb/usbdevs#182 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_rsu.c#1 branch .. //depot/projects/smpng/sys/dev/usb/wlan/if_rsureg.h#1 branch .. //depot/projects/smpng/sys/dev/usb/wlan/if_rum.c#29 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_rumvar.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_runvar.h#9 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_uath.c#20 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_uathvar.h#5 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_upgt.c#22 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_upgtvar.h#5 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_ural.c#25 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_uralvar.h#10 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtw.c#19 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtwn.c#3 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtwnreg.h#2 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_urtwvar.h#7 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_zyd.c#27 integrate .. //depot/projects/smpng/sys/dev/usb/wlan/if_zydreg.h#9 integrate .. //depot/projects/smpng/sys/dev/virtio/balloon/virtio_balloon.c#6 integrate .. //depot/projects/smpng/sys/dev/virtio/block/virtio_blk.c#7 integrate .. //depot/projects/smpng/sys/dev/virtio/block/virtio_blk.h#5 integrate .. //depot/projects/smpng/sys/dev/virtio/network/if_vtnet.c#7 integrate .. //depot/projects/smpng/sys/dev/virtio/network/if_vtnetvar.h#4 integrate .. //depot/projects/smpng/sys/dev/virtio/pci/virtio_pci.c#6 integrate .. //depot/projects/smpng/sys/dev/virtio/scsi/virtio_scsi.c#4 integrate .. //depot/projects/smpng/sys/dev/virtio/scsi/virtio_scsivar.h#3 integrate .. //depot/projects/smpng/sys/dev/virtio/virtio.c#5 integrate .. //depot/projects/smpng/sys/dev/virtio/virtio.h#7 integrate .. //depot/projects/smpng/sys/dev/virtio/virtio_bus_if.m#3 integrate .. //depot/projects/smpng/sys/dev/virtio/virtio_if.m#3 integrate .. //depot/projects/smpng/sys/dev/virtio/virtqueue.c#6 integrate .. //depot/projects/smpng/sys/dev/virtio/virtqueue.h#6 integrate .. //depot/projects/smpng/sys/dev/watchdog/watchdog.c#9 integrate .. //depot/projects/smpng/sys/dev/wi/if_wi.c#102 integrate .. //depot/projects/smpng/sys/dev/wi/if_wi_macio.c#1 branch .. //depot/projects/smpng/sys/dev/wi/if_wi_pci.c#27 integrate .. //depot/projects/smpng/sys/dev/xen/blkback/blkback.c#11 integrate .. //depot/projects/smpng/sys/dev/xen/netback/netback.c#10 integrate .. //depot/projects/smpng/sys/dev/xen/xenpci/xenpci.c#4 integrate .. //depot/projects/smpng/sys/fs/cd9660/iso.h#4 integrate .. //depot/projects/smpng/sys/fs/devfs/devfs_rule.c#25 integrate .. //depot/projects/smpng/sys/fs/devfs/devfs_vnops.c#102 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_alloc.c#12 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_balloc.c#8 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_bmap.c#8 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_dinode.h#9 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_dir.h#6 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_extents.c#1 branch .. //depot/projects/smpng/sys/fs/ext2fs/ext2_extents.h#1 branch .. //depot/projects/smpng/sys/fs/ext2fs/ext2_extern.h#7 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_hash.c#1 branch .. //depot/projects/smpng/sys/fs/ext2fs/ext2_htree.c#1 branch .. //depot/projects/smpng/sys/fs/ext2fs/ext2_inode.c#10 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_inode_cnv.c#7 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_lookup.c#9 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_subr.c#7 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_vfsops.c#12 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2_vnops.c#9 integrate .. //depot/projects/smpng/sys/fs/ext2fs/ext2fs.h#10 integrate .. //depot/projects/smpng/sys/fs/ext2fs/htree.h#1 branch .. //depot/projects/smpng/sys/fs/ext2fs/inode.h#10 integrate .. //depot/projects/smpng/sys/fs/fuse/fuse_internal.h#3 integrate .. //depot/projects/smpng/sys/fs/fuse/fuse_kernel.h#3 integrate .. //depot/projects/smpng/sys/fs/fuse/fuse_vnops.c#4 integrate .. //depot/projects/smpng/sys/fs/msdosfs/msdosfs_denode.c#42 integrate .. //depot/projects/smpng/sys/fs/msdosfs/msdosfs_vnops.c#59 integrate .. //depot/projects/smpng/sys/fs/nfs/nfs.h#11 integrate .. //depot/projects/smpng/sys/fs/nfs/nfs_commonkrpc.c#12 integrate .. //depot/projects/smpng/sys/fs/nfs/nfs_commonsubs.c#16 integrate .. //depot/projects/smpng/sys/fs/nfs/nfsport.h#20 integrate .. //depot/projects/smpng/sys/fs/nfs/nfsrvcache.h#3 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clport.c#19 integrate .. //depot/projects/smpng/sys/fs/nfsclient/nfs_clvfsops.c#23 integrate .. //depot/projects/smpng/sys/fs/nfsserver/nfs_nfsdcache.c#9 integrate .. //depot/projects/smpng/sys/fs/nfsserver/nfs_nfsdport.c#31 integrate .. //depot/projects/smpng/sys/fs/nullfs/null_vnops.c#52 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs_node.c#40 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs_smb.c#23 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs_vfsops.c#48 integrate .. //depot/projects/smpng/sys/fs/smbfs/smbfs_vnops.c#48 integrate .. //depot/projects/smpng/sys/fs/tmpfs/tmpfs.h#17 integrate .. //depot/projects/smpng/sys/fs/tmpfs/tmpfs_subr.c#24 integrate .. //depot/projects/smpng/sys/fs/tmpfs/tmpfs_vfsops.c#13 integrate .. //depot/projects/smpng/sys/fs/tmpfs/tmpfs_vnops.c#29 integrate .. //depot/projects/smpng/sys/gdb/gdb_cons.c#7 integrate .. //depot/projects/smpng/sys/geom/geom_dev.c#64 integrate .. //depot/projects/smpng/sys/geom/geom_disk.c#71 integrate .. //depot/projects/smpng/sys/geom/geom_disk.h#17 integrate .. //depot/projects/smpng/sys/geom/geom_pc98.c#34 integrate .. //depot/projects/smpng/sys/geom/journal/g_journal.c#20 integrate .. //depot/projects/smpng/sys/geom/mirror/g_mirror.c#53 integrate .. //depot/projects/smpng/sys/geom/part/g_part.c#45 integrate .. //depot/projects/smpng/sys/geom/part/g_part_apm.c#15 integrate .. //depot/projects/smpng/sys/geom/part/g_part_gpt.c#27 integrate .. //depot/projects/smpng/sys/geom/part/g_part_pc98.c#18 integrate .. //depot/projects/smpng/sys/geom/raid/g_raid.c#8 integrate .. //depot/projects/smpng/sys/geom/raid/g_raid.h#5 integrate .. //depot/projects/smpng/sys/geom/raid/g_raid_ctl.c#5 integrate .. //depot/projects/smpng/sys/geom/raid/tr_raid5.c#4 integrate .. //depot/projects/smpng/sys/i386/conf/GENERIC#136 integrate .. //depot/projects/smpng/sys/i386/conf/NOTES#163 integrate .. //depot/projects/smpng/sys/i386/conf/PAE#31 integrate .. //depot/projects/smpng/sys/i386/conf/XBOX#21 integrate .. //depot/projects/smpng/sys/i386/conf/XEN#16 integrate .. //depot/projects/smpng/sys/i386/i386/genassym.c#47 integrate .. //depot/projects/smpng/sys/i386/i386/identcpu.c#78 integrate .. //depot/projects/smpng/sys/i386/i386/initcpu.c#45 integrate .. //depot/projects/smpng/sys/i386/i386/machdep.c#181 integrate .. //depot/projects/smpng/sys/i386/i386/mp_machdep.c#148 integrate .. //depot/projects/smpng/sys/i386/i386/pmap.c#168 integrate .. //depot/projects/smpng/sys/i386/i386/support.s#33 integrate .. //depot/projects/smpng/sys/i386/i386/symbols.raw#4 integrate .. //depot/projects/smpng/sys/i386/i386/sys_machdep.c#63 integrate .. //depot/projects/smpng/sys/i386/i386/uio_machdep.c#9 integrate .. //depot/projects/smpng/sys/i386/i386/vm_machdep.c#107 integrate .. //depot/projects/smpng/sys/i386/ibcs2/imgact_coff.c#30 integrate .. //depot/projects/smpng/sys/i386/include/acpica_machdep.h#12 integrate .. //depot/projects/smpng/sys/i386/include/asm.h#10 integrate .. //depot/projects/smpng/sys/i386/include/atomic.h#59 integrate .. //depot/projects/smpng/sys/i386/include/counter.h#2 integrate .. //depot/projects/smpng/sys/i386/include/cpu.h#20 integrate .. //depot/projects/smpng/sys/i386/include/md_var.h#41 integrate .. //depot/projects/smpng/sys/i386/include/pmap.h#62 integrate .. //depot/projects/smpng/sys/i386/pci/pci_cfgreg.c#43 integrate .. //depot/projects/smpng/sys/i386/xen/locore.s#8 integrate .. //depot/projects/smpng/sys/i386/xen/mp_machdep.c#28 integrate .. //depot/projects/smpng/sys/i386/xen/pmap.c#32 integrate .. //depot/projects/smpng/sys/ia64/conf/GENERIC#82 integrate .. //depot/projects/smpng/sys/ia64/ia64/mca.c#16 integrate .. //depot/projects/smpng/sys/ia64/ia64/mp_machdep.c#56 integrate .. //depot/projects/smpng/sys/ia64/ia64/pmap.c#112 integrate .. //depot/projects/smpng/sys/ia64/include/acpica_machdep.h#9 integrate .. //depot/projects/smpng/sys/ia64/include/counter.h#2 integrate .. //depot/projects/smpng/sys/ia64/include/cpu.h#28 integrate .. //depot/projects/smpng/sys/ia64/pci/pci_cfgreg.c#5 integrate .. //depot/projects/smpng/sys/kern/Make.tags.inc#14 integrate .. //depot/projects/smpng/sys/kern/imgact_elf.c#86 integrate .. //depot/projects/smpng/sys/kern/imgact_gzip.c#21 integrate .. //depot/projects/smpng/sys/kern/init_main.c#101 integrate .. //depot/projects/smpng/sys/kern/kern_acct.c#62 integrate .. //depot/projects/smpng/sys/kern/kern_descrip.c#148 integrate .. //depot/projects/smpng/sys/kern/kern_event.c#72 integrate .. //depot/projects/smpng/sys/kern/kern_exec.c#147 integrate .. //depot/projects/smpng/sys/kern/kern_exit.c#162 integrate .. //depot/projects/smpng/sys/kern/kern_fork.c#142 integrate .. //depot/projects/smpng/sys/kern/kern_intr.c#115 integrate .. //depot/projects/smpng/sys/kern/kern_kthread.c#33 integrate .. //depot/projects/smpng/sys/kern/kern_linker.c#118 integrate .. //depot/projects/smpng/sys/kern/kern_malloc.c#71 integrate .. //depot/projects/smpng/sys/kern/kern_mbuf.c#40 integrate .. //depot/projects/smpng/sys/kern/kern_mutex.c#168 integrate .. //depot/projects/smpng/sys/kern/kern_ntptime.c#32 integrate .. //depot/projects/smpng/sys/kern/kern_physio.c#21 integrate .. //depot/projects/smpng/sys/kern/kern_poll.c#42 integrate .. //depot/projects/smpng/sys/kern/kern_priv.c#11 integrate .. //depot/projects/smpng/sys/kern/kern_proc.c#129 integrate .. //depot/projects/smpng/sys/kern/kern_rangelock.c#3 integrate .. //depot/projects/smpng/sys/kern/kern_rmlock.c#16 integrate .. //depot/projects/smpng/sys/kern/kern_sdt.c#5 integrate .. //depot/projects/smpng/sys/kern/kern_sharedpage.c#4 integrate .. //depot/projects/smpng/sys/kern/kern_sig.c#171 integrate .. //depot/projects/smpng/sys/kern/kern_synch.c#140 integrate .. //depot/projects/smpng/sys/kern/kern_sysctl.c#78 integrate .. //depot/projects/smpng/sys/kern/kern_time.c#63 integrate .. //depot/projects/smpng/sys/kern/kern_timeout.c#62 integrate .. //depot/projects/smpng/sys/kern/kern_uuid.c#27 integrate .. //depot/projects/smpng/sys/kern/sched_4bsd.c#111 integrate .. //depot/projects/smpng/sys/kern/subr_bus.c#106 integrate .. //depot/projects/smpng/sys/kern/subr_busdma_bufalloc.c#2 integrate .. //depot/projects/smpng/sys/kern/subr_counter.c#2 integrate .. //depot/projects/smpng/sys/kern/subr_uio.c#11 integrate .. //depot/projects/smpng/sys/kern/subr_vmem.c#2 integrate .. //depot/projects/smpng/sys/kern/subr_witness.c#196 integrate .. //depot/projects/smpng/sys/kern/sys_capability.c#10 integrate .. //depot/projects/smpng/sys/kern/sys_generic.c#75 integrate .. //depot/projects/smpng/sys/kern/sys_pipe.c#78 integrate .. //depot/projects/smpng/sys/kern/sys_procdesc.c#5 integrate .. //depot/projects/smpng/sys/kern/sys_process.c#82 integrate .. //depot/projects/smpng/sys/kern/sys_socket.c#39 integrate .. //depot/projects/smpng/sys/kern/sysv_shm.c#60 integrate .. //depot/projects/smpng/sys/kern/tty_pts.c#34 integrate .. //depot/projects/smpng/sys/kern/uipc_mbuf.c#71 integrate .. //depot/projects/smpng/sys/kern/uipc_mqueue.c#37 integrate .. //depot/projects/smpng/sys/kern/uipc_sem.c#40 integrate .. //depot/projects/smpng/sys/kern/uipc_shm.c#18 integrate .. //depot/projects/smpng/sys/kern/uipc_syscalls.c#144 integrate .. //depot/projects/smpng/sys/kern/uipc_usrreq.c#104 integrate .. //depot/projects/smpng/sys/kern/vfs_acl.c#16 integrate .. //depot/projects/smpng/sys/kern/vfs_aio.c#95 integrate .. //depot/projects/smpng/sys/kern/vfs_bio.c#148 integrate .. //depot/projects/smpng/sys/kern/vfs_cache.c#70 integrate .. //depot/projects/smpng/sys/kern/vfs_cluster.c#59 integrate .. //depot/projects/smpng/sys/kern/vfs_init.c#31 integrate .. //depot/projects/smpng/sys/kern/vfs_lookup.c#73 integrate .. //depot/projects/smpng/sys/kern/vfs_mount.c#117 integrate .. //depot/projects/smpng/sys/kern/vfs_mountroot.c#9 integrate .. //depot/projects/smpng/sys/kern/vfs_subr.c#197 integrate .. //depot/projects/smpng/sys/kern/vfs_syscalls.c#175 integrate .. //depot/projects/smpng/sys/kern/vfs_vnops.c#119 integrate .. //depot/projects/smpng/sys/kgssapi/gss_impl.c#6 integrate .. //depot/projects/smpng/sys/libkern/flsll.c#1 branch .. //depot/projects/smpng/sys/mips/atheros/ar71xx_chip.c#8 integrate .. //depot/projects/smpng/sys/mips/atheros/ar71xx_cpudef.h#8 integrate .. //depot/projects/smpng/sys/mips/atheros/ar71xx_gpio.c#8 integrate .. //depot/projects/smpng/sys/mips/atheros/ar71xx_setup.c#5 integrate .. //depot/projects/smpng/sys/mips/atheros/ar71xx_setup.h#4 integrate .. //depot/projects/smpng/sys/mips/atheros/ar724x_chip.c#8 integrate .. //depot/projects/smpng/sys/mips/atheros/ar91xx_chip.c#8 integrate .. //depot/projects/smpng/sys/mips/atheros/ar933x_chip.c#2 integrate .. //depot/projects/smpng/sys/mips/atheros/ar934x_chip.c#1 branch .. //depot/projects/smpng/sys/mips/atheros/ar934x_chip.h#1 branch .. //depot/projects/smpng/sys/mips/atheros/ar934xreg.h#1 branch .. //depot/projects/smpng/sys/mips/atheros/files.ar71xx#9 integrate .. //depot/projects/smpng/sys/mips/atheros/uart_bus_ar71xx.c#4 integrate .. //depot/projects/smpng/sys/mips/atheros/uart_bus_ar933x.c#2 integrate .. //depot/projects/smpng/sys/mips/atheros/uart_cpu_ar71xx.c#4 integrate .. //depot/projects/smpng/sys/mips/atheros/uart_cpu_ar933x.c#2 integrate .. //depot/projects/smpng/sys/mips/cavium/std.octeon1#7 integrate .. //depot/projects/smpng/sys/mips/conf/AP93.hints#4 integrate .. //depot/projects/smpng/sys/mips/conf/AR71XX_BASE#4 integrate .. //depot/projects/smpng/sys/mips/conf/AR724X_BASE#3 integrate .. //depot/projects/smpng/sys/mips/conf/AR91XX_BASE#6 integrate .. //depot/projects/smpng/sys/mips/conf/AR933X_BASE#3 integrate .. //depot/projects/smpng/sys/mips/conf/AR934X_BASE#1 branch .. //depot/projects/smpng/sys/mips/conf/AR934X_BASE.hints#1 branch .. //depot/projects/smpng/sys/mips/conf/BERI_TEMPLATE#3 integrate .. //depot/projects/smpng/sys/mips/conf/DB120#1 branch .. //depot/projects/smpng/sys/mips/conf/DB120.hints#1 branch .. //depot/projects/smpng/sys/mips/conf/DIR-825#3 integrate .. //depot/projects/smpng/sys/mips/conf/DIR-825.hints#3 integrate .. //depot/projects/smpng/sys/mips/conf/ENH200#1 branch .. //depot/projects/smpng/sys/mips/conf/ENH200.hints#1 branch .. //depot/projects/smpng/sys/mips/conf/GXEMUL#3 integrate .. //depot/projects/smpng/sys/mips/conf/OCTEON1#16 integrate .. //depot/projects/smpng/sys/mips/conf/PB92#5 integrate .. //depot/projects/smpng/sys/mips/conf/RT305X#5 integrate .. //depot/projects/smpng/sys/mips/conf/XLR64#10 integrate .. //depot/projects/smpng/sys/mips/conf/XLRN32#11 integrate .. //depot/projects/smpng/sys/mips/conf/std.SWARM#5 integrate .. //depot/projects/smpng/sys/mips/conf/std.XLP#6 integrate .. //depot/projects/smpng/sys/mips/include/atomic.h#7 integrate .. //depot/projects/smpng/sys/mips/include/counter.h#2 integrate .. //depot/projects/smpng/sys/mips/include/cpu.h#8 integrate .. //depot/projects/smpng/sys/mips/include/elf.h#11 integrate .. //depot/projects/smpng/sys/mips/mips/mp_machdep.c#21 integrate .. //depot/projects/smpng/sys/mips/mips/pmap.c#41 integrate .. //depot/projects/smpng/sys/mips/mips/uio_machdep.c#5 integrate .. //depot/projects/smpng/sys/mips/mips/vm_machdep.c#16 integrate .. //depot/projects/smpng/sys/mips/sibyte/sb_zbpci.c#6 integrate .. //depot/projects/smpng/sys/modules/Makefile#197 integrate .. //depot/projects/smpng/sys/modules/cc/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/cc/cc_cdg/Makefile#1 branch .. //depot/projects/smpng/sys/modules/cxgbe/Makefile#7 integrate .. //depot/projects/smpng/sys/modules/cxgbe/if_cxgbe/Makefile#7 integrate .. //depot/projects/smpng/sys/modules/cxgbe/t4_firmware/Makefile#2 integrate .. //depot/projects/smpng/sys/modules/cxgbe/t5_firmware/Makefile#1 branch .. //depot/projects/smpng/sys/modules/cyclic/Makefile#6 integrate .. //depot/projects/smpng/sys/modules/dtrace/Makefile#11 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtio/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtmalloc/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtnfscl/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtnfsclient/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtrace/Makefile#7 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtrace_test/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/dtrace/dtraceall/Makefile#5 integrate .. //depot/projects/smpng/sys/modules/dtrace/fasttrap/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/dtrace/fbt/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/dtrace/lockstat/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/dtrace/profile/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/prototype/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/sdt/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/systrace/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/systrace_freebsd32/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/dtrace/systrace_linux32/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/em/Makefile#18 integrate .. //depot/projects/smpng/sys/modules/ext2fs/Makefile#9 integrate .. //depot/projects/smpng/sys/modules/hpt27xx/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/hptnr/Makefile#1 branch .. //depot/projects/smpng/sys/modules/igb/Makefile#11 integrate .. //depot/projects/smpng/sys/modules/iscsi/initiator/Makefile#4 delete .. //depot/projects/smpng/sys/modules/iscsi_initiator/Makefile#1 branch .. //depot/projects/smpng/sys/modules/iwn/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/iwnfw/Makefile#8 integrate .. //depot/projects/smpng/sys/modules/iwnfw/iwn2030/Makefile#1 branch .. //depot/projects/smpng/sys/modules/iwnfw/iwn6000g2a/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/nvme/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/opensolaris/Makefile#8 integrate .. //depot/projects/smpng/sys/modules/random/Makefile#8 integrate .. //depot/projects/smpng/sys/modules/runfw/Makefile#4 delete .. //depot/projects/smpng/sys/modules/usb/Makefile#31 integrate .. //depot/projects/smpng/sys/modules/usb/g_audio/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/g_keyboard/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/g_modem/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/g_mouse/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/rsu/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/rsufw/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/rsufw/Makefile.inc#1 branch .. //depot/projects/smpng/sys/modules/usb/rsufw/rsurtl8712fw/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/runfw/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/urtwnfw/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/urtwnfw/Makefile.inc#1 branch .. //depot/projects/smpng/sys/modules/usb/urtwnfw/urtwnrtl8192cT/Makefile#1 branch .. //depot/projects/smpng/sys/modules/usb/urtwnfw/urtwnrtl8192cU/Makefile#1 branch .. //depot/projects/smpng/sys/modules/vmm/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/wi/Makefile#13 integrate .. //depot/projects/smpng/sys/modules/zfs/Makefile#23 integrate .. //depot/projects/smpng/sys/net/ieee8023ad_lacp.c#17 integrate .. //depot/projects/smpng/sys/net/ieee8023ad_lacp.h#10 integrate .. //depot/projects/smpng/sys/net/if.c#151 integrate .. //depot/projects/smpng/sys/net/if_arp.h#13 integrate .. //depot/projects/smpng/sys/net/if_bridge.c#77 integrate .. //depot/projects/smpng/sys/net/if_ethersubr.c#120 integrate .. //depot/projects/smpng/sys/net/if_gif.c#66 integrate .. //depot/projects/smpng/sys/net/if_lagg.c#31 integrate .. //depot/projects/smpng/sys/net/if_lagg.h#11 integrate .. //depot/projects/smpng/sys/net/if_tun.c#79 integrate .. //depot/projects/smpng/sys/net/if_var.h#87 integrate .. //depot/projects/smpng/sys/net/rtsock.c#93 integrate .. //depot/projects/smpng/sys/net/vnet.h#24 integrate .. //depot/projects/smpng/sys/net80211/ieee80211.c#58 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<<