From owner-p4-projects@FreeBSD.ORG Wed Sep 24 22:07:05 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 42A2C42C; Wed, 24 Sep 2014 22:07:05 +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 ESMTPS id DF32D42A for ; Wed, 24 Sep 2014 22:07:04 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9F3423E for ; Wed, 24 Sep 2014 22:07:04 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8OM748u062349 for ; Wed, 24 Sep 2014 22:07:04 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8OM74Ss062346 for perforce@freebsd.org; Wed, 24 Sep 2014 22:07:04 GMT (envelope-from jhb@freebsd.org) Date: Wed, 24 Sep 2014 22:07:04 GMT Message-Id: <201409242207.s8OM74Ss062346@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200735 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Sep 2014 22:07:05 -0000 http://p4web.freebsd.org/@@1200735?ac=10 Change 1200735 by jhb@jhb_ralph on 2014/09/24 22:06:35 Checkpoint WIP rewrite. Affected files ... .. //depot/projects/smpng/share/man/man9/timeout.9#12 edit Differences ... ==== //depot/projects/smpng/share/man/man9/timeout.9#12 (text+ko) ==== @@ -33,27 +33,27 @@ .Dt TIMEOUT 9 .Os .Sh NAME -.Nm timeout , -.Nm untimeout , +.Nm callout_active , +.Nm callout_deactivate , +.Nm callout_drain , .Nm callout_handle_init , .Nm callout_init , .Nm callout_init_mtx , .Nm callout_init_rm , .Nm callout_init_rw , -.Nm callout_stop , -.Nm callout_drain , +.Nm callout_pending , .Nm callout_reset , +.Nm callout_reset_curcpu , .Nm callout_reset_on , -.Nm callout_reset_curcpu , .Nm callout_reset_sbt , +.Nm callout_reset_sbt_curcpu , .Nm callout_reset_sbt_on , -.Nm callout_reset_sbt_curcpu , .Nm callout_schedule , +.Nm callout_schedule_curcpu , .Nm callout_schedule_on , -.Nm callout_schedule_curcpu , -.Nm callout_pending , -.Nm callout_active , -.Nm callout_deactivate +.Nm callout_stop , +.Nm timeout , +.Nm untimeout .Nd execute a function after a specified length of time .Sh SYNOPSIS .In sys/types.h @@ -61,16 +61,18 @@ .Bd -literal typedef void timeout_t (void *); .Ed -.Ft struct callout_handle -.Fn timeout "timeout_t *func" "void *arg" "int ticks" +.Ft int +.Fn callout_active "struct callout *c" +.Ft void +.Fn callout_deactivate "struct callout *c" +.Ft int +.Fn callout_drain "struct callout *c" .Ft void .Fn callout_handle_init "struct callout_handle *handle" .Bd -literal struct callout_handle handle = CALLOUT_HANDLE_INITIALIZER(&handle); .Ed .Ft void -.Fn untimeout "timeout_t *func" "void *arg" "struct callout_handle handle" -.Ft void .Fn callout_init "struct callout *c" "int mpsafe" .Ft void .Fn callout_init_mtx "struct callout *c" "struct mtx *mtx" "int flags" @@ -79,263 +81,255 @@ .Ft void .Fn callout_init_rw "struct callout *c" "struct rwlock *rw" "int flags" .Ft int -.Fn callout_stop "struct callout *c" +.Fn callout_pending "struct callout *c" .Ft int -.Fn callout_drain "struct callout *c" +.Fn callout_reset "struct callout *c" "int ticks" "timeout_t *func" "void *arg" .Ft int -.Fn callout_reset "struct callout *c" "int ticks" "timeout_t *func" "void *arg" +.Fn callout_reset_curcpu "struct callout *c" "int ticks" "timeout_t *func" \ +"void *arg" .Ft int .Fn callout_reset_on "struct callout *c" "int ticks" "timeout_t *func" \ "void *arg" "int cpu" .Ft int +.Fn callout_reset_sbt "struct callout *c" "sbintime_t sbt" \ +"sbintime_t pr" "timeout_t *func" "void *arg" "int flags" +.Ft int +.Fn callout_reset_sbt_curcpu "struct callout *c" "sbintime_t sbt" \ +"sbintime_t pr" "timeout_t *func" "void *arg" "int flags" +.Ft int .Fn callout_reset_sbt_on "struct callout *c" "sbintime_t sbt" \ "sbintime_t pr" "timeout_t *func" "void *arg" "int cpu" "int flags" .Ft int -.Fn callout_reset_curcpu "struct callout *c" "int ticks" "timeout_t *func" \ -"void *arg" -.Ft int .Fn callout_schedule "struct callout *c" "int ticks" .Ft int -.Fn callout_schedule_on "struct callout *c" "int ticks" "int cpu" -.Ft int .Fn callout_schedule_curcpu "struct callout *c" "int ticks" .Ft int -.Fn callout_pending "struct callout *c" +.Fn callout_schedule_on "struct callout *c" "int ticks" "int cpu" .Ft int -.Fn callout_active "struct callout *c" +.Fn callout_stop "struct callout *c" +.Ft struct callout_handle +.Fn timeout "timeout_t *func" "void *arg" "int ticks" .Ft void -.Fn callout_deactivate "struct callout *c" +.Fn untimeout "timeout_t *func" "void *arg" "struct callout_handle handle" .Sh DESCRIPTION -The function -.Fn timeout -schedules a call to the function given by the argument -.Fa func -to take place after -.Fa ticks Ns No /hz -seconds. -Non-positive values of -.Fa ticks -are silently converted to the value -.Sq 1 . -.Fa func -should be a pointer to a function that takes a -.Fa void * -argument. -Upon invocation, -.Fa func -will receive -.Fa arg -as its only argument. -The return value from -.Fn timeout -is a -.Ft struct callout_handle -which can be used in conjunction with the -.Fn untimeout -function to request that a scheduled timeout be canceled. The -.Fn timeout -call is the old style and new code should use the -.Fn callout_* -functions. +.Nm callout +API is used to schedule a call to an arbitrary function at a specific +time in the future. +Consumers of this API are required to allocate a callout structure +.Pq struct callout +for each pending function invocation. +This structure stores state about the pending function invocation including +the function to be called and the time at which the function should be invoked. +Pending function calls can be cancelled or rescheduled to a different time. +In addition, +a callout structure may be reused to schedule a new function call after a +scheduled call is completed. .Pp -The function -.Fn callout_handle_init -can be used to initialize a handle to a state which will cause -any calls to -.Fn untimeout -with that handle to return with no side -effects. +Callouts only provide a single-shot mode. +If a consumer requires a periodic timer, +it must explicitly reschedule each function call. +This is normally done by rescheduling the subsequent call within the called +function. .Pp -Assigning a callout handle the value of -.Fn CALLOUT_HANDLE_INITIALIZER -performs the same function as -.Fn callout_handle_init -and is provided for use on statically declared or global callout handles. +Callout functions are not permitted to sleep. +They may not acquire any sleepable locks, +wait on condition variables, +perform blocking allocation requests, +or invoke any other action which may sleep. .Pp -The function -.Fn untimeout -cancels the timeout associated with -.Fa handle -using the -.Fa func -and -.Fa arg -arguments to validate the handle. -If the handle does not correspond to a timeout with -the function -.Fa func -taking the argument -.Fa arg -no action is taken. -.Fa handle -must be initialized by a previous call to -.Fn timeout , -.Fn callout_handle_init , -or assigned the value of -.Fn CALLOUT_HANDLE_INITIALIZER "&handle" -before being passed to -.Fn untimeout . -The behavior of calling -.Fn untimeout -with an uninitialized handle -is undefined. -The -.Fn untimeout -call is the old style and new code should use the -.Fn callout_* -functions. -.Pp -As handles are recycled by the system, it is possible (although unlikely) -that a handle from one invocation of -.Fn timeout -may match the handle of another invocation of -.Fn timeout -if both calls used the same function pointer and argument, and the first -timeout is expired or canceled before the second call. -The timeout facility offers O(1) running time for -.Fn timeout -and -.Fn untimeout . -Timeouts are executed from -.Fn softclock -with the -.Va Giant -lock held. -Thus they are protected from re-entrancy. -.Pp -The functions +Each callout structure must be initialized by .Fn callout_init , .Fn callout_init_mtx , .Fn callout_init_rm , -.Fn callout_init_rw , -.Fn callout_stop , -.Fn callout_drain , -.Fn callout_reset -and -.Fn callout_schedule -are low-level routines for clients who wish to allocate their own -callout structures. -.Pp -The function +or +.Fn callout_init_rw +before it is passed to any of the other callout functions. +The .Fn callout_init -initializes a callout so it can be passed to -.Fn callout_stop , -.Fn callout_drain , -.Fn callout_reset -or -.Fn callout_schedule -without any side effects. +function initializes a callout structure in +.Fa c +that is not associated with a specific lock. If the .Fa mpsafe argument is zero, the callout structure is not considered to be .Dq multi-processor safe ; -that is, -the Giant lock will be acquired before calling the callout function, +and the Giant lock will be acquired before calling the callout function and released when the callout function returns. .Pp The -.Fn callout_init_mtx -function may be used as an alternative to -.Fn callout_init . -The parameter -.Fa mtx -specifies a mutex that is to be acquired by the callout subsystem -before calling the callout function, and released when the callout -function returns. +.Fn callout_init_mtx , +.Fn callout_init_rm , +and +.Fn callout_init_rw +functions are initialize a callout structure in +.Fa c that is associated with +a specific lock. +The lock is specified by the +.Fa mtx , +.Fa rm , +or +.Fa rw +parameter, respectively. +The callout subsystem acquires the associated lock before calling the +callout function. +The subsystem then checks if the pending callout has been cancelled +while waiting for the associated lock. +If it has, +the callout function is not called and the associated lock is released. +If it has not, +the callout function is called and the associated lock is released by the +subsystem after the callout function returns. +In addition, +the callout must only be cancelled or rescheduled while holding the +associated lock. +This guarantees that stopping or rescheduling a callout associated with a +lock will not race with the callout function itself. +.Pp +Only regular mutexes may be used with +.Fn callout_init_mtx ; +spin mutexes are not supported. +A sleepable read-mostly lock +.Po +one initialized with the +.Dv RM_SLEEPABLE +flag +.Pc +may not be used with +.Fn callout_init_rm . +Similarly, other sleepable lock types such as +.Xr sx 9 +and +.Xr lockmgr 9 +cannot be used with callouts because sleeping is not permitted in +the callout subsystem. +.Pp The following .Fa flags -may be specified: +may be specified for +.Fn callout_init_mtx , +.Fn callout_init_rm , +or +.Fn callout_init_rw : .Bl -tag -width ".Dv CALLOUT_RETURNUNLOCKED" .It Dv CALLOUT_RETURNUNLOCKED -The callout function will release -.Fa mtx -itself, so the callout subsystem should not attempt to unlock it +The callout function will release the associated lock itself, +so the callout subsystem should not attempt to unlock it after the callout function returns. -.El -.Pp -The -.Fn callout_init_rw -and the -.Fn callout_init_rm -fuctions serve the need of using rwlocks and rmlocks in conjunction -with callouts. -The functions do the same as -.Fn callout_init -with the possibility of specifying an extra -.Fa rw -or -.Fa rm -argument. -If an -.Fa rm -argument is specified, the lock should be created without passing the -.Dv RM_SLEEPABLE -flag. -The usable lock classes are currently limited to mutexes, rwlocks and -non-sleepable rmlocks, because callout handlers run in softclock swi, -so they cannot sleep nor acquire sleepable locks like sx or lockmgr. -The following -.Fa flags -may be specified: -.Bl -tag -width ".Dv CALLOUT_SHAREDLOCK" .It Dv CALLOUT_SHAREDLOCK The lock is only acquired in read mode when running the callout handler. -It has no effects when used in conjunction with -.Fa mtx . +This flag is ignored by +.Fn callout_init_mtx . .El .Pp The function .Fn callout_stop -cancels a callout if it is currently pending. +cancels a callout +.Fa c +if it is currently pending. If the callout is pending, then .Fn callout_stop -will return a non-zero value. -If the callout is not set, has already been serviced or is currently -being serviced, then zero will be returned. -If the callout has an associated mutex, then that mutex must be -held when this function is called. +returns a non-zero value. +If the callout is not set, +has already been serviced, +or is currently being serviced, +then zero will be returned. +If the callout has an associated lock, +then that lock must be held when this function is called. .Pp The function .Fn callout_drain is identical to .Fn callout_stop -except that it will wait for the callout to be completed if it is -already in progress. +except that it will wait for the callout +.Fa c +to complete if it is already in progress. This function MUST NOT be called while holding any locks on which the callout might block, or deadlock will result. Note that if the callout subsystem has already begun processing this -callout, then the callout function may be invoked during the execution of -.Fn callout_drain . +callout, then the callout function may be invoked before +.Fn callout_drain +returns. However, the callout subsystem does guarantee that the callout will be fully stopped before .Fn callout_drain returns. .Pp -The function +The .Fn callout_reset -first performs the equivalent of -.Fn callout_stop -to disestablish the callout, and then establishes a new callout in the -same manner as -.Fn timeout . -If there was already a pending callout and it was rescheduled, then +and +.Fn callout_schedule +function families schedule a future function invocation for callout +.Fa c . +If +.Fa c +already has a pending callout, +it is cancelled before the new invocation is scheduled. +These functions return a non-zero value if a pending callout was cancelled +and zero if there was no pending callout. +If the callout has an associated lock, +then that lock must be held when any of these functions are called. +.Pp +The time at which the callout function will be invoked is determined by +either the +.Fa ticks +argument or the +.Fa sbt , +.Fa pr , +and +.Fa flags +arguments. +When +.Fa ticks +is used, +the callout is scheduled to execute after +.Fa ticks Ns No /hz +seconds. +Non-positive values of +.Fa ticks +are silently converted to the value +.Sq 1 . +The +.Fa sbr , +.Fa pr , +and +.Fa flags +arguments provide more control over the scheduled time including +support for higher resolution times and setting an absolute deadline +instead of a relative timeout. + +XXX sbt and pr + +.Pp +The .Fn callout_reset -will return a non-zero value. -If the callout has an associated mutex, then that mutex must be -held when this function is called. -The function +functions specify the function to be called when the time expires via the +.Fa func +argument. +The +.Fa arg +value is passed to +.Fn func +as its sole argument when it is invoked. +The .Fn callout_schedule -(re)schedules an existing callout for a new period of time; -it is equivalent to calling -.Fn callout_reset -with the +functions reuse the +.Fa func +and +.Fa arg +arguments from the previous callout. +Note that one of the +.Fa callout_reset +functions must always be called to initialize .Fa func and .Fa arg -parameters extracted from the callout structure (though possibly with -lower overhead). +before one of the +.Fn callout_schedule +functions can be used. + + .Pp The functions .Fn callout_reset_on @@ -346,6 +340,7 @@ and .Fn callout_schedule but take an extra parameter specifying the target CPU for the callout. + .Pp The function .Fn callout_reset_sbt_on @@ -607,6 +602,99 @@ To ensure that the callout is completely finished, a call to .Fn callout_drain should be used. +.Sh LEGACY API +.Bf Sy +The functions below are a legacy API that will be removed in a future release. +New code should not use these routines. +.Ef +.Pp +The function +.Fn timeout +schedules a call to the function given by the argument +.Fa func +to take place after +.Fa ticks Ns No /hz +seconds. +Non-positive values of +.Fa ticks +are silently converted to the value +.Sq 1 . +.Fa func +should be a pointer to a function that takes a +.Fa void * +argument. +Upon invocation, +.Fa func +will receive +.Fa arg +as its only argument. +The return value from +.Fn timeout +is a +.Ft struct callout_handle +which can be used in conjunction with the +.Fn untimeout +function to request that a scheduled timeout be canceled. +.Pp +The function +.Fn callout_handle_init +can be used to initialize a handle to a state which will cause +any calls to +.Fn untimeout +with that handle to return with no side +effects. +.Pp +Assigning a callout handle the value of +.Fn CALLOUT_HANDLE_INITIALIZER +performs the same function as +.Fn callout_handle_init +and is provided for use on statically declared or global callout handles. +.Pp +The function +.Fn untimeout +cancels the timeout associated with +.Fa handle +using the +.Fa func +and +.Fa arg +arguments to validate the handle. +If the handle does not correspond to a timeout with +the function +.Fa func +taking the argument +.Fa arg +no action is taken. +.Fa handle +must be initialized by a previous call to +.Fn timeout , +.Fn callout_handle_init , +or assigned the value of +.Fn CALLOUT_HANDLE_INITIALIZER "&handle" +before being passed to +.Fn untimeout . +The behavior of calling +.Fn untimeout +with an uninitialized handle +is undefined. +.Pp +As handles are recycled by the system, it is possible (although unlikely) +that a handle from one invocation of +.Fn timeout +may match the handle of another invocation of +.Fn timeout +if both calls used the same function pointer and argument, and the first +timeout is expired or canceled before the second call. +The timeout facility offers O(1) running time for +.Fn timeout +and +.Fn untimeout . +Timeouts are executed from +.Fn softclock +with the +.Va Giant +lock held. +Thus they are protected from re-entrancy. .Sh RETURN VALUES The .Fn timeout From owner-p4-projects@FreeBSD.ORG Thu Sep 25 21:25:41 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DEF43F3B; Thu, 25 Sep 2014 21:25:40 +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 ESMTPS id 9F426F39 for ; Thu, 25 Sep 2014 21:25:40 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F50C23E for ; Thu, 25 Sep 2014 21:25:40 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8PLPeZ8035725 for ; Thu, 25 Sep 2014 21:25:40 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8PLPeHK035722 for perforce@freebsd.org; Thu, 25 Sep 2014 21:25:40 GMT (envelope-from jhb@freebsd.org) Date: Thu, 25 Sep 2014 21:25:40 GMT Message-Id: <201409252125.s8PLPeHK035722@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200789 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Sep 2014 21:25:41 -0000 http://p4web.freebsd.org/@@1200789?ac=10 Change 1200789 by jhb@jhb_jhbbsd on 2014/09/25 21:25:21 Checkpoint. Affected files ... .. //depot/projects/smpng/share/man/man9/timeout.9#13 edit Differences ... ==== //depot/projects/smpng/share/man/man9/timeout.9#13 (text+ko) ==== @@ -291,16 +291,64 @@ are silently converted to the value .Sq 1 . The -.Fa sbr , +.Fa sbt , .Fa pr , and .Fa flags arguments provide more control over the scheduled time including -support for higher resolution times and setting an absolute deadline -instead of a relative timeout. - -XXX sbt and pr - +support for higher resolution times, +specifying a precision of the scheduled time, +and setting an absolute deadline instead of a relative timeout. +The callout is scheduled to execute in a time window which begins at +the time specified in +.Fa sbt +and extends for the amount of time specified in +.Fa pr . +If +.Fa sbt +specifies a time in the past, +the window is adjusted to start at the current time. +A non-zero value for +.Fa pr +allows the callout subsystem to coalesce callouts scheduled close to each +other into fewer timer interrupts reducing processing overhead and power +consumption. +The following +.Fa flags +may be specified to adjust the interpretation of +.Fa sbt +and +.Fa pr : +.Bl -tag -width ".Dv C_DIRECT_EXEC" +.It Dv C_ABSOLUTE +Handle the +.Fa sbt +argument as an absolute time since boot. +By default, +.Fa sbt +is treated as a relative amount of time similar to +.Fa ticks . +.It Dv C_DIRECT_EXEC +Run handler directly from hardware interrupt context instead of from the +softclock thread. +This reduces latency and overhead, but puts more constraints on the callout +function. +Callout functions run in this context may use only spin mutexes for locking +and should be as small as possible because they run with absolute priority. +.It Fn C_PREL +Specifies relative event time precision as binary logarithm of time interval +divided by acceptable time deviation: 1 -- 1/2, 2 -- 1/4, etc. +Note that the larger of +.Fa pr +or this value is used as the length of the time window. +Smaller values +.Pq which result in larger time intervals +allow the callout subsystem to aggregate more events in one timer interrupt. +.It Dv C_HARDCLOCK +Align the timeouts to +.Fn hardclock +calls if possible. +.El .Pp The .Fn callout_reset @@ -329,59 +377,33 @@ .Fn callout_schedule functions can be used. - .Pp -The functions -.Fn callout_reset_on +Normally callouts are scheduled to execute on the softclock thread they +were associated with previously. +Callouts that have not been scheduled are associated with the softclock +thread for CPU 0. +The +.Fn callout_reset_on , +.Fn callout_reset_sbt_on , and .Fn callout_schedule_on -are equivalent to -.Fn callout_reset -and -.Fn callout_schedule -but take an extra parameter specifying the target CPU for the callout. - -.Pp -The function -.Fn callout_reset_sbt_on -allows to get higher time resolution, taking relative or absolute time -and precision instead of relative ticks count. -If specified time is in past, it will be silently converted to present -to run handler as soon as possible. -.Pp -The following -.Fa flags -may be specified: -.Bl -tag -width ".Dv C_DIRECT_EXEC" -.It Dv C_ABSOLUTE -Handle the -.Fa sbt -argument as absolute time of the event since boot, or relative time otherwise. -.It Dv C_DIRECT_EXEC -Run handler directly from hardware interrupt context instead of softclock swi. -It is faster, but puts more constraints on handlers. -Handlers may use only spin mutexes for locking, and they must be fast because -they run with absolute priority. -.It Fn C_PREL -Specifies relative event time precision as binary logarithm of time interval -divided by acceptable time deviation: 1 -- 1/2, 2 -- 1/4, etc. -Smaller value allows to aggregate more events in one timer interrupt to -reduce processing overhead and power consumption. -.It Dv C_HARDCLOCK -Align the timeouts, if possible, to -.Fn hardclock -calls. -.El -.Pp -The functions -.Fn callout_reset_curcpu +functions accept an additional argument which associates the callout with +the softclock thread for CPU +.Fa cpu . +The +.Fn callout_reset_curcpu , +.Fn callout_reset_sbt_curpu , and .Fn callout_schedule_curcpu -are wrappers for -.Fn callout_reset_on -and -.Fn callout_schedule_on -using the current CPU as the target CPU. +functions associate the callout with the softclock thread for the current CPU. +The softclock threads are not pinned to their respective CPUs by default. +The softclock thread for CPU 0 can be pinned to CPU by setting the +.Va kern.pin_default_swi +loader tunable to a non-zero value. +The softclock threads for CPUs other than zero can be pinned to their +respective CPUs by setting the +.Va kern.pin_pcpu_swi +loader tunable to a non-zero value. .Pp The macros .Fn callout_pending , @@ -389,10 +411,6 @@ and .Fn callout_deactivate provide access to the current state of the callout. -Careful use of these macros can avoid many of the race conditions -that are inherent in asynchronous timer facilities; see -.Sx "Avoiding Race Conditions" -below for further details. The .Fn callout_pending macro checks whether a callout is @@ -405,7 +423,8 @@ .Fn callout_pending will return .Dv FALSE -even though the callout function may not have finished (or even begun) +even though the callout function may not have finished +.Pq or even begun executing. The .Fn callout_active @@ -428,6 +447,9 @@ .Em does not clear it when a callout expires normally via the execution of the callout function. + + + .Ss "Avoiding Race Conditions" The callout subsystem invokes callout functions from its own timer context. From owner-p4-projects@FreeBSD.ORG Fri Sep 26 12:38:16 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 37EDA50F; Fri, 26 Sep 2014 12:38:16 +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 ESMTPS id D428450D for ; Fri, 26 Sep 2014 12:38:15 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF622350 for ; Fri, 26 Sep 2014 12:38:15 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QCcFnX074786 for ; Fri, 26 Sep 2014 12:38:15 GMT (envelope-from jmg@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QCcFdD074783 for perforce@freebsd.org; Fri, 26 Sep 2014 12:38:15 GMT (envelope-from jmg@freebsd.org) Date: Fri, 26 Sep 2014 12:38:15 GMT Message-Id: <201409261238.s8QCcFdD074783@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jmg@freebsd.org using -f From: John-Mark Gurney Subject: PERFORCE change 1200830 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 12:38:16 -0000 http://p4web.freebsd.org/@@1200830?ac=10 Change 1200830 by jmg@jmg_carbon2 on 2014/09/26 12:38:07 remove CRYPTO_F_REL flag... One driver implemented it, but didn't do anything different, only one consumer set it, but expected the same behavior... both NetBSD and OpenBSD have similar behaviors... The normal behavior IS that the data is in the same location... Affected files ... .. //depot/projects/opencrypto/share/man/man9/crypto.9#5 edit .. //depot/projects/opencrypto/sys/geom/eli/g_eli_crypto.c#3 edit .. //depot/projects/opencrypto/sys/geom/eli/g_eli_integrity.c#3 edit .. //depot/projects/opencrypto/sys/geom/eli/g_eli_privacy.c#3 edit .. //depot/projects/opencrypto/sys/mips/rmi/dev/sec/rmisec.c#2 edit .. //depot/projects/opencrypto/sys/opencrypto/cryptodev.h#10 edit Differences ... ==== //depot/projects/opencrypto/share/man/man9/crypto.9#5 (text+ko) ==== @@ -304,8 +304,6 @@ is an .Vt uio structure. -.It Dv CRYPTO_F_REL -Must return data in the same place. .It Dv CRYPTO_F_BATCH Batch operation if possible. .It Dv CRYPTO_F_CBIMM ==== //depot/projects/opencrypto/sys/geom/eli/g_eli_crypto.c#3 (text+ko) ==== @@ -101,7 +101,7 @@ crp->crp_opaque = NULL; crp->crp_callback = g_eli_crypto_done; crp->crp_buf = (void *)data; - crp->crp_flags = CRYPTO_F_CBIFSYNC | CRYPTO_F_REL; + crp->crp_flags = CRYPTO_F_CBIFSYNC; crp->crp_desc = crd; error = crypto_dispatch(crp); ==== //depot/projects/opencrypto/sys/geom/eli/g_eli_integrity.c#3 (text+ko) ==== @@ -479,7 +479,7 @@ crp->crp_opaque = (void *)bp; crp->crp_buf = (void *)data; data += encr_secsize; - crp->crp_flags = CRYPTO_F_CBIFSYNC | CRYPTO_F_REL; + crp->crp_flags = CRYPTO_F_CBIFSYNC; if (g_eli_batch) crp->crp_flags |= CRYPTO_F_BATCH; if (bp->bio_cmd == BIO_WRITE) { ==== //depot/projects/opencrypto/sys/geom/eli/g_eli_privacy.c#3 (text+ko) ==== @@ -286,7 +286,7 @@ crp->crp_callback = g_eli_crypto_write_done; else /* if (bp->bio_cmd == BIO_READ) */ crp->crp_callback = g_eli_crypto_read_done; - crp->crp_flags = CRYPTO_F_CBIFSYNC | CRYPTO_F_REL; + crp->crp_flags = CRYPTO_F_CBIFSYNC; if (g_eli_batch) crp->crp_flags |= CRYPTO_F_BATCH; crp->crp_desc = crd; ==== //depot/projects/opencrypto/sys/mips/rmi/dev/sec/rmisec.c#2 (text+ko) ==== @@ -423,13 +423,8 @@ cmd->op.source_buf = (uint64_t) (unsigned long)crp->crp_buf; cmd->op.source_buf_size = crp->crp_ilen; - if (crp->crp_flags & CRYPTO_F_REL) { - cmd->op.dest_buf = (uint64_t) (unsigned long)crp->crp_buf; - cmd->op.dest_buf_size = crp->crp_ilen; - } else { - cmd->op.dest_buf = (uint64_t) (unsigned long)crp->crp_buf; - cmd->op.dest_buf_size = crp->crp_ilen; - } + cmd->op.dest_buf = (uint64_t) (unsigned long)crp->crp_buf; + cmd->op.dest_buf_size = crp->crp_ilen; cmd->op.num_packets = 1; cmd->op.num_fragments = 1; ==== //depot/projects/opencrypto/sys/opencrypto/cryptodev.h#10 (text+ko) ==== @@ -368,7 +368,6 @@ #define CRYPTO_F_IMBUF 0x0001 /* Input/output are mbuf chains */ #define CRYPTO_F_IOV 0x0002 /* Input/output are uio */ -#define CRYPTO_F_REL 0x0004 /* Must return data in same place */ #define CRYPTO_F_BATCH 0x0008 /* Batch op if possible */ #define CRYPTO_F_CBIMM 0x0010 /* Do callback immediately */ #define CRYPTO_F_DONE 0x0020 /* Operation completed */ From owner-p4-projects@FreeBSD.ORG Fri Sep 26 12:39:17 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 60C56609; Fri, 26 Sep 2014 12:39:17 +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 ESMTPS id 21C34607 for ; Fri, 26 Sep 2014 12:39:17 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D54A360 for ; Fri, 26 Sep 2014 12:39:17 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QCdGa7074870 for ; Fri, 26 Sep 2014 12:39:16 GMT (envelope-from jmg@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QCdGTV074867 for perforce@freebsd.org; Fri, 26 Sep 2014 12:39:16 GMT (envelope-from jmg@freebsd.org) Date: Fri, 26 Sep 2014 12:39:16 GMT Message-Id: <201409261239.s8QCdGTV074867@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jmg@freebsd.org using -f From: John-Mark Gurney Subject: PERFORCE change 1200831 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 12:39:17 -0000 http://p4web.freebsd.org/@@1200831?ac=10 Change 1200831 by jmg@jmg_carbon2 on 2014/09/26 12:38:51 add Netgate as sponsor... Sponsored by: FreeBSD Foundation Sponsored by: Netgate Affected files ... .. //depot/projects/opencrypto/share/man/man4/crypto.4#4 edit .. //depot/projects/opencrypto/share/man/man7/crypto.7#5 edit Differences ... ==== //depot/projects/opencrypto/share/man/man4/crypto.4#4 (text+ko) ==== @@ -5,7 +5,8 @@ .\" All rights reserved. .\" .\" Portions of this documentation were writen by John-Mark Gurney -.\" under sponsorship from the FreeBSD Foundation. +.\" under sponsorship of the FreeBSD Foundation and +.\" Rubicon Communications, LLC (Netgate). .\" .\" This code is derived from software contributed to The NetBSD Foundation .\" by Coyote Point Systems, Inc. ==== //depot/projects/opencrypto/share/man/man7/crypto.7#5 (text+ko) ==== @@ -2,7 +2,8 @@ .\" All rights reserved. .\" .\" This documentation was written by John-Mark Gurney under -.\" the sponsorship from the FreeBSD Foundation. +.\" the sponsorship of the FreeBSD Foundation and +.\" Rubicon Communications, LLC (Netgate). .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: From owner-p4-projects@FreeBSD.ORG Fri Sep 26 19:41:56 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id CDD0AE66; Fri, 26 Sep 2014 19:41:56 +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 ESMTPS id 901D0E64 for ; Fri, 26 Sep 2014 19:41:56 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BCE9BCD for ; Fri, 26 Sep 2014 19:41:56 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QJfuHe085200 for ; Fri, 26 Sep 2014 19:41:56 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QJfuRW085197 for perforce@freebsd.org; Fri, 26 Sep 2014 19:41:56 GMT (envelope-from jhb@freebsd.org) Date: Fri, 26 Sep 2014 19:41:56 GMT Message-Id: <201409261941.s8QJfuRW085197@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200842 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 19:41:57 -0000 http://p4web.freebsd.org/@@1200842?ac=10 Change 1200842 by jhb@jhb_ralph on 2014/09/26 19:41:06 Finish the pass over this. Affected files ... .. //depot/projects/smpng/share/man/man9/timeout.9#14 edit Differences ... ==== //depot/projects/smpng/share/man/man9/timeout.9#14 (text+ko) ==== @@ -136,7 +136,7 @@ They may not acquire any sleepable locks, wait on condition variables, perform blocking allocation requests, -or invoke any other action which may sleep. +or invoke any other action that might sleep. .Pp Each callout structure must be initialized by .Fn callout_init , @@ -163,9 +163,9 @@ .Fn callout_init_rm , and .Fn callout_init_rw -functions are initialize a callout structure in -.Fa c that is associated with -a specific lock. +functions initialize a callout structure in +.Fa c +that is associated with a specific lock. The lock is specified by the .Fa mtx , .Fa rm , @@ -174,11 +174,11 @@ parameter, respectively. The callout subsystem acquires the associated lock before calling the callout function. -The subsystem then checks if the pending callout has been cancelled -while waiting for the associated lock. -If it has, +The subsystem then checks if the pending callout was cancelled +while it waited for the associated lock. +If it was, the callout function is not called and the associated lock is released. -If it has not, +If it was not, the callout function is called and the associated lock is released by the subsystem after the callout function returns. In addition, @@ -290,6 +290,7 @@ .Fa ticks are silently converted to the value .Sq 1 . +.Pp The .Fa sbt , .Fa pr , @@ -355,11 +356,14 @@ functions specify the function to be called when the time expires via the .Fa func argument. -The +It should be a pointer to a function that takes a +.Fa void * +argument. +Upon invocation, +.Fa func +will receive .Fa arg -value is passed to -.Fn func -as its sole argument when it is invoked. +as its only argument. The .Fn callout_schedule functions reuse the @@ -368,7 +372,7 @@ .Fa arg arguments from the previous callout. Note that one of the -.Fa callout_reset +.Fn callout_reset functions must always be called to initialize .Fa func and @@ -376,7 +380,6 @@ before one of the .Fn callout_schedule functions can be used. - .Pp Normally callouts are scheduled to execute on the softclock thread they were associated with previously. @@ -396,6 +399,7 @@ and .Fn callout_schedule_curcpu functions associate the callout with the softclock thread for the current CPU. +.Pp The softclock threads are not pinned to their respective CPUs by default. The softclock thread for CPU 0 can be pinned to CPU by setting the .Va kern.pin_default_swi @@ -447,50 +451,61 @@ .Em does not clear it when a callout expires normally via the execution of the callout function. - - - .Ss "Avoiding Race Conditions" -The callout subsystem invokes callout functions from its own timer +The callout subsystem invokes callout functions from its own thread context. Without some kind of synchronization it is possible that a callout function will be invoked concurrently with an attempt to stop or reset the callout by another thread. -In particular, since callout functions typically acquire a mutex as +In particular, since callout functions typically acquire a lock as their first action, the callout function may have already been invoked, -but be blocked waiting for that mutex at the time that another thread +but be blocked waiting for that lock at the time that another thread tries to reset or stop the callout. .Pp -The callout subsystem provides a number of mechanisms to address these -synchronization concerns: +One of the following approaches can be used to address these +synchronization concerns, though the first approach is preferred when +possible as it is the simplest: .Bl -enum -offset indent .It -If the callout has an associated mutex that was specified using the -.Fn callout_init_mtx -function (or implicitly specified as the -.Va Giant -mutex using +Callouts can be associated with a specific lock when they are initialized +by +.Fn callout_init_mtx , +.Fn callout_init_rm , +or +.Fn callout_init_rw . +When a callout is associated with a lock, +the callout subsystem acquires the lock before the callout function is +invoked. +This allows the callout subsystem to handle races between callout cancellation, +scheduling, +and execution transparently. +Note that the associated lock must be acquired before calling +.Fn callout_stop +or one of the +.Fn callout_reset +or +.Fn callout_schedule +functions to provide this safety. +.Pp +A callout initialized via .Fn callout_init with .Fa mpsafe -set to -.Dv FALSE ) , -then this mutex is used to avoid the race conditions. -The associated mutex must be acquired by the caller before calling -.Fn callout_stop -or -.Fn callout_reset -and it is guaranteed that the callout will be correctly stopped -or reset as expected. -Note that it is still necessary to use -.Fn callout_drain -before destroying the callout or its associated mutex. +set to zero is implicitly associated with the +.Va Giant +mutex. +If +.Va Giant +is held when cancelling or rescheduling the callout, +then it's use will prevent races with the callout function. .It The return value from .Fn callout_stop +and the +.Fn callout_reset and -.Fn callout_reset -indicates whether or not the callout was removed. +.Fn callout_schedule +function families indicate whether or not the callout was removed. If it is known that the callout was set and the callout function has not yet executed, then a return value of .Dv FALSE @@ -624,6 +639,9 @@ To ensure that the callout is completely finished, a call to .Fn callout_drain should be used. +In particular, +a callout should always be drained prior to destroying its associated lock +or releasing the storage for the callout structure. .Sh LEGACY API .Bf Sy The functions below are a legacy API that will be removed in a future release. @@ -719,17 +737,36 @@ Thus they are protected from re-entrancy. .Sh RETURN VALUES The -.Fn timeout -function returns a -.Ft struct callout_handle -that can be passed to -.Fn untimeout . +.Fn callout_active +macro returns the state of a callout's +.Em active +flag. +.Pp +The +.Fn callout_pending +macro returns the state of a callout's +.Em pending +flag. +.Pp +The +.Fn callout_reset +and +.Fn callout_schedule +function families return non-zero if the callout was pending before the new +function invocation was scheduled. +.Pp The .Fn callout_stop and .Fn callout_drain functions return non-zero if the callout was still pending when it was called or zero otherwise. +The +.Fn timeout +function returns a +.Ft struct callout_handle +that can be passed to +.Fn untimeout . .Sh HISTORY The current timeout and untimeout routines are based on the work of .An Adam M. Costello From owner-p4-projects@FreeBSD.ORG Fri Sep 26 19:58:15 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 31B5E82E; Fri, 26 Sep 2014 19:58:15 +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 ESMTPS id E6B2A82C for ; Fri, 26 Sep 2014 19:58:14 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D07F9D4D for ; Fri, 26 Sep 2014 19:58:14 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QJwEbo088196 for ; Fri, 26 Sep 2014 19:58:14 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QJwEpR088192 for perforce@freebsd.org; Fri, 26 Sep 2014 19:58:14 GMT (envelope-from jhb@freebsd.org) Date: Fri, 26 Sep 2014 19:58:14 GMT Message-Id: <201409261958.s8QJwEpR088192@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200844 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 19:58:15 -0000 http://p4web.freebsd.org/@@1200844?ac=10 Change 1200844 by jhb@jhb_ralph on 2014/09/26 19:57:44 IFC @1200843 Affected files ... .. //depot/projects/smpng/share/man/man9/Makefile#48 integrate .. //depot/projects/smpng/share/man/man9/sleepqueue.9#7 integrate .. //depot/projects/smpng/sys/Makefile#33 integrate .. //depot/projects/smpng/sys/amd64/amd64/fpu.c#35 integrate .. //depot/projects/smpng/sys/amd64/amd64/machdep.c#134 integrate .. //depot/projects/smpng/sys/amd64/amd64/trap.c#96 integrate .. //depot/projects/smpng/sys/amd64/conf/GENERIC#115 integrate .. //depot/projects/smpng/sys/amd64/conf/NOTES#80 integrate .. //depot/projects/smpng/sys/amd64/include/vmm.h#15 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/ept.c#7 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vmcs.h#11 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vmx.c#17 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vmx.h#10 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vmx_msr.c#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/intel/vmx_msr.h#4 integrate .. //depot/projects/smpng/sys/amd64/vmm/io/vlapic.c#11 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm.c#15 integrate .. //depot/projects/smpng/sys/amd64/vmm/vmm_msr.c#6 delete .. //depot/projects/smpng/sys/amd64/vmm/vmm_msr.h#4 delete .. //depot/projects/smpng/sys/arm/allwinner/a10_clk.c#5 integrate .. //depot/projects/smpng/sys/arm/altera/socfpga/files.socfpga#3 integrate .. //depot/projects/smpng/sys/arm/arm/machdep.c#54 integrate .. //depot/projects/smpng/sys/arm/arm/mpcore_timer.c#9 integrate .. //depot/projects/smpng/sys/arm/at91/at91rm92reg.h#14 integrate .. //depot/projects/smpng/sys/arm/at91/at91sam9260reg.h#8 integrate .. //depot/projects/smpng/sys/arm/at91/at91sam9g20reg.h#9 integrate .. //depot/projects/smpng/sys/arm/at91/at91sam9g45reg.h#4 integrate .. //depot/projects/smpng/sys/arm/at91/at91sam9x5reg.h#4 integrate .. //depot/projects/smpng/sys/arm/conf/LN2410SBC#12 integrate .. //depot/projects/smpng/sys/arm/conf/NOTES#5 integrate .. //depot/projects/smpng/sys/arm/conf/SOCKIT#2 integrate .. //depot/projects/smpng/sys/arm/s3c2xx0/board_ln2410sbc.c#3 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/files.s3c2xx0#6 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2410reg.h#4 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2410var.h#3 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2440reg.h#4 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c24x0.c#8 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c24x0_clk.c#4 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c24x0_machdep.c#13 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c24x0_rtc.c#3 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c24x0reg.h#5 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c24x0var.h#3 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2xx0_space.c#6 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2xx0board.h#3 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2xx0reg.h#3 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/s3c2xx0var.h#4 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/std.ln2410sbc#6 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/std.s3c2410#5 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/uart_bus_s3c2410.c#4 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/uart_cpu_s3c2410.c#4 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/uart_dev_s3c2410.c#5 delete .. //depot/projects/smpng/sys/arm/s3c2xx0/uart_dev_s3c2410.h#3 delete .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/board_ln2410sbc.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/files.s3c2xx0#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2410reg.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2410var.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2440reg.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c24x0.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c24x0_clk.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c24x0_rtc.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c24x0reg.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c24x0var.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2xx0_space.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2xx0board.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2xx0reg.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/s3c2xx0var.h#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/std.ln2410sbc#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/std.s3c2410#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/uart_bus_s3c2410.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/uart_cpu_s3c2410.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.c#1 branch .. //depot/projects/smpng/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.h#1 branch .. //depot/projects/smpng/sys/boot/efi/include/eficonsctl.h#2 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/arm/socfpga-sockit.dts#2 integrate .. //depot/projects/smpng/sys/boot/fdt/dts/arm/socfpga.dtsi#3 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl.c#16 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl.h#6 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_cmd_table.c#7 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_error.c#5 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_error.h#4 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_frontend_iscsi.c#6 integrate .. //depot/projects/smpng/sys/cam/ctl/ctl_private.h#9 integrate .. //depot/projects/smpng/sys/compat/freebsd32/freebsd32_misc.c#91 integrate .. //depot/projects/smpng/sys/compat/linux/linux_ioctl.c#82 integrate .. //depot/projects/smpng/sys/compat/linux/linux_mib.c#28 integrate .. //depot/projects/smpng/sys/conf/NOTES#217 integrate .. //depot/projects/smpng/sys/conf/files#307 integrate .. //depot/projects/smpng/sys/conf/files.amd64#109 integrate .. //depot/projects/smpng/sys/conf/files.pc98#124 integrate .. //depot/projects/smpng/sys/conf/options#211 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c#5 integrate .. //depot/projects/smpng/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub.c#2 integrate .. //depot/projects/smpng/sys/contrib/ipfilter/netinet/ip_dstlist.c#2 integrate .. //depot/projects/smpng/sys/contrib/ipfilter/netinet/ip_frag.c#18 integrate .. //depot/projects/smpng/sys/ddb/db_main.c#9 integrate .. //depot/projects/smpng/sys/ddb/ddb.h#32 integrate .. //depot/projects/smpng/sys/dev/acpica/acpi.c#147 integrate .. //depot/projects/smpng/sys/dev/acpica/acpi_pci.c#32 integrate .. //depot/projects/smpng/sys/dev/alpm/alpm.c#1 branch .. //depot/projects/smpng/sys/dev/amdpm/amdpm.c#1 branch .. //depot/projects/smpng/sys/dev/amdsmb/amdsmb.c#1 branch .. //depot/projects/smpng/sys/dev/asmc/asmc.c#12 integrate .. //depot/projects/smpng/sys/dev/asmc/asmcvar.h#8 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath.c#115 integrate .. //depot/projects/smpng/sys/dev/ath/if_ath_rx_edma.c#10 integrate .. //depot/projects/smpng/sys/dev/ath/if_athvar.h#67 integrate .. //depot/projects/smpng/sys/dev/atkbdc/atkbd.c#13 integrate .. //depot/projects/smpng/sys/dev/bce/if_bce.c#57 integrate .. //depot/projects/smpng/sys/dev/bce/if_bcereg.h#35 integrate .. //depot/projects/smpng/sys/dev/cxgbe/t4_main.c#27 integrate .. //depot/projects/smpng/sys/dev/cxgbe/tom/t4_listen.c#10 integrate .. //depot/projects/smpng/sys/dev/dwc/if_dwc.c#1 branch .. //depot/projects/smpng/sys/dev/dwc/if_dwc.h#1 branch .. //depot/projects/smpng/sys/dev/et/if_et.c#15 integrate .. //depot/projects/smpng/sys/dev/fdc/fdc.c#41 integrate .. //depot/projects/smpng/sys/dev/fdc/fdc_cbus.c#1 branch .. //depot/projects/smpng/sys/dev/fdc/fdcvar.h#9 integrate .. //depot/projects/smpng/sys/dev/fdt/fdt_common.c#13 integrate .. //depot/projects/smpng/sys/dev/fdt/fdt_common.h#13 integrate .. //depot/projects/smpng/sys/dev/fdt/simplebus.c#14 integrate .. //depot/projects/smpng/sys/dev/intpm/intpm.c#1 branch .. //depot/projects/smpng/sys/dev/intpm/intpmreg.h#1 branch .. //depot/projects/smpng/sys/dev/ixl/i40e_common.c#2 integrate .. //depot/projects/smpng/sys/dev/ixl/if_ixl.c#4 integrate .. //depot/projects/smpng/sys/dev/ixl/if_ixlv.c#4 integrate .. //depot/projects/smpng/sys/dev/ixl/ixl_txrx.c#2 integrate .. //depot/projects/smpng/sys/dev/jme/if_jme.c#21 integrate .. //depot/projects/smpng/sys/dev/lmc/if_lmc.c#35 integrate .. //depot/projects/smpng/sys/dev/lmc/if_lmc.h#14 integrate .. //depot/projects/smpng/sys/dev/mxge/if_mxge.c#52 integrate .. //depot/projects/smpng/sys/dev/ncr/locate.pl#1 branch .. //depot/projects/smpng/sys/dev/ncr/ncr.c#1 branch .. //depot/projects/smpng/sys/dev/ncr/ncrreg.h#1 branch .. //depot/projects/smpng/sys/dev/netmap/netmap.c#15 integrate .. //depot/projects/smpng/sys/dev/netmap/netmap_kern.h#16 integrate .. //depot/projects/smpng/sys/dev/nfsmb/nfsmb.c#1 branch .. //depot/projects/smpng/sys/dev/oce/oce_if.c#13 integrate .. //depot/projects/smpng/sys/dev/oce/oce_if.h#9 integrate .. //depot/projects/smpng/sys/dev/ofw/ofw_bus_subr.c#14 integrate .. //depot/projects/smpng/sys/dev/ofw/ofw_bus_subr.h#11 integrate .. //depot/projects/smpng/sys/dev/ofw/ofwbus.c#5 integrate .. //depot/projects/smpng/sys/dev/pci/pci.c#143 integrate .. //depot/projects/smpng/sys/dev/pci/pci_private.h#36 integrate .. //depot/projects/smpng/sys/dev/ti/if_ti.c#23 integrate .. //depot/projects/smpng/sys/dev/tws/tws.c#9 integrate .. //depot/projects/smpng/sys/dev/tws/tws.h#8 integrate .. //depot/projects/smpng/sys/dev/tws/tws_cam.c#7 integrate .. //depot/projects/smpng/sys/dev/tws/tws_hdm.c#4 integrate .. //depot/projects/smpng/sys/dev/tws/tws_hdm.h#4 integrate .. //depot/projects/smpng/sys/dev/tws/tws_services.c#4 integrate .. //depot/projects/smpng/sys/dev/txp/if_txp.c#48 integrate .. //depot/projects/smpng/sys/dev/usb/controller/ohci_s3c24x0.c#6 integrate .. //depot/projects/smpng/sys/dev/usb/controller/xhci.c#22 integrate .. //depot/projects/smpng/sys/dev/usb/net/if_smsc.c#9 integrate .. //depot/projects/smpng/sys/dev/usb/usbdevs#196 integrate .. //depot/projects/smpng/sys/dev/viapm/viapm.c#1 branch .. //depot/projects/smpng/sys/dev/vmware/vmxnet3/if_vmx.c#7 integrate .. //depot/projects/smpng/sys/dev/vmware/vmxnet3/if_vmxvar.h#7 integrate .. //depot/projects/smpng/sys/dev/vt/vt_buf.c#8 integrate .. //depot/projects/smpng/sys/dev/vte/if_vte.c#7 integrate .. //depot/projects/smpng/sys/dev/wi/if_wi.c#105 integrate .. //depot/projects/smpng/sys/dev/xen/netfront/netfront.c#29 integrate .. //depot/projects/smpng/sys/fs/autofs/autofs.c#4 integrate .. //depot/projects/smpng/sys/fs/autofs/autofs_vnops.c#6 integrate .. //depot/projects/smpng/sys/fs/devfs/devfs_vnops.c#105 integrate .. //depot/projects/smpng/sys/gnu/fs/reiserfs/reiserfs_fs_i.h#4 integrate .. //depot/projects/smpng/sys/i386/i386/machdep.c#195 integrate .. //depot/projects/smpng/sys/kern/bus_if.m#24 integrate .. //depot/projects/smpng/sys/kern/kern_cons.c#11 integrate .. //depot/projects/smpng/sys/kern/kern_descrip.c#158 integrate .. //depot/projects/smpng/sys/kern/kern_event.c#82 integrate .. //depot/projects/smpng/sys/kern/kern_malloc.c#77 integrate .. //depot/projects/smpng/sys/kern/subr_bus.c#110 integrate .. //depot/projects/smpng/sys/kern/sys_pipe.c#83 integrate .. //depot/projects/smpng/sys/kern/sys_procdesc.c#10 integrate .. //depot/projects/smpng/sys/kern/sys_socket.c#42 integrate .. //depot/projects/smpng/sys/kern/tty_pts.c#36 integrate .. //depot/projects/smpng/sys/kern/uipc_mqueue.c#42 integrate .. //depot/projects/smpng/sys/kern/uipc_sem.c#44 integrate .. //depot/projects/smpng/sys/kern/uipc_shm.c#28 integrate .. //depot/projects/smpng/sys/kern/uipc_sockbuf.c#28 integrate .. //depot/projects/smpng/sys/kern/vfs_syscalls.c#183 integrate .. //depot/projects/smpng/sys/kern/vfs_vnops.c#126 integrate .. //depot/projects/smpng/sys/mips/beri/beri_simplebus.c#4 integrate .. //depot/projects/smpng/sys/mips/mips/machdep.c#33 integrate .. //depot/projects/smpng/sys/modules/Makefile#207 integrate .. //depot/projects/smpng/sys/modules/fdc/Makefile#13 integrate .. //depot/projects/smpng/sys/modules/i2c/controllers/alpm/Makefile#4 integrate .. //depot/projects/smpng/sys/modules/i2c/controllers/amdpm/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/i2c/controllers/amdsmb/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/i2c/controllers/intpm/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/i2c/controllers/nfsmb/Makefile#3 integrate .. //depot/projects/smpng/sys/modules/i2c/controllers/viapm/Makefile#5 integrate .. //depot/projects/smpng/sys/modules/mlx4/Makefile#9 integrate .. //depot/projects/smpng/sys/modules/mlxen/Makefile#8 integrate .. //depot/projects/smpng/sys/modules/ncr/Makefile#1 branch .. //depot/projects/smpng/sys/modules/netmap/Makefile#5 integrate .. //depot/projects/smpng/sys/modules/vmm/Makefile#6 integrate .. //depot/projects/smpng/sys/net/ieee8023ad_lacp.c#23 integrate .. //depot/projects/smpng/sys/net/ieee8023ad_lacp.h#11 integrate .. //depot/projects/smpng/sys/net/if.c#163 integrate .. //depot/projects/smpng/sys/net/if_gif.c#70 integrate .. //depot/projects/smpng/sys/net/if_gre.c#57 integrate .. //depot/projects/smpng/sys/net/if_gre.h#14 integrate .. //depot/projects/smpng/sys/net/if_lagg.c#39 integrate .. //depot/projects/smpng/sys/net/if_lagg.h#16 integrate .. //depot/projects/smpng/sys/net/if_var.h#96 integrate .. //depot/projects/smpng/sys/net/if_vlan.c#91 integrate .. //depot/projects/smpng/sys/net/route.c#75 integrate .. //depot/projects/smpng/sys/net/route.h#47 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h#9 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h#10 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c#28 integrate .. //depot/projects/smpng/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c#26 integrate .. //depot/projects/smpng/sys/netinet/in.c#91 integrate .. //depot/projects/smpng/sys/netinet/ip_gre.c#29 integrate .. //depot/projects/smpng/sys/netinet/ip_ipsec.c#29 integrate .. //depot/projects/smpng/sys/netinet/tcp_input.c#166 integrate .. //depot/projects/smpng/sys/netinet/tcp_output.c#88 integrate .. //depot/projects/smpng/sys/netinet/tcp_subr.c#145 integrate .. //depot/projects/smpng/sys/netinet/tcp_var.h#97 integrate .. //depot/projects/smpng/sys/netinet/toecore.c#6 integrate .. //depot/projects/smpng/sys/netpfil/ipfw/ip_dn_io.c#5 integrate .. //depot/projects/smpng/sys/ofed/drivers/infiniband/hw/mlx4/mad.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/infiniband/hw/mlx4/main.c#5 integrate .. //depot/projects/smpng/sys/ofed/drivers/infiniband/hw/mlx4/qp.c#6 integrate .. //depot/projects/smpng/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c#11 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/alloc.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/catas.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/cmd.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/cq.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_cq.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_ethtool.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_main.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_netdev.c#13 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_port.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_port.h#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_resources.c#2 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_rx.c#6 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_selftest.c#2 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/en_tx.c#7 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/eq.c#5 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/fw.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/fw.h#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/icm.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/icm.h#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/intf.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/main.c#6 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/mcg.c#5 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/mlx4.h#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/mlx4_en.h#5 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/mlx4_stats.h#1 branch .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/mr.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/pd.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/port.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/profile.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/qp.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/reset.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/resource_tracker.c#3 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/sense.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/srq.c#4 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/sys_tune.c#2 integrate .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/utils.c#1 branch .. //depot/projects/smpng/sys/ofed/drivers/net/mlx4/utils.h#1 branch .. //depot/projects/smpng/sys/ofed/include/linux/linux_compat.c#11 integrate .. //depot/projects/smpng/sys/ofed/include/linux/mlx4/cmd.h#3 integrate .. //depot/projects/smpng/sys/ofed/include/linux/mlx4/cq.h#3 integrate .. //depot/projects/smpng/sys/ofed/include/linux/mlx4/device.h#3 integrate .. //depot/projects/smpng/sys/ofed/include/linux/mlx4/driver.h#3 integrate .. //depot/projects/smpng/sys/ofed/include/linux/mlx4/qp.h#3 integrate .. //depot/projects/smpng/sys/ofed/include/linux/mlx4/srq.h#3 integrate .. //depot/projects/smpng/sys/opencrypto/cryptodev.c#39 integrate .. //depot/projects/smpng/sys/pc98/cbus/fdc.c#14 delete .. //depot/projects/smpng/sys/pc98/cbus/fdc_cbus.c#3 delete .. //depot/projects/smpng/sys/pc98/cbus/fdcreg.h#3 delete .. //depot/projects/smpng/sys/pc98/cbus/fdcvar.h#3 delete .. //depot/projects/smpng/sys/pc98/cbus/olpt.c#7 integrate .. //depot/projects/smpng/sys/pc98/cbus/pckbd.c#8 integrate .. //depot/projects/smpng/sys/pc98/pc98/machdep.c#70 integrate .. //depot/projects/smpng/sys/pci/alpm.c#14 delete .. //depot/projects/smpng/sys/pci/amdpm.c#22 delete .. //depot/projects/smpng/sys/pci/amdsmb.c#8 delete .. //depot/projects/smpng/sys/pci/intpm.c#24 delete .. //depot/projects/smpng/sys/pci/intpmreg.h#6 delete .. //depot/projects/smpng/sys/pci/locate.pl#3 delete .. //depot/projects/smpng/sys/pci/ncr.c#31 delete .. //depot/projects/smpng/sys/pci/ncrreg.h#4 delete .. //depot/projects/smpng/sys/pci/nfsmb.c#11 delete .. //depot/projects/smpng/sys/pci/viapm.c#21 delete .. //depot/projects/smpng/sys/powerpc/aim/locore64.S#9 integrate .. //depot/projects/smpng/sys/powerpc/aim/machdep.c#41 integrate .. //depot/projects/smpng/sys/powerpc/booke/machdep.c#33 integrate .. //depot/projects/smpng/sys/powerpc/ofw/ofw_pcibus.c#13 integrate .. //depot/projects/smpng/sys/powerpc/pseries/vdevice.c#4 integrate .. //depot/projects/smpng/sys/sparc64/sparc64/machdep.c#121 integrate .. //depot/projects/smpng/sys/sys/bus.h#55 integrate .. //depot/projects/smpng/sys/sys/file.h#48 integrate .. //depot/projects/smpng/sys/sys/filedesc.h#44 integrate .. //depot/projects/smpng/sys/sys/ksem.h#5 integrate .. //depot/projects/smpng/sys/sys/mman.h#25 integrate .. //depot/projects/smpng/sys/sys/sleepqueue.h#24 integrate .. //depot/projects/smpng/sys/sys/sockbuf.h#9 integrate .. //depot/projects/smpng/sys/sys/syscallsubr.h#76 integrate .. //depot/projects/smpng/sys/vm/vm_map.c#133 integrate .. //depot/projects/smpng/sys/vm/vm_pageout.c#104 integrate .. //depot/projects/smpng/sys/x86/include/specialreg.h#12 integrate .. //depot/projects/smpng/sys/x86/xen/pv.c#3 integrate Differences ... ==== //depot/projects/smpng/share/man/man9/Makefile#48 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: head/share/man/man9/Makefile 271761 2014-09-18 13:56:32Z trasz $ +# $FreeBSD: head/share/man/man9/Makefile 271992 2014-09-22 19:14:27Z lwhsu $ MAN= accept_filter.9 \ accf_data.9 \ @@ -391,13 +391,21 @@ unr.9 delete_unrhdr.9 \ unr.9 free_unr.9 \ unr.9 new_unrhdr.9 +MLINKS+=accept_filter.9 accept_filt_add.9 \ + accept_filter.9 accept_filt_del.9 \ + accept_filter.9 accept_filt_generic_mod_event.9 \ + accept_filter.9 accept_filt_get.9 MLINKS+=alq.9 ALQ.9 \ alq.9 alq_close.9 \ alq.9 alq_flush.9 \ alq.9 alq_get.9 \ + alq.9 alq_getn.9 \ alq.9 alq_open.9 \ + alq.9 alq_open_flags.9 \ alq.9 alq_post.9 \ - alq.9 alq_write.9 + alq.9 alq_post_flags.9 \ + alq.9 alq_write.9 \ + alq.9 alq_writen.9 MLINKS+=altq.9 ALTQ.9 MLINKS+=atomic.9 atomic_add.9 \ atomic.9 atomic_clear.9 \ @@ -407,7 +415,9 @@ atomic.9 atomic_readandclear.9 \ atomic.9 atomic_set.9 \ atomic.9 atomic_store.9 \ - atomic.9 atomic_subtract.9 + atomic.9 atomic_subtract.9 \ + atomic.9 atomic_swap.9 \ + atomic.9 atomic_testandset.9 MLINKS+=bpf.9 bpfattach.9 \ bpf.9 bpfattach2.9 \ bpf.9 bpfdetach.9 \ @@ -435,6 +445,8 @@ bus_dma.9 bus_dmamap_create.9 \ bus_dma.9 bus_dmamap_destroy.9 \ bus_dma.9 bus_dmamap_load.9 \ + bus_dma.9 bus_dmamap_load_bio.9 \ + bus_dma.9 bus_dmamap_load_ccb.9 \ bus_dma.9 bus_dmamap_load_mbuf.9 \ bus_dma.9 bus_dmamap_load_mbuf_sg.9 \ bus_dma.9 bus_dmamap_load_uio.9 \ @@ -449,7 +461,8 @@ MLINKS+=BUS_SETUP_INTR.9 bus_setup_intr.9 \ BUS_SETUP_INTR.9 BUS_TEARDOWN_INTR.9 \ BUS_SETUP_INTR.9 bus_teardown_intr.9 -MLINKS+=bus_space.9 bus_space_barrier.9 \ +MLINKS+=bus_space.9 bus_space_alloc.9 \ + bus_space.9 bus_space_barrier.9 \ bus_space.9 bus_space_copy_region_1.9 \ bus_space.9 bus_space_copy_region_2.9 \ bus_space.9 bus_space_copy_region_4.9 \ @@ -560,6 +573,7 @@ condvar.9 cv_signal.9 \ condvar.9 cv_timedwait.9 \ condvar.9 cv_timedwait_sig.9 \ + condvar.9 cv_timedwait_sig_sbt.9 \ condvar.9 cv_wait.9 \ condvar.9 cv_wait_sig.9 \ condvar.9 cv_wait_unlock.9 \ @@ -668,12 +682,21 @@ eventtimers.9 ET_UNLOCK.9 \ eventtimers.9 et_start.9 \ eventtimers.9 et_stop.9 +MLINKS+=fail.9 KFAIL_POINT_CODE.9 \ + fail.9 KFAIL_POINT_ERROR.9 \ + fail.9 KFAIL_POINT_GOTO.9 \ + fail.9 KFAIL_POINT_RETURN.9 \ + fail.9 KFAIL_POINT_RETURN_VOID.9 MLINKS+=fetch.9 fubyte.9 \ fetch.9 fuswintr.9 \ fetch.9 fuword.9 \ fetch.9 fuword16.9 \ fetch.9 fuword32.9 \ fetch.9 fuword64.9 +MLINKS+=firmware.9 firmware_get.9 \ + firmware.9 firmware_put.9 \ + firmware.9 firmware_register.9 \ + firmware.9 firmware_unregister.9 MLINKS+=fpu_kern.9 fpu_kern_alloc_ctx.9 \ fpu_kern.9 fpu_kern_free_ctx.9 \ fpu_kern.9 fpu_kern_enter.9 \ @@ -681,8 +704,10 @@ fpu_kern.9 fpu_kern_thread.9 \ fpu_kern.9 is_fpu_kern_thread.9 MLINKS+=g_attach.9 g_detach.9 -MLINKS+=g_bio.9 g_clone_bio.9 \ +MLINKS+=g_bio.9 g_alloc_bio.9 \ + g_bio.9 g_clone_bio.9 \ g_bio.9 g_destroy_bio.9 \ + g_bio.9 g_duplicate_bio.9 \ g_bio.9 g_new_bio.9 \ g_bio.9 g_print_bio.9 MLINKS+=g_consumer.9 g_destroy_consumer.9 \ @@ -696,7 +721,9 @@ getenv.9 getenv_quad.9 \ getenv.9 getenv_uint.9 \ getenv.9 getenv_ulong.9 \ - getenv.9 testenv.9 + getenv.9 setenv.9 \ + getenv.9 testenv.9 \ + getenv.9 unsetenv.9 MLINKS+=g_event.9 g_cancel_event.9 \ g_event.9 g_post_event.9 \ g_event.9 g_waitfor_event.9 @@ -710,13 +737,22 @@ hash.9 hash32_str.9 \ hash.9 hash32_stre.9 \ hash.9 hash32_strn.9 \ - hash.9 hash32_strne.9 + hash.9 hash32_strne.9 \ + hash.9 jenkins_hash.9 \ + hash.9 jenkins_hash32.9 MLINKS+=hashinit.9 hashdestroy.9 \ hashinit.9 hashinit_flags.9 \ hashinit.9 phashinit.9 +MLINKS+=hhook.9 hhook_head_register.9 \ + hhook.9 hhook_head_deregister.9 \ + hhook.9 hhook_head_deregister_lookup.9 \ + hhook.9 hhook_run_hooks.9 \ + hhook.9 HHOOKS_RUN_IF.9 \ + hhook.9 HHOOKS_RUN_LOOKUP_IF.9 MLINKS+=ieee80211.9 ieee80211_ifattach.9 \ ieee80211.9 ieee80211_ifdetach.9 -MLINKS+=ieee80211_amrr.9 ieee80211_amrr_cleanup.9 \ +MLINKS+=ieee80211_amrr.9 ieee80211_amrr_choose.9 \ + ieee80211_amrr.9 ieee80211_amrr_cleanup.9 \ ieee80211_amrr.9 ieee80211_amrr_init.9 \ ieee80211_amrr.9 ieee80211_amrr_node_init.9 \ ieee80211_amrr.9 ieee80211_amrr_setinterval.9 \ @@ -729,6 +765,7 @@ MLINKS+=ieee80211_crypto.9 ieee80211_crypto_available.9 \ ieee80211_crypto.9 ieee80211_crypto_decap.9 \ ieee80211_crypto.9 ieee80211_crypto_delglobalkeys.9 \ + ieee80211_crypto.9 ieee80211_crypto_delkey.9 \ ieee80211_crypto.9 ieee80211_crypto_demic.9 \ ieee80211_crypto.9 ieee80211_crypto_encap.9 \ ieee80211_crypto.9 ieee80211_crypto_enmic.9 \ @@ -767,12 +804,55 @@ MLINKS+=ieee80211_regdomain.9 ieee80211_alloc_countryie.9 \ ieee80211_regdomain.9 ieee80211_init_channels.9 \ ieee80211_regdomain.9 ieee80211_sort_channels.9 +MLINKS+=ieee80211_scan.9 ieee80211_add_scan.9 \ + ieee80211_scan.9 ieee80211_bg_scan.9 \ + ieee80211_scan.9 ieee80211_cancel_scan.9 \ + ieee80211_scan.9 ieee80211_cancel_scan_any.9 \ + ieee80211_scan.9 ieee80211_check_scan.9 \ + ieee80211_scan.9 ieee80211_check_scan_current.9 \ + ieee80211_scan.9 ieee80211_flush.9 \ + ieee80211_scan.9 ieee80211_probe_curchan.9 \ + ieee80211_scan.9 ieee80211_scan_assoc_fail.9 \ + ieee80211_scan.9 ieee80211_scan_done.9 \ + ieee80211_scan.9 ieee80211_scan_dump_channels.9 \ + ieee80211_scan.9 ieee80211_scan_flush.9 \ + ieee80211_scan.9 ieee80211_scan_iterate.9 \ + ieee80211_scan.9 ieee80211_scan_next.9 \ + ieee80211_scan.9 ieee80211_scan_timeout.9 \ + ieee80211_scan.9 ieee80211_scanner_get.9 \ + ieee80211_scan.9 ieee80211_scanner_register.9 \ + ieee80211_scan.9 ieee80211_scanner_unregister.9 \ + ieee80211_scan.9 ieee80211_scanner_unregister_all.9 \ + ieee80211_scan.9 ieee80211_start_scan.9 MLINKS+=ieee80211_vap.9 ieee80211_vap_attach.9 \ ieee80211_vap.9 ieee80211_vap_detach.9 \ ieee80211_vap.9 ieee80211_vap_setup.9 -MLINKS+=ifnet.9 ifaddr.9 \ +MLINKS+=ifnet.9 if_addmulti.9 \ + ifnet.9 if_alloc.9 \ + ifnet.9 if_allmulti.9 \ + ifnet.9 if_attach.9 \ ifnet.9 if_data.9 \ - ifnet.9 ifqueue.9 + ifnet.9 IF_DEQUEUE.9 \ + ifnet.9 if_delmulti.9 \ + ifnet.9 if_detach.9 \ + ifnet.9 if_down.9 \ + ifnet.9 if_findmulti.9 \ + ifnet.9 if_free.9 \ + ifnet.9 if_free_type.9 \ + ifnet.9 if_up.9 \ + ifnet.9 ifa_free.9 \ + ifnet.9 ifa_ifwithaddr.9 \ + ifnet.9 ifa_ifwithdstaddr.9 \ + ifnet.9 ifa_ifwithnet.9 \ + ifnet.9 ifa_ref.9 \ + ifnet.9 ifaddr.9 \ + ifnet.9 ifaddr_byindex.9 \ + ifnet.9 ifaof_ifpforaddr.9 \ + ifnet.9 ifioctl.9 \ + ifnet.9 ifpromisc.9 \ + ifnet.9 ifqueue.9 \ + ifnet.9 ifunit.9 \ + ifnet.9 ifunit_ref.9 MLINKS+=insmntque.9 insmntque1.9 MLINKS+=ithread.9 ithread_add_handler.9 \ ithread.9 ithread_create.9 \ @@ -787,6 +867,14 @@ kernel_mount.9 mount_argb.9 \ kernel_mount.9 mount_argf.9 \ kernel_mount.9 mount_argsu.9 +MLINKS+=khelp.9 khelp_add_hhook.9 \ + khelp.9 KHELP_DECLARE_MOD.9 \ + khelp.9 KHELP_DECLARE_MOD_UMA.9 \ + khelp.9 khelp_destroy_osd.9 \ + khelp.9 khelp_get_id.9 \ + khelp.9 khelp_get_osd.9 \ + khelp.9 khelp_init_osd.9 \ + khelp.9 khelp_remove_hhook.9 MLINKS+=kobj.9 DEFINE_CLASS.9 \ kobj.9 kobj_class_compile.9 \ kobj.9 kobj_class_compile_static.9 \ @@ -797,6 +885,7 @@ kobj.9 kobj_init_static.9 MLINKS+=kproc.9 kproc_create.9 \ kproc.9 kproc_exit.9 \ + kproc.9 kproc_kthread_add.9 \ kproc.9 kproc_resume.9 \ kproc.9 kproc_shutdown.9 \ kproc.9 kproc_start.9 \ @@ -831,7 +920,8 @@ ktr.9 CTR2.9 \ ktr.9 CTR3.9 \ ktr.9 CTR4.9 \ - ktr.9 CTR5.9 + ktr.9 CTR5.9 \ + ktr.9 CTR6.9 MLINKS+=lock.9 lockdestroy.9 \ lock.9 lockinit.9 \ lock.9 lockmgr.9 \ @@ -888,6 +978,7 @@ mbpool.9 mbp_sync.9 MLINKS+=\ mbuf.9 m_adj.9 \ + mbuf.9 m_align.9 \ mbuf.9 M_ALIGN.9 \ mbuf.9 m_append.9 \ mbuf.9 m_apply.9 \ @@ -898,6 +989,7 @@ mbuf.9 m_copydata.9 \ mbuf.9 m_copym.9 \ mbuf.9 m_copypacket.9 \ + mbuf.9 m_copyup.9 \ mbuf.9 m_defrag.9 \ mbuf.9 m_devget.9 \ mbuf.9 m_dup.9 \ @@ -1013,9 +1105,38 @@ MLINKS+=namei.9 NDFREE.9 \ namei.9 NDHASGIANT.9 \ namei.9 NDINIT.9 +MLINKS+=netisr.9 netisr_clearqdrops.9 \ + netisr.9 netisr_default_flow2cpu.9 \ + netisr.9 netisr_dispatch.9 \ + netisr.9 netisr_dispatch_src.9 \ + netisr.9 netisr_get_cpucount.9 \ + netisr.9 netisr_get_cpuid.9 \ + netisr.9 netisr_getqdrops.9 \ + netisr.9 netisr_getqlimit.9 \ + netisr.9 netisr_queue.9 \ + netisr.9 netisr_queue_src.9 \ + netisr.9 netisr_register.9 \ + netisr.9 netisr_setqlimit.9 \ + netisr.9 netisr_unregister.9 +MLINKS+=osd.9 osd_call.9 \ + osd.9 osd_del.9 \ + osd.9 osd_deregister.9 \ + osd.9 osd_exit.9 \ + osd.9 osd_get.9 \ + osd.9 osd_register.9 \ + osd.9 osd_set.9 MLINKS+=pbuf.9 getpbuf.9 \ pbuf.9 relpbuf.9 \ pbuf.9 trypbuf.9 +MLINKS+=PCBGROUP.9 in_pcbgroup_byhash.9 \ + PCBGROUP.9 in_pcbgroup_byinpcb.9 \ + PCBGROUP.9 in_pcbgroup_destroy.9 \ + PCBGROUP.9 in_pcbgroup_enabled.9 \ + PCBGROUP.9 in_pcbgroup_init.9 \ + PCBGROUP.9 in_pcbgroup_remove.9 \ + PCBGROUP.9 in_pcbgroup_update.9 \ + PCBGROUP.9 in_pcbgroup_update_mbuf.9 \ + PCBGROUP.9 in6_pcbgroup_byhash.9 MLINKS+=pci.9 pci_alloc_msi.9 \ pci.9 pci_alloc_msix.9 \ pci.9 pci_disable_busmaster.9 \ @@ -1044,8 +1165,15 @@ pci.9 pci_set_max_read_req.9 \ pci.9 pci_write_config.9 MLINKS+=pfil.9 pfil_add_hook.9 \ + pfil.9 pfil_head_register.9 \ + pfil.9 pfil_head_unregister.9 \ pfil.9 pfil_hook_get.9 \ - pfil.9 pfil_remove_hook.9 + pfil.9 pfil_remove_hook.9 \ + pfil.9 pfil_rlock.9 \ + pfil.9 pfil_run_hooks.9 \ + pfil.9 pfil_runlock.9 \ + pfil.9 pfil_wlock.9 \ + pfil.9 pfil_wunlock.9 MLINKS+=pfind.9 zpfind.9 MLINKS+=pmap_copy.9 pmap_copy_page.9 MLINKS+=pmap_extract.9 pmap_extract_and_hold.9 @@ -1118,6 +1246,11 @@ rmlock.9 rm_wunlock.9 MLINKS+=rtalloc.9 rtalloc1.9 \ rtalloc.9 rtalloc_ign.9 \ + rtalloc.9 RT_ADDREF.9 \ + rtalloc.9 RT_LOCK.9 \ + rtalloc.9 RT_REMREF.9 \ + rtalloc.9 RT_RTFREE.9 \ + rtalloc.9 RT_UNLOCK.9 \ rtalloc.9 RTFREE_LOCKED.9 \ rtalloc.9 RTFREE.9 \ rtalloc.9 rtfree.9 \ @@ -1132,6 +1265,7 @@ rwlock.9 rw_destroy.9 \ rwlock.9 rw_downgrade.9 \ rwlock.9 rw_init.9 \ + rwlock.9 rw_init_flags.9 \ rwlock.9 rw_initialized.9 \ rwlock.9 rw_rlock.9 \ rwlock.9 rw_runlock.9 \ @@ -1169,6 +1303,7 @@ sbuf.9 sbuf_vprintf.9 MLINKS+=scheduler.9 curpriority_cmp.9 \ scheduler.9 maybe_resched.9 \ + scheduler.9 propagate_priority.9 \ scheduler.9 resetpriority.9 \ scheduler.9 roundrobin.9 \ scheduler.9 roundrobin_interval.9 \ @@ -1257,17 +1392,18 @@ sleepqueue.9 sleepq_add.9 \ sleepqueue.9 sleepq_alloc.9 \ sleepqueue.9 sleepq_broadcast.9 \ - sleepqueue.9 sleepq_calc_signal_retval.9 \ - sleepqueue.9 sleepq_catch_signals.9 \ sleepqueue.9 sleepq_free.9 \ sleepqueue.9 sleepq_lookup.9 \ + sleepqueue.9 sleepq_lock.9 \ sleepqueue.9 sleepq_release.9 \ sleepqueue.9 sleepq_remove.9 \ sleepqueue.9 sleepq_set_timeout.9 \ sleepqueue.9 sleepq_set_timeout_sbt.9 \ sleepqueue.9 sleepq_signal.9 \ + sleepqueue.9 sleepq_sleepcnt.9 \ sleepqueue.9 sleepq_timedwait.9 \ sleepqueue.9 sleepq_timedwait_sig.9 \ + sleepqueue.9 sleepq_type.9 \ sleepqueue.9 sleepq_wait.9 \ sleepqueue.9 sleepq_wait_sig.9 MLINKS+=socket.9 soabort.9 \ @@ -1322,6 +1458,8 @@ stack.9 stack_destroy.9 \ stack.9 stack_print.9 \ stack.9 stack_print_ddb.9 \ + stack.9 stack_print_short.9 \ + stack.9 stack_print_short_ddb.9 \ stack.9 stack_put.9 \ stack.9 stack_save.9 \ stack.9 stack_sbuf_print.9 \ @@ -1343,6 +1481,7 @@ sx.9 sx_init_flags.9 \ sx.9 sx_sleep.9 \ sx.9 sx_slock.9 \ + sx.9 sx_slock_sig.9 \ sx.9 sx_sunlock.9 \ sx.9 SX_SYSINIT.9 \ sx.9 sx_try_slock.9 \ @@ -1351,6 +1490,7 @@ sx.9 sx_unlock.9 \ sx.9 sx_xholder.9 \ sx.9 sx_xlock.9 \ + sx.9 sx_xlock_sig.9 \ sx.9 sx_xlocked.9 \ sx.9 sx_xunlock.9 MLINKS+=sysctl.9 SYSCTL_DECL.9 \ @@ -1426,20 +1566,27 @@ timeout.9 callout_handle_init.9 \ timeout.9 callout_init.9 \ timeout.9 callout_init_mtx.9 \ + timeout.9 callout_init_rm.9 \ timeout.9 callout_init_rw.9 \ timeout.9 callout_pending.9 \ timeout.9 callout_reset.9 \ + timeout.9 callout_reset_curcpu.9 \ timeout.9 callout_reset_sbt.9 \ timeout.9 callout_reset_on.9 \ timeout.9 callout_reset_sbt_on.9 \ timeout.9 callout_schedule.9 \ + timeout.9 callout_schedule_curcpu.9 \ + timeout.9 callout_schedule_on.9 \ timeout.9 callout_stop.9 \ timeout.9 untimeout.9 -MLINKS+=ucred.9 crcopy.9 \ +MLINKS+=ucred.9 cred_update_thread.9 \ + ucred.9 crcopy.9 \ + ucred.9 crcopysafe.9 \ ucred.9 crdup.9 \ ucred.9 crfree.9 \ ucred.9 crget.9 \ ucred.9 crhold.9 \ + ucred.9 crsetgroups.9 \ ucred.9 crshared.9 \ ucred.9 cru2x.9 MLINKS+=uidinfo.9 uifind.9 \ @@ -1586,6 +1733,7 @@ vrele.9 vunref.9 MLINKS+=vslock.9 vsunlock.9 MLINKS+=zone.9 uma.9 \ + zone.9 uma_find_refcnt.9 \ zone.9 uma_zalloc.9 \ zone.9 uma_zalloc_arg.9 \ zone.9 uma_zcreate.9 \ @@ -1594,6 +1742,7 @@ zone.9 uma_zfree_arg.9 \ zone.9 uma_zone_get_cur.9 \ zone.9 uma_zone_get_max.9 \ - zone.9 uma_zone_set_max.9 + zone.9 uma_zone_set_max.9 \ + zone.9 uma_zone_set_warning.9 .include ==== //depot/projects/smpng/share/man/man9/sleepqueue.9#7 (text+ko) ==== @@ -21,7 +21,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD: head/share/man/man9/sleepqueue.9 247812 2013-03-04 19:10:39Z davide $ +.\" $FreeBSD: head/share/man/man9/sleepqueue.9 271992 2014-09-22 19:14:27Z lwhsu $ .\" .Dd February 19, 2013 .Dt SLEEPQUEUE 9 @@ -32,8 +32,6 @@ .Nm sleepq_add , .Nm sleepq_alloc , .Nm sleepq_broadcast , -.Nm sleepq_calc_signal_retval , -.Nm sleepq_catch_signals , .Nm sleepq_free , .Nm sleepq_lock , .Nm sleepq_lookup , @@ -62,10 +60,6 @@ .Fn sleepq_alloc "void" .Ft int .Fn sleepq_broadcast "void *wchan" "int flags" "int pri" "int queue" -.Ft int -.Fn sleepq_calc_signal_retval "int sig" -.Ft int -.Fn sleepq_catch_signals "void *wchan" .Ft void .Fn sleepq_free "struct sleepqueue *sq" .Ft struct sleepqueue * @@ -86,15 +80,15 @@ .Ft u_int .Fn sleepq_sleepcnt "void *wchan" "int queue" .Ft int -.Fn sleepq_timedwait "void *wchan" +.Fn sleepq_timedwait "void *wchan" "int pri" .Ft int -.Fn sleepq_timedwait_sig "void *wchan" "int signal_caught" +.Fn sleepq_timedwait_sig "void *wchan" "int pri" .Ft int .Fn sleepq_type "void *wchan" .Ft void -.Fn sleepq_wait "void *wchan" +.Fn sleepq_wait "void *wchan" "int pri" .Ft int -.Fn sleepq_wait_sig "void *wchan" +.Fn sleepq_wait_sig "void *wchan" "int pri" .Sh DESCRIPTION Sleep queues provide a mechanism for suspending execution of a thread until some condition is met. @@ -252,17 +246,6 @@ .Fn callout_reset_sbt flags. .Pp -The current thread may be marked interruptible by calling -.Fn sleepq_catch_signals -with -.Fa wchan -set to the wait channel. -This function returns a signal number if there are any pending signals for -the current thread and 0 if there is not a pending signal. -The sleep queue chain associated with argument -.Fa wchan -should have been locked by a prior call to -.Fn sleepq_lock . .Pp Once the thread is ready to suspend, one of the wait functions is called to put the current thread to sleep @@ -289,12 +272,9 @@ needs to have been locked with a prior call to .Fn sleepq_lock . The -.Fa signal_caught -parameter to -.Fn sleepq_timedwait_sig -specifies if a previous call to -.Fn sleepq_catch_signals -found a pending signal. +.Fa pri +argument is used to set the priority of the thread when it is awakened. +If it is set to zero, the thread's priority is left alone. .Pp When the thread is resumed, the wait functions return a non-zero value if the thread was awakened due to @@ -304,20 +284,6 @@ is returned. If the sleep was interrupted by something other than a signal, then some other return value will be returned. -If zero is returned after resuming from an interruptible sleep, -then -.Fn sleepq_calc_signal_retval -should be called to determine if the sleep was interrupted by a signal. -If so, -.Fn sleepq_calc_signal_retval -returns -.Er ERESTART -if the interrupting signal is restartable and -.Er EINTR -otherwise. -If the sleep was not interrupted by a signal, -.Fn sleepq_calc_signal_retval -will return 0. .Pp A sleeping thread is normally resumed by the .Fn sleepq_broadcast ==== //depot/projects/smpng/sys/Makefile#33 (text+ko) ==== @@ -1,11 +1,11 @@ -# $FreeBSD: head/sys/Makefile 268351 2014-07-07 00:27:09Z marcel $ +# $FreeBSD: head/sys/Makefile 272019 2014-09-23 06:32:19Z rpaulo $ # Directories to include in cscope name file and TAGS. CSCOPEDIRS= boot bsm cam cddl compat conf contrib crypto ddb dev fs gdb \ geom gnu isa kern libkern modules net net80211 \ netgraph netinet netinet6 netipsec netnatm netpfil \ netsmb nfs nfsclient nfsserver nlm ofed opencrypto \ - pci rpc security sys ufs vm xdr xen ${CSCOPE_ARCHDIR} + rpc security sys ufs vm xdr xen ${CSCOPE_ARCHDIR} .if !defined(CSCOPE_ARCHDIR) .if defined(ALL_ARCH) CSCOPE_ARCHDIR = amd64 arm i386 mips pc98 powerpc sparc64 x86 ==== //depot/projects/smpng/sys/amd64/amd64/fpu.c#35 (text+ko) ==== @@ -31,7 +31,7 @@ */ #include -__FBSDID("$FreeBSD: head/sys/amd64/amd64/fpu.c 271747 2014-09-18 09:13:20Z kib $"); +__FBSDID("$FreeBSD: head/sys/amd64/amd64/fpu.c 271924 2014-09-21 09:06:50Z kib $"); #include #include @@ -602,29 +602,30 @@ return (fpetable[(mxcsr & (~mxcsr >> 7)) & 0x3f]); } -static int err_count = 0; - /* * Device Not Available (DNA, #NM) exception handler. * * It would be better to switch FP context here (if curthread != * fpcurthread) and not necessarily for every context switch, but it * is too hard to access foreign pcb's. - * - * The handler is entered with interrupts enabled, which allows the - * context switch to happen before critical enter() is executed, and - * causes restoration of FPU context on CPU other than that caused - * DNA. It is fine, since context switch started emulation on the - * current CPU as well. */ void fpudna(void) { + /* + * This handler is entered with interrupts enabled, so context + * switches may occur before critical_enter() is executed. If + * a context switch occurs, then when we regain control, our + * state will have been completely restored. The CPU may + * change underneath us, but the only part of our context that + * lives in the CPU is CR0.TS and that will be "restored" by + * setting it on the new CPU. + */ critical_enter(); + if (PCPU_GET(fpcurthread) == curthread) { - printf("fpudna: fpcurthread == curthread %d times\n", - ++err_count); + printf("fpudna: fpcurthread == curthread\n"); stop_emulating(); critical_exit(); return; ==== //depot/projects/smpng/sys/amd64/amd64/machdep.c#134 (text+ko) ==== @@ -39,7 +39,7 @@ */ #include -__FBSDID("$FreeBSD: head/sys/amd64/amd64/machdep.c 271495 2014-09-13 03:10:02Z jhb $"); +__FBSDID("$FreeBSD: head/sys/amd64/amd64/machdep.c 272098 2014-09-25 08:28:10Z royger $"); #include "opt_atpic.h" #include "opt_compat.h" @@ -184,9 +184,6 @@ * the physical address at which the kernel is loaded. */ extern char kernphys[]; -#ifdef DDB -extern vm_offset_t ksym_start, ksym_end; -#endif struct msgbuf *msgbufp; @@ -1823,6 +1820,10 @@ native_parse_preload_data(u_int64_t modulep) { caddr_t kmdp; +#ifdef DDB + vm_offset_t ksym_start; + vm_offset_t ksym_end; +#endif preload_metadata = (caddr_t)(uintptr_t)(modulep + KERNBASE); preload_bootstrap_relocate(KERNBASE); @@ -1834,6 +1835,7 @@ #ifdef DDB ksym_start = MD_FETCH(kmdp, MODINFOMD_SSYM, uintptr_t); ksym_end = MD_FETCH(kmdp, MODINFOMD_ESYM, uintptr_t); + db_fetch_ksymtab(ksym_start, ksym_end); #endif return (kmdp); ==== //depot/projects/smpng/sys/amd64/amd64/trap.c#96 (text+ko) ==== @@ -38,7 +38,7 @@ */ #include -__FBSDID("$FreeBSD: head/sys/amd64/amd64/trap.c 268923 2014-07-20 18:44:56Z markj $"); +__FBSDID("$FreeBSD: head/sys/amd64/amd64/trap.c 271924 2014-09-21 09:06:50Z kib $"); /* * AMD64 Trap and System call handling @@ -436,8 +436,8 @@ case T_XMMFLT: /* SIMD floating-point exception */ case T_FPOPFLT: /* FPU operand fetch fault */ /* - * XXXKIB for now disable any FPU traps in kernel - * handler registration seems to be overkill + * For now, supporting kernel handler + * registration for FPU traps is overkill. */ trap_fatal(frame, 0); goto out; ==== //depot/projects/smpng/sys/amd64/conf/GENERIC#115 (text+ko) ==== @@ -16,7 +16,7 @@ # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # -# $FreeBSD: head/sys/amd64/conf/GENERIC 271137 2014-09-04 21:06:33Z markj $ +# $FreeBSD: head/sys/amd64/conf/GENERIC 272022 2014-09-23 08:33:03Z bz $ cpu HAMMER >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Fri Sep 26 20:44:13 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id E431BC2E; Fri, 26 Sep 2014 20:44:12 +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 ESMTPS id A2A57C2C for ; Fri, 26 Sep 2014 20:44:12 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C4F4321 for ; Fri, 26 Sep 2014 20:44:12 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QKiCFA001182 for ; Fri, 26 Sep 2014 20:44:12 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QKi5jA001171 for perforce@freebsd.org; Fri, 26 Sep 2014 20:44:05 GMT (envelope-from jhb@freebsd.org) Date: Fri, 26 Sep 2014 20:44:05 GMT Message-Id: <201409262044.s8QKi5jA001171@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200848 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 20:44:13 -0000 http://p4web.freebsd.org/@@1200848?ac=10 Change 1200848 by jhb@jhb_ralph on 2014/09/26 20:43:22 IFC @1200843 Affected files ... .. //depot/projects/multipass/share/man/man9/BUF_ISLOCKED.9#4 integrate .. //depot/projects/multipass/share/man/man9/BUF_LOCK.9#3 integrate .. //depot/projects/multipass/share/man/man9/BUF_LOCKFREE.9#3 integrate .. //depot/projects/multipass/share/man/man9/BUF_LOCKINIT.9#3 integrate .. //depot/projects/multipass/share/man/man9/BUF_RECURSED.9#4 integrate .. //depot/projects/multipass/share/man/man9/BUF_TIMELOCK.9#3 integrate .. //depot/projects/multipass/share/man/man9/BUF_UNLOCK.9#3 integrate .. //depot/projects/multipass/share/man/man9/BUS_CONFIG_INTR.9#3 integrate .. //depot/projects/multipass/share/man/man9/BUS_SETUP_INTR.9#4 integrate .. //depot/projects/multipass/share/man/man9/CTASSERT.9#4 integrate .. //depot/projects/multipass/share/man/man9/DB_COMMAND.9#4 integrate .. //depot/projects/multipass/share/man/man9/DECLARE_GEOM_CLASS.9#3 integrate .. //depot/projects/multipass/share/man/man9/DECLARE_MODULE.9#3 integrate .. //depot/projects/multipass/share/man/man9/DEVICE_ATTACH.9#3 integrate .. //depot/projects/multipass/share/man/man9/DEVICE_IDENTIFY.9#3 integrate .. //depot/projects/multipass/share/man/man9/DEV_MODULE.9#4 integrate .. //depot/projects/multipass/share/man/man9/DRIVER_MODULE.9#4 integrate .. //depot/projects/multipass/share/man/man9/EVENTHANDLER.9#3 integrate .. //depot/projects/multipass/share/man/man9/KASSERT.9#4 integrate .. //depot/projects/multipass/share/man/man9/LOCK_PROFILING.9#5 integrate .. //depot/projects/multipass/share/man/man9/MODULE_DEPEND.9#3 integrate .. //depot/projects/multipass/share/man/man9/MODULE_VERSION.9#3 integrate .. //depot/projects/multipass/share/man/man9/Makefile#7 integrate .. //depot/projects/multipass/share/man/man9/PCBGROUP.9#1 branch .. //depot/projects/multipass/share/man/man9/SDT.9#2 integrate .. //depot/projects/multipass/share/man/man9/SYSCALL_MODULE.9#3 integrate .. //depot/projects/multipass/share/man/man9/SYSINIT.9#3 integrate .. //depot/projects/multipass/share/man/man9/VFS_SET.9#3 integrate .. //depot/projects/multipass/share/man/man9/VOP_GETPAGES.9#4 integrate .. //depot/projects/multipass/share/man/man9/VOP_GETVOBJECT.9#4 delete .. //depot/projects/multipass/share/man/man9/VOP_INACTIVE.9#4 integrate .. //depot/projects/multipass/share/man/man9/alq.9#4 integrate .. //depot/projects/multipass/share/man/man9/altq.9#3 integrate .. //depot/projects/multipass/share/man/man9/atomic.9#4 integrate .. //depot/projects/multipass/share/man/man9/buf.9#3 integrate .. //depot/projects/multipass/share/man/man9/bus_activate_resource.9#3 integrate .. //depot/projects/multipass/share/man/man9/bus_alloc_resource.9#4 integrate .. //depot/projects/multipass/share/man/man9/bus_child_present.9#3 integrate .. //depot/projects/multipass/share/man/man9/bus_dma.9#3 integrate .. //depot/projects/multipass/share/man/man9/bus_release_resource.9#3 integrate .. //depot/projects/multipass/share/man/man9/bus_set_resource.9#3 integrate .. //depot/projects/multipass/share/man/man9/bus_space.9#4 integrate .. //depot/projects/multipass/share/man/man9/cd.9#3 integrate .. //depot/projects/multipass/share/man/man9/config_intrhook.9#3 integrate .. //depot/projects/multipass/share/man/man9/counter.9#3 integrate .. //depot/projects/multipass/share/man/man9/crypto.9#4 integrate .. //depot/projects/multipass/share/man/man9/devstat.9#4 integrate .. //depot/projects/multipass/share/man/man9/domain.9#3 integrate .. //depot/projects/multipass/share/man/man9/eventtimers.9#3 integrate .. //depot/projects/multipass/share/man/man9/fail.9#4 integrate .. //depot/projects/multipass/share/man/man9/firmware.9#4 integrate .. //depot/projects/multipass/share/man/man9/fpu_kern.9#1 branch .. //depot/projects/multipass/share/man/man9/g_access.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_attach.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_bio.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_consumer.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_data.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_event.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_geom.9#4 integrate .. //depot/projects/multipass/share/man/man9/g_provider.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_provider_by_name.9#3 integrate .. //depot/projects/multipass/share/man/man9/g_wither_geom.9#4 integrate .. //depot/projects/multipass/share/man/man9/get_cyclecount.9#5 integrate .. //depot/projects/multipass/share/man/man9/getnewvnode.9#3 integrate .. //depot/projects/multipass/share/man/man9/groupmember.9#3 integrate .. //depot/projects/multipass/share/man/man9/hhook.9#3 integrate .. //depot/projects/multipass/share/man/man9/ieee80211_radiotap.9#4 integrate .. //depot/projects/multipass/share/man/man9/ifnet.9#5 integrate .. //depot/projects/multipass/share/man/man9/insmntque.9#4 integrate .. //depot/projects/multipass/share/man/man9/intro.9#3 integrate .. //depot/projects/multipass/share/man/man9/kernel_mount.9#3 integrate .. //depot/projects/multipass/share/man/man9/khelp.9#3 integrate .. //depot/projects/multipass/share/man/man9/kqueue.9#4 integrate .. //depot/projects/multipass/share/man/man9/kthread.9#4 integrate .. //depot/projects/multipass/share/man/man9/lock.9#4 integrate .. //depot/projects/multipass/share/man/man9/mbchain.9#3 integrate .. //depot/projects/multipass/share/man/man9/mbpool.9#4 integrate .. //depot/projects/multipass/share/man/man9/mbuf.9#5 integrate .. //depot/projects/multipass/share/man/man9/mbuf_tags.9#3 integrate .. //depot/projects/multipass/share/man/man9/mdchain.9#3 integrate .. //depot/projects/multipass/share/man/man9/memguard.9#4 integrate .. //depot/projects/multipass/share/man/man9/microtime.9#3 integrate .. //depot/projects/multipass/share/man/man9/microuptime.9#3 integrate .. //depot/projects/multipass/share/man/man9/mod_cc.9#3 integrate .. //depot/projects/multipass/share/man/man9/module.9#3 integrate .. //depot/projects/multipass/share/man/man9/namei.9#4 integrate .. //depot/projects/multipass/share/man/man9/netisr.9#4 integrate .. //depot/projects/multipass/share/man/man9/osd.9#3 integrate .. //depot/projects/multipass/share/man/man9/pbuf.9#3 integrate .. //depot/projects/multipass/share/man/man9/pci.9#4 integrate .. //depot/projects/multipass/share/man/man9/pfind.9#4 integrate .. //depot/projects/multipass/share/man/man9/pget.9#1 branch .. //depot/projects/multipass/share/man/man9/pgfind.9#4 integrate .. //depot/projects/multipass/share/man/man9/pmap.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_activate.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_change_wiring.9#3 delete .. //depot/projects/multipass/share/man/man9/pmap_clear_modify.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_copy.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_enter.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_extract.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_growkernel.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_init.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_is_modified.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_is_prefaultable.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_map.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_mincore.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_object_init_pt.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_page_exists_quick.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_page_init.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_page_protect.9#3 delete .. //depot/projects/multipass/share/man/man9/pmap_pinit.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_protect.9#1 branch .. //depot/projects/multipass/share/man/man9/pmap_qenter.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_release.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_remove.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_resident_count.9#3 integrate .. //depot/projects/multipass/share/man/man9/pmap_unwire.9#1 branch .. //depot/projects/multipass/share/man/man9/pmap_zero_page.9#3 integrate .. //depot/projects/multipass/share/man/man9/pseudofs.9#4 integrate .. //depot/projects/multipass/share/man/man9/redzone.9#3 integrate .. //depot/projects/multipass/share/man/man9/resource_int_value.9#3 integrate .. //depot/projects/multipass/share/man/man9/rman.9#4 integrate .. //depot/projects/multipass/share/man/man9/rtentry.9#4 integrate .. //depot/projects/multipass/share/man/man9/sbuf.9#4 integrate .. //depot/projects/multipass/share/man/man9/selrecord.9#4 integrate .. //depot/projects/multipass/share/man/man9/signal.9#3 integrate .. //depot/projects/multipass/share/man/man9/sleep.9#5 integrate .. //depot/projects/multipass/share/man/man9/sleepqueue.9#5 integrate .. //depot/projects/multipass/share/man/man9/socket.9#3 integrate .. //depot/projects/multipass/share/man/man9/sysctl.9#4 integrate .. //depot/projects/multipass/share/man/man9/sysctl_add_oid.9#4 integrate .. //depot/projects/multipass/share/man/man9/sysctl_ctx_init.9#4 integrate .. //depot/projects/multipass/share/man/man9/taskqueue.9#5 integrate .. //depot/projects/multipass/share/man/man9/timeout.9#5 integrate .. //depot/projects/multipass/share/man/man9/tvtohz.9#3 integrate .. //depot/projects/multipass/share/man/man9/ucred.9#3 integrate .. //depot/projects/multipass/share/man/man9/uidinfo.9#3 integrate .. //depot/projects/multipass/share/man/man9/usbdi.9#5 integrate .. //depot/projects/multipass/share/man/man9/utopia.9#3 integrate .. //depot/projects/multipass/share/man/man9/vaccess_acl_nfs4.9#4 integrate .. //depot/projects/multipass/share/man/man9/vflush.9#4 integrate .. //depot/projects/multipass/share/man/man9/vfs_busy.9#4 integrate .. //depot/projects/multipass/share/man/man9/vfs_getnewfsid.9#3 integrate .. //depot/projects/multipass/share/man/man9/vfs_getopt.9#4 integrate .. //depot/projects/multipass/share/man/man9/vfs_getvfs.9#3 integrate .. //depot/projects/multipass/share/man/man9/vfs_mountedfrom.9#4 integrate .. //depot/projects/multipass/share/man/man9/vfs_rootmountalloc.9#3 integrate .. //depot/projects/multipass/share/man/man9/vfs_timestamp.9#3 integrate .. //depot/projects/multipass/share/man/man9/vfs_unbusy.9#4 integrate .. //depot/projects/multipass/share/man/man9/vfsconf.9#3 integrate .. //depot/projects/multipass/share/man/man9/vgone.9#4 integrate .. //depot/projects/multipass/share/man/man9/vhold.9#3 integrate .. //depot/projects/multipass/share/man/man9/vinvalbuf.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_fault_prefault.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map.9#4 integrate .. //depot/projects/multipass/share/man/man9/vm_map_check_protection.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_create.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_delete.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_entry_resize_free.9#4 integrate .. //depot/projects/multipass/share/man/man9/vm_map_find.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_findspace.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_inherit.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_init.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_insert.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_lock.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_lookup.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_madvise.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_max.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_protect.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_remove.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_simplify_entry.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_stack.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_submap.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_sync.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_map_wire.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_aflag.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_alloc.9#4 integrate .. //depot/projects/multipass/share/man/man9/vm_page_bits.9#4 integrate .. //depot/projects/multipass/share/man/man9/vm_page_busy.9#2 integrate .. //depot/projects/multipass/share/man/man9/vm_page_cache.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_deactivate.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_dontneed.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_free.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_grab.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_hold.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_insert.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_lookup.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_rename.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_page_wire.9#3 integrate .. //depot/projects/multipass/share/man/man9/vm_set_page_size.9#3 integrate .. //depot/projects/multipass/share/man/man9/vn_fullpath.9#3 integrate .. //depot/projects/multipass/share/man/man9/vn_isdisk.9#3 integrate .. //depot/projects/multipass/share/man/man9/vnode.9#5 integrate .. //depot/projects/multipass/share/man/man9/watchdog.9#4 integrate .. //depot/projects/multipass/share/man/man9/zero_copy.9#3 delete .. //depot/projects/multipass/share/man/man9/zone.9#5 integrate .. //depot/projects/multipass/sys/Makefile#7 integrate .. //depot/projects/multipass/sys/amd64/acpica/acpi_machdep.c#8 integrate .. //depot/projects/multipass/sys/amd64/acpica/acpi_wakecode.S#6 integrate .. //depot/projects/multipass/sys/amd64/amd64/amd64_mem.c#5 integrate .. //depot/projects/multipass/sys/amd64/amd64/apic_vector.S#5 integrate .. //depot/projects/multipass/sys/amd64/amd64/cpu_switch.S#6 integrate .. //depot/projects/multipass/sys/amd64/amd64/db_disasm.c#4 integrate .. //depot/projects/multipass/sys/amd64/amd64/exception.S#6 integrate .. //depot/projects/multipass/sys/amd64/amd64/fpu.c#5 integrate .. //depot/projects/multipass/sys/amd64/amd64/genassym.c#6 integrate .. //depot/projects/multipass/sys/amd64/amd64/identcpu.c#10 delete .. //depot/projects/multipass/sys/amd64/amd64/locore.S#3 integrate .. //depot/projects/multipass/sys/amd64/amd64/machdep.c#13 integrate .. //depot/projects/multipass/sys/amd64/amd64/mem.c#4 integrate .. //depot/projects/multipass/sys/amd64/amd64/mp_machdep.c#9 integrate .. //depot/projects/multipass/sys/amd64/amd64/mp_watchdog.c#5 integrate .. //depot/projects/multipass/sys/amd64/amd64/mpboot.S#3 integrate .. //depot/projects/multipass/sys/amd64/amd64/pmap.c#14 integrate .. //depot/projects/multipass/sys/amd64/amd64/support.S#5 integrate .. //depot/projects/multipass/sys/amd64/amd64/sys_machdep.c#6 integrate .. //depot/projects/multipass/sys/amd64/amd64/trap.c#8 integrate .. //depot/projects/multipass/sys/amd64/amd64/uio_machdep.c#4 integrate .. //depot/projects/multipass/sys/amd64/amd64/uma_machdep.c#4 integrate .. //depot/projects/multipass/sys/amd64/amd64/vm_machdep.c#7 integrate .. //depot/projects/multipass/sys/amd64/amd64/xen-locore.S#1 branch .. //depot/projects/multipass/sys/amd64/conf/GENERIC#12 integrate .. //depot/projects/multipass/sys/amd64/conf/GENERIC.hints#6 integrate .. //depot/projects/multipass/sys/amd64/conf/NOTES#11 integrate .. //depot/projects/multipass/sys/amd64/conf/VT#2 delete .. //depot/projects/multipass/sys/amd64/include/asmacros.h#5 integrate .. //depot/projects/multipass/sys/amd64/include/clock.h#5 integrate .. //depot/projects/multipass/sys/amd64/include/cpu.h#4 integrate .. //depot/projects/multipass/sys/amd64/include/fpu.h#5 integrate .. //depot/projects/multipass/sys/amd64/include/md_var.h#7 integrate .. //depot/projects/multipass/sys/amd64/include/metadata.h#4 integrate .. //depot/projects/multipass/sys/amd64/include/param.h#9 integrate .. //depot/projects/multipass/sys/amd64/include/pc/bios.h#4 integrate .. //depot/projects/multipass/sys/amd64/include/pcb.h#6 integrate .. //depot/projects/multipass/sys/amd64/include/pmap.h#7 integrate .. //depot/projects/multipass/sys/amd64/include/sf_buf.h#3 integrate .. //depot/projects/multipass/sys/amd64/include/smp.h#8 integrate .. //depot/projects/multipass/sys/amd64/include/vmm.h#3 integrate .. //depot/projects/multipass/sys/amd64/include/vmm_dev.h#3 integrate .. //depot/projects/multipass/sys/amd64/include/vmm_instruction_emul.h#3 integrate .. //depot/projects/multipass/sys/amd64/include/vmparam.h#5 integrate .. //depot/projects/multipass/sys/amd64/include/xen/hypercall.h#3 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux.h#7 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_dummy.c#4 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_machdep.c#6 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_proto.h#6 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_syscall.h#5 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_syscalls.c#3 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_sysent.c#6 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_systrace_args.c#3 integrate .. //depot/projects/multipass/sys/amd64/linux32/linux32_sysvec.c#8 integrate .. //depot/projects/multipass/sys/amd64/linux32/syscalls.master#5 integrate .. //depot/projects/multipass/sys/amd64/pci/pci_cfgreg.c#6 integrate .. //depot/projects/multipass/sys/amd64/vmm/amd/amdv.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/ept.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmcs.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmcs.h#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmx.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmx.h#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmx_genassym.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmx_msr.c#2 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmx_msr.h#2 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vmx_support.S#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/intel/vtd.c#2 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/iommu.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/iommu.h#2 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/ppt.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/vatpic.c#1 branch .. //depot/projects/multipass/sys/amd64/vmm/io/vatpic.h#1 branch .. //depot/projects/multipass/sys/amd64/vmm/io/vatpit.c#1 branch .. //depot/projects/multipass/sys/amd64/vmm/io/vatpit.h#1 branch .. //depot/projects/multipass/sys/amd64/vmm/io/vhpet.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/vlapic.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/vlapic.h#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/io/vlapic_priv.h#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_dev.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_host.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_instruction_emul.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_ioport.c#1 branch .. //depot/projects/multipass/sys/amd64/vmm/vmm_ioport.h#1 branch .. //depot/projects/multipass/sys/amd64/vmm/vmm_ktr.h#2 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_lapic.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_msr.c#2 delete .. //depot/projects/multipass/sys/amd64/vmm/vmm_msr.h#2 delete .. //depot/projects/multipass/sys/amd64/vmm/vmm_stat.c#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/vmm_stat.h#3 integrate .. //depot/projects/multipass/sys/amd64/vmm/x86.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/a10_clk.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/a10_clk.h#2 integrate .. //depot/projects/multipass/sys/arm/allwinner/a10_common.c#1 branch .. //depot/projects/multipass/sys/arm/allwinner/a10_ehci.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/a10_gpio.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/a10_gpio.h#1 branch .. //depot/projects/multipass/sys/arm/allwinner/a10_machdep.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/a10_sramc.c#1 branch .. //depot/projects/multipass/sys/arm/allwinner/a10_sramc.h#1 branch .. //depot/projects/multipass/sys/arm/allwinner/a20/a20_cpu_cfg.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/a20/a20_cpu_cfg.h#2 integrate .. //depot/projects/multipass/sys/arm/allwinner/a20/a20_mp.c#1 branch .. //depot/projects/multipass/sys/arm/allwinner/a20/files.a20#2 integrate .. //depot/projects/multipass/sys/arm/allwinner/aintc.c#3 integrate .. //depot/projects/multipass/sys/arm/allwinner/common.c#2 delete .. //depot/projects/multipass/sys/arm/allwinner/console.c#2 integrate .. //depot/projects/multipass/sys/arm/allwinner/files.a10#2 integrate .. //depot/projects/multipass/sys/arm/allwinner/if_emac.c#1 branch .. //depot/projects/multipass/sys/arm/allwinner/if_emacreg.h#1 branch .. //depot/projects/multipass/sys/arm/allwinner/timer.c#2 integrate .. //depot/projects/multipass/sys/arm/altera/socfpga/files.socfpga#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_common.c#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_common.h#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_l3regs.h#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_machdep.c#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_manager.c#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_rstmgr.c#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/socfpga_rstmgr.h#1 branch .. //depot/projects/multipass/sys/arm/altera/socfpga/std.socfpga#1 branch .. //depot/projects/multipass/sys/arm/arm/bus_space_generic.c#4 integrate .. //depot/projects/multipass/sys/arm/arm/busdma_machdep-v6.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/busdma_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/arm/copystr.S#4 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc.c#8 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_arm10.S#3 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_arm11.S#3 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_arm11x6.S#2 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_arm7tdmi.S#3 delete .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_arm8.S#4 delete .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_arm9.S#3 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_armv4.S#3 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_armv5.S#3 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_armv6.S#2 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_armv7.S#2 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_ixp12x0.S#3 delete .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_pj4b.S#2 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_sa1.S#4 delete .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_sa11x0.S#4 delete .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_sheeva.S#5 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_xscale.S#4 integrate .. //depot/projects/multipass/sys/arm/arm/cpufunc_asm_xscale_c3.S#4 integrate .. //depot/projects/multipass/sys/arm/arm/disassem.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/dump_machdep.c#6 integrate .. //depot/projects/multipass/sys/arm/arm/elf_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/arm/elf_trampoline.c#7 integrate .. //depot/projects/multipass/sys/arm/arm/exception.S#4 integrate .. //depot/projects/multipass/sys/arm/arm/fiq.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/fiq_subr.S#4 integrate .. //depot/projects/multipass/sys/arm/arm/fusu.S#4 integrate .. //depot/projects/multipass/sys/arm/arm/genassym.c#5 integrate .. //depot/projects/multipass/sys/arm/arm/generic_timer.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/gic.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/identcpu.c#6 integrate .. //depot/projects/multipass/sys/arm/arm/intr.c#5 integrate .. //depot/projects/multipass/sys/arm/arm/irq_dispatch.S#4 delete .. //depot/projects/multipass/sys/arm/arm/locore.S#7 integrate .. //depot/projects/multipass/sys/arm/arm/machdep.c#9 integrate .. //depot/projects/multipass/sys/arm/arm/minidump_machdep.c#5 integrate .. //depot/projects/multipass/sys/arm/arm/mp_machdep.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/mpcore_timer.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/mpcore_timervar.h#1 branch .. //depot/projects/multipass/sys/arm/arm/nexus.c#5 integrate .. //depot/projects/multipass/sys/arm/arm/pl190.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/pl310.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/platform.c#1 branch .. //depot/projects/multipass/sys/arm/arm/platform_if.m#1 branch .. //depot/projects/multipass/sys/arm/arm/pmap-v6.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/pmap.c#12 integrate .. //depot/projects/multipass/sys/arm/arm/setstack.s#4 integrate .. //depot/projects/multipass/sys/arm/arm/support.S#5 integrate .. //depot/projects/multipass/sys/arm/arm/swtch.S#5 integrate .. //depot/projects/multipass/sys/arm/arm/sys_machdep.c#4 integrate .. //depot/projects/multipass/sys/arm/arm/trap.c#7 integrate .. //depot/projects/multipass/sys/arm/arm/uio_machdep.c#4 integrate .. //depot/projects/multipass/sys/arm/arm/undefined.c#4 integrate .. //depot/projects/multipass/sys/arm/arm/vectors.S#3 delete .. //depot/projects/multipass/sys/arm/arm/vfp.c#3 integrate .. //depot/projects/multipass/sys/arm/arm/vm_machdep.c#10 integrate .. //depot/projects/multipass/sys/arm/at91/at91.c#8 integrate .. //depot/projects/multipass/sys/arm/at91/at91_aic.c#1 branch .. //depot/projects/multipass/sys/arm/at91/at91_common.c#1 branch .. //depot/projects/multipass/sys/arm/at91/at91_machdep.c#9 integrate .. //depot/projects/multipass/sys/arm/at91/at91_mci.c#7 integrate .. //depot/projects/multipass/sys/arm/at91/at91_mcireg.h#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91_pinctrl.c#1 branch .. //depot/projects/multipass/sys/arm/at91/at91_pio.c#6 integrate .. //depot/projects/multipass/sys/arm/at91/at91_piovar.h#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91_pit.c#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91_pmc.c#6 integrate .. //depot/projects/multipass/sys/arm/at91/at91_sdramc.c#1 branch .. //depot/projects/multipass/sys/arm/at91/at91_shdwc.c#1 branch .. //depot/projects/multipass/sys/arm/at91/at91_tcb.c#1 branch .. //depot/projects/multipass/sys/arm/at91/at91rm9200.c#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91rm92reg.h#7 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9260.c#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9260reg.h#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9g20.c#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9g20reg.h#4 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9g45reg.h#3 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9x5.c#3 integrate .. //depot/projects/multipass/sys/arm/at91/at91sam9x5reg.h#2 integrate .. //depot/projects/multipass/sys/arm/at91/at91var.h#6 integrate .. //depot/projects/multipass/sys/arm/at91/board_tsc4370.c#4 integrate .. //depot/projects/multipass/sys/arm/at91/files.at91#7 integrate .. //depot/projects/multipass/sys/arm/at91/if_ate.c#10 integrate .. //depot/projects/multipass/sys/arm/at91/if_macb.c#3 integrate .. //depot/projects/multipass/sys/arm/at91/std.atmel#2 integrate .. //depot/projects/multipass/sys/arm/at91/uart_dev_at91usart.c#7 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_bsc.c#3 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_common.c#1 branch .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_fbd.c#3 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_intr.c#3 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_machdep.c#3 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c#3 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/bcm2835_systimer.c#3 integrate .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/common.c#2 delete .. //depot/projects/multipass/sys/arm/broadcom/bcm2835/files.bcm2835#2 integrate .. //depot/projects/multipass/sys/arm/cavium/cns11xx/cfi_bus_econa.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/econa.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/econa_machdep.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/econa_reg.h#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/econa_var.h#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/ehci_ebus.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/files.econa#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/if_ece.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/if_ecereg.h#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/if_ecevar.h#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/ohci_ec.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/std.econa#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/timer.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/uart_bus_ec.c#1 branch .. //depot/projects/multipass/sys/arm/cavium/cns11xx/uart_cpu_ec.c#1 branch .. //depot/projects/multipass/sys/arm/conf/AC100#3 delete .. //depot/projects/multipass/sys/arm/conf/APALIS-IMX6#1 branch .. //depot/projects/multipass/sys/arm/conf/ARMADAXP#3 integrate .. //depot/projects/multipass/sys/arm/conf/ARNDALE#3 integrate .. //depot/projects/multipass/sys/arm/conf/ARNDALE-OCTA#1 branch .. //depot/projects/multipass/sys/arm/conf/ATMEL#3 integrate .. //depot/projects/multipass/sys/arm/conf/AVILA#10 integrate .. //depot/projects/multipass/sys/arm/conf/BEAGLEBONE#3 integrate .. //depot/projects/multipass/sys/arm/conf/BWCT#7 integrate .. //depot/projects/multipass/sys/arm/conf/CAMBRIA#9 integrate .. //depot/projects/multipass/sys/arm/conf/CHROMEBOOK#1 branch .. //depot/projects/multipass/sys/arm/conf/CHROMEBOOK-PEACH-PIT#1 branch .. //depot/projects/multipass/sys/arm/conf/CHROMEBOOK-PEACH-PIT.hints#1 branch .. //depot/projects/multipass/sys/arm/conf/CHROMEBOOK-SNOW#1 branch .. //depot/projects/multipass/sys/arm/conf/CHROMEBOOK-SPRING#1 branch .. //depot/projects/multipass/sys/arm/conf/CHROMEBOOK.hints#1 branch .. //depot/projects/multipass/sys/arm/conf/CNS11XXNAS#4 integrate .. //depot/projects/multipass/sys/arm/conf/COLIBRI-VF50#2 integrate .. //depot/projects/multipass/sys/arm/conf/COSMIC#3 integrate .. //depot/projects/multipass/sys/arm/conf/CRB#7 integrate .. //depot/projects/multipass/sys/arm/conf/CUBIEBOARD#3 integrate .. //depot/projects/multipass/sys/arm/conf/CUBIEBOARD2#3 integrate .. //depot/projects/multipass/sys/arm/conf/DB-78XXX#8 integrate .. //depot/projects/multipass/sys/arm/conf/DB-88F5XXX#8 integrate .. //depot/projects/multipass/sys/arm/conf/DB-88F6XXX#8 integrate .. //depot/projects/multipass/sys/arm/conf/DEFAULTS#6 integrate .. //depot/projects/multipass/sys/arm/conf/DIGI-CCWMX53#3 integrate .. //depot/projects/multipass/sys/arm/conf/DOCKSTAR#4 integrate .. //depot/projects/multipass/sys/arm/conf/DREAMPLUG-1001#2 integrate .. //depot/projects/multipass/sys/arm/conf/EA3250#3 integrate .. //depot/projects/multipass/sys/arm/conf/EB9200#3 integrate .. //depot/projects/multipass/sys/arm/conf/EFIKA_MX#3 integrate .. //depot/projects/multipass/sys/arm/conf/EP80219#7 integrate .. //depot/projects/multipass/sys/arm/conf/ETHERNUT5#3 integrate .. //depot/projects/multipass/sys/arm/conf/EXYNOS5.common#1 branch .. //depot/projects/multipass/sys/arm/conf/EXYNOS5250#1 branch .. //depot/projects/multipass/sys/arm/conf/EXYNOS5420#1 branch .. //depot/projects/multipass/sys/arm/conf/GUMSTIX#7 integrate .. //depot/projects/multipass/sys/arm/conf/HL200#8 integrate .. //depot/projects/multipass/sys/arm/conf/HL201#4 integrate .. //depot/projects/multipass/sys/arm/conf/IMX53#1 branch .. //depot/projects/multipass/sys/arm/conf/IMX53-QSB#3 integrate .. //depot/projects/multipass/sys/arm/conf/IMX6#1 branch .. //depot/projects/multipass/sys/arm/conf/IQ31244#7 integrate .. //depot/projects/multipass/sys/arm/conf/KB920X#8 integrate .. //depot/projects/multipass/sys/arm/conf/LN2410SBC#4 integrate .. //depot/projects/multipass/sys/arm/conf/NOTES#3 integrate .. //depot/projects/multipass/sys/arm/conf/NSLU#7 integrate .. //depot/projects/multipass/sys/arm/conf/PANDABOARD#3 integrate .. //depot/projects/multipass/sys/arm/conf/QILA9G20#4 integrate .. //depot/projects/multipass/sys/arm/conf/QUARTZ#1 branch .. //depot/projects/multipass/sys/arm/conf/RADXA#3 integrate .. //depot/projects/multipass/sys/arm/conf/RADXA-LITE#1 branch .. //depot/projects/multipass/sys/arm/conf/RK3188#1 branch .. //depot/projects/multipass/sys/arm/conf/RPI-B#3 integrate .. //depot/projects/multipass/sys/arm/conf/SAM9260EK#3 integrate .. //depot/projects/multipass/sys/arm/conf/SAM9G20EK#4 integrate .. //depot/projects/multipass/sys/arm/conf/SAM9X25EK#3 integrate .. //depot/projects/multipass/sys/arm/conf/SHEEVAPLUG#5 integrate .. //depot/projects/multipass/sys/arm/conf/SIMICS#6 delete .. //depot/projects/multipass/sys/arm/conf/SN9G45#3 integrate .. //depot/projects/multipass/sys/arm/conf/SOCKIT#1 branch .. //depot/projects/multipass/sys/arm/conf/TS7800#4 integrate .. //depot/projects/multipass/sys/arm/conf/VERSATILEPB#3 integrate .. //depot/projects/multipass/sys/arm/conf/VYBRID#1 branch .. //depot/projects/multipass/sys/arm/conf/VYBRID.common#2 delete .. //depot/projects/multipass/sys/arm/conf/WANDBOARD-DUAL#2 integrate .. //depot/projects/multipass/sys/arm/conf/WANDBOARD-QUAD#2 integrate .. //depot/projects/multipass/sys/arm/conf/WANDBOARD-SOLO#2 integrate .. //depot/projects/multipass/sys/arm/conf/WANDBOARD.common#2 delete .. //depot/projects/multipass/sys/arm/conf/ZEDBOARD#3 integrate .. //depot/projects/multipass/sys/arm/econa/cfi_bus_econa.c#3 delete .. //depot/projects/multipass/sys/arm/econa/econa.c#3 delete .. //depot/projects/multipass/sys/arm/econa/econa_machdep.c#4 delete .. //depot/projects/multipass/sys/arm/econa/econa_reg.h#3 delete .. //depot/projects/multipass/sys/arm/econa/econa_var.h#3 delete .. //depot/projects/multipass/sys/arm/econa/ehci_ebus.c#3 delete .. //depot/projects/multipass/sys/arm/econa/files.econa#4 delete .. //depot/projects/multipass/sys/arm/econa/if_ece.c#3 delete .. //depot/projects/multipass/sys/arm/econa/if_ecereg.h#3 delete .. //depot/projects/multipass/sys/arm/econa/if_ecevar.h#3 delete .. //depot/projects/multipass/sys/arm/econa/ohci_ec.c#3 delete .. //depot/projects/multipass/sys/arm/econa/std.econa#4 delete .. //depot/projects/multipass/sys/arm/econa/timer.c#3 delete .. //depot/projects/multipass/sys/arm/econa/uart_bus_ec.c#3 delete .. //depot/projects/multipass/sys/arm/econa/uart_cpu_ec.c#3 delete .. //depot/projects/multipass/sys/arm/freescale/fsl_ocotp.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/common.c#2 delete .. //depot/projects/multipass/sys/arm/freescale/imx/files.imx51#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/files.imx53#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/files.imx6#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/i2c.c#3 delete .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_ccm.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_gpio.c#3 delete .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_iomux.c#3 delete .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_iomuxreg.h#2 delete .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_iomuxvar.h#2 delete .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_ipuv3.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_ipuv3_fbd.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_ipuv3reg.h#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx51_tzicreg.h#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx53_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_anatop.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_anatopreg.h#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_anatopvar.h#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_ccm.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_ccmreg.h#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_mp.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_pl310.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx6_usbphy.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx_ccmvar.h#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx_common.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx_gpio.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx_gpt.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx_i2c.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx_iomux.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx_iomuxvar.h#1 branch .. //depot/projects/multipass/sys/arm/freescale/imx/imx_machdep.h#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx_nop_usbphy.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/imx_sdhci.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/std.imx51#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/std.imx53#3 integrate .. //depot/projects/multipass/sys/arm/freescale/imx/std.imx6#3 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/files.vybrid#3 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_adc.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_adc.h#1 branch .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_ccm.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_dcu4.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_gpio.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_i2c.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_iomuxc.c#3 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_port.c#1 branch .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_port.h#1 branch .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_sai.c#2 integrate .. //depot/projects/multipass/sys/arm/freescale/vybrid/vf_spi.c#1 branch .. //depot/projects/multipass/sys/arm/include/_types.h#4 integrate .. //depot/projects/multipass/sys/arm/include/acle-compat.h#1 branch .. //depot/projects/multipass/sys/arm/include/armreg.h#6 integrate .. //depot/projects/multipass/sys/arm/include/asm.h#3 integrate .. //depot/projects/multipass/sys/arm/include/asmacros.h#5 integrate .. //depot/projects/multipass/sys/arm/include/atomic.h#5 integrate .. //depot/projects/multipass/sys/arm/include/counter.h#2 integrate .. //depot/projects/multipass/sys/arm/include/cpu.h#5 integrate .. //depot/projects/multipass/sys/arm/include/cpuconf.h#4 integrate .. //depot/projects/multipass/sys/arm/include/cpufunc.h#5 integrate .. //depot/projects/multipass/sys/arm/include/devmap.h#3 integrate .. //depot/projects/multipass/sys/arm/include/elf.h#6 integrate .. //depot/projects/multipass/sys/arm/include/fp.h#3 integrate .. //depot/projects/multipass/sys/arm/include/intr.h#6 integrate .. //depot/projects/multipass/sys/arm/include/kdb.h#3 integrate .. //depot/projects/multipass/sys/arm/include/machdep.h#4 integrate .. //depot/projects/multipass/sys/arm/include/md_var.h#5 integrate .. //depot/projects/multipass/sys/arm/include/param.h#7 integrate .. //depot/projects/multipass/sys/arm/include/pcb.h#3 integrate .. //depot/projects/multipass/sys/arm/include/pcpu.h#4 integrate .. //depot/projects/multipass/sys/arm/include/pl310.h#2 integrate .. //depot/projects/multipass/sys/arm/include/platform.h#1 branch .. //depot/projects/multipass/sys/arm/include/platformvar.h#1 branch .. //depot/projects/multipass/sys/arm/include/pmap.h#8 integrate .. //depot/projects/multipass/sys/arm/include/sf_buf.h#4 integrate .. //depot/projects/multipass/sys/arm/include/smp.h#3 integrate .. //depot/projects/multipass/sys/arm/include/sysarch.h#5 integrate .. //depot/projects/multipass/sys/arm/include/ucontext.h#4 integrate .. //depot/projects/multipass/sys/arm/include/vfp.h#2 integrate .. //depot/projects/multipass/sys/arm/include/vmparam.h#6 integrate .. //depot/projects/multipass/sys/arm/lpc/files.lpc#2 integrate .. //depot/projects/multipass/sys/arm/lpc/if_lpe.c#3 integrate .. //depot/projects/multipass/sys/arm/lpc/lpc_gpio.c#3 integrate .. //depot/projects/multipass/sys/arm/lpc/lpc_machdep.c#3 integrate .. //depot/projects/multipass/sys/arm/lpc/lpc_timer.c#3 integrate .. //depot/projects/multipass/sys/arm/lpc/lpcvar.h#2 integrate .. //depot/projects/multipass/sys/arm/mv/armadaxp/armadaxp_mp.c#2 integrate .. //depot/projects/multipass/sys/arm/mv/armadaxp/files.armadaxp#2 integrate .. //depot/projects/multipass/sys/arm/mv/armadaxp/mptramp.S#1 branch .. //depot/projects/multipass/sys/arm/mv/common.c#8 delete .. //depot/projects/multipass/sys/arm/mv/files.mv#6 integrate .. //depot/projects/multipass/sys/arm/mv/gpio.c#7 integrate .. //depot/projects/multipass/sys/arm/mv/mv_common.c#1 branch .. //depot/projects/multipass/sys/arm/mv/mv_localbus.c#3 integrate .. //depot/projects/multipass/sys/arm/mv/mv_machdep.c#10 integrate .. //depot/projects/multipass/sys/arm/mv/mv_pci.c#7 integrate .. //depot/projects/multipass/sys/arm/mv/mvvar.h#7 integrate .. //depot/projects/multipass/sys/arm/mv/orion/db88f5xxx.c#7 integrate .. //depot/projects/multipass/sys/arm/mv/timer.c#5 integrate .. //depot/projects/multipass/sys/arm/rockchip/common.c#2 delete .. //depot/projects/multipass/sys/arm/rockchip/files.rk30xx#2 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_common.c#1 branch .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_gpio.c#3 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_grf.c#3 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_grf.h#2 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_mp.c#1 branch .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_pmu.c#3 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_pmu.h#2 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_wdog.c#3 integrate .. //depot/projects/multipass/sys/arm/rockchip/rk30xx_wdog.h#2 integrate .. //depot/projects/multipass/sys/arm/s3c2xx0/board_ln2410sbc.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/files.s3c2xx0#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2410reg.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2410var.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2440reg.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c24x0.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c24x0_clk.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c24x0_machdep.c#4 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c24x0_rtc.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c24x0reg.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c24x0var.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2xx0_space.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2xx0board.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2xx0reg.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/s3c2xx0var.h#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/std.ln2410sbc#4 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/std.s3c2410#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/uart_bus_s3c2410.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/uart_cpu_s3c2410.c#3 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/uart_dev_s3c2410.c#4 delete .. //depot/projects/multipass/sys/arm/s3c2xx0/uart_dev_s3c2410.h#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/assabet_machdep.c#9 delete .. //depot/projects/multipass/sys/arm/sa11x0/files.sa11x0#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0.c#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_dmacreg.h#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_gpioreg.h#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_io.c#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_io_asm.S#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_irq.S#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_irqhandler.c#5 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_ost.c#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_ostreg.h#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_ppcreg.h#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_reg.h#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/sa11x0_var.h#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/std.sa11x0#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/uart_bus_sa1110.c#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/uart_cpu_sa1110.c#3 delete .. //depot/projects/multipass/sys/arm/sa11x0/uart_dev_sa1110.c#4 delete .. //depot/projects/multipass/sys/arm/sa11x0/uart_dev_sa1110.h#3 delete .. //depot/projects/multipass/sys/arm/samsung/exynos/arch_timer.c#3 delete .. //depot/projects/multipass/sys/arm/samsung/exynos/chrome_ec.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/chrome_ec.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/chrome_ec_spi.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/chrome_kb.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/chrome_kb.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/common.c#2 delete .. //depot/projects/multipass/sys/arm/samsung/exynos/ehci_exynos5.c#3 delete .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_combiner.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_combiner.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_common.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_common.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_ehci.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_fimd.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_i2c.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_mct.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_mp.c#2 integrate .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_pad.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_pad.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_pmu.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_pmu.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_spi.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_usb_phy.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos5_xhci.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos_uart.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/exynos_uart.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/files.exynos5#2 integrate .. //depot/projects/multipass/sys/arm/samsung/exynos/std.exynos5#3 delete .. //depot/projects/multipass/sys/arm/samsung/exynos/std.exynos5250#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/std.exynos5420#1 branch .. //depot/projects/multipass/sys/arm/samsung/exynos/uart.c#2 delete .. //depot/projects/multipass/sys/arm/samsung/exynos/uart.h#2 delete .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/board_ln2410sbc.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/files.s3c2xx0#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2410reg.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2410var.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2440reg.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c24x0.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c24x0_clk.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c24x0_rtc.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c24x0reg.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c24x0var.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2xx0_space.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2xx0board.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2xx0reg.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/s3c2xx0var.h#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/std.ln2410sbc#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/std.s3c2410#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/uart_bus_s3c2410.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/uart_cpu_s3c2410.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.c#1 branch .. //depot/projects/multipass/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.h#1 branch .. //depot/projects/multipass/sys/arm/tegra/common.c#2 delete .. //depot/projects/multipass/sys/arm/tegra/files.tegra2#3 delete .. //depot/projects/multipass/sys/arm/tegra/std.tegra2#3 delete .. //depot/projects/multipass/sys/arm/tegra/tegra2_machdep.c#3 delete .. //depot/projects/multipass/sys/arm/ti/aintc.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/am335x/am335x_dmtimer.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/am335x/am335x_lcd.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/am335x/am335x_prcm.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/am335x/am335x_pwm.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/am335x/am335x_scm_padconf.c#2 integrate .. //depot/projects/multipass/sys/arm/ti/common.c#2 delete .. //depot/projects/multipass/sys/arm/ti/cpsw/if_cpsw.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/files.ti#2 integrate .. //depot/projects/multipass/sys/arm/ti/omap4/files.omap4#2 integrate .. //depot/projects/multipass/sys/arm/ti/omap4/omap4_l2cache.c#2 integrate .. //depot/projects/multipass/sys/arm/ti/omap4/omap4_mp.c#2 integrate .. //depot/projects/multipass/sys/arm/ti/omap4/omap4_prcm_clks.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/omap4/omap4_scm_padconf.c#2 integrate .. //depot/projects/multipass/sys/arm/ti/ti_adc.c#1 branch .. //depot/projects/multipass/sys/arm/ti/ti_adcreg.h#1 branch .. //depot/projects/multipass/sys/arm/ti/ti_adcvar.h#1 branch .. //depot/projects/multipass/sys/arm/ti/ti_common.c#1 branch .. //depot/projects/multipass/sys/arm/ti/ti_gpio.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/ti_i2c.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/ti_i2c.h#2 integrate .. //depot/projects/multipass/sys/arm/ti/ti_machdep.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/ti_prcm.c#2 integrate .. //depot/projects/multipass/sys/arm/ti/ti_prcm.h#2 integrate .. //depot/projects/multipass/sys/arm/ti/ti_sdhci.c#3 integrate .. //depot/projects/multipass/sys/arm/ti/ti_smc.S#2 integrate .. //depot/projects/multipass/sys/arm/ti/twl/twl_vreg.c#2 integrate .. //depot/projects/multipass/sys/arm/versatile/common.c#2 delete .. //depot/projects/multipass/sys/arm/versatile/files.versatile#2 integrate .. //depot/projects/multipass/sys/arm/versatile/if_smc_fdt.c#3 delete .. //depot/projects/multipass/sys/arm/versatile/versatile_clcd.c#3 integrate .. //depot/projects/multipass/sys/arm/versatile/versatile_common.c#1 branch .. //depot/projects/multipass/sys/arm/versatile/versatile_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/xilinx/files.zynq7#2 integrate .. //depot/projects/multipass/sys/arm/xilinx/std.zynq7#3 integrate .. //depot/projects/multipass/sys/arm/xilinx/zy7_devcfg.c#3 integrate .. //depot/projects/multipass/sys/arm/xilinx/zy7_machdep.c#2 integrate .. //depot/projects/multipass/sys/arm/xilinx/zy7_mp.c#1 branch .. //depot/projects/multipass/sys/arm/xilinx/zy7_reg.h#2 integrate .. //depot/projects/multipass/sys/arm/xilinx/zy7_slcr.c#3 integrate .. //depot/projects/multipass/sys/arm/xilinx/zy7_slcr.h#2 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/ep80219_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/files.i80219#3 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/files.i80321#3 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/i80321_intr.h#3 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/i80321_timer.c#4 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/iq31244_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/xscale/i80321/iq80321.c#4 integrate .. //depot/projects/multipass/sys/arm/xscale/i8134x/crb_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/xscale/i8134x/files.i81342#3 integrate .. //depot/projects/multipass/sys/arm/xscale/i8134x/i81342.c#5 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/avila_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/files.ixp425#6 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/if_npe.c#8 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/ixp425.c#7 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/ixp425_npe.c#5 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/ixp425_pci.c#5 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/ixp425_qmgr.c#6 integrate .. //depot/projects/multipass/sys/arm/xscale/ixp425/ixp425_timer.c#4 integrate .. //depot/projects/multipass/sys/arm/xscale/pxa/files.pxa#3 integrate .. //depot/projects/multipass/sys/arm/xscale/pxa/pxa_icu.c#4 integrate .. //depot/projects/multipass/sys/arm/xscale/pxa/pxa_machdep.c#7 integrate .. //depot/projects/multipass/sys/arm/xscale/pxa/pxa_timer.c#3 integrate .. //depot/projects/multipass/sys/arm/xscale/pxa/pxareg.h#3 integrate .. //depot/projects/multipass/sys/boot/Makefile#6 integrate .. //depot/projects/multipass/sys/boot/Makefile.amd64#4 integrate .. //depot/projects/multipass/sys/boot/Makefile.ia64#3 delete .. //depot/projects/multipass/sys/boot/Makefile.mips#1 branch .. //depot/projects/multipass/sys/boot/amd64/Makefile#1 branch .. //depot/projects/multipass/sys/boot/amd64/Makefile.inc#1 branch .. //depot/projects/multipass/sys/boot/amd64/boot1.efi/Makefile#1 branch .. //depot/projects/multipass/sys/boot/amd64/boot1.efi/Makefile.fat#1 branch .. //depot/projects/multipass/sys/boot/amd64/boot1.efi/boot1.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/boot1.efi/fat.tmpl.bz2.uu#1 branch .. //depot/projects/multipass/sys/boot/amd64/boot1.efi/generate-fat.sh#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/Makefile#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/amd64_tramp.S#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/autoload.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/bootinfo.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/conf.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/copy.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/devicename.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/elf64_freebsd.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/framebuffer.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/framebuffer.h#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/ldscript.amd64#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/main.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/reloc.c#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/start.S#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/version#1 branch .. //depot/projects/multipass/sys/boot/amd64/efi/x86_efi.h#1 branch .. //depot/projects/multipass/sys/boot/arm/at91/boot0/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot0/main.c#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot0iic/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot0iic/main.c#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot0spi/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot0spi/main.c#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot2/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/boot2/boot2.c#4 integrate .. //depot/projects/multipass/sys/boot/arm/at91/bootiic/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/bootiic/main.c#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/bootspi/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/bootspi/main.c#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/libat91/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/libat91/emac.c#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/libat91/mci_device.h#3 integrate .. //depot/projects/multipass/sys/boot/arm/at91/libat91/sd-card.c#4 integrate .. //depot/projects/multipass/sys/boot/arm/at91/libat91/sd-card.h#3 integrate .. //depot/projects/multipass/sys/boot/arm/ixp425/boot2/Makefile#4 integrate .. //depot/projects/multipass/sys/boot/arm/uboot/Makefile#5 integrate .. //depot/projects/multipass/sys/boot/arm/uboot/help.uboot#3 integrate .. //depot/projects/multipass/sys/boot/common/Makefile.inc#5 integrate .. //depot/projects/multipass/sys/boot/common/bootstrap.h#4 integrate .. //depot/projects/multipass/sys/boot/common/install.c#1 branch .. //depot/projects/multipass/sys/boot/common/interp.c#5 integrate .. //depot/projects/multipass/sys/boot/common/interp_forth.c#3 integrate .. //depot/projects/multipass/sys/boot/common/module.c#5 integrate .. //depot/projects/multipass/sys/boot/common/part.c#2 integrate .. //depot/projects/multipass/sys/boot/common/ufsread.c#5 integrate .. //depot/projects/multipass/sys/boot/common/zfsloader.8#1 branch .. //depot/projects/multipass/sys/boot/efi/include/amd64/efibind.h#1 branch .. //depot/projects/multipass/sys/boot/efi/include/amd64/pe.h#1 branch .. //depot/projects/multipass/sys/boot/efi/include/efi.h#3 integrate .. //depot/projects/multipass/sys/boot/efi/include/efiapi.h#3 integrate .. //depot/projects/multipass/sys/boot/efi/include/eficonsctl.h#1 branch .. //depot/projects/multipass/sys/boot/efi/include/efigop.h#1 branch .. //depot/projects/multipass/sys/boot/efi/include/efilib.h#4 integrate .. //depot/projects/multipass/sys/boot/efi/include/i386/pe.h#3 integrate .. //depot/projects/multipass/sys/boot/efi/include/ia64/efibind.h#3 delete .. //depot/projects/multipass/sys/boot/efi/include/ia64/pe.h#3 delete .. //depot/projects/multipass/sys/boot/efi/libefi/Makefile#4 integrate .. //depot/projects/multipass/sys/boot/efi/libefi/efinet.c#4 integrate .. //depot/projects/multipass/sys/boot/efi/libefi/efipart.c#3 integrate .. //depot/projects/multipass/sys/boot/efi/libefi/handles.c#3 integrate .. //depot/projects/multipass/sys/boot/efi/libefi/libefi.c#4 integrate .. //depot/projects/multipass/sys/boot/fdt/Makefile#3 integrate .. //depot/projects/multipass/sys/boot/fdt/dts/Makefile#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/Makefile.inc#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/am335x-evm.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/am335x.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/arm/Makefile#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/am335x-evm.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/am335x.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/apalis-imx6.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/bcm2835.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/beaglebone-black.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/beaglebone.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/cubieboard.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/cubieboard2.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/db78100.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/db78460.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/db88f5182.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/db88f5281.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/db88f6281.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/digi-ccwmx53.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/dockstar.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/dreamplug-1001.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/dreamplug-1001N.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/ea3250.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/efikamx.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5250-arndale.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5250-snow.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5250-spring.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5250.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5420-peach-pit.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/exynos5420.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/hl201.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/imx51x.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/imx53-qsb.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/imx53x.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/imx6.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/pandaboard.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/rk3188-radxa-lite.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/rk3188-radxa.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/rk3188.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/rpi.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/sam9260ek.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/sheevaplug.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/socfpga-sockit.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/socfpga.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/sun4i-a10.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/sun7i-a20.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/tegra20-paz00.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/tegra20.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/trimslice.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/ts7800.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/versatilepb.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/vybrid-colibri-vf50.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/vybrid-cosmic.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/vybrid-quartz.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/vybrid.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/wandboard-dual.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/wandboard-quad.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/wandboard-solo.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/arm/zedboard.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/bcm2835.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/beaglebone-black.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/beaglebone.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/beri-netfpga.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/beri-sim.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/beripad-de4.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/cubieboard.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/cubieboard2.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/db78100.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/db78460.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/db88f5182.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/db88f5281.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/db88f6281.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/digi-ccwmx53.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/dockstar.dts#4 delete .. //depot/projects/multipass/sys/boot/fdt/dts/dreamplug-1001.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/dreamplug-1001N.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/ea3250.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/efikamx.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/exynos5250-arndale.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/exynos5250.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/imx51x.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/imx53-qsb.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/imx53x.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/imx6.dtsi#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/mips/Makefile#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/mips/beri-netfpga.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/mips/beri-sim.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/mips/beripad-de4.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/mips/xlp-basic.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/mpc8555cds.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/mpc8572ds.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p1020rdb.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p2020ds.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p2041rdb.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p2041si.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p3041ds.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p3041si.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p5020ds.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/p5020si.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/pandaboard.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/Makefile#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/mpc8555cds.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/mpc8572ds.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p1020rdb.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p2020ds.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p2041rdb.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p2041si.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p3041ds.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p3041si.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p5020ds.dts#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/powerpc/p5020si.dtsi#1 branch .. //depot/projects/multipass/sys/boot/fdt/dts/rk3188-radxa.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/rk3188.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/rpi.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/sheevaplug.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/tegra20-paz00.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/tegra20.dtsi#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/trimslice.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/ts7800.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/versatilepb.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/vybrid-colibri-vf50.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/dts/vybrid-cosmic.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/vybrid.dtsi#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/wandboard-dual.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/wandboard-quad.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/wandboard-solo.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/xlp-basic.dts#3 delete .. //depot/projects/multipass/sys/boot/fdt/dts/zedboard.dts#2 delete .. //depot/projects/multipass/sys/boot/fdt/fdt_loader_cmd.c#4 integrate >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Fri Sep 26 20:45:18 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 80CDED78; Fri, 26 Sep 2014 20:45:18 +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 ESMTPS id 4177ED76 for ; Fri, 26 Sep 2014 20:45:18 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13C15335 for ; Fri, 26 Sep 2014 20:45:18 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QKjHTm001302 for ; Fri, 26 Sep 2014 20:45:17 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QKjHVB001299 for perforce@freebsd.org; Fri, 26 Sep 2014 20:45:17 GMT (envelope-from jhb@freebsd.org) Date: Fri, 26 Sep 2014 20:45:17 GMT Message-Id: <201409262045.s8QKjHVB001299@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200850 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 20:45:18 -0000 http://p4web.freebsd.org/@@1200850?ac=10 Change 1200850 by jhb@jhb_ralph on 2014/09/26 20:44:45 Missed these. Affected files ... .. //depot/projects/multipass/sys/dev/iicbus/iic.h#5 integrate .. //depot/projects/multipass/sys/sparc64/include/sf_buf.h#3 integrate Differences ... ==== //depot/projects/multipass/sys/dev/iicbus/iic.h#5 (text+ko) ==== @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD: head/sys/dev/iicbus/iic.h 210998 2010-08-07 08:31:32Z joel $ + * $FreeBSD: head/sys/dev/iicbus/iic.h 268564 2014-07-12 06:23:42Z rpaulo $ * */ #ifndef __IIC_H ==== //depot/projects/multipass/sys/sparc64/include/sf_buf.h#3 (text+ko) ==== @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2003 Alan L. Cox + * Copyright (c) 2014 Gleb Smirnoff * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -23,37 +23,13 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD: head/sys/sparc64/include/sf_buf.h 255318 2013-09-06 17:44:13Z glebius $ + * $FreeBSD: head/sys/sparc64/include/sf_buf.h 269782 2014-08-10 16:59:39Z kib $ */ #ifndef _MACHINE_SF_BUF_H_ #define _MACHINE_SF_BUF_H_ -#include - -struct vm_page; - -struct sf_buf { - SLIST_ENTRY(sf_buf) free_list; /* list of free buffer slots */ - struct vm_page *m; /* currently mapped page */ - vm_offset_t kva; /* va of mapping */ -}; - -struct sf_buf * sf_buf_alloc(struct vm_page *m, int flags); -void sf_buf_free(struct sf_buf *sf); - -static __inline vm_offset_t -sf_buf_kva(struct sf_buf *sf) -{ - - return (sf->kva); -} - -static __inline struct vm_page * -sf_buf_page(struct sf_buf *sf) -{ - - return (sf->m); -} +void sf_buf_map(struct sf_buf *, int); +int sf_buf_unmap(struct sf_buf *); #endif /* !_MACHINE_SF_BUF_H_ */ From owner-p4-projects@FreeBSD.ORG Fri Sep 26 20:58:39 2014 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 617284C8; Fri, 26 Sep 2014 20:58:39 +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 ESMTPS id 21E2C4C6 for ; Fri, 26 Sep 2014 20:58:39 +0000 (UTC) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:1900:2254:2068::682:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0BB1A782 for ; Fri, 26 Sep 2014 20:58:39 +0000 (UTC) Received: from skunkworks.freebsd.org ([127.0.1.74]) by skunkworks.freebsd.org (8.14.9/8.14.9) with ESMTP id s8QKwdpg003969 for ; Fri, 26 Sep 2014 20:58:39 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.9/8.14.9/Submit) id s8QKwW91003961 for perforce@freebsd.org; Fri, 26 Sep 2014 20:58:32 GMT (envelope-from jhb@freebsd.org) Date: Fri, 26 Sep 2014 20:58:32 GMT Message-Id: <201409262058.s8QKwW91003961@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 1200851 for review To: Perforce Change Reviews Precedence: bulk X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.18-1 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Sep 2014 20:58:39 -0000 http://p4web.freebsd.org/@@1200851?ac=10 Change 1200851 by jhb@jhb_ralph on 2014/09/26 20:57:44 IFC @1200843 Affected files ... .. //depot/projects/pci/sys/Makefile#8 integrate .. //depot/projects/pci/sys/amd64/acpica/acpi_machdep.c#4 integrate .. //depot/projects/pci/sys/amd64/acpica/acpi_wakecode.S#4 integrate .. //depot/projects/pci/sys/amd64/amd64/amd64_mem.c#3 integrate .. //depot/projects/pci/sys/amd64/amd64/cpu_switch.S#6 integrate .. //depot/projects/pci/sys/amd64/amd64/db_disasm.c#5 integrate .. //depot/projects/pci/sys/amd64/amd64/exception.S#7 integrate .. //depot/projects/pci/sys/amd64/amd64/fpu.c#6 integrate .. //depot/projects/pci/sys/amd64/amd64/genassym.c#9 integrate .. //depot/projects/pci/sys/amd64/amd64/identcpu.c#10 delete .. //depot/projects/pci/sys/amd64/amd64/machdep.c#16 integrate .. //depot/projects/pci/sys/amd64/amd64/mp_machdep.c#12 integrate .. //depot/projects/pci/sys/amd64/amd64/mp_watchdog.c#4 integrate .. //depot/projects/pci/sys/amd64/amd64/mpboot.S#4 integrate .. //depot/projects/pci/sys/amd64/amd64/pmap.c#17 integrate .. //depot/projects/pci/sys/amd64/amd64/support.S#5 integrate .. //depot/projects/pci/sys/amd64/amd64/sys_machdep.c#9 integrate .. //depot/projects/pci/sys/amd64/amd64/trap.c#9 integrate .. //depot/projects/pci/sys/amd64/amd64/vm_machdep.c#10 integrate .. //depot/projects/pci/sys/amd64/amd64/xen-locore.S#2 integrate .. //depot/projects/pci/sys/amd64/conf/GENERIC#17 integrate .. //depot/projects/pci/sys/amd64/conf/GENERIC.hints#4 integrate .. //depot/projects/pci/sys/amd64/conf/NOTES#15 integrate .. //depot/projects/pci/sys/amd64/conf/VT#2 delete .. //depot/projects/pci/sys/amd64/include/cpu.h#7 integrate .. //depot/projects/pci/sys/amd64/include/fpu.h#5 integrate .. //depot/projects/pci/sys/amd64/include/md_var.h#7 integrate .. //depot/projects/pci/sys/amd64/include/param.h#5 integrate .. //depot/projects/pci/sys/amd64/include/pc/bios.h#4 integrate .. //depot/projects/pci/sys/amd64/include/pcb.h#6 integrate .. //depot/projects/pci/sys/amd64/include/sf_buf.h#4 integrate .. //depot/projects/pci/sys/amd64/include/vmm.h#12 integrate .. //depot/projects/pci/sys/amd64/include/vmm_dev.h#9 integrate .. //depot/projects/pci/sys/amd64/include/vmm_instruction_emul.h#5 integrate .. //depot/projects/pci/sys/amd64/include/vmparam.h#7 integrate .. //depot/projects/pci/sys/amd64/linux32/linux.h#6 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_dummy.c#7 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_proto.h#6 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_syscall.h#6 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_syscalls.c#5 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_sysent.c#6 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_systrace_args.c#5 integrate .. //depot/projects/pci/sys/amd64/linux32/linux32_sysvec.c#7 integrate .. //depot/projects/pci/sys/amd64/linux32/syscalls.master#6 integrate .. //depot/projects/pci/sys/amd64/pci/pci_cfgreg.c#4 integrate .. //depot/projects/pci/sys/amd64/vmm/amd/amdv.c#8 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/ept.c#6 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmcs.c#8 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmcs.h#10 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx.c#16 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx.h#10 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx_genassym.c#8 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx_msr.c#2 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx_msr.h#2 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vmx_support.S#6 integrate .. //depot/projects/pci/sys/amd64/vmm/intel/vtd.c#4 integrate .. //depot/projects/pci/sys/amd64/vmm/io/iommu.c#3 integrate .. //depot/projects/pci/sys/amd64/vmm/io/iommu.h#2 integrate .. //depot/projects/pci/sys/amd64/vmm/io/ppt.c#7 integrate .. //depot/projects/pci/sys/amd64/vmm/io/vatpic.c#2 integrate .. //depot/projects/pci/sys/amd64/vmm/io/vatpic.h#2 integrate .. //depot/projects/pci/sys/amd64/vmm/io/vatpit.c#2 integrate .. //depot/projects/pci/sys/amd64/vmm/io/vatpit.h#2 integrate .. //depot/projects/pci/sys/amd64/vmm/io/vlapic.c#10 integrate .. //depot/projects/pci/sys/amd64/vmm/io/vlapic.h#7 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm.c#14 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_dev.c#10 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_host.c#3 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_instruction_emul.c#8 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_ioport.c#2 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_ioport.h#2 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_ktr.h#3 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_lapic.c#6 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_msr.c#4 delete .. //depot/projects/pci/sys/amd64/vmm/vmm_msr.h#3 delete .. //depot/projects/pci/sys/amd64/vmm/vmm_stat.c#6 integrate .. //depot/projects/pci/sys/amd64/vmm/vmm_stat.h#6 integrate .. //depot/projects/pci/sys/amd64/vmm/x86.c#7 integrate .. //depot/projects/pci/sys/arm/allwinner/a10_clk.c#5 integrate .. //depot/projects/pci/sys/arm/allwinner/a10_machdep.c#6 integrate .. //depot/projects/pci/sys/arm/allwinner/if_emac.c#2 integrate .. //depot/projects/pci/sys/arm/altera/socfpga/files.socfpga#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_common.c#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_common.h#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_l3regs.h#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_machdep.c#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_manager.c#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_rstmgr.c#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/socfpga_rstmgr.h#1 branch .. //depot/projects/pci/sys/arm/altera/socfpga/std.socfpga#1 branch .. //depot/projects/pci/sys/arm/arm/bus_space_generic.c#7 integrate .. //depot/projects/pci/sys/arm/arm/busdma_machdep-v6.c#8 integrate .. //depot/projects/pci/sys/arm/arm/busdma_machdep.c#8 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc.c#10 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_arm10.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_arm11.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_arm11x6.S#3 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_arm9.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_armv5.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_armv6.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_armv7.S#5 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_pj4b.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_sheeva.S#4 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_xscale.S#5 integrate .. //depot/projects/pci/sys/arm/arm/cpufunc_asm_xscale_c3.S#5 integrate .. //depot/projects/pci/sys/arm/arm/disassem.c#4 integrate .. //depot/projects/pci/sys/arm/arm/dump_machdep.c#4 integrate .. //depot/projects/pci/sys/arm/arm/elf_machdep.c#5 integrate .. //depot/projects/pci/sys/arm/arm/exception.S#7 integrate .. //depot/projects/pci/sys/arm/arm/fiq.c#4 integrate .. //depot/projects/pci/sys/arm/arm/fusu.S#7 integrate .. //depot/projects/pci/sys/arm/arm/generic_timer.c#5 integrate .. //depot/projects/pci/sys/arm/arm/gic.c#8 integrate .. //depot/projects/pci/sys/arm/arm/identcpu.c#10 integrate .. //depot/projects/pci/sys/arm/arm/intr.c#6 integrate .. //depot/projects/pci/sys/arm/arm/locore.S#11 integrate .. //depot/projects/pci/sys/arm/arm/machdep.c#13 integrate .. //depot/projects/pci/sys/arm/arm/minidump_machdep.c#5 integrate .. //depot/projects/pci/sys/arm/arm/mp_machdep.c#8 integrate .. //depot/projects/pci/sys/arm/arm/mpcore_timer.c#7 integrate .. //depot/projects/pci/sys/arm/arm/mpcore_timervar.h#1 branch .. //depot/projects/pci/sys/arm/arm/nexus.c#8 integrate .. //depot/projects/pci/sys/arm/arm/pl190.c#4 integrate .. //depot/projects/pci/sys/arm/arm/pl310.c#5 integrate .. //depot/projects/pci/sys/arm/arm/platform.c#1 branch .. //depot/projects/pci/sys/arm/arm/platform_if.m#1 branch .. //depot/projects/pci/sys/arm/arm/pmap-v6.c#12 integrate .. //depot/projects/pci/sys/arm/arm/pmap.c#12 integrate .. //depot/projects/pci/sys/arm/arm/setstack.s#4 integrate .. //depot/projects/pci/sys/arm/arm/support.S#6 integrate .. //depot/projects/pci/sys/arm/arm/trap.c#10 integrate .. //depot/projects/pci/sys/arm/arm/undefined.c#6 integrate .. //depot/projects/pci/sys/arm/arm/vfp.c#9 integrate .. //depot/projects/pci/sys/arm/arm/vm_machdep.c#11 integrate .. //depot/projects/pci/sys/arm/at91/at91.c#9 integrate .. //depot/projects/pci/sys/arm/at91/at91_aic.c#2 integrate .. //depot/projects/pci/sys/arm/at91/at91_common.c#1 branch .. //depot/projects/pci/sys/arm/at91/at91_machdep.c#9 integrate .. //depot/projects/pci/sys/arm/at91/at91_mci.c#7 integrate .. //depot/projects/pci/sys/arm/at91/at91_mcireg.h#3 integrate .. //depot/projects/pci/sys/arm/at91/at91_pinctrl.c#1 branch .. //depot/projects/pci/sys/arm/at91/at91_pio.c#6 integrate .. //depot/projects/pci/sys/arm/at91/at91_piovar.h#4 integrate .. //depot/projects/pci/sys/arm/at91/at91_pit.c#4 integrate .. //depot/projects/pci/sys/arm/at91/at91_pmc.c#6 integrate .. //depot/projects/pci/sys/arm/at91/at91rm92reg.h#4 integrate .. //depot/projects/pci/sys/arm/at91/at91sam9260.c#4 integrate .. //depot/projects/pci/sys/arm/at91/at91sam9260reg.h#4 integrate .. //depot/projects/pci/sys/arm/at91/at91sam9g20reg.h#5 integrate .. //depot/projects/pci/sys/arm/at91/at91sam9g45reg.h#3 integrate .. //depot/projects/pci/sys/arm/at91/at91sam9x5reg.h#3 integrate .. //depot/projects/pci/sys/arm/at91/board_tsc4370.c#4 integrate .. //depot/projects/pci/sys/arm/at91/files.at91#6 integrate .. //depot/projects/pci/sys/arm/at91/if_ate.c#7 integrate .. //depot/projects/pci/sys/arm/at91/if_macb.c#3 integrate .. //depot/projects/pci/sys/arm/at91/std.atmel#2 integrate .. //depot/projects/pci/sys/arm/broadcom/bcm2835/bcm2835_bsc.c#3 integrate .. //depot/projects/pci/sys/arm/broadcom/bcm2835/bcm2835_fbd.c#4 integrate .. //depot/projects/pci/sys/arm/broadcom/bcm2835/bcm2835_intr.c#3 integrate .. //depot/projects/pci/sys/arm/broadcom/bcm2835/bcm2835_machdep.c#4 integrate .. //depot/projects/pci/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c#6 integrate .. //depot/projects/pci/sys/arm/broadcom/bcm2835/files.bcm2835#7 integrate .. //depot/projects/pci/sys/arm/cavium/cns11xx/cfi_bus_econa.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/econa.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/econa_machdep.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/econa_reg.h#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/econa_var.h#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/ehci_ebus.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/files.econa#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/if_ece.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/if_ecereg.h#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/if_ecevar.h#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/ohci_ec.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/std.econa#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/timer.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/uart_bus_ec.c#1 branch .. //depot/projects/pci/sys/arm/cavium/cns11xx/uart_cpu_ec.c#1 branch .. //depot/projects/pci/sys/arm/conf/AC100#7 delete .. //depot/projects/pci/sys/arm/conf/APALIS-IMX6#1 branch .. //depot/projects/pci/sys/arm/conf/ARNDALE#6 integrate .. //depot/projects/pci/sys/arm/conf/ARNDALE-OCTA#1 branch .. //depot/projects/pci/sys/arm/conf/BEAGLEBONE#8 integrate .. //depot/projects/pci/sys/arm/conf/BWCT#9 integrate .. //depot/projects/pci/sys/arm/conf/CHROMEBOOK#2 integrate .. //depot/projects/pci/sys/arm/conf/CHROMEBOOK-PEACH-PIT#1 branch .. //depot/projects/pci/sys/arm/conf/CHROMEBOOK-PEACH-PIT.hints#1 branch .. //depot/projects/pci/sys/arm/conf/CHROMEBOOK-SNOW#1 branch .. //depot/projects/pci/sys/arm/conf/CHROMEBOOK-SPRING#1 branch .. //depot/projects/pci/sys/arm/conf/CHROMEBOOK.hints#1 branch .. //depot/projects/pci/sys/arm/conf/CNS11XXNAS#9 integrate .. //depot/projects/pci/sys/arm/conf/COLIBRI-VF50#3 integrate .. //depot/projects/pci/sys/arm/conf/COSMIC#5 integrate .. //depot/projects/pci/sys/arm/conf/CUBIEBOARD#7 integrate .. //depot/projects/pci/sys/arm/conf/CUBIEBOARD2#5 integrate .. //depot/projects/pci/sys/arm/conf/DB-78XXX#9 integrate .. //depot/projects/pci/sys/arm/conf/DB-88F5XXX#9 integrate .. //depot/projects/pci/sys/arm/conf/DB-88F6XXX#9 integrate .. //depot/projects/pci/sys/arm/conf/DIGI-CCWMX53#6 integrate .. //depot/projects/pci/sys/arm/conf/DOCKSTAR#8 integrate .. //depot/projects/pci/sys/arm/conf/DREAMPLUG-1001#4 integrate .. //depot/projects/pci/sys/arm/conf/EA3250#6 integrate .. //depot/projects/pci/sys/arm/conf/EB9200#6 integrate .. //depot/projects/pci/sys/arm/conf/EFIKA_MX#6 integrate .. //depot/projects/pci/sys/arm/conf/ETHERNUT5#6 integrate .. //depot/projects/pci/sys/arm/conf/EXYNOS5.common#1 branch .. //depot/projects/pci/sys/arm/conf/EXYNOS5250#1 branch .. //depot/projects/pci/sys/arm/conf/EXYNOS5420#1 branch .. //depot/projects/pci/sys/arm/conf/HL200#9 integrate .. //depot/projects/pci/sys/arm/conf/HL201#10 integrate .. //depot/projects/pci/sys/arm/conf/IMX53#1 branch .. //depot/projects/pci/sys/arm/conf/IMX53-QSB#5 integrate .. //depot/projects/pci/sys/arm/conf/IMX6#2 integrate .. //depot/projects/pci/sys/arm/conf/KB920X#8 integrate .. //depot/projects/pci/sys/arm/conf/LN2410SBC#8 integrate .. //depot/projects/pci/sys/arm/conf/NOTES#5 integrate .. //depot/projects/pci/sys/arm/conf/NSLU#9 integrate .. //depot/projects/pci/sys/arm/conf/PANDABOARD#6 integrate .. //depot/projects/pci/sys/arm/conf/QILA9G20#9 integrate .. //depot/projects/pci/sys/arm/conf/QUARTZ#2 integrate .. //depot/projects/pci/sys/arm/conf/RADXA#4 integrate .. //depot/projects/pci/sys/arm/conf/RADXA-LITE#1 branch .. //depot/projects/pci/sys/arm/conf/RK3188#1 branch .. //depot/projects/pci/sys/arm/conf/RPI-B#10 integrate .. //depot/projects/pci/sys/arm/conf/SAM9260EK#7 integrate .. //depot/projects/pci/sys/arm/conf/SAM9G20EK#9 integrate .. //depot/projects/pci/sys/arm/conf/SAM9X25EK#7 integrate .. //depot/projects/pci/sys/arm/conf/SN9G45#7 integrate .. //depot/projects/pci/sys/arm/conf/SOCKIT#1 branch .. //depot/projects/pci/sys/arm/conf/VYBRID#1 branch .. //depot/projects/pci/sys/arm/conf/VYBRID.common#4 delete .. //depot/projects/pci/sys/arm/conf/WANDBOARD-DUAL#2 integrate .. //depot/projects/pci/sys/arm/conf/WANDBOARD-QUAD#2 integrate .. //depot/projects/pci/sys/arm/conf/WANDBOARD-SOLO#2 integrate .. //depot/projects/pci/sys/arm/conf/WANDBOARD.common#3 delete .. //depot/projects/pci/sys/arm/conf/ZEDBOARD#6 integrate .. //depot/projects/pci/sys/arm/econa/cfi_bus_econa.c#3 delete .. //depot/projects/pci/sys/arm/econa/econa.c#5 delete .. //depot/projects/pci/sys/arm/econa/econa_machdep.c#7 delete .. //depot/projects/pci/sys/arm/econa/econa_reg.h#3 delete .. //depot/projects/pci/sys/arm/econa/econa_var.h#3 delete .. //depot/projects/pci/sys/arm/econa/ehci_ebus.c#6 delete .. //depot/projects/pci/sys/arm/econa/files.econa#5 delete .. //depot/projects/pci/sys/arm/econa/if_ece.c#5 delete .. //depot/projects/pci/sys/arm/econa/if_ecereg.h#3 delete .. //depot/projects/pci/sys/arm/econa/if_ecevar.h#3 delete .. //depot/projects/pci/sys/arm/econa/ohci_ec.c#4 delete .. //depot/projects/pci/sys/arm/econa/std.econa#4 delete .. //depot/projects/pci/sys/arm/econa/timer.c#4 delete .. //depot/projects/pci/sys/arm/econa/uart_bus_ec.c#4 delete .. //depot/projects/pci/sys/arm/econa/uart_cpu_ec.c#4 delete .. //depot/projects/pci/sys/arm/freescale/fsl_ocotp.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/files.imx51#5 integrate .. //depot/projects/pci/sys/arm/freescale/imx/files.imx53#5 integrate .. //depot/projects/pci/sys/arm/freescale/imx/files.imx6#5 integrate .. //depot/projects/pci/sys/arm/freescale/imx/i2c.c#3 delete .. //depot/projects/pci/sys/arm/freescale/imx/imx51_ccm.c#6 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx51_gpio.c#4 delete .. //depot/projects/pci/sys/arm/freescale/imx/imx51_iomux.c#4 delete .. //depot/projects/pci/sys/arm/freescale/imx/imx51_iomuxreg.h#2 delete .. //depot/projects/pci/sys/arm/freescale/imx/imx51_iomuxvar.h#2 delete .. //depot/projects/pci/sys/arm/freescale/imx/imx51_ipuv3.c#5 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx51_ipuv3_fbd.c#4 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx51_ipuv3reg.h#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx51_machdep.c#4 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx53_machdep.c#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_anatop.c#4 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_ccm.c#4 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_ccmreg.h#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_machdep.c#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_mp.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_pl310.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx6_usbphy.c#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx_ccmvar.h#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx_gpio.c#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx_gpt.c#7 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx_i2c.c#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx_iomux.c#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx_iomuxvar.h#1 branch .. //depot/projects/pci/sys/arm/freescale/imx/imx_machdep.h#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx_nop_usbphy.c#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/imx_sdhci.c#4 integrate .. //depot/projects/pci/sys/arm/freescale/imx/std.imx51#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/std.imx53#3 integrate .. //depot/projects/pci/sys/arm/freescale/imx/std.imx6#4 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/files.vybrid#6 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_adc.c#1 branch .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_adc.h#1 branch .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_gpio.c#4 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_i2c.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_machdep.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_port.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_sai.c#2 integrate .. //depot/projects/pci/sys/arm/freescale/vybrid/vf_spi.c#1 branch .. //depot/projects/pci/sys/arm/include/_types.h#5 integrate .. //depot/projects/pci/sys/arm/include/acle-compat.h#1 branch .. //depot/projects/pci/sys/arm/include/armreg.h#11 integrate .. //depot/projects/pci/sys/arm/include/asm.h#4 integrate .. //depot/projects/pci/sys/arm/include/atomic.h#6 integrate .. //depot/projects/pci/sys/arm/include/counter.h#3 integrate .. //depot/projects/pci/sys/arm/include/cpu.h#7 integrate .. //depot/projects/pci/sys/arm/include/cpuconf.h#5 integrate .. //depot/projects/pci/sys/arm/include/cpufunc.h#6 integrate .. //depot/projects/pci/sys/arm/include/devmap.h#3 integrate .. //depot/projects/pci/sys/arm/include/elf.h#3 integrate .. //depot/projects/pci/sys/arm/include/fp.h#4 integrate .. //depot/projects/pci/sys/arm/include/intr.h#6 integrate .. //depot/projects/pci/sys/arm/include/kdb.h#4 integrate .. //depot/projects/pci/sys/arm/include/machdep.h#7 integrate .. //depot/projects/pci/sys/arm/include/param.h#7 integrate .. //depot/projects/pci/sys/arm/include/pl310.h#2 integrate .. //depot/projects/pci/sys/arm/include/platform.h#1 branch .. //depot/projects/pci/sys/arm/include/platformvar.h#1 branch .. //depot/projects/pci/sys/arm/include/pmap.h#13 integrate .. //depot/projects/pci/sys/arm/include/sf_buf.h#5 integrate .. //depot/projects/pci/sys/arm/include/smp.h#5 integrate .. //depot/projects/pci/sys/arm/include/ucontext.h#3 integrate .. //depot/projects/pci/sys/arm/include/vfp.h#4 integrate .. //depot/projects/pci/sys/arm/include/vmparam.h#10 integrate .. //depot/projects/pci/sys/arm/lpc/if_lpe.c#4 integrate .. //depot/projects/pci/sys/arm/lpc/lpc_gpio.c#5 integrate .. //depot/projects/pci/sys/arm/lpc/lpc_machdep.c#4 integrate .. //depot/projects/pci/sys/arm/lpc/lpcvar.h#2 integrate .. //depot/projects/pci/sys/arm/mv/armadaxp/armadaxp_mp.c#5 integrate .. //depot/projects/pci/sys/arm/mv/armadaxp/files.armadaxp#2 integrate .. //depot/projects/pci/sys/arm/mv/armadaxp/mptramp.S#1 branch .. //depot/projects/pci/sys/arm/mv/gpio.c#7 integrate .. //depot/projects/pci/sys/arm/mv/mv_localbus.c#5 integrate .. //depot/projects/pci/sys/arm/mv/mv_machdep.c#9 integrate .. //depot/projects/pci/sys/arm/mv/mv_pci.c#8 integrate .. //depot/projects/pci/sys/arm/mv/mvvar.h#6 integrate .. //depot/projects/pci/sys/arm/mv/orion/db88f5xxx.c#4 integrate .. //depot/projects/pci/sys/arm/rockchip/files.rk30xx#3 integrate .. //depot/projects/pci/sys/arm/rockchip/rk30xx_gpio.c#4 integrate .. //depot/projects/pci/sys/arm/rockchip/rk30xx_machdep.c#3 integrate .. //depot/projects/pci/sys/arm/rockchip/rk30xx_mp.c#1 branch .. //depot/projects/pci/sys/arm/s3c2xx0/board_ln2410sbc.c#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/files.s3c2xx0#5 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2410reg.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2410var.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2440reg.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c24x0.c#4 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c24x0_clk.c#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c24x0_machdep.c#7 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c24x0_rtc.c#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c24x0reg.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c24x0var.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2xx0_space.c#5 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2xx0board.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2xx0reg.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/s3c2xx0var.h#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/std.ln2410sbc#4 delete .. //depot/projects/pci/sys/arm/s3c2xx0/std.s3c2410#3 delete .. //depot/projects/pci/sys/arm/s3c2xx0/uart_bus_s3c2410.c#4 delete .. //depot/projects/pci/sys/arm/s3c2xx0/uart_cpu_s3c2410.c#4 delete .. //depot/projects/pci/sys/arm/s3c2xx0/uart_dev_s3c2410.c#5 delete .. //depot/projects/pci/sys/arm/s3c2xx0/uart_dev_s3c2410.h#3 delete .. //depot/projects/pci/sys/arm/samsung/exynos/chrome_ec.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/chrome_ec.h#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/chrome_ec_spi.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/chrome_kb.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/chrome_kb.h#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_combiner.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_combiner.h#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_ehci.c#2 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_fimd.c#2 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_i2c.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_machdep.c#5 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_mct.c#2 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_mp.c#3 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_pad.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_pad.h#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_pmu.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_pmu.h#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_spi.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_usb_phy.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos5_xhci.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos_uart.c#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/exynos_uart.h#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/files.exynos5#4 integrate .. //depot/projects/pci/sys/arm/samsung/exynos/std.exynos5#3 delete .. //depot/projects/pci/sys/arm/samsung/exynos/std.exynos5250#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/std.exynos5420#1 branch .. //depot/projects/pci/sys/arm/samsung/exynos/uart.c#2 delete .. //depot/projects/pci/sys/arm/samsung/exynos/uart.h#2 delete .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/board_ln2410sbc.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/files.s3c2xx0#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2410reg.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2410var.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2440reg.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c24x0.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c24x0_clk.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c24x0_rtc.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c24x0reg.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c24x0var.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2xx0_space.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2xx0board.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2xx0reg.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/s3c2xx0var.h#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/std.ln2410sbc#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/std.s3c2410#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/uart_bus_s3c2410.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/uart_cpu_s3c2410.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.c#1 branch .. //depot/projects/pci/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.h#1 branch .. //depot/projects/pci/sys/arm/tegra/files.tegra2#4 delete .. //depot/projects/pci/sys/arm/tegra/std.tegra2#3 delete .. //depot/projects/pci/sys/arm/tegra/tegra2_common.c#2 delete .. //depot/projects/pci/sys/arm/tegra/tegra2_machdep.c#4 delete .. //depot/projects/pci/sys/arm/ti/aintc.c#4 integrate .. //depot/projects/pci/sys/arm/ti/am335x/am335x_lcd.c#3 integrate .. //depot/projects/pci/sys/arm/ti/am335x/am335x_prcm.c#7 integrate .. //depot/projects/pci/sys/arm/ti/am335x/am335x_pwm.c#4 integrate .. //depot/projects/pci/sys/arm/ti/am335x/am335x_scm_padconf.c#4 integrate .. //depot/projects/pci/sys/arm/ti/cpsw/if_cpsw.c#5 integrate .. //depot/projects/pci/sys/arm/ti/omap4/files.omap4#2 integrate .. //depot/projects/pci/sys/arm/ti/omap4/omap4_l2cache.c#2 integrate .. //depot/projects/pci/sys/arm/ti/omap4/omap4_prcm_clks.c#7 integrate .. //depot/projects/pci/sys/arm/ti/omap4/omap4_scm_padconf.c#3 integrate .. //depot/projects/pci/sys/arm/ti/ti_adc.c#2 integrate .. //depot/projects/pci/sys/arm/ti/ti_adcreg.h#2 integrate .. //depot/projects/pci/sys/arm/ti/ti_adcvar.h#2 integrate .. //depot/projects/pci/sys/arm/ti/ti_gpio.c#6 integrate .. //depot/projects/pci/sys/arm/ti/ti_i2c.c#4 integrate .. //depot/projects/pci/sys/arm/ti/ti_i2c.h#2 integrate .. //depot/projects/pci/sys/arm/ti/ti_machdep.c#5 integrate .. //depot/projects/pci/sys/arm/ti/ti_prcm.c#3 integrate .. //depot/projects/pci/sys/arm/ti/ti_sdhci.c#4 integrate .. //depot/projects/pci/sys/arm/ti/ti_smc.S#2 integrate .. //depot/projects/pci/sys/arm/versatile/files.versatile#3 integrate .. //depot/projects/pci/sys/arm/versatile/if_smc_fdt.c#4 delete .. //depot/projects/pci/sys/arm/versatile/versatile_clcd.c#4 integrate .. //depot/projects/pci/sys/arm/versatile/versatile_machdep.c#3 integrate .. //depot/projects/pci/sys/arm/xilinx/files.zynq7#3 integrate .. //depot/projects/pci/sys/arm/xilinx/std.zynq7#3 integrate .. //depot/projects/pci/sys/arm/xilinx/zy7_devcfg.c#3 integrate .. //depot/projects/pci/sys/arm/xilinx/zy7_machdep.c#3 integrate .. //depot/projects/pci/sys/arm/xilinx/zy7_mp.c#1 branch .. //depot/projects/pci/sys/arm/xilinx/zy7_reg.h#2 integrate .. //depot/projects/pci/sys/arm/xilinx/zy7_slcr.c#3 integrate .. //depot/projects/pci/sys/arm/xilinx/zy7_slcr.h#2 integrate .. //depot/projects/pci/sys/arm/xscale/i80321/ep80219_machdep.c#8 integrate .. //depot/projects/pci/sys/arm/xscale/i80321/i80321_intr.h#3 integrate .. //depot/projects/pci/sys/arm/xscale/i80321/i80321_timer.c#3 integrate .. //depot/projects/pci/sys/arm/xscale/i80321/iq31244_machdep.c#8 integrate .. //depot/projects/pci/sys/arm/xscale/i80321/iq80321.c#5 integrate .. //depot/projects/pci/sys/arm/xscale/i8134x/crb_machdep.c#10 integrate .. //depot/projects/pci/sys/arm/xscale/i8134x/i81342.c#4 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/avila_machdep.c#9 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/if_npe.c#5 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/ixp425.c#4 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/ixp425_npe.c#4 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/ixp425_pci.c#5 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/ixp425_qmgr.c#3 integrate .. //depot/projects/pci/sys/arm/xscale/ixp425/ixp425_timer.c#3 integrate .. //depot/projects/pci/sys/arm/xscale/pxa/pxa_icu.c#3 integrate .. //depot/projects/pci/sys/arm/xscale/pxa/pxa_machdep.c#8 integrate .. //depot/projects/pci/sys/arm/xscale/pxa/pxa_timer.c#3 integrate .. //depot/projects/pci/sys/boot/Makefile#5 integrate .. //depot/projects/pci/sys/boot/Makefile.amd64#6 integrate .. //depot/projects/pci/sys/boot/Makefile.ia64#3 delete .. //depot/projects/pci/sys/boot/amd64/Makefile#1 branch .. //depot/projects/pci/sys/boot/amd64/Makefile.inc#1 branch .. //depot/projects/pci/sys/boot/amd64/boot1.efi/Makefile#1 branch .. //depot/projects/pci/sys/boot/amd64/boot1.efi/Makefile.fat#1 branch .. //depot/projects/pci/sys/boot/amd64/boot1.efi/boot1.c#1 branch .. //depot/projects/pci/sys/boot/amd64/boot1.efi/fat.tmpl.bz2.uu#1 branch .. //depot/projects/pci/sys/boot/amd64/boot1.efi/generate-fat.sh#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/Makefile#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/amd64_tramp.S#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/autoload.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/bootinfo.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/conf.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/copy.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/devicename.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/elf64_freebsd.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/framebuffer.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/framebuffer.h#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/ldscript.amd64#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/main.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/reloc.c#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/start.S#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/version#1 branch .. //depot/projects/pci/sys/boot/amd64/efi/x86_efi.h#1 branch .. //depot/projects/pci/sys/boot/arm/at91/boot0/Makefile#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot0/main.c#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot0iic/Makefile#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot0iic/main.c#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot0spi/Makefile#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot0spi/main.c#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot2/Makefile#4 integrate .. //depot/projects/pci/sys/boot/arm/at91/boot2/boot2.c#4 integrate .. //depot/projects/pci/sys/boot/arm/at91/bootiic/Makefile#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/bootiic/main.c#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/bootspi/Makefile#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/bootspi/main.c#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/libat91/Makefile#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/libat91/emac.c#3 integrate .. //depot/projects/pci/sys/boot/arm/at91/libat91/mci_device.h#4 integrate .. //depot/projects/pci/sys/boot/arm/at91/libat91/sd-card.c#4 integrate .. //depot/projects/pci/sys/boot/arm/at91/libat91/sd-card.h#3 integrate .. //depot/projects/pci/sys/boot/arm/ixp425/boot2/Makefile#5 integrate .. //depot/projects/pci/sys/boot/arm/uboot/Makefile#6 integrate .. //depot/projects/pci/sys/boot/arm/uboot/help.uboot#3 integrate .. //depot/projects/pci/sys/boot/common/Makefile.inc#7 integrate .. //depot/projects/pci/sys/boot/common/bootstrap.h#6 integrate .. //depot/projects/pci/sys/boot/common/install.c#1 branch .. //depot/projects/pci/sys/boot/common/interp.c#4 integrate .. //depot/projects/pci/sys/boot/common/interp_forth.c#3 integrate .. //depot/projects/pci/sys/boot/common/module.c#6 integrate .. //depot/projects/pci/sys/boot/common/part.c#5 integrate .. //depot/projects/pci/sys/boot/common/ufsread.c#5 integrate .. //depot/projects/pci/sys/boot/common/zfsloader.8#1 branch .. //depot/projects/pci/sys/boot/efi/include/amd64/pe.h#2 integrate .. //depot/projects/pci/sys/boot/efi/include/efi.h#3 integrate .. //depot/projects/pci/sys/boot/efi/include/efiapi.h#3 integrate .. //depot/projects/pci/sys/boot/efi/include/eficonsctl.h#1 branch .. //depot/projects/pci/sys/boot/efi/include/efigop.h#1 branch .. //depot/projects/pci/sys/boot/efi/include/efilib.h#3 integrate .. //depot/projects/pci/sys/boot/efi/include/i386/pe.h#3 integrate .. //depot/projects/pci/sys/boot/efi/include/ia64/efibind.h#3 delete .. //depot/projects/pci/sys/boot/efi/include/ia64/pe.h#3 delete .. //depot/projects/pci/sys/boot/efi/libefi/Makefile#4 integrate .. //depot/projects/pci/sys/boot/efi/libefi/efinet.c#3 integrate .. //depot/projects/pci/sys/boot/efi/libefi/efipart.c#4 integrate .. //depot/projects/pci/sys/boot/efi/libefi/handles.c#3 integrate .. //depot/projects/pci/sys/boot/efi/libefi/libefi.c#4 integrate .. //depot/projects/pci/sys/boot/fdt/dts/Makefile#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/Makefile.inc#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/Makefile#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/apalis-imx6.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/beaglebone-black.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/beaglebone.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/cubieboard.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/cubieboard2.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/digi-ccwmx53.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/efikamx.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5250-arndale.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5250-chromebook.dts#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5250-snow.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5250-spring.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5250.dtsi#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5420-peach-pit.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/exynos5420.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/imx53-qsb.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/imx53x.dtsi#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/imx6.dtsi#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/p1020rdb.dts#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p2020ds.dts#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p2041rdb.dts#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p2041si.dtsi#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p3041ds.dts#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p3041si.dtsi#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p5020ds.dts#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/p5020si.dtsi#2 delete .. //depot/projects/pci/sys/boot/fdt/dts/arm/pandaboard.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/rk3188-radxa-lite.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/rk3188.dtsi#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/rpi.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/sam9260ek.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/socfpga-sockit.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/socfpga.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/sun4i-a10.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/sun7i-a20.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/arm/wandboard-dual.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/wandboard-quad.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/wandboard-solo.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/arm/zedboard.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/mips/Makefile#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/mips/beri-netfpga.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/mips/beripad-de4.dts#2 integrate .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/Makefile#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p1020rdb.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p2020ds.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p2041rdb.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p2041si.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p3041ds.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p3041si.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p5020ds.dts#1 branch .. //depot/projects/pci/sys/boot/fdt/dts/powerpc/p5020si.dtsi#1 branch .. //depot/projects/pci/sys/boot/fdt/fdt_loader_cmd.c#6 integrate .. //depot/projects/pci/sys/boot/ficl/Makefile#5 integrate .. //depot/projects/pci/sys/boot/ficl/ia64/sysdep.c#3 delete .. //depot/projects/pci/sys/boot/ficl/ia64/sysdep.h#3 delete .. //depot/projects/pci/sys/boot/ficl/loader.c#5 integrate .. //depot/projects/pci/sys/boot/ficl/tools.c#4 integrate .. //depot/projects/pci/sys/boot/ficl/words.c#3 integrate .. //depot/projects/pci/sys/boot/ficl32/Makefile#1 branch .. //depot/projects/pci/sys/boot/ficl64/Makefile#2 delete .. //depot/projects/pci/sys/boot/forth/beastie.4th#7 integrate .. //depot/projects/pci/sys/boot/forth/beastie.4th.8#3 integrate .. //depot/projects/pci/sys/boot/forth/brand.4th#3 integrate .. //depot/projects/pci/sys/boot/forth/loader.conf#13 integrate .. //depot/projects/pci/sys/boot/forth/loader.conf.5#7 integrate .. //depot/projects/pci/sys/boot/forth/pcibios.4th#1 branch .. //depot/projects/pci/sys/boot/i386/Makefile#3 integrate .. //depot/projects/pci/sys/boot/i386/boot0/Makefile#4 integrate .. //depot/projects/pci/sys/boot/i386/boot2/Makefile#11 integrate .. //depot/projects/pci/sys/boot/i386/boot2/boot2.c#7 integrate .. //depot/projects/pci/sys/boot/i386/btx/btx/Makefile#4 integrate .. //depot/projects/pci/sys/boot/i386/btx/btxldr/Makefile#4 integrate .. //depot/projects/pci/sys/boot/i386/btx/lib/Makefile#3 integrate .. //depot/projects/pci/sys/boot/i386/cdboot/Makefile#3 integrate .. //depot/projects/pci/sys/boot/i386/efi/Makefile#5 delete .. //depot/projects/pci/sys/boot/i386/efi/autoload.c#3 delete .. //depot/projects/pci/sys/boot/i386/efi/conf.c#3 delete .. //depot/projects/pci/sys/boot/i386/efi/devicename.c#3 delete .. //depot/projects/pci/sys/boot/i386/efi/ldscript.amd64#3 delete .. //depot/projects/pci/sys/boot/i386/efi/main.c#3 delete .. //depot/projects/pci/sys/boot/i386/efi/reloc.c#4 delete .. //depot/projects/pci/sys/boot/i386/efi/version#3 delete .. //depot/projects/pci/sys/boot/i386/gptboot/gptboot.8#3 integrate .. //depot/projects/pci/sys/boot/i386/gptzfsboot/Makefile#7 integrate .. //depot/projects/pci/sys/boot/i386/gptzfsboot/gptzfsboot.8#1 branch .. //depot/projects/pci/sys/boot/i386/kgzldr/Makefile#3 integrate .. //depot/projects/pci/sys/boot/i386/libfirewire/firewire.c#3 integrate .. //depot/projects/pci/sys/boot/i386/libi386/Makefile#5 integrate .. //depot/projects/pci/sys/boot/i386/libi386/amd64_tramp.S#3 integrate .. //depot/projects/pci/sys/boot/i386/libi386/biospci.c#4 integrate .. //depot/projects/pci/sys/boot/i386/libi386/comconsole.c#6 integrate .. //depot/projects/pci/sys/boot/i386/libi386/libi386.h#4 integrate .. //depot/projects/pci/sys/boot/i386/libi386/pxe.c#4 integrate .. //depot/projects/pci/sys/boot/i386/loader/Makefile#6 integrate .. //depot/projects/pci/sys/boot/i386/loader/main.c#3 integrate .. //depot/projects/pci/sys/boot/i386/mbr/Makefile#3 integrate .. //depot/projects/pci/sys/boot/i386/pmbr/Makefile#3 integrate .. //depot/projects/pci/sys/boot/i386/zfsboot/Makefile#11 integrate .. //depot/projects/pci/sys/boot/i386/zfsboot/zfsboot.8#1 branch .. //depot/projects/pci/sys/boot/i386/zfsloader/Makefile#3 integrate .. //depot/projects/pci/sys/boot/ia64/Makefile#3 delete .. //depot/projects/pci/sys/boot/ia64/Makefile.inc#3 delete .. //depot/projects/pci/sys/boot/ia64/common/Makefile#4 delete .. //depot/projects/pci/sys/boot/ia64/common/autoload.c#3 delete .. //depot/projects/pci/sys/boot/ia64/common/bootinfo.c#5 delete .. //depot/projects/pci/sys/boot/ia64/common/copy.c#5 delete .. //depot/projects/pci/sys/boot/ia64/common/devicename.c#3 delete .. //depot/projects/pci/sys/boot/ia64/common/exec.c#7 delete .. //depot/projects/pci/sys/boot/ia64/common/icache.c#3 delete .. //depot/projects/pci/sys/boot/ia64/common/libia64.h#5 delete .. //depot/projects/pci/sys/boot/ia64/efi/Makefile#3 delete .. //depot/projects/pci/sys/boot/ia64/efi/conf.c#4 delete .. //depot/projects/pci/sys/boot/ia64/efi/efimd.c#6 delete .. //depot/projects/pci/sys/boot/ia64/efi/ldscript.ia64#3 delete .. //depot/projects/pci/sys/boot/ia64/efi/main.c#5 delete .. //depot/projects/pci/sys/boot/ia64/efi/start.S#3 delete .. //depot/projects/pci/sys/boot/ia64/efi/version#6 delete .. //depot/projects/pci/sys/boot/ia64/ski/Makefile#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/acpi_stub.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/conf.c#4 delete .. //depot/projects/pci/sys/boot/ia64/ski/delay.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/efi_stub.c#4 delete .. //depot/projects/pci/sys/boot/ia64/ski/exit.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/ldscript.ia64#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/libski.h#4 delete .. //depot/projects/pci/sys/boot/ia64/ski/main.c#4 delete .. //depot/projects/pci/sys/boot/ia64/ski/pal_stub.S#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/sal_stub.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/skiconsole.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/skifs.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/skiload.cmd#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/skimd.c#4 delete .. //depot/projects/pci/sys/boot/ia64/ski/ssc.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/start.S#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/time.c#3 delete .. //depot/projects/pci/sys/boot/ia64/ski/version#4 delete .. //depot/projects/pci/sys/boot/kshim/bsd_busspace.c#1 branch .. //depot/projects/pci/sys/boot/kshim/bsd_global.h#1 branch .. //depot/projects/pci/sys/boot/kshim/bsd_kernel.c#1 branch .. //depot/projects/pci/sys/boot/kshim/bsd_kernel.h#1 branch .. //depot/projects/pci/sys/boot/kshim/kshim.mk#1 branch .. //depot/projects/pci/sys/boot/kshim/sysinit.h#1 branch .. //depot/projects/pci/sys/boot/libstand32/Makefile#2 integrate .. //depot/projects/pci/sys/boot/mips/beri/boot2/Makefile#2 integrate .. //depot/projects/pci/sys/boot/mips/beri/loader/Makefile#2 integrate .. //depot/projects/pci/sys/boot/mips/beri/loader/loader.ldscript#2 integrate .. //depot/projects/pci/sys/boot/mips/beri/loader/main.c#2 integrate .. //depot/projects/pci/sys/boot/ofw/common/main.c#4 integrate .. //depot/projects/pci/sys/boot/pc98/boot0.5/Makefile#3 integrate .. //depot/projects/pci/sys/boot/pc98/boot0/Makefile#3 integrate .. //depot/projects/pci/sys/boot/pc98/boot2/Makefile#6 integrate .. //depot/projects/pci/sys/boot/pc98/boot2/boot2.c#7 integrate .. //depot/projects/pci/sys/boot/pc98/btx/btx/Makefile#4 integrate .. //depot/projects/pci/sys/boot/pc98/btx/btxldr/Makefile#4 integrate .. //depot/projects/pci/sys/boot/pc98/btx/lib/Makefile#3 integrate .. //depot/projects/pci/sys/boot/pc98/cdboot/Makefile#3 integrate .. //depot/projects/pci/sys/boot/pc98/kgzldr/Makefile#3 integrate .. //depot/projects/pci/sys/boot/pc98/loader/Makefile#5 integrate .. //depot/projects/pci/sys/boot/pc98/loader/main.c#5 integrate .. //depot/projects/pci/sys/boot/powerpc/boot1.chrp/Makefile#5 integrate .. //depot/projects/pci/sys/boot/powerpc/ofw/Makefile#5 integrate .. //depot/projects/pci/sys/boot/powerpc/ps3/Makefile#8 integrate .. //depot/projects/pci/sys/boot/powerpc/ps3/main.c#5 integrate .. //depot/projects/pci/sys/boot/powerpc/uboot/Makefile#5 integrate .. //depot/projects/pci/sys/boot/sparc64/boot1/Makefile#4 integrate .. //depot/projects/pci/sys/boot/sparc64/loader/Makefile#4 integrate .. //depot/projects/pci/sys/boot/sparc64/loader/main.c#7 integrate .. //depot/projects/pci/sys/boot/uboot/common/main.c#4 integrate .. //depot/projects/pci/sys/boot/uboot/lib/Makefile#4 integrate .. //depot/projects/pci/sys/boot/usb/Makefile#3 integrate .. //depot/projects/pci/sys/boot/usb/bsd_busspace.c#2 delete .. //depot/projects/pci/sys/boot/usb/bsd_global.h#2 delete .. //depot/projects/pci/sys/boot/usb/bsd_kernel.c#2 delete .. //depot/projects/pci/sys/boot/usb/bsd_kernel.h#2 delete .. //depot/projects/pci/sys/boot/usb/bsd_usbloader_test.c#2 integrate .. //depot/projects/pci/sys/boot/usb/storage/umass_common.c#1 branch .. //depot/projects/pci/sys/boot/usb/storage/umass_common.h#1 branch .. //depot/projects/pci/sys/boot/usb/storage/umass_loader.c#1 branch .. //depot/projects/pci/sys/boot/usb/tools/Makefile#1 branch .. //depot/projects/pci/sys/boot/usb/tools/sysinit.h#2 delete .. //depot/projects/pci/sys/boot/usb/usb_busdma_loader.c#2 integrate .. //depot/projects/pci/sys/boot/usb/usbcore.mk#1 branch .. //depot/projects/pci/sys/boot/userboot/libstand/Makefile#6 integrate .. //depot/projects/pci/sys/boot/userboot/test/Makefile#4 integrate .. //depot/projects/pci/sys/boot/userboot/test/test.c#3 integrate .. //depot/projects/pci/sys/boot/userboot/userboot/Makefile#6 integrate .. //depot/projects/pci/sys/boot/userboot/userboot/conf.c#4 integrate .. //depot/projects/pci/sys/boot/userboot/userboot/devicename.c#4 integrate .. //depot/projects/pci/sys/boot/userboot/userboot/main.c#4 integrate .. //depot/projects/pci/sys/boot/userboot/userboot/userboot_cons.c#3 integrate .. //depot/projects/pci/sys/boot/zfs/zfsimpl.c#5 integrate .. //depot/projects/pci/sys/bsm/audit_record.h#4 integrate .. //depot/projects/pci/sys/cam/ata/ata_all.c#8 integrate .. //depot/projects/pci/sys/cam/ata/ata_da.c#13 integrate .. //depot/projects/pci/sys/cam/ata/ata_pmp.c#8 integrate .. //depot/projects/pci/sys/cam/ata/ata_xpt.c#9 integrate .. //depot/projects/pci/sys/cam/cam.c#4 integrate .. //depot/projects/pci/sys/cam/cam_ccb.h#12 integrate .. //depot/projects/pci/sys/cam/cam_periph.c#15 integrate .. //depot/projects/pci/sys/cam/cam_queue.c#7 integrate .. //depot/projects/pci/sys/cam/cam_queue.h#6 integrate .. //depot/projects/pci/sys/cam/cam_xpt.c#17 integrate .. //depot/projects/pci/sys/cam/ctl/ctl.c#9 integrate .. //depot/projects/pci/sys/cam/ctl/ctl.h#5 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_backend.c#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_backend.h#5 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_backend_block.c#8 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_backend_ramdisk.c#6 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_cmd_table.c#3 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_error.c#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_error.h#3 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend.c#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend.h#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend_cam_sim.c#6 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend_internal.c#6 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend_iscsi.c#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_frontend_iscsi.h#2 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_io.h#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_ioctl.h#5 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_private.h#4 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_ser_table.c#3 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_tpc.c#1 branch .. //depot/projects/pci/sys/cam/ctl/ctl_tpc.h#1 branch .. //depot/projects/pci/sys/cam/ctl/ctl_tpc_local.c#1 branch .. //depot/projects/pci/sys/cam/ctl/ctl_util.c#3 integrate .. //depot/projects/pci/sys/cam/ctl/ctl_util.h#3 integrate .. //depot/projects/pci/sys/cam/ctl/scsi_ctl.c#6 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_all.c#10 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_all.h#10 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_cd.c#10 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_da.c#14 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_da.h#5 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_enc_safte.c#3 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_enc_ses.c#5 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_low.c#5 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_pass.c#9 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_sa.c#10 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_sg.c#8 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_sg.h#3 integrate .. //depot/projects/pci/sys/cam/scsi/scsi_xpt.c#11 integrate .. //depot/projects/pci/sys/cddl/boot/zfs/README#4 integrate .. //depot/projects/pci/sys/cddl/boot/zfs/blkptr.c#1 branch .. //depot/projects/pci/sys/cddl/boot/zfs/zfsimpl.h#5 integrate .. //depot/projects/pci/sys/cddl/boot/zfs/zfssubr.c#5 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/kern/opensolaris_atomic.c#3 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/kern/opensolaris_dtrace.c#1 branch .. //depot/projects/pci/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c#5 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/kern/opensolaris_kstat.c#3 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/atomic.h#4 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/dkio.h#3 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/kmem.h#7 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/sdt.h#5 integrate .. //depot/projects/pci/sys/cddl/compat/opensolaris/sys/time.h#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/atomic/ia64/opensolaris_atomic.S#5 delete .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/avl/avl.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/unicode/u8_textprep.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/util/strtolctype.h#1 branch .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c#10 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/Makefile.files#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/profile.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/sdt_subr.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/dtrace/systrace.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/blkptr.c#1 branch .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_diff.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_bookmark.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c#12 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c#10 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/range_tree.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c#10 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/blkptr.h#1 branch .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bptree.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_synctask.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/range_tree.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/refcount.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/rrwlock.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c#12 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#14 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c#10 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c#7 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c#11 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/os/fm.c#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/acl.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/avl.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/bitmap.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/cpuvar.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h#4 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h#6 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h#5 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/fasttrap_impl.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/feature_tests.h#3 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h#9 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/isa_defs.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/processor.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/common/sys/sysmacros.h#2 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/intel/dtrace/fasttrap_isa.c#8 integrate .. //depot/projects/pci/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/fasttrap_isa.c#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/amd64/dtrace_isa.c#5 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/amd64/dtrace_subr.c#7 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_cddl.h#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_clone.c#4 delete .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_ioctl.c#6 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_load.c#7 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_sysctl.c#5 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/dtrace_unload.c#7 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/i386/dtrace_asm.S#4 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/i386/dtrace_isa.c#3 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/i386/dtrace_subr.c#6 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/mips/dtrace_subr.c#2 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c#6 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c#4 integrate .. //depot/projects/pci/sys/cddl/dev/dtrace/x86/dis_tables.c#2 integrate .. //depot/projects/pci/sys/cddl/dev/fbt/fbt.c#7 integrate .. //depot/projects/pci/sys/cddl/dev/fbt/fbt.h#1 branch .. //depot/projects/pci/sys/cddl/dev/fbt/fbt_powerpc.c#5 delete .. //depot/projects/pci/sys/cddl/dev/fbt/powerpc/fbt_isa.c#1 branch .. //depot/projects/pci/sys/cddl/dev/fbt/powerpc/fbt_isa.h#1 branch .. //depot/projects/pci/sys/cddl/dev/fbt/x86/fbt_isa.c#1 branch .. //depot/projects/pci/sys/cddl/dev/fbt/x86/fbt_isa.h#1 branch .. //depot/projects/pci/sys/cddl/dev/sdt/sdt.c#7 integrate .. //depot/projects/pci/sys/cddl/dev/systrace/systrace.c#7 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32.h#10 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_ioctl.c#7 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_ioctl.h#4 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_misc.c#17 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_proto.h#13 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_syscall.h#13 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_syscalls.c#13 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_sysent.c#13 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_systrace_args.c#11 integrate .. //depot/projects/pci/sys/compat/freebsd32/freebsd32_util.h#4 integrate .. //depot/projects/pci/sys/compat/freebsd32/syscalls.master#13 integrate .. //depot/projects/pci/sys/compat/ia32/ia32_sysvec.c#5 integrate .. //depot/projects/pci/sys/compat/ia32/ia32_util.h#4 integrate .. //depot/projects/pci/sys/compat/linprocfs/linprocfs.c#12 integrate .. //depot/projects/pci/sys/compat/linux/linux_futex.c#8 integrate .. //depot/projects/pci/sys/compat/linux/linux_ioctl.c#9 integrate .. //depot/projects/pci/sys/compat/linux/linux_mib.c#7 integrate .. //depot/projects/pci/sys/compat/linux/linux_timer.c#1 branch .. //depot/projects/pci/sys/compat/linux/linux_timer.h#1 branch .. //depot/projects/pci/sys/compat/ndis/kern_ndis.c#6 integrate .. //depot/projects/pci/sys/compat/ndis/ndis_var.h#4 integrate .. //depot/projects/pci/sys/compat/ndis/pe_var.h#3 integrate .. //depot/projects/pci/sys/compat/x86bios/x86bios.c#5 integrate .. //depot/projects/pci/sys/conf/Makefile.arm#11 integrate .. //depot/projects/pci/sys/conf/Makefile.ia64#4 delete .. //depot/projects/pci/sys/conf/NOTES#20 integrate .. //depot/projects/pci/sys/conf/files#25 integrate .. //depot/projects/pci/sys/conf/files.amd64#16 integrate .. //depot/projects/pci/sys/conf/files.arm#13 integrate .. //depot/projects/pci/sys/conf/files.i386#19 integrate .. //depot/projects/pci/sys/conf/files.ia64#9 delete .. //depot/projects/pci/sys/conf/files.mips#12 integrate .. //depot/projects/pci/sys/conf/files.pc98#10 integrate .. //depot/projects/pci/sys/conf/files.powerpc#15 integrate .. //depot/projects/pci/sys/conf/files.sparc64#10 integrate .. //depot/projects/pci/sys/conf/kern.mk#14 integrate .. //depot/projects/pci/sys/conf/kern.opts.mk#1 branch .. //depot/projects/pci/sys/conf/kern.post.mk#6 integrate .. //depot/projects/pci/sys/conf/kern.pre.mk#13 integrate .. //depot/projects/pci/sys/conf/kmod.mk#12 integrate .. //depot/projects/pci/sys/conf/ldscript.ia64#5 delete .. //depot/projects/pci/sys/conf/options#22 integrate .. //depot/projects/pci/sys/conf/options.amd64#6 integrate .. //depot/projects/pci/sys/conf/options.arm#11 integrate .. //depot/projects/pci/sys/conf/options.i386#5 integrate .. //depot/projects/pci/sys/conf/options.ia64#4 delete .. //depot/projects/pci/sys/conf/options.mips#10 integrate .. //depot/projects/pci/sys/contrib/altq/altq/if_altq.h#4 integrate .. //depot/projects/pci/sys/contrib/dev/acpica/acpica_prep.sh#7 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c#3 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c#2 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_interrupts.c#2 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_power.c#3 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_recv.c#2 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c#3 integrate .. //depot/projects/pci/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub.c#2 integrate .. //depot/projects/pci/sys/contrib/dev/iwn/iwlwifi-100-39.31.5.1.fw.uu#1 branch .. //depot/projects/pci/sys/contrib/dev/urtwn/urtwn-rtl8188eufw.fw.uu#1 branch .. //depot/projects/pci/sys/contrib/ia64/libuwx/src/Makefile#2 delete .. //depot/projects/pci/sys/contrib/ia64/libuwx/src/uwx.h#2 delete .. //depot/projects/pci/sys/contrib/ia64/libuwx/src/uwx_bstream.c#2 delete >>> TRUNCATED FOR MAIL (1000 lines) <<<