summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Make whatis(1) happy.ru2004-04-161-0/+1
| |
* | Move ENABLE_ALART to proper place.obrien2004-04-161-1/+5
| | | | | | | | Submitted by: bde
* | Fix building on L64 machines.obrien2004-04-161-7/+7
| |
* | Add support for the ADMtek AN8513 USB Ethernet adapter.obrien2004-04-164-2/+11
| | | | | | | | Submitted by: taxman <taxman@freedombi.com>
* | Correct $FreeBSD$ style.obrien2004-04-162-4/+4
| |
* | make the bad bar warning less scary, and toss it behind a bootverbose.imp2004-04-161-2/+3
| | | | | | | | It is harmless, but freaking people out.
* | Turn off the power stuff for a little while longer. There appears to beimp2004-04-161-2/+2
| | | | | | | | something subtle wrong with it.
* | Forced commit to acknowledge Julian Elischer as the source of the previous fix.kientzle2004-04-160-0/+0
| |
* | --help is only supported if you have getopt_long().kientzle2004-04-161-0/+2
| | | | | | | | This allows bsdtar to compile on FreeBSD 4.x.
* | Set the "global" attribute on the page table entries for the kernel andalc2004-04-161-3/+3
| | | | | | | | | | | | direct mappings. This shaves a few seconds off of my buildworld times. Discussed with: peter@
* | Only enable the ACL restore logic on FreeBSD versions >= 5.0.kientzle2004-04-161-0/+3
| | | | | | | | | | | | | | | | | | Earlier versions of FreeBSD don't support ACLs. Note that the ACL support code in archive_entry is standalone code and unaffected by this. (In particular, it should be possible to manipulate archives containing ACLs even if the ACLs cannot be restored on the current system.)
* | - Use memory barrier with atomic operations in ntoskrnl_lock_dpc() andwpaul2004-04-165-56/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ntoskrnl_unlocl_dpc(). - hal_raise_irql(), hal_lower_irql() and hal_irql() didn't work right on SMP (priority inheritance makes things... interesting). For now, use only two states: DISPATCH_LEVEL (PI_REALTIME) and PASSIVE_LEVEL (everything else). Tested on a dual PIII box. - Use ndis_thsuspend() in ndis_sleep() instead of tsleep(). (I added ndis_thsuspend() and ndis_thresume() to replace kthread_suspend() and kthread_resume(); the former will preserve a thread's priority when it wakes up, the latter will not.) - Change use of tsleep() in ndis_stop_thread() to prevent priority change on wakeup.
* | As suggested by Julian Elischer, use a self-sizing hashkientzle2004-04-154-129/+279
| | | | | | | | | | | | | | | | table for the hardlink cache. This dramatically improves performance when archiving millions of hardlinked files. While I'm here, clean up some style bugs (per Bruce Evans) and clarify some comments.
* | Remove improper use of if_addrhead in device drivers to checkluigi2004-04-1510-55/+0
| | | | | | | | | | | | | | | | | | | | | | | | if the link-level address has been initialized already. The majority of modern drivers never does this and works fine, which makes me think that the check is totally unnecessary and a residue of cut&paste from other drivers. This change is done to simplify locking because now almost none of the drivers uses this field. The exceptions are "ct" "ctau" and "cx" where i am not sure if i can remove that part.
* | Document the way if_addrhead and struct ifaddr are used.luigi2004-04-151-3/+11
| | | | | | | | | | | | | | Remove a member from 'struct ifaddr' which has been in an #ifdef notdef block since rev 1.1 No ABI changes -- no need to recompile anything.
* | Whitespace nit in previous revision.ru2004-04-151-1/+1
| |
* | If IF_HANDOFF() or netisr_queue() fail, they will free the mbuf. Whenrwatson2004-04-151-0/+1
| | | | | | | | | | | | | | this happens, set (m) to NULL or we'll try to free it a second time on return. Submitted by: Pavel Gulchouck <gul@gul.kiev.ua>
* | Remove bogus checks on the value of ${entropy_file} and hardcode outbrooks2004-04-151-11/+3
| | | | | | | | | | | | | | entropy source to /entropy. We have to assume there is no rc.conf at this stage of the boot process. Reported by: njl
* | Band-aid diskless booting by running a new preseedrandom script beforebrooks2004-04-153-0/+49
| | | | | | | | | | | | | | | | | | | | | | initdiskless. The output of several commands and if available the contents of /entropy are feed into /dev/random to kickstart the PRNG. /etc/rc.d/initrandom is left alone to maintain the previous behavior as much as possiable. Further work in this area is probably needed. Discussed with: markm
* | use %zu instead of %zdrees2004-04-151-2/+2
| | | | | | | | Requested by: Bruce Evans
* | Add note that npx depends on isa.josef2004-04-152-2/+2
| | | | | | | | Approved by: green
* | s/atspeaker/speaker/cperciva2004-04-151-1/+1
| | | | | | | | | | | | | | cf. revision 1.2 of src/sys/modules/speaker/Makefile PR: conf/65195 Submitted by: daichi
* | Install the MIBs and the definition file to the new location underharti2004-04-151-2/+2
| | | | | | | | | | | | /usr/share/snmp. Noted by: bmah
* | Ensure that the poll_burst <= poll_burst_max constraint really holds.ru2004-04-151-0/+2
| | | | | | | | Reviewed by: luigi
* | Do a style fixup on the example function.markm2004-04-151-9/+9
| |
* | Update bmake glue for cvs-1.11.15, with apologies to Jacques for messingpeter2004-04-154-69/+7
| | | | | | | | up his day. The *.patch files are still fine for MFC'ing.
* | Change WriteTemplate to take const char * args.peter2004-04-152-8/+4
| | | | | | | | | | | | The Name_Root() call seems to be defunct, remove it because it was causing compile problems. The real magic seems to be in the Parse_Info() callback (which was also updated for const char * args).
* | Fix merge typo. Add missing ",".peter2004-04-151-1/+1
| |
* | This commit was generated by cvs2svn to compensate for changes in r128270,peter2004-04-151-92/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | Initial merge of cvs-1.11.5 -> 1.11.15 changes onto mainlinepeter2004-04-1525-2923/+3248
| |
* | This commit was generated by cvs2svn to compensate for changes in r128266,peter2004-04-15109-6583/+17773
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import cvs-1.11.15peter2004-04-15134-9506/+21037
| | |
* | | Turn off cvs build for a few hours while importing.peter2004-04-151-3/+3
| | |
* | | Turn on the amd64-specific bignum code in openssl. This is actuallypeter2004-04-141-0/+7
| | | | | | | | | | | | | | | | | | | | | a variant of the C code but with some scattered asm and things laid out more optimally for the platform. This means that we need to the asm directory to the search path for the amd64 case so that make can find the source.
* | | Let the NFS client notice a file's size changing as a modification.peadar2004-04-143-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids presenting invalid data to the client's applications when the file is modified, and then extended within the window of the resolution of the modifcation timestamp. Reviewed By: iedowse PR: kern/64091
* | | Check in structure definitions for the FreeBSD-3.x signal syscall stuff.peter2004-04-141-0/+43
| | | | | | | | | | | | Nothing uses these yet, but I dont want to lose them.
* | | Regenpeter2004-04-144-40/+49
| | |
* | | Catch up to the not-so-recent statfs(2) changes.peter2004-04-143-18/+49
| | |
* | | Don't allow the driver to be unloaded if the device node is open.ps2004-04-141-1/+4
| | |
* | | Remove the 'timeout' argument from aac_wait_command() as it isn't used andscottl2004-04-141-14/+10
| | | | | | | | | | | | | | | never will be. Update the XXX comment for this function to accurately reflect why things are the way they are.
* | | Do not catch signals when waiting for a request. This fixes a nastyps2004-04-141-14/+2
| | | | | | | | | | | | race when issuing commands from userland.
* | | Remove nowerror lines now that acpica is warns clean.njl2004-04-141-5/+5
| | |
* | | Remove warnings from vendor files. This takes some files off the vendornjl2004-04-144-11/+11
| | | | | | | | | | | | branch but they have indicated they will not fix these warnings.
* | | Added an entry for twa.4.vkashyap2004-04-141-0/+1
| | | | | | | | | | | | Reviewed by: ru
* | | Return an error immediately if asked to switch a non-existent consumer.njl2004-04-141-0/+4
| | |
* | | Add notes about the pci stuff that's currently working its way throughimp2004-04-141-0/+14
| | | | | | | | | | | | current.
* | | Now that the dust has settled on the resource issues, turn on theimp2004-04-141-2/+2
| | | | | | | | | | | | | | | power parts of my patches and see what breaks. Don't (yet) throw the chatty messages behind a if (bootverbose).
* | | Remove a non-variable static and move other static variables to the samenjl2004-04-141-8/+5
| | | | | | | | | | | | location.
* | | Fix some warnings by commenting out unused code.njl2004-04-141-0/+8
| | |
* | | Only try to set the ACPI power state if the handle is valid. There wasnjl2004-04-141-6/+10
| | | | | | | | | | | | | | | probably no problem with this except it may have had the side effect of registering a NULL consumer.
OpenPOWER on IntegriCloud