summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make it clear that -P is the default.ru2001-05-257-4/+10
| | | | PR: docs/27629
* Add intrack field to each slot. This can be used to acknowledgeimp2001-05-252-0/+4
| | | | | | | interrupts on other buses. Right now it isn't used, but will be for the pci attachment. # Add copyright by me for this year since I've changed so much.
* Minor name space issues.imp2001-05-251-19/+20
|
* RFC 1323 (TCP extensions) is now on by default.obrien2001-05-251-3/+3
|
* Add support forimp2001-05-251-0/+6
| | | | | | | card "D" "Link DWL-650 11Mbps WLAN Card" which is the most amusing CIS mistake I've seen in some time. # I'm using this card to make this commit!
* I didn't fix the comment in rev 1.107.obrien2001-05-251-1/+1
|
* Turn on TCP_EXTENSIONS (rfc1323) by defualt.obrien2001-05-251-1/+1
|
* Don't rely on cdevsw_add() when we hack about with dev_t's.phk2001-05-241-0/+2
|
* Don't take the detour around devsw() to find out if the proto-cdevswphk2001-05-241-3/+1
| | | | is already initialized.
* Back out rev 1.4 (wint_t and mbstate_t) as I am tired of the complaints.obrien2001-05-241-10/+0
| | | | | | | | | | | | The STLport will probably become broken again, but I'll work on fixing it later. I wish someone would explain why the NetBSD Cirtus branch has the types in their stddef.h... Requested by: bde, ru PR: 27606 Submitted by: Naohiko Tsuji <yakisoba@f2.dion.ne.jp>
* NetBSD's inetd uses different syntex from FreeBSD's in faith support.ume2001-05-241-3/+3
|
* Add the "auth_as_self" option to the pam_unix module (there is nomarkm2001-05-244-3/+11
| | | | | | | reason not to add it to others later). This causes the pam_unix module to check the user's _own_ password, not the password of the account that the user is authenticating into. This will allow eg: WHEELSU type behaviour from su(1).
* Oops. Unremove vestiges of the old, broken sound drivers. They are nowbde2001-05-243-0/+1580
| | | | used in new drivers.
* whitespace/stylealfred2001-05-241-1/+2
|
* Stick VM syscalls back under Giant if the BLEED option is not defined.jhb2001-05-242-0/+57
|
* Add a new kernel option 'BLEED' to be used for code that is still underjhb2001-05-241-0/+1
| | | | | | development but is being developed in the tree for whatever reason. Not objected to by: peter, jlemon
* Remove vestiges of the old, broken sound drivers.bde2001-05-243-1580/+0
|
* Actually rename FDESC, PORTAL, UMAP and UNION file systems.ru2001-05-248-24/+24
| | | | OK'ed by: bp
* mount_fdesc -> mount_fdescfsru2001-05-241-2/+2
| | | | mount_portal -> mount_portalfs
* mount_umap(8) -> mount_umapfs(8).ru2001-05-241-1/+1
|
* mount_null(8) -> mount_nullfs(8).ru2001-05-241-4/+4
|
* mount_portal -> mount_portalfs.ru2001-05-241-2/+3
|
* Missed one mount_null(8) -> mount_nullfs(8) in previous commit.ru2001-05-241-1/+1
|
* (Re-)enabled boot2.nyan2001-05-241-1/+1
|
* Update boot[12] program to compile ELF binary.nyan2001-05-246-117/+92
| | | | | Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp> and kawanobe@st.rim.or.jp (Kawanobe Koh)
* Restrict even further what parts of <sys/conf.h> can be seen fromphk2001-05-242-4/+12
| | | | userland.
* Remove the "undocumented" comment in re lflag.nik2001-05-241-1/+1
|
* Document the -l option.nik2001-05-241-4/+15
| | | | | PR: docs/27440 Submitted by: Flix-Antoine Paradis <reel@sympatico.ca>
* If the user exists abruptly, tip's "tipout" child can hang aroundphk2001-05-242-1/+14
| | | | | | | | | | | forever. Since the lock file doesn't get cleaned up, this prevents other users from accessing the target device. (phk adds: Man, this has been bugging me for YEARS!) PR: 12528 Submitted by: Craig Leres leres@ee.lbl.gov MFC after: 1 week
* Add a -A option to ping which beeps when packets are lost.phk2001-05-242-3/+17
| | | | | PR: 11818 Submitted by: Marc Evans marc@destek.net
* Backout rev. 1.22 as the change that caused problems was also backed out.ru2001-05-241-1/+1
|
* Make the rcsid and FreeBSD IDs more sane in the wcs* and wmem* files.obrien2001-05-2456-95/+237
| | | | Do the same for the non-wcs*/wmem* files while I'm here.
* This patch implements O_DIRECT about 80% of the way. It takes a patchsetdillon2001-05-2412-15/+100
| | | | | | | | | | | | | | | | Tor created a while ago, removes the raw I/O piece (that has cache coherency problems), and adds a buffer cache / VM freeing piece. Essentially this patch causes O_DIRECT I/O to not be left in the cache, but does not prevent it from going through the cache, hence the 80%. For the last 20% we need a method by which the I/O can be issued directly to buffer supplied by the user process and bypass the buffer cache entirely, but still maintain cache coherency. I also have the code working under -stable but the changes made to sys/file.h may not be MFCable, so an MFC is not on the table yet. Submitted by: tegge, dillon
* Fix $FreeBSD$ style committer messed up in rev 1.7 for some reason.obrien2001-05-241-1/+1
|
* Use bus_space functions rather than inb/outb.imp2001-05-245-20/+28
| | | | | | | Add defines for PCIC_INDEX and PCIC_DATA offsets. Change PCIC_INDEX_0 to PCIC_PORT_0 Add define for PCIC_NPORT. Document why the vadem probe works.
* Produce a config-time warning about EXT2FS and GPL_MATH_EMULATEpeter2001-05-242-2/+4
|
* Remove DEV_SNP -> opt_snp.hpeter2001-05-241-1/+0
| | | | Forgotten by: dd
* Do what we should have done a long time ago:imp2001-05-241-0/+10
| | | | | | | | | | | o If the class is PCIC_BRIDGE, subclass is PCIS_BRIDGE_PCMCIA and programming interface is 0, assume that it is a generic PCMCIA PCI chip we can program. I don't think there are any of these that we don't know about, but you never know. o If the class is PCIC_BRIDGE, subclass is PCIS_BRIDGE_CARDBUS and programming interface is 0, assume that it is a YENTA cardbus bridge that we know how to cope with. There are likely some cardbus bridges that haven't it made it in here yet.
* Move getb1 and putb1 from pcic_isa.c to pcic.c. Rename them toimp2001-05-243-22/+24
| | | | | | pcic_{get,put}b_io. There are some pci bridges (the CL-PD6729 and maybe others) that do not have memory mapped registers, so we'll need these in both places. Declare them in pcicvar.h.
* Spelling police: insure -> ensuredd2001-05-241-1/+1
| | | | | PR: 27600 Submitted by: Iain Templeton <iain@ugh.net.au>
* Use pw(8) instead of grep'ing through /etc/passwd. This fixesdd2001-05-241-3/+3
| | | | | | automatic filling of the "Originator" field for NIS users. PR: 24372
* Add snp_olddisc member to struct snoop; the linedisc'ized snp(4) uses this.dd2001-05-241-0/+1
| | | | Pointy hat to: dd
* Oops, forgot the 'u' in the getopt for the previous commit.dillon2001-05-242-2/+2
|
* Correct style bugs with regards to long lines and comments.dd2001-05-231-15/+22
| | | | Reviewed by: bde
* Build snp(4) as a module.dd2001-05-231-2/+2
|
* *sigh* We can't remove VINUMDEBUG entirely, since we include kernelgrog2001-05-231-3/+2
| | | | | header files and sources which depend on it. For userland, define VINUMDEBUG here. Also remove a now superfluous #ifdef.
* Remove cruft.grog2001-05-231-3/+0
|
* Change #if VINUMDEBUG to #ifdef VINUMDEBUG. This is a flag, not a variable.grog2001-05-238-31/+27
|
* define _KERNEL before including <sys/conf.h>phk2001-05-231-1/+1
|
* We don't need to include <sys/conf.h>phk2001-05-231-1/+0
|
OpenPOWER on IntegriCloud