summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* remove most of the warningsassar2001-06-1516-277/+144
|
* Fix warning: 568: warning: `portal_badop' defined but not usedpeter2001-06-151-13/+0
|
* Fix a stack of KAME netinet6/in6.h warnings:peter2001-06-151-2/+4
| | | | | 592: warning: `struct mbuf' declared inside parameter list 595: warning: `struct ifnet' declared inside parameter list
* Fix warning (exposed NetBSD code):peter2001-06-151-1/+1
| | | | 94: warning: `ntfs_bmap' declared `static' but never defined
* Fix warnings (mostly harmless, due to struct bio being embedded in buf):peter2001-06-151-2/+2
| | | | | 738: warning: passing arg 1 of `biodone' from incompatible pointer type 745: warning: passing arg 1 of `biodone' from incompatible pointer type
* Fix warning: 552: warning: `fdesc_badop' defined but not usedpeter2001-06-151-12/+0
|
* Fix warning: 128: warning: initialization makes pointer from integerpeter2001-06-151-1/+4
| | | | | Note: this file has lots of #if __FreeBSD__ >= 4 etc which needs to be changed to __FreeBSD_version >= 400000 etc.
* add the option -S for printing port numbers symbolically but addressesassar2001-06-1510-45/+55
| | | | numerically. clean up the CFLAGS in Makefile.
* Fix warnings:peter2001-06-151-1/+0
| | | | | | | | | vinumhdr.h:80: warning: redundant redeclaration of `vinum_cdevsw' vinumext.h:239: warning: previous declaration of `vinum_cdevsw' in each of the following files: vinum.c, vinumconfig.c, vinumdaemon.c, vinuminterrupt.c, vinumio.c, vinumioctl.c, vinumlock.c, vinummemory.c, vinumraid5.c, vinumrequest.c, vinumrevive.c, vinumstate.c, vinumutil.c
* Fix warnings:peter2001-06-151-4/+5
| | | | | | | | | musycc.c:449: warning: long unsigned int format, unsigned int arg (arg 3) musycc.c:449: warning: long unsigned int format, unsigned int arg (arg 4) musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 3) musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 4) musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 5) These warnings used to be confined to the alpha but are on all now.
* Fix warning: 110: initialization makes pointer from integer without a castpeter2001-06-151-2/+1
| | | | | This was passing a (d_kqfilter_t *)-1 as the kqfilter function pointer. Fortunately there was no D_KQFILTER in d_flags, so this was harmless.
* Fix warning: 193: warning: label `done' defined but not usedpeter2001-06-151-1/+0
|
* Fix warnings:peter2001-06-151-1/+1
| | | | | | 554: passing arg 4 of `resource_string_value' from incompatible pointer type 576: passing arg 4 of `resource_string_value' from incompatible pointer type 593: passing arg 4 of `resource_string_value' from incompatible pointer type
* Fix warnings:peter2001-06-151-1/+0
| | | | | 1831: warning: unused variable `noise' 1831: warning: unused variable `sig'
* Fix warning: 179: warning: label `done' defined but not usedpeter2001-06-151-1/+0
|
* Fix warnings:peter2001-06-151-4/+4
| | | | | 1267: warning: suggest parentheses around comparison in operand of & 2087: warning: unused variable `li'
* Warning fix: coda_fbsd.c:113: warning: unused variable `ret'peter2001-06-152-2/+0
|
* Temporarily disable INTRO_USERCONFIG for the moment.peter2001-06-141-1/+1
| | | | Noted by: Dave Cornejo <dave@dogwood.com>
* Don't hardcode in "/release/doc/"; instead, make it the default of add2001-06-141-2/+5
| | | | | | new RELN_ANCHOR variable. It may be necessary to override this if the path to the checked out release notes tree doesn't end with "release/doc".
* If we're not going to use am7990_shutdown, comment it all out.mjacob2001-06-141-0/+4
| | | | MFC after: 2 weeks
* Fix Assembler buglet: Warning: .end directive names different symbol than .entmjacob2001-06-141-1/+1
| | | | MFC after: 2 weeks
* New release notes: New arp(8) keywords for proxy entries, new localebmah2001-06-142-0/+66
| | | | | names, route(8) has better error messages, new route(8) host/bits syntax, route(8) proxy-only published ARP entries, pkg_version(1) -s.
* We've had problems with data corruption occuring onmjacob2001-06-141-0/+21
| | | | | | | | | | commands that complete (with no apparent error) after we receive a LIP. This has been observed mostly on Local Loop topologies. To be safe, let's just mark all active commands as dead if we get a LIP and we're on a private or public loop. MFC after: 4 weeks
* New release notes: orm(4), VM out-of-swap fixes, IPv6 update frombmah2001-06-142-12/+72
| | | | | | | | KAME, isp(4) Fibre Channel update, dump(8) -T doesn't gobble its argument, libfetch authentication callback, libfetch HTTP_USER_AGENT, install(1) -d -C generates a warning, du(1) -I MFCs noted: RFC 1323/1644 back-off.
* Restore -M -N support for -m.ru2001-06-144-32/+69
| | | | PR: 20808
* Implement a loadable module for the oltr Olicom Token Ring driver. Ijoerg2001-06-142-1/+36
| | | | | | | | | | | | | | | | | | could only get a chance of testing it under 4.3, but together with the if_oltr.c fixes at least it seems to work now. If someone has the chance to test this under -current, please do. Unfortunaltey, the TR code itself (if_iso88025subr.c) is not written in a way that would allow to make a seaparate KLD out of it. By now, just link it directly into the oltr KLD since it's probably the POLA to be able to load the TR code together with the only TR hardware driver we've got by now. I've got one single unexplained panic (in doreti_switch or somewhere there, calling a 0xc1XXXXXX address that did no longer belong to the kernel at all) after unloading the modules once, thus i don't propose a MFC of this module despite my testing has been done solely on 4.3, unless someone is really going to test this stuff in -current.
* Do only call oltr_stop() if we are not already in OL_STOPPED state.joerg2001-06-141-3/+14
| | | | | | | | | | This avoids a null pointer deref panic in TRlldClose() inside the vendor-supplied object code. It's now possible to unload the driver at all. Implement deallocation of malloc()ed memory regions. MFC after: 2 months
* Removed -h option.ru2001-06-141-5/+1
|
* Really delete the -h option.ru2001-06-141-2/+2
| | | | | CSRG revision 5.33 deleted -h option from getopt(), but not from usage(). Revision 8.3 restored it in getopt().
* various locking fixes, rework open logic and channel registrationcg2001-06-145-144/+317
| | | | PR: kern/28084
* Commented out USERCONFIG and VISUAL_USERCONFIG options.nyan2001-06-141-2/+2
|
* Removed unused files.nyan2001-06-142-319/+0
|
* Correct typo.nyan2001-06-143-6/+6
|
* Moved the wd33c93 specific file to sys/dev/ic.nyan2001-06-145-11/+19
|
* Remove bogus include.bp2001-06-141-3/+0
|
* Coda do not call vop_defaultop(), so add nesessary calls for VM objects.bp2001-06-142-0/+6
| | | | | Submitted by: Greg Troxel <gdt@ir.bbn.com> MFC after: 2 days
* DECR() macro still depended on -traditional-cpp behaviour.ru2001-06-143-60/+60
| | | | Noticed by: bde
* Style nits:ru2001-06-142-4/+4
| | | | | | | GBINDIR -> ORIGBINDIR GBINGRP -> ORIGBINGRP Submitted by: bde
* The 3Com 3c505 has not been supported since 3.0.dd2001-06-142-6/+0
| | | | | | PR: 28085 Submitted by: Jon Hamilton <hamilton@pobox.com> References: rev. 1.209 of sys/i386/conf/files.i386
* Silence warnings and minor style fixes. Mostly constify and don'tdd2001-06-142-10/+14
| | | | | | assume that time_t is a long. Clamp down with WARNS=2. Not objected to by: -audit
* Start the correct copy of named (pass ${named_program} to ndc(8)).dd2001-06-141-1/+1
| | | | | PR: 27051 Submitted by: Maxim Konovalov <maxim@macomnet.ru>
* Pass -a to dmesg(8).dd2001-06-141-1/+1
| | | | | PR: 26870 Submitted by: Tomonobu AKIMOTO <akimoto@xephion.ne.jp>
* This program uses ndc(8); it doesn't send a signal itself.dd2001-06-142-20/+11
| | | | | PR: 28104 Submitted by: Maxim Konovalov <maxim@macomnet.ru>
* Part 2 of gensetdefs de-orbit burn. linker sets are now self containedpeter2001-06-145-430/+1
| | | | for ELF, see src/sys/linker_set.h log.
* As per comments in sys/linker_set.h:peter2001-06-142-420/+0
| | | | | | BANG! BANG! BANG! BANG! BANG! BANG! CLICK! CLICK! CLICK! CLICK! CLICK! <reload> BANG! BANG! BANG! BANG! BANG! BANG! CLICK! CLICK! CLICK! CLICK! CLICK!
* Nuke old gensetdefs based linker sets with extreme prejudicepeter2001-06-148-113/+14
|
* Fix libpam's linker set stuff to use the new API (unbreak world), and getpeter2001-06-142-19/+10
| | | | rid of gensetdefs from here as well.
* Respect REPLYTO in mailrc.mikeh2001-06-144-10/+8
| | | | | | PR: bin/8322 Submitted by: Philipp Mergenthaler <philipp.mergenthaler@stud.uni-karlsruhe.de> MFC after: 2 weeks
* Build on the change in revision 1.98 by Tor.Egge@fast.no.mckusick2001-06-131-13/+21
| | | | | | | | | | | The symptom being treated in 1.98 was to avoid freeing a pagedep dependency if there was still a newdirblk dependency referencing it. That change is correct and no longer prints a warning message when it occurs. The other part of revision 1.98 was to panic when a newdirblk dependency was encountered during a file truncation. This fix removes that panic and replaces it with code to find and delete the newdirblk dependency so that the truncation can succeed.
* Convert IIJ copyrights to BSD copyrights.brian2001-06-1340-687/+972
| | | | Approved by: Toshiharu OHNO <tohno@sirius.ocn.ne.jp>
OpenPOWER on IntegriCloud