From owner-p4-projects@FreeBSD.ORG Sun Feb 28 10:20:25 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C9A851065674; Sun, 28 Feb 2010 10:20:24 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DE95106566B for ; Sun, 28 Feb 2010 10:20:24 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 613468FC15 for ; Sun, 28 Feb 2010 10:20:24 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1SAKO9P023860 for ; Sun, 28 Feb 2010 10:20:24 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1SAKOlU023858 for perforce@freebsd.org; Sun, 28 Feb 2010 10:20:24 GMT (envelope-from hselasky@FreeBSD.org) Date: Sun, 28 Feb 2010 10:20:24 GMT Message-Id: <201002281020.o1SAKOlU023858@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175194 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Feb 2010 10:20:25 -0000 http://p4web.freebsd.org/chv.cgi?CH=175194 Change 175194 by hselasky@hselasky_laptop001 on 2010/02/28 10:20:08 LibUSB v1.0: - fix header file compliancy with libusb 1.0 from sourceforge. - reported by: Xiaofan Chen Affected files ... .. //depot/projects/usb/src/lib/libusb/libusb.h#14 edit .. //depot/projects/usb/src/lib/libusb/libusb10.c#23 edit .. //depot/projects/usb/src/lib/libusb/libusb10_desc.c#12 edit .. //depot/projects/usb/src/lib/libusb/libusb10_io.c#13 edit Differences ... ==== //depot/projects/usb/src/lib/libusb/libusb.h#14 (text+ko) ==== @@ -185,7 +185,7 @@ struct libusb_context; struct libusb_device; struct libusb_transfer; -struct libusb20_device; +struct libusb_device_handle; struct libusb_pollfd { int fd; @@ -194,7 +194,7 @@ typedef struct libusb_context libusb_context; typedef struct libusb_device libusb_device; -typedef struct libusb20_device libusb_device_handle; +typedef struct libusb_device_handle libusb_device_handle; typedef struct libusb_pollfd libusb_pollfd; typedef void (*libusb_pollfd_added_cb) (int fd, short events, void *user_data); typedef void (*libusb_pollfd_removed_cb) (int fd, void *user_data); ==== //depot/projects/usb/src/lib/libusb/libusb10.c#23 (text+ko) ==== @@ -37,6 +37,8 @@ #include #include +#define libusb_device_handle libusb20_device + #include "libusb20.h" #include "libusb20_desc.h" #include "libusb20_int.h" ==== //depot/projects/usb/src/lib/libusb/libusb10_desc.c#12 (text+ko) ==== @@ -29,6 +29,8 @@ #include #include +#define libusb_device_handle libusb20_device + #include "libusb20.h" #include "libusb20_desc.h" #include "libusb20_int.h" ==== //depot/projects/usb/src/lib/libusb/libusb10_io.c#13 (text+ko) ==== @@ -34,6 +34,8 @@ #include #include +#define libusb_device_handle libusb20_device + #include "libusb20.h" #include "libusb20_desc.h" #include "libusb20_int.h" From owner-p4-projects@FreeBSD.ORG Sun Feb 28 10:52:58 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DDDC61065672; Sun, 28 Feb 2010 10:52:57 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1AC8106566B for ; Sun, 28 Feb 2010 10:52:57 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 581768FC08 for ; Sun, 28 Feb 2010 10:52:57 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1SAqvuK026152 for ; Sun, 28 Feb 2010 10:52:57 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1SAqvI6026150 for perforce@freebsd.org; Sun, 28 Feb 2010 10:52:57 GMT (envelope-from rene@FreeBSD.org) Date: Sun, 28 Feb 2010 10:52:57 GMT Message-Id: <201002281052.o1SAqvI6026150@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175196 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Feb 2010 10:52:58 -0000 http://p4web.freebsd.org/chv.cgi?CH=175196 Change 175196 by rene@rene_self on 2010/02/28 10:52:29 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/Makefile#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/article.sgml#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#50 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml#38 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml#7 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.develinmemoriam.sgml#1 branch .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.ent#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/portbuild/article.sgml#21 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/version-guide/article.sgml#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml#4 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/security/chapter.sgml#13 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#73 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/captions/2009/asiabsdcon/losh-mips.sbv#1 branch .. //depot/projects/docproj_nl/en_US.ISO8859-1/captions/2009/asiabsdcon/rao-kernellocking-2.sbv#2 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/captions/2009/dcbsdcon/dixon-bsdisstilldying.sbv#2 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#31 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml#43 integrate .. //depot/projects/docproj_nl/share/sgml/mirrors.xml#11 integrate .. //depot/projects/docproj_nl/www/en/art.sgml#2 integrate .. //depot/projects/docproj_nl/www/en/cgi/search.cgi#2 integrate .. //depot/projects/docproj_nl/www/en/donations/donors.sgml#26 integrate .. //depot/projects/docproj_nl/www/en/donations/wantlist.sgml#16 integrate .. //depot/projects/docproj_nl/www/en/releases/7.3R/Makefile#1 branch .. //depot/projects/docproj_nl/www/en/releases/7.3R/docbook.css#1 branch .. //depot/projects/docproj_nl/www/en/releases/7.3R/schedule.sgml#1 branch .. //depot/projects/docproj_nl/www/en/releases/Makefile#5 integrate .. //depot/projects/docproj_nl/www/en/releng/index.sgml#32 integrate .. //depot/projects/docproj_nl/www/en/where.sgml#7 integrate .. //depot/projects/docproj_nl/www/share/sgml/commercial.consult.xml#18 integrate .. //depot/projects/docproj_nl/www/share/sgml/commercial.isp.xml#16 integrate .. //depot/projects/docproj_nl/www/share/sgml/events.xml#26 integrate .. //depot/projects/docproj_nl/www/share/sgml/news.xml#68 integrate .. //depot/projects/docproj_nl/www/share/sgml/notices.xml#6 integrate .. //depot/projects/docproj_nl/www/share/sgml/release.ent#21 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/Makefile#3 (text+ko) ==== @@ -1,5 +1,5 @@ # -# $FreeBSD: doc/en_US.ISO8859-1/articles/contributors/Makefile,v 1.11 2008/08/16 22:21:38 pgj Exp $ +# $FreeBSD: doc/en_US.ISO8859-1/articles/contributors/Makefile,v 1.12 2010/02/20 18:38:46 linimon Exp $ # # Article: Contributors to FreeBSD @@ -18,6 +18,7 @@ SRCS+= contrib.committers.sgml SRCS+= contrib.corealumni.sgml SRCS+= contrib.develalumni.sgml +SRCS+= contrib.develinmemoriam.sgml URL_RELPREFIX?= ../../../.. DOC_PREFIX?= ${.CURDIR}/../../.. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/article.sgml#3 (text+ko) ==== @@ -10,7 +10,7 @@ Contributors to FreeBSD - $FreeBSD: doc/en_US.ISO8859-1/articles/contributors/article.sgml,v 1.449 2008/08/16 22:21:38 pgj Exp $ + $FreeBSD: doc/en_US.ISO8859-1/articles/contributors/article.sgml,v 1.451 2010/02/20 19:10:50 linimon Exp $ &tm-attrib.freebsd; @@ -28,6 +28,13 @@ Donors Gallery + + As of 2010, the following section is several years out-of-date. + Donations from the past several years appear + here. + + + The FreeBSD Project is indebted to the following donors and would like to publicly thank them here! @@ -356,6 +363,20 @@ &contrib.develalumni; + + Development Team: In Memoriam + + development team + During the many years that the FreeBSD Project has been in + existence, sadly, some of our developers have passed away. + Here are some remembrances. + + In rough reverse chronological order of their + passing: + + &contrib.develinmemoriam; + + Derived Software Contributors ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#50 (text+ko) ==== @@ -1,4 +1,4 @@ - + + + @@ -220,12 +220,6 @@ - &a.cg; (1999 - - 2005) - - - - &a.sada; (1998 - 2005) @@ -326,12 +320,6 @@ - &a.alane; (2002 - - 2003) - - - - &a.amurai; (1995 - 2003) @@ -638,10 +626,6 @@ - &a.itojun; (1997 - 2001) - - - &a.chuckr; (1996 - 2000) ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.ent#3 (text+ko) ==== @@ -1,7 +1,8 @@ - + + ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/portbuild/article.sgml#21 (text+ko) ==== @@ -11,7 +11,7 @@ The &os; Ports Management Team - $FreeBSD: doc/en_US.ISO8859-1/articles/portbuild/article.sgml,v 1.51 2010/01/26 03:24:58 linimon Exp $ + $FreeBSD: doc/en_US.ISO8859-1/articles/portbuild/article.sgml,v 1.54 2010/02/19 16:12:58 linimon Exp $ 2003 @@ -204,6 +204,19 @@ (8-exp branch) + + + dopackages.9 - Perform + a 9.X build + + + + + dopackages.9-exp - Perform + a 9.X build with experimental patches + (9-exp branch) + + These are wrappers around dopackages, @@ -1005,7 +1018,8 @@ Experimental patches builds are run from time to time to new features or bugfixes to the ports infrastructure (i.e. bsd.port.mk), or to test large sweeping - upgrades. The current experimental patches branch is + upgrades. At any given time there may be several simultaneous + experimental patches branches, such as 8-exp on the amd64 architecture. @@ -1971,6 +1985,10 @@ + mkdir lockfiles + + + ln ../make.conf ./make.conf @@ -1979,8 +1997,12 @@ - (Apparently no longer needed?) Create - pnohang.arch. + Create + pnohang.arch. + (The easiest way may be to do the following on a client, and + then copy it back): + cc pnohang.c -o pnohang-arch + @@ -2030,9 +2052,23 @@ - In the /var/portbuild/errorlogs/ - directory, create one more link for the webserver: -ln -s ../arch/archive/buildlogs arch-buildlogs + As with the procedure for creating a new branch: + in the /var/portbuild/errorlogs/ + directory, create links for the webserver: +ln -s ../arch/branch/builds/latest/bak/errors arch-branch-full +ln -s ../arch/branch/builds/latest/bak/logs arch-branch-full-logs +ln -s ../arch/branch/builds/latest/errors arch-branch-latest +ln -s ../arch/branch/builds/latest/logs arch-branch-latest-logs +ln -s ../arch/branch/builds/latest/bak/packages arch-branch-packages-full +ln -s ../arch/branch/builds/latest/packages arch-branch-packages-latest + + + + + In that + directory, create two more links for the webserver: +ln -s ../arch/archive/buildlogs arch-buildlogs +ln -s ../arch/archive/errorlogs arch-errorlogs ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/version-guide/article.sgml#3 (text+ko) ==== @@ -21,7 +21,7 @@ - $FreeBSD: doc/en_US.ISO8859-1/articles/version-guide/article.sgml,v 1.13 2008/06/20 20:46:25 gabor Exp $ + $FreeBSD: doc/en_US.ISO8859-1/articles/version-guide/article.sgml,v 1.15 2010/02/19 21:33:18 jhb Exp $ &tm-attrib.freebsd; @@ -258,13 +258,9 @@ more bugs by doing so is much less. Also, by focusing on a time deadline rather than a - feature set, it should be finally be possible for users, developers + feature set, it should finally be possible for users, developers of external applications, and the &os; developers themselves to be able to better plan for the future. - - These considerations, rather than any kind of keeping up with - the major release number of any other OS, comprise the main motivation for - the scheduling changes going forward. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml#4 (text+ko) ==== @@ -15,7 +15,7 @@ author to assign us the copyright. For now, it is valuable content so it should stay. - $FreeBSD: doc/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml,v 1.17 2009/07/13 07:37:11 blackend Exp $ + $FreeBSD: doc/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml,v 1.18 2010/02/17 18:20:32 jhb Exp $ --> @@ -249,7 +249,7 @@ linked, you need to brand the executable: -&prompt.user; brandelf -f Linux filename +&prompt.user; brandelf -t Linux filename ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/security/chapter.sgml#13 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -330,7 +330,7 @@ You can do this by editing your /etc/ssh/sshd_config file, and making sure that PermitRootLogin is set to - NO. Consider every access method — + no. Consider every access method — services such as FTP often fall through the cracks. Direct root logins should only be allowed via the system console. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#73 (text+ko) ==== @@ -1,7 +1,7 @@ sigpause(3). + 800503 + February 25, 2010 + 8.0-STABLE after addition of SIOCGIFDESCR + and SIOCSIFDESCR ioctls to network interfaces. These + ioctl can be used to manipulate interface description, + as inspired by OpenBSD. + + 900000 August 22, 2009 9.0-CURRENT. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/captions/2009/asiabsdcon/rao-kernellocking-2.sbv#2 (text+ko) ==== @@ -1,8 +1,8 @@ 0:00:00.530,0:00:01.590 -So, basically, +So basically, 0:00:04.590,0:00:10.029 -we are going to look mainly in this second part +we are going to look, mainly in this second part, at how to 0:00:10.029,0:00:11.519 @@ -15,32 +15,32 @@ that categorize in the kernel. 0:00:17.910,0:00:24.410 -Here there are described two kinds of problems -you can get with locks, that are pretty much common +Here, there are described two kinds of problems +you can get with locks, that are pretty much common. 0:00:24.410,0:00:27.859 -The first one is called Lock Order Reversal +The first one is called Lock Order Reversal (LOR). 0:00:27.859,0:00:30.140 -when you have for example a thread A +When you have for example a thread A, 0:00:30.140,0:00:32.340 which owns 0:00:32.340,0:00:35.870 -a lock code, for example, L1 +a lock code, for example L1 0:00:35.870,0:00:37.920 and another thread B 0:00:37.920,0:00:40.070 -which owns another lock, L2 +which owns the lock, L2 0:00:40.070,0:00:43.150 -Then thread A tries to +Then thread A tries to.. 0:00:43.150,0:00:44.730 -Right, it's wrong. +Right.. it's wrong. 0:00:44.730,0:00:46.220 The slide is wrong. @@ -96,7 +96,7 @@ locks should maintain 0:01:32.910,0:01:34.319 -an ordering regard of each other. +an ordering in regard of each other. 0:01:34.319,0:01:38.859 That's not very simple when @@ -110,25 +110,26 @@ 0:01:44.850,0:01:49.180 is going to count because you can -never mix two different kinds of locks +never mix two different kinds of locks. 0:01:49.180,0:01:50.680 -for example +For example 0:01:50.680,0:01:51.610 -a spin lock +a spinlock 0:01:51.610,0:01:53.770 -and a mutex. +and a mutex 0:01:53.770,0:01:59.120 -You can mix in this way. +can be mixed in this way. 0:01:59.120,0:02:01.720 - +You can have the mutex first and the spinlock later, +while the opposite is not actually true. 0:02:01.720,0:02:07.060 -So, you will see that this kind +So, you will see that these kind of deadlocks are possible 0:02:07.060,0:02:09.290 @@ -141,26 +142,26 @@ or such. 0:02:14.569,0:02:16.090 -Um... + 0:02:16.090,0:02:17.409 -Also +Also, 0:02:17.409,0:02:19.949 -Even if it's not very well documented, +even if it's not very well documented, 0:02:19.949,0:02:22.880 -for example, spin locks, +for example spinlocks 0:02:22.880,0:02:26.599 -in previous deep, as a way to +in FreeBSD, have a way to identify such kind of deadlocks. 0:02:26.599,0:02:27.619 -And it's pretty much implemented... +And it's pretty much implemented. 0:02:27.619,0:02:29.709 -a very much in it would + 0:02:29.709,0:02:32.449 It's a feature enabled in the code. @@ -178,7 +179,7 @@ an exaggerated result, 0:02:41.379,0:02:47.870 -it means that they are probable +it means that they are probably under a deadlock and the system panics. 0:02:47.870,0:02:52.489 @@ -224,7 +225,7 @@ sleeping on this wait channel 0:03:30.569,0:03:34.589 -and nobody is going to wake up them again. +and nobody is going to wake them up again. 0:03:34.589,0:03:37.629 This is usually called missed wakeup @@ -240,10 +241,10 @@ 0:03:46.719,0:03:52.109 it's very difficult to differentiate -between missed wakeup and, +between missed wakeup and 0:03:52.109,0:03:53.480 -for example, +for example 0:03:53.480,0:03:56.189 forever sleep @@ -256,7 +257,7 @@ 0:04:01.859,0:04:07.109 So these kind of deadlocks are -very difficult to be discovered +very very difficult to be discovered 0:04:07.109,0:04:11.669 and will require some bit of @@ -278,7 +279,7 @@ and some things integrated into the debugger. 0:04:22.240,0:04:22.979 -Um, + 0:04:22.979,0:04:25.520 In FreeBSD, @@ -292,7 +293,7 @@ 0:04:32.080,0:04:36.539 The first one (and the most important) -is called witness. +is called WITNESS. 0:04:36.539,0:04:39.169 It was introduced @@ -301,7 +302,7 @@ in the context of SMPng 0:04:42.080,0:04:44.979 -and has been written in the recent past, +and has been rewritten in the recent past, 0:04:44.979,0:04:47.919 mainly by a contribution of @@ -313,7 +314,7 @@ They contributed back then 0:04:52.270,0:04:54.989 -to the writing of witness. +to the writing of WITNESS. 0:04:54.989,0:04:57.389 This subsystem is very important @@ -322,7 +323,7 @@ because it tracks down exactly every order 0:05:02.730,0:05:03.949 -of the locks +of the locks. 0:05:03.949,0:05:07.810 So that, if there is an ordering violation like a LOR, @@ -356,7 +357,7 @@ we can identify 0:05:36.539,0:05:38.419 -deadlocks possible +deadlocks, possibly 0:05:38.419,0:05:39.500 even @@ -368,7 +369,7 @@ reader's path. 0:05:45.529,0:05:49.609 -We could say that witness is pretty big, +We could say that WITNESS is pretty big, 0:05:49.609,0:05:52.289 so activating it @@ -381,10 +382,10 @@ develop a new feature in the kernel 0:05:59.929,0:06:02.110 -and you are going to test it heavily, +and you are going to test it heavily. 0:06:02.110,0:06:05.479 -in particular if it has +In particular if it has 0:06:05.479,0:06:06.819 some @@ -393,7 +394,7 @@ relation to locking. 0:06:10.509,0:06:13.089 -Uh, + 0:06:13.089,0:06:17.840 We could also tell that with the new code @@ -403,10 +404,10 @@ basically 0:06:19.150,0:06:21.689 -the orad + 0:06:21.689,0:06:25.479 -offered by witness is greatly reduced to about +offered by WITNESS is greatly reduced to about 0:06:25.479,0:06:27.699 the 10th part of @@ -415,7 +416,7 @@ what we had before. 0:06:30.240,0:06:36.150 -Witness is very good at tracking LOR, +WITNESS is very good at tracking LOR, 0:06:36.150,0:06:37.849 but @@ -448,7 +449,7 @@ basically 0:06:58.879,0:07:04.159 -and basically, it's in the 8th release, +it's in the 8th release, we have new features 0:07:04.159,0:07:05.759 @@ -467,18 +468,18 @@ and 0:07:17.549,0:07:23.550 -and shows some graphs of the relations. -Even from the user space, +it shows some graphs of the relations +even from the user space. 0:07:23.550,0:07:28.550 -you don't have to go into the kernel -degubber to look at it's output. +You don't have to go into the kernel +debugger to look at it's output. 0:07:28.550,0:07:35.550 -Well + 0:07:35.620,0:07:37.380 -... + 0:07:37.380,0:07:42.250 Well, I see that sometimes when @@ -507,36 +508,36 @@ is in the kernel. 0:07:59.590,0:08:02.490 -... + 0:08:02.490,0:08:03.389 Usually, 0:08:03.389,0:08:07.939 if you want to find a deadlock -that's happening in the kernel +that's happening in the kernel, 0:08:07.939,0:08:10.909 -your first line of analysis start from the DDB +your first line of analysis starts from the DDB 0:08:10.909,0:08:13.919 instead of a post-mortem analysis, 0:08:13.919,0:08:16.839 -which is even more important, +which is even more important. 0:08:16.839,0:08:22.330 -but using DDB you will get more +But, using DDB you will get more processes and better information. 0:08:22.330,0:08:24.970 -Uh, + 0:08:24.970,0:08:28.499 The most important unit in order to find the deadlock 0:08:28.499,0:08:34.389 -are the LORs reported by witness in order +are the LORs reported by WITNESS in order to see if there is something strange 0:08:34.389,0:08:36.690 @@ -547,10 +548,10 @@ that are running on the system that is deadlocking. 0:08:41.700,0:08:42.900 -... + 0:08:42.900,0:08:47.050 -You can see that you're deadlocking if you see that +You can see that you're deadlocking, if you see that 0:08:47.050,0:08:48.070 on the runqueue @@ -570,21 +571,21 @@ in their own containers. 0:09:02.450,0:09:07.850 -You need to know which are exactly locks +You need to know which are the exact locks that are acquired 0:09:07.850,0:09:11.270 in the system 0:09:11.270,0:09:15.570 -and that's something that witness provides, +and that's something that WITNESS provides 0:09:15.570,0:09:20.720 -and the very important things is +and the very important thing is to know why the threads are stopping. 0:09:20.720,0:09:24.250 -So one on the most important things is +So one of the most important things is retrieving what the threads were doing 0:09:24.250,0:09:26.320 @@ -594,13 +595,13 @@ they were put asleep. 0:09:28.960,0:09:30.070 -... + 0:09:30.070,0:09:33.009 The backtraces of all the threads involved 0:09:33.009,0:09:37.130 -are so printed out in order to identify deadlocks. +are printed out in order to identify deadlocks. 0:09:37.130,0:09:38.589 In the case that @@ -609,13 +610,13 @@ buffered cache and VFS are 0:09:42.830,0:09:45.910 -probably parts of the deadlocking +probably parts of the deadlocking, 0:09:45.910,0:09:50.790 you should also print out 0:09:50.790,0:09:53.420 -the info about vnodes +the information about vnodes 0:09:53.420,0:09:58.250 and what we're interested in is which vnodes are called, @@ -630,10 +631,10 @@ and 0:10:03.530,0:10:10.530 -which way they were called. +in which way they were called. 0:10:11.030,0:10:13.380 -So +So, 0:10:13.380,0:10:15.770 this is an example @@ -648,7 +649,7 @@ in the case of a deadlock. 0:10:20.760,0:10:27.480 -This is an example of a real deadlock +This is an real example of a deadlock 0:10:27.480,0:10:28.900 but you can see @@ -663,10 +664,10 @@ But you can see that all the threads are sleeping. 0:10:38.450,0:10:39.870 -Uh... + 0:10:39.870,0:10:43.580 -And this one is the message +This one is the message 0:10:43.580,0:10:44.790 used by the wait channel @@ -678,7 +679,7 @@ or used by 0:10:48.710,0:10:54.480 -the container like the turnsile or the sleep queue. +the container like the turnstile or the sleepqueue. 0:10:54.480,0:10:59.410 If I recall correctly, it's a forced amount @@ -688,7 +689,7 @@ I'm not really sure 0:11:01.290,0:11:04.190 -because I have to take a look at it. +because I should have looked at it. 0:11:04.190,0:11:08.810 You can see that the revelant command here @@ -698,7 +699,7 @@ that DDB supports. 0:11:11.220,0:11:14.220 -Um, + 0:11:14.220,0:11:17.520 Another important thing @@ -716,43 +717,39 @@ usually 0:11:25.210,0:11:31.600 -is because you can add some data structures corrupted +its because you can add some data structures corrupted 0:11:31.600,0:11:34.320 in the per-CPU datas. 0:11:34.320,0:11:38.830 -That's a very common situation when you get deadlocks, +That's a very common situation where you can get deadlocks, 0:11:38.830,0:11:40.280 -because, for example, +because, for example, 0:11:40.280,0:11:43.149 leaving a corrupted LPD will lead -0:11:43.149,0:11:48.750 -I loved you too much review shellacking double -falls and things like that about that - 0:11:48.750,0:11:55.290 to you having a bigger massive breakage like -double-faults. In general. it's a good idea to -look at all the CPUs involved in the system. +double-faults and things like that. Usually it's always a +good idea to look at all the CPUs involved in the system. 0:11:55.290,0:11:57.310 The command 0:11:57.310,0:12:00.120 -is ""show allpcpu"" +is """"-show allpcpu"". 0:12:00.120,0:12:04.960 -Um, + 0:12:04.960,0:12:06.959 This one 0:12:06.959,0:12:12.009 -this one is a witness specific command -show alllocks +is a WITNESS specific command ""-show alllocks"" and it's going to show all the locks, 0:12:12.009,0:12:13.130 @@ -771,7 +768,7 @@ and the thread is this one, 0:12:21.270,0:12:23.660 -what lock is holding, +what the lock is holding, 0:12:23.660,0:12:24.970 that's the address @@ -783,7 +780,7 @@ It gives you lines and file. 0:12:31.140,0:12:32.770 -... + 0:12:32.770,0:12:34.730 Actually, @@ -792,7 +789,7 @@ that's just possible 0:12:37.620,0:12:40.859 -with witness, because otherwise, +with WITNESS, because otherwise, 0:12:40.859,0:12:44.410 trying to keep the oldest information @@ -806,13 +803,13 @@ the backtrace for any thread. 0:12:59.730,0:13:01.150 -... + 0:13:01.150,0:13:03.390 It's going to show the backtrace 0:13:03.390,0:13:05.700 >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Sun Feb 28 11:17:22 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6D3B21065672; Sun, 28 Feb 2010 11:17:22 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31D0A106566B for ; Sun, 28 Feb 2010 11:17:22 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1FBBA8FC16 for ; Sun, 28 Feb 2010 11:17:22 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1SBHLSh028860 for ; Sun, 28 Feb 2010 11:17:21 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1SBHLZ8028858 for perforce@freebsd.org; Sun, 28 Feb 2010 11:17:21 GMT (envelope-from rene@FreeBSD.org) Date: Sun, 28 Feb 2010 11:17:21 GMT Message-Id: <201002281117.o1SBHLZ8028858@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175197 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Feb 2010 11:17:22 -0000 http://p4web.freebsd.org/chv.cgi?CH=175197 Change 175197 by rene@rene_self on 2010/02/28 11:17:00 MFen 1.335 -> 1.336 Affected files ... .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml#14 edit Differences ... ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml#14 (text+ko) ==== @@ -4,7 +4,7 @@ $FreeBSD: doc/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml,v 1.18 2010/01/15 18:36:22 rene Exp $ %SOURCE% en_US.ISO8859-1/books/handbook/security/chapter.sgml - %SRCID% 1.335 + %SRCID% 1.336 --> @@ -378,7 +378,7 @@ root uitgeschakeld staat. Dit kan door het bestand /etc/ssh/sshd_config te bewerken en ervoor te zorgen dat - PermitRootLogin op NO + PermitRootLogin op no staat. Dit moet gebeuren voor iedere methode van toegang – diensten zoals FTP worden vaak over het hoofd gezien. Het direct aanmelden van root hoort alleen From owner-p4-projects@FreeBSD.ORG Sun Feb 28 12:21:27 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5078A1065673; Sun, 28 Feb 2010 12:21:27 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0D30106566B for ; Sun, 28 Feb 2010 12:21:26 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DEB718FC13 for ; Sun, 28 Feb 2010 12:21:26 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1SCLQqs034613 for ; Sun, 28 Feb 2010 12:21:26 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1SCLQJw034611 for perforce@freebsd.org; Sun, 28 Feb 2010 12:21:26 GMT (envelope-from rene@FreeBSD.org) Date: Sun, 28 Feb 2010 12:21:26 GMT Message-Id: <201002281221.o1SCLQJw034611@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175204 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Feb 2010 12:21:27 -0000 http://p4web.freebsd.org/chv.cgi?CH=175204 Change 175204 by rene@rene_self on 2010/02/28 12:20:40 MFen www/nl: * art 1.9 -> 1.10 * where 1.103 -> 1.104 Affected files ... .. //depot/projects/docproj_nl/www/nl/art.sgml#7 edit .. //depot/projects/docproj_nl/www/nl/where.sgml#17 edit Differences ... ==== //depot/projects/docproj_nl/www/nl/art.sgml#7 (text+ko) ==== @@ -7,7 +7,7 @@ &header; @@ -114,7 +114,7 @@ is toestemming nodig van Brian Tao (maker van het power logo) en Marshall Kirk McKusick - (houder van het handelsmerk voor de afbeelding van de BSD + (houder van het copyright voor de afbeelding van de BSD Daemon).

&a.phk;'s afbeelding van de BSD Daemon is uitgebracht onder THE @@ -122,6 +122,15 @@ href="http://www.freebsd.org/cgi/cvsweb.cgi/~checkout~/src/share/examples/BSD_daemon/README?content-type=text/plain">README voor meer informatie.

+

Handelsmerken

+ +

De &os; Foundation houdt + verschillende handelsmerken gerelateerd aan &os; (waaronder het + handelsmerk voor de term &os; zelf). Lees voor meer informatie + over deze handelsmerken de + &os; + Trademark Usage Terms and Conditions.

