summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert vnode_pager_freepage() to vm_free_page().bp2001-05-031-2/+2
| | | | Forgotten by: alfred
* Wrap around MALLOC_DECLARE() invocation with #ifdef.bp2001-05-031-0/+2
|
* like i386, add inclusion of lock.hmjacob2001-05-032-1/+4
|
* Correct assignment of the resulting ACL allowing the mask entry tojedgar2001-05-031-1/+1
| | | | | | be properly set. Obtained from: TrustedBSD Project
* * include/elf.h has been repo copied to include/elf-hints.h, and it noobrien2001-05-031-1/+1
| | | | | | | | longer includes machine/elf.h. * consumers of elf.h now use the minimalist elf header possible. This change is motivated by Binutils 2.11.0 and too much clashing over our base elf headers and the Binutils elf headers.
* Add the new version.c to libssh.green2001-05-031-1/+1
|
* Fix minor style issue from previous commit.obrien2001-05-032-2/+2
|
* Add a "VersionAddendum" configuration setting for sshd which allowsgreen2001-05-033-2/+77
| | | | | | | | | anyone to easily change the part of the OpenSSH version after the main version number. The FreeBSD-specific version banner could be disabled that way, for example: # Call ourselves plain OpenSSH VersionAddendum
* Backout completely canonical lookup modifications.green2001-05-033-15/+24
|
* Fix $FreeBSD$ style.obrien2001-05-021-2/+5
|
* * include/elf.h has been repo copied to include/elf-hints.h, and it noobrien2001-05-0219-78/+33
| | | | | | | | longer includes machine/elf.h. * consumers of elf.h now use the minimalist elf header possible. This change is motivated by Binutils 2.11.0 and too much clashing over our base elf headers and the Binutils elf headers.
* RELNOTESng infrastructure fixes:bmah2001-05-0220-105/+23
| | | | | | | | | | 1. There is now only one RELNOTESng stylesheet; the architecture-specific stylesheets (to handle different values of the arch= attribute) are gone. 2. Several Makefile variable definitions were factored into doc.relnotes.mk. Submitted by: dd
* Cross reference recent TCP ISN fix to security advisory SA-01:39.bmah2001-05-025-5/+7
|
* - Avoid circular `use Config', which may lead to random synax errorsmarkm2001-05-022-9/+13
| | | | | | | | | | produced by miniperl during buildworld phase. - While at it, do loading of SelfLoader only when it is needed, and in place where it is needed. Submitted by: tobez@tobez.org (who is doing way too much good work and is in need of the Commit Bit punishment)
* Second stage SGMLifying. More to follow.wilko2001-05-022-668/+704
|
* Add a missing free(3).yar2001-05-021-0/+1
| | | | | | PR: bin/27001 Submitted by: alex <ml-freebsd-net@phobgate.de>, Matthew Emmerton <matt@gsicomp.on.ca>
* Handle situations where we've already got a P2P interface addressbrian2001-05-021-1/+6
| | | | | | | | | | | | | | | of a/x -> b and then negotiate a/x -> c by simply expecting SIOCAIFADDR to do the change. This was broken by the last commit that optimised out the deletion and re-addition of the same a/x -> b combination, and forgot to compare the old/new destination addresses. Conveniently enough, this problem didn't effect setups where the default route goes via the ppp link, and most other setups don't care what the the destination address is actually set to. It broke test environments where ppp connects to the local machine rather badly though....
* Get IP multicast working on VLAN devices:fenner2001-05-022-7/+6
| | | | | | | | | | | - Allocate zeroed memory in ether_resolvemulti() to prevent equal() from comparing garbage and determining that two otherwise-equal sockaddr_dls are different. - Fill in all required fields of the sockaddr_dl - Actually copy the multicast address into the sockaddr_dl when calling if_addmulti() - Don't claim that we don't have a way to resolve layer 3 addresses into layer 2 addresses; use the ethernet way.
* Merged from sys/isa/sio.c revision 1.330.kato2001-05-022-16/+18
|
* Merged from sys/isa/fd.c revision 1.195.kato2001-05-022-4/+8
|
* Merged from sys/i386/isa/npx.c revisions 1.96 and 1.97.kato2001-05-021-12/+25
|
* Merged from sys/i386/isa/clock.c revisions 1.172 and 1.173.kato2001-05-023-3/+45
|
* Merged the rest of changes in sys/i386/i386/machdep.c revision 1.447.kato2001-05-022-12/+10
|
* Fix the rmuser script to correctly determine if a user does not exist.adrian2001-05-021-1/+1
| | | | PR: 26674
* Extend adduser to create "locked" accounts. Adduser can now lock anadrian2001-05-021-15/+137
| | | | | | | | | | | | | | | | | | | | | | | | | | | account at creation, create accounts with a "*" password (so you can use alternate authentication schemes without fearing a "default" password biting you later), and blank passwords. Yes, adduser could create a blank password account, but this makes it slightly more difficult to shoot yourself in the foot. The /etc/adduser.conf entries are: # use password-based authentication for new users # defaultusepassword = "yes" | "no" defaultusepassword = "yes" # enable account password at creation # (the password will be prepended with a star if the account isn't enabled) # defaultenableaccount = "yes" | "no" defaultenableaccount = "yes" # allow blank passwords # defaultemptypassword = "yes" | "no" defaultemptypassword = "no" Requested by: alfred Reviewed by: alfred
* Fixed panics in npx exception handling. When using IRQ13 exceptionbde2001-05-023-21/+54
| | | | | | | | | | | | | | | | | | handling, SMPng always switches the npx context away from curproc before calling the handler, so the handler always paniced. When using exception 16 exception handling, SMPng sometimes switches the npx context away from curproc before calling the handler, so the handler sometimes paniced. Also, we didn't lock the context while using it, so we sometimes didn't detect the switch and then paniced in a less controlled way. Just lock the context while using it, and return without doing anything except clearing the busy latch if the context is not for curproc. This fixes the exception 16 case and makes the IRQ13 case harmless. In both cases, the instruction that caused the exception is restarted and the exception repeats. In the exception 16 case, we soon get an exception that can be handled without doing anything special. In the IRQ13 case, we get an easy to kill hung process.
* Fix a misleading commentbrian2001-05-021-1/+1
| | | | Submitted by: Mark Knight <markk@knigma.org>
* - assign a separate debugging flag for debugging messages regarding thehm2001-05-026-38/+33
| | | | | | | | valid keyword handling and the holiday file processing - don't issue a warning in case the holiday file is not found - enable inclusion of ../Makefile.inc to reenable compiling-in monitor support into isdnd - update manual page, add a comma and correct authors mail address
* Do the alpha dance for the change MarkM hath made on the i386 side.mjacob2001-05-021-0/+2
|
* Alphabetize command-line options in the synopsis.dd2001-05-021-1/+1
|
* Add hint about how to build an ISA NMI card and why you'd want to do so.imp2001-05-021-0/+12
| | | | Reviewed by: bde, dima dorfman
* Implement the -r and -w options as `-o ro' and `-o noro', respectively. Atdd2001-05-021-2/+2
| | | | | | | | | | least in -w's case, simply unsetting the correct bit in init_flags was not enough. The bit may be reset later if, say, the filesystem is marked `ro' in fstab. The command line option should override the fstab setting, but did not. The implementation of -r was changed for consistency. PR: 26886 Reviewed by: archie
* Only define DEBUG if it's undefined. This should eventually go, butbrian2001-05-021-0/+2
| | | | can stay for now in case of problems.
* Add a ``digi'' driver.brian2001-05-0254-9/+44599
| | | | | | | | | | | | | | | | | | This driver supports PCI Xr-based and ISA Xem Digiboard cards. dgm will go away soon if there are no problems reported. For now, configuring dgm into your kernel warns that you should be using digi. This driver is probably close to supporting Xi, Xe and Xeve cards, but I wouldn't expect them to work properly (hardware donations welcome). The digi_* pseudo-drivers are not drivers themselves but contain the BIOS and FEP/OS binaries for various digiboard cards and are auto-loaded and auto-unloaded by the digi driver at initialisation time. They *may* be configured into the kernel, but waste a lot of space if they are. They're intended to be left as modules. The digictl program is (mainly) used to re-initialise cards that have external port modules attached such as the PC/Xem.
* ulpt(4) doesn't exist, so don't cross ref to it.imp2001-05-011-1/+0
| | | | Reviewed by: n_hibma
* Don't mount a md(4) over /dev on DEVFS enabled diskless systems.phk2001-05-015-25/+45
|
* Fix up unit attention and selection timeout handling in various peripheralken2001-05-013-14/+8
| | | | | | | | | | | | drivers. - change daprevent() to set CAM_RETRY_SELTO and SF_RETRY_UA when it calls cam_periph_runccb(). - change the pt(4) driver to ignore unit attentions - change the targ(4) driver to retry selection timeouts - clean up a few formatting glitches in the targ(4) driver Reviewed by: gibbs
* First half of SGMLifying. More to follow.wilko2001-05-012-784/+1342
|
* Fixed typos: dependant -> dependentschweikh2001-05-015-5/+5
|
* Fixed typos: decendant -> descendantschweikh2001-05-012-2/+2
|
* pseudo-device -> device in kernel config.schweikh2001-05-012-2/+2
| | | | Reviewed by: joerg, dd
* pseudo-device -> device in kernel config.schweikh2001-05-011-1/+1
| | | | Approved by: joerg, dd
* Avoid a warning by making a variable a const char *.dwmalone2001-05-011-1/+2
|
* Don't give a warning about "proc size mismatch" if no struct weredwmalone2001-05-011-1/+2
| | | | | | | returned. (This arose on a list about a month ago when someone found bogus warnings if they used "ps -Uuser_with_no_processes".) Approved by: mckusick
* Clean out some cruft that has been put in a better (central) place.markm2001-05-011-5/+0
|
* Compensate for header dethreading.markm2001-05-011-0/+4
|
* Compenate for header dethreading.markm2001-05-016-0/+12
|
* Compensate for header dethreading.markm2001-05-015-0/+12
|
* * Add Config.pm to fight situations when perldoc(1) showed a manual pagejoe2001-05-016-10/+94
| | | | | | | | | | | | for a module overridden by BSDPAN instead of the original module. * Fix wrong manual section numbers in SEE ALSO. * Add `Revision 42' to the beer-ware license. The BSDPAN author did not originally get the reference and removed the revision from original phk's version. Submitted by: Anton Berezin <tobez@tobez.org>
* Compensate for header dethreading.markm2001-05-019-0/+18
|
OpenPOWER on IntegriCloud