summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove trailing whitespacedougb2003-10-136-12/+12
|
* Update references to rc.diskless[12]dougb2003-10-136-8/+8
|
* Fix two buffer overflows caused by off-by-one errors: avoid writing a nulltjr2003-10-131-2/+2
| | | | | | | character 1 byte past the end of cmdline[] when libedit is being used for input, and avoid writing a null pointer 1 element past the end of margv[]. Reviewed by: gad
* Include <nlist.h> for nlist-related declarations instead of depending onbde2003-10-132-0/+2
| | | | namespace pollution in <kvm.h>.
* remove dangling mtx_unlock orphaned by rev 1.21 changesam2003-10-131-1/+0
|
* support AES XCBC MAC for AH.ume2003-10-132-0/+230
| | | | Obtained from: KAME
* - support AES XCBC MAC for AHume2003-10-138-3/+21
| | | | | | - correct SADB_X_AALG_RIPEMD160HMAC to 8 Obtained from: KAME
* Fixed some style bugs in the removal of __P(()). Blind removal ofbde2003-10-131-3/+3
| | | | spaces before __P(()) outdented continuation lines to column 0.
* Reduce per-packet overhead when using WEP by using an advancing IVsam2003-10-131-1/+8
| | | | | | seeded with arc4random rather than calling arc4random for each packet. Note this is the same algorithm used to select the IV when doing WEP on the host.
* Must reset the pointer to the 802.11 header after prependingsam2003-10-131-0/+1
| | | | for WEP in case the prepend addes a new mbuf. This fixes WEP.
* MFp4:sam2003-10-131-3/+13
| | | | | | | | | | o don't grab the mutex at the top of ath_detach; it does nothing useful o deal with entry to ath_ioctl during detach to disable promiscuous mode as a result of calling bpfdetach2: cannot call ath_init when the device is marked invalid as the code isn't prepared to deal with it (in particular by that time the hal reference may have been yanked)
* MFp4:sam2003-10-131-14/+23
| | | | | | change ath_rate_ctl_reset to handle transition from station mode to adhoc mode; was not resetting the initial xmit rate causing outbound frames to be dicarded
* - Modify pmap_is_current() to return FALSE when a pmap's page table is inalc2003-10-131-4/+12
| | | | | | | | | | | use because a kernel thread is borrowing it. The borrowed page table can change spontaneously, making any dependence on its continued use subject to a race condition. - _pmap_unwire_pte_hold() cannot use pmap_is_current(): If a change is made to a page table page mapping for a borrowed page table, the TLB must be updated. In collaboration with: tegge
* Update Bluetooth code.emax2003-10-12109-988/+5997
| | | | | Reviewed by: M. Warner Losh <imp@bsdimp.com>; John Hay <jhay@freebsd.org> Approved by: M. Warner Losh <imp@bsdimp.com> (mentor)
* Update the number of ports.murray2003-10-121-1/+1
|
* - In SCHED_CURR() add holding Giant to the list of criteria that will keepjeff2003-10-121-8/+7
| | | | | | | | | you on the current queue. In the future, it would be nice if priority propagation could deterministicly pluck a thread off of the next queue and put it on the current queue. Until then this hack stops us from holding up our entire current queue, including interrupt handlers, while a thread on the next queue is blocked while holding Giant. - Inherit our pctcpu information from our parent.
* simplify and update rijndael code.ume2003-10-126-1737/+1407
| | | | Obtained from: KAME
* - Implement a mtx_ownedby() macro which can be used to determine if ajeff2003-10-121-1/+6
| | | | | particular thread owns a mutex. This cannot be done without races unless the thread is curthread.
* Comment spelling fix.rwatson2003-10-121-1/+1
|
* Use Japanese localized version of trademarks.ent.hrs2003-10-126-0/+12
|
* include opencrypto/rmd160.hume2003-10-121-1/+1
|
* In vfs_bio_clrbuf(), ignore the state of the object lock if the page is thealc2003-10-121-2/+4
| | | | | | "bogus" page. Found by: tegge
* use opencrypto for RMD160.ume2003-10-123-410/+1
| | | | Requested by: sam
* Don't forget to initialize the fake tcb when the kcb is allocated.deischen2003-10-122-0/+6
|
* Cache dev_t values in the right structure.ticso2003-10-121-4/+4
| | | | Tested by: Jay Cornwall <jay@evilrealms.net>
* remove unused variable.ume2003-10-121-4/+1
| | | | Obtained from: KAME
* drop useless define.ume2003-10-121-3/+0
|
* use bswap32() for big endian arch.ume2003-10-121-1/+1
| | | | Reported by: tinderbox via kris
* Simplify vn_isdisk() a bit.phk2003-10-121-24/+10
|
* Redo the code that handles eject/close.sos2003-10-121-23/+22
|
* Avoid potential race on ATA_R_DONE.sos2003-10-121-2/+3
|
* Put devices into sleep mode (ie spin down) on detach.sos2003-10-121-0/+2
|
* Up timeout to 10s (from 5) in r/w commands.sos2003-10-121-1/+1
|
* - avoid hardcoded values.ume2003-10-122-41/+29
| | | | | | | | | | | - correct signedness mixups. - log fix. - preparation for 64bit sequence number. introduce SA id (unique ID for SA - SPI is useless as duplicated SPI is allowed) - no need to malloc/free cksum buffer. Obtained from: KAME
* Recognize the Avance Logic ALC655 codec found on some ICH4/5-baseddes2003-10-121-0/+1
| | | | | | | | motherboards, such as the Gigabyte I848P. PR: kern/54176 Submitted by: Chris Keladis <chris@cmc.optus.net.au> Forgotten by: orion
* Correct a typo (s/And/An/)schweikh2003-10-121-1/+1
|
* Assume that bp->bio_offset is correctly initialized.phk2003-10-121-1/+0
| | | | This fixes non-power-of-2 blocksize GEOM I/O.
* Destroy providers maked with G_PF_WITHER when the last consumer has detached.phk2003-10-121-0/+2
|
* A couple of months' worth of back-burner hacking: restructure to betterdes2003-10-122-89/+189
| | | | | handle the minor (but significant) differences between the various Vortex chips; add (incomplete) support for playback.
* - always check for optlen overrun.ume2003-10-121-4/+11
| | | | | | | - panic if NULL is passed to ah_sumsiz (as we never do it, and callers do not properly check negative returns). Obtained from: KAME
* Use isprint instead of isalpha in determining valid ident string.sos2003-10-121-1/+1
|
* - correct signedness mixups.ume2003-10-123-80/+79
| | | | | | - avoid assuming result buffer size Obtained from: KAME
* Initialize CMAP3 to 0phk2003-10-121-0/+1
|
* avoid hardcoding MD5 result length (16)ume2003-10-121-3/+4
| | | | Obtained from: KAME
* RIPEMD160 supportume2003-10-122-0/+412
| | | | Obtained from: KAME
* - RIPEMD160 supportume2003-10-1210-206/+200
| | | | | | - pass size arg to ah->result (avoid assuming result buffer size) Obtained from: KAME
* Fix a typo.rushani2003-10-121-1/+1
|
* Refine translation.hrs2003-10-121-24/+25
|
* fix a problem referencing free'd memory. This is only a problem forjmg2003-10-121-2/+7
| | | | | | | | | | kqueue write events on a socket and you regularly create tons of pipes which overwrites the structure causing a panic when removing the knote from the list. If the peer has gone away (and it's a write knote), then don't bother trying to remove the knote from the list. Submitted by: Brian Buchanan and myself Obtained from: nCircle
* Merge the following from the English version:rushani2003-10-122-744/+200
| | | | | 1.44 -> 1.55 errata/article.sgml 1.163 -> 1.183 hardware/common/dev.sgml
OpenPOWER on IntegriCloud