summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove bogus (void **) casts. This unbreaks the -O2 build.des2004-03-151-3/+3
|
* Don't try to pass off a struct sockaddr as a struct sockaddr_in when itdes2004-03-152-4/+4
| | | | | | | may in fact very well be a struct sockaddr_in6. Just use plain struct sockaddr. This brings us yet another step closer to a clean -O2 build.
* Remove whitespace at EOL.trhodes2004-03-151-1/+1
|
* Add vectors for _snprintf() and _vsnprintf() (redirected straight towpaul2004-03-151-0/+2
| | | | | | | | | snprintf() and vsnprintf() in FreeBSD kernel land). This is needed by the Intel Centrino 2200BG driver. Unfortunately, this driver still doesn't work right with Project Evil even with this tweak, but I'm unable to diagnose the problem since I don't have access to a sample card.
* Move GID/UID_MAX under __BSD_VISIBLE protection.mlaier2004-03-151-3/+3
| | | | | Requested by: bde Approved by: bms(mentor)
* Fix some style(9) related issues after discussion with/education from bde:mlaier2004-03-1512-118/+94
| | | | | | | | | | | | | | - Add <sys/param.h> and <limits.h> where required (do not depend on other headers pulling it in). - __dead -> __dead2 - #if defined() -> #ifdef - Remove ugly PRIu64 macros and use %llu w/ (unsigned long long) cast. All changes looped back to OpenBSD (where applicable) for easier sync in the future. Requested by: bde Approved by: bms(mentor)
* Add -DDEBUG to DEBUG_FLAGS if PAM_DEBUG is defined.des2004-03-151-0/+4
|
* Add printing of relevant SATA info where approbiate.sos2004-03-151-9/+31
|
* Add SATA support fieldssos2004-03-151-4/+14
|
* Remove sysctl security.jail.list_allowed.pjd2004-03-151-6/+1
| | | | | | | This functionality was a misfeature, sysctl was added and turned off by default just to check if nobody complains. Reviewed by: rwatson
* Add support for detaching PCI controllers.sos2004-03-157-97/+129
| | | | | | This adds support for cardbus ATA/SATA controllers. I get roughly the same transfer speeds as on true PCI controllers. Nice to be able to add a couble of "real" disks to a laptop :)
* Kill bogus isa compat opt file.imp2004-03-151-1/+1
|
* Temporarily comment out cy.imp2004-03-151-3/+2
| | | | Remove COMPAT_OLDISA
* including isa_device.h was historical in this file, remove itimp2004-03-153-3/+0
|
* Document additional reasons that sysctl(3) can return ENOMEM (due totruckman2004-03-151-0/+11
| | | | vslock() failure).
* Change len pararmeter from u_int to size_t.truckman2004-03-151-8/+29
| | | | Document vslock() return values.
* Make overflow/wraparound checking more robust and unbreak len=0 intruckman2004-03-152-16/+22
| | | | | | vslock(), mlock(), and munlock(). Reviewed by: bde
* Make this compile with -O2. A proper fix would use a struct to representdes2004-03-151-22/+22
| | | | | vectors, instead of requiring the caller to keep track of element size and count and pass them in by reference.
* Whitespace nits.des2004-03-151-4/+4
|
* gasp(1) isn't linked with -lgnuregex, and it doesn't need <gnu/regex.h>ru2004-03-151-1/+0
| | | | | | either. Reviewed by: obrien
* Style(9) changes.truckman2004-03-152-40/+11
| | | | Pointed out by: bde
* Revert to the original vslock() and vsunlock() API with the followingtruckman2004-03-153-39/+28
| | | | | | | | | exceptions: Retain the recently added vslock() error return. The type of the len argument should be size_t, not u_int. Suggested by: bde
* Remove redundant suser() check.truckman2004-03-151-4/+0
|
* static and const.jmallett2004-03-151-10/+10
|
* Validate argument to -i.jmallett2004-03-151-1/+4
|
* Lock down global variables in if_tap (primarily, the tap softc list);rwatson2004-03-151-3/+28
| | | | | | | | | | | | | | | add tapmtx, which protects globale variables. Notes: - The EBUSY check in MOD_UNLOAD may be subject to a race. Moving the event handler unregister inside the mutex grab may prevent that race. - Locking of global variables safely is now possible because tapclones is only modified when the module is loading or unloading, thanks to phk's recent chang to clone_setup(). - softc locking to follow.
* Shorten a long comment.obrien2004-03-153-3/+3
|
* Grammar nits.bmah2004-03-152-26/+26
| | | | | Move a SGML comment to a more meaningful (and correct) place in this file.
* Mention ubser(4) devices, fix a minor punctuation nit.bmah2004-03-152-2/+4
|
* New release notes: acpi_toshiba(4), acpi_video(4), ubser(4),bmah2004-03-152-0/+48
| | | | | FreeBSD/i386 can be compiled with icc, ng_atmllc(4), logins(1), GNU grep 2.4.2.
* Don't reject FAT file systems with a number of "Heads" greater thanrwatson2004-03-141-1/+1
| | | | | | 255; USB keychains exist that use 256 as the number of heads. This check has also been removed in Darwin (along with most of the other head/sector sanity checks).
* Update release note:hrs2004-03-142-4/+6
| | | | The gsc driver removed.
* Remove isa compat stuff.imp2004-03-149-453/+0
| | | | | | | Only cy, bs and wd in the tree still use it. I have a replacement for cy that I need to test on ISA and PCI cards. bs and wd are pc98 only drivers that appear to no longer be necessary. I'll be removing them when I hear back from the pc98 people.
* comment out bs and wd entries in the hintsimp2004-03-141-16/+16
|
* Remove entries for the following devices as their drivers are gone:bmah2004-03-142-28/+0
| | | | | | | | rdp(4), le(4), stl(4), stli(4), ctx(4), spigot(4). Take a guess that the following devices correspond to removed drivers and blow their entries away too: "Genius and Mustek hand scanners" (gsc(4)?) and "GPB and Transputer drivers" (gpib(4)?).
* Comment out the cy driver until I can make sure that the new cy driverimp2004-03-141-2/+3
| | | | I have for it works.
* The gsc driver has been retired, so retire its control program.imp2004-03-144-274/+0
|
* Retire gsc man page after driver retirementimp2004-03-142-343/+0
|
* The gsc driver uses the old COMPAT_ISA api. Retire it so we canimp2004-03-145-975/+0
| | | | | retire the COMPAT_ISA shims. If someone were to redo this driver with the new APIs and test it, it can return.
* Update release note:hrs2004-03-142-0/+4
| | | | rdp and spigot driver removed.
* Hints for the le driver are no longer necessary here.imp2004-03-141-5/+0
| | | | Noticed by: ru
* rdp has been retired, retire its man page tooimp2004-03-142-180/+0
|
* Update release note:hrs2004-03-142-0/+2
| | | | The le driver removed.
* The rdp driver uses the COMPAT_OLD api. This is being retired, soimp2004-03-144-1590/+0
| | | | | | this driver is being retired. Remove it from the tree. If someone wants to update it to the latest APIs and can test the hardware, it can return to the tree.
* The spigot driver uses the old COMPAT_ISA interface. Retire it sinceimp2004-03-144-402/+0
| | | | | that's going away soon. Should someone reimplement it using modern APIs and can test the driver, it can return.
* le driver is gone, retire its man pageimp2004-03-142-103/+0
|
* The le driver uses ISA_COMPAT, which is going away soon. Retire itimp2004-03-146-2328/+0
| | | | | and releated files. If someone wants to fix it to use the new APIs and test it, it can be brought back.
* Really remove asc man page this timeimp2004-03-141-200/+0
|
* Regen.joe2004-03-142-2/+9
|
* Add support for Handspring TREO 600.joe2004-03-142-0/+2
| | | | | Submitted by: Tuc <tuc@ttsg.com> MFC after: 1 week
OpenPOWER on IntegriCloud