ƒ¬280455 236 165 442 170 269 581 236 281 152 1938 140 113 158 123 172 312 184 163 161 150 129 334 386 252 145 130 180 346 128 150 128 240 127 240 176 139 128 168 119 539 160 164 120 121 225 133 139 156 152 112 120 305 145 115 167 239 167 152 256 247 385 203 154 496 140 165 345 294 260 316 209 466 414 116 184 265 163 224 124 222 158 145 151 141 215 134 166 299 176 161 212 212 287 166 1172 518 394 206 212 146 626 138 332 249 265 304 166 205 274 160 160 217 119 141 144 169 428 313 130 424 111 128 531 312 302 157 285 432 450 595 192 209 115 141 141 239 174 164 162 194 248 119 219 248 134 234 673 139 464 137 478 418 181 148 124 226 232 138 166 184 144 146 143 214 112 111 128 126 112 126 112 135 143 160 176 134 209 243 379 134 181 127 149 219 214 201 172 140 117 148 187 331 103 218 205 226 129 240 171 115 144 970 226 733 142 133 253 146 253 157 143 103 159 115 117 266 287 239 200 213 215 254 200 429 144 187 142 125 147 366 150 236 178 125 130 142 115 K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-07-27T18:28:37.000000Z K 7 svn:log V 71 Uncomment a return(ENXIO) that I commented out for debugging purposes. END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-07-27T18:45:41.000000Z K 7 svn:log V 345 Disable the dirhash sanity check that panics if an unused directory entry (d_ino == 0) is found in a position that is not the start of a DIRBLKSIZ block. While such entries cannot occur normally (ufs always extends the previous entry to cover the free space instead), they do not cause problems and fsck does not fix them, so panicking is bad. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-07-27T19:38:56.000000Z K 7 svn:log V 76 Remember to zero out certain things that we malloc() and/or contigmalloc(). END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-27T20:37:53.000000Z K 7 svn:log V 176 MFC 1.22, 1.23: - Avoid to select an interface which is not good for RA/RS. - Avoid to select lo0 or faith for a default interface. - Do more strict checking for an interface. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-07-27T20:55:45.000000Z K 7 svn:log V 486 Pacify users who get all bent out of shape when they see the "xl%d: command never completed" message. The RX reset takes longer complete than it used to, a lot longer in fact than xl_wait() is prepared to wait. When we do the RX reset in xl_reset(), this cases xl_wait() to time out and whine. We wait a little extra time now after the RX reset, which should silence the warning. Thanks to obrien for finally getting me a box with a NIC that causes this problem for me to tinker with. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-07-27T20:56:41.000000Z K 7 svn:log V 141 MFC: relocate DELAY() slightly in xl_reset() to silence the "xl%d: command never completed" warning with newer Tornado cards (e.g. 3c905CX). END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-28T01:20:38.000000Z K 7 svn:log V 185 It looks like the `make release' breakage was due to kernel growth, not my reorg commit. Dike out the `ncr' driver as the `sym' driver now handles all the same controllers `ncr' does. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-28T01:24:22.000000Z K 7 svn:log V 57 Use alternate apm0 spelling to reduce diffs to -current. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-28T01:59:58.000000Z K 7 svn:log V 1841 Remove s_strl*(). I am not sure what was thought they accomplished. When reading the code I had to stop, say "ok, what does *these* modifications of strl*() do? Pull out grep. Oh, not in add/, maybe above in ../lib/? Yep. So what do they do? Comments above them are misleading, guess I'll have to read the code. Oh, they just test strl* against the size and return the result of the test. Now I can continue to read the code I was. The uses of s_strl*() then test that result and errx()'s. Lets think about the "optimized" code I am removing: In general the compiler pushes the three args to strl* onto the stack and calls s_strl*. s_strl* has to indirectly access 3 args from the stack. Then push them on the stack a 2nd time for the real strl* call. s_strl* then pops the return from strl* off the stack; or moves it from the register it was returned in, to the register where tests can happen. s_strl* then pops the three arguments to strl*. Perform the test, push the result of the test, or move it from the result register to the return value register. The caller to s_strl* now has to either pop the return value of s_strl* or move it from the return value register to the test register. The caller then pops the three args to s_strl* off the stack (the same args that s_strl* itself had to pop off after the real call to strl*). The s_strl* caller then performs a simular test to what has already been done, and conditionally jumps. By doing things this way, we've given the compiler optimizer less to work with. Also, please don't forget the that call to s_strl* has possibly jumped to code not in the cache due to being far away from the calling code, thus causing a pipeline stall. So where is the "optimization" from s_strl*? It isn't code clarity. It isn't code execution speed. It isn't code size either. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T03:45:55.000000Z K 7 svn:log V 48 Use spaces instead of hard tabs in the diagram. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T03:46:35.000000Z K 7 svn:log V 21 Minor whitespace nit END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T03:47:10.000000Z K 7 svn:log V 66 To reduce diffs with -stable, ifdef selinfo.h or select.h include END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T03:52:15.000000Z K 7 svn:log V 31 MFC: State diagram in comment. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T03:57:02.000000Z K 7 svn:log V 80 MFC: Remove unnecessary include . This is now handled in slot.h. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T04:04:05.000000Z K 7 svn:log V 219 Stable requires machine/clock.h to quiet warnings. It isn't strictly necessary on current, but having it in here makes the diffs with stable smaller and doesn't hurt anything except for phk's redundant include finder. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T04:08:25.000000Z K 7 svn:log V 92 It is spelled INTR_FAST in current and INTR_TYPE_FAST in stable, so try to make allowances. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T04:25:11.000000Z K 7 svn:log V 71 #ifdef some 5.0 code with freebsd_version to reduce diffs with stable. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-28T04:44:09.000000Z K 7 svn:log V 66 The security officer requested this be backed out for discussion. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T05:02:29.000000Z K 7 svn:log V 58 MFC: Use freebsd_version for ifdef rather the NOT_YET_XXX END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T05:03:22.000000Z K 7 svn:log V 37 MFC: Remove obsolete and unused file END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-28T05:55:07.000000Z K 7 svn:log V 241 MFC the new files for the PCI interrupt routing code and the BIOS interface. Having them in -stable won't hurt anything and will make it easier for me to produce and distribute diffs for the pcic code that will be using these (indirectly). END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-28T11:32:08.000000Z K 7 svn:log V 291 If the peer sends a REQ without the IPADDR option, only reject it once. If they repeat the request (again without the IPADDR option) ACK it. I've had reports that some ppp implementations will not assign themselves an IP number. This should negotiate with such things. MFC after: 3 days END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-28T11:32:40.000000Z K 7 svn:log V 157 MFC: If the peer sends a REQ without the IPADDR option, only reject it once. If they repeat the request (again without the IPADDR option) ACK it. END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-28T11:34:17.000000Z K 7 svn:log V 51 MFC: Use 4551/551 permissions rather than 4554/554 END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T11:42:17.000000Z K 7 svn:log V 34 Import version 3.4.20 of IPFilter END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2001-07-28T11:42:18.000000Z K 7 svn:log V 84 This commit was manufactured by cvs2svn to create tag 'ipfilter-vendor-sys-v3-4-20'. END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-28T11:44:23.000000Z K 7 svn:log V 251 MFC: Remove $daily_status_named_logs and figure out which /var/log/messages* files to look an (in the same way that /etc/security does). Don't single-quote $start, reducing it to an empty string. Markup corrections to periodic.conf.5 END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T11:58:26.000000Z K 7 svn:log V 32 fix conflicts created by import END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-28T11:58:41.000000Z K 7 svn:log V 56 Change permissions back to 4554/554 Suggested by: kris END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T11:59:32.000000Z K 7 svn:log V 32 Import IPFilter version 3.4.20 END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T11:59:32.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r80484, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T11:59:33.000000Z K 7 svn:log V 31 Import IPFilter version 3.4.20 END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T11:59:33.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r80486, 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-07-28T11:59:34.000000Z K 7 svn:log V 80 This commit was manufactured by cvs2svn to create tag 'ipfilter-vendor-v3-4-20'. END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-28T12:00:05.000000Z K 7 svn:log V 45 MFC: Revert 4551/551 permissions to 4554/554 END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T12:08:15.000000Z K 7 svn:log V 32 fix conflicts created by import END K 10 svn:author V 6 jedgar K 8 svn:date V 27 2001-07-28T12:10:15.000000Z K 7 svn:log V 73 MFC rev 1.18: Use a safer method of creating the temporary password file END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T12:21:19.000000Z K 7 svn:log V 28 IPFilter updated to 3.4.20. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T12:24:18.000000Z K 7 svn:log V 447 Note MFC of tcpdump 3.6.3. I didn't do this when I merged the delta to RELENG_4 because I thought &merged; didn't apply to contributed software since there is one entry per application which gets updated with the new version number, as opposed to all the other programs, which get one entry per update. However, the previous commit removed &merged; from the IPFilter entry, so perhaps I just didn't look long enough when I did the tcpdump merge. END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-07-28T12:27:06.000000Z K 7 svn:log V 68 Finally add the manpage for the IEEE 802.1Q VLAN network interface. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2001-07-28T12:27:07.000000Z K 7 svn:log V 68 This commit was manufactured by cvs2svn to create branch 'RELENG_4'. END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-28T12:48:00.000000Z K 7 svn:log V 25 MFC: rev 1.15 (fix typo) END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-28T12:48:33.000000Z K 7 svn:log V 26 MFC: rev 1.40 (fix ioctl) END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-28T12:51:48.000000Z K 7 svn:log V 129 MFC: syscons.c rev 1.365, 1.366 syscons.h rev 1.70 scmouse.c rev 1.25 scvgarndr.c rev 1.11 sctermvar.h rev 1.3 consio.h rev 1.10 END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T13:05:48.000000Z K 7 svn:log V 37 Import ipfilter 3.4.20 into releng_4 END K 10 svn:author V 4 kato K 8 svn:date V 27 2001-07-28T13:08:31.000000Z K 7 svn:log V 46 Merged from sys/i86/isa/npx.c revision 1.107. END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T13:30:09.000000Z K 7 svn:log V 60 fix #if mismatch created through import conflict resolution END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-28T13:34:25.000000Z K 7 svn:log V 56 merge diffs for ipfilter 3.4.16 -> 3.4.20 into RELENG_4 END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T14:37:25.000000Z K 7 svn:log V 21 MFC: IPFilter 3.4.20 END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T14:37:32.000000Z K 7 svn:log V 29 Note MFC of IPFilter 3.4.20. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T16:52:27.000000Z K 7 svn:log V 213 MFC sysctl 1.30-1.33, sysctl.8 1.32-1.33: -N flag, and DES's spring cleaning (deprecating -W, -A, -X, etc.). As in -current, all deprecated flags are still accepted for backwards compatibility. Approved by: des END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T17:01:37.000000Z K 7 svn:log V 54 MFC 1.34-1.36: sync with -current: minor style fixes. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-28T17:02:48.000000Z K 7 svn:log V 24 MFC 1.35: markup fixes. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-28T18:44:42.000000Z K 7 svn:log V 72 Import of Binutils from the FSF 2.11 branch [checked out 19-July-2001]. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-28T18:44:42.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r80508, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 5 gibbs K 8 svn:date V 27 2001-07-28T18:45:52.000000Z K 7 svn:log V 73 Remove a bootverbose diagnostic that makes bootverbose just too verbose. END K 10 svn:author V 5 gibbs K 8 svn:date V 27 2001-07-28T18:46:44.000000Z K 7 svn:log V 58 MFC: Bring the aic7xxx driver up to the head as of today. END K 10 svn:author V 5 mikeh K 8 svn:date V 27 2001-07-28T19:13:57.000000Z K 7 svn:log V 161 MFC: 1.6 +14 -4 src/lib/libc/stdio/tmpfile.c 1.8 +8 -1 src/lib/libc/stdio/tmpnam.3 Ability to specify temporary directory with TMPDIR END K 10 svn:author V 5 mikeh K 8 svn:date V 27 2001-07-28T19:22:01.000000Z K 7 svn:log V 152 MFC: 1.8 +2 -1 src/bin/chio/Makefile 1.18 +22 -22 src/bin/chio/chio.c 1.3 +5 -5 src/bin/chio/defs.h WARNS cleanup END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-28T19:53:10.000000Z K 7 svn:log V 290 Fix the environment handling: However, there's still a bug in login.c because you copy the environment *before* the call to pam_open_session, which won't set the necessary variables set by /usr/ports/security/pam_ssh. Submitted by: Volker Stolz END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-28T19:57:57.000000Z K 7 svn:log V 108 Upgraded launchpad for kerberos. Noe kerberos IV OR kerberos 5 may be started at boot for kerberos servers. END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-28T20:00:54.000000Z K 7 svn:log V 60 Build standard directory for kerberos 5 (Heimdal) database. END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-07-28T20:18:38.000000Z K 7 svn:log V 399 Permit direct swapping to NFS regular files using swapon(2). We already allow this for NFS swap configured via BOOTP, so it is known to work fine. For many diskless configurations is is more flexible to have the client set up swapping itself; it can recreate a sparse swap file to save on server space for example, and it works with a non-NFS root filesystem such as an in-kernel filesystem image. END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-28T20:40:49.000000Z K 7 svn:log V 46 Diff-reduce this with GENERIC. OK'ed by: imp END K 10 svn:author V 4 ache K 8 svn:date V 27 2001-07-28T20:50:21.000000Z K 7 svn:log V 72 Add KOI8-U tables Submitted by: Olexander Kunytsa END K 10 svn:author V 2 se K 8 svn:date V 27 2001-07-28T21:28:14.000000Z K 7 svn:log V 253 The fix for schemeless and hostless URLs (rev. 1.27) broke the schemeless proxy specification, which seems to be valid according to the man page. Change the logic to consider "hostname:port" a hostname and port instead of a file URL. Approved by: des END K 10 svn:author V 2 se K 8 svn:date V 27 2001-07-28T21:34:56.000000Z K 7 svn:log V 202 Include value of command line argument that causes an error message or warning in said message, since fetch may be run from a makefile or script which does not print the command line. Approved by: des END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-28T22:24:46.000000Z K 7 svn:log V 167 MFC 1.11-1.13 - MAXHOSTNAMELEN includes space for the NUL - Don't read past the end of the host passed to realhostname() - Simplify IPv4 mapped IPv6 address handling. END K 10 svn:author V 2 mp K 8 svn:date V 27 2001-07-28T22:40:10.000000Z K 7 svn:log V 224 Properly handle wgetch(3) returning ERR. This prevents an abnormal exit when a windows resize event (SIGWINCH) occurs. Reported by: John Doe and others on -stable. Reviewed by: dd MFC after: 1 week END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-07-28T22:41:45.000000Z K 7 svn:log V 115 MFC: Document net.link.ether.bridge_cfg and net.link.ether.bridge_refresh sysctl variables. bridge.4 1.13->1.14 END K 10 svn:author V 5 mikeh K 8 svn:date V 27 2001-07-29T00:52:37.000000Z K 7 svn:log V 371 Rename the GLOB_MAXPATH flag of glob(3) to GLOB_LIMIT to be compatible with NetBSD and OpenBSD. glob(3) will now return GLOB_NOSPACE with errno set to 0 instead of GLOB_LIMIT when we match more than `gl_matchc' patterns. GLOB_MAXPATH has been left as an alias of GLOB_LIMIT to maintain backwards compatibility. Reviewed by: sheldonh, assar Obtained from: NetBSD/OpenBSD END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-29T06:13:45.000000Z K 7 svn:log V 321 Preliminary attempt to codify the changes made to RELENG_4_3 tree. There appear to have been 9 commits to the tree after 4.3 release was finalized. In the future, I plan on committing here shortly after changes I notice and also after advisories are released. Approved in concept by: kris Slightly reviewed by: rwatson END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-29T07:21:39.000000Z K 7 svn:log V 21 Hook up the manpage. END K 10 svn:author V 4 kato K 8 svn:date V 27 2001-07-29T07:39:14.000000Z K 7 svn:log V 91 Make symlink $S/$M/include -> compile/FOO/machine at kernel-depend instead of geneassym.o. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T08:49:15.000000Z K 7 svn:log V 173 This is the traditional BSD libmp interface implemented in terms of the OpenSSL BIGNUM interface. It is provided for compatibility only and should not be used in new code. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T08:58:22.000000Z K 7 svn:log V 72 Enable the new libmp in the build, and disable libgmp and its henchmen. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T09:16:07.000000Z K 7 svn:log V 132 ioctl(2) can return EFAULT from copyin. PR: 29285 Submitted by: Philipp Mergenthaler END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T09:17:16.000000Z K 7 svn:log V 33 Don't capitalize variable names. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T09:17:54.000000Z K 7 svn:log V 130 Don't xref mt(1) just because it mentions ioctl. Submitted by: Philipp Mergenthaler END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-07-29T10:52:07.000000Z K 7 svn:log V 65 Merged from sys/dev/syscons/syscons.c revisions 1.367 and 1.368. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-07-29T11:07:21.000000Z K 7 svn:log V 52 MFC: Fixed conflict with sys/dev/syscons/syscons.h. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-07-29T11:08:25.000000Z K 7 svn:log V 58 Merged from sys/dev/syscons/syscons.c revision 1.336.2.7. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2001-07-29T11:11:45.000000Z K 7 svn:log V 48 Convert the olpt driver to using new-bus stuff. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T13:19:17.000000Z K 7 svn:log V 123 Add a manual page for the libmp interface. It isn't real great, but then again neither is the interface it's documenting. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T13:19:24.000000Z K 7 svn:log V 43 Install the man page and add mp.h to INCS. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-29T13:22:41.000000Z K 7 svn:log V 75 Move SHLIB_MAJOR to below LIB and add a comment about why NO_WARNS is set. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2001-07-29T15:08:14.000000Z K 7 svn:log V 201 Avoid any chance of being misunderstood as having libelled developers or developers' vendors without compromising the importance of warning against bad practice. Reported by: mjacob MFC after: 1 week END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-29T18:31:09.000000Z K 7 svn:log V 82 (Re)Add an SSH module for PAM, heavily based on Andrew Korty's module from ports. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2001-07-29T18:31:10.000000Z K 7 svn:log V 65 This commit was manufactured by cvs2svn to create branch 'KORTY'. END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-29T18:40:33.000000Z K 7 svn:log V 117 MFC the working Kerberos 5 (Heimdal) PAM module. This is turned off by default. Those keen can trivially turn it on. END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-29T18:57:30.000000Z K 7 svn:log V 117 MFC the working Kerberos 5 (Heimdal) PAM module. This is turned off by default. Those keen can trivially turn it on. END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-29T19:11:50.000000Z K 7 svn:log V 194 MFC 1.7, 1.8: - Allow link-local multicast traffic for client. - Allow ICMPv6 destination unreach, packet too big and NS/NA. - RIPng also uses link-local to link-local. - Pass any NS/NA/toobig. END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-29T19:14:38.000000Z K 7 svn:log V 74 MFC 1.66: ifconfig if0 netmask xxx.xxx.xxx.xxx didn't change the netmask. END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-29T19:18:02.000000Z K 7 svn:log V 1078 MFC 1.63: As commented in defined in sys/net/route.c, rt_fixchange() has a bad effect, which would cause unnecessary route deletion: * Unfortunately, this has the obnoxious * property of also triggering for insertion /above/ a pre-existing network * route and clones. Sigh. This may be fixed some day. The effect has been even worse, because recent versions of route.c set the parent rtentry for cloned routes from an interface-direct route. For example, suppose that we have an interface "ne0" that has an IPv4 subnet "10.0.0.0/24". Then we may have a cloned route like 10.0.0.1 on the interface, whose parent route is 10.0.0.0/24 (to the interface ne0). Now, when we add the default route (i.e. 0.0.0.0/0), rt_fixchange() will remove the cloned route 10.0.0.1. The (bad) effect also prevents rt_setgate from configuring rt_gwroute, which would not be an intended behavior. As suggested in the comments to rt_fixchange(), we need stricter check in the function, to prevent unintentional route deletion. This fix also solve the "IPV6 panic?" problem in nd6_timer(). END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-29T19:32:40.000000Z K 7 svn:log V 425 MFC: move ipsec security policy allocation into in_pcballoc, before making pcbs available to the outside world. otherwise, we will see inpcb without ipsec security policy attached (-> panic() in ipsec.c). sys/netinet/in_pcb.c: 1.86 sys/netinet/ip_divert.c: 1.50 sys/netinet/raw_ip.c: 1.80 sys/netinet/tcp_usrreq.c: 1.65 sys/netinet/udp_usrreq.c: 1.93 sys/netinet6/raw_ip6.c: 1.12 sys/netinet6/udp6_usrreq.c: 1.16 END K 10 svn:author V 3 tmm K 8 svn:date V 27 2001-07-29T21:01:13.000000Z K 7 svn:log V 301 Disallow ATAPI CD transfers that are not a multiple of the device block size (previously, the transfer size would be rounded up to a multiple of the block size, which would overflow the buffer). This fixes panics when doing things like trying to mount audio CD's. PR: kern/21946 Review Timeout: sos END K 10 svn:author V 3 tmm K 8 svn:date V 27 2001-07-29T21:56:14.000000Z K 7 svn:log V 113 Correct the old length argument passed to sysctl to be a pointer to a size_t (not to an int). MFC after: 2 days END K 10 svn:author V 3 tmm K 8 svn:date V 27 2001-07-29T22:01:55.000000Z K 7 svn:log V 119 Correct the old length argument passed to sysctlbyname to be a pointer to a size_t (not to an int). MFC after: 2 days END K 10 svn:author V 4 kris K 8 svn:date V 27 2001-07-29T22:11:35.000000Z K 7 svn:log V 53 MFC: Updated tcp_wrappers license from Wietse Venema END K 10 svn:author V 7 iedowse K 8 svn:date V 27 2001-07-29T22:26:01.000000Z K 7 svn:log V 529 Two recent commits in sys/ufs/ufs interacted badly with ext2fs because it shares ufs code. In ufs_fhtovp(), the test on i_effnlink is invalid because ext2fs does not maintain this field. In ufs_close(), i_effnlink is also tested, to determines whether or not to call vn_start_write(). The ufs_fhtovp issue breaks NFS exporting of ext2fs filesystems; I believe the other is harmless. Fix both cases by checking um_i_effnlink_valid in the ufsmount struct, and use i_nlink if necessary. Noticed by: bde Reviewed by: mckusick, bde END K 10 svn:author V 4 kris K 8 svn:date V 27 2001-07-29T22:48:37.000000Z K 7 svn:log V 45 MFC: Silence variable format-string warnings END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T22:53:25.000000Z K 7 svn:log V 239 MFC *: Change lpd to perform sanity and safety checks on control files as it receives them from other hosts. This will not affect jobs coming via lpr on the local machine. [* = 1.6 Makefile, 1.1 ctlinfo.c, 1.1 ctlinfo.h, 1.22 recvjob.c] END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T22:58:17.000000Z K 7 svn:log V 156 MFC *: Change a few read & write calls to use 'STDOUT_FILENO' instead of '1'. [* = 1.29 lpd.c, 1.23 recvjob.c] Submitted by: David Hill END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:02:52.000000Z K 7 svn:log V 172 MFC *: Rename the -w option to be -W (-w is already used by NetBSD). For now, -w is still accepted, but prints out some warnings via syslog. [* = 1.22 lpd.8, 1.30 lpd.c] END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:06:27.000000Z K 7 svn:log V 211 MFC *: Replace calls to strncpy with calls to strlcpy, and remove the extra step needed to ensure that the result is null-terminated when using strncpy(). [* = 1.22 displayq.c, 1.41 printjob.c, 1.24 recvjob.c] END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:09:15.000000Z K 7 svn:log V 74 MFC 1.31: Fix two compile-time warnings by defining fromlen as socklen_t. END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:11:59.000000Z K 7 svn:log V 112 MFC 1.25: Get rid of some compile-time warnings by defining (or casting) variables as size_t where appropriate. END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:15:39.000000Z K 7 svn:log V 181 MFC 1.23: Fix a few more minor compile-time warnings, mainly by using size_t where appropriate, and using '("%lu", (unsigned long)asizeval)' when printing something of type size_t. END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:17:36.000000Z K 7 svn:log V 68 MFC 1.21: Get rid of a compile-time warning by casting to (size_t). END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:19:28.000000Z K 7 svn:log V 68 MFC 1.19: Get rid of a compile-time warning by casting to (size_t). END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-29T23:24:03.000000Z K 7 svn:log V 124 MFC 1.42: Basically rewrite the dofork() routine, to add more error-checking and correct the error-checking that was there. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-29T23:50:12.000000Z K 7 svn:log V 24 MFC phk's '-A' changes. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-29T23:52:03.000000Z K 7 svn:log V 46 MFC revs 1.58-1.59: address alignment issues. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-29T23:53:04.000000Z K 7 svn:log V 49 Oops- Did not mean to commit the Makefile change END K 10 svn:author V 5 greid K 8 svn:date V 27 2001-07-29T23:53:30.000000Z K 7 svn:log V 75 MFC: Add an acceleration option to moused (r1.50 moused.c, r1.34 moused.8) END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-30T00:03:58.000000Z K 7 svn:log V 335 When booted -v (eg bootverbose is non-zero), have pccard report what resources it is attempting to assign to a child object. This should help people track down mysterious resource allocation problems more easily. # Unfortunately, it is harder to do the conflict check and report which # resource failed if the driver itself doesn't. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-30T00:11:29.000000Z K 7 svn:log V 220 MFC: o Clarified suspend + power behavior o __FreeBSD_version based selinfo.h vs select.h include o __FreeBSD_version based ifdefs for a few things different than in current. o tunables o minor style differences. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:15:22.000000Z K 7 svn:log V 35 MFC rev 1.11 minor message cleanup END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:19:50.000000Z K 7 svn:log V 328 Propagate CAM_DIS_DISCONNECT on through: 1. If we get frozen, unfreeze for disable disconnects. 2. Put CAM_DIS_DISCONNECT commands at the head of the work queue (we have a target still connected and we can't run anything else until this command completes). If we had an error sending the last CTIO, unfreeze the queue anyway. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:21:29.000000Z K 7 svn:log V 16 scsi_targetio.h END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:22:57.000000Z K 7 svn:log V 33 backout last commit- inadvertant END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:27:54.000000Z K 7 svn:log V 435 (Forced commit- last commit was inadvertant in that it missed the comments) Move TARGCTLIOALLOCUNIT to OTARGCTLIOALLOCUNIT, TARGCTLIOFREEUNIT to OTARGCTLIOFREEUNIT and redefine old associated structure to be old_ioc_alloc_unit- deprecation but preservation of binaries. Add new structure for same- but this one contains a pointer to user defined INQUIRY data so you can define what the target device looks like to the outside world. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:30:58.000000Z K 7 svn:log V 216 (Forced commit- last one missed the comments) Handle both old and new TARGIOALLOCUNIT/TARGIOFREEUNIT cases- the new one allows us to specify inquiry data we want to use. Handle more of the CAM_DIS_DISCONNECT case. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:44:32.000000Z K 7 svn:log V 206 Kill the command (don't rerun it) if we had an AUTOSENSE failure. If we had an AUTOSENSE failure, we don't know what SENSE DATA we had for a CHECK CONDITION. It's far better to assume failure in this case. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:48:20.000000Z K 7 svn:log V 62 MFC 1.74- add sysctls to set retry counts and timeout values. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:55:44.000000Z K 7 svn:log V 189 Revert MFC of phk's -A changes- there is some question that they don't work correctly. This may be incorrect, but I probably should not have been the one to MFC them to begin with. Bad me. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:59:06.000000Z K 7 svn:log V 336 Redo how we manage SCSI device settings- have a 3rd flags (nvram) that records either what's in NVRAM or what the safe defaults would be if we lack NVRAM. Then we rename cur_XXXX to actv_XXXX (these are the currently active settings) and the dev_XXX settings to goal_XXXX (these are the settings which we want cur_XXXX to converge to). END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T00:59:32.000000Z K 7 svn:log V 354 Redo how we manage SCSI device settings- have a 3rd flags (nvram) that records either what's in NVRAM or what the safe defaults would be if we lack NVRAM. Then we rename cur_XXXX to actv_XXXX (these are the currently active settings) and the dev_XXX settings to goal_XXXX (these are the settings which we want cur_XXXX to converge to). Roll core minor. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T01:00:21.000000Z K 7 svn:log V 499 Redo how we manage SCSI device settings- have a 3rd flags (nvram) that records either what's in NVRAM or what the safe defaults would be if we lack NVRAM. Then we rename cur_XXXX to actv_XXXX (these are the currently active settings) and the dev_XXX settings to goal_XXXX (these are the settings which we want cur_XXXX to converge to). This probably isn't entirely final as yet- but it's a lot closer to now being what it should be, including allowing camcontrol to actually set specific settings. END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T01:30:03.000000Z K 7 svn:log V 97 MFC: changes to SCSI device flag settings scanning local loop addresses for FL port topologies END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T01:32:04.000000Z K 7 svn:log V 113 MFC: SCSI device flag changes Fix for 28992- (mixed results- wilko still sees the problem, fix works for me) END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T01:32:20.000000Z K 7 svn:log V 20 roll platform minor END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T01:32:53.000000Z K 7 svn:log V 46 MFC SCSI device flag changes; Roll core minor END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T03:09:46.000000Z K 7 svn:log V 46 Virgin import of Christos Zoulas's FILE 3.36. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T03:09:46.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r80588, 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-07-30T03:09:47.000000Z K 7 svn:log V 78 This commit was manufactured by cvs2svn to create tag 'file-vendor-file_3_36'. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2001-07-30T03:09:48.000000Z K 7 svn:log V 68 This commit was manufactured by cvs2svn to create branch 'RELENG_4'. END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-07-30T03:13:18.000000Z K 7 svn:log V 69 MFC: Cleanup "Reporting Problems" section. problems.sgml 1.2->1.3 END K 10 svn:author V 4 bmah K 8 svn:date V 27 2001-07-30T03:15:01.000000Z K 7 svn:log V 100 MFC: Split "Contacting the FreeBSD Project" section. No content changes. problems.sgml 1.3->1.4 END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T03:50:04.000000Z K 7 svn:log V 152 Update to version 3.36. I had to hack print.c due to some new bits that only compile on NetBSD. I could not figure what the analogous FreeBSD bits are. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T03:50:24.000000Z K 7 svn:log V 24 Update to version 3.36. END K 10 svn:author V 3 gad K 8 svn:date V 27 2001-07-30T05:08:04.000000Z K 7 svn:log V 126 Remove these files from RELENG_4. They have not been used since at least May of 2000 (when they were removed from -current). END K 10 svn:author V 5 dougb K 8 svn:date V 27 2001-07-30T06:19:27.000000Z K 7 svn:log V 153 Add a note about port 98 commonly being used for RH linuxconf, (unofficially of course). PR: misc/21775 Submitted by: Dann Lunsford END K 10 svn:author V 6 brooks K 8 svn:date V 27 2001-07-30T06:38:34.000000Z K 7 svn:log V 39 MFC: an(4) header duplication removal. END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-30T07:17:40.000000Z K 7 svn:log V 141 Don't use a buffer for the state info from the TI chips. Just print it directly. Also, minor style(9) nits near one or two of these sites. END K 10 svn:author V 6 pirzyk K 8 svn:date V 27 2001-07-30T08:09:34.000000Z K 7 svn:log V 577 Added the linux_sysinfo function to implement sysinfo(2). MFC'ed the following files from HEAD: 1.41 +2 -2 src/sys/i386/linux/syscalls.master 1.104 +77 -1 src/sys/compat/linux/linux_misc.c 1.29 +1 -2 src/sys/i386/linux/linux_dummy.c 1.43 +1 -1 src/sys/i386/linux/linux_proto.h 1.38 +0 -0 src/sys/i386/linux/linux_syscall.h 1.44 +1 -1 src/sys/i386/linux/linux_sysent.c PR: kern/27759 Submitted by: henrich@sigbus.com Reviewed by: marcel Approved by: marcel END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-30T08:24:31.000000Z K 7 svn:log V 45 MFC: Remove redundant mtu/mru/speed settings END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-07-30T08:57:55.000000Z K 7 svn:log V 368 Minor updates (no functional changes) - Remove the beer-ware license (reqested by phk) - Reorganise so that the PIIX4 workaround code is kept together, and switch the workaround function via the timecounter struct, saving a compare in the read-timecounter codepath. Also indicate that the workaround is active by changing the timecounter hardware string. END K 10 svn:author V 3 ume K 8 svn:date V 27 2001-07-30T08:59:08.000000Z K 7 svn:log V 45 MFC 1.5: incorrect bounds-check on snprintf. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-07-30T08:59:43.000000Z K 7 svn:log V 382 - Prevent the ACPI code from being loaded as a module other than at boot time. Loading as a module once the system is up and running doesn't make any sense. - Fix acpi_FindIndexedResource (it would only check the first resource), changes the calling interface. - Add a new helper function (acpi_AppendBufferResource) to help building buffers containing resources. END K 10 svn:author V 6 msmith K 8 svn:date V 27 2001-07-30T09:01:18.000000Z K 7 svn:log V 322 The current resource buffer returned from an interrupt link device in the case where there are no interrupts routed for it does not contain enough space to use it to route an interrupt. In the case where we need to route an interrupt, throw away the returned buffer and create a new one containing the interrupt we want. END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-30T09:06:19.000000Z K 7 svn:log V 87 MFC: Add a ``nat proto'' command -- similar to natd(8)'s --redirect_proto switch. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:11:17.000000Z K 7 svn:log V 57 Nuke my e-mail address since it seems out of place here. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:13:21.000000Z K 7 svn:log V 33 Document -X. Submitted by: kris END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:13:56.000000Z K 7 svn:log V 134 Add a manual page for the libmp interface. Some of the descriptions great, but then again neither is the interface it's documenting. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:15:27.000000Z K 7 svn:log V 140 Rename mp.3 to libmp.3 since that's what all the other "library" manual pages (e.g., libstand, libdisk) are called. Submitted by: sheldonh END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-30T09:15:35.000000Z K 7 svn:log V 44 MFC: Actually add the ``nat proto'' command END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-30T09:16:53.000000Z K 7 svn:log V 72 MFC: Handle peer REQ/NAKs of >1500 byte MRUs when we have no preference END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:43:30.000000Z K 7 svn:log V 93 MFC 1.7, 1.8: remove home-grown prototypes for library functions and add necessary includes. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:46:38.000000Z K 7 svn:log V 53 MFC 1.40: the fact that phk wrote this is not a bug. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:51:07.000000Z K 7 svn:log V 55 MFC 1.18: don't choke on two successive "login" marks. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:52:38.000000Z K 7 svn:log V 52 MFC 1.47: call kvm_close() on exit for consistency. END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-30T09:56:38.000000Z K 7 svn:log V 119 Making this major bump was a BAD idea. The API change is internal (to PAM) and it caused problems without solving any. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T09:59:16.000000Z K 7 svn:log V 21 MFC: WARNS cleanups. END K 10 svn:author V 4 ache K 8 svn:date V 27 2001-07-30T10:01:01.000000Z K 7 svn:log V 18 MFC: koi8-u table END K 10 svn:author V 5 markm K 8 svn:date V 27 2001-07-30T10:03:58.000000Z K 7 svn:log V 34 Damn. Missed adding the Makefile. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T10:19:54.000000Z K 7 svn:log V 35 MFC: include missing header files. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T10:23:00.000000Z K 7 svn:log V 21 MFC: WARNS cleanups. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T10:31:29.000000Z K 7 svn:log V 35 MFC: include missing header files. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T10:38:09.000000Z K 7 svn:log V 21 MFC: WARNS cleanups. END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-30T10:53:23.000000Z K 7 svn:log V 39 fix import/merge related code problems END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-30T11:04:03.000000Z K 7 svn:log V 47 pullup: fix import/merge related code problems END K 10 svn:author V 3 bde K 8 svn:date V 27 2001-07-30T11:08:11.000000Z K 7 svn:log V 68 Removed garbage "CFLAGS+= -I.". This finishes backing out rev.1.4. END K 10 svn:author V 3 bde K 8 svn:date V 27 2001-07-30T11:16:39.000000Z K 7 svn:log V 84 Fixed bitrot in DPADD in previous commit. Fixed some style bugs (mainly disorder). END K 10 svn:author V 3 bde K 8 svn:date V 27 2001-07-30T11:18:09.000000Z K 7 svn:log V 42 Fixed bitrot in DPADD in previous commit. END K 10 svn:author V 2 tg K 8 svn:date V 27 2001-07-30T11:38:20.000000Z K 7 svn:log V 117 - Fix file names <:-(, - attempt to find the X includes and libraries better, - sort some things. Submitted by: bde END K 10 svn:author V 3 bde K 8 svn:date V 27 2001-07-30T11:38:35.000000Z K 7 svn:log V 150 Fixed bitrot in DPADD in previous commit. The previous commit changed LDADD to link to a correct copy of libkeycap but didn't change DPADD to match. END K 10 svn:author V 2 tg K 8 svn:date V 27 2001-07-30T12:03:38.000000Z K 7 svn:log V 287 - Add some more x86 instructions to emulate, - emulate VGA read mode 0, - emulate VGA write mode 1, - minor cleanup. Protel's Easytrax, a free PCB layout program, almost runs now; there are still some problems with the keyboard emulation, but the graphics are fine (albeit a bit slow). END K 10 svn:author V 7 ghelmer K 8 svn:date V 27 2001-07-30T14:13:03.000000Z K 7 svn:log V 38 MFC rev 1.17: Fix removal of at jobs. END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-07-30T14:18:14.000000Z K 7 svn:log V 89 Since the ``-w'' sysctl(8) option has been deprecated, don't mention it in the manpages. END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-30T14:31:30.000000Z K 7 svn:log V 32 MFC: rev 1.12. Signal handling. END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-30T14:32:06.000000Z K 7 svn:log V 54 MFC: rev 1.20 and 1.21. Add notes on signal handling. END K 10 svn:author V 3 bde K 8 svn:date V 27 2001-07-30T14:36:19.000000Z K 7 svn:log V 126 Fixed world breakage when NOSHARED=yes. libmp now depends on libcrypto, so it must be linked before libcrypto to work right. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T15:17:17.000000Z K 7 svn:log V 118 Add the ability to Bzip2 your logs. PR: 27901 Submitted by: Anders Nordby (stylistic changes by me) END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T15:18:15.000000Z K 7 svn:log V 105 Document Bzip2's flag. PR: 27901 Submitted by: Anders Nordby (stylistic changes by me) END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T15:41:20.000000Z K 7 svn:log V 77 WARNS-2'ify. (this included removing the funny "if (unsigned_var < 0)" test) END K 10 svn:author V 3 imp K 8 svn:date V 27 2001-07-30T15:46:25.000000Z K 7 svn:log V 48 Align headers with -current as much as possible END K 10 svn:author V 4 ache K 8 svn:date V 27 2001-07-30T16:05:03.000000Z K 7 svn:log V 24 Since we remove skey... END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-07-30T16:10:34.000000Z K 7 svn:log V 56 MFC: Add the manpage on the ``vlan'' network interface. END K 10 svn:author V 6 scottl K 8 svn:date V 27 2001-07-30T16:23:33.000000Z K 7 svn:log V 92 MFC r.1.7 of aac.4 and r.1.304 of MAKEDEV. Create the hpnX control device and document it. END K 10 svn:author V 7 ghelmer K 8 svn:date V 27 2001-07-30T16:23:56.000000Z K 7 svn:log V 234 The variable giving the name of the temporary password file was inconsistently named "ptmp" and "etc_ptmp". This commit changes it to "passwd_tmp" for consistency and to match OpenBSD's name for the variable. Consulted with: jedgar END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T16:27:16.000000Z K 7 svn:log V 9 style(9) END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-30T16:29:05.000000Z K 7 svn:log V 122 MFC: - rev 1.25, workaround for KVM - rev 1.33, rearrange some mouse identification routines - rev 1.34, out-of-sync hack END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-30T16:46:45.000000Z K 7 svn:log V 109 MFC: fix action code. atkbd_isa.c rev 1.10, atkbd.c rev 1.32, kbd.c rev 1.26, kbdreg.h rev 1.14, ukbd.c 1.32 END K 10 svn:author V 3 yar K 8 svn:date V 27 2001-07-30T16:50:47.000000Z K 7 svn:log V 133 Don't use ".nofinger" as a string constant from within the code since there is the ``pathnames.h'' file; use _PATH_NOFINGER instead. END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T16:51:36.000000Z K 7 svn:log V 33 Virgin import of BIND v8.2.4-REL END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T16:51:36.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r80650, 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-07-30T16:51:37.000000Z K 7 svn:log V 75 This commit was manufactured by cvs2svn to create tag 'bind-vendor-v8_2_4'. END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T16:55:52.000000Z K 7 svn:log V 19 Resolve conflicts. END K 10 svn:author V 6 brooks K 8 svn:date V 27 2001-07-30T17:01:44.000000Z K 7 svn:log V 49 Make spacing consistant and set WARNS correctly. END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-30T17:04:39.000000Z K 7 svn:log V 875 If the peer REJects our MRU REQ, stop REQing it -- *EVEN* if we're doing PPPoE and the default MRU is therefore too big. When negotiating with win2k, we ask for MRU 1492 and the win2k box NAKs us saying ``MRU 1492''. This doesn't make sense to me. When we continue to request MRU 1492, the win2k box eventually REJs our MRU. This fix allows negotiations to continue at that point, bringing the link up and potentially allowing the win2k box to send us frames that are too large. AFAICT this is better than failing to bring the link up.... probably ! I have no idea how to do the equivalent of ``route get'' or ``ifconfig -a'' under win2k, so I can't tell what MTU it actually ends up using. I believe the bug is in win2k (it's certainly mis-negotiating). I'll MFC given the release engineers permission as code freeze begins on August 1. PR: 29277 MFC after: 3 days END K 10 svn:author V 5 brian K 8 svn:date V 27 2001-07-30T17:05:28.000000Z K 7 svn:log V 131 MFC: If the peer REJects our MRU REQ, stop REQing it -- *EVEN* if we're doing PPPoE and the default MRU is therefore too big. END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T17:07:12.000000Z K 7 svn:log V 636 Fix build. I am not sure who thought that making FreeBSD depend on ISC's libbsd was a sensible thing to do. Thus I have ripped out the define of gettimeofday() and isc__gettimeofday() out of this file, since we: 1) Don't use nor build libbsd (FreeBSD might give a hint in its name as to why) 2) Our gettimeofday() is the same in semantics as prototyped in ISC's libbsd. This was something which could have been fixed before it was released if we had at least some insight into the development process. But my praying fell on deaf ears it seems. Of course, if I am wrong I welcome the corrections to my thinking, gladly even. END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-30T17:07:48.000000Z K 7 svn:log V 47 MFC: clean up in vt switching code. rev 1.367. END K 10 svn:author V 6 yokota K 8 svn:date V 27 2001-07-30T17:08:51.000000Z K 7 svn:log V 38 MFC: fix off-by-one error. rev 1.368. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 2001-07-30T17:31:42.000000Z K 7 svn:log V 158 MFC: add driver support for 3Com 3cR990 cards. Apologies if this re-bloats the kernel after obrien de-bloated it: the driver has a compiled-in firware image. END K 10 svn:author V 6 brooks K 8 svn:date V 27 2001-07-30T17:44:01.000000Z K 7 svn:log V 51 MFC: Makefile cleanups, typo fixes, WARNS=2 fixes. END K 10 svn:author V 5 dougb K 8 svn:date V 27 2001-07-30T17:53:55.000000Z K 7 svn:log V 158 Add an entry for the commonly used (although unofficial) kpop port. PR: conf/21551 Submitted by: Luis Casillas Reviewed by: rwatson END K 10 svn:author V 6 mjacob K 8 svn:date V 27 2001-07-30T18:05:28.000000Z K 7 svn:log V 62 MFC changes that allow sockstat to work on alpha. PR: 29231 END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T18:26:53.000000Z K 7 svn:log V 52 Note import of BIND 8.2.4-REL and the MFC of txp(4) END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T18:27:05.000000Z K 7 svn:log V 12 MFC: txp(4) END K 10 svn:author V 7 wollman K 8 svn:date V 27 2001-07-30T18:27:21.000000Z K 7 svn:log V 63 Simplify (and hopefully clarify) some date-parsing arithmetic. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T18:28:27.000000Z K 7 svn:log V 24 txp(4) isn't i386-only. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T18:33:51.000000Z K 7 svn:log V 26 MFC 1.23: txp(4) support. END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T19:25:16.000000Z K 7 svn:log V 169 Remove bogus BUGS section. FreeBSD _does_ define ENOMSG as per SVID when IPC_NOWAIT is set. PR: 22470 Submitted by: Bjorn Tornqvist MFC after: 1 week END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T19:28:02.000000Z K 7 svn:log V 190 Fix obsolete code. FreeBSD _does_ define ENOMSG, so no need for checking if we support it. Inspired by PR: 22470 Which was submitted by: Bjorn Tornqvist MFC after: 1 week END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T19:30:26.000000Z K 7 svn:log V 142 FreeBSD now also defines EIDRM and uses it. Inspired by PR: 22470 Which was submitted by: Bjorn Tornqvist MFC after: 1 week END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-07-30T20:01:59.000000Z K 7 svn:log V 105 Check the filehandle size when mounting. Obtained from: Constantine Sapuntzakis END K 10 svn:author V 6 jlemon K 8 svn:date V 27 2001-07-30T20:29:58.000000Z K 7 svn:log V 117 MFC: enable device firmware for specific board revisions. Submitted by: Milon Papezik END K 10 svn:author V 3 jkh K 8 svn:date V 27 2001-07-30T20:45:54.000000Z K 7 svn:log V 122 If we're set to non-interactive, we shouldn't ask the user yes/no questions but simply return the default answer instead. END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2001-07-30T21:15:42.000000Z K 7 svn:log V 157 Add Mac OS X 10.0 and 10.1 as well as Darwin. Partially submitted by the PR, the rest by yours truly, corrections welcomed. PR: 26137 Submitted by: trevor END K 10 svn:author V 3 tmm K 8 svn:date V 27 2001-07-30T21:42:26.000000Z K 7 svn:log V 107 Fix the third argument to sysctlbyname() to be of the type size_t * (instead of int *). MFC after: 2 days END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2001-07-30T22:03:58.000000Z K 7 svn:log V 331 Document the debug.debugger_on_panic tunable, for those poor souls who didn't realize that DDB_UNATTENDED just sets its starting value. This change is over 5 years late, and documents the original semantics of debug.debugger_on_panic, which may have been changed by the (again undocumented) change in rev 1.44 of kern_shutdown.c. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2001-07-30T22:07:31.000000Z K 7 svn:log V 47 MFC rev 1.17: document debug.debugger_on_panic END K 10 svn:author V 6 alfred K 8 svn:date V 27 2001-07-30T22:14:23.000000Z K 7 svn:log V 92 More updates from Chad. Submitted by: Chad David Reviewed by: sheldonh END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-07-30T22:16:11.000000Z K 7 svn:log V 48 MFC: 1.167: Take -Wconversion out of BDECFLAGS. END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-07-30T22:48:41.000000Z K 7 svn:log V 31 MFC: 1.110: s/OpemBSD/OpenBSD/ END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-07-30T22:49:47.000000Z K 7 svn:log V 53 MFC: 1.110-1.112: fix style/warning in tcp_new_isn() END K 10 svn:author V 7 darrenr K 8 svn:date V 27 2001-07-30T23:12:02.000000Z K 7 svn:log V 269 Merge in patch to automagically decide whether or not a kldload of ipfilter is required into rc.network. Person failed to use a real name so both email addresses from PR included (Sent was different to From). PR: 22998 Submitted by: dl@leo.org/spock@empire.trek.org END K 10 svn:author V 6 obrien K 8 svn:date V 27 2001-07-30T23:26:19.000000Z K 7 svn:log V 55 Use the POSIX syntax for chown. Submmited by: garrett END K 10 svn:author V 5 peter K 8 svn:date V 27 2001-07-30T23:28:01.000000Z K 7 svn:log V 141 MFC: tunable update. Do MAXUSERS derived tuning at boot time, with overrides. Allow hz to be tunable. Stop copying param.c to compiledir. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T23:55:28.000000Z K 7 svn:log V 87 MFC 1.16: be consistent about how we quote commands that could be entered by the user. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-30T23:56:48.000000Z K 7 svn:log V 34 MFC 1.47: generate a larger salt. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-31T00:00:13.000000Z K 7 svn:log V 39 MFC 1.8: yp_errno is an `enum ypstat`. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-31T00:03:41.000000Z K 7 svn:log V 51 MFC 1.3: fix underflow resulting in infinite loop. END K 10 svn:author V 2 dd K 8 svn:date V 27 2001-07-31T00:06:24.000000Z K 7 svn:log V 24 MFC 1.26: recognize %s. END