summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* MFi386: revision 1.76.nyan2004-03-141-2/+5
|
* New release note:hrs2004-03-142-6/+34
| | | | | | | | | | old ISA drivers (asc, ctx, gp, stl, stli, wt) removed. nologin(8) moved to /usr/sbin/nologin. Update release note: nologin(8) always reports login attempts[1]. Suggested by: cperciva[1]
* Removed duplicate __FBSDID(). Keep the one that style(9) likes.ru2004-03-141-3/+0
|
* Announce ethernet MAC addresss in ether_ifattach().mdodd2004-03-1454-201/+12
|
* These go along with the stl and stli drivers, recently removed.imp2004-03-1413-3159/+0
|
* stl and stli use the old COMPAT_ISA api. slt also uses the really oldimp2004-03-147-7984/+0
| | | | | | | | COMPAT_PCI api. This API is going away, so this driver is going away also. If users are interested in updating this, please contact the author since he has some preliminary work to move this to newer APIs.
* Add multiple inclusion guards. Mostly this is for extern.h, which wasjmallett2004-03-143-1/+10
| | | | | | | included twice by lprint.c, which included both finger.h and extern.h. finger.h, in turn, includes extern.h. The redundant include of extern.h was removed from lprint.c, as part of this change, but the include guards were added anyway out of spite.
* Calculate NFS timeouts in units of 10ms, not 5ms. This matches the defaultpeter2004-03-143-3/+3
| | | | | | clock precision on i386. This is a NOP change on i386. But this stops the mount_nfs units from suddenly changing to units of 1/20 of a second (vs the normal 1/10 of a second) if HZ is increased.
* Fixed misspellings of 0 as NULL. Fixed some nearby style bugs.bde2004-03-141-1/+2
|
* Fixed a misspelling of 0 as NULL.bde2004-03-142-2/+2
|
* Set default HZ to 1024 for amd64. The comment in kern/tty.c doesn'tpeter2004-03-141-0/+4
| | | | | apply here because we have 64 bit longs and don't suffer the hz > 169 overflows.
* Fixed misspellings of 0 as NULL.bde2004-03-141-2/+2
|
* remove the ioctl files from the asc, ctx and wt drivers just removedimp2004-03-143-114/+0
|
* Remove straggler from gp driver removalimp2004-03-141-27/+0
|
* Remove gp driver. It uses the old COMPAT_ISA shims.imp2004-03-144-1214/+0
| | | | If this driver is rewritten using newer APIs it can return.
* Fixed a mispelling of 0 as NULL.bde2004-03-141-1/+1
|
* Remove ctx driver. another scanner. This one uses COMPAT_ISA shimsimp2004-03-144-502/+0
| | | | | | which is going away soon. If someone updates this to the latest APIs and tests it, it can return.
* Fixed a misspelling of 0 as NULL.bde2004-03-143-3/+3
|
* Handle AF_ARP in *_output()mdodd2004-03-143-0/+81
| | | | Obtained from: NetBSD
* Fixed a misspelling of 0 as NULL. Removed a spelling of NULL as 0.bde2004-03-141-1/+1
|
* Fixed misspellings of '\0' as NULL.bde2004-03-141-2/+2
|
* Now that the asc driver is no longer in the tree, the man page is surplus.imp2004-03-141-1/+0
|
* With the passing of the asc driver, the sasc prograqm is no longerimp2004-03-146-374/+0
| | | | necessary.
* Remove asc driver, support for GI1904 based hand scanners. Thisimp2004-03-144-973/+0
| | | | | | | driver uses COMPAT_ISA shims, and those shims are going away. It can be brought back if someone updates it to the latest APIs, and moves it to the appropriate place in the tree.
* Should have committed this with other wt driver removal commit.imp2004-03-141-6/+0
| | | | | | Remove the wt driver from LINT. If the wt driver is updated to the new apis, it can return.
* Now that the wt driver is gone, go ahead and remove its userland support.imp2004-03-142-55/+1
| | | | If the wt driver is rewritten using newer APIs, then these can return with it.
* Remove wt driver. It still uses COMPAT_ISA_DRIVER which is going awayimp2004-03-143-1110/+0
| | | | | | very soon. Users needing this driver should update it to a newer API.
* Simplify sf_buf_alloc().alc2004-03-141-2/+1
|
* Make the process_exit eventhandler run without Giant. Add Giant hookspeter2004-03-146-6/+7
| | | | | | in the two consumers that need it.. processes using AIO and netncp. Update docs. Say that process_exec is called with Giant, but not to depend on it. All our consumers can handle it without Giant.
* Move the process_fork event out from under Giant. This one is easy,peter2004-03-142-2/+8
| | | | since there are no consumers in the tree. Document this.
* Compare spppq to NULL instead of using spppq as a boolean.rwatson2004-03-141-2/+2
|
* Fix some style bugs in previous commit.trhodes2004-03-144-12/+8
| | | | | | | | | Fix 'broken' ifdefs. icc does not support profiling yet so remove unfinished code which was supposed to help. Submitted by: netchild (original version) Reviewed by: ru
* Define AF_ARP/PF_ARP.mdodd2004-03-141-1/+3
|
* De-register.mdodd2004-03-141-22/+22
|
* Allow swap-backed devices to run without Giant.alc2004-03-141-3/+1
|
* TMPDIR is magic, use TMPMNTphk2004-03-131-5/+5
| | | | Spotted by: harold barker <hvb@fs0.sm.dsms.com>
* Regen for mpsafe kse_create()peter2004-03-135-6/+6
|
* Push Giant down a little further:peter2004-03-137-29/+14
| | | | | | | | | | | | | | | - no longer serialize on Giant for thread_single*() and family in fork, exit and exec - thread_wait() is mpsafe, assert no Giant - reduce scope of Giant in exit to not cover thread_wait and just do vm_waitproc(). - assert that thread_single() family are not called with Giant - remove the DROP/PICKUP_GIANT macros from thread_single() family - assert that thread_suspend_check() s not called with Giant - remove manual drop_giant hack in thread_suspend_check since we know it isn't held. - remove the DROP/PICKUP_GIANT macros from thread_suspend_check() family - mark kse_create() mpsafe
* Re-kill ispcvt on amd64 - rc.d/syscons was fixed ages ago.peter2004-03-132-111/+0
|
* MFp4: comment out options that don't exist so that they cannot bepeter2004-03-132-9/+6
| | | | | accidently added to config files and be silently accepted. Comment out one bogo-option that crept into NOTES.
* Diff reduction with current. Correct comment about ed etc.peter2004-03-131-4/+4
|
* Move the non-MD machine/dvcfg.h and machine/physio_proc.h to a commonpeter2004-03-1316-266/+22
| | | | MI area before they proliferate more.
* Drastically clean up the legacy host-pci bridge table. We don't needpeter2004-03-131-208/+5
| | | | | | | all the ancient Intel/VIA/SIS/etc chipsets on amd64 systems. Even the newer intel stuff won't need this since we use acpi by default and we don't have all their magic programming information. Just use a generic "Host to PCI bridge" name if we ever hit this code.
* MFi386: nuke pci_cfgintrpeter2004-03-132-23/+1
|
* Reduce the scope of the Giant lock being held for non-mpsafe syscalls.peter2004-03-131-14/+6
| | | | There was way too much code being covered.
* New release note:hrs2004-03-132-6/+146
| | | | | | | | | | | | | | 64-bit time_t on FreeBSD/sparc64, em(4) hiccup during ifconfig em0 alias fixed, ng_vlan(4) netgraph node type, umass(4) ATAPI MMC commands support, rc.d/gbde_swap and gbde_swap_enable in rc.conf, mountd(8) -p <port> option, nologin(8) syslog support, OpenBSD's pf and the related userland utils imported, SIZE attribute in distinfo enabled by default. (when you find errors or inappropriate descriptions, please let me know.)
* Fix a typo (s/acecss/access/).hrs2004-03-132-2/+2
|
* Recognise the 82845G AGP bridge, and poke it appropriately atpeadar2004-03-132-0/+10
| | | | | | | | | | | | attach/detach time. Assigning the default behaviour to this particular device is incorrect, corrupting the video BIOS aperture, and breaking VESA support in the kernel and XFree86. Reviewed By: dfr MFC after: 1 week PR: kern/62906
* Create hierarchy before installing a new kernel. This is neededru2004-03-131-0/+9
| | | | | | | | | | | because we require that a new kernel be installed prior to a new world, and we may need some new directories to succeed. Once MFCed, this will also help those poor souls who redundantly ``mv /modules /modules.old'' in RELENG_4 before an installkernel. Requested by: many MFC after: 3 days
* Now that contigfree() does not require Giant, don't grab it in busdma.scottl2004-03-136-12/+0
|
OpenPOWER on IntegriCloud