+ &footer; ==== //depot/projects/docproj_nl/www/nl/where.sgml#17 (text+ko) ==== @@ -6,7 +6,7 @@ ]> &header; @@ -176,20 +176,17 @@ Versie & platform Distributie ISO - Schema - + Statuspagina &os; &betarel.current;-&betarel.vers; - [Bekijk] + [Bekijk] @@ -203,24 +200,28 @@ [Distributie] [ISO] + pc98 [Distributie] [ISO] + sparc64 From owner-p4-projects@FreeBSD.ORG Sun Feb 28 22:52:05 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 34D5A1065672; Sun, 28 Feb 2010 22:52:05 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC3CB106564A for ; Sun, 28 Feb 2010 22:52:04 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D7AB48FC08 for ; Sun, 28 Feb 2010 22:52:04 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1SMq47Q025839 for ; Sun, 28 Feb 2010 22:52:04 GMT (envelope-from raj@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1SMq3nV025837 for perforce@freebsd.org; Sun, 28 Feb 2010 22:52:03 GMT (envelope-from raj@freebsd.org) Date: Sun, 28 Feb 2010 22:52:03 GMT Message-Id: <201002282252.o1SMq3nV025837@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to raj@freebsd.org using -f From: Rafal Jaworowski To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175232 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Feb 2010 22:52:05 -0000 http://p4web.freebsd.org/chv.cgi?CH=175232 Change 175232 by raj@raj_fdt on 2010/02/28 22:52:03 IFC @175230 Affected files ... .. //depot/projects/fdt/MAINTAINERS#4 integrate .. //depot/projects/fdt/ObsoleteFiles.inc#8 integrate .. //depot/projects/fdt/bin/kill/kill.c#2 integrate .. //depot/projects/fdt/bin/sh/parser.c#5 integrate .. //depot/projects/fdt/cddl/usr.bin/ctfconvert/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.bin/ctfdump/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.bin/ctfmerge/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.bin/zinject/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.sbin/dtrace/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.sbin/lockstat/Makefile#2 integrate .. //depot/projects/fdt/contrib/bc/AUTHORS#2 delete .. //depot/projects/fdt/contrib/bc/ChangeLog#2 delete .. //depot/projects/fdt/contrib/bc/Examples/ckbook.b#2 delete .. //depot/projects/fdt/contrib/bc/Examples/pi.b#2 delete .. //depot/projects/fdt/contrib/bc/Examples/primes.b#2 delete .. //depot/projects/fdt/contrib/bc/Examples/twins.b#2 delete .. //depot/projects/fdt/contrib/bc/FAQ#2 delete .. //depot/projects/fdt/contrib/bc/FREEBSD-upgrade#2 delete .. //depot/projects/fdt/contrib/bc/INSTALL#2 delete .. //depot/projects/fdt/contrib/bc/Makefile.am#2 delete .. //depot/projects/fdt/contrib/bc/Makefile.in#2 delete .. //depot/projects/fdt/contrib/bc/NEWS#2 delete .. //depot/projects/fdt/contrib/bc/README#2 delete .. //depot/projects/fdt/contrib/bc/Test/BUG.bc#2 delete .. //depot/projects/fdt/contrib/bc/Test/array.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/arrayp.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/aryprm.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/atan.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/checklib.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/div.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/exp.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/fact.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/jn.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/ln.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/mul.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/raise.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/signum#2 delete .. //depot/projects/fdt/contrib/bc/Test/sine.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/sqrt.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/sqrt1.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/sqrt2.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/testfn.b#2 delete .. //depot/projects/fdt/contrib/bc/Test/timetest#2 delete .. //depot/projects/fdt/contrib/bc/acconfig.h#2 delete .. //depot/projects/fdt/contrib/bc/aclocal.m4#2 delete .. //depot/projects/fdt/contrib/bc/bc/Makefile.am#2 delete .. //depot/projects/fdt/contrib/bc/bc/Makefile.in#2 delete .. //depot/projects/fdt/contrib/bc/bc/bc.y#2 delete .. //depot/projects/fdt/contrib/bc/bc/bcdefs.h#2 delete .. //depot/projects/fdt/contrib/bc/bc/const.h#2 delete .. //depot/projects/fdt/contrib/bc/bc/execute.c#2 delete .. //depot/projects/fdt/contrib/bc/bc/fix-libmath_h#2 delete .. //depot/projects/fdt/contrib/bc/bc/global.c#2 delete .. //depot/projects/fdt/contrib/bc/bc/global.h#2 delete .. //depot/projects/fdt/contrib/bc/bc/libmath.b#2 delete .. //depot/projects/fdt/contrib/bc/bc/libmath.h#2 delete .. //depot/projects/fdt/contrib/bc/bc/load.c#2 delete .. //depot/projects/fdt/contrib/bc/bc/main.c#2 delete .. //depot/projects/fdt/contrib/bc/bc/proto.h#2 delete .. //depot/projects/fdt/contrib/bc/bc/sbc.y#2 delete .. //depot/projects/fdt/contrib/bc/bc/scan.l#2 delete .. //depot/projects/fdt/contrib/bc/bc/storage.c#2 delete .. //depot/projects/fdt/contrib/bc/bc/util.c#2 delete .. //depot/projects/fdt/contrib/bc/config.h.in#2 delete .. //depot/projects/fdt/contrib/bc/configure#2 delete .. //depot/projects/fdt/contrib/bc/configure.in#2 delete .. //depot/projects/fdt/contrib/bc/dc/Makefile.am#2 delete .. //depot/projects/fdt/contrib/bc/dc/Makefile.in#2 delete .. //depot/projects/fdt/contrib/bc/dc/array.c#2 delete .. //depot/projects/fdt/contrib/bc/dc/dc-proto.h#2 delete .. //depot/projects/fdt/contrib/bc/dc/dc-regdef.h#2 delete .. //depot/projects/fdt/contrib/bc/dc/dc.c#2 delete .. //depot/projects/fdt/contrib/bc/dc/dc.h#2 delete .. //depot/projects/fdt/contrib/bc/dc/eval.c#2 delete .. //depot/projects/fdt/contrib/bc/dc/misc.c#2 delete .. //depot/projects/fdt/contrib/bc/dc/numeric.c#2 delete .. //depot/projects/fdt/contrib/bc/dc/stack.c#2 delete .. //depot/projects/fdt/contrib/bc/dc/string.c#2 delete .. //depot/projects/fdt/contrib/bc/doc/Makefile.am#2 delete .. //depot/projects/fdt/contrib/bc/doc/Makefile.in#2 delete .. //depot/projects/fdt/contrib/bc/doc/bc.1#2 delete .. //depot/projects/fdt/contrib/bc/doc/bc.texi#2 delete .. //depot/projects/fdt/contrib/bc/doc/dc.1#2 delete .. //depot/projects/fdt/contrib/bc/doc/dc.texi#2 delete .. //depot/projects/fdt/contrib/bc/h/number.h#2 delete .. //depot/projects/fdt/contrib/bc/install-sh#2 delete .. //depot/projects/fdt/contrib/bc/lib/Makefile.am#2 delete .. //depot/projects/fdt/contrib/bc/lib/Makefile.in#2 delete .. //depot/projects/fdt/contrib/bc/lib/number.c#2 delete .. //depot/projects/fdt/contrib/bc/lib/testmul.c#2 delete .. //depot/projects/fdt/contrib/bc/lib/vfprintf.c#2 delete .. //depot/projects/fdt/contrib/bc/missing#2 delete .. //depot/projects/fdt/contrib/bc/mkinstalldirs#2 delete .. //depot/projects/fdt/contrib/bc/stamp-h.in#2 delete .. //depot/projects/fdt/contrib/gdb/gdb/config/mips/nm-fbsd.h#1 branch .. //depot/projects/fdt/contrib/gdb/gdb/config/mips/tm-fbsd.h#1 branch .. //depot/projects/fdt/contrib/gdb/gdb/mips-tdep.h#2 integrate .. //depot/projects/fdt/contrib/gdb/gdb/mipsfbsd-nat.c#1 branch .. //depot/projects/fdt/contrib/gdb/gdb/mipsfbsd-tdep.c#1 branch .. //depot/projects/fdt/contrib/gdb/gdb/mipsfbsd-tdep.h#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/asctime.c#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/ctime.3#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/difftime.c#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/localtime.c#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/private.h#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/time2posix.3#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/tzfile.5#1 branch .. //depot/projects/fdt/contrib/tzcode/stdtime/tzfile.h#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/README#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/Theory#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/ialloc.c#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/private.h#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/scheck.c#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/zdump.8#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/zdump.c#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/zdump/Makefile#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/zic.8#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/zic.c#1 branch .. //depot/projects/fdt/contrib/tzcode/zic/zic/Makefile#1 branch .. //depot/projects/fdt/contrib/tzdata/africa#1 branch .. //depot/projects/fdt/contrib/tzdata/antarctica#1 branch .. //depot/projects/fdt/contrib/tzdata/asia#1 branch .. //depot/projects/fdt/contrib/tzdata/australasia#1 branch .. //depot/projects/fdt/contrib/tzdata/backward#1 branch .. //depot/projects/fdt/contrib/tzdata/etcetera#1 branch .. //depot/projects/fdt/contrib/tzdata/europe#1 branch .. //depot/projects/fdt/contrib/tzdata/factory#1 branch .. //depot/projects/fdt/contrib/tzdata/leapseconds#1 branch .. //depot/projects/fdt/contrib/tzdata/northamerica#1 branch .. //depot/projects/fdt/contrib/tzdata/pacificnew#1 branch .. //depot/projects/fdt/contrib/tzdata/southamerica#1 branch .. //depot/projects/fdt/contrib/tzdata/systemv#1 branch .. //depot/projects/fdt/contrib/tzdata/yearistype.sh#1 branch .. //depot/projects/fdt/contrib/tzdata/zone.tab#1 branch .. //depot/projects/fdt/etc/defaults/rc.conf#7 integrate .. //depot/projects/fdt/etc/mtree/BSD.usr.dist#5 integrate .. //depot/projects/fdt/etc/rc.d/Makefile#4 integrate .. //depot/projects/fdt/etc/rc.d/hastd#1 branch .. //depot/projects/fdt/etc/rc.d/rtsold#2 integrate .. //depot/projects/fdt/games/fortune/datfiles/fortunes#5 integrate .. //depot/projects/fdt/games/fortune/fortune/fortune.c#3 integrate .. //depot/projects/fdt/gnu/usr.bin/Makefile#4 integrate .. //depot/projects/fdt/gnu/usr.bin/bc/Makefile#2 delete .. //depot/projects/fdt/gnu/usr.bin/bc/config.h#2 delete .. //depot/projects/fdt/gnu/usr.bin/dc/Makefile#2 delete .. //depot/projects/fdt/gnu/usr.bin/dc/doc/Makefile#2 delete .. //depot/projects/fdt/gnu/usr.bin/diff/Makefile#2 integrate .. //depot/projects/fdt/gnu/usr.bin/diff3/Makefile#2 integrate .. //depot/projects/fdt/gnu/usr.bin/gdb/Makefile#2 integrate .. //depot/projects/fdt/gnu/usr.bin/gdb/arch/mips/Makefile#2 integrate .. //depot/projects/fdt/gnu/usr.bin/gdb/arch/mips/init.c#2 integrate .. //depot/projects/fdt/gnu/usr.bin/gdb/gdbserver/Makefile#2 integrate .. //depot/projects/fdt/gnu/usr.bin/gdb/gdbserver/fbsd-amd64-low.c#1 branch .. //depot/projects/fdt/gnu/usr.bin/gdb/gdbserver/reg-x86-64.c#1 branch .. //depot/projects/fdt/gnu/usr.bin/gdb/kgdb/trgt_mips.c#2 integrate .. //depot/projects/fdt/gnu/usr.bin/sdiff/Makefile#2 integrate .. //depot/projects/fdt/lib/libarchive/archive_write_disk.3#3 integrate .. //depot/projects/fdt/lib/libc/gen/pause.c#3 integrate .. //depot/projects/fdt/lib/libc/gen/sysconf.c#2 integrate .. //depot/projects/fdt/lib/libc/gen/sysctl.3#2 integrate .. //depot/projects/fdt/lib/libc/gen/sysctl.c#2 integrate .. //depot/projects/fdt/lib/libc/gen/sysctlbyname.c#2 integrate .. //depot/projects/fdt/lib/libc/gen/sysctlnametomib.c#2 integrate .. //depot/projects/fdt/lib/libc/nls/msgcat.c#5 integrate .. //depot/projects/fdt/lib/libc/stdio/mktemp.c#2 integrate .. //depot/projects/fdt/lib/libc/stdtime/Makefile.inc#2 integrate .. //depot/projects/fdt/lib/libc/stdtime/asctime.c#2 delete .. //depot/projects/fdt/lib/libc/stdtime/ctime.3#2 delete .. //depot/projects/fdt/lib/libc/stdtime/difftime.c#2 delete .. //depot/projects/fdt/lib/libc/stdtime/localtime.c#4 delete .. //depot/projects/fdt/lib/libc/stdtime/private.h#2 delete .. //depot/projects/fdt/lib/libc/stdtime/time2posix.3#2 delete .. //depot/projects/fdt/lib/libc/stdtime/tzfile.5#3 delete .. //depot/projects/fdt/lib/libc/stdtime/tzfile.h#2 delete .. //depot/projects/fdt/lib/libdwarf/Makefile#3 integrate .. //depot/projects/fdt/lib/libkvm/kvm_vnet.c#2 integrate .. //depot/projects/fdt/lib/libproc/Makefile#3 integrate .. //depot/projects/fdt/lib/librt/Makefile#4 integrate .. //depot/projects/fdt/libexec/rpc.rstatd/Makefile#3 integrate .. //depot/projects/fdt/libexec/rtld-elf/powerpc/reloc.c#2 integrate .. //depot/projects/fdt/libexec/rtld-elf/powerpc/rtld_machdep.h#2 integrate .. //depot/projects/fdt/libexec/rtld-elf/powerpc/rtld_start.S#2 integrate .. //depot/projects/fdt/libexec/ulog-helper/Makefile#3 integrate .. //depot/projects/fdt/release/scripts/make-memstick.sh#1 branch .. //depot/projects/fdt/sbin/Makefile#2 integrate .. //depot/projects/fdt/sbin/atacontrol/atacontrol.c#4 integrate .. //depot/projects/fdt/sbin/camcontrol/camcontrol.c#6 integrate .. //depot/projects/fdt/sbin/devfs/devfs.8#2 integrate .. //depot/projects/fdt/sbin/geom/class/part/Makefile#2 integrate .. //depot/projects/fdt/sbin/ggate/ggatec/ggatec.c#2 integrate .. //depot/projects/fdt/sbin/ggate/ggated/ggated.c#3 integrate .. //depot/projects/fdt/sbin/ggate/ggatel/ggatel.c#2 integrate .. //depot/projects/fdt/sbin/ggate/shared/ggate.c#2 integrate .. //depot/projects/fdt/sbin/hastctl/Makefile#1 branch .. //depot/projects/fdt/sbin/hastctl/hastctl.8#1 branch .. //depot/projects/fdt/sbin/hastctl/hastctl.c#1 branch .. //depot/projects/fdt/sbin/hastd/Makefile#1 branch .. //depot/projects/fdt/sbin/hastd/activemap.c#1 branch .. //depot/projects/fdt/sbin/hastd/activemap.h#1 branch .. //depot/projects/fdt/sbin/hastd/control.c#1 branch .. //depot/projects/fdt/sbin/hastd/control.h#1 branch .. //depot/projects/fdt/sbin/hastd/ebuf.c#1 branch .. //depot/projects/fdt/sbin/hastd/ebuf.h#1 branch .. //depot/projects/fdt/sbin/hastd/hast.conf.5#1 branch .. //depot/projects/fdt/sbin/hastd/hast.h#1 branch .. //depot/projects/fdt/sbin/hastd/hast_proto.c#1 branch .. //depot/projects/fdt/sbin/hastd/hast_proto.h#1 branch .. //depot/projects/fdt/sbin/hastd/hastd.8#1 branch .. //depot/projects/fdt/sbin/hastd/hastd.c#1 branch .. //depot/projects/fdt/sbin/hastd/hastd.h#1 branch .. //depot/projects/fdt/sbin/hastd/hooks.c#1 branch .. //depot/projects/fdt/sbin/hastd/hooks.h#1 branch .. //depot/projects/fdt/sbin/hastd/metadata.c#1 branch .. //depot/projects/fdt/sbin/hastd/metadata.h#1 branch .. //depot/projects/fdt/sbin/hastd/nv.c#1 branch .. //depot/projects/fdt/sbin/hastd/nv.h#1 branch .. //depot/projects/fdt/sbin/hastd/parse.y#1 branch .. //depot/projects/fdt/sbin/hastd/pjdlog.c#1 branch .. //depot/projects/fdt/sbin/hastd/pjdlog.h#1 branch .. //depot/projects/fdt/sbin/hastd/primary.c#1 branch .. //depot/projects/fdt/sbin/hastd/proto.c#1 branch .. //depot/projects/fdt/sbin/hastd/proto.h#1 branch .. //depot/projects/fdt/sbin/hastd/proto_common.c#1 branch .. //depot/projects/fdt/sbin/hastd/proto_impl.h#1 branch .. //depot/projects/fdt/sbin/hastd/proto_socketpair.c#1 branch .. //depot/projects/fdt/sbin/hastd/proto_tcp4.c#1 branch .. //depot/projects/fdt/sbin/hastd/proto_uds.c#1 branch .. //depot/projects/fdt/sbin/hastd/rangelock.c#1 branch .. //depot/projects/fdt/sbin/hastd/rangelock.h#1 branch .. //depot/projects/fdt/sbin/hastd/secondary.c#1 branch .. //depot/projects/fdt/sbin/hastd/subr.c#1 branch .. //depot/projects/fdt/sbin/hastd/subr.h#1 branch .. //depot/projects/fdt/sbin/hastd/synch.h#1 branch .. //depot/projects/fdt/sbin/hastd/token.l#1 branch .. //depot/projects/fdt/sbin/ifconfig/Makefile#3 integrate .. //depot/projects/fdt/sbin/ifconfig/ifconfig.8#5 integrate .. //depot/projects/fdt/sbin/ifconfig/ifconfig.c#6 integrate .. //depot/projects/fdt/sbin/ifconfig/ifvlan.c#2 integrate .. //depot/projects/fdt/sbin/ipfw/Makefile#2 integrate .. //depot/projects/fdt/sbin/mount_hpfs/Makefile#2 integrate .. //depot/projects/fdt/sbin/mount_hpfs/mount_hpfs.c#2 integrate .. //depot/projects/fdt/sbin/mount_ntfs/Makefile#2 integrate .. //depot/projects/fdt/sbin/mount_ntfs/mount_ntfs.c#2 integrate .. //depot/projects/fdt/sbin/restore/restore.h#2 integrate .. //depot/projects/fdt/sbin/route/Makefile#2 integrate .. //depot/projects/fdt/sbin/route/route.c#2 integrate .. //depot/projects/fdt/sbin/routed/Makefile#2 integrate .. //depot/projects/fdt/sbin/routed/if.c#3 integrate .. //depot/projects/fdt/sbin/routed/rtquery/Makefile#2 integrate .. //depot/projects/fdt/sbin/rtsol/Makefile#2 integrate .. //depot/projects/fdt/secure/libexec/sftp-server/Makefile#2 integrate .. //depot/projects/fdt/secure/usr.sbin/sshd/Makefile#2 integrate .. //depot/projects/fdt/share/examples/Makefile#4 integrate .. //depot/projects/fdt/share/examples/hast/ucarp.sh#1 branch .. //depot/projects/fdt/share/examples/hast/ucarp_down.sh#1 branch .. //depot/projects/fdt/share/examples/hast/ucarp_up.sh#1 branch .. //depot/projects/fdt/share/examples/hast/vip-down.sh#1 branch .. //depot/projects/fdt/share/examples/hast/vip-up.sh#1 branch .. //depot/projects/fdt/share/man/man4/Makefile#10 integrate .. //depot/projects/fdt/share/man/man4/bwn.4#2 integrate .. //depot/projects/fdt/share/man/man4/man4.powerpc/Makefile#3 integrate .. //depot/projects/fdt/share/man/man4/man4.powerpc/smu.4#1 branch .. //depot/projects/fdt/share/man/man5/devfs.rules.5#3 integrate .. //depot/projects/fdt/share/man/man5/rc.conf.5#6 integrate .. //depot/projects/fdt/share/man/man9/BUF_ISLOCKED.9#2 integrate .. //depot/projects/fdt/share/man/man9/BUF_RECURSED.9#2 integrate .. //depot/projects/fdt/share/man/man9/DEVICE_PROBE.9#2 integrate .. //depot/projects/fdt/share/man/man9/VOP_LOCK.9#2 integrate .. //depot/projects/fdt/share/man/man9/devfs_set_cdevpriv.9#2 integrate .. //depot/projects/fdt/share/man/man9/ieee80211_scan.9#2 integrate .. //depot/projects/fdt/share/man/man9/namei.9#3 integrate .. //depot/projects/fdt/share/man/man9/netisr.9#2 integrate .. //depot/projects/fdt/share/man/man9/vm_page_alloc.9#2 integrate .. //depot/projects/fdt/share/mk/bsd.libnames.mk#4 integrate .. //depot/projects/fdt/share/zoneinfo/Makefile#3 integrate .. //depot/projects/fdt/share/zoneinfo/africa#2 delete .. //depot/projects/fdt/share/zoneinfo/antarctica#4 delete .. //depot/projects/fdt/share/zoneinfo/asia#5 delete .. //depot/projects/fdt/share/zoneinfo/australasia#3 delete .. //depot/projects/fdt/share/zoneinfo/backward#2 delete .. //depot/projects/fdt/share/zoneinfo/etcetera#3 delete .. //depot/projects/fdt/share/zoneinfo/europe#4 delete .. //depot/projects/fdt/share/zoneinfo/factory#2 delete .. //depot/projects/fdt/share/zoneinfo/leapseconds#2 delete .. //depot/projects/fdt/share/zoneinfo/northamerica#3 delete .. //depot/projects/fdt/share/zoneinfo/pacificnew#2 delete .. //depot/projects/fdt/share/zoneinfo/southamerica#2 delete .. //depot/projects/fdt/share/zoneinfo/systemv#2 delete .. //depot/projects/fdt/share/zoneinfo/yearistype.sh#2 delete .. //depot/projects/fdt/share/zoneinfo/zone.tab#5 delete .. //depot/projects/fdt/sys/amd64/amd64/atpic_vector.S#1 branch .. //depot/projects/fdt/sys/amd64/amd64/busdma_machdep.c#2 integrate .. //depot/projects/fdt/sys/amd64/amd64/exception.S#2 integrate .. //depot/projects/fdt/sys/amd64/amd64/identcpu.c#4 integrate .. //depot/projects/fdt/sys/amd64/amd64/intr_machdep.c#2 integrate .. //depot/projects/fdt/sys/amd64/amd64/machdep.c#4 integrate .. //depot/projects/fdt/sys/amd64/amd64/nexus.c#2 integrate .. //depot/projects/fdt/sys/amd64/amd64/pmap.c#6 integrate .. //depot/projects/fdt/sys/amd64/amd64/vm_machdep.c#4 integrate .. //depot/projects/fdt/sys/amd64/include/sysarch.h#2 integrate .. //depot/projects/fdt/sys/amd64/isa/atpic.c#2 delete .. //depot/projects/fdt/sys/amd64/isa/atpic_vector.S#2 delete .. //depot/projects/fdt/sys/amd64/isa/clock.c#3 delete .. //depot/projects/fdt/sys/amd64/isa/elcr.c#2 delete .. //depot/projects/fdt/sys/amd64/isa/icu.h#2 delete .. //depot/projects/fdt/sys/amd64/isa/isa.c#2 delete .. //depot/projects/fdt/sys/amd64/isa/isa.h#2 delete .. //depot/projects/fdt/sys/amd64/isa/isa_dma.c#3 delete .. //depot/projects/fdt/sys/amd64/isa/nmi.c#2 delete .. //depot/projects/fdt/sys/arm/arm/cpufunc.c#3 integrate .. //depot/projects/fdt/sys/arm/arm/identcpu.c#2 integrate .. //depot/projects/fdt/sys/arm/at91/if_ate.c#3 integrate .. //depot/projects/fdt/sys/arm/conf/BWCT#3 integrate .. //depot/projects/fdt/sys/arm/conf/HL200#3 integrate .. //depot/projects/fdt/sys/arm/conf/KB920X#3 integrate .. //depot/projects/fdt/sys/arm/include/armreg.h#3 integrate .. //depot/projects/fdt/sys/arm/include/md_var.h#2 integrate .. //depot/projects/fdt/sys/arm/mv/mv_machdep.c#9 integrate .. //depot/projects/fdt/sys/arm/xscale/ixp425/cambria_fled.c#3 integrate .. //depot/projects/fdt/sys/boot/forth/loader.conf#4 integrate .. //depot/projects/fdt/sys/boot/powerpc/ofw/Makefile#2 integrate .. //depot/projects/fdt/sys/boot/powerpc/uboot/Makefile#3 integrate .. //depot/projects/fdt/sys/boot/powerpc/uboot/conf.c#2 integrate .. //depot/projects/fdt/sys/boot/sparc64/loader/main.c#4 integrate .. //depot/projects/fdt/sys/boot/uboot/common/main.c#4 integrate .. //depot/projects/fdt/sys/boot/uboot/lib/disk.c#2 integrate .. //depot/projects/fdt/sys/boot/uboot/lib/time.c#2 integrate .. //depot/projects/fdt/sys/boot/zfs/zfs.c#2 integrate .. //depot/projects/fdt/sys/cam/ata/ata_xpt.c#10 integrate .. //depot/projects/fdt/sys/cam/cam_xpt.c#7 integrate .. //depot/projects/fdt/sys/cam/cam_xpt_internal.h#4 integrate .. //depot/projects/fdt/sys/cam/scsi/scsi_xpt.c#4 integrate .. //depot/projects/fdt/sys/cddl/contrib/opensolaris/common/atomic/ia64/opensolaris_atomic.S#2 integrate .. //depot/projects/fdt/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c#2 integrate .. //depot/projects/fdt/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c#3 integrate .. //depot/projects/fdt/sys/compat/linux/linux_stats.c#2 integrate .. //depot/projects/fdt/sys/conf/files#15 integrate .. //depot/projects/fdt/sys/conf/files.amd64#4 integrate .. //depot/projects/fdt/sys/conf/files.i386#4 integrate .. //depot/projects/fdt/sys/conf/files.mips#4 integrate .. //depot/projects/fdt/sys/conf/files.pc98#4 integrate .. //depot/projects/fdt/sys/conf/ldscript.mips.cfe#2 integrate .. //depot/projects/fdt/sys/conf/options.mips#4 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt.c#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt.h#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt_ro.c#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt_rw.c#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt_strerror.c#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt_sw.c#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/fdt_wip.c#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/libfdt.h#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/libfdt_env.h#2 integrate .. //depot/projects/fdt/sys/contrib/libfdt/libfdt_internal.h#2 integrate .. //depot/projects/fdt/sys/dev/aac/aac.c#5 integrate .. //depot/projects/fdt/sys/dev/aac/aac_cam.c#5 integrate .. //depot/projects/fdt/sys/dev/age/if_age.c#2 integrate .. //depot/projects/fdt/sys/dev/alc/if_alc.c#2 integrate .. //depot/projects/fdt/sys/dev/ale/if_ale.c#2 integrate .. //depot/projects/fdt/sys/dev/ata/ata-all.c#8 integrate .. //depot/projects/fdt/sys/dev/ata/ata-pci.c#6 integrate .. //depot/projects/fdt/sys/dev/ata/ata-sata.c#4 integrate .. //depot/projects/fdt/sys/dev/ata/chipsets/ata-intel.c#6 integrate .. //depot/projects/fdt/sys/dev/ath/if_ath.c#6 integrate .. //depot/projects/fdt/sys/dev/bce/if_bce.c#3 integrate .. //depot/projects/fdt/sys/dev/bge/if_bge.c#10 integrate .. //depot/projects/fdt/sys/dev/bwn/if_bwn.c#2 integrate .. //depot/projects/fdt/sys/dev/bwn/if_bwnvar.h#2 integrate .. //depot/projects/fdt/sys/dev/cxgb/common/cxgb_common.h#3 integrate .. //depot/projects/fdt/sys/dev/cxgb/common/cxgb_t3_hw.c#3 integrate .. //depot/projects/fdt/sys/dev/cxgb/common/cxgb_version.h#2 delete .. //depot/projects/fdt/sys/dev/cxgb/cxgb_adapter.h#3 integrate .. //depot/projects/fdt/sys/dev/cxgb/cxgb_config.h#2 delete .. //depot/projects/fdt/sys/dev/cxgb/cxgb_main.c#5 integrate .. //depot/projects/fdt/sys/dev/cxgb/cxgb_offload.h#2 integrate .. //depot/projects/fdt/sys/dev/cxgb/cxgb_osdep.h#2 integrate .. //depot/projects/fdt/sys/dev/cxgb/cxgb_sge.c#5 integrate .. //depot/projects/fdt/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c#2 integrate .. //depot/projects/fdt/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c#2 integrate .. //depot/projects/fdt/sys/dev/cxgb/ulp/tom/cxgb_cpl_socket.c#2 integrate .. //depot/projects/fdt/sys/dev/fb/fb.c#3 integrate .. //depot/projects/fdt/sys/dev/fb/vesa.c#7 integrate .. //depot/projects/fdt/sys/dev/gem/if_gem.c#2 integrate .. //depot/projects/fdt/sys/dev/isp/isp.c#6 integrate .. //depot/projects/fdt/sys/dev/isp/isp_freebsd.c#4 integrate .. //depot/projects/fdt/sys/dev/isp/isp_library.c#5 integrate .. //depot/projects/fdt/sys/dev/isp/isp_library.h#3 integrate .. //depot/projects/fdt/sys/dev/isp/isp_pci.c#3 integrate .. //depot/projects/fdt/sys/dev/isp/isp_target.c#2 integrate .. //depot/projects/fdt/sys/dev/isp/ispmbox.h#3 integrate .. //depot/projects/fdt/sys/dev/isp/ispreg.h#2 integrate .. //depot/projects/fdt/sys/dev/jme/if_jme.c#4 integrate .. //depot/projects/fdt/sys/dev/md/md.c#3 integrate .. //depot/projects/fdt/sys/dev/mii/brgphy.c#4 integrate .. //depot/projects/fdt/sys/dev/mii/miidevs#4 integrate .. //depot/projects/fdt/sys/dev/mpt/mpt_raid.c#4 integrate .. //depot/projects/fdt/sys/dev/msk/if_msk.c#5 integrate .. //depot/projects/fdt/sys/dev/msk/if_mskreg.h#3 integrate .. //depot/projects/fdt/sys/dev/mxge/if_mxge.c#6 integrate .. //depot/projects/fdt/sys/dev/re/if_re.c#5 integrate .. //depot/projects/fdt/sys/dev/sound/pci/hda/hdac.c#7 integrate .. //depot/projects/fdt/sys/dev/syscons/scvidctl.c#3 integrate .. //depot/projects/fdt/sys/dev/syscons/snake/snake_saver.c#2 integrate .. //depot/projects/fdt/sys/dev/syscons/syscons.c#4 integrate .. //depot/projects/fdt/sys/dev/syscons/syscons.h#3 integrate .. //depot/projects/fdt/sys/dev/xen/netfront/netfront.c#4 integrate .. //depot/projects/fdt/sys/fs/ext2fs/ext2_vnops.c#3 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_denode.c#3 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_fat.c#3 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_fileno.c#2 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_lookup.c#3 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_vfsops.c#2 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_vnops.c#3 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfsmount.h#2 integrate .. //depot/projects/fdt/sys/geom/gate/g_gate.c#3 integrate .. //depot/projects/fdt/sys/geom/gate/g_gate.h#2 integrate .. //depot/projects/fdt/sys/geom/geom_subr.c#2 integrate .. //depot/projects/fdt/sys/geom/multipath/g_multipath.c#2 integrate .. //depot/projects/fdt/sys/geom/stripe/g_stripe.c#3 integrate .. //depot/projects/fdt/sys/i386/bios/smbios.c#2 delete .. //depot/projects/fdt/sys/i386/bios/vpd.c#2 delete .. //depot/projects/fdt/sys/i386/conf/XEN#3 integrate .. //depot/projects/fdt/sys/i386/cpufreq/est.c#3 delete .. //depot/projects/fdt/sys/i386/cpufreq/hwpstate.c#2 delete .. //depot/projects/fdt/sys/i386/cpufreq/p4tcc.c#2 delete .. //depot/projects/fdt/sys/i386/cpufreq/powernow.c#2 delete .. //depot/projects/fdt/sys/i386/cpufreq/smist.c#2 delete .. //depot/projects/fdt/sys/i386/i386/atpic_vector.s#1 branch .. //depot/projects/fdt/sys/i386/i386/exception.s#2 integrate .. //depot/projects/fdt/sys/i386/i386/machdep.c#3 integrate .. //depot/projects/fdt/sys/i386/i386/nexus.c#2 integrate .. //depot/projects/fdt/sys/i386/i386/pmap.c#8 integrate .. //depot/projects/fdt/sys/i386/i386/vm_machdep.c#3 integrate .. //depot/projects/fdt/sys/i386/isa/atpic.c#2 delete .. //depot/projects/fdt/sys/i386/isa/atpic_vector.s#2 delete .. //depot/projects/fdt/sys/i386/isa/clock.c#4 delete .. //depot/projects/fdt/sys/i386/isa/elcr.c#2 delete .. //depot/projects/fdt/sys/i386/isa/icu.h#2 delete .. //depot/projects/fdt/sys/i386/isa/isa.c#2 delete .. //depot/projects/fdt/sys/i386/isa/isa.h#2 delete .. //depot/projects/fdt/sys/i386/isa/isa_dma.c#3 delete .. //depot/projects/fdt/sys/i386/isa/nmi.c#2 delete .. //depot/projects/fdt/sys/i386/xen/clock.c#2 integrate .. //depot/projects/fdt/sys/i386/xen/pmap.c#8 integrate .. //depot/projects/fdt/sys/i386/xen/xen_machdep.c#3 integrate .. //depot/projects/fdt/sys/ia64/ia64/context.S#2 integrate .. //depot/projects/fdt/sys/ia64/ia64/exception.S#5 integrate .. //depot/projects/fdt/sys/ia64/ia64/interrupt.c#7 integrate .. //depot/projects/fdt/sys/ia64/ia64/locore.S#2 integrate .. //depot/projects/fdt/sys/ia64/ia64/nexus.c#3 integrate .. //depot/projects/fdt/sys/ia64/ia64/pmap.c#4 integrate .. //depot/projects/fdt/sys/ia64/ia64/sapic.c#3 integrate .. //depot/projects/fdt/sys/ia64/ia64/support.S#2 integrate .. //depot/projects/fdt/sys/ia64/ia64/syscall.S#2 integrate .. //depot/projects/fdt/sys/ia64/include/intr.h#3 integrate .. //depot/projects/fdt/sys/ia64/include/pmap.h#4 integrate .. //depot/projects/fdt/sys/ia64/include/sapicreg.h#2 delete .. //depot/projects/fdt/sys/ia64/include/sapicvar.h#2 delete .. //depot/projects/fdt/sys/isa/atrtc.c#2 delete .. //depot/projects/fdt/sys/isa/orm.c#2 delete .. //depot/projects/fdt/sys/kern/kern_conf.c#3 integrate .. //depot/projects/fdt/sys/kern/kern_kthread.c#3 integrate .. //depot/projects/fdt/sys/kern/kern_proc.c#3 integrate .. //depot/projects/fdt/sys/kern/kern_subr.c#2 delete .. //depot/projects/fdt/sys/kern/subr_hash.c#1 branch .. //depot/projects/fdt/sys/kern/subr_param.c#3 integrate .. //depot/projects/fdt/sys/kern/subr_uio.c#1 branch .. //depot/projects/fdt/sys/kern/uipc_socket.c#2 integrate .. //depot/projects/fdt/sys/kern/uipc_syscalls.c#4 integrate .. //depot/projects/fdt/sys/kern/vfs_default.c#3 integrate .. //depot/projects/fdt/sys/kern/vfs_mount.c#5 integrate .. //depot/projects/fdt/sys/kern/vfs_syscalls.c#4 integrate .. //depot/projects/fdt/sys/mips/alchemy/obio.c#2 integrate .. //depot/projects/fdt/sys/mips/atheros/ar71xxreg.h#3 integrate .. //depot/projects/fdt/sys/mips/cavium/dev/rgmii/octeon_fpa.c#5 integrate .. //depot/projects/fdt/sys/mips/cavium/octeon_machdep.c#6 integrate .. //depot/projects/fdt/sys/mips/cavium/octeon_pcmap_regs.h#4 integrate .. //depot/projects/fdt/sys/mips/conf/ADM5120#3 integrate .. //depot/projects/fdt/sys/mips/conf/MALTA#4 integrate .. //depot/projects/fdt/sys/mips/conf/MALTA64#4 integrate .. //depot/projects/fdt/sys/mips/conf/OCTEON1#5 integrate .. //depot/projects/fdt/sys/mips/conf/OCTEON1-32#5 integrate .. //depot/projects/fdt/sys/mips/conf/QEMU#4 integrate .. //depot/projects/fdt/sys/mips/conf/SWARM#4 integrate .. //depot/projects/fdt/sys/mips/conf/XLR#4 integrate .. //depot/projects/fdt/sys/mips/include/intr_machdep.h#4 integrate .. //depot/projects/fdt/sys/mips/mips/elf_trampoline.c#3 integrate .. //depot/projects/fdt/sys/mips/mips/exception.S#5 integrate .. //depot/projects/fdt/sys/mips/rmi/board.c#2 integrate .. //depot/projects/fdt/sys/mips/rmi/bus_space_rmi.c#2 integrate .. //depot/projects/fdt/sys/mips/rmi/bus_space_rmi_pci.c#1 branch .. //depot/projects/fdt/sys/mips/rmi/files.xlr#3 integrate .. //depot/projects/fdt/sys/mips/rmi/interrupt.h#2 integrate .. //depot/projects/fdt/sys/mips/rmi/intr_machdep.c#3 integrate .. //depot/projects/fdt/sys/mips/rmi/iodi.c#3 integrate .. //depot/projects/fdt/sys/mips/rmi/pcibus.h#3 integrate .. //depot/projects/fdt/sys/mips/rmi/xlr_pci.c#2 integrate .. //depot/projects/fdt/sys/modules/Makefile#6 integrate .. //depot/projects/fdt/sys/modules/bios/smbios/Makefile#2 integrate .. //depot/projects/fdt/sys/modules/bios/vpd/Makefile#2 integrate .. //depot/projects/fdt/sys/modules/cpufreq/Makefile#2 integrate .. //depot/projects/fdt/sys/modules/cxgb/cxgb/Makefile#2 integrate .. //depot/projects/fdt/sys/net/bpf.c#2 integrate .. //depot/projects/fdt/sys/net/if.c#7 integrate .. //depot/projects/fdt/sys/net/if.h#6 integrate .. //depot/projects/fdt/sys/net/if_loop.c#2 integrate .. //depot/projects/fdt/sys/net/if_tap.c#2 integrate .. //depot/projects/fdt/sys/net/if_tun.c#2 integrate .. //depot/projects/fdt/sys/net/if_vlan.c#4 integrate .. //depot/projects/fdt/sys/net/netisr.c#4 integrate .. //depot/projects/fdt/sys/net/netisr.h#2 integrate .. //depot/projects/fdt/sys/netinet/in_proto.c#2 integrate .. //depot/projects/fdt/sys/netinet/ip_input.c#2 integrate .. //depot/projects/fdt/sys/netinet/ip_mroute.c#3 integrate .. //depot/projects/fdt/sys/netinet/ip_options.c#2 integrate .. //depot/projects/fdt/sys/netinet/ip_var.h#3 integrate .. //depot/projects/fdt/sys/netinet/sctp_input.c#5 integrate .. //depot/projects/fdt/sys/netinet/sctp_output.c#5 integrate .. //depot/projects/fdt/sys/netinet/sctp_output.h#2 integrate .. //depot/projects/fdt/sys/netinet/sctp_usrreq.c#4 integrate .. //depot/projects/fdt/sys/netinet/sctputil.c#5 integrate .. //depot/projects/fdt/sys/netinet/tcp_syncache.c#2 integrate .. //depot/projects/fdt/sys/netinet6/in6_pcb.c#3 integrate .. //depot/projects/fdt/sys/netinet6/nd6.c#5 integrate .. //depot/projects/fdt/sys/netipsec/keydb.h#2 integrate .. //depot/projects/fdt/sys/nfsclient/nfs_kdtrace.c#2 integrate .. //depot/projects/fdt/sys/pc98/pc98/machdep.c#2 integrate .. //depot/projects/fdt/sys/powerpc/aim/machdep.c#4 integrate .. //depot/projects/fdt/sys/powerpc/aim/mmu_oea.c#4 integrate .. //depot/projects/fdt/sys/powerpc/aim/mmu_oea64.c#6 integrate .. //depot/projects/fdt/sys/powerpc/aim/trap.c#5 integrate .. //depot/projects/fdt/sys/powerpc/aim/uma_machdep.c#2 integrate .. //depot/projects/fdt/sys/powerpc/booke/copyinout.c#2 integrate .. //depot/projects/fdt/sys/powerpc/include/pte.h#2 integrate .. //depot/projects/fdt/sys/powerpc/include/sr.h#2 integrate .. //depot/projects/fdt/sys/powerpc/include/vmparam.h#3 integrate .. //depot/projects/fdt/sys/powerpc/powermac/smu.c#2 integrate .. //depot/projects/fdt/sys/powerpc/powerpc/cpu.c#5 integrate .. //depot/projects/fdt/sys/powerpc/powerpc/mem.c#3 integrate .. //depot/projects/fdt/sys/sparc64/include/cache.h#2 integrate .. //depot/projects/fdt/sys/sparc64/include/cpu.h#2 integrate .. //depot/projects/fdt/sys/sparc64/include/md_var.h#3 integrate .. //depot/projects/fdt/sys/sparc64/include/pcpu.h#2 integrate .. //depot/projects/fdt/sys/sparc64/include/pmap.h#2 integrate .. //depot/projects/fdt/sys/sparc64/include/smp.h#2 integrate .. //depot/projects/fdt/sys/sparc64/include/tick.h#2 integrate .. //depot/projects/fdt/sys/sparc64/include/ver.h#2 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/cache.c#2 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/cheetah.c#2 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/identcpu.c#3 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/iommu.c#3 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/machdep.c#5 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/mp_locore.S#3 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/mp_machdep.c#3 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/nexus.c#4 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/pmap.c#3 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/spitfire.c#2 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/tick.c#2 integrate .. //depot/projects/fdt/sys/sparc64/sparc64/trap.c#6 integrate .. //depot/projects/fdt/sys/sys/ata.h#7 integrate .. //depot/projects/fdt/sys/sys/fbio.h#4 integrate .. //depot/projects/fdt/sys/sys/queue.h#2 integrate .. //depot/projects/fdt/sys/sys/sysctl.h#2 integrate .. //depot/projects/fdt/sys/sys/systm.h#3 integrate .. //depot/projects/fdt/sys/sys/user.h#2 integrate .. //depot/projects/fdt/sys/vm/vm_init.c#2 integrate .. //depot/projects/fdt/sys/vm/vm_page.c#2 integrate .. //depot/projects/fdt/sys/vm/vnode_pager.c#3 integrate .. //depot/projects/fdt/sys/x86/bios/smbios.c#1 branch .. //depot/projects/fdt/sys/x86/bios/vpd.c#1 branch .. //depot/projects/fdt/sys/x86/cpufreq/est.c#1 branch .. //depot/projects/fdt/sys/x86/cpufreq/hwpstate.c#1 branch .. //depot/projects/fdt/sys/x86/cpufreq/p4tcc.c#1 branch .. //depot/projects/fdt/sys/x86/cpufreq/powernow.c#1 branch .. //depot/projects/fdt/sys/x86/cpufreq/smist.c#1 branch .. //depot/projects/fdt/sys/x86/isa/atpic.c#1 branch .. //depot/projects/fdt/sys/x86/isa/atrtc.c#1 branch .. //depot/projects/fdt/sys/x86/isa/clock.c#1 branch .. //depot/projects/fdt/sys/x86/isa/elcr.c#1 branch .. //depot/projects/fdt/sys/x86/isa/icu.h#1 branch .. //depot/projects/fdt/sys/x86/isa/isa.c#1 branch .. //depot/projects/fdt/sys/x86/isa/isa.h#1 branch .. //depot/projects/fdt/sys/x86/isa/isa_dma.c#1 branch .. //depot/projects/fdt/sys/x86/isa/nmi.c#1 branch .. //depot/projects/fdt/sys/x86/isa/orm.c#1 branch .. //depot/projects/fdt/sys/xen/evtchn/evtchn_dev.c#2 integrate .. //depot/projects/fdt/tools/build/mk/OptionalObsoleteFiles.inc#6 integrate .. //depot/projects/fdt/tools/regression/file/closefrom/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/file/flock/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/gaithrstress/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/kgssapi/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/kthread/kld/Makefile#1 branch .. //depot/projects/fdt/tools/regression/kthread/kld/kthrdlk.c#1 branch .. //depot/projects/fdt/tools/regression/mqueue/mqtest1/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/mqueue/mqtest2/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/mqueue/mqtest3/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/mqueue/mqtest4/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/mqueue/mqtest5/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/netipx/ipxdgramloopback/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/netipx/spxabort/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/netipx/spxloopback/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/pthread/cv_cancel1/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/pthread/mutex_isowned_np/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/rpcsec_gss/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sigqueue/sigqtest1/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sigqueue/sigqtest2/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sockets/sendfile/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sockets/sendfile/sendfile.c#2 integrate .. //depot/projects/fdt/tools/regression/tls/libxx/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/tls/libyy/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/tls/ttls1/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/tls/ttls2/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/tls/ttls4/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/ether_reflect/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/mcgrab/Makefile#1 branch .. //depot/projects/fdt/tools/tools/mcgrab/mcgrab.1#1 branch .. //depot/projects/fdt/tools/tools/mcgrab/mcgrab.cc#1 branch .. //depot/projects/fdt/tools/tools/mctest/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/mctest/mcgrab.1#2 delete .. //depot/projects/fdt/tools/tools/mctest/mcgrab.cc#2 delete .. //depot/projects/fdt/tools/tools/mctest/mctest.1#2 integrate .. //depot/projects/fdt/tools/tools/net80211/stumbler/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/net80211/w00t/Makefile.inc#2 integrate .. //depot/projects/fdt/usr.bin/Makefile#6 integrate .. //depot/projects/fdt/usr.bin/cpio/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/cpio/bsdcpio.1#2 integrate .. //depot/projects/fdt/usr.bin/fetch/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/gcore/Makefile#4 integrate .. //depot/projects/fdt/usr.bin/hexdump/hexdump.1#2 integrate .. //depot/projects/fdt/usr.bin/hexdump/od.1#2 integrate .. //depot/projects/fdt/usr.bin/jot/jot.1#2 integrate .. //depot/projects/fdt/usr.bin/kdump/kdump.c#5 integrate .. //depot/projects/fdt/usr.bin/netstat/Makefile#2 integrate .. //depot/projects/fdt/usr.bin/netstat/main.c#5 integrate .. //depot/projects/fdt/usr.bin/netstat/netisr.c#1 branch .. //depot/projects/fdt/usr.bin/netstat/netstat.1#4 integrate .. //depot/projects/fdt/usr.bin/netstat/netstat.h#4 integrate .. //depot/projects/fdt/usr.bin/pr/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/pr/egetopt.c#3 integrate .. //depot/projects/fdt/usr.bin/pr/pr.c#2 integrate .. //depot/projects/fdt/usr.bin/seq/Makefile#1 branch .. //depot/projects/fdt/usr.bin/seq/seq.1#1 branch .. //depot/projects/fdt/usr.bin/seq/seq.c#1 branch .. //depot/projects/fdt/usr.bin/systat/Makefile#6 integrate .. //depot/projects/fdt/usr.bin/tar/Makefile#4 integrate .. //depot/projects/fdt/usr.bin/tar/test/test_option_T.c#2 integrate .. //depot/projects/fdt/usr.bin/tar/test/test_option_s.c#2 integrate .. //depot/projects/fdt/usr.bin/tar/tree.c#2 integrate .. //depot/projects/fdt/usr.bin/unifdef/unifdef.1#4 integrate .. //depot/projects/fdt/usr.bin/unifdef/unifdef.c#5 integrate .. //depot/projects/fdt/usr.bin/unzip/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/xinstall/xinstall.c#3 integrate .. //depot/projects/fdt/usr.sbin/auditd/Makefile#3 integrate .. //depot/projects/fdt/usr.sbin/boot0cfg/Makefile#3 integrate .. //depot/projects/fdt/usr.sbin/chown/chgrp.1#2 integrate .. //depot/projects/fdt/usr.sbin/chown/chown.8#2 integrate .. //depot/projects/fdt/usr.sbin/chown/chown.c#2 integrate .. //depot/projects/fdt/usr.sbin/cxgbtool/cxgbtool.c#2 integrate .. //depot/projects/fdt/usr.sbin/cxgbtool/reg_defs.c#2 integrate .. //depot/projects/fdt/usr.sbin/cxgbtool/reg_defs_t3.c#2 integrate .. //depot/projects/fdt/usr.sbin/cxgbtool/reg_defs_t3b.c#2 integrate .. //depot/projects/fdt/usr.sbin/cxgbtool/reg_defs_t3c.c#2 integrate .. //depot/projects/fdt/usr.sbin/mfiutil/Makefile#2 integrate .. //depot/projects/fdt/usr.sbin/mptable/mptable.c#2 integrate .. //depot/projects/fdt/usr.sbin/mptutil/Makefile#2 integrate .. //depot/projects/fdt/usr.sbin/mptutil/mpt_cam.c#2 integrate .. //depot/projects/fdt/usr.sbin/mptutil/mpt_show.c#2 integrate .. //depot/projects/fdt/usr.sbin/mtree/mtree.5#2 integrate .. //depot/projects/fdt/usr.sbin/pmcstat/Makefile#4 integrate .. //depot/projects/fdt/usr.sbin/rtsold/Makefile#3 integrate .. //depot/projects/fdt/usr.sbin/rtsold/dump.c#2 integrate .. //depot/projects/fdt/usr.sbin/rtsold/if.c#2 integrate .. //depot/projects/fdt/usr.sbin/rtsold/rtsock.c#2 integrate .. //depot/projects/fdt/usr.sbin/rtsold/rtsol.c#2 integrate .. //depot/projects/fdt/usr.sbin/rtsold/rtsold.c#3 integrate .. //depot/projects/fdt/usr.sbin/rtsold/rtsold.h#2 integrate .. //depot/projects/fdt/usr.sbin/sysinstall/devices.c#2 integrate .. //depot/projects/fdt/usr.sbin/zic/Theory#3 delete .. //depot/projects/fdt/usr.sbin/zic/ialloc.c#2 delete .. //depot/projects/fdt/usr.sbin/zic/private.h#2 delete .. //depot/projects/fdt/usr.sbin/zic/scheck.c#2 delete .. //depot/projects/fdt/usr.sbin/zic/zdump.8#2 delete .. //depot/projects/fdt/usr.sbin/zic/zdump.c#3 delete .. //depot/projects/fdt/usr.sbin/zic/zdump/Makefile#3 integrate .. //depot/projects/fdt/usr.sbin/zic/zic.8#3 delete .. //depot/projects/fdt/usr.sbin/zic/zic.c#2 delete .. //depot/projects/fdt/usr.sbin/zic/zic/Makefile#3 integrate Differences ... ==== //depot/projects/fdt/MAINTAINERS#4 (text+ko) ==== @@ -1,4 +1,4 @@ -$FreeBSD: src/MAINTAINERS,v 1.156 2009/12/30 14:41:02 mjacob Exp $ +$FreeBSD: src/MAINTAINERS,v 1.157 2010/02/18 21:14:29 edwin Exp $ Please note that the content of this file is strictly advisory. No locks listed here are valid. The only strict review requirements @@ -125,6 +125,12 @@ ncurses rafan Heads-up appreciated, try not to break it. *env(3) secteam Due to the problematic security history of this code, please have patches reviewed by secteam. +share/zoneinfo edwin Heads-up appreciated, since our data is coming + from a third party source. +usr.sbin/zic edwin Heads-up appreciated, since this code is + maintained by a third party source. +lib/libc/stdtime edwin Heads-up appreciated, since parts of this code + is maintained by a third party source. Following are the entries from the Makefiles, and a few other sources. Please remove stale entries from both their origin, and this file. ==== //depot/projects/fdt/ObsoleteFiles.inc#8 (text+ko) ==== @@ -1,5 +1,5 @@ # -# $FreeBSD: src/ObsoleteFiles.inc,v 1.224 2010/01/22 23:19:48 delphij Exp $ +# $FreeBSD: src/ObsoleteFiles.inc,v 1.227 2010/02/27 19:00:13 marcel Exp $ # # This file lists old files (OLD_FILES), libraries (OLD_LIBS) and # directories (OLD_DIRS) which should get removed at an update. Recently @@ -14,6 +14,21 @@ # The file is partitioned: OLD_FILES first, then OLD_LIBS and OLD_DIRS last. # +# 20100227: [ia64] removed and +.if ${TARGET_ARCH} == "ia64" +OLD_FILES+=usr/include/machine/sapicreg.h +OLD_FILES+=usr/include/machine/sapicvar.h +.endif +# 20100208: man pages moved +.if ${TARGET_ARCH} == "i386" +OLD_FILES+=usr/share/man/man4/i386/alpm.4.gz +OLD_FILES+=usr/share/man/man4/i386/amdpm.4.gz +OLD_FILES+=usr/share/man/man4/i386/mcd.4.gz +OLD_FILES+=usr/share/man/man4/i386/padlock.4.gz +OLD_FILES+=usr/share/man/man4/i386/pcf.4.gz +OLD_FILES+=usr/share/man/man4/i386/scd.4.gz +OLD_FILES+=usr/share/man/man4/i386/viapm.4.gz +.endif # 20100122: move BSDL bc/dc USD documents to /usr/share/doc/usd OLD_FILES+=usr/share/doc/papers/bc.ascii.gz OLD_FILES+=usr/share/doc/papers/dc.ascii.gz @@ -2275,7 +2290,7 @@ OLD_FILES+=usr/lib/libpam_ssh_p.a OLD_FILES+=usr/bin/help OLD_FILES+=usr/bin/sccs -.if ${TARGET_ARCH} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET_ARCH} != "powerpc" +.if ${TARGET_ARCH} != "amd64" && ${TARGET_ARCH} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET_ARCH} != "powerpc" OLD_FILES+=usr/bin/gdbserver .endif OLD_FILES+=usr/bin/ssh-keysign ==== //depot/projects/fdt/bin/kill/kill.c#2 (text+ko) ==== @@ -39,7 +39,7 @@ #endif /* not lint */ #endif #include -__FBSDID("$FreeBSD: src/bin/kill/kill.c,v 1.20 2005/01/10 08:39:23 imp Exp $"); +__FBSDID("$FreeBSD: src/bin/kill/kill.c,v 1.21 2010/02/25 13:53:09 kib Exp $"); #include #include @@ -108,7 +108,7 @@ numsig = strtol(*argv, &ep, 10); if (!**argv || *ep) errx(1, "illegal signal number: %s", *argv); - if (numsig < 0 || numsig >= sys_nsig) + if (numsig < 0) nosig(*argv); } else nosig(*argv); ==== //depot/projects/fdt/bin/sh/parser.c#5 (text+ko) ==== @@ -36,7 +36,7 @@ #endif #endif /* not lint */ #include -__FBSDID("$FreeBSD: src/bin/sh/parser.c,v 1.72 2010/01/01 18:17:46 jilles Exp $"); +__FBSDID("$FreeBSD: src/bin/sh/parser.c,v 1.73 2010/02/24 14:19:56 jh Exp $"); #include #include @@ -1641,7 +1641,7 @@ case 'w': ps[i] = '\0'; getcwd(&ps[i], PROMPTLEN - i); - if (*fmt == 'W') { + if (*fmt == 'W' && ps[i + 1] != '\0') { /* Final path component only. */ trim = 1; for (j = i; ps[j] != '\0'; j++) ==== //depot/projects/fdt/cddl/usr.bin/ctfconvert/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/usr.bin/ctfconvert/Makefile,v 1.1 2008/05/22 08:04:48 jb Exp $ +# $FreeBSD: src/cddl/usr.bin/ctfconvert/Makefile,v 1.2 2010/02/25 22:18:35 ru Exp $ .include @@ -40,7 +40,8 @@ -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt \ -I${OPENSOLARIS_SYS_DISTDIR}/uts/common -LDADD+= -lctf -ldwarf -lelf -lz -lthr +DPADD= ${LIBCTF} ${LIBDWARF} ${LIBELF} ${LIBZ} ${LIBPTHREAD} +LDADD= -lctf -ldwarf -lelf -lz -lpthread .PATH: ${.CURDIR} .PATH: ${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common ==== //depot/projects/fdt/cddl/usr.bin/ctfdump/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/usr.bin/ctfdump/Makefile,v 1.1 2008/05/22 08:04:48 jb Exp $ +# $FreeBSD: src/cddl/usr.bin/ctfdump/Makefile,v 1.2 2010/02/25 22:18:35 ru Exp $ .include "../../Makefile.inc" @@ -19,9 +19,8 @@ -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common \ -I${OPENSOLARIS_SYS_DISTDIR}/uts/common -LDFLAGS+= -pthread - -LDADD+= -lelf -lz +DPADD= ${LIBPTHREAD} ${LIBELF} ${LIBZ} +LDADD= -lpthread -lelf -lz .PATH: ${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common .PATH: ${OPENSOLARIS_USR_DISTDIR}/tools/ctf/dump ==== //depot/projects/fdt/cddl/usr.bin/ctfmerge/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/usr.bin/ctfmerge/Makefile,v 1.1 2008/05/22 08:04:49 jb Exp $ +# $FreeBSD: src/cddl/usr.bin/ctfmerge/Makefile,v 1.2 2010/02/25 22:18:35 ru Exp $ .include @@ -37,7 +37,8 @@ -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt \ -I${OPENSOLARIS_SYS_DISTDIR}/uts/common -LDADD+= -lctf -ldwarf -lelf -lz -lthr +DPADD= ${LIBCTF} ${LIBDWARF} ${LIBELF} ${LIBZ} ${LIBPTHREAD} +LDADD= -lctf -ldwarf -lelf -lz -lpthread .PATH: ${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common .PATH: ${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt ==== //depot/projects/fdt/cddl/usr.bin/zinject/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/usr.bin/zinject/Makefile,v 1.1 2008/11/17 20:49:29 pjd Exp $ +# $FreeBSD: src/cddl/usr.bin/zinject/Makefile,v 1.2 2010/02/25 22:18:35 ru Exp $ .PATH: ${.CURDIR}/../../contrib/opensolaris/cmd/zinject @@ -19,7 +19,7 @@ CFLAGS+= -I${.CURDIR}/../../lib/libumem DPADD= ${LIBAVL} ${LIBGEOM} ${LIBM} ${LIBNVPAIR} ${LIBUMEM} ${LIBUUTIL} \ - ${LIBZFS} ${LIBZPOOL} ${LIBUUTIL} + ${LIBZFS} ${LIBZPOOL} LDADD= -lavl -lgeom -lm -lnvpair -lumem -luutil -lzfs -lzpool .include ==== //depot/projects/fdt/cddl/usr.sbin/dtrace/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/usr.sbin/dtrace/Makefile,v 1.1 2008/05/22 23:06:19 jb Exp $ +# $FreeBSD: src/cddl/usr.sbin/dtrace/Makefile,v 1.2 2010/02/25 22:18:35 ru Exp $ .include "../../Makefile.inc" @@ -24,14 +24,7 @@ #CFLAGS+= -DNEED_ERRLOC #YFLAGS+= -d -LDFLAGS+= -pthread \ - -L${.OBJDIR}/../../lib/libdtrace \ - -L${.OBJDIR}/../../lib/libproc \ - -L${.OBJDIR}/../../lib/libctf \ - -L${.OBJDIR}/../../../lib/libelf - -LDADD+= -ldtrace -ly -ll -lproc -lctf -lelf -lz - -DPADD+= ${LIBDTRACE} ${LIBCTF} ${LIBELF} ${LIBPTHREAD} ${LIBL} ${LIBY} ${LIBZ} +DPADD= ${LIBPTHREAD} ${LIBDTRACE} ${LIBY} ${LIBL} ${LIBPROC} ${LIBCTF} ${LIBELF} ${LIBZ} +LDADD= -lpthread -ldtrace -ly -ll -lproc -lctf -lelf -lz .include ==== //depot/projects/fdt/cddl/usr.sbin/lockstat/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/usr.sbin/lockstat/Makefile,v 1.1 2009/05/27 01:30:23 sson Exp $ +# $FreeBSD: src/cddl/usr.sbin/lockstat/Makefile,v 1.2 2010/02/25 22:18:35 ru Exp $ .include "../../Makefile.inc" @@ -25,15 +25,8 @@ #YFLAGS+= -d -LDFLAGS+= -pthread \ - -L${.OBJDIR}/../../lib/libdtrace \ - -L${.OBJDIR}/../../lib/libproc \ - -L${.OBJDIR}/../../lib/libctf \ - -L${.OBJDIR}/../../../lib/libelf - -LDADD+= -ldtrace -ly -ll -lproc -lctf -lelf -lz -lrt - -#DPADD+= ${LIBDTRACE} ${LIBPTHREAD} ${LIBL} ${LIBY} ${LIBZ} +DPADD= ${LIBPTHREAD} ${LIBDTRACE} ${LIBY} ${LIBL} ${LIBPROC} ${LIBCTF} ${LIBELF} ${LIBZ} ${LIBRT} +LDADD= -lpthread -ldtrace -ly -ll -lproc -lctf -lelf -lz -lrt NO_MAN= ==== //depot/projects/fdt/contrib/gdb/gdb/mips-tdep.h#2 (text+ko) ==== @@ -62,6 +62,17 @@ extern const struct mips_regnum *mips_regnum (struct gdbarch *gdbarch); enum { + MIPS_S0_REGNUM = 16, + MIPS_S1_REGNUM = 17, + MIPS_S2_REGNUM = 18, + MIPS_S3_REGNUM = 19, + MIPS_S4_REGNUM = 20, + MIPS_S5_REGNUM = 21, + MIPS_S6_REGNUM = 22, + MIPS_S7_REGNUM = 23, + MIPS_SP_REGNUM = 29, + MIPS_FP_REGNUM = 30, + MIPS_RA_REGNUM = 31, MIPS_EMBED_LO_REGNUM = 33, MIPS_EMBED_HI_REGNUM = 34, MIPS_EMBED_BADVADDR_REGNUM = 35, ==== //depot/projects/fdt/etc/defaults/rc.conf#7 (text+ko) ==== @@ -15,7 +15,7 @@ # For a more detailed explanation of all the rc.conf variables, please # refer to the rc.conf(5) manual page. # -# $FreeBSD: src/etc/defaults/rc.conf,v 1.369 2010/02/08 18:51:24 emax Exp $ +# $FreeBSD: src/etc/defaults/rc.conf,v 1.370 2010/02/18 23:16:19 pjd Exp $ ############################################################## ### Important initial Boot-time options #################### @@ -260,6 +260,9 @@ inetd_enable="NO" # Run the network daemon dispatcher (YES/NO). inetd_program="/usr/sbin/inetd" # path to inetd, if you want a different one. inetd_flags="-wW -C 60" # Optional flags to inetd +hastd_enable="NO" # Run the HAST daemon (YES/NO). +hastd_program="/sbin/hastd" # path to hastd, if you want a different one. +hastd_flags="" # Optional flags to hastd. # # named. It may be possible to run named in a sandbox, man security for # details. ==== //depot/projects/fdt/etc/mtree/BSD.usr.dist#5 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.342 2010/01/22 23:19:48 delphij Exp $ +# $FreeBSD: src/etc/mtree/BSD.usr.dist,v 1.344 2010/02/27 17:31:00 antoine Exp $ # # Please see the file src/etc/mtree/README before making changes to this file. # @@ -193,8 +193,6 @@ .. IPv6 .. - bc - .. bootforth .. cvs @@ -215,6 +213,8 @@ .. find_interface .. + hast + .. hostapd .. ibcs2 >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Mon Mar 1 09:38:53 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 266F6106567B; Mon, 1 Mar 2010 09:38:53 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEE791065677 for ; Mon, 1 Mar 2010 09:38:52 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CC05D8FC0C for ; Mon, 1 Mar 2010 09:38:52 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o219cqNN016122 for ; Mon, 1 Mar 2010 09:38:52 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o219cquU016120 for perforce@freebsd.org; Mon, 1 Mar 2010 09:38:52 GMT (envelope-from hselasky@FreeBSD.org) Date: Mon, 1 Mar 2010 09:38:52 GMT Message-Id: <201003010938.o219cquU016120@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175242 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Mar 2010 09:38:53 -0000 http://p4web.freebsd.org/chv.cgi?CH=175242 Change 175242 by hselasky@hselasky_laptop001 on 2010/03/01 09:38:51 Fix for panic when inserting USB enabled PCCARD. - reviewed by John Baldwin 2009-11-19 Affected files ... .. //depot/projects/usb/src/sys/dev/pccard/pccard.c#7 edit Differences ... ==== //depot/projects/usb/src/sys/dev/pccard/pccard.c#7 (text+ko) ==== @@ -1258,7 +1258,10 @@ pccard_intr(void *arg) { struct pccard_function *pf = (struct pccard_function*) arg; - + + if (pf->intr_handler == NULL) + return; /* can happen during PCCARD insertion */ + pf->intr_handler(pf->intr_handler_arg); } From owner-p4-projects@FreeBSD.ORG Mon Mar 1 18:05:20 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8DB081065741; Mon, 1 Mar 2010 18:05:20 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51B67106573B for ; Mon, 1 Mar 2010 18:05:20 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3FF1D8FC19 for ; Mon, 1 Mar 2010 18:05:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o21I5KJ4082999 for ; Mon, 1 Mar 2010 18:05:20 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o21I5Kmk082997 for perforce@freebsd.org; Mon, 1 Mar 2010 18:05:20 GMT (envelope-from hselasky@FreeBSD.org) Date: Mon, 1 Mar 2010 18:05:20 GMT Message-Id: <201003011805.o21I5Kmk082997@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175253 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Mar 2010 18:05:20 -0000 http://p4web.freebsd.org/chv.cgi?CH=175253 Change 175253 by hselasky@hselasky_laptop001 on 2010/03/01 18:04:20 USB controller (Device Side): - bugfix for USS820 driver. - need to manually reset TX FIFO at each SETUP transaction because the chip doesn't do this by itself. - patch by: HPS @ Affected files ... .. //depot/projects/usb/src/sys/dev/usb/controller/uss820dci.c#31 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/controller/uss820dci.c#31 (text+ko) ==== @@ -333,6 +333,14 @@ } else { sc->sc_dv_addr = 0xFF; } + + /* reset TX FIFO */ + temp = USS820_READ_1(sc, USS820_TXCON); + temp |= USS820_TXCON_TXCLR; + USS820_WRITE_1(sc, USS820_TXCON, temp); + temp &= ~USS820_TXCON_TXCLR; + USS820_WRITE_1(sc, USS820_TXCON, temp); + return (0); /* complete */ setup_not_complete: From owner-p4-projects@FreeBSD.ORG Tue Mar 2 01:15:32 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B64E31065673; Tue, 2 Mar 2010 01:15:32 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B0591065670 for ; Tue, 2 Mar 2010 01:15:32 +0000 (UTC) (envelope-from stas@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 683518FC16 for ; Tue, 2 Mar 2010 01:15:32 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o221FWjv044479 for ; Tue, 2 Mar 2010 01:15:32 GMT (envelope-from stas@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o221FWKh044477 for perforce@freebsd.org; Tue, 2 Mar 2010 01:15:32 GMT (envelope-from stas@freebsd.org) Date: Tue, 2 Mar 2010 01:15:32 GMT Message-Id: <201003020115.o221FWKh044477@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to stas@freebsd.org using -f From: Stanislav Sedov To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175270 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Mar 2010 01:15:33 -0000 http://p4web.freebsd.org/chv.cgi?CH=175270 Change 175270 by stas@stas_orion on 2010/03/02 01:14:52 - Fix FreeBSD wrapper for socketpair(2) syscall (incorrect argument size). Submitted by: Jilles Tjoelker Affected files ... .. //depot/projects/valgrind/coregrind/m_syswrap/syswrap-freebsd.c#46 edit Differences ... ==== //depot/projects/valgrind/coregrind/m_syswrap/syswrap-freebsd.c#46 (text+ko) ==== @@ -539,7 +539,7 @@ { PRINT("sys_socketpair ( %ld, %ld, %ld, %#lx )",ARG1,ARG2,ARG3,ARG4); PRE_REG_READ4(long, "socketpair", - int, d, int, type, int, protocol, int [2], sv); + int, d, int, type, int, protocol, int *, sv); ML_(generic_PRE_sys_socketpair)(tid, ARG1,ARG2,ARG3,ARG4); } POST(sys_socketpair) From owner-p4-projects@FreeBSD.ORG Tue Mar 2 08:24:48 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9918D1065673; Tue, 2 Mar 2010 08:24:48 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DA101065670 for ; Tue, 2 Mar 2010 08:24:48 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B5EB8FC27 for ; Tue, 2 Mar 2010 08:24:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o228OmtX094537 for ; Tue, 2 Mar 2010 08:24:48 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o228OmRA094535 for perforce@freebsd.org; Tue, 2 Mar 2010 08:24:48 GMT (envelope-from hselasky@FreeBSD.org) Date: Tue, 2 Mar 2010 08:24:48 GMT Message-Id: <201003020824.o228OmRA094535@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175279 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Mar 2010 08:24:48 -0000 http://p4web.freebsd.org/chv.cgi?CH=175279 Change 175279 by hselasky@hselasky_laptop001 on 2010/03/02 08:24:28 USB CORE (Device Side): - make sure there is a way to reset the endpoint FIFO on transfer errors for ISOCHRONOUS transfers - patch by: HPS @ Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usb_transfer.c#175 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usb_transfer.c#175 (text+ko) ==== @@ -2410,21 +2410,24 @@ * Check if we are supposed to stall the endpoint: */ if (xfer->flags.stall_pipe) { + struct usb_device *udev; + struct usb_xfer_root *info; + /* clear stall command */ xfer->flags.stall_pipe = 0; + /* get pointer to USB device */ + info = xfer->xroot; + udev = info->udev; + /* * Only stall BULK and INTERRUPT endpoints. */ type = (ep->edesc->bmAttributes & UE_XFERTYPE); if ((type == UE_BULK) || (type == UE_INTERRUPT)) { - struct usb_device *udev; - struct usb_xfer_root *info; uint8_t did_stall; - info = xfer->xroot; - udev = info->udev; did_stall = 1; if (udev->flags.usb_mode == USB_MODE_DEVICE) { @@ -2452,6 +2455,17 @@ ep->is_stalled = 1; return; } + } else if (type == UE_ISOCHRONOUS) { + + /* + * Make sure any FIFO overflow or other FIFO + * error conditions go away by resetting the + * endpoint FIFO through the clear stall + * method. + */ + if (udev->flags.usb_mode == USB_MODE_DEVICE) { + (udev->bus->methods->clear_stall) (udev, ep); + } } } /* Set or clear stall complete - special case */ From owner-p4-projects@FreeBSD.ORG Tue Mar 2 22:27:50 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 380651065673; Tue, 2 Mar 2010 22:27:50 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0A88106566C for ; Tue, 2 Mar 2010 22:27:49 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DE3A88FC0A for ; Tue, 2 Mar 2010 22:27:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o22MRnvM011979 for ; Tue, 2 Mar 2010 22:27:49 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o22MRnje011977 for perforce@freebsd.org; Tue, 2 Mar 2010 22:27:49 GMT (envelope-from hselasky@FreeBSD.org) Date: Tue, 2 Mar 2010 22:27:49 GMT Message-Id: <201003022227.o22MRnje011977@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175283 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Mar 2010 22:27:50 -0000 http://p4web.freebsd.org/chv.cgi?CH=175283 Change 175283 by hselasky@hselasky_laptop001 on 2010/03/02 22:27:23 USB input: - extend search for Apple Function Key. - patch by: HPS @ PR: usb/144414 Affected files ... .. //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#45 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#45 (text+ko) ==== @@ -883,7 +883,7 @@ err = usbd_req_get_hid_desc(uaa->device, NULL, &hid_ptr, &hid_len, M_TEMP, uaa->info.bIfaceIndex); if (err == 0) { - uint8_t temp_id; + uint8_t apple_keys = 0; /* investigate if this is an Apple Keyboard */ if (hid_locate(hid_ptr, hid_len, @@ -893,18 +893,20 @@ if (flags & HIO_VARIABLE) sc->sc_flags |= UKBD_FLAG_APPLE_EJECT | UKBD_FLAG_APPLE_SWAP; - if (hid_locate(hid_ptr, hid_len, - HID_USAGE2(0xFFFF, 0x0003), - hid_input, 0, &sc->sc_loc_apple_fn, &flags, - &temp_id)) { - if (flags & HIO_VARIABLE) - sc->sc_flags |= UKBD_FLAG_APPLE_FN | - UKBD_FLAG_APPLE_SWAP; - if (temp_id != sc->sc_kbd_id) { - DPRINTF("HID IDs mismatch\n"); - } - } - } else { + DPRINTFN(1, "Found Apple eject-key\n"); + apple_keys = 1; + } + if (hid_locate(hid_ptr, hid_len, + HID_USAGE2(0xFFFF, 0x0003), + hid_input, 0, &sc->sc_loc_apple_fn, &flags, + &sc->sc_kbd_id)) { + if (flags & HIO_VARIABLE) + sc->sc_flags |= UKBD_FLAG_APPLE_FN | + UKBD_FLAG_APPLE_SWAP; + DPRINTFN(1, "Found Apple FN-key\n"); + apple_keys = 1; + } + if (apple_keys == 0) { /* * Assume the first HID ID contains the * keyboard data From owner-p4-projects@FreeBSD.ORG Tue Mar 2 22:41:03 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B48D81065674; Tue, 2 Mar 2010 22:41:03 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 790C7106564A for ; Tue, 2 Mar 2010 22:41:03 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66AF48FC12 for ; Tue, 2 Mar 2010 22:41:03 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o22Mf3eS012996 for ; Tue, 2 Mar 2010 22:41:03 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o22Mf3kY012994 for perforce@freebsd.org; Tue, 2 Mar 2010 22:41:03 GMT (envelope-from hselasky@FreeBSD.org) Date: Tue, 2 Mar 2010 22:41:03 GMT Message-Id: <201003022241.o22Mf3kY012994@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175284 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Mar 2010 22:41:03 -0000 http://p4web.freebsd.org/chv.cgi?CH=175284 Change 175284 by hselasky@hselasky_laptop001 on 2010/03/02 22:40:06 USB input (bugfix): - make sure we don't reset the sc_kbd_id to zero when an Apple HID item is not present. PR: usb/144414 Affected files ... .. //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#46 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/input/ukbd.c#46 (text+ko) ==== @@ -884,27 +884,30 @@ &hid_len, M_TEMP, uaa->info.bIfaceIndex); if (err == 0) { uint8_t apple_keys = 0; + uint8_t temp_id; /* investigate if this is an Apple Keyboard */ if (hid_locate(hid_ptr, hid_len, HID_USAGE2(HUP_CONSUMER, HUG_APPLE_EJECT), hid_input, 0, &sc->sc_loc_apple_eject, &flags, - &sc->sc_kbd_id)) { + &temp_id)) { if (flags & HIO_VARIABLE) sc->sc_flags |= UKBD_FLAG_APPLE_EJECT | UKBD_FLAG_APPLE_SWAP; DPRINTFN(1, "Found Apple eject-key\n"); apple_keys = 1; + sc->sc_kbd_id = temp_id; } if (hid_locate(hid_ptr, hid_len, HID_USAGE2(0xFFFF, 0x0003), hid_input, 0, &sc->sc_loc_apple_fn, &flags, - &sc->sc_kbd_id)) { + &temp_id)) { if (flags & HIO_VARIABLE) sc->sc_flags |= UKBD_FLAG_APPLE_FN | UKBD_FLAG_APPLE_SWAP; DPRINTFN(1, "Found Apple FN-key\n"); apple_keys = 1; + sc->sc_kbd_id = temp_id; } if (apple_keys == 0) { /* From owner-p4-projects@FreeBSD.ORG Thu Mar 4 08:09:49 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id D73421065677; Thu, 4 Mar 2010 08:09:48 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82F05106566B for ; Thu, 4 Mar 2010 08:09:48 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6F9148FC1A for ; Thu, 4 Mar 2010 08:09:48 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o2489mGe082634 for ; Thu, 4 Mar 2010 08:09:48 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o2489mT4082632 for perforce@freebsd.org; Thu, 4 Mar 2010 08:09:48 GMT (envelope-from hselasky@FreeBSD.org) Date: Thu, 4 Mar 2010 08:09:48 GMT Message-Id: <201003040809.o2489mT4082632@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175340 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Mar 2010 08:09:49 -0000 http://p4web.freebsd.org/chv.cgi?CH=175340 Change 175340 by hselasky@hselasky_laptop001 on 2010/03/04 08:08:47 USB WLAN: - unlock before calling firmware_get() Users won't have to load firmware manually, anymore. - device_printf after loaded firmware rather than before loading fw - added more IDs including one in pr usb/144423 total 193 IDs - patch by: Akinori PR: usb/144423 Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usbdevs#108 edit .. //depot/projects/usb/src/sys/dev/usb/wlan/if_run.c#7 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usbdevs#108 (text+ko) ==== @@ -277,6 +277,7 @@ vendor FUJIFILM 0x05a2 Fuji Film vendor ARC 0x05a3 ARC vendor ORTEK 0x05a4 Ortek +vendor CISCOLINKSYS3 0x05a6 Cisco-Linksys vendor BOSE 0x05a7 Bose vendor OMNIVISION 0x05a9 OmniVision vendor INSYSTEM 0x05ab In-System Design @@ -642,6 +643,7 @@ vendor QUALCOMMINC 0x19d2 Qualcomm, Incorporated vendor WCH2 0x1a86 QinHeng Electronics vendor STELERA 0x1a8d Stelera Wireless +vendor OVISLINK 0x1b75 OvisLink vendor TCTMOBILE 0x1bbb TCT Mobile vendor TELIT 0x1bc7 Telit vendor MPMAN 0x1cae MpMan @@ -683,6 +685,7 @@ vendor EDIMAX 0x7392 Edimax vendor INTEL 0x8086 Intel vendor INTEL2 0x8087 Intel +vendor ALLWIN 0x8516 ALLWIN Tech vendor SITECOM2 0x9016 Sitecom vendor MOSCHIP 0x9710 MosChip Semiconductor vendor MARVELL 0x9e88 Marvell Technology Group Ltd. @@ -762,6 +765,7 @@ product ACCTON RT3070_2 0xa702 RT3070 product ACCTON RT2870_1 0xb522 RT2870 product ACCTON RT3070_3 0xc522 RT3070 +product ACCTON RT3070_5 0xd522 RT3070 product ACCTON ZD1211B 0xe501 ZD1211B /* Aceeca products */ @@ -894,6 +898,15 @@ /* Allied Telesyn International products */ product ALLIEDTELESYN ATUSB100 0xb100 AT-USB100 +/* ALLWIN Tech products */ +product ALLWIN RT2070 0x2070 RT2070 +product ALLWIN RT2770 0x2770 RT2770 +product ALLWIN RT2870 0x2870 RT2870 +product ALLWIN RT3070 0x3070 RT3070 +product ALLWIN RT3071 0x3071 RT3071 +product ALLWIN RT3072 0x3072 RT3072 +product ALLWIN RT3572 0x3572 RT3572 + /* AlphaSmart, Inc. products */ product ALPHASMART DANA_KB 0xdbac AlphaSmart Dana Keyboard product ALPHASMART DANA_SYNC 0xdf00 AlphaSmart Dana HotSync @@ -996,7 +1009,8 @@ product ASUS RT2870_3 0x1742 RT2870 product ASUS RT2870_4 0x1760 RT2870 product ASUS RT2870_5 0x1761 RT2870 -product ASUS RT3070 0x1784 RT3070 +product ASUS USBN13 0x1784 USB-N13 +product ASUS RT3070_1 0x1790 RT3070 product ASUS P535 0x420f ASUS P535 PDA product ASUS GMSC 0x422f ASUS Generic Mass Storage product ASUS RT2570 0x1706 RT2500USB Wireless Adapter @@ -1154,7 +1168,8 @@ product CISCOLINKSYS WUSB54GC 0x0020 WUSB54GC product CISCOLINKSYS WUSB54GR 0x0023 WUSB54GR product CISCOLINKSYS WUSBF54G 0x0024 WUSBF54G -product CISCOLINKSYS2 RT3070 0x4001 RT3070 +product CISCOLINKSYS2 RT3070 0x4001 RT3070 +product CISCOLINKSYS3 RT3070 0x0101 RT3070 /* CMOTECH products */ product CMOTECH CNU510 0x5141 CDMA Technologies USB modem @@ -1181,6 +1196,8 @@ product CONCEPTRONIC AR5523_2_NF 0x7812 AR5523 (no firmware) product CONCEPTRONIC2 C54RU 0x3c02 C54RU WLAN product CONCEPTRONIC2 C54RU2 0x3c22 C54RU +product CONCEPTRONIC2 RT3070_1 0x3c08 RT3070 +product CONCEPTRONIC2 RT3070_2 0x3c11 RT3070 product CONCEPTRONIC2 VIGORN61 0x3c25 VIGORN61 product CONCEPTRONIC2 RT2870_1 0x3c06 RT2870 product CONCEPTRONIC2 RT2870_2 0x3c07 RT2870 @@ -1333,12 +1350,14 @@ product DLINK2 RT2870_1 0x3c09 RT2870 product DLINK2 DWA110 0x3c07 DWA-110 product DLINK2 RT3072 0x3c0a RT3072 +product DLINK2 RT3072_1 0x3c0b RT3072 product DLINK2 RT3070_1 0x3c0d RT3070 product DLINK2 RT3070_2 0x3c0e RT3070 product DLINK2 RT3070_3 0x3c0f RT3070 product DLINK2 RT2870_2 0x3c11 RT2870 product DLINK2 DWA130 0x3c13 DWA-130 product DLINK2 RT3070_4 0x3c15 RT3070 +product DLINK2 RT3070_5 0x3c16 RT3070 product DLINK3 DWM652 0x3e04 DWM-652 /* DMI products */ @@ -1909,6 +1928,7 @@ product LINKSYS4 WUSB600N 0x0071 WUSB600N product LINKSYS4 WUSB54GCV2 0x0073 WUSB54GC v2 product LINKSYS4 WUSB54GCV3 0x0077 WUSB54GC v3 +product LINKSYS4 RT3070 0x0078 RT3070 product LINKSYS4 WUSB600NV2 0x0079 WUSB600N v2 /* Logitech products */ @@ -1982,6 +2002,8 @@ product MELCO WLIUCG300N 0x00e8 WLI-UC-G300N product MELCO SG54HG 0x00f4 WLI-U2-SG54HG product MELCO WLIUCAG300N 0x012e WLI-UC-AG300N +product MELCO RT2870_1 0x0148 RT2870 +product MELCO RT2870_2 0x0150 RT2870 product MELCO WLIUCGN 0x015d WLI-UC-GN /* Merlin products */ @@ -2002,7 +2024,9 @@ product MSI BT_DONGLE 0x1967 Bluetooth USB dongle product MSI RT3070_1 0x3820 RT3070 product MSI RT3070_2 0x3821 RT3070 +product MSI RT3070_8 0x3822 RT3070 product MSI RT3070_3 0x3870 RT3070 +product MSI RT3070_9 0x3871 RT3070 product MSI UB11B 0x6823 UB11B product MSI RT2570 0x6861 RT2570 product MSI RT2570_2 0x6865 RT2570 @@ -2011,7 +2035,9 @@ product MSI RT2573_2 0x6877 RT2573 product MSI RT3070_4 0x6899 RT3070 product MSI RT3070_5 0x821a RT3070 +product MSI RT3070_10 0x822a RT3070 product MSI RT3070_6 0x870a RT3070 +product MSI RT3070_11 0x871a RT3070 product MSI RT3070_7 0x899a RT3070 product MSI RT2573_3 0xa861 RT2573 product MSI RT2573_4 0xa874 RT2573 @@ -2097,6 +2123,7 @@ product MOTOROLA2 USBLAN 0x600c USBLAN product MOTOROLA2 USBLAN2 0x6027 USBLAN product MOTOROLA4 RT2770 0x9031 RT2770 +product MOTOROLA4 RT3070 0x9032 RT3070 /* MultiTech products */ product MULTITECH ATLAS 0xf101 MT5634ZBA-USB modem @@ -2267,6 +2294,9 @@ product OPTION ICON321 0xd031 Globetrotter HSUPA product OPTION ICON505 0xd055 Globetrotter iCON 505 +/* OvisLink product */ +product OVISLINK RT3072 0x3072 RT3072 + /* OQO */ product OQO WIFI01 0x0002 model 01 WiFi interface product OQO BT01 0x0003 model 01 Bluetooth interface @@ -2301,6 +2331,7 @@ product PEGATRON RT2870 0x0002 RT2870 product PEGATRON RT3070 0x000c RT3070 product PEGATRON RT3070_2 0x000e RT3070 +product PEGATRON RT3070_3 0x0010 RT3070 /* Peracom products */ product PERACOM SERIAL1 0x0001 Serial @@ -2519,7 +2550,9 @@ product RALINK RT3070 0x3070 RT3070 product RALINK RT3071 0x3071 RT3071 product RALINK RT3072 0x3072 RT3072 +product RALINK RT3370 0x3370 RT3370 product RALINK RT3572 0x3572 RT3572 +product RALINK RT8070 0x8070 RT8070 product RALINK RT2570_3 0x9020 RT2500USB Wireless Adapter product RALINK RT2573_2 0x9021 RT2501USB Wireless Adapter @@ -2892,6 +2925,7 @@ /* Sweex products */ product SWEEX ZD1211 0x1809 ZD1211 +product SWEEX2 LW153 0x0153 LW153 product SWEEX2 LW303 0x0302 LW303 product SWEEX2 LW313 0x0313 LW313 @@ -2947,6 +2981,7 @@ /* Toshiba Corporation products */ product TOSHIBA POCKETPC_E740 0x0706 PocketPC e740 +product TOSHIBA RT3070 0x0a07 RT3070 product TOSHIBA G450 0x0d45 G450 modem product TOSHIBA HSDPA 0x1302 G450 modem @@ -3127,3 +3162,4 @@ product ZYXEL G220V2 0x340f G-220 v2 product ZYXEL G202 0x3410 G-202 product ZYXEL RT2870_1 0x3416 RT2870 +product ZYXEL RT2870_2 0x341a RT2870 ==== //depot/projects/usb/src/sys/dev/usb/wlan/if_run.c#7 (text+ko) ==== @@ -106,11 +106,20 @@ { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT2870_3) }, { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT2870_4) }, { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT2870_5) }, + { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT3070) }, { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT3070_1) }, { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT3070_2) }, { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT3070_3) }, { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT3070_4) }, + { USB_VP(USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_RT3070_5) }, { USB_VP(USB_VENDOR_AIRTIES, USB_PRODUCT_AIRTIES_RT3070) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT2070) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT2770) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT2870) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT3070) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT3071) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT3072) }, + { USB_VP(USB_VENDOR_ALLWIN, USB_PRODUCT_ALLWIN_RT3572) }, { USB_VP(USB_VENDOR_AMIGO, USB_PRODUCT_AMIGO_RT2870_1) }, { USB_VP(USB_VENDOR_AMIGO, USB_PRODUCT_AMIGO_RT2870_2) }, { USB_VP(USB_VENDOR_AMIT, USB_PRODUCT_AMIT_CGWLUSB2GNR) }, @@ -121,6 +130,8 @@ { USB_VP(USB_VENDOR_ASUS, USB_PRODUCT_ASUS_RT2870_3) }, { USB_VP(USB_VENDOR_ASUS, USB_PRODUCT_ASUS_RT2870_4) }, { USB_VP(USB_VENDOR_ASUS, USB_PRODUCT_ASUS_RT2870_5) }, + { USB_VP(USB_VENDOR_ASUS, USB_PRODUCT_ASUS_USBN13) }, + { USB_VP(USB_VENDOR_ASUS, USB_PRODUCT_ASUS_RT3070_1) }, { USB_VP(USB_VENDOR_ASUS2, USB_PRODUCT_ASUS2_USBN11) }, { USB_VP(USB_VENDOR_AZUREWAVE, USB_PRODUCT_AZUREWAVE_RT2870_1) }, { USB_VP(USB_VENDOR_AZUREWAVE, USB_PRODUCT_AZUREWAVE_RT2870_2) }, @@ -132,6 +143,8 @@ { USB_VP(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F6D4050V1) }, { USB_VP(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_RT2870_1) }, { USB_VP(USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_RT2870_2) }, + { USB_VP(USB_VENDOR_CISCOLINKSYS2, USB_PRODUCT_CISCOLINKSYS2_RT3070) }, + { USB_VP(USB_VENDOR_CISCOLINKSYS3, USB_PRODUCT_CISCOLINKSYS2_RT3070) }, { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT2870_1) }, { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT2870_2) }, { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT2870_3) }, @@ -140,6 +153,8 @@ { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT2870_6) }, { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT2870_7) }, { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT2870_8) }, + { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT3070_1) }, + { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_RT3070_2) }, { USB_VP(USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_VIGORN61) }, { USB_VP(USB_VENDOR_COREGA, USB_PRODUCT_COREGA_CGWLUSB300GNM) }, { USB_VP(USB_VENDOR_COREGA, USB_PRODUCT_COREGA_RT2870_1) }, @@ -156,7 +171,9 @@ { USB_VP(USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_RT3070_2) }, { USB_VP(USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_RT3070_3) }, { USB_VP(USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_RT3070_4) }, + { USB_VP(USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_RT3070_5) }, { USB_VP(USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_RT3072) }, + { USB_VP(USB_VENDOR_DLINK2, USB_PRODUCT_DLINK2_RT3072_1) }, { USB_VP(USB_VENDOR_EDIMAX, USB_PRODUCT_EDIMAX_EW7717) }, { USB_VP(USB_VENDOR_EDIMAX, USB_PRODUCT_EDIMAX_EW7718) }, { USB_VP(USB_VENDOR_EDIMAX, USB_PRODUCT_EDIMAX_RT2870_1) }, @@ -177,6 +194,7 @@ { USB_VP(USB_VENDOR_IODATA, USB_PRODUCT_IODATA_RT3072_2) }, { USB_VP(USB_VENDOR_IODATA, USB_PRODUCT_IODATA_RT3072_3) }, { USB_VP(USB_VENDOR_IODATA, USB_PRODUCT_IODATA_RT3072_4) }, + { USB_VP(USB_VENDOR_LINKSYS4, USB_PRODUCT_LINKSYS4_RT3070) }, { USB_VP(USB_VENDOR_LINKSYS4, USB_PRODUCT_LINKSYS4_WUSB100) }, { USB_VP(USB_VENDOR_LINKSYS4, USB_PRODUCT_LINKSYS4_WUSB54GCV3) }, { USB_VP(USB_VENDOR_LINKSYS4, USB_PRODUCT_LINKSYS4_WUSB600N) }, @@ -184,10 +202,13 @@ { USB_VP(USB_VENDOR_LOGITEC, USB_PRODUCT_LOGITEC_RT2870_1) }, { USB_VP(USB_VENDOR_LOGITEC, USB_PRODUCT_LOGITEC_RT2870_2) }, { USB_VP(USB_VENDOR_LOGITEC, USB_PRODUCT_LOGITEC_RT2870_3) }, + { USB_VP(USB_VENDOR_MELCO, USB_PRODUCT_MELCO_RT2870_1) }, + { USB_VP(USB_VENDOR_MELCO, USB_PRODUCT_MELCO_RT2870_2) }, { USB_VP(USB_VENDOR_MELCO, USB_PRODUCT_MELCO_WLIUCAG300N) }, { USB_VP(USB_VENDOR_MELCO, USB_PRODUCT_MELCO_WLIUCG300N) }, { USB_VP(USB_VENDOR_MELCO, USB_PRODUCT_MELCO_WLIUCGN) }, { USB_VP(USB_VENDOR_MOTOROLA4, USB_PRODUCT_MOTOROLA4_RT2770) }, + { USB_VP(USB_VENDOR_MOTOROLA4, USB_PRODUCT_MOTOROLA4_RT3070) }, { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_1) }, { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_2) }, { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_3) }, @@ -195,10 +216,16 @@ { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_5) }, { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_6) }, { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_7) }, + { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_8) }, + { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_9) }, + { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_10) }, + { USB_VP(USB_VENDOR_MSI, USB_PRODUCT_MSI_RT3070_11) }, + { USB_VP(USB_VENDOR_OVISLINK, USB_PRODUCT_OVISLINK_RT3072) }, { USB_VP(USB_VENDOR_PARA, USB_PRODUCT_PARA_RT3070) }, { USB_VP(USB_VENDOR_PEGATRON, USB_PRODUCT_PEGATRON_RT2870) }, { USB_VP(USB_VENDOR_PEGATRON, USB_PRODUCT_PEGATRON_RT3070) }, { USB_VP(USB_VENDOR_PEGATRON, USB_PRODUCT_PEGATRON_RT3070_2) }, + { USB_VP(USB_VENDOR_PEGATRON, USB_PRODUCT_PEGATRON_RT3070_3) }, { USB_VP(USB_VENDOR_PHILIPS, USB_PRODUCT_PHILIPS_RT2870) }, { USB_VP(USB_VENDOR_PLANEX2, USB_PRODUCT_PLANEX2_GWUS300MINIS) }, { USB_VP(USB_VENDOR_PLANEX2, USB_PRODUCT_PLANEX2_GWUSMICRON) }, @@ -212,7 +239,9 @@ { USB_VP(USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT3070) }, { USB_VP(USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT3071) }, { USB_VP(USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT3072) }, + { USB_VP(USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT3370) }, { USB_VP(USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT3572) }, + { USB_VP(USB_VENDOR_RALINK, USB_PRODUCT_RALINK_RT8070) }, { USB_VP(USB_VENDOR_SAMSUNG2, USB_PRODUCT_SAMSUNG2_RT2870_1) }, { USB_VP(USB_VENDOR_SENAO, USB_PRODUCT_SENAO_RT2870_1) }, { USB_VP(USB_VENDOR_SENAO, USB_PRODUCT_SENAO_RT2870_2) }, @@ -244,8 +273,10 @@ { USB_VP(USB_VENDOR_SITECOMEU, USB_PRODUCT_SITECOMEU_WL608) }, { USB_VP(USB_VENDOR_SPARKLAN, USB_PRODUCT_SPARKLAN_RT2870_1) }, { USB_VP(USB_VENDOR_SPARKLAN, USB_PRODUCT_SPARKLAN_RT3070) }, + { USB_VP(USB_VENDOR_SWEEX2, USB_PRODUCT_SWEEX2_LW153) }, { USB_VP(USB_VENDOR_SWEEX2, USB_PRODUCT_SWEEX2_LW303) }, { USB_VP(USB_VENDOR_SWEEX2, USB_PRODUCT_SWEEX2_LW313) }, + { USB_VP(USB_VENDOR_TOSHIBA, USB_PRODUCT_TOSHIBA_RT3070) }, { USB_VP(USB_VENDOR_UMEDIA, USB_PRODUCT_UMEDIA_RT2870_1) }, { USB_VP(USB_VENDOR_ZCOM, USB_PRODUCT_ZCOM_RT2870_1) }, { USB_VP(USB_VENDOR_ZCOM, USB_PRODUCT_ZCOM_RT2870_2) }, @@ -255,6 +286,7 @@ { USB_VP(USB_VENDOR_ZINWELL, USB_PRODUCT_ZINWELL_RT3072_1) }, { USB_VP(USB_VENDOR_ZINWELL, USB_PRODUCT_ZINWELL_RT3072_2) }, { USB_VP(USB_VENDOR_ZYXEL, USB_PRODUCT_ZYXEL_RT2870_1) }, + { USB_VP(USB_VENDOR_ZYXEL, USB_PRODUCT_ZYXEL_RT2870_2) }, }; MODULE_DEPEND(run, wlan, 1, 1, 1); @@ -818,7 +850,9 @@ const uint64_t *temp; uint64_t bytes; + RUN_UNLOCK(sc); fw = firmware_get("runfw"); + RUN_LOCK(sc); if(fw == NULL){ device_printf(sc->sc_dev, "failed loadfirmware of file %s\n", "runfw"); @@ -843,9 +877,7 @@ (sc->mac_ver) != 0x2872 && (sc->mac_ver) != 0x3070){ base += 4096; - device_printf(sc->sc_dev, "loading RT3071 firmware\n"); - } else - device_printf(sc->sc_dev, "loading RT2870 firmware\n"); + } /* cheap sanity check */ temp = fw->data; @@ -893,7 +925,8 @@ error = ETIMEDOUT; goto fail; } - DPRINTF("microcode successfully loaded after %d tries\n", ntries); + device_printf(sc->sc_dev, "firmware %s loaded\n", + (base == fw->data) ? "RT2870" : "RT3071"); fail: firmware_put(fw, FIRMWARE_UNLOAD); From owner-p4-projects@FreeBSD.ORG Thu Mar 4 20:52:32 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id CEE45106567A; Thu, 4 Mar 2010 20:52:32 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 931AC1065678 for ; Thu, 4 Mar 2010 20:52:32 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 64E2E8FC18 for ; Thu, 4 Mar 2010 20:52:32 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o24KqWRT093399 for ; Thu, 4 Mar 2010 20:52:32 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o24KqWr8093397 for perforce@freebsd.org; Thu, 4 Mar 2010 20:52:32 GMT (envelope-from hselasky@FreeBSD.org) Date: Thu, 4 Mar 2010 20:52:32 GMT Message-Id: <201003042052.o24KqWr8093397@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175356 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Mar 2010 20:52:33 -0000 http://p4web.freebsd.org/chv.cgi?CH=175356 Change 175356 by hselasky@hselasky_laptop001 on 2010/03/04 20:51:47 USB CORE (LibUSB/UGEN): - implement kernel driver detach functionality. - patch by: HPS @ Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usb_device.c#64 edit .. //depot/projects/usb/src/sys/dev/usb/usb_device.h#33 edit .. //depot/projects/usb/src/sys/dev/usb/usb_generic.c#25 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usb_device.c#64 (text+ko) ==== @@ -80,7 +80,6 @@ static void usb_init_endpoint(struct usb_device *, uint8_t, struct usb_endpoint_descriptor *, struct usb_endpoint *); static void usb_unconfigure(struct usb_device *, uint8_t); -static void usb_detach_device(struct usb_device *, uint8_t, uint8_t); static void usb_detach_device_sub(struct usb_device *, device_t *, uint8_t); static uint8_t usb_probe_and_attach_sub(struct usb_device *, ==== //depot/projects/usb/src/sys/dev/usb/usb_device.h#33 (text+ko) ==== @@ -196,6 +196,7 @@ enum usb_dev_speed speed, enum usb_hc_mode mode); usb_error_t usb_probe_and_attach(struct usb_device *udev, uint8_t iface_index); +void usb_detach_device(struct usb_device *, uint8_t, uint8_t); usb_error_t usb_reset_iface_endpoints(struct usb_device *udev, uint8_t iface_index); usb_error_t usbd_set_config_index(struct usb_device *udev, uint8_t index); ==== //depot/projects/usb/src/sys/dev/usb/usb_generic.c#25 (text+ko) ==== @@ -2095,17 +2095,32 @@ break; case USB_IFACE_DRIVER_ACTIVE: - /* TODO */ - *u.pint = 0; + + n = *u.pint & 0xFF; + + iface = usbd_get_iface(f->udev, n); + + if (iface && iface->subdev) + error = 0; + else + error = ENXIO; break; case USB_IFACE_DRIVER_DETACH: - /* TODO */ + error = priv_check(curthread, PRIV_DRIVER); - if (error) { + + if (error) + break; + + n = *u.pint & 0xFF; + + if (n == USB_IFACE_INDEX_ANY) { + error = EINVAL; break; } - error = EINVAL; + + usb_detach_device(f->udev, n, 0); break; case USB_SET_POWER_MODE: From owner-p4-projects@FreeBSD.ORG Fri Mar 5 13:57:48 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 289361065672; Fri, 5 Mar 2010 13:57:48 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C726F106566B for ; Fri, 5 Mar 2010 13:57:47 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B29CF8FC27 for ; Fri, 5 Mar 2010 13:57:47 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25Dvldq088419 for ; Fri, 5 Mar 2010 13:57:47 GMT (envelope-from raj@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25DviN8088413 for perforce@freebsd.org; Fri, 5 Mar 2010 13:57:44 GMT (envelope-from raj@freebsd.org) Date: Fri, 5 Mar 2010 13:57:44 GMT Message-Id: <201003051357.o25DviN8088413@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to raj@freebsd.org using -f From: Rafal Jaworowski To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175370 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 13:57:48 -0000 http://p4web.freebsd.org/chv.cgi?CH=175370 Change 175370 by raj@raj_fdt on 2010/03/05 13:57:44 IFC @175368 Affected files ... .. //depot/projects/fdt/Makefile#5 integrate .. //depot/projects/fdt/ObsoleteFiles.inc#9 integrate .. //depot/projects/fdt/bin/ed/Makefile#2 integrate .. //depot/projects/fdt/bin/ed/main.c#2 integrate .. //depot/projects/fdt/bin/pkill/pkill.1#3 integrate .. //depot/projects/fdt/bin/pkill/pkill.c#4 integrate .. //depot/projects/fdt/cddl/Makefile.inc#2 integrate .. //depot/projects/fdt/cddl/lib/drti/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libavl/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libctf/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libdtrace/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libnvpair/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libumem/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libuutil/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libzfs/Makefile#2 integrate .. //depot/projects/fdt/cddl/lib/libzpool/Makefile#2 integrate .. //depot/projects/fdt/cddl/sbin/zfs/Makefile#2 integrate .. //depot/projects/fdt/cddl/sbin/zpool/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.bin/ctfconvert/Makefile#3 integrate .. //depot/projects/fdt/cddl/usr.bin/ctfdump/Makefile#3 integrate .. //depot/projects/fdt/cddl/usr.bin/ctfmerge/Makefile#3 integrate .. //depot/projects/fdt/cddl/usr.bin/sgsmsg/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.bin/zinject/Makefile#3 integrate .. //depot/projects/fdt/cddl/usr.bin/ztest/Makefile#2 integrate .. //depot/projects/fdt/cddl/usr.sbin/dtrace/Makefile#3 integrate .. //depot/projects/fdt/cddl/usr.sbin/lockstat/Makefile#3 integrate .. //depot/projects/fdt/cddl/usr.sbin/zdb/Makefile#2 integrate .. //depot/projects/fdt/contrib/bind9/CHANGES#4 integrate .. //depot/projects/fdt/contrib/bind9/COPYRIGHT#2 integrate .. //depot/projects/fdt/contrib/bind9/FAQ#3 integrate .. //depot/projects/fdt/contrib/bind9/FAQ.xml#3 integrate .. //depot/projects/fdt/contrib/bind9/NSEC3-NOTES#2 integrate .. //depot/projects/fdt/contrib/bind9/README#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/check/named-checkconf.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/check/named-checkconf.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/check/named-checkzone.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/check/named-checkzone.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/check/named-checkzone.docbook#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/check/named-checkzone.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/dig.1#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/dig.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/dighost.c#3 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/host.1#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/host.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/host.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/nslookup.1#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/nslookup.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dig/nslookup.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keygen.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keygen.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keygen.docbook#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-keygen.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-signzone.8#3 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-signzone.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-signzone.docbook#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssec-signzone.html#3 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssectool.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/dnssec/dnssectool.h#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/control.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/include/named/server.h#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/lwresd.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/lwresd.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/named.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/named.conf.5#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/named.conf.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/named.docbook#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/named.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/query.c#4 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/server.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/statschannel.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/named/update.c#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/nsupdate/nsupdate.1#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/nsupdate/nsupdate.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/rndc/rndc-confgen.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/rndc/rndc-confgen.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/rndc/rndc.8#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/rndc/rndc.conf.5#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/rndc/rndc.conf.html#2 integrate .. //depot/projects/fdt/contrib/bind9/bin/rndc/rndc.html#2 integrate .. //depot/projects/fdt/contrib/bind9/config.h.in#2 integrate .. //depot/projects/fdt/contrib/bind9/configure.in#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM-book.xml#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch01.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch02.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch03.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch04.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch05.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch06.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch07.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch08.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch09.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.ch10.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/Bv9ARM.pdf#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.dig.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.dnssec-keygen.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.dnssec-signzone.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.host.html#2 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.named-checkconf.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.named-checkzone.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.named.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.nsupdate.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.rndc-confgen.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.rndc.conf.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/arm/man.rndc.html#3 integrate .. //depot/projects/fdt/contrib/bind9/doc/misc/Makefile.in#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/api#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/db.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/dispatch.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/dnssec.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/dst_api.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/dst_internal.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/dst_parse.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/db.h#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/dnssec.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/journal.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/keyvalues.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/name.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/ncache.h#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/nsec3.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/rbt.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/types.h#4 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dns/zone.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/include/dst/dst.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/journal.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/masterdump.c#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/message.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/nsec3.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/opensslrsa_link.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/rbt.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/rbtdb.c#4 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/rcode.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/resolver.c#4 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/sdb.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/sdlz.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/spnego.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/validator.c#4 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/view.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/dns/zone.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/api#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/base32.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/base64.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/heap.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/httpd.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/ia64/include/isc/atomic.h#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/include/isc/entropy.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/include/isc/netscope.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/include/isc/portset.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/include/isc/sha2.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/include/isc/util.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/inet_ntop.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/powerpc/include/isc/atomic.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/random.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/sha2.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/unix/ifiter_getifaddrs.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isc/unix/socket.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isccc/api#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isccfg/aclconf.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isccfg/api#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/isccfg/include/isccfg/namedconf.h#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/api#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/context.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/getipnode.c#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_buffer.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_buffer.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_config.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_config.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_context.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_context.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gabn.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gabn.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gethostent.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gethostent.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getipnode.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getipnode.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gnba.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_gnba.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_hstrerror.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_hstrerror.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_inetntop.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_inetntop.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_noop.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_noop.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_packet.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_packet.html#3 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_resutil.3#2 integrate .. //depot/projects/fdt/contrib/bind9/lib/lwres/man/lwres_resutil.html#3 integrate .. //depot/projects/fdt/contrib/bind9/version#4 integrate .. //depot/projects/fdt/contrib/csup/GNUmakefile#2 delete .. //depot/projects/fdt/contrib/csup/Makefile#3 delete .. //depot/projects/fdt/contrib/csup/README#2 delete .. //depot/projects/fdt/contrib/csup/TODO#3 delete .. //depot/projects/fdt/contrib/csup/attrstack.c#2 delete .. //depot/projects/fdt/contrib/csup/attrstack.h#2 delete .. //depot/projects/fdt/contrib/csup/auth.c#2 delete .. //depot/projects/fdt/contrib/csup/auth.h#2 delete .. //depot/projects/fdt/contrib/csup/config.c#2 delete .. //depot/projects/fdt/contrib/csup/config.h#3 delete .. //depot/projects/fdt/contrib/csup/cpasswd.1#2 delete .. //depot/projects/fdt/contrib/csup/cpasswd.sh#2 delete .. //depot/projects/fdt/contrib/csup/csup.1#3 delete .. //depot/projects/fdt/contrib/csup/detailer.c#2 delete .. //depot/projects/fdt/contrib/csup/detailer.h#2 delete .. //depot/projects/fdt/contrib/csup/diff.c#2 delete .. //depot/projects/fdt/contrib/csup/diff.h#2 delete .. //depot/projects/fdt/contrib/csup/fattr.c#2 delete .. //depot/projects/fdt/contrib/csup/fattr.h#2 delete .. //depot/projects/fdt/contrib/csup/fattr_bsd.h#2 delete .. //depot/projects/fdt/contrib/csup/fattr_posix.h#2 delete .. //depot/projects/fdt/contrib/csup/fixups.c#2 delete .. //depot/projects/fdt/contrib/csup/fixups.h#2 delete .. //depot/projects/fdt/contrib/csup/fnmatch.c#2 delete .. //depot/projects/fdt/contrib/csup/fnmatch.h#2 delete .. //depot/projects/fdt/contrib/csup/globtree.c#2 delete .. //depot/projects/fdt/contrib/csup/globtree.h#2 delete .. //depot/projects/fdt/contrib/csup/idcache.c#2 delete .. //depot/projects/fdt/contrib/csup/idcache.h#2 delete .. //depot/projects/fdt/contrib/csup/keyword.c#2 delete .. //depot/projects/fdt/contrib/csup/keyword.h#2 delete .. //depot/projects/fdt/contrib/csup/lex.rcs.c#2 delete .. //depot/projects/fdt/contrib/csup/lister.c#2 delete .. //depot/projects/fdt/contrib/csup/lister.h#2 delete .. //depot/projects/fdt/contrib/csup/main.c#3 delete .. //depot/projects/fdt/contrib/csup/main.h#2 delete .. //depot/projects/fdt/contrib/csup/misc.c#2 delete .. //depot/projects/fdt/contrib/csup/misc.h#2 delete .. //depot/projects/fdt/contrib/csup/mux.c#2 delete .. //depot/projects/fdt/contrib/csup/mux.h#2 delete .. //depot/projects/fdt/contrib/csup/parse.y#2 delete .. //depot/projects/fdt/contrib/csup/pathcomp.c#2 delete .. //depot/projects/fdt/contrib/csup/pathcomp.h#2 delete .. //depot/projects/fdt/contrib/csup/proto.c#3 delete .. //depot/projects/fdt/contrib/csup/proto.h#2 delete .. //depot/projects/fdt/contrib/csup/queue.h#2 delete .. //depot/projects/fdt/contrib/csup/rcsfile.c#2 delete .. //depot/projects/fdt/contrib/csup/rcsfile.h#2 delete .. //depot/projects/fdt/contrib/csup/rcsparse.c#2 delete .. //depot/projects/fdt/contrib/csup/rcsparse.h#2 delete .. //depot/projects/fdt/contrib/csup/rcstokenizer.h#2 delete .. //depot/projects/fdt/contrib/csup/rcstokenizer.l#2 delete .. //depot/projects/fdt/contrib/csup/rsyncfile.c#2 delete .. //depot/projects/fdt/contrib/csup/rsyncfile.h#2 delete .. //depot/projects/fdt/contrib/csup/status.c#2 delete .. //depot/projects/fdt/contrib/csup/status.h#2 delete .. //depot/projects/fdt/contrib/csup/stream.c#2 delete .. //depot/projects/fdt/contrib/csup/stream.h#2 delete .. //depot/projects/fdt/contrib/csup/threads.c#2 delete .. //depot/projects/fdt/contrib/csup/threads.h#2 delete .. //depot/projects/fdt/contrib/csup/token.h#2 delete .. //depot/projects/fdt/contrib/csup/token.l#2 delete .. //depot/projects/fdt/contrib/csup/updater.c#2 delete .. //depot/projects/fdt/contrib/csup/updater.h#2 delete .. //depot/projects/fdt/contrib/dtc/Documentation/dtc-paper.bib#2 integrate .. //depot/projects/fdt/contrib/dtc/Documentation/dtc-paper.tex#2 integrate .. //depot/projects/fdt/contrib/dtc/Documentation/dts-format.txt#2 integrate .. //depot/projects/fdt/contrib/dtc/Documentation/manual.txt#2 integrate .. //depot/projects/fdt/contrib/dtc/GPL#2 integrate .. //depot/projects/fdt/contrib/dtc/Makefile#2 integrate .. //depot/projects/fdt/contrib/dtc/Makefile.convert-dtsv0#2 integrate .. //depot/projects/fdt/contrib/dtc/Makefile.ftdump#2 integrate .. //depot/projects/fdt/contrib/dtc/README.license#2 integrate .. //depot/projects/fdt/contrib/dtc/TODO#2 integrate .. //depot/projects/fdt/contrib/dtc/checks.c#2 integrate .. //depot/projects/fdt/contrib/dtc/convert-dtsv0-lexer.l#2 integrate .. //depot/projects/fdt/contrib/dtc/data.c#2 integrate .. //depot/projects/fdt/contrib/dtc/dtc-lexer.l#2 integrate .. //depot/projects/fdt/contrib/dtc/dtc-parser.y#2 integrate .. //depot/projects/fdt/contrib/dtc/dtc.c#2 integrate .. //depot/projects/fdt/contrib/dtc/dtc.h#2 integrate .. //depot/projects/fdt/contrib/dtc/flattree.c#2 integrate .. //depot/projects/fdt/contrib/dtc/fstree.c#2 integrate .. //depot/projects/fdt/contrib/dtc/ftdump.c#2 integrate .. //depot/projects/fdt/contrib/dtc/libfdt/Makefile.libfdt#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/TODO#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt.c#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt.h#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_ro.c#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_rw.c#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_strerror.c#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_sw.c#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_wip.c#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/libfdt.h#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/libfdt_env.h#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/libfdt_internal.h#1 branch .. //depot/projects/fdt/contrib/dtc/libfdt/version.lds#1 branch .. //depot/projects/fdt/contrib/dtc/livetree.c#2 integrate .. //depot/projects/fdt/contrib/dtc/scripts/setlocalversion#2 integrate .. //depot/projects/fdt/contrib/dtc/srcpos.c#2 integrate .. //depot/projects/fdt/contrib/dtc/srcpos.h#2 integrate .. //depot/projects/fdt/contrib/dtc/treesource.c#2 integrate .. //depot/projects/fdt/contrib/dtc/util.c#2 integrate .. //depot/projects/fdt/contrib/dtc/util.h#2 integrate .. //depot/projects/fdt/contrib/gcc/config/mips/freebsd.h#3 integrate .. //depot/projects/fdt/contrib/tzdata/southamerica#2 integrate .. //depot/projects/fdt/gnu/usr.bin/binutils/ld/Makefile.mips#3 integrate .. //depot/projects/fdt/gnu/usr.bin/binutils/ld/elf32btsmipn32_fbsd.sh#1 branch .. //depot/projects/fdt/gnu/usr.bin/binutils/ld/elf32ltsmipn32_fbsd.sh#1 branch .. //depot/projects/fdt/gnu/usr.bin/binutils/ld/genscripts.sh#2 integrate .. //depot/projects/fdt/gnu/usr.bin/dtc/Makefile#4 integrate .. //depot/projects/fdt/include/Makefile#6 integrate .. //depot/projects/fdt/include/utmp.h#3 delete .. //depot/projects/fdt/lib/Makefile#6 integrate .. //depot/projects/fdt/lib/bind/config.h#3 integrate .. //depot/projects/fdt/lib/csu/mips/crt1.c#2 integrate .. //depot/projects/fdt/lib/csu/mips/crti.S#2 integrate .. //depot/projects/fdt/lib/csu/mips/crtn.S#2 integrate .. //depot/projects/fdt/lib/libalias/Makefile.inc#1 branch .. //depot/projects/fdt/lib/libalias/libalias/Makefile#2 integrate .. //depot/projects/fdt/lib/libarchive/test/Makefile#3 integrate .. //depot/projects/fdt/lib/libbsnmp/Makefile.inc#2 integrate .. //depot/projects/fdt/lib/libbsnmp/libbsnmp/Makefile#2 integrate .. //depot/projects/fdt/lib/libc/arm/gen/makecontext.c#2 integrate .. //depot/projects/fdt/lib/libc/arm/string/bzero.S#2 integrate .. //depot/projects/fdt/lib/libc/arm/string/memcpy_arm.S#2 integrate .. //depot/projects/fdt/lib/libc/arm/string/memmove.S#2 integrate .. //depot/projects/fdt/lib/libc/gen/fmtcheck.3#2 integrate .. //depot/projects/fdt/lib/libc/gen/stringlist.3#2 integrate .. //depot/projects/fdt/lib/libc/include/reentrant.h#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_add_flag_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_clear_flags_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_delete_flag_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_get_brand_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_get_entry_type_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_get_flag_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_get_flagset_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_set_entry_type_np.3#2 integrate .. //depot/projects/fdt/lib/libc/posix1e/acl_set_flagset_np.3#2 integrate .. //depot/projects/fdt/lib/libc/powerpc/gen/fpgetmask.c#2 integrate .. //depot/projects/fdt/lib/libc/powerpc/gen/fpgetround.c#2 integrate .. //depot/projects/fdt/lib/libc/powerpc/gen/fpgetsticky.c#2 integrate .. //depot/projects/fdt/lib/libc/powerpc/gen/fpsetmask.c#2 integrate .. //depot/projects/fdt/lib/libc/powerpc/gen/fpsetround.c#2 integrate .. //depot/projects/fdt/lib/libc/sparc64/fpu/fpu_extern.h#2 integrate .. //depot/projects/fdt/lib/libc/stdlib/malloc.c#7 integrate .. //depot/projects/fdt/lib/libc/stdlib/rb.h#2 integrate .. //depot/projects/fdt/lib/libc/stdlib/reallocf.c#2 integrate .. //depot/projects/fdt/lib/libc/sys/mlockall.2#2 integrate .. //depot/projects/fdt/lib/libc/sys/ntp_adjtime.2#2 integrate .. //depot/projects/fdt/lib/libc/sys/utrace.2#2 integrate .. //depot/projects/fdt/lib/libedit/editline.3#2 integrate .. //depot/projects/fdt/lib/libedit/editrc.5#2 integrate .. //depot/projects/fdt/lib/libedit/read.h#2 integrate .. //depot/projects/fdt/lib/libkvm/Makefile#3 integrate .. //depot/projects/fdt/lib/libkvm/kvm.c#2 integrate .. //depot/projects/fdt/lib/libkvm/kvm.h#2 integrate .. //depot/projects/fdt/lib/libkvm/kvm_getpcpu.3#2 integrate .. //depot/projects/fdt/lib/libkvm/kvm_pcpu.c#2 integrate .. //depot/projects/fdt/lib/libkvm/kvm_private.h#2 integrate .. //depot/projects/fdt/lib/libpam/Makefile.inc#2 integrate .. //depot/projects/fdt/lib/libpam/modules/Makefile.inc#3 integrate .. //depot/projects/fdt/lib/libpam/modules/pam_krb5/Makefile#4 integrate .. //depot/projects/fdt/lib/libpmc/libpmc.c#4 integrate .. //depot/projects/fdt/lib/libpmc/pmc.mips.3#1 branch .. //depot/projects/fdt/lib/libsm/Makefile#3 integrate .. //depot/projects/fdt/lib/libutil/humanize_number.3#2 integrate .. //depot/projects/fdt/libexec/rtld-elf/mips/reloc.c#2 integrate .. //depot/projects/fdt/libexec/rtld-elf/mips/rtld_start.S#2 integrate .. //depot/projects/fdt/sbin/ddb/Makefile#2 integrate .. //depot/projects/fdt/sbin/geom/class/cache/gcache.8#2 integrate .. //depot/projects/fdt/sbin/geom/class/mountver/gmountver.8#2 integrate .. //depot/projects/fdt/sbin/gvinum/gvinum.c#2 integrate .. //depot/projects/fdt/sbin/hastctl/Makefile#2 integrate .. //depot/projects/fdt/sbin/hastd/Makefile#2 integrate .. //depot/projects/fdt/sbin/ipf/ipftest/Makefile#2 integrate .. //depot/projects/fdt/sbin/ipfw/Makefile#3 integrate .. //depot/projects/fdt/sbin/ipfw/altq.c#2 integrate .. //depot/projects/fdt/sbin/ipfw/dummynet.c#5 integrate .. //depot/projects/fdt/sbin/ipfw/ipfw.8#3 integrate .. //depot/projects/fdt/sbin/ipfw/ipfw2.c#3 integrate .. //depot/projects/fdt/sbin/ipfw/ipfw2.h#3 integrate .. //depot/projects/fdt/sbin/ipfw/main.c#2 integrate .. //depot/projects/fdt/sbin/newfs/Makefile#3 integrate .. //depot/projects/fdt/sbin/newfs/mkfs.c#4 integrate .. //depot/projects/fdt/sbin/newfs/newfs.c#3 integrate .. //depot/projects/fdt/sbin/newfs/newfs.h#3 integrate .. //depot/projects/fdt/share/examples/autofs/driver/Makefile#2 integrate .. //depot/projects/fdt/share/man/man4/ada.4#2 integrate .. //depot/projects/fdt/share/man/man4/ahci.4#3 integrate .. //depot/projects/fdt/share/man/man4/ata.4#4 integrate .. //depot/projects/fdt/share/man/man4/cd.4#2 integrate .. //depot/projects/fdt/share/man/man4/ch.4#2 integrate .. //depot/projects/fdt/share/man/man4/da.4#2 integrate .. //depot/projects/fdt/share/man/man4/ehci.4#2 integrate .. //depot/projects/fdt/share/man/man4/gem.4#3 integrate .. //depot/projects/fdt/share/man/man4/gre.4#2 integrate .. //depot/projects/fdt/share/man/man4/hme.4#3 integrate .. //depot/projects/fdt/share/man/man4/man4.sparc64/sbus.4#2 integrate .. //depot/projects/fdt/share/man/man4/msk.4#3 integrate .. //depot/projects/fdt/share/man/man4/ng_ipfw.4#2 integrate .. //depot/projects/fdt/share/man/man4/ohci.4#2 integrate .. //depot/projects/fdt/share/man/man4/pass.4#2 integrate .. //depot/projects/fdt/share/man/man4/pt.4#2 integrate .. //depot/projects/fdt/share/man/man4/sa.4#2 integrate .. //depot/projects/fdt/share/man/man4/scsi.4#2 integrate .. //depot/projects/fdt/share/man/man4/siis.4#2 integrate .. //depot/projects/fdt/share/man/man4/snd_uaudio.4#3 integrate .. //depot/projects/fdt/share/man/man4/stge.4#2 integrate .. //depot/projects/fdt/share/man/man4/ubsa.4#2 integrate .. //depot/projects/fdt/share/man/man4/ucom.4#3 integrate .. //depot/projects/fdt/share/man/man4/udbp.4#2 integrate .. //depot/projects/fdt/share/man/man4/uftdi.4#2 integrate .. //depot/projects/fdt/share/man/man4/ugen.4#2 integrate .. //depot/projects/fdt/share/man/man4/uhci.4#2 integrate .. //depot/projects/fdt/share/man/man4/uhid.4#2 integrate .. //depot/projects/fdt/share/man/man4/ukbd.4#2 integrate .. //depot/projects/fdt/share/man/man4/ulpt.4#2 integrate .. //depot/projects/fdt/share/man/man4/umass.4#3 integrate .. //depot/projects/fdt/share/man/man4/umodem.4#2 integrate .. //depot/projects/fdt/share/man/man4/ums.4#2 integrate .. //depot/projects/fdt/share/man/man4/uplcom.4#2 integrate .. //depot/projects/fdt/share/man/man4/usb.4#2 integrate .. //depot/projects/fdt/share/man/man4/uvisor.4#2 integrate .. //depot/projects/fdt/share/man/man4/uvscom.4#2 integrate .. //depot/projects/fdt/share/man/man5/core.5#2 integrate .. //depot/projects/fdt/share/man/man9/driver.9#2 integrate .. //depot/projects/fdt/share/man/man9/kernacc.9#2 integrate .. //depot/projects/fdt/share/man/man9/malloc.9#2 integrate .. //depot/projects/fdt/share/man/man9/mi_switch.9#2 integrate .. //depot/projects/fdt/share/man/man9/physio.9#2 integrate .. //depot/projects/fdt/share/man/man9/psignal.9#2 integrate .. //depot/projects/fdt/share/man/man9/timeout.9#2 integrate .. //depot/projects/fdt/share/man/man9/vslock.9#2 integrate .. //depot/projects/fdt/share/mk/bsd.cpu.mk#3 integrate .. //depot/projects/fdt/sys/amd64/amd64/local_apic.c#3 integrate .. //depot/projects/fdt/sys/amd64/amd64/mca.c#3 integrate .. //depot/projects/fdt/sys/amd64/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/amd64/include/apicvar.h#3 integrate .. //depot/projects/fdt/sys/compat/linux/linux_getcwd.c#2 integrate .. //depot/projects/fdt/sys/compat/linux/linux_time.c#2 integrate .. //depot/projects/fdt/sys/conf/NOTES#12 integrate .. //depot/projects/fdt/sys/conf/files#16 integrate .. //depot/projects/fdt/sys/conf/files.mips#5 integrate .. //depot/projects/fdt/sys/conf/options#6 integrate .. //depot/projects/fdt/sys/dev/ata/ata-pci.h#7 integrate .. //depot/projects/fdt/sys/dev/ata/chipsets/ata-acerlabs.c#3 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_debug.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_decode.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_devid.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_eeprom.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_eeprom_v1.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_eeprom_v1.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_eeprom_v3.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_internal.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ah_soc.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210_beacon.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210_keycache.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210_power.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210desc.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210phy.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5210reg.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5210/ar5k_0007.ini#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211_beacon.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211_keycache.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211_power.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211_recv.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211desc.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211phy.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/ar5211reg.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5211/boss.ini#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212.ini#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212_eeprom.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212_keycache.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212desc.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5212phy.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5212/ar5311reg.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5312/ar5312_eeprom.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5312/ar5312_interrupts.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5312/ar5312_misc.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5312/ar5312_power.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5312/ar5312phy.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5312/ar5312reg.h#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c#4 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c#2 integrate .. //depot/projects/fdt/sys/dev/ath/ath_hal/ar5416/ar9285_attach.c#2 integrate .. //depot/projects/fdt/sys/dev/bwn/if_bwn.c#3 integrate .. //depot/projects/fdt/sys/dev/ciss/ciss.c#5 integrate .. //depot/projects/fdt/sys/dev/ciss/cissvar.h#2 integrate .. //depot/projects/fdt/sys/dev/cm/if_cm_isa.c#2 integrate .. //depot/projects/fdt/sys/dev/cm/smc90cx6.c#3 integrate .. //depot/projects/fdt/sys/dev/cm/smc90cx6reg.h#2 integrate .. //depot/projects/fdt/sys/dev/cm/smc90cx6var.h#3 integrate .. //depot/projects/fdt/sys/dev/hme/if_hme_sbus.c#2 integrate .. //depot/projects/fdt/sys/dev/hme/if_hmereg.h#2 integrate .. //depot/projects/fdt/sys/dev/hme/if_hmevar.h#2 integrate .. //depot/projects/fdt/sys/dev/hwpmc/hwpmc_mips.c#1 branch .. //depot/projects/fdt/sys/dev/hwpmc/hwpmc_mips24k.c#1 branch .. //depot/projects/fdt/sys/dev/hwpmc/hwpmc_mips24k.h#1 branch .. //depot/projects/fdt/sys/dev/hwpmc/pmc_events.h#3 integrate .. //depot/projects/fdt/sys/dev/ispfw/ispfw.c#2 integrate .. //depot/projects/fdt/sys/dev/le/am79900var.h#2 integrate .. //depot/projects/fdt/sys/dev/le/am7990var.h#2 integrate .. //depot/projects/fdt/sys/dev/le/if_le_ledma.c#2 integrate .. //depot/projects/fdt/sys/dev/le/lancevar.h#2 integrate .. //depot/projects/fdt/sys/dev/mfi/mfi_cam.c#2 integrate .. //depot/projects/fdt/sys/dev/mfi/mfi_pci.c#2 integrate .. //depot/projects/fdt/sys/dev/mii/bmtphyreg.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/e1000phy.c#2 integrate .. //depot/projects/fdt/sys/dev/mii/icsphyreg.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/lxtphyreg.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/mii.c#2 integrate .. //depot/projects/fdt/sys/dev/mii/mii_physubr.c#2 integrate .. //depot/projects/fdt/sys/dev/mii/miidevs#5 integrate .. //depot/projects/fdt/sys/dev/mii/miivar.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/nsphyreg.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/nsphyterreg.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/qsphyreg.h#2 integrate .. //depot/projects/fdt/sys/dev/mii/ukphy_subr.c#2 integrate .. //depot/projects/fdt/sys/dev/msk/if_msk.c#6 integrate .. //depot/projects/fdt/sys/dev/msk/if_mskreg.h#4 integrate .. //depot/projects/fdt/sys/dev/ofw/ofw_pci.h#2 integrate .. //depot/projects/fdt/sys/dev/siba/siba_bwn.c#2 integrate .. //depot/projects/fdt/sys/dev/siba/siba_core.c#3 integrate .. //depot/projects/fdt/sys/dev/stge/if_stge.c#3 integrate .. //depot/projects/fdt/sys/dev/stge/if_stgereg.h#2 integrate .. //depot/projects/fdt/sys/dev/uart/uart_bus_pci.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/controller/ehci.h#4 integrate .. //depot/projects/fdt/sys/dev/usb/controller/ehci_pci.c#6 integrate .. //depot/projects/fdt/sys/dev/usb/controller/ehcireg.h#2 integrate .. //depot/projects/fdt/sys/dev/usb/controller/ohci.h#2 integrate .. //depot/projects/fdt/sys/dev/usb/controller/ohci_pci.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/controller/ohcireg.h#2 integrate .. //depot/projects/fdt/sys/dev/usb/controller/uhci.h#2 integrate .. //depot/projects/fdt/sys/dev/usb/controller/uhci_pci.c#4 integrate .. //depot/projects/fdt/sys/dev/usb/controller/uhcireg.h#3 integrate .. //depot/projects/fdt/sys/dev/usb/input/uhid.c#4 integrate .. //depot/projects/fdt/sys/dev/usb/input/ukbd.c#5 integrate .. //depot/projects/fdt/sys/dev/usb/input/ums.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/serial/uftdi.c#6 integrate .. //depot/projects/fdt/sys/dev/usb/serial/ugensa.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/serial/uipaq.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/serial/ulpt.c#2 integrate .. //depot/projects/fdt/sys/dev/usb/serial/uvisor.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/usb_cdc.h#2 integrate .. //depot/projects/fdt/sys/dev/usb/usb_hid.c#3 integrate .. //depot/projects/fdt/sys/dev/usb/usbdevs#10 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_lookup.c#4 integrate .. //depot/projects/fdt/sys/fs/msdosfs/msdosfs_vfsops.c#3 integrate .. //depot/projects/fdt/sys/i386/i386/local_apic.c#3 integrate .. //depot/projects/fdt/sys/i386/i386/mca.c#3 integrate .. //depot/projects/fdt/sys/i386/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/i386/include/apicvar.h#3 integrate .. //depot/projects/fdt/sys/ia64/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/kern/imgact_elf.c#2 integrate .. //depot/projects/fdt/sys/kern/kern_gzio.c#1 branch .. //depot/projects/fdt/sys/kern/kern_resource.c#2 integrate .. //depot/projects/fdt/sys/kern/kern_sig.c#6 integrate .. //depot/projects/fdt/sys/kern/kern_thr.c#2 integrate .. //depot/projects/fdt/sys/kern/ksched.c#2 integrate .. //depot/projects/fdt/sys/kern/subr_param.c#4 integrate .. //depot/projects/fdt/sys/kern/vfs_syscalls.c#5 integrate .. //depot/projects/fdt/sys/mips/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/mips/include/asm.h#4 integrate .. //depot/projects/fdt/sys/mips/include/bus.h#3 integrate .. //depot/projects/fdt/sys/mips/include/cdefs.h#2 integrate .. //depot/projects/fdt/sys/mips/include/cpufunc.h#3 integrate .. //depot/projects/fdt/sys/mips/include/cpuinfo.h#3 integrate .. //depot/projects/fdt/sys/mips/include/pmc_mdep.h#2 integrate .. //depot/projects/fdt/sys/mips/include/ucontext.h#3 integrate .. //depot/projects/fdt/sys/mips/malta/gtreg.h#2 integrate .. //depot/projects/fdt/sys/mips/mips/busdma_machdep.c#4 integrate .. //depot/projects/fdt/sys/mips/mips/cpu.c#3 integrate .. //depot/projects/fdt/sys/mips/mips/exception.S#6 integrate .. //depot/projects/fdt/sys/mips/mips/locore.S#5 integrate .. //depot/projects/fdt/sys/mips/mips/mpboot.S#2 integrate .. //depot/projects/fdt/sys/mips/mips/support.S#3 integrate .. //depot/projects/fdt/sys/mips/rmi/ehcireg.h#3 integrate .. //depot/projects/fdt/sys/mips/rmi/ehcivar.h#3 integrate .. //depot/projects/fdt/sys/mips/rmi/files.xlr#4 integrate .. //depot/projects/fdt/sys/mips/rmi/iodi.c#4 integrate .. //depot/projects/fdt/sys/mips/rmi/xlr_pci.c#3 integrate .. //depot/projects/fdt/sys/mips/rmi/xls_ehci.c#3 integrate .. //depot/projects/fdt/sys/mips/sibyte/sb_machdep.c#4 integrate .. //depot/projects/fdt/sys/modules/ath/Makefile#3 integrate .. //depot/projects/fdt/sys/net/if_bridge.c#6 integrate .. //depot/projects/fdt/sys/net/if_ethersubr.c#5 integrate .. //depot/projects/fdt/sys/net/if_gre.c#2 integrate .. //depot/projects/fdt/sys/net/if_gre.h#2 integrate .. //depot/projects/fdt/sys/net/netisr.c#5 integrate .. //depot/projects/fdt/sys/net/netisr.h#3 integrate .. //depot/projects/fdt/sys/net/netisr_internal.h#1 branch .. //depot/projects/fdt/sys/net/radix.c#3 integrate .. //depot/projects/fdt/sys/net/zlib.h#2 integrate .. //depot/projects/fdt/sys/net/zutil.h#1 branch .. //depot/projects/fdt/sys/netinet/ip_dummynet.h#3 integrate .. //depot/projects/fdt/sys/netinet/ip_fw.h#5 integrate .. //depot/projects/fdt/sys/netinet/ip_gre.c#2 integrate .. //depot/projects/fdt/sys/netinet/ip_gre.h#2 integrate .. //depot/projects/fdt/sys/netinet/ipfw/dn_heap.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dn_heap.h#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dn_sched.h#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dn_sched_fifo.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dn_sched_qfq.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dn_sched_rr.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dn_sched_wf2q.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/dummynet.txt#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/ip_dn_glue.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/ip_dn_io.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/ip_dn_private.h#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/ip_dummynet.c#8 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw2.c#7 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw_dynamic.c#5 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw_log.c#5 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw_pfil.c#6 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw_private.h#5 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw_sockopt.c#6 integrate .. //depot/projects/fdt/sys/netinet/ipfw/ip_fw_table.c#5 integrate .. //depot/projects/fdt/sys/netinet/ipfw/test/Makefile#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/test/dn_test.h#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/test/main.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/test/mylist.h#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/test/test_dn_heap.c#1 branch .. //depot/projects/fdt/sys/netinet/ipfw/test/test_dn_sched.c#1 branch .. //depot/projects/fdt/sys/pc98/cbus/clock.c#4 integrate .. //depot/projects/fdt/sys/powerpc/aim/mmu_oea64.c#7 integrate .. //depot/projects/fdt/sys/powerpc/aim/ofwmagic.S#2 integrate .. //depot/projects/fdt/sys/powerpc/fpu/fpu_extern.h#2 integrate .. //depot/projects/fdt/sys/powerpc/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/powerpc/include/intr.h#2 integrate .. //depot/projects/fdt/sys/powerpc/include/spr.h#2 integrate .. //depot/projects/fdt/sys/powerpc/powermac/smu.c#3 integrate .. //depot/projects/fdt/sys/security/mac_biba/mac_biba.c#2 integrate .. //depot/projects/fdt/sys/security/mac_lomac/mac_lomac.c#3 integrate .. //depot/projects/fdt/sys/security/mac_mls/mac_mls.c#2 integrate .. //depot/projects/fdt/sys/sparc64/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/sparc64/sbus/lsi64854reg.h#2 integrate .. //depot/projects/fdt/sys/sparc64/sbus/lsi64854var.h#2 integrate .. //depot/projects/fdt/sys/sparc64/sbus/ofw_sbus.h#2 integrate .. //depot/projects/fdt/sys/sun4v/include/_inttypes.h#2 integrate .. //depot/projects/fdt/sys/sys/clock.h#2 integrate .. //depot/projects/fdt/sys/sys/eventhandler.h#2 integrate .. //depot/projects/fdt/sys/sys/imgact.h#2 integrate .. //depot/projects/fdt/sys/sys/imgact_aout.h#2 integrate .. //depot/projects/fdt/sys/sys/imgact_elf.h#2 integrate .. //depot/projects/fdt/sys/sys/pmc.h#3 integrate .. //depot/projects/fdt/sys/sys/sysent.h#2 integrate .. //depot/projects/fdt/sys/sys/systm.h#4 integrate .. //depot/projects/fdt/sys/x86/isa/clock.c#2 integrate .. //depot/projects/fdt/tools/regression/kqueue/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/lib/libc/resolv/resolv.c#2 integrate .. //depot/projects/fdt/tools/regression/priv/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sockets/unix_gc/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sockets/unix_sorflush/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/sysvmsg/msgtest.c#2 integrate .. //depot/projects/fdt/tools/regression/sysvsem/semtest.c#2 integrate .. //depot/projects/fdt/tools/regression/sysvshm/shmtest.c#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/Makefile#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/h_funcs.subr#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/h_tools.c#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_create#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_dots#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_exec#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_link#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_mkdir#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_mount#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_pipes#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_read_write#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_readdir#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_remove#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_rename#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_rmdir#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_setattr#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_sizes#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_sockets#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_statvfs#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_symlink#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_times#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_trail_slash#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_truncate#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_vnd#2 integrate .. //depot/projects/fdt/tools/regression/tmpfs/t_vnode_leak#2 integrate .. //depot/projects/fdt/tools/tools/netrate/http/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/netrate/httpd/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/netrate/juggle/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/netrate/tcpconnect/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/netrate/tcpp/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/netrate/tcpreceive/Makefile#2 integrate .. //depot/projects/fdt/tools/tools/umastat/Makefile#2 integrate .. //depot/projects/fdt/usr.bin/chpass/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/csup/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/csup/README#1 branch .. //depot/projects/fdt/usr.bin/csup/TODO#1 branch .. //depot/projects/fdt/usr.bin/csup/attrstack.c#1 branch .. //depot/projects/fdt/usr.bin/csup/attrstack.h#1 branch .. //depot/projects/fdt/usr.bin/csup/auth.c#1 branch .. //depot/projects/fdt/usr.bin/csup/auth.h#1 branch .. //depot/projects/fdt/usr.bin/csup/config.c#1 branch .. //depot/projects/fdt/usr.bin/csup/config.h#1 branch .. //depot/projects/fdt/usr.bin/csup/cpasswd.1#1 branch .. //depot/projects/fdt/usr.bin/csup/cpasswd.sh#1 branch .. //depot/projects/fdt/usr.bin/csup/csup.1#1 branch .. //depot/projects/fdt/usr.bin/csup/detailer.c#1 branch .. //depot/projects/fdt/usr.bin/csup/detailer.h#1 branch .. //depot/projects/fdt/usr.bin/csup/diff.c#1 branch .. //depot/projects/fdt/usr.bin/csup/diff.h#1 branch .. //depot/projects/fdt/usr.bin/csup/fattr.c#1 branch .. //depot/projects/fdt/usr.bin/csup/fattr.h#1 branch .. //depot/projects/fdt/usr.bin/csup/fattr_bsd.h#1 branch .. //depot/projects/fdt/usr.bin/csup/fattr_posix.h#1 branch .. //depot/projects/fdt/usr.bin/csup/fixups.c#1 branch .. //depot/projects/fdt/usr.bin/csup/fixups.h#1 branch .. //depot/projects/fdt/usr.bin/csup/fnmatch.c#1 branch .. //depot/projects/fdt/usr.bin/csup/fnmatch.h#1 branch .. //depot/projects/fdt/usr.bin/csup/globtree.c#1 branch .. //depot/projects/fdt/usr.bin/csup/globtree.h#1 branch .. //depot/projects/fdt/usr.bin/csup/idcache.c#1 branch .. //depot/projects/fdt/usr.bin/csup/idcache.h#1 branch .. //depot/projects/fdt/usr.bin/csup/keyword.c#1 branch .. //depot/projects/fdt/usr.bin/csup/keyword.h#1 branch .. //depot/projects/fdt/usr.bin/csup/lex.rcs.c#1 branch .. //depot/projects/fdt/usr.bin/csup/lister.c#1 branch .. //depot/projects/fdt/usr.bin/csup/lister.h#1 branch .. //depot/projects/fdt/usr.bin/csup/main.c#1 branch .. //depot/projects/fdt/usr.bin/csup/main.h#1 branch .. //depot/projects/fdt/usr.bin/csup/misc.c#1 branch .. //depot/projects/fdt/usr.bin/csup/misc.h#1 branch .. //depot/projects/fdt/usr.bin/csup/mux.c#1 branch .. //depot/projects/fdt/usr.bin/csup/mux.h#1 branch .. //depot/projects/fdt/usr.bin/csup/parse.y#1 branch .. //depot/projects/fdt/usr.bin/csup/pathcomp.c#1 branch .. //depot/projects/fdt/usr.bin/csup/pathcomp.h#1 branch .. //depot/projects/fdt/usr.bin/csup/proto.c#1 branch .. //depot/projects/fdt/usr.bin/csup/proto.h#1 branch .. //depot/projects/fdt/usr.bin/csup/queue.h#1 branch .. //depot/projects/fdt/usr.bin/csup/rcsfile.c#1 branch .. //depot/projects/fdt/usr.bin/csup/rcsfile.h#1 branch .. //depot/projects/fdt/usr.bin/csup/rcsparse.c#1 branch .. //depot/projects/fdt/usr.bin/csup/rcsparse.h#1 branch .. //depot/projects/fdt/usr.bin/csup/rcstokenizer.h#1 branch .. //depot/projects/fdt/usr.bin/csup/rcstokenizer.l#1 branch .. //depot/projects/fdt/usr.bin/csup/rsyncfile.c#1 branch .. //depot/projects/fdt/usr.bin/csup/rsyncfile.h#1 branch .. //depot/projects/fdt/usr.bin/csup/status.c#1 branch .. //depot/projects/fdt/usr.bin/csup/status.h#1 branch .. //depot/projects/fdt/usr.bin/csup/stream.c#1 branch .. //depot/projects/fdt/usr.bin/csup/stream.h#1 branch .. //depot/projects/fdt/usr.bin/csup/threads.c#1 branch .. //depot/projects/fdt/usr.bin/csup/threads.h#1 branch .. //depot/projects/fdt/usr.bin/csup/token.h#1 branch .. //depot/projects/fdt/usr.bin/csup/token.l#1 branch .. //depot/projects/fdt/usr.bin/csup/updater.c#1 branch .. //depot/projects/fdt/usr.bin/csup/updater.h#1 branch .. //depot/projects/fdt/usr.bin/locale/Makefile#3 integrate .. //depot/projects/fdt/usr.bin/ncal/Makefile#2 integrate .. //depot/projects/fdt/usr.bin/ncal/ncal.1#2 integrate .. //depot/projects/fdt/usr.bin/ncal/ncal.c#3 integrate .. //depot/projects/fdt/usr.bin/netstat/main.c#6 integrate .. //depot/projects/fdt/usr.bin/netstat/netisr.c#2 integrate .. //depot/projects/fdt/usr.bin/netstat/netstat.h#5 integrate .. //depot/projects/fdt/usr.bin/truncate/Makefile#2 integrate .. //depot/projects/fdt/usr.bin/truncate/truncate.c#2 integrate .. //depot/projects/fdt/usr.sbin/Makefile#6 integrate .. //depot/projects/fdt/usr.sbin/bluetooth/bthidd/Makefile#2 integrate .. //depot/projects/fdt/usr.sbin/bsnmpd/modules/Makefile.inc#2 integrate .. //depot/projects/fdt/usr.sbin/fwcontrol/Makefile#2 integrate .. //depot/projects/fdt/usr.sbin/jail/jail.8#4 integrate .. //depot/projects/fdt/usr.sbin/mount_nwfs/Makefile#2 integrate .. //depot/projects/fdt/usr.sbin/mount_nwfs/mount_nwfs.c#2 integrate .. //depot/projects/fdt/usr.sbin/uhsoctl/Makefile#2 integrate Differences ... ==== //depot/projects/fdt/Makefile#5 (text+ko) ==== @@ -1,5 +1,5 @@ # -# $FreeBSD: src/Makefile,v 1.363 2010/01/19 15:34:16 ed Exp $ +# $FreeBSD: src/Makefile,v 1.364 2010/03/03 21:08:44 imp Exp $ # # The user-driven targets are: # @@ -15,6 +15,7 @@ # reinstallkernel - Reinstall the kernel and the kernel-modules. # reinstallkernel.debug # kernel - buildkernel + installkernel. +# kernel-toolchain - Builds the subset of world necessary to build a kernel # doxygen - Build API documentation of the kernel, needs doxygen. # update - Convenient way to update your source tree (cvs). # check-old - List obsolete directories/files/libraries. ==== //depot/projects/fdt/ObsoleteFiles.inc#9 (text+ko) ==== @@ -1,5 +1,5 @@ # -# $FreeBSD: src/ObsoleteFiles.inc,v 1.227 2010/02/27 19:00:13 marcel Exp $ +# $FreeBSD: src/ObsoleteFiles.inc,v 1.228 2010/03/03 18:30:10 ed Exp $ # # This file lists old files (OLD_FILES), libraries (OLD_LIBS) and # directories (OLD_DIRS) which should get removed at an update. Recently @@ -14,6 +14,8 @@ # The file is partitioned: OLD_FILES first, then OLD_LIBS and OLD_DIRS last. # +# 20100303: actual removal of utmp.h +OLD_FILES+=usr/include/utmp.h # 20100227: [ia64] removed and .if ${TARGET_ARCH} == "ia64" OLD_FILES+=usr/include/machine/sapicreg.h ==== //depot/projects/fdt/bin/ed/Makefile#2 (text+ko) ==== @@ -1,10 +1,9 @@ -# $FreeBSD: src/bin/ed/Makefile,v 1.34 2007/12/09 00:14:27 marius Exp $ +# $FreeBSD: src/bin/ed/Makefile,v 1.35 2010/03/04 16:08:01 uqs Exp $ .include PROG= ed SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c -WARNS?= 2 LINKS= ${BINDIR}/ed ${BINDIR}/red MLINKS= ed.1 red.1 ==== //depot/projects/fdt/bin/ed/main.c#2 (text+ko) ==== @@ -35,7 +35,7 @@ #endif /* not lint */ #include -__FBSDID("$FreeBSD: src/bin/ed/main.c,v 1.29 2006/08/17 23:00:33 imp Exp $"); +__FBSDID("$FreeBSD: src/bin/ed/main.c,v 1.30 2010/03/04 16:08:01 uqs Exp $"); /* * CREDITS @@ -103,15 +103,10 @@ /* ed: line editor */ int -main(int argc, char *argv[]) +main(volatile int argc, char ** volatile argv) { int c, n; long status = 0; -#if __GNUC__ - /* Avoid longjmp clobbering */ - (void) &argc; - (void) &argv; -#endif (void)setlocale(LC_ALL, ""); ==== //depot/projects/fdt/bin/pkill/pkill.1#3 (text+ko) ==== @@ -1,6 +1,6 @@ .\" $NetBSD: pkill.1,v 1.8 2003/02/14 15:59:18 grant Exp $ .\" -.\" $FreeBSD: src/bin/pkill/pkill.1,v 1.5 2010/02/12 18:52:24 pjd Exp $ +.\" $FreeBSD: src/bin/pkill/pkill.1,v 1.6 2010/03/02 07:20:46 joel Exp $ .\" .\" Copyright (c) 2002 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -16,13 +16,6 @@ .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. -.\" 3. All advertising materials mentioning features or use of this software -.\" must display the following acknowledgement: -.\" This product includes software developed by the NetBSD -.\" Foundation, Inc. and its contributors. -.\" 4. Neither the name of The NetBSD Foundation nor the names of its -.\" contributors may be used to endorse or promote products derived -.\" from this software without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED ==== //depot/projects/fdt/bin/pkill/pkill.c#4 (text+ko) ==== @@ -16,13 +16,6 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the NetBSD - * Foundation, Inc. and its contributors. - * 4. Neither the name of The NetBSD Foundation nor the names of its - * contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED @@ -38,7 +31,7 @@ */ #include -__FBSDID("$FreeBSD: src/bin/pkill/pkill.c,v 1.9 2010/02/12 18:52:24 pjd Exp $"); +__FBSDID("$FreeBSD: src/bin/pkill/pkill.c,v 1.10 2010/03/02 07:20:46 joel Exp $"); #include #include ==== //depot/projects/fdt/cddl/Makefile.inc#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: src/cddl/Makefile.inc,v 1.6 2009/03/14 17:55:16 rdivacky Exp $ +# $FreeBSD: src/cddl/Makefile.inc,v 1.7 2010/03/02 19:04:07 uqs Exp $ OPENSOLARIS_USR_DISTDIR= ${.CURDIR}/../../../cddl/contrib/opensolaris OPENSOLARIS_SYS_DISTDIR= ${.CURDIR}/../../../sys/cddl/contrib/opensolaris @@ -7,4 +7,5 @@ CFLAGS+= -DNEED_SOLARIS_BOOLEAN +WARNS?= 6 CSTD?= gnu89 ==== //depot/projects/fdt/cddl/lib/drti/Makefile#2 (text+ko) ==== @@ -1,16 +1,13 @@ -# $FreeBSD: src/cddl/lib/drti/Makefile,v 1.1 2008/05/22 04:26:42 jb Exp $ +# $FreeBSD: src/cddl/lib/drti/Makefile,v 1.2 2010/03/02 19:04:07 uqs Exp $ -.include "../../Makefile.inc" +.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libdtrace/common -.PATH: ${OPENSOLARIS_USR_DISTDIR}/lib/libdtrace/common - SRCS= drti.c FILES= ${SRCS:R:S/$/.o/g} FILESOWN= ${LIBOWN} FILESGRP= ${LIBGRP} FILESMODE= ${LIBMODE} FILESDIR= ${LIBDIR}/dtrace -WARNS?= 6 CLEANFILES= ${FILES} CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ ==== //depot/projects/fdt/cddl/lib/libavl/Makefile#2 (text+ko) ==== @@ -1,9 +1,10 @@ -# $FreeBSD: src/cddl/lib/libavl/Makefile,v 1.3 2008/03/27 23:21:23 jb Exp $ +# $FreeBSD: src/cddl/lib/libavl/Makefile,v 1.4 2010/03/02 19:04:07 uqs Exp $ .PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/avl LIB= avl SRCS= avl.c +WARNS?= 0 CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common ==== //depot/projects/fdt/cddl/lib/libctf/Makefile#2 (text+ko) ==== @@ -1,10 +1,10 @@ -# $FreeBSD: src/cddl/lib/libctf/Makefile,v 1.2 2009/07/19 17:25:24 kensmith Exp $ +# $FreeBSD: src/cddl/lib/libctf/Makefile,v 1.3 2010/03/02 19:04:07 uqs Exp $ -.include "../../Makefile.inc" +.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/common/ctf +.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libctf/common +.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/ctf LIB= ctf -SHLIB_MAJOR= 2 - SRCS= ctf_create.c \ ctf_decl.c \ ctf_error.c \ @@ -17,10 +17,7 @@ ctf_types.c \ ctf_util.c -.PATH: ${OPENSOLARIS_USR_DISTDIR}/common/ctf -.PATH: ${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common -.PATH: ${OPENSOLARIS_SYS_DISTDIR}/common/ctf - +WARNS?= 0 >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Fri Mar 5 14:07:58 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 7FED51065674; Fri, 5 Mar 2010 14:07:58 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17DF7106575B for ; Fri, 5 Mar 2010 14:07:58 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 03E708FC12 for ; Fri, 5 Mar 2010 14:07:58 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25E7vJr090185 for ; Fri, 5 Mar 2010 14:07:57 GMT (envelope-from raj@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25E7vOQ090183 for perforce@freebsd.org; Fri, 5 Mar 2010 14:07:57 GMT (envelope-from raj@freebsd.org) Date: Fri, 5 Mar 2010 14:07:57 GMT Message-Id: <201003051407.o25E7vOQ090183@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to raj@freebsd.org using -f From: Rafal Jaworowski To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175371 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 14:07:58 -0000 http://p4web.freebsd.org/chv.cgi?CH=175371 Change 175371 by raj@raj_fdt on 2010/03/05 14:07:49 Reduce diff vs. HEAD Affected files ... .. //depot/projects/fdt/contrib/dtc/libfdt/Makefile.libfdt#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/TODO#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt.c#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt.h#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_ro.c#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_rw.c#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_strerror.c#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_sw.c#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/fdt_wip.c#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/libfdt.h#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/libfdt_env.h#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/libfdt_internal.h#2 delete .. //depot/projects/fdt/contrib/dtc/libfdt/version.lds#2 delete .. //depot/projects/fdt/contrib/dtc/tests/Makefile.tests#2 delete .. //depot/projects/fdt/contrib/dtc/tests/add_subnode_with_nops.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/aliases.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/asm_tree_dump.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/bad-empty-ranges.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/bad-name-property.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/bad-ncells.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/bad-reg-ranges.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/bad-string-props.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/base01.asm#2 delete .. //depot/projects/fdt/contrib/dtc/tests/base01.cmd#2 delete .. //depot/projects/fdt/contrib/dtc/tests/base01.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/base01.stderr#2 delete .. //depot/projects/fdt/contrib/dtc/tests/boot-cpuid.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/comments-cmp.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/comments.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/data.S#2 delete .. //depot/projects/fdt/contrib/dtc/tests/default-addr-size.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/del_node.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/del_property.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dtbs_equal_ordered.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dtc-checkfails.sh#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dtc-fatal.sh#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dumptrees.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dup-nodename.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dup-phandle.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/dup-propname.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/empty.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/escapes.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/extra-terminating-null.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/extra-terminating-null.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/find_property.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/get_alias.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/get_mem_rsv.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/get_name.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/get_path.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/get_phandle.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/getprop.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/incbin.bin#2 delete .. //depot/projects/fdt/contrib/dtc/tests/incbin.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/incbin.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include0.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include1.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include2.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include3.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include4.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include5.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include6.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include7.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/include8.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/label01.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/mangle-layout.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/mangle-layout.supp#2 delete .. //depot/projects/fdt/contrib/dtc/tests/minusone-phandle.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/move_and_save.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/node_check_compatible.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/node_offset_by_compatible.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/node_offset_by_phandle.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/node_offset_by_prop_value.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/nonexist-label-ref.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/nonexist-node-ref.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/nop_node.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/nop_property.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/nopulate.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/notfound.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/obsolete-chosen-interrupt-controller.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/open_pack.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/open_pack.supp#2 delete .. //depot/projects/fdt/contrib/dtc/tests/parent_offset.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/path-references.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/path-references.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/path_offset.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/path_offset_aliases.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/prop-after-subnode.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/references.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/references.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/references_dts0.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/reg-ranges-root.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/root_node.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/run_tests.sh#2 delete .. //depot/projects/fdt/contrib/dtc/tests/rw_tree1.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/set_name.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/setprop.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/setprop_inplace.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/string_escapes.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/subnode_offset.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/supernode_atdepth_offset.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/sw_tree1.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/test01.asm#2 delete .. //depot/projects/fdt/contrib/dtc/tests/test01.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/test01.stderr#2 delete .. //depot/projects/fdt/contrib/dtc/tests/test_kernel_dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/test_tree1.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/test_tree1_dts0.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/testdata.h#2 delete .. //depot/projects/fdt/contrib/dtc/tests/tests.h#2 delete .. //depot/projects/fdt/contrib/dtc/tests/tests.sh#2 delete .. //depot/projects/fdt/contrib/dtc/tests/testutils.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/trees.S#2 delete .. //depot/projects/fdt/contrib/dtc/tests/truncated_property.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/value-labels.c#2 delete .. //depot/projects/fdt/contrib/dtc/tests/value-labels.dts#2 delete .. //depot/projects/fdt/contrib/dtc/tests/zero-phandle.dts#2 delete Differences ... From owner-p4-projects@FreeBSD.ORG Fri Mar 5 14:19:09 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B6FE01065674; Fri, 5 Mar 2010 14:19:09 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B22D1065672 for ; Fri, 5 Mar 2010 14:19:09 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4E4E08FC08 for ; Fri, 5 Mar 2010 14:19:09 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25EJ9hv091024 for ; Fri, 5 Mar 2010 14:19:09 GMT (envelope-from raj@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25EJ9hG091022 for perforce@freebsd.org; Fri, 5 Mar 2010 14:19:09 GMT (envelope-from raj@freebsd.org) Date: Fri, 5 Mar 2010 14:19:09 GMT Message-Id: <201003051419.o25EJ9hG091022@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to raj@freebsd.org using -f From: Rafal Jaworowski To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175372 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 14:19:09 -0000 http://p4web.freebsd.org/chv.cgi?CH=175372 Change 175372 by raj@raj_fdt on 2010/03/05 14:19:03 Clean up. Affected files ... .. //depot/projects/fdt/gnu/usr.bin/dtc/Makefile#5 edit Differences ... ==== //depot/projects/fdt/gnu/usr.bin/dtc/Makefile#5 (text+ko) ==== @@ -2,7 +2,7 @@ DTCDIR= ${.CURDIR}/../../../contrib/dtc LIBFDTDIR= ${.CURDIR}/../../../sys/contrib/libfdt -.PATH: ${DTCDIR} ${LIBFDTDIR} ${DTCDIR}/tests +.PATH: ${DTCDIR} ${LIBFDTDIR} PROG= dtc From owner-p4-projects@FreeBSD.ORG Fri Mar 5 19:40:31 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9C2871065673; Fri, 5 Mar 2010 19:40:31 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 472AF1065670 for ; Fri, 5 Mar 2010 19:40:31 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 34A998FC13 for ; Fri, 5 Mar 2010 19:40:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25JeVRA030076 for ; Fri, 5 Mar 2010 19:40:31 GMT (envelope-from julian@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25JeVBn030074 for perforce@freebsd.org; Fri, 5 Mar 2010 19:40:31 GMT (envelope-from julian@freebsd.org) Date: Fri, 5 Mar 2010 19:40:31 GMT Message-Id: <201003051940.o25JeVBn030074@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to julian@freebsd.org using -f From: Julian Elischer To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175378 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 19:40:31 -0000 http://p4web.freebsd.org/chv.cgi?CH=175378 Change 175378 by julian@julian-mac on 2010/03/05 19:40:18 fix typo Affected files ... .. //depot/projects/vimage/porting_to_vimage.txt#18 edit Differences ... ==== //depot/projects/vimage/porting_to_vimage.txt#18 (text+ko) ==== @@ -217,7 +217,7 @@ SYSCTL_VNET_PROC(_net_inet, OID_AUTO, thebar, CTLTYPE_?? | CTLFLAG_RW | CTLFLAG_SECURE3, &VNET_NAME(thebar), 0, thebar, "?", "the bar is open"); -{[XXX] robert fix this is possible ^^^} + ^^^ {[XXX] robert fix this if possible } SYSCTL_VNET_INT(_net_inet, OID_AUTO, foo, CTLFLAG_RW, &VNET_NAME(foo), 0, "size of foo"); From owner-p4-projects@FreeBSD.ORG Fri Mar 5 20:27:18 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9D43F1065673; Fri, 5 Mar 2010 20:27:18 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 618B41065672 for ; Fri, 5 Mar 2010 20:27:18 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4EAC28FC17 for ; Fri, 5 Mar 2010 20:27:18 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25KRIvn034447 for ; Fri, 5 Mar 2010 20:27:18 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25KRIOC034445 for perforce@freebsd.org; Fri, 5 Mar 2010 20:27:18 GMT (envelope-from jhb@freebsd.org) Date: Fri, 5 Mar 2010 20:27:18 GMT Message-Id: <201003052027.o25KRIOC034445@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175381 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 20:27:18 -0000 http://p4web.freebsd.org/chv.cgi?CH=175381 Change 175381 by jhb@jhb_jhbbsd on 2010/03/05 20:26:48 Branch mcelog to add FreeBSD support. Affected files ... .. //depot/projects/mcelog/.gitignore#1 branch .. //depot/projects/mcelog/CHANGES#1 branch .. //depot/projects/mcelog/Makefile#1 branch .. //depot/projects/mcelog/README#1 branch .. //depot/projects/mcelog/TODO#1 branch .. //depot/projects/mcelog/TODO-diskdb#1 branch .. //depot/projects/mcelog/bitfield.c#1 branch .. //depot/projects/mcelog/bitfield.h#1 branch .. //depot/projects/mcelog/cache.c#1 branch .. //depot/projects/mcelog/cache.h#1 branch .. //depot/projects/mcelog/client.c#1 branch .. //depot/projects/mcelog/client.h#1 branch .. //depot/projects/mcelog/config.c#1 branch .. //depot/projects/mcelog/config.h#1 branch .. //depot/projects/mcelog/core2.c#1 branch .. //depot/projects/mcelog/core2.h#1 branch .. //depot/projects/mcelog/db.c#1 branch .. //depot/projects/mcelog/db.h#1 branch .. //depot/projects/mcelog/dbquery.c#1 branch .. //depot/projects/mcelog/dimm.c#1 branch .. //depot/projects/mcelog/dimm.h#1 branch .. //depot/projects/mcelog/diskdb.c#1 branch .. //depot/projects/mcelog/diskdb.h#1 branch .. //depot/projects/mcelog/dmi.c#1 branch .. //depot/projects/mcelog/dmi.h#1 branch .. //depot/projects/mcelog/dunnington.c#1 branch .. //depot/projects/mcelog/dunnington.h#1 branch .. //depot/projects/mcelog/eventloop.c#1 branch .. //depot/projects/mcelog/eventloop.h#1 branch .. //depot/projects/mcelog/input/GENCACHE#1 branch .. //depot/projects/mcelog/input/GENMEM#1 branch .. //depot/projects/mcelog/input/GENPAGE#1 branch .. //depot/projects/mcelog/input/dimm0#1 branch .. //depot/projects/mcelog/input/full1#1 branch .. //depot/projects/mcelog/input/simple1#1 branch .. //depot/projects/mcelog/intel.c#1 branch .. //depot/projects/mcelog/intel.h#1 branch .. //depot/projects/mcelog/k8.c#1 branch .. //depot/projects/mcelog/k8.h#1 branch .. //depot/projects/mcelog/leaky-bucket.c#1 branch .. //depot/projects/mcelog/leaky-bucket.h#1 branch .. //depot/projects/mcelog/list.h#1 branch .. //depot/projects/mcelog/mce.pdf#1 branch .. //depot/projects/mcelog/mcelog.8#1 branch .. //depot/projects/mcelog/mcelog.c#1 branch .. //depot/projects/mcelog/mcelog.conf#1 branch .. //depot/projects/mcelog/mcelog.cron#1 branch .. //depot/projects/mcelog/mcelog.h#1 branch .. //depot/projects/mcelog/mcelog.init#1 branch .. //depot/projects/mcelog/mcelog.logrotate#1 branch .. //depot/projects/mcelog/memdb.c#1 branch .. //depot/projects/mcelog/memdb.h#1 branch .. //depot/projects/mcelog/memutil.c#1 branch .. //depot/projects/mcelog/memutil.h#1 branch .. //depot/projects/mcelog/msg.c#1 branch .. //depot/projects/mcelog/msg.h#1 branch .. //depot/projects/mcelog/nehalem.c#1 branch .. //depot/projects/mcelog/nehalem.h#1 branch .. //depot/projects/mcelog/p4.c#1 branch .. //depot/projects/mcelog/p4.h#1 branch .. //depot/projects/mcelog/page.c#1 branch .. //depot/projects/mcelog/page.h#1 branch .. //depot/projects/mcelog/paths.h#1 branch .. //depot/projects/mcelog/rbtree.c#1 branch .. //depot/projects/mcelog/rbtree.h#1 branch .. //depot/projects/mcelog/server.c#1 branch .. //depot/projects/mcelog/server.h#1 branch .. //depot/projects/mcelog/sysfs.c#1 branch .. //depot/projects/mcelog/sysfs.h#1 branch .. //depot/projects/mcelog/tests/Makefile#1 branch .. //depot/projects/mcelog/tests/cache/cache.conf#1 branch .. //depot/projects/mcelog/tests/cache/inject#1 branch .. //depot/projects/mcelog/tests/memdb/inject#1 branch .. //depot/projects/mcelog/tests/memdb/memdb.conf#1 branch .. //depot/projects/mcelog/tests/page/inject#1 branch .. //depot/projects/mcelog/tests/page/page.conf#1 branch .. //depot/projects/mcelog/tests/socket/inject#1 branch .. //depot/projects/mcelog/tests/socket/socket.conf#1 branch .. //depot/projects/mcelog/tests/test#1 branch .. //depot/projects/mcelog/tests/trigger#1 branch .. //depot/projects/mcelog/trigger.c#1 branch .. //depot/projects/mcelog/trigger.h#1 branch .. //depot/projects/mcelog/triggers/cache-error-trigger#1 branch .. //depot/projects/mcelog/triggers/dimm-error-trigger#1 branch .. //depot/projects/mcelog/triggers/page-error-trigger#1 branch .. //depot/projects/mcelog/triggers/socket-memory-error-trigger#1 branch .. //depot/projects/mcelog/tsc.c#1 branch .. //depot/projects/mcelog/tsc.h#1 branch .. //depot/projects/mcelog/tulsa.c#1 branch .. //depot/projects/mcelog/tulsa.h#1 branch .. //depot/projects/mcelog/version.h#1 branch .. //depot/projects/mcelog/yellow.c#1 branch .. //depot/projects/mcelog/yellow.h#1 branch Differences ... From owner-p4-projects@FreeBSD.ORG Fri Mar 5 21:10:01 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6D6C11065677; Fri, 5 Mar 2010 21:10:01 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31163106564A for ; Fri, 5 Mar 2010 21:10:01 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D16A8FC0C for ; Fri, 5 Mar 2010 21:10:01 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25LA10Z049015 for ; Fri, 5 Mar 2010 21:10:01 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25LA1ST049013 for perforce@freebsd.org; Fri, 5 Mar 2010 21:10:01 GMT (envelope-from jhb@freebsd.org) Date: Fri, 5 Mar 2010 21:10:01 GMT Message-Id: <201003052110.o25LA1ST049013@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175383 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 21:10:01 -0000 http://p4web.freebsd.org/chv.cgi?CH=175383 Change 175383 by jhb@jhb_jhbbsd on 2010/03/05 21:09:24 First set of patches to port mcelog(8) to FreeBSD. It can parse MCA error messages from dmesg or /var/log/messages via --ascii and it can also pull events from the running kernel via hw.mca sysctls. Known limitations, todo: - The client/server stuff is not tested. - The client will not work because it doesn't do a sendmsg() with a SCM_CREDS control message. - The server does not notice new events. On Linux /dev/mcelog becomes readable when a new event is logged. For FreeBSD we would need to poll hw.mca.count instead I think. - Triggers are not currently supported. We would need to switch to kqueue and use EVFILT_PROC events I think (or implement ppoll()). - The code that tries to track bad pages is not supported. Other changes: - Install to /usr/local rather than /usr. - Include a version of open_memstream(3) implemented via funopen(3). - Add a getline(3) stub using fgets(3). - Use 'cpuid' instruction values to extract several things that the Linux code reads out of /proc. - Use FreeBSD-specific SCM_CREDS rather than Linux-specific SCM_CREDENTIALS. Affected files ... .. //depot/projects/mcelog/Makefile#2 edit .. //depot/projects/mcelog/cache.c#2 edit .. //depot/projects/mcelog/client.c#2 edit .. //depot/projects/mcelog/config.c#2 edit .. //depot/projects/mcelog/eventloop.c#2 edit .. //depot/projects/mcelog/intel.c#2 edit .. //depot/projects/mcelog/mcelog.c#2 edit .. //depot/projects/mcelog/mcelog.h#2 edit .. //depot/projects/mcelog/memdb.c#2 edit .. //depot/projects/mcelog/memstream.c#1 add .. //depot/projects/mcelog/p4.c#2 edit .. //depot/projects/mcelog/server.c#2 edit .. //depot/projects/mcelog/tsc.c#2 edit Differences ... ==== //depot/projects/mcelog/Makefile#2 (text) ==== @@ -1,5 +1,5 @@ CFLAGS := -g -Os -prefix := /usr +prefix := /usr/local etcprefix := # Define appropiately for your distribution # DOCDIR := /usr/share/doc/packages/mcelog @@ -30,8 +30,14 @@ OBJ := p4.o k8.o mcelog.o dmi.o tsc.o core2.o bitfield.o intel.o \ nehalem.o dunnington.o tulsa.o config.o memutil.o msg.o \ - eventloop.o leaky-bucket.o memdb.o server.o trigger.o \ - client.o cache.o sysfs.o yellow.o page.o rbtree.o + eventloop.o leaky-bucket.o memdb.o server.o client.o \ + cache.o rbtree.o +ifndef FREEBSD +OBJ += page.o trigger.o sysfs.o yellow.o +endif +ifdef FREEBSD +OBJ += memstream.o +endif DISKDB_OBJ := diskdb.o dimm.o db.o CLEAN := mcelog dmi tsc dbquery .depend .depend.X dbquery.o ${DISKDB_OBJ} DOC := mce.pdf ==== //depot/projects/mcelog/cache.c#2 (text) ==== @@ -27,6 +27,7 @@ #include "sysfs.h" #include "cache.h" +#ifdef __Linux__ struct cache { unsigned level; /* Numerical values must match MCACOD */ @@ -164,6 +165,15 @@ Wprintf("Cannot find sysfs cache for CPU %d", cpu); return -1; } +#endif + +#ifdef __FreeBSD__ +int cache_to_cpus(int cpu, unsigned level, unsigned type, + int *cpulen, unsigned **cpumap) +{ + return -1; +} +#endif #ifdef TEST main() ==== //depot/projects/mcelog/client.c#2 (text) ==== @@ -18,6 +18,7 @@ #include #include #include +#include #include #include "mcelog.h" #include "client.h" @@ -48,6 +49,9 @@ sizeof(struct sockaddr_un)) < 0) SYSERRprintf("client connect"); +#ifdef __FreeBSD__ + /* XXX: Need to use sendmsg() to send a SCM_CREDS control message. */ +#endif n = strlen(command); if (write(fd, command, n) != n) SYSERRprintf("client command write"); ==== //depot/projects/mcelog/config.c#2 (text) ==== @@ -126,6 +126,24 @@ return s; } +#ifdef __FreeBSD__ +/* + * Newer versions do have getline(), so this should use a version test + * at some point. + */ +static ssize_t getline(char **cp, size_t *lenp, FILE *f) +{ + + if (*cp == NULL) { + *cp = malloc(4096); + *lenp = 4096; + } + if (fgets(*cp, *lenp, f) == NULL) + return (0); + return (strlen(*cp)); +} +#endif + int parse_config_file(const char *fn) { FILE *f; ==== //depot/projects/mcelog/eventloop.c#2 (text) ==== @@ -38,7 +38,9 @@ static struct pollfd pollfds[MAX_POLLFD]; static struct pollcb pollcbs[MAX_POLLFD]; +#ifdef __Linux__ static sigset_t event_sigs; +#endif static int closeonexec(int fd) { @@ -97,6 +99,7 @@ } /* Run signal handler only directly after event loop */ +#ifdef __Linux__ int event_signal(int sig) { static int first = 1; @@ -111,11 +114,17 @@ return -1; return 0; } +#endif void eventloop(void) { for (;;) { +#ifdef __Linux__ int n = ppoll(pollfds, max_pollfd, NULL, &event_sigs); +#endif +#ifdef __FreeBSD__ + int n = poll(pollfds, max_pollfd, -1); +#endif if (n <= 0) { if (n < 0 && errno != EINTR) SYSERRprintf("poll error"); ==== //depot/projects/mcelog/intel.c#2 (text) ==== @@ -79,7 +79,9 @@ corr_err_cnt = EXTRACT(m->status, 38, 52); memory_error(m, channel, dimm, corr_err_cnt, recordlen); +#ifdef __Linux__ account_page_error(m, channel, dimm, corr_err_cnt); +#endif return 1; } ==== //depot/projects/mcelog/mcelog.c#2 (text) ==== @@ -20,8 +20,18 @@ #define _GNU_SOURCE 1 #include #include +#ifdef __Linux__ #include #include +#endif +#ifdef __FreeBSD__ +#include +#include +#include +#include +#include +#include +#endif #include #include #include @@ -59,7 +69,9 @@ enum cputype cputype = CPU_GENERIC; +#ifdef __Linux__ char *logfn = LOG_DEV_FILENAME; +#endif int ignore_nodev; int filter_bogus = 1; @@ -70,7 +82,9 @@ int dump_raw_ascii; int daemon_mode; static char *inputfile; +#ifdef __Linux__ char *processor_flags; +#endif static int foreground; int filter_memory_errors; static struct config_cred runcred = { .uid = -1U, .gid = -1U }; @@ -388,6 +402,7 @@ Wprintf("\n"); } +#ifdef __Linux__ void check_cpu(void) { enum { @@ -455,7 +470,44 @@ } else Eprintf("warning: Cannot open /proc/cpuinfo\n"); } +#endif + +#ifdef __FreeBSD__ +void check_cpu(void) +{ + char vendor[20]; + u_int regs[4]; + u_int cpu_id; + int family, model; + static int checked; + + if (checked) + return; + checked = 1; + + do_cpuid(0, regs); + ((u_int *)vendor)[0] = regs[1]; + ((u_int *)vendor)[1] = regs[3]; + ((u_int *)vendor)[2] = regs[2]; + vendor[12] = 0; + do_cpuid(1, regs); + cpu_id = regs[0]; + family = CPUID_TO_FAMILY(cpu_id); + model = CPUID_TO_MODEL(cpu_id); + + if (cpu_forced) + ; + else if (!strcmp(vendor,"AuthenticAMD") && + (family == 15 || family == 16 || family == 17)) + cputype = CPU_K8; + else if (!strcmp(vendor,"GenuineIntel")) + cputype = select_intel_cputype(family, model); + /* Add checks for other CPUs here */ +} +#endif + +#ifdef __Linux__ static char *skipspace(char *s) { while (isspace(*s)) @@ -479,6 +531,7 @@ } return skipspace(s); } +#endif static void dump_mce_final(struct mce *m, char *symbol, int missing, int recordlen, int dseen) @@ -501,6 +554,7 @@ if (recordlen < endof_field(struct mce, f)) \ recordlen = endof_field(struct mce, f) +#ifdef __Linux__ /* Decode ASCII input for fatal messages */ static void decodefatal(FILE *inf) { @@ -646,7 +700,148 @@ if (data) dump_mce_final(&m, symbol, missing, recordlen, disclaimer_seen); } +#endif +#ifdef __FreeBSD__ +/* Used to map cpuid vendor strings to Linux cpuvendor values. */ +static struct { + char *name; + u_char cpuvendor; +} vendor_ids[] = { + { "GenuineIntel", 0 }, + { "CyrixInstead", 1 }, + { "AuthenticAMD", 2 }, + { "UMC UMC UMC ", 3 }, + { "CentaurHauls", 5 }, + { "GenuineTMx86", 7 }, + { "Geode by NSC", 8 }, +}; + +/* Convert FreeBSD's struct mca_record into a struct mce. */ +static void convert_mca(struct mca_record *mr, struct mce *mce, int live) +{ + memset(mce, 0, sizeof(*mce)); + mce->status = mr->mr_status; + mce->misc = mr->mr_misc; + mce->addr = mr->mr_addr; + mce->tsc = mr->mr_tsc; + mce->bank = mr->mr_bank; + mce->finished = 1; + mce->apicid = mr->mr_apic_id; + + /* + * For live records (from sysctl), fill in some fields using + * registers from the current CPU. + */ + if (live) { + char vendor[20]; + u_int i, regs[4]; + + do_cpuid(0, regs); + ((u_int *)vendor)[0] = regs[1]; + ((u_int *)vendor)[1] = regs[3]; + ((u_int *)vendor)[2] = regs[2]; + vendor[12] = 0; + mce->cpuvendor = 0xff; + for (i = 0; i < sizeof(vendor_ids) / sizeof(vendor_ids[0]); i++) + if (strcmp(vendor, vendor_ids[i].name) == 0) + mce->cpuvendor = vendor_ids[i].cpuvendor; + + do_cpuid(1, regs); + mce->cpuid = regs[0]; + //mce->mcgcap = rdmsr(MSR_MCG_CAP); + } +} + +/* Decode ASCII input for fatal messages */ +static void decodefatal(FILE *inf) +{ + struct mca_record mr; + struct mce m; + long long val; + char line[100], *s, symbol[1]; + int data, missing; + enum rows { + BANK = 1, + CPU = 2, + ADDR = 4, + MISC = 8, + }; + + symbol[0] = '\0'; + data = 0; + missing = 0; + memset(&mr, 0, sizeof(mr)); + while ((s = fgets(line, sizeof(line), inf)) != NULL) { + s = strstr(s, "MCA: "); + if (s == NULL) + continue; + s += strlen("MCA: "); + + if (strncmp(s, "bank", 4) == 0) { + /* Start of a new record, dump the previous one. */ + if (data != 0) { + /* Require some minimum data. */ + if (data & BANK) { + if (mr.mr_status & MC_STATUS_ADDRV && + !(data & ADDR)) + missing = 1; + if (mr.mr_status & MC_STATUS_MISCV && + !(data & MISC)) + missing = 1; + convert_mca(&mr, &m, 0); + dump_mce_final(&m, symbol, missing, + sizeof(struct mce), 0); + } + data = 0; + missing = 0; + memset(&mr, 0, sizeof(mr)); + } + + if (sscanf(s, "bank %d, status 0x%llx", &mr.mr_bank, + &val) != 2) + missing = 1; + else { + data |= BANK; + mr.mr_status = val; + } + } + if (strncmp(s, "CPU", 3) == 0) { + if (sscanf(s, "CPU %d ", &mr.mr_apic_id) != 1) + missing = 1; + else + data |= CPU; + } + if (strncmp(s, "Address", 7) == 0) { + if (sscanf(s, "Address 0x%llx", &val) != 1) + missing = 1; + else { + data |= ADDR; + mr.mr_addr = val; + } + } + if (strncmp(s, "Misc", 4) == 0) { + if (sscanf(s, "Misc 0x%llx", &val) != 1) + missing = 1; + else { + data |= MISC; + mr.mr_misc = val; + } + } + } + + /* Dump the last record. */ + if (data & BANK) { + if (mr.mr_status & MC_STATUS_ADDRV && !(data & ADDR)) + missing = 1; + if (mr.mr_status & MC_STATUS_MISCV && !(data & MISC)) + missing = 1; + convert_mca(&mr, &m, 0); + dump_mce_final(&m, symbol, missing, sizeof(struct mce), 0); + } +} +#endif + static void remove_pidfile(void) { unlink(pidfile); @@ -900,8 +1095,10 @@ static void general_setup(void) { +#ifdef __Linux__ trigger_setup(); yellow_setup(); +#endif config_cred("global", "run-credentials", &runcred); if (config_bool("global", "filter-memory-errors") == 1) filter_memory_errors = 1; @@ -924,6 +1121,7 @@ } } +#ifdef __Linux__ static void process(int fd, unsigned recordlen, unsigned loglen, char *buf) { int i; @@ -964,6 +1162,51 @@ if (finish) exit(0); } +#endif + +#ifdef __FreeBSD__ +static void process(int fd __unused, unsigned recordlen, + unsigned loglen, char *buf __unused) +{ + struct mca_record mr; + struct mce mce; + int mib[4]; + size_t len; + int finish, i; + + len = 4; + if (sysctlnametomib("hw.mca.records", mib, &len) < 0) + return; + + finish = 0; + recordlen = sizeof(struct mce); + for (i = 0; i < (int)loglen; i++) { + mib[3] = i; + len = sizeof(mr); + if (sysctl(mib, 4, &mr, &len, NULL, 0) < 0) { + warn("sysctl(hw.mca.records.%d)", i); + continue; + } + + convert_mca(&mr, &mce, 1); + mce_prepare(&mce); + if (numerrors > 0 && --numerrors == 0) + finish = 1; + if (!mce_filter(&mce, recordlen)) + continue; + if (!dump_raw_ascii) { + disclaimer(); + Wprintf("MCE %d\n", i); + dump_mce(&mce, recordlen); + } else + dump_mce_raw_ascii(&mce, recordlen); + flushlog(); + } + + if (finish) + exit(0); +} +#endif static void noargs(int ac, char **av) { @@ -1022,12 +1265,28 @@ char *buf; }; +#ifdef __Linux__ static void process_mcefd(struct pollfd *pfd, void *data) { struct mcefd_data *d = (struct mcefd_data *)data; assert((pfd->revents & POLLIN) != 0); process(pfd->fd, d->recordlen, d->loglen, d->buf); } +#endif + +#ifdef __FreeBSD__ +/* Fetch current MCA records using sysctls. */ +static void fetch_records_info(struct mcefd_data *d) +{ + size_t len; + int count; + + memset(d, 0, sizeof(*d)); + len = sizeof(count); + if (sysctlbyname("hw.mca.count", &count, &len, NULL, 0) == 0) + d->loglen = count; +} +#endif int main(int ac, char **av) { @@ -1057,13 +1316,16 @@ } else if (opt == 0) break; } +#ifdef __Linux__ if (av[optind]) logfn = av[optind++]; +#endif if (av[optind]) usage(); checkdmi(); general_setup(); +#ifdef __Linux__ fd = open(logfn, O_RDONLY); if (fd < 0) { if (ignore_nodev) @@ -1078,15 +1340,24 @@ err("MCE_GET_LOG_LEN"); d.buf = xalloc(d.recordlen * d.loglen); +#endif +#ifdef __FreeBSD__ + fetch_records_info(&d); + fd = -1; +#endif if (daemon_mode) { check_cpu(); prefill_memdb(); if (!do_dmi) closedmi(); server_setup(); +#ifdef __Linux__ page_setup(); +#endif drop_cred(); +#ifdef __Linux__ register_pollcb(fd, POLLIN, process_mcefd, &d); +#endif if (!foreground && daemon(0, need_stdout()) < 0) err("daemon"); if (pidfile) @@ -1095,7 +1366,9 @@ } else { process(fd, d.recordlen, d.loglen, d.buf); } +#ifdef __Linux__ trigger_wait(); +#endif exit(0); } ==== //depot/projects/mcelog/mcelog.h#2 (text) ==== @@ -64,9 +64,11 @@ #define MCI_STATUS_ADDRV (1ULL<<58) /* addr reg. valid */ #define MCI_STATUS_PCC (1ULL<<57) /* processor context corrupt */ +#ifndef MCG_STATUS_RIPV #define MCG_STATUS_RIPV (1ULL<<0) /* restart ip valid */ #define MCG_STATUS_EIPV (1ULL<<1) /* eip points to correct instruction */ #define MCG_STATUS_MCIP (1ULL<<2) /* machine check in progress */ +#endif #define MCG_CMCI_P (1ULL<<10) /* CMCI supported */ #define MCG_TES_P (1ULL<<11) /* Yellow bit cache threshold supported */ @@ -89,6 +91,10 @@ #define PRINTFLIKE #endif +#if defined(__FreeBSD__) && defined(_STDIO_H_) +FILE *open_memstream(char **cp, size_t *lenp); +#endif + int Wprintf(char *fmt, ...) PRINTFLIKE; void Eprintf(char *fmt, ...) PRINTFLIKE; void SYSERRprintf(char *fmt, ...) PRINTFLIKE; ==== //depot/projects/mcelog/memdb.c#2 (text) ==== @@ -170,7 +170,9 @@ asprintf(&env[ei++], "THRESHOLD_COUNT=%d", bucket->count + bucket->excess); env[ei] = NULL; assert(ei < MAX_ENV); +#ifdef __Linux__ run_trigger(bc->trigger, NULL, env); +#endif for (i = 0; i < ei; i++) free(env[i]); out: ==== //depot/projects/mcelog/p4.c#2 (text) ==== @@ -175,8 +175,10 @@ Wprintf("%s CACHE %s %s Error\n", type, level, get_RRRR_str((mca & CACHE_RRRR_MASK) >> CACHE_RRRR_SHIFT)); +#ifdef __Linux__ if (track == 2) run_yellow_trigger(cpu, typenum, levelnum, type, level, socket); +#endif } else if (test_prefix(10, mca)) { if (mca == 0x400) Wprintf("Internal Timer error\n"); ==== //depot/projects/mcelog/server.c#2 (text) ==== @@ -101,7 +101,9 @@ static void dispatch_pages(FILE *fh) { +#ifdef __Linux__ dump_page_errors(fh); +#endif fprintf(fh, "done\n"); } @@ -137,6 +139,7 @@ Enomem(); } +#ifdef __Linux__ /* check if client is allowed to access */ static int access_check(int fd, struct msghdr *msg) { @@ -162,6 +165,35 @@ sendstring(fd, "permission denied\n"); return -1; } +#endif + +#ifdef __FreeBSD__ +/* check if client is allowed to access */ +static int access_check(int fd, struct msghdr *msg) +{ + struct cmsghdr *cmsg; + struct cmsgcred *cr; + + /* check credentials */ + cmsg = CMSG_FIRSTHDR(msg); + if (cmsg == NULL || + cmsg->cmsg_level != SOL_SOCKET || + cmsg->cmsg_type != SCM_CREDS) { + Eprintf("Did not receive credentials over client unix socket %p\n", + cmsg); + return -1; + } + cr = (struct cmsgcred *)CMSG_DATA(cmsg); + if (cr->cmcred_uid == 0 || + (acc.uid != -1U && cr->cmcred_uid == acc.uid) || + (acc.gid != -1U && cr->cmcred_gid == acc.gid)) + return 0; + Eprintf("rejected client access from pid:%u uid:%u gid:%u\n", + cr->cmcred_pid, cr->cmcred_uid, cr->cmcred_gid); + sendstring(fd, "permission denied\n"); + return -1; +} +#endif /* retrieve commands from client */ static int client_input(int fd, struct clientcon *cc) @@ -242,18 +274,22 @@ { struct clientcon *cc = NULL; int nfd = accept(pfd->fd, NULL, 0); +#ifdef __Linux__ int on; +#endif if (nfd < 0) { SYSERRprintf("accept failed on client socket"); return; } +#ifdef __Linux__ on = 1; if (setsockopt(nfd, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) { SYSERRprintf("Cannot enable credentials passing on client socket"); goto cleanup; } +#endif cc = xalloc(sizeof(struct clientcon)); if (register_pollcb(nfd, POLLIN, client_event, cc) < 0) { ==== //depot/projects/mcelog/tsc.c#2 (text) ==== @@ -15,6 +15,12 @@ on your Linux system; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #define _GNU_SOURCE 1 +#ifdef __FreeBSD__ +#include +#include +#include +#include +#endif #include #include #include @@ -46,6 +52,7 @@ return 0; } +#ifdef __Linux__ static double cpufreq_mhz(int cpu, double infomhz) { double mhz; @@ -68,12 +75,29 @@ fclose(f); return mhz; } +#endif + +#ifdef __FreeBSD__ +static double cpufreq_mhz(int cpu, double infomhz) +{ + double mhz; + uint64_t freq; + size_t len; + + len = sizeof(freq); + if (sysctlbyname("machdep.tsc_freq", &freq, &len, NULL, 0) < 0) + return infomhz; + mhz = freq / 1000000.0; + return mhz; +} +#endif int decode_tsc_forced(char **buf, double mhz, u64 tsc) { return fmt_tsc(buf, tsc, mhz); } +#ifdef __Linux__ static int deep_sleep_states(int cpu) { int ret; @@ -132,6 +156,41 @@ return 0; return 1; } +#endif + +#ifdef __FreeBSD__ +/* Try to figure out if this CPU has a somewhat reliable TSC clock */ +static int tsc_reliable(int cputype, int cpunum) +{ + u_int regs[4]; + u_int cpu_id, amd_pminfo; + + if (cputype != CPU_K8 && !is_intel_cpu(cputype)) + return 0; + + do_cpuid(0, regs); + cpu_id = regs[1]; + do_cpuid(0x80000000, regs); + if (regs[0] >= 0x80000007) { + do_cpuid(0x80000007, regs); + amd_pminfo = regs[3]; + } else + amd_pminfo = 0; + + if (amd_pminfo & AMDPM_TSC_INVARIANT) + return 1; + if (is_intel_cpu(cputype)) { + if (CPUID_TO_FAMILY(cpu_id) >= 0x10 || + cpu_id == 0x60fb2) + return 1; + } else if ((CPUID_TO_FAMILY(cpu_id) == 0x6 && + CPUID_TO_MODEL(cpu_id) >= 0xe) || + (CPUID_TO_FAMILY(cpu_id) == 0xf && CPUID_TO_MODEL(cpu_id) >= 0x3)) + return 1; + + return 0; +} +#endif int decode_tsc_current(char **buf, int cpunum, enum cputype cputype, double mhz, unsigned long long tsc) From owner-p4-projects@FreeBSD.ORG Fri Mar 5 21:48:40 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C5E331065670; Fri, 5 Mar 2010 21:48:40 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A840106564A for ; Fri, 5 Mar 2010 21:48:40 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5DBC68FC13 for ; Fri, 5 Mar 2010 21:48:40 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o25LmeXR052188 for ; Fri, 5 Mar 2010 21:48:40 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o25Lme0K052186 for perforce@freebsd.org; Fri, 5 Mar 2010 21:48:40 GMT (envelope-from hselasky@FreeBSD.org) Date: Fri, 5 Mar 2010 21:48:40 GMT Message-Id: <201003052148.o25Lme0K052186@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175386 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2010 21:48:41 -0000 http://p4web.freebsd.org/chv.cgi?CH=175386 Change 175386 by hselasky@hselasky_laptop001 on 2010/03/05 21:47:41 USB WLAN: - patch for if_run.c from Akinori to resolve some panics. - moved draintask functions to vap_delete like in other drivers. Some are still in run_stop() with NULL ptr check. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/wlan/if_run.c#8 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/wlan/if_run.c#8 (text+ko) ==== @@ -785,11 +785,15 @@ sc = ifp->if_softc; - if (ifp && ifp->if_flags & IFF_UP){ - RUN_LOCK(sc); - run_stop(sc); - RUN_UNLOCK(sc); - } + RUN_LOCK(sc); + sc->sc_rvp->amrr_run = RUN_AMRR_OFF; + RUN_UNLOCK(sc); + + /* drain them all */ + usb_callout_drain(&sc->sc_rvp->amrr_ch); + ieee80211_draintask(ic, &sc->sc_rvp->amrr_task); + ieee80211_draintask(ic, &sc->wme_task); + ieee80211_draintask(ic, &sc->usb_timeout_task); ieee80211_amrr_cleanup(&rvp->amrr); ieee80211_vap_detach(vap); @@ -4234,7 +4238,6 @@ { struct ifnet *ifp = sc->sc_ifp; struct ieee80211com *ic = ifp->if_l2com; - struct ieee80211vap *vap = &sc->sc_rvp->vap; uint32_t tmp; uint8_t bbp1, bbp3; int i; @@ -4391,7 +4394,6 @@ run_rt3070_rf_setup(sc); /* select default channel */ - vap->iv_bss->ni_chan = ic->ic_curchan; /* ic_bsschan?? */ run_set_chan(sc, ic->ic_curchan); /* setup initial protection mode */ @@ -4444,25 +4446,21 @@ RUN_LOCK_ASSERT(sc, MA_OWNED); - if (ic->ic_flags & IEEE80211_F_SCAN) - ieee80211_cancel_scan(&sc->sc_rvp->vap); + if(sc->sc_rvp != NULL){ + sc->sc_rvp->amrr_run = RUN_AMRR_OFF; + if (ic->ic_flags & IEEE80211_F_SCAN) + ieee80211_cancel_scan(&sc->sc_rvp->vap); + } if (ifp->if_drv_flags & IFF_DRV_RUNNING) run_set_leds(sc, 0); /* turn all LEDs off */ ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE); - sc->sc_rvp->amrr_run = RUN_AMRR_OFF; - RUN_UNLOCK(sc); - /* drain them all */ - usb_callout_drain(&sc->sc_rvp->amrr_ch); - ieee80211_draintask(ic, &sc->sc_rvp->amrr_task); - ieee80211_draintask(ic, &sc->wme_task); for(i = 0; i < RUN_N_XFER; i++) usbd_transfer_drain(sc->sc_xfer[i]); - ieee80211_draintask(ic, &sc->usb_timeout_task); RUN_LOCK(sc); From owner-p4-projects@FreeBSD.ORG Sat Mar 6 19:55:58 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8C9401065674; Sat, 6 Mar 2010 19:55:58 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FEE4106564A for ; Sat, 6 Mar 2010 19:55:58 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3D3878FC13 for ; Sat, 6 Mar 2010 19:55:58 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o26JtwLg026043 for ; Sat, 6 Mar 2010 19:55:58 GMT (envelope-from pgj@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o26JtvhY026041 for perforce@freebsd.org; Sat, 6 Mar 2010 19:55:57 GMT (envelope-from pgj@FreeBSD.org) Date: Sat, 6 Mar 2010 19:55:57 GMT Message-Id: <201003061955.o26JtvhY026041@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to pgj@FreeBSD.org using -f From: Gabor Pali To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175405 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Mar 2010 19:55:58 -0000 http://p4web.freebsd.org/chv.cgi?CH=175405 Change 175405 by pgj@Binturong on 2010/03/06 19:55:52 IFC Affected files ... .. //depot/projects/docproj_hu/doc/en_US.ISO8859-1/share/sgml/authors.ent#45 integrate .. //depot/projects/docproj_hu/www/en/art.sgml#2 integrate .. //depot/projects/docproj_hu/www/en/developers.sgml#40 integrate .. //depot/projects/docproj_hu/www/en/donations/donors.sgml#28 integrate .. //depot/projects/docproj_hu/www/en/donations/wantlist.sgml#17 integrate .. //depot/projects/docproj_hu/www/en/news/2008/Makefile#3 integrate .. //depot/projects/docproj_hu/www/en/news/2008/press.xml#3 branch .. //depot/projects/docproj_hu/www/en/news/2009/Makefile#1 branch .. //depot/projects/docproj_hu/www/en/news/2009/news.xml#1 branch .. //depot/projects/docproj_hu/www/en/news/Makefile#4 integrate .. //depot/projects/docproj_hu/www/en/releases/7.3R/schedule.sgml#2 integrate .. //depot/projects/docproj_hu/www/hu/share/sgml/events.xml#30 integrate .. //depot/projects/docproj_hu/www/hu/share/sgml/news.xml#86 integrate .. //depot/projects/docproj_hu/www/hu/where.sgml#23 integrate .. //depot/projects/docproj_hu/www/share/sgml/commercial.consult.xml#22 integrate .. //depot/projects/docproj_hu/www/share/sgml/libcommon.xsl#9 integrate .. //depot/projects/docproj_hu/www/share/sgml/news.xml#86 integrate .. //depot/projects/docproj_hu/www/share/sgml/notices.xml#7 integrate .. //depot/projects/docproj_hu/www/share/sgml/press.xml#24 integrate .. //depot/projects/docproj_hu/www/share/sgml/release.ent#22 integrate .. //depot/projects/docproj_hu/www/share/sgml/templates.oldnewsflash.xsl#4 integrate Differences ... ==== //depot/projects/docproj_hu/doc/en_US.ISO8859-1/share/sgml/authors.ent#45 (text+ko) ==== @@ -13,7 +13,7 @@ builds for the other languages, and we will poke fun of you in public. - $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.498 2010/02/16 13:19:10 linimon Exp $ + $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.499 2010/03/04 02:08:02 neel Exp $ --> aaron@FreeBSD.org"> @@ -792,6 +792,8 @@ nectar@FreeBSD.org"> +neel@FreeBSD.org"> + nemoliu@FreeBSD.org"> netchild@FreeBSD.org"> ==== //depot/projects/docproj_hu/www/en/art.sgml#2 (text+ko) ==== @@ -1,5 +1,5 @@ + %developers; @@ -110,13 +110,23 @@ requires the consent of Brian Tao (creator of the power logo) and Marshall Kirk McKusick - (trademark holder for the BSD Daemon image).

