summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix tpyo in last commit.imp2003-04-301-1/+1
| | | | Noticed by: kuriyama-san
* Set include path.simokawa2003-04-301-0/+3
|
* Free asyreq.simokawa2003-04-301-6/+6
| | | | Submitted by: ryuchi@ryuchi.org
* Eliminate an unused parameter from vm_pageout_object_deactivate_pages().alc2003-04-301-6/+5
|
* This particular debugging statement is very verbose, making the restmtm2003-04-301-1/+1
| | | | | | | of the debug output hard to follow. Comment it out. It's commented out in NetBSD's version as well. Approved by: markm (mentor)(implicit)
* o Make the 'Ip-filter module loaded' messages informationalmtm2003-04-302-4/+4
| | | | | | | o Make 'No ipnat rules' a warning o Remove unecessary ' ..' Approved by: markm (implicit)
* Running the script with restart or manually stopping and startingmtm2003-04-301-2/+2
| | | | | | | | | it doesn't work because the start_cmd doesn't enable ipfilter if it is currently disabled. Approved by: markm (mentor) (implicit) Submitted by: Michael Lyngbøl <lyngbol@bifrost.lyngbol.dk> PR: conf/46103
* Get rid of the redundant 'gone' field, and overload suspend instead.imp2003-04-302-13/+12
| | | | | | | | | | | | | | Check for suspend before the device polling, rather than after it. Check to see if the current thread owns the lock in ioctl and return EBUSY if it does. This advances the locking to the point that I can eject my fxp card 10 times in a row, but I agree with Jeff Hsu that we need to get the network layer locking finished before chasing more of the races here (actually, he doesn't think this set is worth it even). There's a number of races between FXP_LOCK in detach and all other users of FXP_LOCK, and this gets back to the 'device with sleepers being forcibly detached' problem as well...
* Increase some default values.davidxu2003-04-302-4/+4
|
* Call kse_wakeup_mutli() after remove current thread from RUNQ to avoiddavidxu2003-04-302-2/+2
| | | | doing unnecessary idle kse wakeup.
* Call kse_wakeup_multi() to wakeup idle KSEs when there are threads readydavidxu2003-04-302-0/+2
| | | | to run.
* Make sure rhostip is always initialized.des2003-04-301-1/+1
| | | | | PR: bin/51508 Submitted by: Peter Grimshaw <peter@tesseract.demon.co.uk>
* Treat an empty PAM_RHOST the same as a NULL one.des2003-04-304-5/+5
| | | | PR: bin/51508
* Add vm_object locking to vmspace_swap_count().alc2003-04-301-5/+6
|
* Set $HOME to the correct directory (within the chroot tree).des2003-04-301-0/+1
|
* Add support to CAM for devices with more than 2^32 blocks. (2TB if you'reken2003-04-304-88/+347
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | using 512 byte blocks). cam_ccb.h: Bump up volume_size and cylinders in ccb_calc_geometry to 64 bits and 32 bits respectively, so we can hold larger device sizes. cylinders would overflow at about 500GB. Bump CAM_VERSION for this change. Note that this will require a recompile of all applications that talk to the pass(4) driver. scsi_all.c: Add descriptions for READ/WRITE(16), update READ/WRITE(12) descriptions, add descriptions for SERVICE ACTION IN/OUT. Add a new function, scsi_read_capacity_16(), that issues the read capacity service action. (Necessary for arrays larger than 2^32 sectors.) Update scsi_read_write() to use a 64 bit LBA and issue READ(16) or WRITE(16) if necessary. NOTE the API change. This should be largely transparnet to most userland applications at compile time, but will break binary compatibility. The CAM_VERSION bump, above, also serves the purpose of forcing a recompile for any applications that talk to CAM. scsi_all.h: Add 16 byte READ/WRITE structures, structures for 16 byte READ CAPACITY/SERVICE ACTION IN. Add scsi_u64to8b() and scsi_8btou64. scsi_da.c: The da(4) driver probe now has two stages for devices larger than 2TB. If a standard READ CAPACITY(10) returns 0xffffffff, we issue the 16 byte version of read capacity to determine the true array capacity. We also do the same thing in daopen() -- use the 16 byte read capacity if the device is large enough. The sysctl/loader code has also been updated to accept 16 bytes as a minimum command size.
* Add missing crom_next() in the previous revision.simokawa2003-04-291-1/+3
|
* Add definitions for IN6ADDR_LINKLOCAL_ALLMDNS_INIT and INADDR_ALLMDNS_GROUP.mdodd2003-04-292-0/+4
|
* IP_RECVTTL socket option.mdodd2003-04-295-1/+42
| | | | Reviewed by: Stuart Cheshire <cheshire@apple.com>
* Allow fast instruction and data access mmu miss traps to be handled byjake2003-04-293-9/+11
| | | | user trap handlers.
* `Hide' strlcpy and strlcat (using the namespace.h / __weak_referencenectar2003-04-2920-51/+71
| | | | | | | technique) so that we don't wind up calling into an application's version if the application defines them. Inspired by: qpopper's interfering and buggy version of strlcpy
* Jump to the correct label upon detecting an error.deischen2003-04-291-2/+2
|
* Create the thread signal lock as a KSE lock (as opposed todeischen2003-04-296-44/+46
| | | | | | | | | | | | a thread lock). Better protect access to thread state while searching for threads to handle a signal. Better protect access to process pending signals while processing a thread in sigwait(). Submitted by: davidxu
* Unbreak the build.hrs2003-04-291-3/+3
|
* Call exit(0), not exit.kan2003-04-291-1/+1
|
* Fix an obscure fencepost error in GBDE's sector mapping code:phk2003-04-291-0/+26
| | | | | | | | | | | | | | | For certain combinations of sectorsize, mediasize and random numbers (used to define the mapping), a multisector read or write would ignore some subset of the sectors past the first sector in the request because those sectors would be mapped past the end of the parent device, and normal "end of media" truncation would zap that part of the request. Rev 1.19+1.20 of g_bde_work.c added the check which should have alerted me to this happening. This commit maps the request correctly and adds KASSERTS to make sure things stay inside the parent device. This does not change the on-disk layout of GBDE, there is no need to backup/restore.
* Typo in last commit: Do not press xZZ to leave vi(1).phk2003-04-291-1/+1
|
* When a bio comes back from below with a zero error code, check thatphk2003-04-291-0/+4
| | | | | | | it wrote the full length. The only case where this should be able to happen is if we try to read/write past the end and the request is truncated. We obviously should never try to do that, so this code should never activate.
* Catch up with the new acpi files.njl2003-04-291-21/+24
|
* Resolve conflicts.njl2003-04-2917-330/+515
|
* Support functions for the new ACPI import.njl2003-04-298-26/+144
| | | | | | | | | | | * AcpiOsDerivePciId(): finds a bus number, given the slot/func and the acpi parse tree. * AcpiOsPredefinedOverride(): use the sysctl hw.acpi.os_name to override the value for _OS. Ideas from: takawata, jhb Reviewed by: takawata, marcel Tested on: i386, ia64
* Remove unused declarations and definitions.alc2003-04-291-6/+0
|
* Updated import-preparation script. It now removes vendor paths from headernjl2003-04-291-2/+17
| | | | info. With these changes, no manual prep of the dist was necessary.
* Resolve conflictsnjl2003-04-291-85/+46
|
* This commit was generated by cvs2svn to compensate for changes in r114239,njl2003-04-294-0/+1690
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Intel ACPI 20030228 vendor distributionnjl2003-04-294-0/+1690
| |
* | This commit was generated by cvs2svn to compensate for changes in r114237,njl2003-04-29133-4526/+4359
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Intel ACPI 20030228 vendor distributionnjl2003-04-29151-4901/+4925
| |
* | Unbreak the build.hrs2003-04-291-2/+2
| |
* | Enable wchar_t support in libstdc++.kan2003-04-292-2/+2
| |
* | Add an item about the majordomo to Mailman change.trhodes2003-04-291-0/+8
| | | | | | | | Discussed with: bmah
* | Add media types and options for ATM. While on most ATM cards media cannotharti2003-04-293-0/+97
| | | | | | | | | | | | | | | | be changed, it is very convenient to be able to toggle SDH/Sonet, idle/unassigned cells and scrambled mode and to see the carrier state. Reviewed by: -arch (if_media.h definitions)
* | Whitespace commit.trhodes2003-04-291-2/+2
| |
* | Initialize tbuf in newstat_copyout() too.mbr2003-04-291-0/+1
| | | | | | | | Reviewed by: phk
* | Update majordomo > mailman at this location also.trhodes2003-04-291-3/+2
| | | | | | | | Requested by: bmah
* | We need pccard start too.imp2003-04-291-1/+1
| |
* | Set recv.len to zero if we get no response.simokawa2003-04-291-1/+4
| |
* | Get correct firmware/model information for multiple unit directories.simokawa2003-04-291-0/+4
| |
* | debug.acpi.disable="processor" is incorrect. Use debug.acpi.disable="cpu" astrhodes2003-04-291-2/+2
| | | | | | | | | | | | found on line 126 of sys/dev/acpica/acpi_cpu.c. PR: 51523
* | Fix indentation.simokawa2003-04-291-13/+13
| |
OpenPOWER on IntegriCloud