summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix typo; loppgin -> loginben2000-11-131-1/+1
| | | | | PR: 22823 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* Make linux_sendsig and linux_sigreturn use all 64 bits of agallatin2000-11-132-5/+56
| | | | | | | | | | | | | | | | | | linux_sigset_t by updating the linux_sigframe struct so as to include linux's "extramask" field. This field contains the upper 32-bits of the sigset. extramask sits behind a linux_fpstate struct, which I've defined primarily for padding purposes. While we're here, define LINUX_NSIG in terms of LINUX_NBPW (32) and LINUX_NSIG_WORDS (2). This fixes problems where threaded apps would accumulate a large number of zombies. This was happening because the exit signal resides in the upper 32-bits of the sigset and was never getting unmasked by the manager thread after the first child exited. PR: misc/18530 (may be related, originator not yet contacted) Reviewed by: marcel
* fix a typo; abso -> alsoben2000-11-131-1/+1
| | | | | PR: 22806 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* Beef up the description of the kernel thread API.jhb2000-11-132-19/+249
| | | | Reviewed by: sheldonh, jasone
* Describe the new software interrupt thread functionality.jhb2000-11-132-1/+205
| | | | Reviewed by: sheldonh, jasone
* Add a manpage to document the atomic operations including a quick treatmentjhb2000-11-132-1/+295
| | | | | | of memory barriers and the newish atomic variants that include them. Reviewed by: sheldonh
* Fix a bug with handling of the saved interrupt state for spin mutexes injhb2000-11-132-4/+4
| | | | | | the MTX_EXIT_WITH_RECURSION() assembly macro (currently unused). Submitted by: bde
* Fixed the last-minute bug I have made in previous revision (.ie -> .if).ru2000-11-131-1/+1
|
* My previous commit removed a line it wasn't supposed to. Add it back.gad2000-11-131-2/+3
|
* Change a "xlint(1)" to a ".Xr lint 1" and add a reference in the see alsodwmalone2000-11-131-1/+5
| | | | section.
* Do not terminate the SEE ALSO section example with a period.mpp2000-11-131-1/+1
| | | | | | | The cross-reference list should not be terminated with any type of punctuation at the end of the line. Pointed-out-by: sheldonh
* Really make the Fx macro parsed and callable.ru2000-11-132-34/+48
|
* Sort NAMES section and separate Nm arguments from trailing punctuation.sheldonh2000-11-132-18/+18
|
* Add support for decoding the PCI vendor and device ID registers. Add amsmith2000-11-133-7/+4522
| | | | | | database of about 1400 vendors and 2700 devices courtesy of www.yourvote.com/pci. We still need to add some more, but this is a good start.
* Initialize bus_space_handle_t with zero (for PC-98).nyan2000-11-134-8/+8
|
* Build and install the useful `readelf' util that is new with Binutils 2.10.0.obrien2000-11-132-1/+21
|
* This commit was generated by cvs2svn to compensate for changes in r68673,obrien2000-11-1313-0/+912
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import a virgin (but trimed) Binutils 2.10 release.obrien2000-11-1313-0/+912
| |
* | remove files not needed.obrien2000-11-133-4062/+0
| |
* | This commit was generated by cvs2svn to compensate for changes in r68670,obrien2000-11-133-0/+4062
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Upgrade to Binutils 2.10.0.obrien2000-11-133-0/+4062
| |
* | Update list of files to remove prior to importkris2000-11-131-20/+34
| |
* | Replace call to mktemp() with mkstemp. Also move where that call isgad2000-11-131-17/+43
| | | | | | | | | | | | | | | | | | | | done, so the correct directory is being checked. The mkstemp() call is meant to create a temp file for stderrs when running filters. This update also fixes log-file processing for remote (rm=) queues which specify an input filter (if=). Before, filter-errs were thrown away. Now they'll be copied to the queue's logfile (lf=). Reviewed by: (a little) audit@FreeBSD.ORG & freebsd-print@bostonradio.org
* | Mention security advisories FreeBSD-SA-00:{42,61,62,63}. Note thatbmah2000-11-132-2/+34
| | | | | | | | | | IP Filter is now supported by rc.conf(5). Minor grammar fix in sshd item.
* | Fix F_SETOWN on pipes. Linux returns EINVAL while we send a SIGIOmarcel2000-11-131-5/+19
| | | | | | | | | | | | | | | | signal. There's at least 1 program that is known to break. Submitted patch has been edited to match current code. MFC: yes Submitted by: bde
* | Classify all EISA cards with major firmware revions '2' as 742As.gibbs2000-11-133-3/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to successfully attach early Storage Dimension cards. Allocate mailboxes for the 742A bellow the 16MB limit. Although these cards seem to be able to deal with all other types of data anywhere in a 32bit address space, 24bit addresses are required for mailboxes. bt_eisa.c: Add device IDs for all Storage Dimension products I could find from their web site. Thanks to Ted Mittelstaed for loaning me the equipment to diagnose and fix these problems.
* | Don't attempt to reference a NULL scb_data area during teardown eventsgibbs2000-11-131-0/+2
| | | | | | | | | | occurring early in initialization. This fixes attachments to the parity engines that FreeBSD doesn't support.
* | add SII MC-P200sanpei2000-11-131-0/+4
| | | | | | | | | | Submitted by: Shigeru Ishida <ishida@isl.intec.co.jp> bsd-nomads:14801
* | add SII MC-P200sanpei2000-11-132-2/+6
| | | | | | | | | | | | | | Submitted by: Shigeru Ishida <ishida@isl.intec.co.jp> bsd-nomads:14801 add NTT DoCoMo P-in Comp@ct
* | add support for 3CXFE575BT(XJack Connector)sanpei2000-11-132-2/+2
| |
* | Change the ext_type type from short to int, since it doesn't cost usbmilekic2000-11-131-1/+2
| | | | | | | | | | | | | | anything and it's likely to be faster on alphas. Also, add EXT_MOD_TYPE for modules that want to add their own ext_type and are not network drivers (so they don't use EXT_NET_DRV).
* | Update for OpenSSL 0.9.6kris2000-11-134-61/+69
| |
* | Resolve conflicts, and garbage collect some local changes that are nokris2000-11-1320-269/+616
| | | | | | | | longer required
* | This commit was generated by cvs2svn to compensate for changes in r68651,kris2000-11-13576-11608/+38575
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Initial import of OpenSSL 0.9.6kris2000-11-13598-11885/+39181
| | |
* | | Add webgear aviator cardimp2000-11-121-0/+8
| | |
* | | Add raycontrol to the build.imp2000-11-121-0/+1
| | |
* | | Control program for raylan cards.imp2000-11-123-0/+807
| | | | | | | | | | | | | | | | | | | | | | | | This is based on wicontrol. Duncan updated it for raylan. I've updated this to the latest wicontrol. In addition, to make it kinda compatible with ifconfig, you can give the interface name w/o the -i. Submitted by: duncan barclay
* | | Add ray driver for card (OLDCARD) and pccard (NEWCARD) entries.imp2000-11-121-0/+3
| | | | | | | | | | | | Add sn driver for pccard (NEWCARD).
* | | Changes necessary to make this work.imp2000-11-125-108/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The prior version in the tree was repo-copied from Duncan Barclay's cvs tree. Also add $FreeBSD$ Submitted by: Duncan Barclay Committed-via: raylan link with two webgear cards.
* | | Only offset raid disks > 1 on the HPT, this should solve thesos2000-11-121-1/+2
| | | | | | | | | | | | | | | | | | | | | boot problems.. However this demands that dangerously dedicated disks use an offset of at least 10 from the start to not overwrite the raid config sector on the HPT...
* | | Better handling of immediate commands, mainly to solve timeoutssos2000-11-124-12/+37
| | | | | | | | | | | | in the atapi-tape code...
* | | Hopefully fix the probing problems that caused lost slaves etc..sos2000-11-121-53/+67
| | |
* | | Be a little clearer about the relationship between these two.nik2000-11-124-4/+24
| | | | | | | | | | | | | | | PR: docs/20067 Submitted by: Takayuki Hagihara
* | | Remove the comment about the occupied Palestinian territory not having anik2000-11-121-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | code designation, as it's code 275. Include the URL of the ISO3166 Maintenance Agency. Remove FX, it's been deprecated. Update the Palestine entry with the correct code and description. PR: docs/22570 Submitted by: Laurent Wacrenier <lwa@victor.teaser.fr>
* | | Create the links for the reentrant time functions.nik2000-11-121-1/+3
| | | | | | | | | | | | | | | PR: docs/22644 Submitted by: andrew@ugh.net.au
* | | Add missing "delta" argument to description headline of "apm" -r optionrse2000-11-121-1/+1
| | | | | | | | | | | | to be consistent with descriptions of other options which take arguments.
* | | Fixed a certain panic on IO error in sendfile(): Page must be set PG_BUSYdg2000-11-121-1/+3
| | | | | | | | | | | | before calling vm_page_free() on it.
* | | Stop using AUXRELEASETAG for everything and use PORTSRELEASETAG andjkh2000-11-121-4/+6
| | | | | | | | | | | | | | | | | | DOCRELEASETAG in the appropriate places instead. Submitted by: asami
* | | Check the return value of strdupn_hibma2000-11-121-0/+8
| | | | | | | | | | | | Submitted by: Chris Faulhaber <jedgar@fxp.org>
OpenPOWER on IntegriCloud