Ļ@84466 256 246 448 159 156 164 150 1337 146 127 149 200 158 130 187 232 213 245 342 210 218 296 287 396 488 228 142 239 143 239 180 254 143 142 146 351 275 160 198 154 119 161 140 166 257 211 138 122 168 471 98 169 131 131 167 165 134 158 151 147 162 138 322 146 176 181 203 142 225 112 131 149 180 161 172 162 266 245 138 223 199 385 113 200 105 162 259 129 136 124 168 163 111 157 392 350 376 302 198 518 316 162 118 159 132 179 116 138 195 144 125 515 268 209 217 122 297 113 163 140 183 146 151 117 162 141 169 166 291 138 111 357 140 317 222 482 160 196 153 101 141 124 311 172 173 277 665 122 149 244 703 224 627 149 135 112 114 406 183 153 190 196 245 261 349 164 200 243 644 134 235 168 938 132 164 178 174 575 158 121 132 143 161 150 255 147 133 145 212 223 128 150 153 115 166 175 113 140 163 119 120 197 155 259 124 380 381 192 135 239 106 106 127 332 259 130 119 142 230 251 141 239 174 211 371 180 185 170 312 168 251 183 175 215 331 203 151 110 160 159 137 122 122 204 114 127 172 259 149 135 186 121 169 222 123 183 169 K 10 svn:author V 7 roberto K 8 svn:date V 27 2001-10-04T12:15:50.000000Z K 7 svn:log V 149 Following the discussion in -arch and the submission of a patch by bde, here it is. I added the manpage change. Submitted by: bde MFC after: 1 week END K 10 svn:author V 7 roberto K 8 svn:date V 27 2001-10-04T12:24:18.000000Z K 7 svn:log V 351 Forced commit to give more details on what the patch does (sorry). Instead of using 22 as the default cylinders per cylinder group parameter (the max. value for a 8k/1k FS), compute the maximum value allowed and use it. It can be overridden by specifying -c of course. This allow for FS built through the initial installation to have better values. END K 10 svn:author V 8 dwmalone K 8 svn:date V 27 2001-10-04T12:59:53.000000Z K 7 svn:log V 62 Allow sbcreatecontrol to make cluster sized control messages. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-04T13:02:24.000000Z K 7 svn:log V 65 MFC: 1.9: Document how manpath(1) handles "foo/bin" in the PATH. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-04T13:09:36.000000Z K 7 svn:log V 72 MFC: add support for MAXMEM option and hw.physmem environment variable. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-04T13:11:11.000000Z K 7 svn:log V 59 -> "mntopts.h" in SYNOPSIS. Submitted by: bde END K 10 svn:author V 8 dwmalone K 8 svn:date V 27 2001-10-04T13:11:48.000000Z K 7 svn:log V 1238 Hopefully improve control message passing over Unix domain sockets. 1) Allow the sending of more than one control message at a time over a unix domain socket. This should cover the PR 29499. 2) This requires that unp_{ex,in}ternalize and unp_scan understand mbufs with more than one control message at a time. 3) Internalize and externalize used to work on the mbuf in-place. This made life quite complicated and the code for sizeof(int) < sizeof(file *) could end up doing the wrong thing. The patch always create a new mbuf/cluster now. This resulted in the change of the prototype for the domain externalise function. 4) You can now send SCM_TIMESTAMP messages. 5) Always use CMSG_DATA(cm) to determine the start where the data in unp_{ex,in}ternalize. It was using ((struct cmsghdr *)cm + 1) in some places, which gives the wrong alignment on the alpha. (NetBSD made this fix some time ago). This results in an ABI change for discriptor passing and creds passing on the alpha. (Probably on the IA64 and Spare ports too). 6) Fix userland programs to use CMSG_* macros too. 7) Be more careful about freeing mbufs containing (file *)s. This is made possible by the prototype change of externalise. PR: 29499 MFC after: 6 weeks END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-04T14:13:16.000000Z K 7 svn:log V 55 Removed mentions of TARGET_ARCH from non-cross places. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-04T15:24:52.000000Z K 7 svn:log V 35 Fake the EFI runtime call GetTime. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-04T15:26:05.000000Z K 7 svn:log V 57 Use EFI (or some reasonable simulation) to read the RTC. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-04T15:27:35.000000Z K 7 svn:log V 107 * Don't pretend the object passed to clockattach is a device - it isn't. * Declare itc_frequency properly. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-04T15:28:27.000000Z K 7 svn:log V 66 Don't pretend the argument to clockattach is a device - it isn't. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-04T15:28:56.000000Z K 7 svn:log V 38 Add eficlock.c and remove sscclock.c. END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-10-04T15:37:55.000000Z K 7 svn:log V 96 Add nmdm driver. PR: 31027 Submitted by: Edwin Groothuis MFC after: 1 day END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-04T16:09:22.000000Z K 7 svn:log V 139 This file had a mixture of "return foo;" and "return (foo);"; standardize on "return (foo);" as mandated by style(9). Reviewed by: md5(1) END K 10 svn:author V 8 dwmalone K 8 svn:date V 27 2001-10-04T16:14:43.000000Z K 7 svn:log V 115 Bump __FreeBSD_version after change in ABI for discriptor and creds passing on 64 bit platforms. Reviewed by: imp END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-04T16:29:45.000000Z K 7 svn:log V 152 More style(9) fixes: no spaces between function name and parameter list; some indentation fixes (particularly continuation lines). Reviewed by: md5(1) END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-04T16:35:44.000000Z K 7 svn:log V 249 Final style(9) commit: placement of opening brace; a continuation indent I missed in the previous commit; a line that exceeded 80 characters. No functional changes, but the object file's md5 checksum changes because some lines have been displaced. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-04T17:33:35.000000Z K 7 svn:log V 116 In "Further Reading", mention other DocProj articles/books (in addition to the FAQ and Handbook). MFC after: 1 day END K 10 svn:author V 3 sos K 8 svn:date V 27 2001-10-04T18:02:26.000000Z K 7 svn:log V 125 Update the promise raid structure with some of the info I've gathered before I'm accused of "lending" it from somebody else. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-04T20:23:35.000000Z K 7 svn:log V 202 The upgrade instructions referred to an article that was (I think) folded into the Handbook. Point readers in the right direction and do a little touchup on the text in this section. MFC after: 1 day END K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-10-04T21:03:17.000000Z K 7 svn:log V 192 Add compatibility functions for the AF_LOCAL RPC transport stuff that used to live in RPC 4.0. This is needed for yppasswd and rpc.yppasswdd to work correctly. Patch supplied by Martin Blapp. END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-10-04T22:33:31.000000Z K 7 svn:log V 299 Remove the SSLEEP case from the load average computation. This has been a no-op for as long as our CVS history goes back. Processes in state SSLEEP could only be counted if p_slptime == 0, but immediately before loadav() is called, schedcpu() has just incremented p_slptime on all SSLEEP processes. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-04T22:40:19.000000Z K 7 svn:log V 394 Consolidate the various SGML source files making up the release notes document. Basically, I've moved the contents of common/ {artheader,intro,upgrading}.sgml into common/new.sgml, removed duplicate $FreeBSD$ markers, and adjusted the various references to these files. No other whitespace or content changes. This change will make it easier to do some minor restructuring. MFC after: 1 day END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-04T23:06:37.000000Z K 7 svn:log V 134 Move element into the area, where it goes for most other documents. MFC after: 1 day END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:12:13.000000Z K 7 svn:log V 47 Import of the Intel ACPI CA 20010920 snapshot. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:12:13.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r84491, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:12:14.000000Z K 7 svn:log V 48 Import of the Intel ACPI CA 20010920 snapshot. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:12:14.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r84493, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2001-10-04T23:12:15.000000Z K 7 svn:log V 84 This commit was manufactured by cvs2svn to create tag 'acpica-vendor-sys-r20010920'. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:15:26.000000Z K 7 svn:log V 158 Merge our local patches into the 20010920 snapshot. Note that the "implicit return" hack in psparse.c was resubmitted by Iwasaki-san. Submitted by: iwasaki END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:17:35.000000Z K 7 svn:log V 48 Remove file obsoleted by the 20010920 snapshot. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:18:03.000000Z K 7 svn:log V 47 Update to reflect one file added, one removed. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:19:17.000000Z K 7 svn:log V 51 Update list of sources to match 20010920 snapshot. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-04T23:21:09.000000Z K 7 svn:log V 255 Update usage of AcpiEnableEvent to reflect a new argument. Fix acpi_DeviceIsPresent to check for valid _STA data and to check the "present" and "functioning" bits. Use acpi_DeviceIsPresent in acpi_pcib rather than rolling our own (also broken) version. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T00:46:22.000000Z K 7 svn:log V 179 Increase the table size by an order of magnitude. The previous version was too small and YACC core dumped on the during the hybrid-7 build. Submitted by: Diane Bruce END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T00:47:02.000000Z K 7 svn:log V 65 MFC: rev 1.16 (increase the table size by an order of magnitude) END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T02:09:43.000000Z K 7 svn:log V 102 Fix the output so it really does dynamically resize the table. Submitted by: Diane Bruce END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T02:15:59.000000Z K 7 svn:log V 59 MFC: rev 1.17 (fix to really dynamically resize the table) END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T03:00:44.000000Z K 7 svn:log V 24 MFC: rev 1.9 (constify) END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T03:02:04.000000Z K 7 svn:log V 66 Properly static'ize increase_maxtable(). Submitted by: db@db.net END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-05T03:03:14.000000Z K 7 svn:log V 45 MFC: rev 1.18 (static'ize increase_maxtable) END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T03:06:35.000000Z K 7 svn:log V 72 Argh. Fix another >2GB savecore problem. Reported by: mki@mozone.net END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T03:13:13.000000Z K 7 svn:log V 162 Remove some bogus "(off_t)(dumplo + value)" and "(off_t)dumplo" casts, since dumplo is now an off_t. Scratch a couple of other itches as well. s/L_SET/SEEK_SET/ END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T03:32:49.000000Z K 7 svn:log V 117 Updated release note: fsck(8) default cylinder group behavior. MFCs noted: KVA_SPACE, ping(8) -A, fmt(1) rewrite. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T03:33:55.000000Z K 7 svn:log V 45 MFC: KVA_SPACE, fmt(1) rewrite, ping(8) -A. END K 10 svn:author V 5 assar K 8 svn:date V 27 2001-10-05T04:56:37.000000Z K 7 svn:log V 28 also install roken-common.h END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T05:03:29.000000Z K 7 svn:log V 74 MFC: rev 1.46: fix for silly precision loss for machines with >2G of ram. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-10-05T05:32:27.000000Z K 7 svn:log V 378 MFNetBSD: 1.139: augustss; Add EigerLabs sound card. 1.138: ichiro; Typo 1.137: ichiro; GEMTEK CF-size WaveLAN card based on Prism2.5 eval 1.136: ichiro; Symbol Spctrum24 LA4100 Series CF WaveLAN card 1.135: pooka; Psion Gold Card 1.134: christos; zonet zen (Henrik Berglund) 1.133: christos; dlink-660+ (janberg@netbsd.org) 1.132: itojun; 3Com 3CRWE62092A Wireless LAN END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-10-05T05:32:51.000000Z K 7 svn:log V 7 Regen. END K 10 svn:author V 2 ps K 8 svn:date V 27 2001-10-05T05:45:27.000000Z K 7 svn:log V 78 Make it so dummynet and bridge can be loaded as modules. Submitted by: billf END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-10-05T06:08:22.000000Z K 7 svn:log V 39 Add the manpage for the AGP interface. END K 10 svn:author V 5 assar K 8 svn:date V 27 2001-10-05T06:16:38.000000Z K 7 svn:log V 37 MFC 1.8: also install roken-common.h END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T06:17:17.000000Z K 7 svn:log V 73 Fix warning: fd.c: 307: warning: `fdctl_wr_pcmcia' defined but not used END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T06:18:55.000000Z K 7 svn:log V 71 MFC: rev 1.35: quieten warnings about assignments used as truth values END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T06:20:17.000000Z K 7 svn:log V 40 Fix warning; redeclaration of cp_time[] END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T06:23:30.000000Z K 7 svn:log V 64 MFC: rev 1.55: fix a stack of KAME warnings (struct mbuf/ifnet) END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-10-05T06:30:42.000000Z K 7 svn:log V 59 Update the status of VLAN support in the ethernet drivers. END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-10-05T06:32:40.000000Z K 7 svn:log V 55 Use the traditional "indent" offset for mdoc(7) lists. END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T06:54:07.000000Z K 7 svn:log V 68 Fix warning: xmphy.c:366: implicit declaration of function `DELAY' END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T07:02:48.000000Z K 7 svn:log V 44 Pull in a prototype for update_intr_masks() END K 10 svn:author V 2 ps K 8 svn:date V 27 2001-10-05T07:06:32.000000Z K 7 svn:log V 230 Only allow users to see their own socket connections if kern.ipc.showallsockets is set to 0. Submitted by: billf (with modifications by me) Inspired by: Dave McKay (aka pm aka Packet Magnet) Reviewed by: peter MFC after: 2 weeks END K 10 svn:author V 2 ps K 8 svn:date V 27 2001-10-05T07:09:27.000000Z K 7 svn:log V 55 Activate the bridge/dummynet modules. Reminded by: ru END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T07:14:57.000000Z K 7 svn:log V 82 disk_enumerate() is declared in . Fix duplicate declaration warning. END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-10-05T07:17:24.000000Z K 7 svn:log V 89 Show kernel config syntax, not kldload command in the SYNOPSIS section. Reviewed by: ru END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T07:34:37.000000Z K 7 svn:log V 108 MFC: Avoid collision with knowledge that gcc has of exit() and __dead2 etc. This stops a bunch of warnings. END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-05T07:38:44.000000Z K 7 svn:log V 48 Regenerate (cosmetic exit syscall declarations) END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-10-05T08:12:03.000000Z K 7 svn:log V 132 Move the agp(4) page from the i386 directory to the machine-independent directory since AGP is used on other architectures as well. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T08:20:41.000000Z K 7 svn:log V 20 Add ia64_get_lid(). END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T08:23:08.000000Z K 7 svn:log V 39 Disable interrupts when we are in DDB. END K 10 svn:author V 4 kris K 8 svn:date V 27 2001-10-05T08:27:21.000000Z K 7 svn:log V 56 Add some important advice for young optical physicists. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2001-10-05T09:01:42.000000Z K 7 svn:log V 83 Quote the value of pccard_ether_delay, the only unquoted value in the entire file. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-05T09:23:41.000000Z K 7 svn:log V 66 Kill a couple of files off the vendor branch, as suggested by ru. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-10-05T09:24:34.000000Z K 7 svn:log V 77 Actually delete this file; aborting 'cvs delete -f' has unexpeted results... END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T10:29:03.000000Z K 7 svn:log V 70 Fix typo which meant that we never actually found the ACPI 2.0 table. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T10:30:09.000000Z K 7 svn:log V 173 Wire up most of the interrupt handling infrastructure. Not sure it works right yet but its enough for the ATA probe to work. The SCSI probes which follow are broken though. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T10:33:42.000000Z K 7 svn:log V 152 Re-route interrupts on ia64 so that we can get the I/O SAPIC interrupt numbers (the BIOS leaves legacy PIC interrupt numbers in the intline registers). END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T10:35:42.000000Z K 7 svn:log V 46 Low-level code for programming the I/O SAPIC. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T14:42:53.000000Z K 7 svn:log V 129 MFC: In "Further Reading", mention other DocProj articles/books (in addition to the FAQ and Handbook). article.sgml 1.19->1.10 END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T14:46:10.000000Z K 7 svn:log V 105 MFC: Point readers to source upgrade section of the Handbook where appropriate. upgrade.sgml 1.5->1.6 END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T15:02:22.000000Z K 7 svn:log V 291 MFC: Consolidate various SGML source files into new.sgml. alpha/Makefile 1.4->1.5 alpha/article.sgml 1.1->1.2 common/artheader.sgml (deleted) common/intro.sgml (deleted) common/new.sgml 1.155->1.155 common/relnotes.ent 1.1->1.2 i386/Makefile 1.4->1.5 i386/article.sgml 1.1->1.2 END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-10-05T15:02:44.000000Z K 7 svn:log V 22 MFC: Add nmdm driver. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T15:05:39.000000Z K 7 svn:log V 106 MFC: Move element into the area. new.sgml 1.155->1.156 END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-05T15:21:42.000000Z K 7 svn:log V 14 MFC: wall -g. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-05T15:49:11.000000Z K 7 svn:log V 71 MFC: Notify operators using "wall -g". Drop ``setgid tty'' privilege. END K 10 svn:author V 3 jhb K 8 svn:date V 27 2001-10-05T17:55:11.000000Z K 7 svn:log V 166 The aio kthreads start off with a root credential just like all other kthreads, so don't malloc a ucred just so we can create a duplicate of the one we already have. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T18:52:42.000000Z K 7 svn:log V 37 Fix a load of dependancy violations. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T18:58:22.000000Z K 7 svn:log V 44 In in_cksumdata, len must be a signed type. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T18:59:02.000000Z K 7 svn:log V 32 Eliminate some alpha craziness. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T19:00:03.000000Z K 7 svn:log V 76 Use physical addresses, not virtual addresses when calling PHYS_TO_VM_PAGE. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T19:02:21.000000Z K 7 svn:log V 71 Fix some dependency violations (don't know why gas didn't catch this). END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T19:03:01.000000Z K 7 svn:log V 19 Add BOOTP support. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-05T19:04:23.000000Z K 7 svn:log V 65 Add ia64 to the list of machines which don't do unaligned reads. END K 10 svn:author V 3 dcs K 8 svn:date V 27 2001-10-05T19:42:50.000000Z K 7 svn:log V 299 MFC: revisions 1.128-1.132. Allow multicast packets to be sent in the absence of a default or multicast network route if an interface was specified. If the interface has no address, use 0.0.0.0 as address (only in the case above). Avoid code that depends variables not set in this new code path. END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-05T20:07:07.000000Z K 7 svn:log V 254 MFC mainly vfs_subr 1.320. Attempt to remove directory vnodes from the namecache intelligently. This patch will have a real effect when vmiodirenable is turned on by default, which it will be once large-memory issues with the vnode cache are resolved. END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-05T20:10:32.000000Z K 7 svn:log V 280 vinvalbuf() was only waiting for write-I/O to complete. It really has to wait for both read AND write I/O to complete. Only NFS calls vinvalbuf() on an active vnode (when the server indicates that the file is stale), so this bug fix only effects NFS clients. MFC after: 3 days END K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-10-05T20:13:41.000000Z K 7 svn:log V 207 Fix small vlan bug in bge_encap(): IFT_8021_VLAN -> IFT_L2VLAN (For some reason I was under the impression that IFT_8021_VLAN was the right constant to use in -stable. Mea Culpa.) Pointed out by: Mark Peek END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-10-05T20:38:32.000000Z K 7 svn:log V 105 Don't core dump if we can't get the index automatically. Debug info from: Ben Hockenhull END K 10 svn:author V 7 jayanth K 8 svn:date V 27 2001-10-05T21:33:38.000000Z K 7 svn:log V 421 Add a flag TF_LASTIDLE, that forces a previously idle connection to send all its data, especially when the data is less than one MSS. This fixes an issue where the stack was delaying the sending of data, eventhough there was enough window to send all the data and the sending of data was emptying the socket buffer. Problem found by Yoshihiro Tsuchiya (tsuchiya@flab.fujitsu.co.jp) Submitted by: Jayanth Vijayaraghavan END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T22:03:35.000000Z K 7 svn:log V 222 Add an abstract for this document, flesh out the introduction a bit, and fix up the upgrading section. While I'm here, delete some of the SGML comments that were left-over from merging the source files. MFC after: 1 day END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T22:52:43.000000Z K 7 svn:log V 69 New release note: MAXMEM/hw.physmem. Use entity for agp(4) driver. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T22:54:47.000000Z K 7 svn:log V 25 MFC: MAXMEM/hw.physmem. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T23:52:15.000000Z K 7 svn:log V 66 Update list of supported ata(4) controllers (from ata.4 manpage). END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-05T23:56:13.000000Z K 7 svn:log V 39 MFC: Abstract, intro, updating fixes. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-06T00:53:25.000000Z K 7 svn:log V 87 MFC: don't print progress reports unless we're the foreground process. PR: bin/30764 END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-06T02:03:00.000000Z K 7 svn:log V 22 Add ia64/ia64/sapic.c END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-06T02:13:58.000000Z K 7 svn:log V 44 Fix a warning. (unused p if not INVARIANTS) END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-06T03:49:38.000000Z K 7 svn:log V 100 Fix a stack trashing bug when int != sizeof(pointer) This fixes the ia64 boot! We have scsi disks! END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-06T04:03:20.000000Z K 7 svn:log V 50 Fix some style bugs before fixing some real bugs. END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-06T04:09:26.000000Z K 7 svn:log V 31 Fix some 64-bit uncleanliness. END K 10 svn:author V 6 fenner K 8 svn:date V 27 2001-10-06T05:02:11.000000Z K 7 svn:log V 419 - Fix typo in "didn't find tag in list" code -- != should have been ==. This fixes the panic when receiving a packet with an unknown tag, and also allows reception of packets with known tags. - Allow overlapping tag number spaces when using multiple hardware-assisted VLAN parent devices (by comparing the parent interface in vlan_input_tag() just as in vlan_input() ). - fix typo in comment MFC after: 1 week END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-06T05:16:27.000000Z K 7 svn:log V 174 New release notes: eaccess(2), vfs.vmiodirenable=1. MFCs noted: wall(1) -g, route(8) indirect routes, route(8) net/bits syntax, route(8) proxy only published ARP entries. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-06T05:20:36.000000Z K 7 svn:log V 115 MFC: route(8) indirect roiutes, route(8) host/bits syntax, route(8) proxy only published ARP entries, wall(1) -g. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T08:35:05.000000Z K 7 svn:log V 124 Implement these using mux1 and extr.u. I'll update the userland versions similarly. Actually, they should be inline on gcc. END K 10 svn:author V 6 marcel K 8 svn:date V 27 2001-10-06T09:27:43.000000Z K 7 svn:log V 27 Make this compile on ia64. END K 10 svn:author V 6 marcel K 8 svn:date V 27 2001-10-06T09:31:43.000000Z K 7 svn:log V 201 o Change ia64_memory_address to explicitly take a u_int64_t o Add memcpy_fromio, memcpy_io, memcpy_toio, memset_io, memsetw and memsetw_io. I'm not sure this is the right place for it, though. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T10:09:14.000000Z K 7 svn:log V 21 Remove nexus_pcib.c. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T10:09:57.000000Z K 7 svn:log V 71 Delete legacy pcib code - we can't possibly work without acpi on ia64. END K 10 svn:author V 3 sos K 8 svn:date V 27 2001-10-06T11:07:04.000000Z K 7 svn:log V 48 Update with latest ATA/ATAPI ver 6 rev 2 items. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2001-10-06T11:19:41.000000Z K 7 svn:log V 86 Updates for changes made by KSE import. Submitted by: Chad David END K 10 svn:author V 8 keramida K 8 svn:date V 27 2001-10-06T11:40:36.000000Z K 7 svn:log V 49 Add an entry with my birthday. Approved by: nik END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T12:35:22.000000Z K 7 svn:log V 59 Put the label at the same place as i386 for compatibility. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T12:55:50.000000Z K 7 svn:log V 25 Add /etc files for ia64. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T13:34:30.000000Z K 7 svn:log V 70 Enable console. There are far too many 'ifdef __i386__' in this file. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T15:57:22.000000Z K 7 svn:log V 49 Assume round-to-nearest mode for floating point. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T15:58:54.000000Z K 7 svn:log V 77 Make this work on ia64. I have no idea why it works on alpha - it shouldn't. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-06T16:06:48.000000Z K 7 svn:log V 74 Move console probes until after we set boothowto so that 'boot -h' works. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-06T16:27:21.000000Z K 7 svn:log V 197 - Moved the bus_dma declarations from bus_{at386,pc98}.h into bus_dma.h. (bus_dma.h is repo-copied from bus_at386.h) - Added '#include ' into bus.h for backward compatibility. END K 10 svn:author V 5 greid K 8 svn:date V 27 2001-10-06T17:42:21.000000Z K 7 svn:log V 44 MFC: r1.34: Add another pnpid for the AWE64 END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-06T18:07:32.000000Z K 7 svn:log V 16 Document -depth END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-06T19:19:24.000000Z K 7 svn:log V 261 Respect QLogic's errata- read BIU_ISR even on the 2300 to see if there's an interrupt (avoids PCI parity errors which can occur on the 2312 if you access some registers from the host at the same time the RISC on the 2312 is C accessing them). MFC after: 1 day END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-06T19:34:43.000000Z K 7 svn:log V 45 Whups- remember to zero the isr pointer arg. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-06T20:41:18.000000Z K 7 svn:log V 221 Misunderstanding documentation caused me to try and set 1Gbps/2Gps/Auto connection speed for the 2300 in the wrong offset in the ICB. Oops. Respect some QLogic errat wrt PCI errors on certain shared host/RISC registers. END K 10 svn:author V 3 ken K 8 svn:date V 27 2001-10-06T23:38:01.000000Z K 7 svn:log V 129 MFC, rev 1.54: Attach to a CD device even when the SCSI status is 'busy'. Reported by: Thomas Quinot END K 10 svn:author V 6 marcel K 8 svn:date V 27 2001-10-07T00:16:31.000000Z K 7 svn:log V 386 Fix breakage caused by previous commit. The lkmnosys and lkmressys syscalls are of type NODEF but not in a way that fits the given definition of that type. The exact difference of lkmressys and lkmnosys is unclear, which makes it all the more confusing. A reevaluation of what we have and what we really need is in order. Spotted by: Maxime Henrion Pointy hat: marcel END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T00:18:48.000000Z K 7 svn:log V 66 Make this compile again after the changes to make bridge kld'able END K 10 svn:author V 6 marcel K 8 svn:date V 27 2001-10-07T00:20:08.000000Z K 7 svn:log V 100 Fix the NODEF entry for setpgid() so that it matches the NODEF entries in sys/kern/syscalls.master. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T00:21:13.000000Z K 7 svn:log V 59 Fix a typo and sync a comment with the version in RELENG_4 END K 10 svn:author V 6 marcel K 8 svn:date V 27 2001-10-07T00:21:18.000000Z K 7 svn:log V 7 Regen. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T00:29:59.000000Z K 7 svn:log V 47 Fix a typo (missing "; at the end of a string) END K 10 svn:author V 4 grog K 8 svn:date V 27 2001-10-07T01:22:44.000000Z K 7 svn:log V 31 Clarify foundation of GDR/DDR. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T01:56:09.000000Z K 7 svn:log V 216 Add code to print mbuf statistics - they are exported via sysctl so they are accessible here. (not committed to -current because the code is slightly different there, will do as soon as i have a chance to test it). END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T02:13:23.000000Z K 7 svn:log V 78 Add code to print interrupt statistics when they will be exported via sysctl. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T02:14:39.000000Z K 7 svn:log V 79 MFC: add code to print interrupt statistics when they are exported via sysctl. END K 10 svn:author V 8 deischen K 8 svn:date V 27 2001-10-07T02:34:43.000000Z K 7 svn:log V 179 Limit maximum poll interval to 60 seconds. This prevents an overflow from occurring when converting from a timeval/timespec to a timeout in milliseconds. Submitted by: dwmalone END K 10 svn:author V 7 rwatson K 8 svn:date V 27 2001-10-07T03:51:22.000000Z K 7 svn:log V 568 o Introduce an 'options REGRESSION'-dependant sysctl namespaces, 'regression.*'. o Add 'regression.securelevel_nonmonotonic', conditional on 'options REGRESSION', which allows the securelevel to be lowered for the purposes of efficient regression testing of securelevel policy decisions. Regression tests for securelevels will be committed shortly. NOTE: 'options REGRESSION' should never be used on production machines, as it permits violation of system invariants so as to improve the ability to effectively test edge cases, and improve testing efficiency. END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-07T04:30:27.000000Z K 7 svn:log V 27 MFC 1.8 remove MAP_INHERIT END K 10 svn:author V 3 sos K 8 svn:date V 27 2001-10-07T07:48:12.000000Z K 7 svn:log V 57 Update to reflect the change in ata.h Forgotten by: sos END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-10-07T09:02:25.000000Z K 7 svn:log V 149 MFC: Send a .4 second BREAK rather than a .25 second break so that we're at least consistent with what tcsendbreak(3) is documented to do. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-07T10:04:18.000000Z K 7 svn:log V 609 Rewrite the pc98 bus_space stuff. The type of bus_space_tag_t is now a pointer to bus_space_tag structure, and the bus_space_tag structure saves pointers to functions for direct access and relocate access. Added bsh_bam member to the bus_space_handle structure, it saves access method either direct access or relocate access which is called by bus_space_* functions. Added the mecia device support. If the bs_da and bs_ra in bus tag are set NEPC_io_space_tag and NEPC_mem_space_tag respectively, new bus_space stuff changes the register of mecia automatically for 16bit access. Obtained from: NetBSD/pc98 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-07T13:19:26.000000Z K 7 svn:log V 130 MFi386: sys/isa/sio.c revisions 1.291.2.8, 1.291.2.18, 1.291.2.19 and 1.291.2.20. Removed unnecessary PnP modem entries. END K 10 svn:author V 5 benno K 8 svn:date V 27 2001-10-07T13:22:25.000000Z K 7 svn:log V 532 Mega-patch for OpenFirmware loader support. - Flesh out ofw_readin routine. - Add OpenFirmware load and exec routines. - Make sure memory allocation for the kernel is done correctly. - Change the way the heap is allocated so as to make it easier to deallocate when we hand over. - Add a command to print memory maps similar to the one for ia64. With this patch, I can now load and hand over to a kernel on my iMac. There are some problems with OpenFirmware routines failing after the hand over that still need to be addressed. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-07T13:22:38.000000Z K 7 svn:log V 56 MFC: Update boot[12] programs to compile as ELF binary. END K 10 svn:author V 5 benno K 8 svn:date V 27 2001-10-07T13:24:56.000000Z K 7 svn:log V 41 Add new files needed by previous commit. END K 10 svn:author V 5 benno K 8 svn:date V 27 2001-10-07T13:27:27.000000Z K 7 svn:log V 18 Whitespace fixes. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-07T14:20:01.000000Z K 7 svn:log V 22 Remove bogus include. END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-10-07T16:11:37.000000Z K 7 svn:log V 309 Fix a typo in do_sigaction() where sa_sigaction and sa_handler were confused. Since sa_sigaction and sa_handler alias each other in a union, the bug was completely harmless. This had been fixed as part of the SIGCHLD changes in revision 1.125, but it was reverted when they were backed out in revision 1.126. END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-10-07T16:39:40.000000Z K 7 svn:log V 87 Mention that ed requires miibus. Suggested by: Eugene Grosbein END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T17:03:56.000000Z K 7 svn:log V 59 Export interrupt statistics via sysctl. MFC-after: 3 days END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T17:17:26.000000Z K 7 svn:log V 96 Make fetch_mask return ${default_mask} if entry not found. Add a couple of diagnostic messages. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T17:18:12.000000Z K 7 svn:log V 101 MFC: make fetch_mask return ${default_mask} if entry not found. Add a couple of diagnostic messages. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T17:22:46.000000Z K 7 svn:log V 150 Use host keys from the config directory if they exist, instead of regenerating them. Make the script handle relative paths for the source directory. END K 10 svn:author V 5 luigi K 8 svn:date V 27 2001-10-07T17:25:12.000000Z K 7 svn:log V 166 MFC: use host keys from the config directory if they exist, instead of regenerating them on the fly. Make the script handle relative paths for the source directory. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-07T18:18:50.000000Z K 7 svn:log V 253 Some patches from Doug for ia64 support- the principle one being the appropriate cache flush that provides MEMORY_BARRIER in between handoffs between host && RISC processor for the shared memory request/response queues. Submitted by: dfr@nlsystems.com END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-07T18:25:43.000000Z K 7 svn:log V 72 Make the interrupt routing a bit less chatty unless bootverbose is set. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-07T18:26:47.000000Z K 7 svn:log V 104 Add some somewhat vague documentation for this driver and a list of Hardware that might, in fact, work. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-07T18:40:01.000000Z K 7 svn:log V 150 * Use srlz.i to serialise changes to psr.ic * Don't enable psr.i at the same time as psr.dt and psr.ic These changes improve stability considerably. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-07T19:37:13.000000Z K 7 svn:log V 551 In procfs_readdir(), when the directory being read was a process directory, the target process was being held locked during the uiomove() call. If the process calling readdir() was the same as the target process (for instance 'ls /proc/curproc/'), and uiomove() caused a page fault, the result would be a proc lock recursion. I have no idea how long this has been broken - possibly ever since pfind() was changed to lock the process it returns. Also replace the one and only call to procfs_findtextvp() with a direct test of td->td_proc->p_textvp. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-07T19:41:19.000000Z K 7 svn:log V 42 Remove some useless preprocesor paranoia. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-07T19:47:37.000000Z K 7 svn:log V 142 These flags aren't just for procfs - in fact, these days theye are primarily used by ptrace(2) - so tweak the accompanying comments a little. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-07T20:06:03.000000Z K 7 svn:log V 76 Always succeed if the target process is the same as the requesting process. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-07T20:08:42.000000Z K 7 svn:log V 845 Dissociate ptrace from procfs. Until now, the ptrace syscall was implemented as a wrapper that called various functions in procfs depending on which ptrace operation was requested. Most of these functions were themselves wrappers around procfs_{read,write}_{,db,fp}regs(), with only some extra error checks, which weren't necessary in the ptrace case anyway. This commit moves procfs_rwmem() from procfs_mem.c into sys_process.c (renaming it to proc_rwmem() in the process), and implements ptrace() directly in terms of procfs_{read,write}_{,db,fp}regs() instead of having it fake up a struct uio and then call procfs_do{,db,fp}regs(). It also moves the prototypes for procfs_{read,write}_{,db,fp}regs() and proc_rwmem() from proc.h to ptrace.h, and marks all procfs files except procfs_machdep.c as "optional procfs" instead of "standard". END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-07T21:09:35.000000Z K 7 svn:log V 40 Implement inline versions of ntohl etc. END K 10 svn:author V 3 des K 8 svn:date V 27 2001-10-07T22:52:07.000000Z K 7 svn:log V 72 Forced commit to note that the previous entry referred to p_candebug(). END K 10 svn:author V 2 cg K 8 svn:date V 27 2001-10-07T23:28:34.000000Z K 7 svn:log V 87 use mixer channel numbers, not channel masks- this should fix sb/sbpro mixer problems. END K 10 svn:author V 2 cg K 8 svn:date V 27 2001-10-07T23:31:52.000000Z K 7 svn:log V 83 * register the correct number of channels * include hw buffer size in sndstat info END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-08T00:37:54.000000Z K 7 svn:log V 479 Remove panics for rename() race conditions. The panics are inappropriate because the IN_RENAME flag only fixes a few of the huge number of race conditions that can result in the source path becoming invalid even prior to the VOP_RENAME() call. The panics created a serious security issue whereby an attacker could fairly easily cause the panic to occur, crashing the machine. The correct solution requires a great deal of work in the namei path cache code. MFC after: 0 days END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-10-08T00:44:21.000000Z K 7 svn:log V 67 Add a call to init_param() to initialize some necessary variables. END K 10 svn:author V 6 marcel K 8 svn:date V 27 2001-10-08T01:41:45.000000Z K 7 svn:log V 26 s/alpha/${MACHINE_ARCH}/g END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:28:07.000000Z K 7 svn:log V 39 MFi386: files.i386 revision 1.307.2.15 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:28:52.000000Z K 7 svn:log V 50 MFi386: sys/i386/conf/GENERIC revision 1.246.2.35 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:29:43.000000Z K 7 svn:log V 68 MFi386: sys/i386/i386/machdep.c revisions 1.385.2.17 and 1.385.2.20 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:30:29.000000Z K 7 svn:log V 57 MFC: Allocate i/o and memory resources using gdc driver. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:33:04.000000Z K 7 svn:log V 161 MFi386: sys/isa/ppc.c revisions from 1.26.2.1 to 1.26.2.5 sys/isa/ppcreg.h revisions from 1.10.2.1 to 1.10.2.4 sys/isa/isareg.h revision 1.4.2.1 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:34:22.000000Z K 7 svn:log V 54 MFi386: sys/dev/syscons/syscons.c revision 1.336.2.11 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:35:19.000000Z K 7 svn:log V 40 MFi386: sys/isa/fd.c revision 1.176.2.5 END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-08T03:35:53.000000Z K 7 svn:log V 52 MFi386: sys/i386/isa/isa_compat.h revision 1.27.2.9 END K 10 svn:author V 6 murray K 8 svn:date V 27 2001-10-08T04:46:07.000000Z K 7 svn:log V 116 Remove reference to non-existant crd(4) man page. PR: docs/30445 Submitted by: Giorgos Keramidas END K 10 svn:author V 6 murray K 8 svn:date V 27 2001-10-08T05:05:31.000000Z K 7 svn:log V 127 Remove references to non-existant pvcsif(8) and pvctxctl(8). PR: docs/30446 Submitted by: Giorgos Keramidas END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-10-08T05:37:56.000000Z K 7 svn:log V 33 Add man page for device.hint(5). END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-08T05:53:43.000000Z K 7 svn:log V 55 MFC: a variety of things, mostly current 2300 support. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-08T05:57:06.000000Z K 7 svn:log V 58 MFC: various things, mostly the most recent 2300 support. END K 10 svn:author V 2 cg K 8 svn:date V 27 2001-10-08T05:59:54.000000Z K 7 svn:log V 24 use pcm_getbuffersize() END K 10 svn:author V 2 cg K 8 svn:date V 27 2001-10-08T06:01:13.000000Z K 7 svn:log V 75 use pcm_getbuffersize() use seperate dma tags for buffers and control info END K 10 svn:author V 2 cg K 8 svn:date V 27 2001-10-08T06:10:39.000000Z K 7 svn:log V 84 use pcm_getbuffersize() only creat a mic recording channel if the codec supports it END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-08T06:27:12.000000Z K 7 svn:log V 18 MFC: 2300 support END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-08T08:29:52.000000Z K 7 svn:log V 48 Port to ia64. Actually, just do like the alpha. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-08T09:32:08.000000Z K 7 svn:log V 72 MFC: 1.14: removed `myname.my.domain' as another alias for `localhost'. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-08T10:12:41.000000Z K 7 svn:log V 28 mdoc(7) police: fix markup. END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-10-08T10:43:34.000000Z K 7 svn:log V 29 Page align the data segment. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-08T11:52:23.000000Z K 7 svn:log V 105 Print interface name for each ARP entry. Prodded by: Igor Podlesny MFC after: 1 week END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-10-08T12:28:31.000000Z K 7 svn:log V 59 Add $FreeBSD$. Describe the other two directories in here. END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-10-08T12:46:01.000000Z K 7 svn:log V 162 Catch up with the SMPng reduced interrupt frame size. The corresponding change was made to DDB months ago (i386/i386/db_trace.c revision 1.37). Reviewed by: bde END K 10 svn:author V 5 green K 8 svn:date V 27 2001-10-08T14:11:00.000000Z K 7 svn:log V 30 Connect sftp and ssh-keyscan. END K 10 svn:author V 7 sobomax K 8 svn:date V 27 2001-10-08T17:01:35.000000Z K 7 svn:log V 283 - Allow package archive to be created from a locally installed package. This allows for an easy way to backup old version of port prior to installing a new one; - silence compiler warnings by killing some unused variables and adding all includes necessary. MFC after: 2 weeks END K 10 svn:author V 7 sobomax K 8 svn:date V 27 2001-10-08T17:05:34.000000Z K 7 svn:log V 284 (forced) Forgot to mention: creation of a full-fleged package archive requires some changes in bsd.ports.mk, because currently it doesn't install some files that are usually packed into the package archive (+MTREE_DIRS, +DISPLAY and so on). Support for this will be committed later. END K 10 svn:author V 7 sobomax K 8 svn:date V 27 2001-10-08T17:09:08.000000Z K 7 svn:log V 96 OOPS, delete some commented out debugging code committed along with r.1.25. MFC after: 2 weeks END K 10 svn:author V 5 green K 8 svn:date V 27 2001-10-08T19:25:24.000000Z K 7 svn:log V 41 Argh, ssh-keyscan must be added as well. END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-08T19:41:19.000000Z K 7 svn:log V 143 MFC 1.321. vinvalbuf() must wait for read AND write I/O to complete, not just write I/O. Solves a number of client-side NFS related crashes. END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-08T19:51:13.000000Z K 7 svn:log V 11 WS Cleanup END K 10 svn:author V 6 dillon K 8 svn:date V 27 2001-10-08T19:51:34.000000Z K 7 svn:log V 11 WS cleanup END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-08T20:21:04.000000Z K 7 svn:log V 35 Make printtrap() more informative. END K 10 svn:author V 5 wilko K 8 svn:date V 27 2001-10-08T20:33:46.000000Z K 7 svn:log V 237 Update references to 'device' entries for the kernel config files to use 5.x syntax (I hope..) Note: I suppose one might need to hack the hints file as well? Submitted by: Mike Barcroft , Bruce Mah END K 10 svn:author V 3 jhb K 8 svn:date V 27 2001-10-08T20:58:24.000000Z K 7 svn:log V 166 Allow atomic ops to be somewhat safely used in userland. We always use lock prefixes in the userland case so that the binaries will work on both SMP and UP systems. END K 10 svn:author V 3 jhb K 8 svn:date V 27 2001-10-08T21:05:46.000000Z K 7 svn:log V 38 Replace 'curproc' with 'td->td_proc'. END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-10-08T21:11:01.000000Z K 7 svn:log V 28 MFC: update to version 6.11 END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-08T21:33:56.000000Z K 7 svn:log V 49 Update relevant release note item with SA-01:62. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-08T21:45:11.000000Z K 7 svn:log V 136 Mention SA-01:62 in errata (the fix was in the 4.4-RELEASE notes, but the advisory wasn't mentioned because it hadn't been issued yet). END K 10 svn:author V 8 gshapiro K 8 svn:date V 27 2001-10-08T22:35:24.000000Z K 7 svn:log V 153 Do not clobber users hostname.mc file if freebsd.mc changes (likely after an installworld). Submitted by: Steve Watt MFC after: 2 days END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-08T22:50:54.000000Z K 7 svn:log V 46 Virgin import of Christos Zoulas's FILE 3.37. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-08T22:50:54.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r84685, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2001-10-08T22:50:55.000000Z K 7 svn:log V 78 This commit was manufactured by cvs2svn to create tag 'file-vendor-file_3_37'. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-08T22:57:03.000000Z K 7 svn:log V 115 Update for FILE v3.37. FreeBSD no longer needs the daylight hack. (we really should sync our timezone code up ...) END K 10 svn:author V 3 jhb K 8 svn:date V 27 2001-10-08T23:35:40.000000Z K 7 svn:log V 278 Don't attempt to initialize the pcaudio device on open. The attach routine already does the initialization (though it didn't set pca_initialized, so we always initialized twice) and since attach calls make_dev(), there's no way that pcaopen() can be called before pcaattach(). END K 10 svn:author V 6 julian K 8 svn:date V 27 2001-10-08T23:47:44.000000Z K 7 svn:log V 85 Don't dereference td if it's NULL. Submitted by: Alexander N. Kabaev END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-10-09T00:04:59.000000Z K 7 svn:log V 93 Fix minor compile-time warning that snunk in with changes to sortq() rtn. MFC after: 4 days END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-10-09T00:06:52.000000Z K 7 svn:log V 78 Fix minor compile-time error in definition of 'copyright'. MFC after: 4 days END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-10-09T00:09:46.000000Z K 7 svn:log V 219 Get rid of some minor compile-time errors by changing copyright/rcsid definitions to the same format used in other lpr source files, and by adding parenthesis to the right spot in one 'if' statement. MFC after: 4 days END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-10-09T00:14:41.000000Z K 7 svn:log V 73 Note that this driver is soon to be deprecated and removed from FreeBSD. END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-10-09T00:27:14.000000Z K 7 svn:log V 158 Rename the local variable 'person' to 'lpr_username', to avoid compile-time warnings about conflict with a global variable used by 'lprm'. MFC after: 4 days END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-10-09T00:34:20.000000Z K 7 svn:log V 91 Fix a compile-time warning by declaring 'len' as size_t instead of int. MFC after: 4 days END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-10-09T00:38:40.000000Z K 7 svn:log V 83 Fix one more compile-time warning by renaming a local variable. MFC after: 4 days END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-09T01:28:15.000000Z K 7 svn:log V 120 Sync this file up with its i386 brother. This appears to have been missed when 0.9.5a was imported. Approved by: kris END K 10 svn:author V 4 mike K 8 svn:date V 27 2001-10-09T01:29:56.000000Z K 7 svn:log V 237 Add a new libc function, strnstr(3), which allows one to limit the number of characters that are searched. This is especially useful with file operations and non-NUL terminated strings. Silence from: -audit, -hackers MFC after: 5 days END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-10-09T02:40:45.000000Z K 7 svn:log V 108 Make this compile after last commit. It should be: "td ? td->td_proc : NULL", not "td ? td->td_proc, NULL" END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-09T02:45:07.000000Z K 7 svn:log V 58 Updated release note: FILE 3.37. MFC noted: tcsh 6.11. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-10-09T02:47:16.000000Z K 7 svn:log V 17 MFC: tcsh 6.11. END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-10-09T03:08:24.000000Z K 7 svn:log V 69 Don't install Estonian nls support (-stable doesn't support it yet). END K 10 svn:author V 6 jlemon K 8 svn:date V 27 2001-10-09T04:05:58.000000Z K 7 svn:log V 64 The kernel doesn't have or . Remove these. END K 10 svn:author V 6 jlemon K 8 svn:date V 27 2001-10-09T04:08:41.000000Z K 7 svn:log V 42 MFC: r1.5; remove bogus userland headers. END K 10 svn:author V 6 jlemon K 8 svn:date V 27 2001-10-09T04:17:09.000000Z K 7 svn:log V 27 Remove #include END K 10 svn:author V 6 jlemon K 8 svn:date V 27 2001-10-09T04:25:26.000000Z K 7 svn:log V 27 Remove #include END K 10 svn:author V 5 mdodd K 8 svn:date V 27 2001-10-09T05:58:26.000000Z K 7 svn:log V 109 Minor output formatting for 'netstat -i': - Right align Mtu - Print AF_INET family with correct field width. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-09T07:31:02.000000Z K 7 svn:log V 23 Update for FILE v3.37. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-10-09T07:36:36.000000Z K 7 svn:log V 32 Bump for switch to XFree86 4.x. END K 10 svn:author V 3 jkh K 8 svn:date V 27 2001-10-09T07:47:47.000000Z K 7 svn:log V 80 MFC: Add commented-out/prototype entries for samba's swat configuration tool. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-09T08:33:50.000000Z K 7 svn:log V 167 The previous change also disaligned lines with AF_IPX and AF_NS addresses. Unshrink "Network" width to the previous value, and make sure everything is aligned again. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-09T10:14:06.000000Z K 7 svn:log V 57 Add a minimalist kernel config which can run inside SKI. END K 10 svn:author V 3 dfr K 8 svn:date V 27 2001-10-09T10:24:37.000000Z K 7 svn:log V 43 Don't include isavar.h - we don't need it. END K 10 svn:author V 2 ru K 8 svn:date V 27 2001-10-09T11:05:27.000000Z K 7 svn:log V 95 Pad input with null characters if it is not a multiple of 3. PR: bin/31156 MFC after: 1 week END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-10-09T13:07:21.000000Z K 7 svn:log V 30 Actually install sysctl.conf. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2001-10-09T13:20:25.000000Z K 7 svn:log V 72 MFC rev 1.4: DTRT when firewall_type is a filename, plus some cleanups. END K 10 svn:author V 6 fenner K 8 svn:date V 27 2001-10-09T14:09:49.000000Z K 7 svn:log V 126 Use FreeBSD-specific %Ef in strftime() since 4.x doesn't have nl_langingo(D_MD_ORDER) so can't set d_first as -current does. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-10-09T15:30:19.000000Z K 7 svn:log V 30 Added Logitec LHA-301 pnp id. END K 10 svn:author V 4 mike K 8 svn:date V 27 2001-10-09T15:50:22.000000Z K 7 svn:log V 90 (forced commit) Also not that the previous bump is for the new strnstr(3) libc function. END K 10 svn:author V 6 robert K 8 svn:date V 27 2001-10-09T16:06:28.000000Z K 7 svn:log V 74 Remove an unneeded variable declaration and statement. Approved by: jake END