+ (copyright holder for the BSD Daemon image).

&a.phk;'s rendering of the BSD Daemon is released under THE BEER-WARE LICENSE. See the README for more information.

+

Trademarks

+ +

The FreeBSD Foundation + holds several FreeBSD related trademarks (among them the + trademark for the term FreeBSD itself). For more + information about these trademarks read the + FreeBSD Trademark Usage Terms and Conditions.

+ &footer; ==== //depot/projects/docproj_hu/www/en/developers.sgml#40 (text+ko) ==== @@ -6,7 +6,7 @@ us to update author names, or the representation of those names (such as adding email addresses), by just editing a single file. -$FreeBSD: www/en/developers.sgml,v 1.241 2010/02/06 18:09:19 bschmidt Exp $ +$FreeBSD: www/en/developers.sgml,v 1.242 2010/03/04 02:09:47 neel Exp $ --> @@ -396,6 +396,7 @@ + ==== //depot/projects/docproj_hu/www/en/donations/donors.sgml#28 (text+ko) ==== @@ -1,6 +1,6 @@ - + %developers; @@ -2694,6 +2694,13 @@ Received + + Garrett Cooper + 2GB PC6400 DDR2 Corsair RAM module + fjoe + Received + + &footer; ==== //depot/projects/docproj_hu/www/en/donations/wantlist.sgml#17 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -141,6 +141,13 @@ + linimon + Texas, USA + Sun v210/v240 CPU fan + Upgrade package building machine. + + + lioux Brazil Books on any of the following subjects: network @@ -244,6 +251,13 @@ + nwhitehorn + Madison, WI, USA + Apple G5 Dual-core PowerMac + Continued debugging of SMP on PowerPC. + + + obrien Silicon Valley, USA AlphaServer DS15. ==== //depot/projects/docproj_hu/www/en/news/2008/Makefile#3 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: www/en/news/2008/Makefile,v 1.2 2009/03/16 07:58:53 pgj Exp $ +# $FreeBSD: www/en/news/2008/Makefile,v 1.3 2010/03/05 00:07:22 danger Exp $ .if exists(../Makefile.conf) .include "../Makefile.conf" @@ -10,4 +10,7 @@ XMLDOCS+= index:${XSL_NEWS_NEWSFLASH_OLD}:news.xml: DEPENDSET.index=transtable news +XMLDOCS+= press:${XSL_NEWS_PRESS_OLD}:: +DEPENDSET.press=transtable press + .include "${WEB_PREFIX}/share/mk/web.site.mk" ==== //depot/projects/docproj_hu/www/en/news/Makefile#4 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: www/en/news/Makefile,v 1.52 2009/02/11 17:15:28 pgj Exp $ +# $FreeBSD: www/en/news/Makefile,v 1.53 2010/03/05 00:17:57 danger Exp $ .if exists(../Makefile.conf) .include "../Makefile.conf" @@ -47,7 +47,8 @@ SUBDIR+= 2005 SUBDIR+= 2006 SUBDIR+= 2007 -SUBDIR+= 2008 +SUBDIR+= 2008 +SUBDIR+= 2009 SUBDIR+= status .include "${WEB_PREFIX}/share/mk/web.site.mk" ==== //depot/projects/docproj_hu/www/en/releases/7.3R/schedule.sgml#2 (text+ko) ==== @@ -1,7 +1,7 @@ - + re@FreeBSD.org'> @@ -116,7 +116,7 @@ RC2 builds 22 February 2010 - — + 1 March 2010 Begin RC2 builds. @@ -139,7 +139,10 @@

