summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | Introduce mdmfs(8), a wrapper around mdconfig(8), disklabel(8),dd2001-06-184-0/+930
| | | | | | | | | | | | | | newfs(8), and mount(8) that mimics the command line option set of the deprecated mount_mfs(8). Approved by: jkh, phk, -hackers
* | add ircs, per IANAdbaker2001-06-181-0/+2
| | | | | | | | MFC after: 3 days
* | Call va_start/va_end for each call to vfprintfbrian2001-06-181-2/+4
| | | | | | | | Obtained from: OpenBSD
* | Fix spelling of `errno' and add cross-references.wollman2001-06-181-6/+13
| |
* | Document _SC_IOV_MAX. Add cross-references to pathconf(2), confstr(3), andwollman2001-06-181-3/+16
| | | | | | | | | | getconf(1). This document still needs to be sorted and to have other missing parameters described.
* | Fix some memory bugs with regard to jumbo buffers. I made a mistake whenwpaul2001-06-184-16/+10
| | | | | | | | | | | | | | | | | | | | converting from the old external mbuf buffer code to the new (with the MEXTADD() macro). Also free free list memory correctly in foo_free_jumbo_mem() routines: grab the head of the list, then remove it, _then_ free() it. This fixes the memory corruption problem I've been chasing in the level 1 driver.
* | When processing -a, strip off the path of the argument before copyingdd2001-06-181-3/+4
| | | | | | | | | | | | it to the output. Reviewed by: alex
* | Added CTLTYPE_{UINT|LONG|ULONG} types.pirzyk2001-06-181-9/+12
| | | | | | | | | | | | PR: kern/21132 Reviewed by: no objections to by -arch MFC after: 1 month
* | modfied sysctl command to allow setting values > 2GB if the mib supports it.pirzyk2001-06-181-1/+19
| | | | | | | | | | | | PR: kern/21132 Reviewed by: no objections to by -arch MFC after: 1 month
* | Typo/mind-o fixes.wpaul2001-06-182-2/+2
| |
* | Correct getopt usage and a syntax error (period used instead of a semicolon).dd2001-06-181-2/+2
| |
* | After one too many PRs on the subject, bite the bullet and define IOV_MAXwollman2001-06-187-1/+31
| | | | | | | | | | | | | | | | and its associated constants. Implement _SC_IOV_MAX in the usual way. Be a bit sloppy about the namespace question; this should get cleared up in time for 5.0. MFC after: 1 month
* | Xref zcat(1).dd2001-06-181-0/+1
| |
* | stop csa from panicing in clkrun_hack() - we were using free'd memorycg2001-06-181-4/+3
| | | | | | | | | | | | don't leak memory in clkrun_hack() Submitted by: grog (partially)
* | Lock Giant in postsig() for the KTRACE case as ktrpsig() needs Giant whenjhb2001-06-181-0/+4
| | | | | | | | | | | | it writes out to the trace file. Reported by: peter, gallatin, and others
* | Initialize mutexes needed early on all in the same place so that thejhb2001-06-182-30/+12
| | | | | | | | | | | | startup routine more closely matches that of alpha and ia64. At some point the common mutexes shared across all platforms probably should move into sys/kern_mutex.c.
* | - Add support for decoding syscall names. (Brought over from the new alphajhb2001-06-182-74/+122
| | | | | | | | | | | | | | | | | | | | | | | | trace code that was brought over from NetBSD.) - Check for "syscall_with_err_pushed" as the label prior to a syscall trap frame rather than "Xlcall_syscall" and "Xint0x80_syscall". We don't have a valid trapframe during the short range of code that those two symbols now cover. - Simplify db_next_frame() to avoid duplicating the code for the different trap frame types. - Don't try to trace a swapped-out process. (Brought over from NetBSD via the new alpha trace code.)
* | Include sys/pcpu.h to get the prototype for globaldata_register() to quietjhb2001-06-186-0/+6
| | | | | | | | a warning.
* | Call bus_teardown_intr when csa_attach fails after the interrupt hastmm2001-06-181-31/+29
| | | | | | | | | | | | | | | | been set up. PR: kern/28178 Reviewed by: cg MFC after: 2 weeks
* | If the username we are trying to look up in the db files won't fit intodwmalone2001-06-181-1/+3
| | | | | | | | | | | | | | | | the buffer then act like it doesn't exist. The buffer is always big enough for any valid username. PR: 27860 Reviewed by: nectar
* | Pick up the correct headers from sys/contrib/ipfilter/netinet.ru2001-06-187-24/+23
| |
* | Removed duplicate copies of files already present in sys/contrib/ipfilter.ru2001-06-1820-14489/+0
| | | | | | | | Not objected to by: -arch
* | Use linker_reference_module() instead of hard-coding the digi_*brian2001-06-181-14/+7
| | | | | | | | module path.
* | Add linker_reference_module().brian2001-06-182-0/+30
| | | | | | | | | | This function loads a module if required, otherwise bumps the reference count -- the opposite of linker_file_unload().
* | Credit John Prince and Eric Hernes for their work.brian2001-06-183-1/+9
| |
* | Add support for stateful MPPE (microsoft encryption) providingbrian2001-06-1811-188/+669
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | encryption compatibility with Windows 2000. Stateful encryption uses less CPU but is bad on lossy transports. The ``set mppe'' command has been expanded. If it's used with any arguments, ppp will insist on encryption, closing LCP if the other end refuses. Unfortunately, Microsoft have abused the CCP reset request so that receiving a reset request does not result in a reset ack when using MPPE... Sponsored by: Monzoon Networks AG and FreeBSD Services Limited
* | Handle hardware-imposed MTU/MRU limitations. PPPoE will no longerbrian2001-06-1821-80/+246
| | | | | | | | | | | | | | | | | | | | | | | | allow MRU/MTU negotiations to exceed 1492. Add an optional ``max'' specifier to ``set m[rt]u'', ie. set mtu max 1480 Bump the ppp version number. Sponsored by: Monzoon Networks AG and FreeBSD Services Limited
OpenPOWER on IntegriCloud