summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* *blush*mtm2003-01-231-8/+8
| | | | | | | While I'm here properly quote all the other input I neglected to quote. Approved by: markm (mentor)(implicit)
* In the absence of consensus as to implement stubs for these TSH-shadedwollman2003-01-231-12/+0
| | | | | | routines, remove their declarations. Even though rwlocks have the same functions, XBDft does not shade those declarations so I am leaving them in. (This is probably a bug in the Standard.)
* Clean up some junk defines, and GC the TPR options.peter2003-01-231-23/+0
|
* Nuke CHEAP_TPR stuff, including LOPRIO_LEVEL (bogus) and ALLHWI_LEVELpeter2003-01-233-51/+0
| | | | | (which we never used). There is no need to tweak the TPR anymore and only causes problems.
* Hack around a bug in the 2200 and 2120 controllers that connot DMAscottl2003-01-232-4/+18
| | | | | | | | commands from below the first 8K of physical memory. A better fix is to modify the busdma api to allow either inclusion ranges or multiple exclusion ranges, but that debate is for another day. MFC After: 2 days
* Now that TPR isn't bogusly raised at boot, there is no need to clearpeter2003-01-233-24/+0
| | | | it at context switch.
* Dont raise the TPR register at initialization time. It only causespeter2003-01-231-2/+0
| | | | problems and we only ever clear it.
* Implement SIOCGIFMEDIA for vlan devices by passing the request to thefenner2003-01-221-0/+23
| | | | | | | | parent device, if there is a parent configured. Modify the result returned by the parent to indicate that the only supported media is the currently configured one. Reviewed by: brooks
* YAM: This id is found in a Sony Vaio GRX-670. When will this end?marcel2003-01-222-0/+2
| | | | Submitted by: Chuck McCrobie <mccrobie2000@yahoo.com>
* Revert AHD_TIMER_MAX_US to its original definition now that thegibbs2003-01-221-2/+1
| | | | ahc and ahd modules have correct dependencies on the assembler.
* Update GENSRCS and aicasm options correctly depending on whether registergibbs2003-01-222-26/+28
| | | | | | | | | pretty printing is enabled Add a dependency on the source files for aicasm so that it will be rebuilt if out of date. Simplify.
* - Remove NO_TIDY.hrs2003-01-222-3/+23
| | | | | | - Merge the following from the English version: 1.20 -> 1.23 errata/article.sgml
* Provide a sysctl to allow defaulting of the connectionless (-c) featuredillon2003-01-221-0/+15
| | | | | | | | to mount_nfs. The sysctl defaults to 1 (paranoid mode). Setting it to 0 will allow an NFS client to receive replies on a different IP then they were sent to by default. Submitted by: Sean Eric Fagan <sef@kithrup.com>
* Document netrc support.des2003-01-221-0/+11
|
* Add -N option to specify a netrc file.des2003-01-221-29/+66
| | | | | | | Fix handling of -v option. Don't treat negative offsets as valid positive ones. Clean up the ETA and transfer rate code. Show transfer rate along with ETA if the verbose level is higher than 1.
* Document .netrc support.des2003-01-221-0/+8
|
* - Move enable_sse()'s prototype to machine/md_var.h.jhb2003-01-2210-30/+18
| | | | | | | | - Sort definition of cpu_* variables appropriately. - Move cpu_fxsr out of the magic non-BSS set of variables and stick it in the BSS along with hw_instruction_sse (make the latter static as well). Submitted by: bde (partially)
* Added comment why this workaround is required.ume2003-01-221-1/+7
| | | | | Suggested by: sam MFC after: 1 week
* Hook in the .netrc code + don't use pointers as if they were booleans.des2003-01-221-4/+6
|
* Rename cpuid_cpuinfo to cpu_procinfo. bde requested that I rename thisjhb2003-01-2215-19/+19
| | | | | | | variable to something in the cpu_* namespace since that's what all the other cpuid variables were named and cpu_procinfo is what I came up with. Requested by: bde
* Experimental support for .netrc.des2003-01-222-0/+92
|
* Initialization paranoia.des2003-01-221-0/+8
|
* A negative offset means "get it all".des2003-01-221-2/+2
|
* New errata note: xl(4) timing problems.bmah2003-01-221-0/+6
| | | | Submitted by: silby
* Bah, add in a missing space char I noticed when MFC'ing this.jhb2003-01-222-2/+2
|
* New errata item: adduser(8) passwds can't have special shell characters.bmah2003-01-221-0/+7
| | | | Submitted by: <robin@isometry.net>, mtm
* Correctly identify the 3C920B chipset; although it may ship with some Nforce2silby2003-01-222-5/+5
| | | | | | boards, it's definitely not an Nvidia chip. Info from: Nvidia's Linux Network driver & pciids.sourceforge.net
* This commit was generated by cvs2svn to compensate for changes in r109686,des2003-01-221-1/+3
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * #include <sys/types.h> (perforce change 24073)des2003-01-221-1/+3
| |
* | Prevent server-side glob(3) patterns from expandingyar2003-01-221-4/+17
| | | | | | | | | | | | | | | | to a pathname that contains '\r' or '\n'. Together with the earlier STAT bugfix, this must solve the problem of such pathnames appearing in the FTP control stream.
* | List all of the assignment operators explicitly, for those who have beenfanf2003-01-222-19/+21
| | | | | | | | traumatized by perl.
* | Force early initialization of the resolver library, since the resolverdes2003-01-221-0/+15
| | | | | | | | | | | | | | | | configuration files will no longer be available once sshd is chrooted. PR: 39953, 40894 Submitted by: dinoex MFC after: 3 days
* | Make the arguments to d_close() match the arguments to d_open(), sincejoerg2003-01-221-1/+1
| | | | | | | | | | | | | | | | | | otherwise the close operation is void, and the underlying device remains marked as being busy. Thanks to phk for finding this. MFC after: 3 days
* | getpeername() returns with no error but didn't fill struct sockaddrume2003-01-221-0/+2
| | | | | | | | | | | | | | | | | | | | correctly against PF_LOCAL. It seems that the test always fails then sockaddr was not filled. So, I added else clause for workaround. I doubt if it is right fix. However, it is better than nothing. I found that NetBSD has same potential problem. But, fortunately, NetBSD has equivalent else clause. MFC after: 1 week
* | When computing a new seed for an existing user, opienewseed() woulddes2003-01-221-5/+4
| | | | | | | | | | | | | | | | | | | | | | incorrectly compute the length of the numeric portion of the previous seed, causing the new seed to be one character shorter than the old one. This patch has been submitted to the vendor; I'm committing it right away since the file is already off the vendor branch. MFC after: 3 days
* | Add yet another Sony Vaio PS/2 mouse ID. This one is found on a VX88.hsu2003-01-222-4/+6
| | | | | | | | Submitted by: marcel
* | Remove BAT invalidation. This is done later in the boot sequence,grehan2003-01-222-34/+0
| | | | | | | | | | | | | | so isn't required here, and seems to cause problems when booting from disk. Approved by: benno
* | Catch up with the English version (w/ some translation fixes):hrs2003-01-223-79/+255
| | | | | | | | | | | | | | | | | | 1.12 -> 1.20 errata/article.sgml 1.126 -> 1.129 hardware/common/dev.sgml 1.475 -> 1.480 relnotes/common/new.sgml Submitted by: Hideyuki KURASHINA <rushani@jp.FreBSD.org> References: [doc-jp-work 585]
* | Convert remaining .s files to .Sgrehan2003-01-221-3/+3
| | | | | | | | Approved by: benno
* | - remove dead conditional CFLAG settinggrehan2003-01-221-8/+3
| | | | | | | | | | | | - switch locore .s -> .S Approved by: benno
* | Fix what I think is an off-by-one in certain worst-case scenariospeter2003-01-221-1/+1
| | | | | | | | caused by rev 1.45. (eg: the estimate being exactly half of the result.)
* | fix link_status() in non-Ethernet casefjoe2003-01-221-4/+6
| | | | | | | | MFC after: 1 week
* | Finish update for cvs-1.11.5. Some build-time tunables were moved frompeter2003-01-216-485/+39
| | | | | | | | | | | | | | | | options.h to config.h.in and set via ./configure when built normally. Export some of the build knobs to the Makefile here, overridable from /etc/make.conf. Also get the version strings right. config.h was repocopied to config.h.proto, and we do a limited sed on it at build time now.
* | Dont bother with unused rules for version.cpeter2003-01-211-4/+1
| |
* | Turn off Checkin-prog and Update-prog.peter2003-01-211-2/+2
| |
* | Update for cvs-1.11.5 import (note to self: gotta fix the version tags)peter2003-01-212-4/+4
| |
* | This commit was generated by cvs2svn to compensate for changes in r109661,peter2003-01-211-79/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | Merge cvs-1.11.2.1-20021201 -> 1.11.5 changes onto mainlinepeter2003-01-2110-102/+91
| |
* | This commit was generated by cvs2svn to compensate for changes in r109658,peter2003-01-211-37/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | This commit was generated by cvs2svn to compensate for changes in r109655,peter2003-01-2135-87/+435
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
OpenPOWER on IntegriCloud