Additional Information

==== //depot/projects/docproj_hu/www/hu/share/sgml/events.xml#30 (text+ko) ==== @@ -17,7 +17,7 @@ - $FreeBSD: www/hu/share/sgml/events.xml,v 1.13 2010/01/30 19:53:58 pgj Exp $ + $FreeBSD: www/hu/share/sgml/events.xml,v 1.14 2010/02/25 21:43:53 pgj Exp $ ==== //depot/projects/docproj_hu/www/hu/share/sgml/news.xml#86 (text+ko) ==== @@ -11,7 +11,7 @@ - $FreeBSD: www/hu/share/sgml/news.xml,v 1.37 2010/02/14 04:55:06 pgj Exp $ + $FreeBSD: www/hu/share/sgml/news.xml,v 1.38 2010/02/25 21:43:53 pgj Exp $ ==== //depot/projects/docproj_hu/www/hu/where.sgml#23 (text+ko) ==== @@ -1,5 +1,5 @@ + ==== //depot/projects/docproj_hu/www/share/sgml/commercial.consult.xml#22 (text+ko) ==== @@ -1,12 +1,12 @@ - + - $FreeBSD: www/share/sgml/commercial.consult.xml,v 1.72 2010/02/22 07:50:17 jkois Exp $ + $FreeBSD: www/share/sgml/commercial.consult.xml,v 1.92 2010/03/04 21:17:13 jkois Exp $ @@ -20,18 +20,6 @@ South America - - 757 Technologies - http://www.757tech.net - - 757 Technologies offer installation and integration of FreeBSD, as - well as FreeBSD co-location and maintenance. Serving the Hampton - Roads area of Virginia. Please contact us at info@757tech.net for more - information. We can also be reached by telephone at (757) 233-9460. - - - Aaronsen Group, Ltd http://www.aaronsen.com/freebsd/ @@ -126,22 +114,6 @@ - - ASG Technologies - http://www.asgtechnologies.com/ - - ASG Technologies' Professional Services division offers network - security management products and services. Staffed by experienced - information technology and systems professionals, ASG Professional - Services has in-depth experience in network systems design, - integration and management across diverse computing platforms. For - more information, please phone us at +1.506.460.5400, e-mail consulting@asgtechnologies.co - m, or visit our web - site and follow the Professional Services Links. - - - AnonBSD Inc. https://sites.google.com/site/anonbsd/ @@ -156,19 +128,6 @@ - - AYN & Associates - http://www.aynassociates.com - - AYN & Associates, based in Austin, TX, is a software and internet - consulting company specializing in FreeBSD. We provide a full range - of services including setting up FreeBSD servers, LAN setups, setting - up internet services such as mail and news servers, proxies, web - servers. We also provide custom programming solutions in most - operating systems. - - - BITNETS Inc. http://www.bitnets.ca @@ -264,19 +223,6 @@ - - Cidreira - Sistemas de Informaçao Lda. - - Cidreira - Sistemas de Informaçao Lda. is located in Lisbon, Portugal - We provide consulting services for FreeBSD, OpenBSD, Linux and Windows - systems, namely in security, interoperability and intra-network - normalization of services. We're specialized in small to medium sized - networks. For more information contact us at cidreira@net.novis.pt or - phone to +351 21 392 89 75. - - - Clue Computing, Inc. http://www.clue.com/ @@ -346,19 +292,6 @@ - - Connections USA - http://www.connectionsusa.com/ - - Connections, USA is a FreeBSD-based Internet Service provider. We - provide hosting and co-location services and web site development. - Other FreeBSD-based services are available as well, including system - and network administration as well as consulting. Check out our corporate Web page and http://www.iserve.com/. - - - Core Software http://www.coresoftware.net.au @@ -373,21 +306,6 @@ - - DaemonWare - http://www.daemonware.com.ar/ - - DaemonWare offers UNIX consulting, system administration, network - solution, programming and security; with several UNIX systems: - FreeBSD, OpenBSD, Linux and others. We have over 5 years of UNIX and - networking experience and programming experience. Specialized for - Internet services. For further information, please visit ower web site or email us - at info@daemonware.com.ar. - - - DataPipe http://www.datapipe.com/ @@ -1070,17 +988,6 @@ - - Potter Systems - http://www.pottersystems.com/ - - Matthew R. Potter has over 8 years in UNIX IP Networks, specializes - in BSD, OS X and Network Consulting and is located in Northern - Virginia. You can reach him via email at Matthew R. Potter. - - - Poul-Henning Kamp http://www.freebsd.org/~phk/ @@ -1155,17 +1062,6 @@ - - Brian Somers - http://www.Awfulhak.org/brian/ - - Brian Somers has over 10 years in UNIX, Networks, C & C++. Brian is - responsible for the PPP code in FreeBSD, and located in NW - London. You can reach him via email at brian@Awfulhak.org - - - SolucoesIP http://www.solucoesip.net/ @@ -1308,22 +1204,6 @@ - - Camtech Pty Ltd - http://www.camtech.com.au/ - - Camtech Pty Ltd The Consulting Services Division of Camtech provides - a broad range of technical and professional services to assist - businesses to achieve higher levels of productivity through efficient - use of Information Technology. Services available encompass all - aspects of information systems scoping and analysis, design, - implementation, integration, administration, testing, training and - maintenance. Camtech is a provider of FreeBSD-based solutions, - including Internet gateway servers, firewalls, and Intranet servers. - Phone +61 8 8303 3300. - - - Wave2 Limited http://www.wave2.co.uk/ @@ -1359,19 +1239,6 @@ - - WorldServe Consulting - http://www.worldserve.net - - WorldServe Consulting offers FreeBSD installation, configuration and - maintenance consulting services to businesses in Northern Virginia. - We also offer web site development and custom web solutions. Over - four years of experience. Check out our web site or e-mail us at info@worldserve.net. - - - Security Audit and Control Solutions http://www.sacs.co.za/ @@ -1406,21 +1273,6 @@ - - Bellamy Consulting Ltd - http://www.bellamy.co.nz - - Bellamy Consulting Ltd, based in - Auckland, New Zealand, is a - consulting company specializing in Linux, FreeBSD, NetBSD and - OpenBSD. Our main focus is on Internet servers (Web Servers & - Caches, Email, DNS, FTP, Databases, etc.), software and security - (Firewalls, VPNs, Proxies). See our web site for more information, or - contact us directly at info@bellamy.co.nz. - - - White Queue Consulting http://whitequeue.com/ @@ -1812,18 +1664,6 @@ - - Ajit Anand - http://ajita.addr.com/ - - Consulting in the areas of Internet security and data - defense mainly with open source software. Particular - knowledge of firewalls, internet applications, Mail, - Proxy Servers, IDS and network administration. Have - developed a range of routers/appliances based on Linux/BSD. - - - Citecs GmbH http://www.citecs.de/ @@ -1860,19 +1700,6 @@ - - Andras Kende - http://www.kende.com/ - - Andras Kende is providing configuration, installation and - system maintenance of FreeBSD hosted Internet or Intranet - services and applications for clients throughout Dallas, - Texas. For more information, please send e-mail to - andras@kende.com, - or visit our web site. - - - DigiNex.Net http://www.diginex.net @@ -2106,22 +1933,6 @@ - - Senokian Solutions Ltd - http://www.senokian.com/smes/opensource/ - - Senokian Solutions are a company dedicated to the use of and support - of Open Source Software. We offer support and consultancy on deployment - of FreeBSD, and offer firewall and security related products and - services using FreeBSD as well as hosting and servers. We also provide - servers and desktops pre-installed with FreeBSD. Visit our website at - - http://www.senokian.com/smes/opensource/ or email us at - info@senokian.com, - or phone +44 870 744 2030. - - - S.C. vocalNET S.R.L. http://www.vocal.ro @@ -2281,20 +2092,6 @@ href="mailto:service@eissaf.net">service@eissaf.net. - - - Zelfi AG - http://www.zelfi.com/ - - Zelfi AG supports FreeBSD by offering consulting services in - Mainz, Rheinland-Pfalz, Germany. We provide installation and - administration of web- and database servers. Please see our website, or write to bsd@zelfi.com for more - information. It is also possible to reach us via phone at - +49-6131-9064850. - - BSD Professionals In Europe (BSDPIE) @@ -2377,18 +2174,6 @@ - - Unix Technologies Ltda. - http://www.unixtech.cl - - Unix Technologies provides administration and installation of - Unix systems services, HA Clusters, Voice over IP platforms, - message gateways, SMS, GSM over FreeBSD, NetBSD, OpenBSD, Unix - TCP/IP software, firewalls, VPN, 802.1q, IDS, IPS, QoS over - VOIP and embedded systems. Located in Santiago, Chile. - - - CTS Consulting and Trade Service http://www.ctseuro.com @@ -2444,35 +2229,6 @@ - - Ultranix Consulting Ltd. - http://www.ultranix.co.uk - - UltraNIX is a network and IT systems consultancy based close to - Gatwick in the South East of England. We specialise in all - aspects of FreeBSD consultancy, including remote support / - installations / upgrades. Also provide FreeBSD based hosting - solutions, tailored to your needs. Visit http://www.ultranix.co.uk/ - or email enquire@ultranix.co.uk - - - - - ANURIX Servicios Informaticos - http://www.anurix.com - - Anurix provides IT solutions based on Free Software in Valencia, - Spain. We do support BSD Systems as part of our consulting - services, which include (but are not limited to): security audits, - corporative networks, internet communications, web software, etc. - Contact us via email at info@anurix.com or by phone - by calling at +34 963 35 43 67. - - - Unix Consulting http://www.unixconsulting.info @@ -2711,17 +2467,6 @@ - - BSD Dedicated Server Hosting - http://servepath.com/dedicated-servers/linux/freebsd/index.htm - - ServePath offers the latest version of FreeBSD on any of our dedicated - servers. All ServePath FreeBSD dedicated servers come with root access - to install additional UNIX applications and allow you to customize your - FreeBSD dedicated server to fit your needs. - - - secion GmbH http://www.secion.de/ @@ -3045,21 +2790,6 @@ - - Adam McCarthy - http://www.adammccarthy.co.uk - - I have over 8 years experience with FreeBSD and offer consulting in - many areas, including general FreeBSD/Linux infrastructure, load - balanced, highly available clustering, VOIP, network security and - migration from proprietary systems to open source. I am based in - Birmingham, UK and you can visit my website at - http://www.adammccarthy.co.uk - or email me at - adam@adammccarthy.co.uk - - - PontoSI http://www.pontosi.pt ==== //depot/projects/docproj_hu/www/share/sgml/libcommon.xsl#9 (text+ko) ==== @@ -1,7 +1,7 @@ - +

