summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Mention the sa_handler and sa_sigaction #defines in the synopsis.brian2001-07-311-3/+7
| | | | | | Mark sa_sigaction consistently. MFC after: 1 week
* When we receive a CHAP81 challenge response, we always expect the lastbrian2001-07-311-0/+5
| | | | | | | | | | byte of the packet to contain '\0'. Windows 98 gets this wrong, dropping garbage into the last byte and failing authentication. Now, we notice this and whinge to our log file that we're compensating for the corrupt data.
* Add a "X KBytes of wired memory reserved" metric that representsbmilekic2001-07-311-11/+14
| | | | | | | | | approximately the amount of memory allocated from the mbuf maps and sitting in the mbuf allocator's cache containers, and display in parantheses the percentage of said memory that is actually in use at the given time `netstat -m' is executed. Suggested by: mjacob
* If LCP proto-rej is received, drop the protocol mentioned by the message.ume2001-07-311-1/+59
| | | | | | | | This is to be friendly with non-IPv6 peer (If the peer complains due to lack of IPv6CP, drop IPv6CP). This basically implements "RXJ+" state transition in the RFC. Obtained from: NetBSD
* A bunch of interrupt related cleanup.imp2001-07-313-67/+98
| | | | | | | | | | | | | o Move PIOCSRESOURCE from pccard to pcic so the kernel can give pccardd better hints as to what resources to use. o Implement an undocumented hw.pcic.interrupt_route to allow people that need to do so to route their interrupts in a non-standard way. o Only preallocate a resource in probe if we're routing via pci. o If we aren't routing via pci, then set the irq to use explicitly to defeat the automatic IRQ routing of the pci layer. This, with the pccardd code should be close to what can be committed to -stable.
* Move pcic_override_irq from pcic_isa, to pcic.imp2001-07-313-9/+8
|
* Add CLPD6832_BCR_ISA_IRQ definition for ISA routing of interrupts.imp2001-07-311-3/+3
| | | | Minor commentary tweaking.
* Have pccardd always ask the kernel for the IRQ to use. The kernelimp2001-07-312-38/+47
| | | | | | | | | | will soon return the irq from the pcic bridge in cases where't that's appropriate. Note: I've had to disbale -I option for the moment. I've made it easy to reenable it for people that need it. MFC After: soon!
* Flesh out the sparc64 port considerably. This contains:jake2001-07-3146-453/+6905
| | | | | | | | | - mostly complete kernel pmap support, and tested but currently turned off userland pmap support - low level assembly language trap, context switching and support code - fully implemented atomic.h and supporting cpufunc.h - some support for kernel debugging with ddb - various header tweaks and filling out of machine dependent structures
* Add skeleton machine dependent headers and c files for a port of freebsdjake2001-07-3140-0/+3068
| | | | | | | | | | | | | | | | | | | | to a new architecture. This is the base of the sparc64 port, but contains limited machine dependent code, and can be used a base for ports. Included are: - standard machine dependent headers, tweaked for a 64 bit, big endian architecture, including empty versions of all the machine dependent structures - a machine independent atomic.h, which can be used until a port has support for interrupts and the operations really need to be atomic - stub versions of all the machine dependent functions, which panic when called and print out the name of the function that needs to be implemented. functions which are normally in assembly files are not included, but this should reduce the number of different undefined references on the first few compiles from hundreds to 5 or 6 Given minimal startup code and console support it should be trivial to make this compile and run the first few sysinits on almost any architecture. Requested by: alfred, imp, jhb
* Remove an accidental comma that managed to creep in with the last commit.eric2001-07-312-2/+2
|
* Machine dependent ifdefs for sparc64.jake2001-07-313-2/+5
|
* Oops. Last commit to vm_object.c should have got these files too.jake2001-07-313-8/+4
| | | | | | | Remove the use of atomic ops to manipulate vm_object and vm_page flags. Giant is required here, so they are superfluous. Discussed with: dillon
* Remove the use of atomic ops to manipulate vm_object and vm_page flags.jake2001-07-311-11/+6
| | | | | | Giant is required here, so they are superfluous. Discussed with: dillon
* Don't try to find an eventhandler list if the list of lists hasn'tjake2001-07-311-0/+3
| | | | been initialized yet.
* Don't try to print a field that doesn't exist; in usually commentedjake2001-07-311-2/+2
| | | | out debugging code.
* Use a machine dependent type, Elf_Hashelt, for the elements of the elfjake2001-07-317-10/+65
| | | | | | | | dynamic symbol table buckets and chains. The sparc64 toolchain uses 32 bit .hash entries, unlike other 64 bits architectures (alpha), which use 64 bit entries. Discussed with: dfr, jdp
* Removed PLIP support.nyan2001-07-312-1312/+0
|
* Make the openfirmware functions work on 64 bit architectures by usingjake2001-07-312-237/+241
| | | | | | | a standard cell_t type for the fields of all argument structs. Also make ihandle_t and phandle_t unsigned to avoid sign extension problems. Approved by: benno
* Quiet uninitialized variable warning (also a bug).jake2001-07-311-0/+2
|
* Use the POSIX syntax for chown.obrien2001-07-301-1/+1
| | | | Submmited by: garrett
* Merge in patch to automagically decide whether or not a kldload of ipfilterdarrenr2001-07-307-0/+91
| | | | | | | | | | is required into rc.network. Person failed to use a real name so both email addresses from PR included (Sent was different to From). PR: 22998 Submitted by: dl@leo.org/spock@empire.trek.org
* More updates from Chad.alfred2001-07-309-9/+314
| | | | | Submitted by: Chad David <davidc@acns.ab.ca> Reviewed by: sheldonh
* Document the debug.debugger_on_panic tunable, for those poor soulssheldonh2001-07-301-0/+20
| | | | | | | | | who didn't realize that DDB_UNATTENDED just sets its starting value. This change is over 5 years late, and documents the original semantics of debug.debugger_on_panic, which may have been changed by the (again undocumented) change in rev 1.44 of kern_shutdown.c.
* Fix the third argument to sysctlbyname() to be of the type size_t *tmm2001-07-301-1/+2
| | | | | | (instead of int *). MFC after: 2 days
* Add Mac OS X 10.0 and 10.1 as well as Darwin.asmodai2001-07-301-71/+77
| | | | | | | Partially submitted by the PR, the rest by yours truly, corrections welcomed. PR: 26137 Submitted by: trevor
* If we're set to non-interactive, we shouldn't ask the user yes/no questionsjkh2001-07-303-4/+10
| | | | but simply return the default answer instead.
* Check the filehandle size when mounting.peter2001-07-302-0/+4
| | | | Obtained from: Constantine Sapuntzakis <csapuntz@openbsd.org>
* FreeBSD now also defines EIDRM and uses it.asmodai2001-07-301-8/+0
| | | | | | Inspired by PR: 22470 Which was submitted by: Bjorn Tornqvist <bjorn@west.se> MFC after: 1 week
* Fix obsolete code.asmodai2001-07-301-5/+0
| | | | | | | | FreeBSD _does_ define ENOMSG, so no need for checking if we support it. Inspired by PR: 22470 Which was submitted by: Bjorn Tornqvist <bjorn@west.se> MFC after: 1 week
* Remove bogus BUGS section.asmodai2001-07-301-6/+1
| | | | | | | | FreeBSD _does_ define ENOMSG as per SVID when IPC_NOWAIT is set. PR: 22470 Submitted by: Bjorn Tornqvist <bjorn@west.se> MFC after: 1 week
* txp(4) isn't i386-only.dd2001-07-302-2/+2
|
* Simplify (and hopefully clarify) some date-parsing arithmetic.wollman2001-07-301-1/+1
|
* Note import of BIND 8.2.4-REL and the MFC of txp(4)dd2001-07-302-2/+8
|
* Add an entry for the commonly used (although unofficial) kpop port.dougb2001-07-301-0/+2
| | | | | | PR: conf/21551 Submitted by: Luis Casillas <casillas@stanford.edu> Reviewed by: rwatson
* Fix build.asmodai2001-07-301-3/+0
| | | | | | | | | | | | | | | | | | | I am not sure who thought that making FreeBSD depend on ISC's libbsd was a sensible thing to do. Thus I have ripped out the define of gettimeofday() and isc__gettimeofday() out of this file, since we: 1) Don't use nor build libbsd (FreeBSD might give a hint in its name as to why) 2) Our gettimeofday() is the same in semantics as prototyped in ISC's libbsd. This was something which could have been fixed before it was released if we had at least some insight into the development process. But my praying fell on deaf ears it seems. Of course, if I am wrong I welcome the corrections to my thinking, gladly even.
* If the peer REJects our MRU REQ, stop REQing it -- *EVEN* if we'rebrian2001-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | doing PPPoE and the default MRU is therefore too big. When negotiating with win2k, we ask for MRU 1492 and the win2k box NAKs us saying ``MRU 1492''. This doesn't make sense to me. When we continue to request MRU 1492, the win2k box eventually REJs our MRU. This fix allows negotiations to continue at that point, bringing the link up and potentially allowing the win2k box to send us frames that are too large. AFAICT this is better than failing to bring the link up.... probably ! I have no idea how to do the equivalent of ``route get'' or ``ifconfig -a'' under win2k, so I can't tell what MTU it actually ends up using. I believe the bug is in win2k (it's certainly mis-negotiating). I'll MFC given the release engineers permission as code freeze begins on August 1. PR: 29277 MFC after: 3 days
* Make spacing consistant and set WARNS correctly.brooks2001-07-301-4/+4
|
* Resolve conflicts.asmodai2001-07-303-7/+15
|
* This commit was generated by cvs2svn to compensate for changes in r80650,asmodai2001-07-3054-396/+789
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of BIND v8.2.4-RELasmodai2001-07-3057-403/+804
| |
* | Don't use ".nofinger" as a string constant from within the codeyar2001-07-302-1/+3
| | | | | | | | since there is the ``pathnames.h'' file; use _PATH_NOFINGER instead.
* | style(9)obrien2001-07-301-29/+59
| |
* | The variable giving the name of the temporary password file wasghelmer2001-07-301-5/+5
| | | | | | | | | | | | | | | | inconsistently named "ptmp" and "etc_ptmp". This commit changes it to "passwd_tmp" for consistency and to match OpenBSD's name for the variable. Consulted with: jedgar
* | Since we remove skey...ache2001-07-302-31/+0
| |
* | WARNS-2'ify.obrien2001-07-302-12/+14
| | | | | | | | (this included removing the funny "if (unsigned_var < 0)" test)
* | Document Bzip2's flag.obrien2001-07-301-1/+1
| | | | | | | | | | PR: 27901 Submitted by: Anders Nordby <anders@fix.no> (stylistic changes by me)
* | Add the ability to Bzip2 your logs.obrien2001-07-303-7/+63
| | | | | | | | | | PR: 27901 Submitted by: Anders Nordby <anders@fix.no> (stylistic changes by me)
* | Fixed world breakage when NOSHARED=yes. libmp now depends on libcrypto,bde2001-07-302-6/+6
| | | | | | | | so it must be linked before libcrypto to work right.
* | Since the ``-w'' sysctl(8) option has been deprecated,yar2001-07-302-2/+2
| | | | | | | | don't mention it in the manpages.
OpenPOWER on IntegriCloud