summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove some files we don't want.green2002-03-112-134/+0
|
* s/nilename/filename/green2002-03-111-1/+1
|
* Fix conflicts.green2002-03-1121-57/+65
|
* This commit was generated by cvs2svn to compensate for changes in r92111,green2002-03-119-82/+119
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import zlib 1.1.4 onto the vendor branch.green2002-03-1130-137/+185
| |
* | This commit was generated by cvs2svn to compensate for changes in r92109,green2002-03-112-0/+134
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import zlib 1.1.4 onto the vendor branch.green2002-03-112-0/+134
| |
* | First commit of the GEOM subsystem to make it easier for people tophk2002-03-1113-0/+3690
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test and play with this. This is not yet production quality and should be run only on dedicated test boxes. For people who want to develop transformations for GEOM there exist a set of shims to run geom in userland (ask phk@freebsd.org). Reports of all kinds to: phk@freebsd.org Please include in report: dmesg sysctl debug.geomdot sysctl debug.geomconf Known significant limitations: no kernel dump facility. ioctls severely restricted. Sponsored by: DARPA, NAI Labs
* | Add new support for locking an ATA channel and use that throughoutsos2002-03-118-49/+70
| | | | | | | | | | | | the ATA/ATAPI driver. This solves the concurrency problem with the new GEOM code, and also cuts a good deal of the patch size in the upcoming MFC.
* | Fix a misspelling of mine: s/optomization/optimization/.jhb2002-03-112-2/+2
| | | | | | | | Noticed by: bmilekic
* | Update login failure checking to check auth.log instead of messages,rwatson2002-03-111-3/+3
| | | | | | | | | | | | and teach it to look for more general classes of failures, including SSH login failures. This is similar but not identical to a patch submitted by aeonflux@synapse.subneural.net.
* | Grrr, turn preemption back off on the alpha again. It is still not stable.jhb2002-03-111-1/+1
| | | | | | | | Noticed by: wilko, mjacob, jhb, peter, and others
* | Turns out everyone is a lot lazier than I thought. Spellrwatson2002-03-113-3/+3
| | | | | | | | | | | | | | | | | | | | 'authentication.log' as 'auth.log'. This is also more consistent with syslog facility names. Sigh. :-) Submitted by: asmodai, aeonflux, green, ....
* | Clean up logging of security information a bit:rwatson2002-03-113-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | o Introduce /var/log/authentication.log, which will be the target for auth.info and authpriv.info by default. Rotate on the same schedule as most other logs. Create at installation. o Remove logging of auth.info from /var/log/security.log, which will return to being only for security feature subsystems (such as ipfw, and so on). This creates a special authentication log, which can now be searched by scripts for authentication events.
* | Fix a bug in ufsdirhash_adjfree() that caused it to incorrectlyiedowse2002-03-111-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | update the free-space statistics in some cases. The problem affected directory blocks when the free space dropped below the size of the maximum allowed entry size. When this happened, the free-space summary information could claim that there are no further blocks that can fit a maximum-size entry, even if there are. The effect of this bug is that the directory may be enlarged even though there is space within the directory for the new entry. This wastes disk space and has a negative impact on performance. Fix it by correctly computing the dh_firstfree array index, adding a helper macro for clarity. Put an extra sanity check into ufsdirhash_checkblock() to detect the situation in future. Found by: dwmalone Reviewed by: dwmalone MFC after: 1 week
* | On FreeBSD make usb_proc_t the same as d_thred_t always.imp2002-03-111-2/+2
| |
* | I missed one VOP_CLOSE in the previous commit.phk2002-03-111-0/+5
| | | | | | | | Pointed out by: bde
* | Be more specific about when block major numbers disappeared fromjoe2002-03-119-9/+9
| | | | | | | | the cdev switch.
* | Add security/sudo to the list of packages for disc #1. sudo is smallmurray2002-03-111-0/+1
| | | | | | | | (< 100k), has no dependencies, and is very popular.
* | As a XXX bandaid open the mounted device READ/WRITE even if we only mountphk2002-03-111-0/+14
| | | | | | | | | | | | | | | | | | | | | | read-only. The trouble here is that we don't reopen the device in read/write mode when we remount in read/write mode resulting in a filesystem sending write requests to a device which was only opened read/only. I'm not quite sure how such a reopen would best be done and defer the problem to more agile hackers.
* | Update number of ports available.murray2002-03-111-1/+1
| |
* | Remove duplicated yacc nonterminals declarations, sort includes.maxim2002-03-111-4/+3
| | | | | | | | | | | | | | | | No functional changes from rev. 1.31. Reviewed by: ru Approved by: ru MFC after: 1 week
* | Try harder to lint without nonstandard stuff.markm2002-03-111-0/+1
| |
* | Punt to attic file that moved in latest import.markm2002-03-111-56/+0
| |
* | Fix a prototype to match our headers. I am not convinced that doingmarkm2002-03-111-2/+4
| | | | | | | | | | | | | | | | this in this file is the correct way round. (Maybe our definition of __assert is wrong?) Anyway, perhaps we should revisit this later. For the time being, building lint libraries here does not blow up.
* | Sparc64 support.des2002-03-111-7/+7
| |
* | Fix silly one line error. (Half a .if statement left behind).markm2002-03-111-1/+0
| |
* | Add a bunch of functions.maxim2002-03-111-7/+76
| | | | | | | | | | | | | | PR: docs/32561 Reviewed by: deischen, ru Approved by: ru MFC after: 2 weeks
* | Remove use of the bogus ioctl DIOCGPART.phk2002-03-112-22/+2
| | | | | | | | | | | | | | It was used to initialize an unused variable, because ext2fs was copy&pasted from UFS rather than copy,paste&cleaned from UFS. Suggested by: bde
* | Simplify the interface cloning framework by handling unitmux2002-03-119-252/+95
| | | | | | | | | | | | | | | | | | unit allocation with a bitmap in the generic layer. This allows us to get rid of the duplicated rman code in every clonable interface. Reviewed by: brooks Approved by: phk
* | Don't protect savecore(8) from being run with a bad dumpdircjc2002-03-112-3/+15
| | | | | | | | | | | | | | | | | | | | argument. Don't fail silently, but let savecore(8) make noise. It won't behave badly, it doesn't need protection. At the same time, allow the administrator to have dumpdev enabled while dumpdir (savecore(8)) is disabled and document how to do it. PR: conf/35725
* | Add commented out GEOM line to NOTESphk2002-03-112-0/+6
| |
* | Add GEOM to conf/files.phk2002-03-111-0/+11
| |
* | Augment struct bio for GEOM.phk2002-03-111-4/+14
| |
* | Add a field to struct disk for GEOMphk2002-03-111-0/+1
| |
* | Make the disk_clone() routine more robust for abuse.phk2002-03-111-33/+26
| | | | | | | | Sneak in a trivial bit of the GEOM stuff while we're here anyway.
* | Add the GEOM option.phk2002-03-111-0/+1
| |
* | Mark some arguments __unused.phk2002-03-111-2/+2
| |
* | Make this compile againluigi2002-03-111-1/+1
| | | | | | | | Reported-by: Bruce Montague
* | Make this compile again (increase MFS size, remove invalid option).luigi2002-03-111-5/+5
| | | | | | | | Reported-by: Bruce Montague
* | Stop abusing the pgrpsess_lock.tanimura2002-03-114-12/+8
| |
* | Do not lock the pgrpsess_lock exclusively across ttywait().tanimura2002-03-111-0/+2
| | | | | | | | | | Spotted by: David Wolfskill <david@catwhisker.org> Investigated by: rwatson
* | Correct a typo. (* that should've been &)benno2002-03-113-3/+3
| |
* | Make the handling of machdep.guessed_bootdev compiled on i386 only.luigi2002-03-111-1/+7
| |
* | Due to changes in the handling of the #line directive by GCC(cpp) 3.1,obrien2002-03-111-1/+1
| | | | | | | | we must now explicitly list the source directory with -I.
* | Fix detection of existing ssh host key, generate the new oneluigi2002-03-111-10/+14
| | | | | | | | | | | | | | in floppy.tree instead of mfs_tree. Do not cleanup ${BUILDDIR}/floppy.tree, it might be useful to look at it after an image has been built.
* | Make appropriate changes to use devfs.luigi2002-03-111-4/+6
| | | | | | | | Add a reference to the fd_size variable to set floppy size.
* | Default to ee as EDITOR (some apps such as disklabel default to "vi"luigi2002-03-111-0/+1
| | | | | | | | which is not available).
* | Use machdep.guessed_bootdev to guess the boot device.luigi2002-03-111-2/+2
| |
* | Add complete Sparc64 support.obrien2002-03-112-34/+128
| | | | | | | | | | | | Submitted by: tmm Dike out vax support.
OpenPOWER on IntegriCloud