summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Change m_devget()'s outdated and unused `offset' argument to actually meanbmilekic2001-06-2015-90/+57
| | | | | | | | | | | | | | | | | | | | something: offset into the first mbuf of the target chain before copying the source data over. Make drivers using m_devget() with a first argument "data - ETHER_ALIGN" to use the offset argument to pass ETHER_ALIGN in. The way it was previously done is potentially dangerous if the source data was at the top of a page and the offset caused the previous page to be copied (if the previous page has not yet been appropriately mapped). The old `offset' argument in m_devget() is not used anywhere (it's always 0) and dates back to ~1995 (and earlier?) when support for ethernet trailers existed. With that support gone, it was merely collecting dust. Tested on alpha by: jlemon Partially submitted by: jlemon Reviewed by: jlemon MFC after: 3 weeks
* Remove a duplicate entry.jhb2001-06-201-3/+0
|
* Preemption by an interrupt thread is an involuntary switch, not a voluntaryjhb2001-06-201-1/+1
| | | | | | one. Pointy-hat to: me
* Applied the patch to fix HARP ATM that was broken when KAME IPv6 camepirzyk2001-06-202-1/+4
| | | | | | | | into FreeBSD. PR: kern/23620 Submitted by: rh@matriplex.com MFC after: 1 month
* The serial console break-to-debugger support only functioned whileiedowse2001-06-202-2/+42
| | | | | | | | | | | | | | the console device was open. At other times, the interrupts that are used to detect the break signal or ~^B sequence were disabled, so these events would not be noticed until the next open (e.g. the next kernel printf). This was mainly a problem while there was no getty running on the console, such as during bootup or shutdown. For serial consoles with break-to-debugger support, we now enable the generation of interrupts at attach time, and we leave them enabled while the device is closed. Reviewed by: bde (I've since made chages as per his suggestions)
* Constify (silence warnings introduced by last commit to sys/module.h)des2001-06-201-7/+7
|
* Update the manpage to reflect reality (and what was already in -stable).luigi2001-06-201-199/+144
|
* o Add a -a flag for changing/getting the ALTPIN setting for a digi port.brian2001-06-202-19/+99
| | | | | o For the -i switch, only show the device if more than one is given on the command line.
* Allow individual ports to use alternate pin settings (swap dsr & cd)brian2001-06-202-12/+89
| | | | | | | | | | | via the new DIGIIO_SETALTPIN ioctl, and allow the port's ALTPIN setting to be queried via DIGIIO_GETALTPIN. The initial state and lock devices are normally used to set and/or lock ALTPIN settings although the device itself may also be used. ALTPIN settings are applied per-device and apply to both the callin and callout device at the same time.
* Add DIGIIO_SETALTPIN and DIGIIO_GETALTPIN ioctl valuesbrian2001-06-201-5/+7
|
* Move variable assignement after argument parsing, to improve handlingluigi2001-06-201-8/+33
| | | | | | of alternate source trees. Also improve verbose behaviour.
* Change default value of rtadvd_enable to NO to be compatible withume2001-06-201-1/+1
| | | | | | | | | | | | | | | | | | | | the following description in RFC2461: AdvSendAdvertisements A flag indicating whether or not the router sends periodic Router Advertisements and responds to Router Solicitations. Default: FALSE Note that AdvSendAdvertisements MUST be FALSE by default so that a node will not accidentally start acting as a router unless it is explicitly configured by system management to send Router Advertisements. Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp> MFC after: 1 week
* made sure to use the correct sa_len for rtalloc().ume2001-06-202-4/+4
| | | | | | | | | | sizeof(ro_dst) is not necessarily the correct one. this change would also fix the recent path MTU discovery problem for the destination of an incoming TCP connection. Submitted by: JINMEI Tatuya <jinmei@kame.net> Obtained from: KAME MFC after: 2 weeks
* Close a race where we were releasing the unit resource at the startbrian2001-06-201-2/+4
| | | | | | | | | | | | of tunclose() rather than the end, and tunopen() grabbed that unit before tunclose() finished (one process is allocating it while another is freeing it!). It may be worth hanging some sort of rw mutex around all specinfo calls where d_close and the detach handler get a write lock and all other functions get a read lock. This would guarantee certain levels of ``atomicity'' (is that a word?) that people may expect (I believe Solaris does something like this).
* Work around the problem in RELENG_4 where the file doesn't actuallydougb2001-06-201-7/+13
| | | | | | | | | | exist, and therefore mm_install is returning the "fail" value of the test instead of the "success" value for install. This change is a no-op on HEAD, but since the only harm on RELENG_4 ATM is a spurious warning it can follow the usual MFC practice. Submitted by: A cast of thousands :-/
* Revert last change: it was unintended at this time.imp2001-06-201-31/+37
|
* Add new entries for:imp2001-06-202-38/+35
| | | | | | | TI1210, TI4410 and TI4450 and fix what looks like a typo in the OZ6860 entry. Obtained from: NetBSD
* Document the interactive command `what'.mikeh2001-06-201-0/+4
| | | | | Reviewed by: ru MFC after: 2 weeks
* Add B921600 (yes, some serial ports can do this, but generic sio not supportache2001-06-202-0/+2
| | | | them yet)
* Fix typo which could lead to memory leak.mikeh2001-06-201-1/+1
| | | | | PR: misc/28283 MFC after: 2 weeks
* This compiles cleanly with WARNS=2; make sure it stays that way.dd2001-06-201-2/+3
|
* Don't arbitrarily limit tabstop expansions to 256 characters.dd2001-06-201-1/+1
| | | | Submitted by: Oliver Fromme <oliver.fromme@heim3.tu-clausthal.de>
* Put the scheduler, vmdaemon, and pagedaemon kthreads back under Giant forjhb2001-06-202-19/+1
| | | | | now. The proc locking isn't actually safe yet and won't be until the proc locking is finished.
* Add a SEE ALSO section.dd2001-06-201-0/+6
|
* Miscellaneous mdoc(7) fixes; also expand contractions.dd2001-06-201-22/+19
| | | | Submitted by: ru
* Constify the module name. This silences a few warnings ("initializationdes2001-06-191-2/+2
| | | | | | | discards qualifier"), and probably adds a few where module names are compared to or passed as non-const strings. Not-objected-to-by: bde
* Add configuration for a FAITH IPv6-to-IPv4 TCP translator.ume2001-06-193-0/+61
| | | | | To use a FAITH actually, you also need faithd(8) setup. Please consult faithd(8) manpage.
* Made all fields in default output be space separated. Run-togetherschweikh2001-06-191-11/+6
| | | | | | | | | | columns confuse the heck out of other apps trying to parse vmstat output (eg sscope). I made sure we're still <= 80 cols per line. Fixed warnings about unused vars and printf %format mismatches. Requested by: Eugene Aleynikov <eugenea@infospace.com> Reviewed by: joerg (implicitly) MFC after: 2 weeks
* Actually document TCPDEBUG.wollman2001-06-192-2/+6
|
* Fix punctuation in comment.wollman2001-06-192-4/+4
|
* Fix a couple of tips, and add a new one.nik2001-06-191-15/+8
| | | | Submitted by: Alexey V. Neyman <avn@any.ru>
* Suppress update ifnet.iflastchange when processing packets for SNMPsumikawa2001-06-191-1/+0
| | | | | | | | | | | | | requirements(RFC1573, interface MIB). This change for 4.4BSD was first introduced in if_ethersubr.c:1.17->1.18. BTW, iflastchange on all of IFs are inconsistent. e.g. ether, tun: update fddi, tokenring, ppp: not update I'll make patch later. Obtained from: KAME MFC after: 2 weeks
* Add more headers that are required with -fno-builtin (stdlib and strings)des2001-06-195-0/+6
|
* Add IFT_L2VLAN for supported NDP type. IPv6 over VLAN works now.sumikawa2001-06-192-0/+9
| | | | | Obtained from: KAME MFC after: 2 weeks
* More verbose version of identifycpu() which also contains many more CPUbenno2001-06-192-48/+98
| | | | | | | | versions/revisions. Modified from the original patch to mark G3 and G4 processors as such. Submitted by: Jeff Schottmiller <jeff@neoscale.com>
* <stdlib.h> is needed for exit(3) when building with -fno-builtin.des2001-06-191-0/+1
|
* Convert the elf loader to the new linker set layout for elf files.peter2001-06-191-6/+7
| | | | | | This should make dependencies at load time work like before. Oops. Noticed by: markm
* Fix some of the worst formatting bug (seperate commit)peter2001-06-191-2/+4
|
* This commit was generated by cvs2svn to compensate for changes in r78460,ru2001-06-191-2/+2
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring in FSF revision 1.17:ru2001-06-191-2/+2
| | | | | | | | | | | | | | | | * src/roff/troff/node.h (node::node): Initialize `last'. This fixes coredump on \b'\(sq' sequence. Urged by: eivind
| * Removed files not present in v1.17 import.ru2001-04-17628-219491/+0
| |
* | Correct some typos.dd2001-06-191-2/+2
| | | | | | | | | | PR: 28251 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su>
* | stat(2) filesystem quotas act on, not filesystem quotas file resides on.mikeh2001-06-191-1/+1
| | | | | | | | | | PR: bin/4949 MFC after: 2 weeks
* | Call clnt_destroy() to prevent exhausting resources.mikeh2001-06-192-0/+3
| | | | | | | | | | | | PR: bin/14255 Reviewed by: Kenji Tomita <tommy@ti.com> MFC after: 2 weeks
* | Cleanup the mix of styles in this file:mikeh2001-06-191-125/+124
| | | | | | | | | | | | | | | | | | - spaces -> tabs - return(0) -> return (0) - wrap longlines Reviewed by: md5 MFC after: 2 weeks
* | This command has more than four options.dd2001-06-191-1/+1
| |
* | Add IBM "High Rate Wireless LAN PC Card", a rebadged Lucent WaveLAN/IEEE.grog2001-06-191-1/+7
| | | | | | | | MFC after: 2 weeks
* | Print "-" instead of "" in the grace field if there is no gracedd2001-06-191-2/+2
| | | | | | | | | | | | | | period; this keeps the number of whitespace-separated fields constant. PR: 15739, 23908 Submitted by: Valentin Nechayev <netch@netch.kiev.ua>
* | CND has been unused for two years, and RND has been unused for fivedd2001-06-191-1/+1
| | | | | | | | | | | | | | years; remove them from CFLAGS. PR: 23712 Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
* | Hook mdmfs into the build.dd2001-06-181-0/+1
| |
OpenPOWER on IntegriCloud