aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* When we miss one or more packets in stateful mode *and* need toBrian Somers2001-07-071-7/+10
| | | | | | | | | | | | | | perform a key change, *and* our sequence numbers have wrapped, ensure that the number of key changes is calculated correctly. The previous code counted down from a negative number to zero, re-encrypting the current key on each iteration - this took some time and strangely enough got the answer wrong !!! Fix a(nother) spelling mistake while I'm there. Notes: svn path=/head/; revision=79376
* Add support for user-requested override of cooling levels.Mike Smith2001-07-071-80/+189
| | | | | | | | | | | Monitor the system power profile, and use _SCP to adjust thermal zones accordingly. Simplify the behaviour of the timeout routine, and add some temporary debugging. Notes: svn path=/head/; revision=79375
* Add support for system power profiles; select "performance" when AC powerMike Smith2001-07-072-2/+18
| | | | | | | is available and "economy" when it is not. Notes: svn path=/head/; revision=79374
* Add acpi_powerprofile.cMike Smith2001-07-071-0/+1
| | | | Notes: svn path=/head/; revision=79373
* Support for system "power profiles". Currently we support two profiles;Mike Smith2001-07-071-0/+64
| | | | | | | "economy" and "performance". Notes: svn path=/head/; revision=79372
* Spell stateful properlyBrian Somers2001-07-064-11/+11
| | | | | | | | Inconsistently done by: brian Spotted by: ru Notes: svn path=/head/; revision=79370
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).Ruslan Ermilov2001-07-06124-235/+239
| | | | Notes: svn path=/head/; revision=79366
* mdoc(7) police: added missing .Ek call.Ruslan Ermilov2001-07-061-0/+1
| | | | Notes: svn path=/head/; revision=79365
* mdoc(7) police: -column lists require column width specifiers.Ruslan Ermilov2001-07-061-2/+2
| | | | Notes: svn path=/head/; revision=79361
* mdoc(7) police: minor formatting/spelling fixes.Ruslan Ermilov2001-07-061-2/+2
| | | | Notes: svn path=/head/; revision=79359
* mdoc(7) police: minor formatting fixes.Ruslan Ermilov2001-07-061-15/+12
| | | | Notes: svn path=/head/; revision=79358
* This was only half-implemented when I committed it, and certainly didn'tMike Smith2001-07-061-30/+92
| | | | | | | work. Now it's implemented and seems to work. Notes: svn path=/head/; revision=79357
* mdoc(7) police: minor markup fixes.Ruslan Ermilov2001-07-061-4/+5
| | | | Notes: svn path=/head/; revision=79355
* mdoc(7) police: fixed formatting.Ruslan Ermilov2001-07-061-66/+75
| | | | Notes: svn path=/head/; revision=79353
* mdoc(7) police: formatting fixes.Ruslan Ermilov2001-07-061-87/+89
| | | | Notes: svn path=/head/; revision=79352
* mdoc(7) police: cosmetics.Ruslan Ermilov2001-07-061-1/+1
| | | | Notes: svn path=/head/; revision=79351
* mdoc(7) police: fixed formatting.Ruslan Ermilov2001-07-061-41/+64
| | | | Notes: svn path=/head/; revision=79350
* Cleanup some obsolete commentsWarner Losh2001-07-061-2/+3
| | | | Notes: svn path=/head/; revision=79349
* Call ttymalloc() when sysmouse is opened, rather thanKazutaka YOKOTA2001-07-061-1/+1
| | | | | | | | when the driver is attached. MFC after: 2 weeks Notes: svn path=/head/; revision=79344
* Backout mwakeup, etc.Jake Burkholder2001-07-064-58/+6
| | | | Notes: svn path=/head/; revision=79343
* New release notes: Kernel message buffer via sysctl and dmesg(8),Bruce A. Mah2001-07-052-0/+34
| | | | | | | new processor detection, better TCP memory usage, netstat(1) -z. Notes: svn path=/head/; revision=79342
* Constify the format string.Dag-Erling Smørgrav2001-07-051-1/+1
| | | | | | | | Submitted by: Mike Barcroft <mike@q9media.com> Forgotten by: des Notes: svn path=/head/; revision=79341
* When building an FTP area, put the CSS file for the release documentationBruce A. Mah2001-07-051-1/+1
| | | | | | | | | in the FTP area, not the CDROM area. MFC after: 3 days Notes: svn path=/head/; revision=79340
* Make these compile again by adding proc.h include for GIANT_REQUIREDJohn Baldwin2001-07-0512-0/+12
| | | | | | | that is in included vm headers. Notes: svn path=/head/; revision=79339
* Oops- missed a CAMLOCK_2_ISP case.Matt Jacob2001-07-051-0/+1
| | | | Notes: svn path=/head/; revision=79338
* Bracket call to vm_page_flag_set with required Giant lock/unlock.Matt Jacob2001-07-051-1/+4
| | | | Notes: svn path=/head/; revision=79337
* Things have become cinched down more tightly about assertions for Giant.Matt Jacob2001-07-051-4/+22
| | | | | | | | This uncovered some missing spots where I trade off between isp's lock and Giant as I enter CAM. Notes: svn path=/head/; revision=79336
* o Replace calls to p_can(..., P_CAN_xxx) with calls to p_canxxx().Robert Watson2001-07-0517-111/+63
| | | | | | | | | | | | | | | | | | | | | | | | The p_can(...) construct was a premature (and, it turns out, awkward) abstraction. The individual calls to p_canxxx() better reflect differences between the inter-process authorization checks, such as differing checks based on the type of signal. This has a side effect of improving code readability. o Replace direct credential authorization checks in ktrace() with invocation of p_candebug(), while maintaining the special case check of KTR_ROOT. This allows ktrace() to "play more nicely" with new mandatory access control schemes, as well as making its authorization checks consistent with other "debugging class" checks. o Eliminate "privused" construct for p_can*() calls which allowed the caller to determine if privilege was required for successful evaluation of the access control check. This primitive is currently unused, and as such, serves only to complicate the API. Approved by: ({procfs,linprocfs} changes) des Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=79335
* You cannot require Giant to be locked when you haven't acquired it yet.Matt Jacob2001-07-051-2/+4
| | | | Notes: svn path=/head/; revision=79334
* make it compile on alpha againMatt Jacob2001-07-051-1/+2
| | | | Notes: svn path=/head/; revision=79333
* Don't override the default BINMODE.Ruslan Ermilov2001-07-051-2/+0
| | | | | | | Submitted by: bde Notes: svn path=/head/; revision=79328
* unbreak building kernel without option INET6Hajimu UMEMOTO2001-07-052-0/+4
| | | | | | | Reported by: markp Notes: svn path=/head/; revision=79326
* mdoc(7) police: merge all fixes from non-crypto version.Ruslan Ermilov2001-07-052-116/+184
| | | | Notes: svn path=/head/; revision=79324
* MF non-crypto: 1.13: document -u in usage.Ruslan Ermilov2001-07-052-16/+16
| | | | Notes: svn path=/head/; revision=79323
* mdoc(7) police: moved -u down, fixed markup, removed hard sentence break.Ruslan Ermilov2001-07-051-8/+13
| | | | Notes: svn path=/head/; revision=79321
* Document -u in the usage().Ruslan Ermilov2001-07-051-9/+9
| | | | | | | Make usage fit on a standard 80-column display. Notes: svn path=/head/; revision=79320
* mdoc(7) police: fix markup.Ruslan Ermilov2001-07-051-101/+159
| | | | Notes: svn path=/head/; revision=79319
* Update the dmesg man page to reflect the recent changes to dmesg.Thomas Moestl2001-07-051-8/+14
| | | | | | | Reviewed by: ru Notes: svn path=/head/; revision=79318
* Set vendor string correctly for the Apple KeyLargo.Benno Rice2001-07-052-0/+8
| | | | | | | | Forgotten by: benno Spotted by: n_hibma Notes: svn path=/head/; revision=79317
* mdoc(7) police: fixed markup and spelling.Ruslan Ermilov2001-07-051-45/+47
| | | | Notes: svn path=/head/; revision=79316
* mdoc(7) police: fixed markup and typo.Ruslan Ermilov2001-07-051-16/+16
| | | | Notes: svn path=/head/; revision=79315
* mdoc(7) police: fixed formatting.Ruslan Ermilov2001-07-051-37/+33
| | | | Notes: svn path=/head/; revision=79314
* mdoc(7) police: removed hard sentence breaks, sorted xrefs.Ruslan Ermilov2001-07-052-18/+34
| | | | Notes: svn path=/head/; revision=79313
* Silence a non-constant format string warning.Kris Kennaway2001-07-051-1/+1
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=79312
* Pull in the current version of NetBSD's ulpt.c, supporting bidirectionalNick Hibma2001-07-051-83/+201
| | | | | | | communication with printers. Notes: svn path=/head/; revision=79311
* Regen.Nick Hibma2001-07-052-55/+353
| | | | Notes: svn path=/head/; revision=79310
* Pull in the most recent version of usb_quirks.h and propagate the necessaryNick Hibma2001-07-058-194/+161
| | | | | | | | | changes to the various files. Also, pull in most of the current usb_subr.c file. Notes: svn path=/head/; revision=79309
* Make the string argument a const.Nick Hibma2001-07-051-2/+2
| | | | Notes: svn path=/head/; revision=79308
* Mark a function as __printflike() and fix a non-exploitable format stringKris Kennaway2001-07-051-1/+1
| | | | | | | | | warning. MFC after: 1 week Notes: svn path=/head/; revision=79307
* Make open_disk() fail nicely upon encountering an ENOENT so to notJoerg Wunsch2001-07-052-4/+8
| | | | | | | | | | | | | prematurely terminate the search for a usable disk. ENOENT is quite normal in particulare now with the advent of devfs. While being here, also remove /dev/wd0 and /dev/od0 from the list of disks to search since we don't have them anymore. MFC after: 1 week Notes: svn path=/head/; revision=79306