summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Prevent dereference of NULL pointer when null_lock() and null_unlock()bp2000-10-032-2/+14
| | | | called and there is no underlying vnode.
* Fix a problem with MCHTYPE macro's use of atomic().bmilekic2000-10-031-2/+2
| | | | | | | Basically, the reason most people haven't seen this is most likely related to the low usage of MCHTYPE. Pointed out and suggested a fix by: Boris Popov (bp) - thanks!
* Turn fingerd OFF by default. Comparative essentials like telnetdjkh2000-10-031-2/+2
| | | | | | are bad enough, but finger is hardly a critical system service and it's traditionally been vulnerable to a variety of attacks; anybody remember RTFM and his worm?
* o Introduce a MAINTAINER entry for libposix1e, since it is activelyrwatson2000-10-022-0/+2
| | | | developed and maintained.
* Reflect new packet option default.rnordier2000-10-021-6/+6
|
* Don't allow finger /somefile, only allow filname expansions frombrian2000-10-021-0/+10
| | | | | | inside /etc/finger.conf PR: 21704
* Include fcntl.hbrian2000-10-021-0/+1
| | | | | PR: 21697 Submitted by: Barak Enat <barak_enat@yahoo.com>
* Case is irrelevant when sorting mail redirectsbrian2000-10-021-1/+1
| | | | | PR: 21600 Submitted by: David Wolfskill <dhw@whistle.com>
* Move sys/dev/nulldev to sys/dev/null to be more consistent with namingjhb2000-10-023-140/+3
| | | | under sys/dev.
* Fix a cosmetic sign problem on machines with 4G of ram.peter2000-10-022-2/+2
| | | | | | 0x00312000 - 0xe5fe7fff, 3855441920 bytes (4294859990 pages) .. becomes 0x00314000 - 0xe5fe7fff, 3855433728 bytes (941268 pages)
* Correct uu_lock_txfr. I don't think this ever worked correctly.brian2000-10-021-5/+6
|
* Instead of printing '(null)' if there is no tty, print 'no tty'.n_hibma2000-10-021-1/+5
| | | | | In the case where the program is executed by a daemon running in the background the terminal might not have a tty. The '(null)' is confusing.
* Go back to occupying just a single sector, reverting r1.17 - r1.20.rnordier2000-10-022-166/+82
| | | | | | | | | | | | Taking over the sector following the MBR causes problems on some machines, and the actual gains are fairly small in terms of how the space is presently used. Since we need a number of further features (eg. handling extended partitions) that can't be readily accommodated in the basic boot0 design anyway, rather choose to implement the additional stuff separately and concentrate on compatibility rather than features here.
* Set MAINTAINER.rnordier2000-10-0211-0/+22
|
* Note the update of cvs to 1.11.bmah2000-10-022-0/+4
|
* If TCPDEBUG is defined, we could dereference a tp which was freed.jlemon2000-10-021-1/+1
|
* use ``config auto''sanpei2000-10-021-4/+4
| | | | | | - Melco LPC-T (PIO mode) - AR-P500 ethernet card - Accton EN2226/Fast EtherCard (16-bit verison)
* Added NEC PC-9801-83, 84, PC-9801-103, 104, PC-9801N-25 and PC-9801N-J02Rnyan2000-10-0219-0/+3648
| | | | | | | | support which use National Semiconductor DP8393X (SONIC) as ethernet controller. Currently, this driver is used on only PC-98. Submitted by: Motomichi Matsuzaki <mzaki@e-mail.ne.jp> Obtained from: NetBSD/pc98
* Fix cdev kld example after it has been broken for year or so. Also extend listsobomax2000-10-027-15/+114
| | | | | | | | of supported operations by example read() and write() operations. Inspired by: http://www.daemonnews.org/200010/blueprints.html PR: 16173 Submitted by: sobomax
* A bit of indentation reformatting.ru2000-10-022-66/+42
|
* Make reconfiguring an external service as builtin service work.dwmalone2000-10-021-0/+1
| | | | | | PR: 21650 Submitted by: ben Tested by: dan@ducky.nz.freebsd.org
* Stop internal ident service spinning until the timeout if thedwmalone2000-10-021-0/+2
| | | | | | | connection goes away. Spotted by people on -STABLE about 2 weeks ago. Submitted by: Based on a patch by alfred and Maxime Henrion <mux@qualys.com>
* fix ordering of NetBSD 1.3 (sync with NetBSD share/misc/bsd-family-tree).itojun2000-10-021-7/+8
|
* Move KASSERTs which checks value of v_usecount after vnode locking, sobp2000-10-022-4/+8
| | | | it will not produce wrong alarms.
* Protect hash data with lock manager instead of home grown one.bp2000-10-028-142/+210
| | | | | | | | | Replace shared lock on vnode with exclusive one. It shouldn't impact perfomance as NCP protocol doesn't support outstanding requests. Do not hold simple lock on vnode for long period of time. Add functionality to the nwfs_print() routine.
* Get rid from the legacy __P() macro. Remove 'register' keywords.bp2000-10-0212-190/+198
|
* Remove duplicate SYSCTL_NODE() declaration. Kernel linker can't dealbp2000-10-021-1/+0
| | | | with it well.
* Fix StallOp implementaion. I've noticed that StallOp corresponds toiwasaki2000-10-027-12/+16
| | | | | | | OsdSleepUsec(), SleepOp corresponds to OsdSleep() by reading ACPICA source code. - Add OsdSleepUsec() which uses DELAY() simply. - Change unit of acpi_sleep() argument; microseconds to milliseconds.
* Merged from sys/i368/i386/machdep.c revision 1.413.kato2000-10-022-48/+8
|
* Merged from sys/conf/files.i386 revision 1.332.kato2000-10-021-1/+2
|
* Change "building the standard ${LIB} library" to "building the staticpeter2000-10-021-1/+1
| | | | | | | ${LIB} library". "standard" tends to imply the one that is normally used... but by default it is not the case - the .so would be the "standard" library. Therefore, change this to 'static'. Another option might be "conventional ${LIB} library".
* Really fix the struct callout collision. AMD does not need topeter2000-10-021-1/+1
| | | | | | | #include <sys/mbuf.h>. (which #include's <machine/mutex.h> and then <sys/proc.h> and then <sys/callout.h>, leading to the collision). <sys/mbuf.h> is really one of those 'no user servicable parts inside' things.
* Regenerated. There are a bunch of changes from this round of ./configurepeter2000-10-022-48/+102
| | | | | but none of them are used or make any difference (at least in the FreeBSD version).
* Fix EVENTHANDLER_FAST_DEREGISTERmsmith2000-10-021-1/+1
|
* Treat %X the same as %x (not entirely correct, but close enough).msmith2000-10-021-0/+1
|
* Move the i386 PCI attachment code out of i386/isa back into i386/pci.msmith2000-10-0210-3651/+769
| | | | | Split out the configuration space access primitives, as these are needed elsewhere as well.
* Merge changes from 1.10.7 -> 1.11 into mainline. Note that the oldpeter2000-10-0221-1141/+1257
| | | | anoncvs no-password hack is gone and is replaced by the official version.
* This commit was generated by cvs2svn to compensate for changes in r66525,peter2000-10-0271-5094/+9584
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11 onto vendor branch.peter2000-10-0291-6219/+10838
| |
* | PDIRUNLOCK now exists on FreeBSD. Remove the (now incorrect) redefinition.peter2000-10-022-8/+0
| |
* | Add new fields for more granularity:billf2000-10-021-4/+48
| | | | | | | | | | | | | | IP: version, tos, ttl, len, id TCP: seq#, ack#, window size Reviewed by: silence on freebsd-{net,ipfw}
* | Put on my nuclear-grade asbestos suit and cvs rm the old, broken, soundpeter2000-10-0291-42532/+0
| | | | | | | | | | | | | | | | | | | | | | drivers (again). These drivers have not compiled for 5-6 months. Now that the new sound code supports MIDI, the major reason we had for reviving it is gone. It is a far better investment polishing the new midi code than trying to keep this on life support. Come 5.0-REL, if there are major shortcomings in the pcm sound driver then maybe we can rethink this, but until then we should focus on pcm. Remember, these have not been compilable since ~April-May this year.
* | Add new fields for more granularity:billf2000-10-022-7/+197
| | | | | | | | | | | | | | IP: version, tos, ttl, len, id TCP: seq#, ack#, window size Reviewed by: silence on freebsd-{net,ipfw}
* | Fix omission: CD-ROMs can be ordered for 4.x-RELEASE, not just 4.0-RELEASE.bmah2000-10-022-2/+2
| | | | | | | | Submitted by: rosti@netvision.net.il
* | Add definition for PCIS_SERIALBUS_SMBUS PCI device subclass.archie2000-10-022-4/+2
| | | | | | | | Remove cut & paste leftovers.
* | Add reference to file /usr/share/examples/netgraph/ether.bridge.archie2000-10-011-0/+5
| |
* | Script showing how to setup Ethernet bridging using ng_bridge(4).archie2000-10-011-0/+167
| |
* | ahc_set_transaction_status() takes an SCB. This makes it difficult togibbs2000-10-012-2/+2
| | | | | | | | use this helper function to report an error when SCB allocation fails.
* | Add missing FreeBSD-only flag to the usage statement.gshapiro2000-10-011-1/+1
| |
* | * Some freebsd.org -> FreeBSD.org fixes.alex2000-10-012-20/+20
| | | | | | | | * The next -stable release is 4.2, not 4.1.
OpenPOWER on IntegriCloud