Old announcements: + 2009, 2008, 2007, 2006, @@ -411,6 +412,7 @@

Old press publications: + 2008, 2007, 2006, 2005, ==== //depot/projects/docproj_hu/www/share/sgml/news.xml#86 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.296 2010/02/20 11:16:23 danger Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.300 2010/03/05 00:17:57 danger Exp $ @@ -33,9 +33,58 @@ 2010 + 3 + + + 4 + + + &os; 7.3-RC2 Available + +

The second Release Candidate build for the &os;-7.3 + release cycle is now available. ISO images for Tier-1 + architectures are now available + on most of the &os; + mirror sites.

+ + + + + 3 + + +

New committer: Neel + Natu (src)

+
+
+ + + + 2 + 22 + + + PC-BSD 8.0 Released + +

PC-BSD 8.0 has been released. PC-BSD is a + successful desktop operating system based on FreeBSD that + focuses on providing an easy to use desktop system for + casual computer users. A list of new features/updates + since the last version can be found here.

+ +

The new release can be downloaded or purchased on DVD.

+
+
+ + 15 @@ -153,841 +202,4 @@
- - 2009 - - - 12 - - - 20 - - -

New committer: Ryusuke - SUZUKI (doc/ja_JP, www/ja)

-
-
- - - 7 - - -

