summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanup.jake2002-08-291-3/+5
|
* Initiate deorbit burn of i386 a.out kld "support" in loader. Note thatpeter2002-08-296-14/+2
| | | | | | this was quite broken, it never was updated for metadata support. The a.out kld file support was never really used, as it wasn't necessary. You could always load elf kld's, even in an a.out kernel.
* Removed legacy signal trampoline.jake2002-08-293-24/+2
|
* Removed support for in-kernel signal code.jake2002-08-291-4/+12
|
* Resolve conflicts arising from the ACPI CA 20020815 import.iwasaki2002-08-2919-172/+178
|
* This commit was generated by cvs2svn to compensate for changes in r102550,iwasaki2002-08-2977-892/+3736
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20020815 drop.iwasaki2002-08-2990-1043/+3876
| |
* | Initiate deorbit burn for sys/kern/link_aout.c. We never shipped a.outpeter2002-08-292-2/+0
| | | | | | | | | | | | | | kld's anywhere, and it was always possible to load ELF kld's even in an a.out kernel. There is no reason for this to exist anymore, and a.out kld support has been suffering serious bitrot over the years. They have not been fully functional for quite some time.
* | Don't require that sysentvec.sv_szsigcode be non-NULL.jake2002-08-291-3/+7
| |
* | Unrot SPARSE_MAPPING code (vm_map_pageable -> vm_map_wire).jake2002-08-292-8/+8
| |
* | updatepri() works on a ksegrp (where the scheduling parameters are), sopeter2002-08-283-21/+24
| | | | | | | | | | | | | | directly give it the ksegrp instead of the thread. The only thing it used to use in the thread was the ksegrp. Reviewed by: julian
* | OK, I have had it with losing my console because the AP's print their "I ampeter2002-08-286-30/+72
| | | | | | | | | | | | alive!" message right as the scsi probe messages happen. This is a bit nasty, but it seems to work. At the point that we unlock the AP's, briefly wait till they are all done while we hold the console on their behalf.
* | Only try to flush the FIFO of 500 characters, return EIO if that fails.phk2002-08-281-1/+6
| | | | | | | | | | This at least prevents the total hang of the machine when I open a PCCARD sio device on -current, but it does not solve the problem.
* | accept(2) on a socket that has been shutdown(2) normally returnsarchie2002-08-281-5/+4
| | | | | | | | | | | | | | | | | | | | | | ECONNABORTED. Make this happen in the non-blocking case as well. The previous behavior was to return EAGAIN, which (a) is not consistent with the blocking case and (b) causes the application to think the socket is still valid. PR: bin/42100 Reviewed by: freebsd-net MFC after: 3 days
* | Allow one to grab the definition of struct ucred by defining _WANT_UCREDalfred2002-08-281-8/+4
| | | | | | | | | | | | | | instead of forcing _KERNEL. Move the include of sys/_label.h in ucred.h under the _KERNEL || _WANT_UCRED case.
* | Add a device description for Intel 82801CA/CAM (ICH3) USB controllerjoe2002-08-282-0/+10
| | | | | | | | | | | | USB-C. PR: kern/41963
* | Change default value of hw.acpi.sleep_delay to 0.iwasaki2002-08-281-1/+1
| | | | | | | | This caused problems (reset or lock up) at wakeup.
* | Add IFF_POLLING into the list of flags which are protected from changing viasobomax2002-08-281-1/+2
| | | | | | | | | | | | ioctl(SIOCSIFFLAGS). MFC after: 1 day
* | Marginally simplify dsp_open error handling by adding an early test toorion2002-08-281-68/+51
| | | | | | | | | | | | | | determine liklihood of opening device in requested directions. Makes for simpler error handling and change should close kern/35004. PR: kern/35004.
* | Finally merge in the changes from ipfilter 3.4.29 to freebsd-current.darrenr2002-08-2813-73/+298
| | | | | | | | Main changes here are related to the ftp proxy and making that work better.
* | This commit was generated by cvs2svn to compensate for changes in r102514,darrenr2002-08-283-0/+696
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import IPfilter 3.4.29. Main purpose is to address ftp proxy problems.darrenr2002-08-283-0/+696
| | |
| * | Update IP Filter kernel sourcedarrenr2001-02-0414-119/+259
| | |
| * | Import IP filter 3.4.13darrenr2000-10-298-48/+58
| | |
| * | Import IP Filter 3.4.12 into kernel source treedarrenr2000-10-2614-192/+613
| | |
| * | Import IP Filter 3.4.9 bits into the kerneldarrenr2000-08-1310-102/+367
| | |
| * | import ipfilter 3.4.8darrenr2000-07-1913-112/+226
| | |
| * | Import IP Filter 3.4.4 into the kerneldarrenr2000-05-2420-2519/+6875
| | |
| * | This commit was manufactured by cvs2svn to create branch 'DARRENR'.cvs2svn1999-12-063-0/+612
| | |
* | | Add a new command: show pciregs, equivalent to pciconf -lguido2002-08-281-0/+77
| | | | | | | | | | | | | | | Reviewed by: Doug Rabson (quite some time ago) MFC after: 1 week
* | | printf -> CAM_DEBUG so debugging prints are tunable.njl2002-08-281-60/+47
| | | | | | | | | | | | MFC after: 1 week
* | | Use csio pointer instead of dereferencing hcb.njl2002-08-281-5/+5
| | | | | | | | | | | | MFC after: 1 week
* | | Forward declare struct thread so that this header doesn't depend on itsbde2002-08-281-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | own namespace pollution/compatibility cruft. Removed the main part of the pollution. All clients have been converted to either not depend on getting old locking interfaces from this new locking header, or usual case to get it from another header (typically vnode.h, where declaring old loccking interfaces is less bogus because vnode.h uses them internally).
* | | Add \n to various printfs. grep shows these should be the last ones.njl2002-08-271-3/+3
| | |
* | | Fix this pending the decision of which of the redundantimp2002-08-271-4/+2
| | | | | | | | | | | | sys/modules/{pc,}cbb/Makefile to remove.
* | | Bugfix to enable dialer "connected" response.hm2002-08-271-3/+12
| | |
* | | Removed explicit rule for creating a null opt_bus.h. kmod.mk does thisbde2002-08-271-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | automatically once opt_foo.h is in SRCS, modulo some carelessness in removing garbage in stale versions of opt_foo.h (touch(1) should not be used to create opt_foo.h in kmod.mk or elsewhere). Cleaned up nearby rule for creating opt_ddb.h.
* | | <sys/lock.h> is a prerequisite for <sys/mutex.h>, so include the formerbde2002-08-271-0/+1
| | | | | | | | | | | | | | | here before the latter instead of depending on namespace pollution in <sys/mumble.h> or on accidentally placed includes in netsmb/*.c.
* | | Include <sys/lockmgr.h> for old lock interfaces instead of depending onbde2002-08-2714-0/+14
| | | | | | | | | | | | namespace pollution in <sys/lock.h>.
* | | Include <sys/lockmgr.h> for old lock interfaces instead of includingbde2002-08-271-1/+1
| | | | | | | | | | | | <sys/lock.h> solely for its namespace pollution.
* | | Include <sys/lockmgr.h> for the definitions of the locking interfaces thatbde2002-08-271-2/+2
| | | | | | | | | | | | | | | | | | are implemented here instead of depending on namespace pollution in <sys/lock.h>. Fixed nearby include messes (1 disordered include and 1 unused include).
* | | Fix a bug about the cooling system controlling in acpi_thermal driver.iwasaki2002-08-272-11/+37
| | | | | | | | | | | | | | | | | | | | | Recent version of ACPI CA returns the package object which contains object reference elements if the elements are named objects. We need to be careful when you use acpi_ForeachPackageObject() in new code...
* | | Whitespace fix from last commit.trhodes2002-08-271-2/+4
| | |
* | | Fix some grammar errors in loader.conf.5trhodes2002-08-271-11/+11
| | | | | | | | | | | | | | | PR: 40237 Submitted by: Chris Pepper <pepper@rockefeller.edu>
* | | Have to create opt_bus.h for sys/bus.h to be happy. *sigh*jhb2002-08-261-1/+3
| | | | | | | | | | | | Noticed by: imp and others
* | | Oops, forgot to hook up the ACPI PCI bus in the module.jhb2002-08-261-3/+3
| | | | | | | | | | | | Noticed by: imp
* | | Back out TX/RX descriptor/buffer management changes from earier commit.pdeuskar2002-08-262-216/+312
| | | | | | | | | | | | | | | | | | We are having panics with the driver under stress with jumbo frames. Unfortunately we didnot catch it during our regular test cycle. I am going to MFC the backout immediately.
* | | Add a new KTR type KTR_CONTENTION, and use it in the mutex code toiedowse2002-08-263-1/+42
| | | | | | | | | | | | | | | | | | | | | | | | log the start and end of periods during which mtx_lock() is waiting to acquire a sleep mutex. The log message includes the file and line of both the waiter and the holder. Reviewed by: jhb, jake
* | | Hook up the new ACPI PCI bus and catch up to ACPI PCI bridge driver changes.jhb2002-08-262-1/+4
| | |
* | | Add WITNESS_FILE() and WITNESS_LINE(), which allow users of witnessiedowse2002-08-262-0/+32
| | | | | | | | | | | | | | | | | | | | | to print out the file and line from the lock object. These will be used shortly by CTR() calls in the mutex code. Reviewed by: jhb, jake
OpenPOWER on IntegriCloud