New committer: Gavin - Atkinson (src)

-
-
- - - 3 - - - Official support for NVIDIA graphics cards on amd64 - architecture - -

The NVIDIA Corporation releases an initial BETA version of - NVIDIA 195.22 &os; graphics drivers for both i386 and amd64 - architectures. The drivers support recent versions of the - &os; operating system, i.e. 7.2-STABLE and 8.0-RELEASE and - provide support for features like SLI, improved - compatibility and performance, especially on systems with - 4GB or more of RAM. This marks the first driver release for - amd64, as it was previously available only for i386 - architecture. Please see the original announcement - for more information.

-
-
-
- - - 11 - - - 27 - - - FreeBSD 8.0 press release - -

The FreeBSD - 8.0 press release is now available.

-
-
- - - 26 - - - FreeBSD 8.0-RELEASE Available - -

FreeBSD - 8.0-RELEASE is now available. Please be sure to check - the Release - Notes and Release - Errata before installation for any late-breaking news - and/or issues with 8.0. More information about FreeBSD - releases can be found on the Release - Information page.

-
-
- - - 18 - - -

New committer: Matthias Andree (ports)

-
-
- - - 12 - - - &os; 8.0-RC3 Available - -

The third of the Release Candidates for the &os;-8.0 - release cycle is now available. ISO images for Tier-1 - architectures and a memory stick image for - amd64/i386 are now available - on most of the &os; - mirror sites.

-
-
-
- - - 10 - - - 29 - -

New committer: Sylvio - Cesar Teixeira (ports)

-
-
- - - 28 - - - &os; 8.0-RC2 Available - -

The second of the Release Candidates for the &os;-8.0 - release cycle is now available. ISO images for Tier-1 - architectures and a memory stick image for - amd64/i386 are now available - on most of the &os; - mirror sites.

-
-
- - - 11 - - - April-September, 2009 Status Report - -

The April-September, 2009 Status Report is now - available with 38 entries.

-
-
- - - 4 - - -

New committer: Jaakko - Heinonen (src)

-
-
-
- - - 9 - - - 21 - - - &os; 8.0-RC1 Available - -

The first of the Release Candidates for the &os;-8.0 - release cycle is now available. ISO images for Tier-1 - architectures and a memory stick image for - amd64/i386 are now available - on most of the &os; - mirror sites.

-
-
- - - 15 - -

New committer: Wen - Heping (ports)

-
-
- - - 7 - - - &os; 8.0-BETA4 Available - -

The fourth and last of the BETA builds for the &os;-8.0 - release cycle is now available. ISO images for Tier-1 - architectures and a memory stick image for - amd64/i386 are now available - on most of the &os; - mirror sites.

-
-
-
- - - 8 - - >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Sat Mar 6 20:31:51 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 3A98F1065674; Sat, 6 Mar 2010 20:31:51 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5B8D1065672 for ; Sat, 6 Mar 2010 20:31:50 +0000 (UTC) (envelope-from raj@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C24F18FC15 for ; Sat, 6 Mar 2010 20:31:50 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o26KVoGh029574 for ; Sat, 6 Mar 2010 20:31:50 GMT (envelope-from raj@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o26KVoLV029572 for perforce@freebsd.org; Sat, 6 Mar 2010 20:31:50 GMT (envelope-from raj@freebsd.org) Date: Sat, 6 Mar 2010 20:31:50 GMT Message-Id: <201003062031.o26KVoLV029572@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to raj@freebsd.org using -f From: Rafal Jaworowski To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175407 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Mar 2010 20:31:51 -0000 http://p4web.freebsd.org/chv.cgi?CH=175407 Change 175407 by raj@raj_nand on 2010/03/06 20:31:42 HEAD baseline import. Affected files ... .. //depot/projects/nand2/COPYRIGHT#1 branch .. //depot/projects/nand2/LOCKS#1 branch .. //depot/projects/nand2/MAINTAINERS#1 branch .. //depot/projects/nand2/Makefile#1 branch .. //depot/projects/nand2/Makefile.inc1#1 branch .. //depot/projects/nand2/ObsoleteFiles.inc#1 branch .. //depot/projects/nand2/README#1 branch .. //depot/projects/nand2/UPDATING#1 branch .. //depot/projects/nand2/bin/Makefile#1 branch .. //depot/projects/nand2/bin/Makefile.inc#1 branch .. //depot/projects/nand2/bin/cat/Makefile#1 branch .. //depot/projects/nand2/bin/cat/cat.1#1 branch .. //depot/projects/nand2/bin/cat/cat.c#1 branch .. //depot/projects/nand2/bin/chflags/Makefile#1 branch .. //depot/projects/nand2/bin/chflags/chflags.1#1 branch .. //depot/projects/nand2/bin/chflags/chflags.c#1 branch .. //depot/projects/nand2/bin/chio/Makefile#1 branch .. //depot/projects/nand2/bin/chio/chio.1#1 branch .. //depot/projects/nand2/bin/chio/chio.c#1 branch .. //depot/projects/nand2/bin/chio/defs.h#1 branch .. //depot/projects/nand2/bin/chio/pathnames.h#1 branch .. //depot/projects/nand2/bin/chmod/Makefile#1 branch .. //depot/projects/nand2/bin/chmod/chmod.1#1 branch .. //depot/projects/nand2/bin/chmod/chmod.c#1 branch .. //depot/projects/nand2/bin/cp/Makefile#1 branch .. //depot/projects/nand2/bin/cp/cp.1#1 branch .. //depot/projects/nand2/bin/cp/cp.c#1 branch .. //depot/projects/nand2/bin/cp/extern.h#1 branch .. //depot/projects/nand2/bin/cp/utils.c#1 branch .. //depot/projects/nand2/bin/csh/Makefile#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/csh.1#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/csh.2#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/csh.3#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/csh.4#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/csh.a#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/csh.g#1 branch .. //depot/projects/nand2/bin/csh/USD.doc/tabs#1 branch .. //depot/projects/nand2/bin/csh/config.h#1 branch .. //depot/projects/nand2/bin/csh/config_p.h#1 branch .. //depot/projects/nand2/bin/csh/host.defs#1 branch .. //depot/projects/nand2/bin/csh/iconv.h#1 branch .. //depot/projects/nand2/bin/csh/iconv_stub.c#1 branch .. //depot/projects/nand2/bin/date/Makefile#1 branch .. //depot/projects/nand2/bin/date/date.1#1 branch .. //depot/projects/nand2/bin/date/date.c#1 branch .. //depot/projects/nand2/bin/date/extern.h#1 branch .. //depot/projects/nand2/bin/date/netdate.c#1 branch .. //depot/projects/nand2/bin/date/vary.c#1 branch .. //depot/projects/nand2/bin/date/vary.h#1 branch .. //depot/projects/nand2/bin/dd/Makefile#1 branch .. //depot/projects/nand2/bin/dd/args.c#1 branch .. //depot/projects/nand2/bin/dd/conv.c#1 branch .. //depot/projects/nand2/bin/dd/conv_tab.c#1 branch .. //depot/projects/nand2/bin/dd/dd.1#1 branch .. //depot/projects/nand2/bin/dd/dd.c#1 branch .. //depot/projects/nand2/bin/dd/dd.h#1 branch .. //depot/projects/nand2/bin/dd/extern.h#1 branch .. //depot/projects/nand2/bin/dd/gen.c#1 branch .. //depot/projects/nand2/bin/dd/misc.c#1 branch .. //depot/projects/nand2/bin/dd/position.c#1 branch .. //depot/projects/nand2/bin/dd/ref.ascii#1 branch .. //depot/projects/nand2/bin/dd/ref.ebcdic#1 branch .. //depot/projects/nand2/bin/dd/ref.ibm#1 branch .. //depot/projects/nand2/bin/dd/ref.lcase#1 branch .. //depot/projects/nand2/bin/dd/ref.oldascii#1 branch .. //depot/projects/nand2/bin/dd/ref.oldebcdic#1 branch .. //depot/projects/nand2/bin/dd/ref.oldibm#1 branch .. //depot/projects/nand2/bin/dd/ref.pareven#1 branch .. //depot/projects/nand2/bin/dd/ref.parnone#1 branch .. //depot/projects/nand2/bin/dd/ref.parodd#1 branch .. //depot/projects/nand2/bin/dd/ref.parset#1 branch .. //depot/projects/nand2/bin/dd/ref.swab#1 branch .. //depot/projects/nand2/bin/dd/ref.ucase#1 branch .. //depot/projects/nand2/bin/df/Makefile#1 branch .. //depot/projects/nand2/bin/df/df.1#1 branch .. //depot/projects/nand2/bin/df/df.c#1 branch .. //depot/projects/nand2/bin/domainname/Makefile#1 branch .. //depot/projects/nand2/bin/domainname/domainname.1#1 branch .. //depot/projects/nand2/bin/domainname/domainname.c#1 branch .. //depot/projects/nand2/bin/echo/Makefile#1 branch .. //depot/projects/nand2/bin/echo/echo.1#1 branch .. //depot/projects/nand2/bin/echo/echo.c#1 branch .. //depot/projects/nand2/bin/ed/Makefile#1 branch .. //depot/projects/nand2/bin/ed/POSIX#1 branch .. //depot/projects/nand2/bin/ed/README#1 branch .. //depot/projects/nand2/bin/ed/buf.c#1 branch .. //depot/projects/nand2/bin/ed/cbc.c#1 branch .. //depot/projects/nand2/bin/ed/ed.1#1 branch .. //depot/projects/nand2/bin/ed/ed.h#1 branch .. //depot/projects/nand2/bin/ed/glbl.c#1 branch .. //depot/projects/nand2/bin/ed/io.c#1 branch .. //depot/projects/nand2/bin/ed/main.c#1 branch .. //depot/projects/nand2/bin/ed/re.c#1 branch .. //depot/projects/nand2/bin/ed/sub.c#1 branch .. //depot/projects/nand2/bin/ed/test/=.err#1 branch .. //depot/projects/nand2/bin/ed/test/Makefile#1 branch .. //depot/projects/nand2/bin/ed/test/README#1 branch .. //depot/projects/nand2/bin/ed/test/TODO#1 branch .. //depot/projects/nand2/bin/ed/test/a.d#1 branch .. //depot/projects/nand2/bin/ed/test/a.r#1 branch .. //depot/projects/nand2/bin/ed/test/a.t#1 branch .. //depot/projects/nand2/bin/ed/test/a1.err#1 branch .. //depot/projects/nand2/bin/ed/test/a2.err#1 branch .. //depot/projects/nand2/bin/ed/test/addr.d#1 branch .. //depot/projects/nand2/bin/ed/test/addr.r#1 branch .. //depot/projects/nand2/bin/ed/test/addr.t#1 branch .. //depot/projects/nand2/bin/ed/test/addr1.err#1 branch .. //depot/projects/nand2/bin/ed/test/addr2.err#1 branch .. //depot/projects/nand2/bin/ed/test/ascii.d.uu#1 branch .. //depot/projects/nand2/bin/ed/test/ascii.r.uu#1 branch .. //depot/projects/nand2/bin/ed/test/ascii.t#1 branch .. //depot/projects/nand2/bin/ed/test/bang1.d#1 branch .. //depot/projects/nand2/bin/ed/test/bang1.err#1 branch .. //depot/projects/nand2/bin/ed/test/bang1.r#1 branch .. //depot/projects/nand2/bin/ed/test/bang1.t#1 branch .. //depot/projects/nand2/bin/ed/test/bang2.err#1 branch .. //depot/projects/nand2/bin/ed/test/c.d#1 branch .. //depot/projects/nand2/bin/ed/test/c.r#1 branch .. //depot/projects/nand2/bin/ed/test/c.t#1 branch .. //depot/projects/nand2/bin/ed/test/c1.err#1 branch .. //depot/projects/nand2/bin/ed/test/c2.err#1 branch .. //depot/projects/nand2/bin/ed/test/ckscripts.sh#1 branch .. //depot/projects/nand2/bin/ed/test/d.d#1 branch .. //depot/projects/nand2/bin/ed/test/d.err#1 branch .. //depot/projects/nand2/bin/ed/test/d.r#1 branch .. //depot/projects/nand2/bin/ed/test/d.t#1 branch .. //depot/projects/nand2/bin/ed/test/e1.d#1 branch .. //depot/projects/nand2/bin/ed/test/e1.err#1 branch .. //depot/projects/nand2/bin/ed/test/e1.r#1 branch .. //depot/projects/nand2/bin/ed/test/e1.t#1 branch .. //depot/projects/nand2/bin/ed/test/e2.d#1 branch .. //depot/projects/nand2/bin/ed/test/e2.err#1 branch .. //depot/projects/nand2/bin/ed/test/e2.r#1 branch .. //depot/projects/nand2/bin/ed/test/e2.t#1 branch .. //depot/projects/nand2/bin/ed/test/e3.d#1 branch .. //depot/projects/nand2/bin/ed/test/e3.err#1 branch .. //depot/projects/nand2/bin/ed/test/e3.r#1 branch .. //depot/projects/nand2/bin/ed/test/e3.t#1 branch .. //depot/projects/nand2/bin/ed/test/e4.d#1 branch .. //depot/projects/nand2/bin/ed/test/e4.r#1 branch .. //depot/projects/nand2/bin/ed/test/e4.t#1 branch .. //depot/projects/nand2/bin/ed/test/f1.err#1 branch .. //depot/projects/nand2/bin/ed/test/f2.err#1 branch .. //depot/projects/nand2/bin/ed/test/g1.d#1 branch .. //depot/projects/nand2/bin/ed/test/g1.err#1 branch .. //depot/projects/nand2/bin/ed/test/g1.r#1 branch .. //depot/projects/nand2/bin/ed/test/g1.t#1 branch .. //depot/projects/nand2/bin/ed/test/g2.d#1 branch .. //depot/projects/nand2/bin/ed/test/g2.err#1 branch .. //depot/projects/nand2/bin/ed/test/g2.r#1 branch .. //depot/projects/nand2/bin/ed/test/g2.t#1 branch .. //depot/projects/nand2/bin/ed/test/g3.d#1 branch .. //depot/projects/nand2/bin/ed/test/g3.err#1 branch .. //depot/projects/nand2/bin/ed/test/g3.r#1 branch .. //depot/projects/nand2/bin/ed/test/g3.t#1 branch .. //depot/projects/nand2/bin/ed/test/g4.d#1 branch .. //depot/projects/nand2/bin/ed/test/g4.r#1 branch .. //depot/projects/nand2/bin/ed/test/g4.t#1 branch .. //depot/projects/nand2/bin/ed/test/g5.d#1 branch .. //depot/projects/nand2/bin/ed/test/g5.r#1 branch .. //depot/projects/nand2/bin/ed/test/g5.t#1 branch .. //depot/projects/nand2/bin/ed/test/h.err#1 branch .. //depot/projects/nand2/bin/ed/test/i.d#1 branch .. //depot/projects/nand2/bin/ed/test/i.r#1 branch .. //depot/projects/nand2/bin/ed/test/i.t#1 branch .. //depot/projects/nand2/bin/ed/test/i1.err#1 branch .. //depot/projects/nand2/bin/ed/test/i2.err#1 branch .. //depot/projects/nand2/bin/ed/test/i3.err#1 branch .. //depot/projects/nand2/bin/ed/test/j.d#1 branch .. //depot/projects/nand2/bin/ed/test/j.r#1 branch .. //depot/projects/nand2/bin/ed/test/j.t#1 branch .. //depot/projects/nand2/bin/ed/test/k.d#1 branch .. //depot/projects/nand2/bin/ed/test/k.r#1 branch .. //depot/projects/nand2/bin/ed/test/k.t#1 branch .. //depot/projects/nand2/bin/ed/test/k1.err#1 branch .. //depot/projects/nand2/bin/ed/test/k2.err#1 branch .. //depot/projects/nand2/bin/ed/test/k3.err#1 branch .. //depot/projects/nand2/bin/ed/test/k4.err#1 branch .. //depot/projects/nand2/bin/ed/test/l.d#1 branch .. //depot/projects/nand2/bin/ed/test/l.r#1 branch .. //depot/projects/nand2/bin/ed/test/l.t#1 branch .. //depot/projects/nand2/bin/ed/test/m.d#1 branch .. //depot/projects/nand2/bin/ed/test/m.err#1 branch .. //depot/projects/nand2/bin/ed/test/m.r#1 branch .. //depot/projects/nand2/bin/ed/test/m.t#1 branch .. //depot/projects/nand2/bin/ed/test/mkscripts.sh#1 branch .. //depot/projects/nand2/bin/ed/test/n.d#1 branch .. //depot/projects/nand2/bin/ed/test/n.r#1 branch .. //depot/projects/nand2/bin/ed/test/n.t#1 branch .. //depot/projects/nand2/bin/ed/test/nl.err#1 branch .. //depot/projects/nand2/bin/ed/test/nl1.d#1 branch .. //depot/projects/nand2/bin/ed/test/nl1.r#1 branch .. //depot/projects/nand2/bin/ed/test/nl1.t#1 branch .. //depot/projects/nand2/bin/ed/test/nl2.d#1 branch .. //depot/projects/nand2/bin/ed/test/nl2.r#1 branch .. //depot/projects/nand2/bin/ed/test/nl2.t#1 branch .. //depot/projects/nand2/bin/ed/test/p.d#1 branch .. //depot/projects/nand2/bin/ed/test/p.r#1 branch .. //depot/projects/nand2/bin/ed/test/p.t#1 branch .. //depot/projects/nand2/bin/ed/test/q.d#1 branch .. //depot/projects/nand2/bin/ed/test/q.r#1 branch .. //depot/projects/nand2/bin/ed/test/q.t#1 branch .. //depot/projects/nand2/bin/ed/test/q1.err#1 branch .. //depot/projects/nand2/bin/ed/test/r1.d#1 branch .. //depot/projects/nand2/bin/ed/test/r1.err#1 branch .. //depot/projects/nand2/bin/ed/test/r1.r#1 branch .. //depot/projects/nand2/bin/ed/test/r1.t#1 branch .. //depot/projects/nand2/bin/ed/test/r2.d#1 branch .. //depot/projects/nand2/bin/ed/test/r2.err#1 branch .. //depot/projects/nand2/bin/ed/test/r2.r#1 branch .. //depot/projects/nand2/bin/ed/test/r2.t#1 branch .. //depot/projects/nand2/bin/ed/test/r3.d#1 branch .. //depot/projects/nand2/bin/ed/test/r3.r#1 branch .. //depot/projects/nand2/bin/ed/test/r3.t#1 branch .. //depot/projects/nand2/bin/ed/test/s1.d#1 branch .. //depot/projects/nand2/bin/ed/test/s1.err#1 branch .. //depot/projects/nand2/bin/ed/test/s1.r#1 branch .. //depot/projects/nand2/bin/ed/test/s1.t#1 branch .. //depot/projects/nand2/bin/ed/test/s10.err#1 branch .. //depot/projects/nand2/bin/ed/test/s2.d#1 branch .. //depot/projects/nand2/bin/ed/test/s2.err#1 branch .. //depot/projects/nand2/bin/ed/test/s2.r#1 branch .. //depot/projects/nand2/bin/ed/test/s2.t#1 branch .. //depot/projects/nand2/bin/ed/test/s3.d#1 branch .. //depot/projects/nand2/bin/ed/test/s3.err#1 branch .. //depot/projects/nand2/bin/ed/test/s3.r#1 branch .. //depot/projects/nand2/bin/ed/test/s3.t#1 branch .. //depot/projects/nand2/bin/ed/test/s4.err#1 branch .. //depot/projects/nand2/bin/ed/test/s5.err#1 branch .. //depot/projects/nand2/bin/ed/test/s6.err#1 branch .. //depot/projects/nand2/bin/ed/test/s7.err#1 branch .. //depot/projects/nand2/bin/ed/test/s8.err#1 branch .. //depot/projects/nand2/bin/ed/test/s9.err#1 branch .. //depot/projects/nand2/bin/ed/test/t.d#1 branch .. //depot/projects/nand2/bin/ed/test/t.r#1 branch .. //depot/projects/nand2/bin/ed/test/t1.d#1 branch .. //depot/projects/nand2/bin/ed/test/t1.err#1 branch .. //depot/projects/nand2/bin/ed/test/t1.r#1 branch .. //depot/projects/nand2/bin/ed/test/t1.t#1 branch .. //depot/projects/nand2/bin/ed/test/t2.d#1 branch .. //depot/projects/nand2/bin/ed/test/t2.err#1 branch .. //depot/projects/nand2/bin/ed/test/t2.r#1 branch .. //depot/projects/nand2/bin/ed/test/t2.t#1 branch .. //depot/projects/nand2/bin/ed/test/u.d#1 branch .. //depot/projects/nand2/bin/ed/test/u.err#1 branch .. //depot/projects/nand2/bin/ed/test/u.r#1 branch .. //depot/projects/nand2/bin/ed/test/u.t#1 branch .. //depot/projects/nand2/bin/ed/test/v.d#1 branch .. //depot/projects/nand2/bin/ed/test/v.r#1 branch .. //depot/projects/nand2/bin/ed/test/v.t#1 branch .. //depot/projects/nand2/bin/ed/test/w.d#1 branch .. //depot/projects/nand2/bin/ed/test/w.r#1 branch .. //depot/projects/nand2/bin/ed/test/w.t#1 branch .. //depot/projects/nand2/bin/ed/test/w1.err#1 branch .. //depot/projects/nand2/bin/ed/test/w2.err#1 branch .. //depot/projects/nand2/bin/ed/test/w3.err#1 branch .. //depot/projects/nand2/bin/ed/test/x.err#1 branch .. //depot/projects/nand2/bin/ed/test/z.err#1 branch .. //depot/projects/nand2/bin/ed/undo.c#1 branch .. //depot/projects/nand2/bin/expr/Makefile#1 branch .. //depot/projects/nand2/bin/expr/expr.1#1 branch .. //depot/projects/nand2/bin/expr/expr.y#1 branch .. //depot/projects/nand2/bin/getfacl/Makefile#1 branch .. //depot/projects/nand2/bin/getfacl/getfacl.1#1 branch .. //depot/projects/nand2/bin/getfacl/getfacl.c#1 branch .. //depot/projects/nand2/bin/hostname/Makefile#1 branch .. //depot/projects/nand2/bin/hostname/hostname.1#1 branch .. //depot/projects/nand2/bin/hostname/hostname.c#1 branch .. //depot/projects/nand2/bin/kenv/Makefile#1 branch .. //depot/projects/nand2/bin/kenv/kenv.1#1 branch .. //depot/projects/nand2/bin/kenv/kenv.c#1 branch .. //depot/projects/nand2/bin/kill/Makefile#1 branch .. //depot/projects/nand2/bin/kill/kill.1#1 branch .. //depot/projects/nand2/bin/kill/kill.c#1 branch .. //depot/projects/nand2/bin/ln/Makefile#1 branch .. //depot/projects/nand2/bin/ln/ln.1#1 branch .. //depot/projects/nand2/bin/ln/ln.c#1 branch .. //depot/projects/nand2/bin/ln/symlink.7#1 branch .. //depot/projects/nand2/bin/ls/Makefile#1 branch .. //depot/projects/nand2/bin/ls/cmp.c#1 branch .. //depot/projects/nand2/bin/ls/extern.h#1 branch .. //depot/projects/nand2/bin/ls/ls.1#1 branch .. //depot/projects/nand2/bin/ls/ls.c#1 branch .. //depot/projects/nand2/bin/ls/ls.h#1 branch .. //depot/projects/nand2/bin/ls/print.c#1 branch .. //depot/projects/nand2/bin/ls/util.c#1 branch .. //depot/projects/nand2/bin/mkdir/Makefile#1 branch .. //depot/projects/nand2/bin/mkdir/mkdir.1#1 branch .. //depot/projects/nand2/bin/mkdir/mkdir.c#1 branch .. //depot/projects/nand2/bin/mv/Makefile#1 branch .. //depot/projects/nand2/bin/mv/mv.1#1 branch .. //depot/projects/nand2/bin/mv/mv.c#1 branch .. //depot/projects/nand2/bin/pax/Makefile#1 branch .. //depot/projects/nand2/bin/pax/ar_io.c#1 branch .. //depot/projects/nand2/bin/pax/ar_subs.c#1 branch .. //depot/projects/nand2/bin/pax/buf_subs.c#1 branch .. //depot/projects/nand2/bin/pax/cache.c#1 branch .. //depot/projects/nand2/bin/pax/cache.h#1 branch .. //depot/projects/nand2/bin/pax/cpio.1#1 branch .. //depot/projects/nand2/bin/pax/cpio.c#1 branch .. //depot/projects/nand2/bin/pax/cpio.h#1 branch .. //depot/projects/nand2/bin/pax/extern.h#1 branch .. //depot/projects/nand2/bin/pax/file_subs.c#1 branch .. //depot/projects/nand2/bin/pax/ftree.c#1 branch .. //depot/projects/nand2/bin/pax/ftree.h#1 branch .. //depot/projects/nand2/bin/pax/gen_subs.c#1 branch .. //depot/projects/nand2/bin/pax/getoldopt.c#1 branch .. //depot/projects/nand2/bin/pax/options.c#1 branch .. //depot/projects/nand2/bin/pax/options.h#1 branch .. //depot/projects/nand2/bin/pax/pat_rep.c#1 branch .. //depot/projects/nand2/bin/pax/pat_rep.h#1 branch .. //depot/projects/nand2/bin/pax/pax.1#1 branch .. //depot/projects/nand2/bin/pax/pax.c#1 branch .. //depot/projects/nand2/bin/pax/pax.h#1 branch .. //depot/projects/nand2/bin/pax/sel_subs.c#1 branch .. //depot/projects/nand2/bin/pax/sel_subs.h#1 branch .. //depot/projects/nand2/bin/pax/tables.c#1 branch .. //depot/projects/nand2/bin/pax/tables.h#1 branch .. //depot/projects/nand2/bin/pax/tar.1#1 branch .. //depot/projects/nand2/bin/pax/tar.c#1 branch .. //depot/projects/nand2/bin/pax/tar.h#1 branch .. //depot/projects/nand2/bin/pax/tty_subs.c#1 branch .. //depot/projects/nand2/bin/pkill/Makefile#1 branch .. //depot/projects/nand2/bin/pkill/pkill.1#1 branch .. //depot/projects/nand2/bin/pkill/pkill.c#1 branch .. //depot/projects/nand2/bin/ps/Makefile#1 branch .. //depot/projects/nand2/bin/ps/extern.h#1 branch .. //depot/projects/nand2/bin/ps/fmt.c#1 branch .. //depot/projects/nand2/bin/ps/keyword.c#1 branch .. //depot/projects/nand2/bin/ps/nlist.c#1 branch .. //depot/projects/nand2/bin/ps/print.c#1 branch .. //depot/projects/nand2/bin/ps/ps.1#1 branch .. //depot/projects/nand2/bin/ps/ps.c#1 branch .. //depot/projects/nand2/bin/ps/ps.h#1 branch .. //depot/projects/nand2/bin/pwait/Makefile#1 branch .. //depot/projects/nand2/bin/pwait/pwait.1#1 branch .. //depot/projects/nand2/bin/pwait/pwait.c#1 branch .. //depot/projects/nand2/bin/pwd/Makefile#1 branch .. //depot/projects/nand2/bin/pwd/pwd.1#1 branch .. //depot/projects/nand2/bin/pwd/pwd.c#1 branch .. //depot/projects/nand2/bin/rcp/Makefile#1 branch .. //depot/projects/nand2/bin/rcp/extern.h#1 branch .. //depot/projects/nand2/bin/rcp/rcp.1#1 branch .. //depot/projects/nand2/bin/rcp/rcp.c#1 branch .. //depot/projects/nand2/bin/rcp/util.c#1 branch .. //depot/projects/nand2/bin/realpath/Makefile#1 branch .. //depot/projects/nand2/bin/realpath/realpath.1#1 branch .. //depot/projects/nand2/bin/realpath/realpath.c#1 branch .. //depot/projects/nand2/bin/rm/Makefile#1 branch .. //depot/projects/nand2/bin/rm/rm.1#1 branch .. //depot/projects/nand2/bin/rm/rm.c#1 branch .. //depot/projects/nand2/bin/rmail/Makefile#1 branch .. //depot/projects/nand2/bin/rmdir/Makefile#1 branch .. //depot/projects/nand2/bin/rmdir/rmdir.1#1 branch .. //depot/projects/nand2/bin/rmdir/rmdir.c#1 branch .. //depot/projects/nand2/bin/setfacl/Makefile#1 branch .. //depot/projects/nand2/bin/setfacl/file.c#1 branch .. //depot/projects/nand2/bin/setfacl/mask.c#1 branch .. //depot/projects/nand2/bin/setfacl/merge.c#1 branch .. //depot/projects/nand2/bin/setfacl/remove.c#1 branch .. //depot/projects/nand2/bin/setfacl/setfacl.1#1 branch .. //depot/projects/nand2/bin/setfacl/setfacl.c#1 branch .. //depot/projects/nand2/bin/setfacl/setfacl.h#1 branch .. //depot/projects/nand2/bin/setfacl/util.c#1 branch .. //depot/projects/nand2/bin/sh/Makefile#1 branch .. //depot/projects/nand2/bin/sh/TOUR#1 branch .. //depot/projects/nand2/bin/sh/alias.c#1 branch .. //depot/projects/nand2/bin/sh/alias.h#1 branch .. //depot/projects/nand2/bin/sh/arith.h#1 branch .. //depot/projects/nand2/bin/sh/arith.y#1 branch .. //depot/projects/nand2/bin/sh/arith_lex.l#1 branch .. //depot/projects/nand2/bin/sh/bltin/bltin.h#1 branch .. //depot/projects/nand2/bin/sh/bltin/echo.1#1 branch .. //depot/projects/nand2/bin/sh/bltin/echo.c#1 branch .. //depot/projects/nand2/bin/sh/builtins.def#1 branch .. //depot/projects/nand2/bin/sh/cd.c#1 branch .. //depot/projects/nand2/bin/sh/cd.h#1 branch .. //depot/projects/nand2/bin/sh/error.c#1 branch .. //depot/projects/nand2/bin/sh/error.h#1 branch .. //depot/projects/nand2/bin/sh/eval.c#1 branch .. //depot/projects/nand2/bin/sh/eval.h#1 branch .. //depot/projects/nand2/bin/sh/exec.c#1 branch .. //depot/projects/nand2/bin/sh/exec.h#1 branch .. //depot/projects/nand2/bin/sh/expand.c#1 branch .. //depot/projects/nand2/bin/sh/expand.h#1 branch .. //depot/projects/nand2/bin/sh/funcs/cmv#1 branch .. //depot/projects/nand2/bin/sh/funcs/dirs#1 branch .. //depot/projects/nand2/bin/sh/funcs/kill#1 branch .. //depot/projects/nand2/bin/sh/funcs/login#1 branch .. //depot/projects/nand2/bin/sh/funcs/newgrp#1 branch .. //depot/projects/nand2/bin/sh/funcs/popd#1 branch .. //depot/projects/nand2/bin/sh/funcs/pushd#1 branch .. //depot/projects/nand2/bin/sh/funcs/suspend#1 branch .. //depot/projects/nand2/bin/sh/histedit.c#1 branch .. //depot/projects/nand2/bin/sh/init.h#1 branch .. //depot/projects/nand2/bin/sh/input.c#1 branch .. //depot/projects/nand2/bin/sh/input.h#1 branch .. //depot/projects/nand2/bin/sh/jobs.c#1 branch .. //depot/projects/nand2/bin/sh/jobs.h#1 branch .. //depot/projects/nand2/bin/sh/mail.c#1 branch .. //depot/projects/nand2/bin/sh/mail.h#1 branch .. //depot/projects/nand2/bin/sh/main.c#1 branch .. //depot/projects/nand2/bin/sh/main.h#1 branch .. //depot/projects/nand2/bin/sh/memalloc.c#1 branch .. //depot/projects/nand2/bin/sh/memalloc.h#1 branch .. //depot/projects/nand2/bin/sh/miscbltin.c#1 branch .. //depot/projects/nand2/bin/sh/mkbuiltins#1 branch .. //depot/projects/nand2/bin/sh/mkinit.c#1 branch .. //depot/projects/nand2/bin/sh/mknodes.c#1 branch .. //depot/projects/nand2/bin/sh/mksyntax.c#1 branch .. //depot/projects/nand2/bin/sh/mktokens#1 branch .. //depot/projects/nand2/bin/sh/myhistedit.h#1 branch .. //depot/projects/nand2/bin/sh/mystring.c#1 branch .. //depot/projects/nand2/bin/sh/mystring.h#1 branch .. //depot/projects/nand2/bin/sh/nodes.c.pat#1 branch .. //depot/projects/nand2/bin/sh/nodetypes#1 branch .. //depot/projects/nand2/bin/sh/options.c#1 branch .. //depot/projects/nand2/bin/sh/options.h#1 branch .. //depot/projects/nand2/bin/sh/output.c#1 branch .. //depot/projects/nand2/bin/sh/output.h#1 branch .. //depot/projects/nand2/bin/sh/parser.c#1 branch .. //depot/projects/nand2/bin/sh/parser.h#1 branch .. //depot/projects/nand2/bin/sh/redir.c#1 branch .. //depot/projects/nand2/bin/sh/redir.h#1 branch .. //depot/projects/nand2/bin/sh/sh.1#1 branch .. //depot/projects/nand2/bin/sh/shell.h#1 branch .. //depot/projects/nand2/bin/sh/show.c#1 branch .. //depot/projects/nand2/bin/sh/show.h#1 branch .. //depot/projects/nand2/bin/sh/trap.c#1 branch .. //depot/projects/nand2/bin/sh/trap.h#1 branch .. //depot/projects/nand2/bin/sh/var.c#1 branch .. //depot/projects/nand2/bin/sh/var.h#1 branch .. //depot/projects/nand2/bin/sleep/Makefile#1 branch .. //depot/projects/nand2/bin/sleep/sleep.1#1 branch .. //depot/projects/nand2/bin/sleep/sleep.c#1 branch .. //depot/projects/nand2/bin/stty/Makefile#1 branch .. //depot/projects/nand2/bin/stty/cchar.c#1 branch .. //depot/projects/nand2/bin/stty/extern.h#1 branch .. //depot/projects/nand2/bin/stty/gfmt.c#1 branch .. //depot/projects/nand2/bin/stty/key.c#1 branch .. //depot/projects/nand2/bin/stty/modes.c#1 branch .. //depot/projects/nand2/bin/stty/print.c#1 branch .. //depot/projects/nand2/bin/stty/stty.1#1 branch .. //depot/projects/nand2/bin/stty/stty.c#1 branch .. //depot/projects/nand2/bin/stty/stty.h#1 branch .. //depot/projects/nand2/bin/stty/util.c#1 branch .. //depot/projects/nand2/bin/sync/Makefile#1 branch .. //depot/projects/nand2/bin/sync/sync.8#1 branch .. //depot/projects/nand2/bin/sync/sync.c#1 branch .. //depot/projects/nand2/bin/test/Makefile#1 branch .. //depot/projects/nand2/bin/test/TEST.README#1 branch .. //depot/projects/nand2/bin/test/TEST.csh#1 branch .. //depot/projects/nand2/bin/test/TEST.sh#1 branch .. //depot/projects/nand2/bin/test/test.1#1 branch .. //depot/projects/nand2/bin/test/test.c#1 branch .. //depot/projects/nand2/bin/uuidgen/Makefile#1 branch .. //depot/projects/nand2/bin/uuidgen/uuidgen.1#1 branch .. //depot/projects/nand2/bin/uuidgen/uuidgen.c#1 branch .. //depot/projects/nand2/cddl/Makefile#1 branch .. //depot/projects/nand2/cddl/Makefile.inc#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/alloca.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/assert.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/devid.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/dtrace.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/fcntl.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/fsshare.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/libintl.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/libproc.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/libshare.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/mnttab.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/priv.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/solaris.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/stdio.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/stdlib.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/strings.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/unistd.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/include/zone.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/lib/libumem/umem.c#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/lib/libumem/umem.h#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/misc/deviceid.c#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/misc/fsshare.c#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/misc/mkdirp.c#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/misc/mnttab.c#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/misc/zmount.c#1 branch .. //depot/projects/nand2/cddl/compat/opensolaris/misc/zone.c#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/OPENSOLARIS.LICENSE#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/README#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/baddof.c#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/badioctl/badioctl.c#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/chkargs/chkargs.c#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/Getopt.java#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/JDTrace.java#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/exception.lst#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/jdtrace.c#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/manifest/jdtrace.jar-manifest#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/dstyle.pl#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/dtest.pl#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_FUNC.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_MDIM.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_NULL.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_REDEF.redef.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_SCALAR.avgtoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_SCALAR.maxnoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_SCALAR.mintoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_SCALAR.quantizetoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_AGG_SCALAR.sumtoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_CLEAR_AGGARG.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_CLEAR_PROTO.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_FUNC_IDENT.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_FUNC_UNDEF.badaggfunc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_IDENT_UNDEF.badexpr.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_IDENT_UNDEF.badkey3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_IDENT_UNDEF.noeffect.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_KEY_TYPE.badkey1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_KEY_TYPE.badkey2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_KEY_TYPE.badkey4.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_BASETYPE.lqbad1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_BASETYPE.lqshort.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_BASEVAL.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_LIMTYPE.lqbad1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_LIMVAL.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_MATCHBASE.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_MATCHBASE.order.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_MATCHLIM.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_MATCHLIM.order.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_MATCHSTEP.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_MISMATCH.lqbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_STEPLARGE.lqtoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_STEPSMALL.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_STEPTYPE.lqbadinc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_LQUANT_STEPVAL.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_NORMALIZE_AGGARG.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_NORMALIZE_PROTO.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_NORMALIZE_SCALAR.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_ARG.lquantizetoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.avgnoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.avgtoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.counttoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.lquantizenoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.lquantizetoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.maxnoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.maxtoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.minnoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.mintoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.quantizenoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.quantizetoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.sumnoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_PROTO_LEN.sumtoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_TRUNC_AGGARG.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_TRUNC_PROTO.badmany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_TRUNC_PROTO.badnone.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/err.D_TRUNC_SCALAR.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.allquant.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.allquant.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.avg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.avg.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.avg_neg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.avg_neg.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clear.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clear.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearavg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearavg.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearavg2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearavg2.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.cleardenormalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.cleardenormalize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearlquantize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearlquantize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearnormalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.clearnormalize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.count.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.count.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.count2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.count2.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.count3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.denormalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.denormalize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.denormalizeonly.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.denormalizeonly.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.fmtnormalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.fmtnormalize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.forms.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.forms.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.goodkey.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.keysort.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.keysort.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantnormal.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantnormal.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantrange.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantrange.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantround.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantround.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantzero.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.lquantzero.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.max.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.max.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.max_neg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.max_neg.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.min.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.min.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.min_neg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.min_neg.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs2.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multiaggs3.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multinormalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.multinormalize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.neglquant.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.neglquant.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negorder.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negorder.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negquant.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negquant.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negtrunc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negtrunc.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negtruncquant.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.negtruncquant.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.normalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.normalize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.order.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.order.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantize.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantmany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantmany.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantround.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantround.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantzero.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.quantzero.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.signature.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.signedkeys.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.signedkeys.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.signedkeyspos.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.signedkeyspos.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.stddev.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.stddev.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.subr.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sum.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sum.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.trunc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.trunc.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.trunc0.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.trunc0.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.truncquant.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.truncquant.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.valsortkeypos.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.valsortkeypos.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_DIV_ZERO.divby0.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_DIV_ZERO.divby0_1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_DIV_ZERO.divby0_2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_DIV_ZERO.modby0.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_SYNTAX.addmin.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_SYNTAX.divmin.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_SYNTAX.muladd.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/err.D_SYNTAX.muldiv.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.basics.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.complex.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/err.D_ARR_BADREF.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/err.D_DECL_ARRBIG.toobig.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/err.D_DECL_ARRNULL.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/err.D_DECL_ARRSUB.bad.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/err.D_DECL_PROTO_TYPE.badtuple.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/err.D_IDENT_UNDEF.badureg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.basic1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.basic2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.basic3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.basic4.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.basic5.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.basic6.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arrays/tst.uregsarray.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_OP_INCOMPAT.dupgtype.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_OP_INCOMPAT.dupttype.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_OP_INCOMPAT.this.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_PROTO_ARG.badsig.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_PROTO_LEN.toofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_PROTO_LEN.toomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.D_SYNTAX.errassign.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/err.tupoflow.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.cpyarray.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.diffprofile.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.initialize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.invalidref.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.misc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.orthogonality.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.this.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/assocs/tst.valassign.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/err.D_PDESC_ZERO.begin.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/err.D_PDESC_ZERO.tick.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/tst.begin.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/tst.begin.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/tst.multibegin.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/begin/tst.multibegin.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_ADDROF_BITFIELD.BitfieldAddress.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_DECL_BFCONST.NegBitField.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_DECL_BFCONST.ZeroBitField.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_DECL_BFSIZE.ExceedBaseType.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_DECL_BFSIZE.GreaterThan64.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_DECL_BFTYPE.badtype.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_OFFSETOF_BITFIELD.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/err.D_SIZEOF_BITFIELD.SizeofBitfield.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/tst.BitFieldPromotion.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/bitfields/tst.SizeofBitField.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/err.end.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/err.resize1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/err.resize2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/err.resize3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/err.zerobuf.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.alignring.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.cputime.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.dynvarsize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.fill1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.fill1.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.resize1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.resize2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.resize3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.ring1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.ring2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.ring2.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.ring3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.ring3.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.smallring.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.switch1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.switch1.d.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/err.D_XLATE_NOCONV.cpuusage.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/err.D_XLATE_NOCONV.nice.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/err.D_XLATE_NOCONV.priority.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/err.D_XLATE_NOCONV.prsize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/err.D_XLATE_NOCONV.rssize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.arg0.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.arg0clause.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.arg1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.arg1to8.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.arg1to8clause.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.caller.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.caller1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.epid.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.epid1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.errno.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.errno1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.execname.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.hpriority.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.id.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.id1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.ipl.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.ipl1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.lwpsinfo.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.lwpsinfo1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.pid.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.pid1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.psinfo.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.psinfo1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.tid.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.tid1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.timestamp.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/tst.vtimestamp.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/err.D_IDENT_UNDEF.aggfun.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/err.D_IDENT_UNDEF.aggtup.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/err.D_IDENT_UNDEF.arrtup.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/err.D_IDENT_UNDEF.body.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/err.D_IDENT_UNDEF.both.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/err.D_IDENT_UNDEF.pred.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/tst.nopred.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/tst.pred.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/tst.predfirst.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/tst.predlast.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_LOCASSC.NonLocalAssoc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_LONGINT.LongStruct.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_PARMCLASS.BadStorageClass.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_PROTO_NAME.VoidName.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_PROTO_TYPE.Dyn.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_PROTO_VARARGS.VarLenArgs.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_PROTO_VOID.NonSoleVoid.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_SIGNINT.UnsignedStruct.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/err.D_DECL_VOIDATTR.ShortVoidDecl.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/tst.arrays.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/tst.basics.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/tst.funcs.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/tst.pointers.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/decls/tst.varargsfuncs.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/badptr.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/countdown.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/counter.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/errorpath.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/hello.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/kstat.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/ksyms.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/renormalize.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/rtime.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/rw.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/rwinfo.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/rwtime.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/specopen.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/truss.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/trussrw.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/userfunc.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_AGGREGATION.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_DBLERROR.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_DYNAMIC.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_PRINCIPAL.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_PRINCIPAL.end.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_SPEC.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_SPECUNAVAIL.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/drp.DTRACEDROP_STKSTROVERFLOW.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/err.D_PDESC_ZERO.InvalidDescription1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.APIVersion.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.AddSearchPath.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.CoalesceTrace.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ELFGeneration.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.IncludedFilePath.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithFunctions#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithIDs#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithModules#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithNames#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithProviders#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ShowCompilerCode.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceFunctions#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceIDs#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceModule#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceNames#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceProvider#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.VerboseStabilityReport.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.AddSearchPath.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.BufsizeGiga.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.BufsizeKilo.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.BufsizeMega.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.BufsizeTera.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DataModel32.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DataModel64.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DefineNameWithCPP.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DefineNameWithCPP.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithFunction.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithFunction.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithID.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithID.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithModule.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithModule.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithName.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithName.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithProvider.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithProvider.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.DestructWithoutW.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ELFGenerationOut.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ELFGenerationWithO.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ExitStatus1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ExitStatus2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ExtraneousProbeIds.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidFuncName1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidFuncName2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidId1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidId2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidId3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidModule1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidModule2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidModule3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidModule4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidProbeIdentifier.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidProvider1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidProvider2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidProvider3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidProvider4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc5.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc6.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc7.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc8.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceFunc9.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID5.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID6.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceID7.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule5.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule6.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule7.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceModule8.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName5.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName6.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName7.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName8.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceName9.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceProvider1.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceProvider2.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceProvider3.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceProvider4.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.InvalidTraceProvider5.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.MultipleInvalidProbeId.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.PreprocessorStatement.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.QuietMode.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.QuietMode.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.TestCompile.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.TestCompile.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.UnDefineNameWithCPP.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroFunctionProbes.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroFunctionProbes.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroModuleProbes.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroModuleProbes.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroNameProbes.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroNameProbes.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroProbeIdentfier.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroProbesWithoutZ.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroProviderProbes.d.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/tst.ZeroProviderProbes.d.ksh.out#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/err.D_IDENT_UNDEF.timespent.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/tst.end.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/tst.endwithoutbegin.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/tst.multibeginend.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/tst.multiend.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/enum/err.D_DECL_IDRED.EnumSameName.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/enum/err.D_UNKNOWN.RepeatIdentifiers.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/enum/tst.EnumEquality.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/enum/tst.EnumSameValue.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/enum/tst.EnumValAssign.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/error/tst.DTRACEFLT_BADADDR.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/error/tst.DTRACEFLT_DIVZERO.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/error/tst.DTRACEFLT_UNKNOWN.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/error/tst.error.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/error/tst.errorend.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/exit/err.D_PROTO_LEN.noarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/exit/err.exitarg1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/exit/tst.basic1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/err.D_PDESC_ZERO.notreturn.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.basic.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.functionentry.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.functionreturnvalue.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.ioctlargs.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.offset.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.offsetzero.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.return.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.return0.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.tailcall.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_FUNC_UNDEF.progenyofbad1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_OP_VFPTR.badop.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.chillbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.copyoutbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.mobadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.raisebadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.allocanoarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.badbreakpoint.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.chilltoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.chilltoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.copyoutstrbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.copyoutstrtoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.copyouttoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.copyouttoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.motoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.motoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtabadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtatoofew.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.mtatoomany.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.panicbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.progenyofbad2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.stopbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_STRINGOF_TYPE.badstringof.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_VAR_UNDEF.badvar.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badalloca.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badalloca2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy1.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy2.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy3.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy4.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy5.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badbcopy6.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.badchill.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.chillbadarg.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.copyout.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.copyoutbadaddr.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.copyoutstrbadaddr.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.inet_ntoa6badaddr.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.inet_ntoabadaddr.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.inet_ntopbadaddr.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.inet_ntopbadarg.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.badfreopen.ksh#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.basename.d#1 branch .. //depot/projects/nand2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.basename.d.out#1 branch >>> TRUNCATED FOR MAIL (1000 lines) <<< From owner-p4-projects@FreeBSD.ORG Sat Mar 6 23:48:09 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 419B91065673; Sat, 6 Mar 2010 23:48:09 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 063581065670 for ; Sat, 6 Mar 2010 23:48:09 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E780B8FC0A for ; Sat, 6 Mar 2010 23:48:08 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o26Nm8XZ057406 for ; Sat, 6 Mar 2010 23:48:08 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o26Nm8x0057404 for perforce@freebsd.org; Sat, 6 Mar 2010 23:48:08 GMT (envelope-from hselasky@FreeBSD.org) Date: Sat, 6 Mar 2010 23:48:08 GMT Message-Id: <201003062348.o26Nm8x0057404@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 175421 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Mar 2010 23:48:09 -0000 http://p4web.freebsd.org/chv.cgi?CH=175421 Change 175421 by hselasky@hselasky_laptop001 on 2010/03/06 23:47:10 USB devs: - add new vendor ID - patch from: Paul B Mahol Affected files ... .. //depot/projects/usb/src/sys/dev/usb/usbdevs#109 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/usbdevs#109 (text+ko) ==== @@ -546,6 +546,7 @@ vendor RIM 0x0fca Research In Motion vendor DYNASTREAM 0x0fcf Dynastream Innovations vendor QUALCOMM 0x1004 Qualcomm +vendor APACER 0x1005 Apacer vendor MOTOROLA4 0x100d Motorola vendor DESKNOTE 0x1019 Desknote vendor GIGABYTE 0x1044 GIGABYTE