summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was generated by cvs2svn to compensate for changes in r154182,harti2006-01-101-0/+1
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor fix: initialize the flag field of a newly created node to be 0.harti2006-01-101-0/+1
| | | | | | | | Submitted by: jasone
* | This commit was generated by cvs2svn to compensate for changes in r154180,harti2006-01-102-3/+17
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor fix: make the default read and write communities NULL. Thisharti2006-01-102-3/+17
| | | | | | | | | | | | basically disables any access unless other strings are set in the config file. Note, that there is no way to set the communities back to NULL once they're set to something not NULL.
* | This commit was generated by cvs2svn to compensate for changes in r154178,harti2006-01-101-3/+4
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor patch: fix a bug when parsing the include path.harti2006-01-101-3/+4
| |
* | Add a (disabled) configuration line to enable the HOST-RESOURCES MIB.harti2006-01-101-0/+6
| |
* | Move the old BSD4.3 tty compatibility from (!BURN_BRIDGES && COMPAT_43)phk2006-01-1017-38/+24
| | | | | | | | | | | | | | | | | | | | | | | | to COMPAT_43TTY. Add COMPAT_43TTY to NOTES and */conf/GENERIC Compile tty_compat.c only under the new option. Spit out #warning "Old BSD tty API used, please upgrade." if ioctl_compat.h gets #included from userland.
* | More thorough fixes to enable inverted external amplifier sense flag.ariff2006-01-101-5/+12
| | | | | | | | | | | | | | | | Instead of dragging the entire ICH4/82801DB into this mess, select only few boards based on pci subdevice / subvendor. Tested by: Daisuke Orikasa <luxury-acura-3.5rl at nifty.com> MFC after: 3 days
* | Add functions and macros and refactor code to make it easier to managescottl2006-01-102-117/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fast taskqueues. The following have been added: TASKQUEUE_FAST_DEFINE() - create a global task queue. an arbitrary execution context. TASKQUEUE_FAST_DEFINE_THREAD() - create a global taskqueue that uses a dedicated kthread. taskqueue_create_fast() - create a local/private taskqueue. These are all complimentary of the standard taskqueue functions. They are primarily useful for fast interrupt handlers that can only use spinlock for synchronization. I personally think that the taskqueue API is starting to get too narrow and hairy, but fixing it will require a major redesign on the API. Such a redesign would be good but would break compatibility with FreeBSD 6.x, so it really isn't desirable at this time. Submitted by: sam
* | /etc/crontab is similar enough to parse as correct if you runbrooks2006-01-101-0/+4
| | | | | | | | | | | | | | | | | | "crontab /etc/crontab", but not the same format due to the who field. Add some limited anti-foot-shooting support and refuse to load /etc/crontab as someone's crontab. Users wishing shoot their foot in this manner may copy /etc/crontab elsewhere. :) MFC After: 1 week
* | Mention the -b flag in the SYNOPSIS.brooks2006-01-101-1/+1
| | | | | | | | MFC after: 1 week
* | When we give up on an interface, use the arp(8) command to remove allbrooks2006-01-101-2/+5
| | | | | | | | | | | | | | | | entries from the interface rather than using ifconfig's delete command. This preserves non-dhclient configured addresses (though they are wiped out when dhclient is restarted). MFC after: 1 week
* | Remove code describing pre 5.x systemimp2006-01-101-19/+0
| |
* | Allow the -i <interface> option with -d -a to allow all arp entries forbrooks2006-01-102-1/+2
| | | | | | | | a given interface to be removed.
* | Allow users to add aliases to the interface.brooks2006-01-101-13/+13
| | | | | | | | | | PR: bin/87465 (different solution used) MFC after: 1 week
* | Use macro STATIC_LIB_REQUIRE to declare a symbol should be linked intodavidxu2006-01-102-95/+74
| | | | | | | | static binary.
* | Don't free the ap object if it was never created.scottl2006-01-101-1/+2
| | | | | | | | Submitted by: jkim
* | Hook ufoma module to build.takawata2006-01-101-0/+1
| | | | | | | | Pointed out by:thompsa
* | Add marker vnodes to ensure that all vnodes associated with the mount point aretegge2006-01-0914-66/+197
| | | | | | | | | | | | iterated over when using MNT_VNODE_FOREACH. Reviewed by: truckman
* | Fix -r causing SIGSEGV due to parse_args() being called before font_current ↵flz2006-01-091-3/+3
| | | | | | | | | | | | | | is set. Approved by: krion MFC after: 3 days
* | If the lock passed to getdirtybuf() is the softdep lock then the backgroundtegge2006-01-091-0/+13
| | | | | | | | | | | | | | write completed wakeup could be missed. Close the race by grabbing the lock normally used for protection of bp->b_xflags. Reviewed by: truckman
* | Broaden scope of softdep_worklist_busy rwlock protection of softdep processingtegge2006-01-091-1/+19
| | | | | | | | | | | | to avoid some dependencies being missed by softdep_flushworklist(). Reviewed by: truckman
* | Add documents URL.takawata2006-01-091-0/+6
| |
* | Obtain mount point lock before restarting sync loop if vget() failed.tegge2006-01-091-0/+1
| | | | | | | | Reviewed by: truckman
* | Add man page for ufoma(4) in poor English and formatting.takawata2006-01-091-0/+117
| |
* | Add -K option to pkg_add and pkg_info.flz2006-01-0910-18/+71
| | | | | | | | | | | | | | | | | | This option saves packages to PKGDIR (if defined or current directory by default) as they are downloaded. Silent a warning when -n is used and package has a +DISPLAY file. Approved by: krion MFC after: 1 week
* | o Fix typo in the define: s/MRAK_INT_GEN/MARK_INT_GEN/. The typomaxim2006-01-092-2/+2
| | | | | | | | | | | | was harmless because the define is not used in coda_vfsops.c. Submitted by: Hugo Meiland
* | Add ufoma drivers in 'files', too.takawata2006-01-091-0/+1
| |
* | Add FOMA (NTT DoCoMo 3G mobile phone system) driver.takawata2006-01-092-0/+1115
| | | | | | | | | | | | | | This is based on MCPC USB mobile phone guide line (MCPC-GL005) Some other 3G system or so will work with this driver. Kyocera PHS terminal (a.k.a. Kyopon) is known to work, which is now supported by umodem(4) driver.
* | Update monitoring support:sam2006-01-093-40/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o record tsf in tx+rx frames o switch from raw rssi to dbm for signal data and record both signal and noise floor data (hacked for now to assume a fixed noise floor; is correct with new hal) o add monpass sysctl to control which rx'd frames are passed up with errors; especially useful to see frames with CRC errors o mark 'd packets w/ a CRC error with radiotap's BADFCS flag Also add placeholder code for calibrating the noise floor when using newer hals. Reviewed by: avatar MFC after: 1 week
* | add flag to tag frames w/ a known bad FCSsam2006-01-091-0/+1
| | | | | | | | | | Obtained from: netbsd MFC after: 1 week
* | Forced commit because I lost the commit message in the previous commit:harti2006-01-090-0/+0
| | | | | | | | | | | | | | | | This is the implementation of the HOSTRES MIB that was developed by Victor during SoC 2005 with some stylification by philip@ and harti@. Submitted by: Victor Cruceru <soc-victor@freebsd.org> Reviewed by: philip, harti
* | Kill empty line.joel2006-01-091-1/+0
| |
* | Connect the HOSTRES MIB to the build.harti2006-01-091-0/+1
| |
* | msgharti2006-01-0918-0/+7005
| |
* | Turn on inverted external amplifier sense flags for ICH4/82801DB.ariff2006-01-091-0/+10
| | | | | | | | | | PR: kern/66422, kern/75687, kern/84471 MFC after: 2 days
* | added a note about the assumption for m->m_pkthdr.rcvifsuz2006-01-091-0/+8
| | | | | | | | | | Obtained from: KAME MFC After: 1 day
* | Rescue pthread_set_name_np for compatible reason, remove unused code.davidxu2006-01-092-151/+10
| |
* | Tweak macro THR_LOCK_RELEASE a bit for non-PTHREAD_INVARIANTS case.davidxu2006-01-091-7/+14
| |
* | By popular demand, move __HAVE_ACPI and __PCI_REROUTE_INTERRUPT intoimp2006-01-0912-13/+15
| | | | | | | | | | | | | | | | param.h. Per request, I've placed these just after the _NO_NAMESPACE_POLLUTION ifndef. I've not renamed anything yet, but may since we don't need the __. Submitted by: bde, jhb, scottl, many others.
* | Fix obvious capabilities (rate) violation. Should be 5500, not 4000.ariff2006-01-091-1/+1
| | | | | | | | MFC after: 1 day
* | Return real detached state.davidxu2006-01-091-0/+2
| |
* | Enable NO_GETMAXLUN quirk.flz2006-01-091-1/+2
| | | | | | | | | | | | | | PR: usb/90670 Submitted by: Wojciech A. Koszek <dunstan@freebsd.czest.pl> Approved by: iedowse MFC after: 1 week
* | o DragonFly 1.4.0 added.maxim2006-01-081-0/+2
| |
* | There should be no need to retry when the CCB status code isiedowse2006-01-081-0/+2
| | | | | | | | | | | | | | CAM_LUN_INVALID or CAM_TID_INVALID. Retries were being triggered here when a umass device was unplugged, and while the retries themselves are probably harmless, they complicated finding the real SIM removal problems.
* | Add support for Canon CanoScan D660U.netchild2006-01-083-0/+4
| | | | | | | | | | PR: 87395 Submitted by: Eirik Mikkelsen <eirik@bsdbox.org>
* | Langauge fixes required to disambiguate some statements.gnn2006-01-081-84/+114
| | | | | | | | Explain the examples.
* | Bump .Dd date after latest changes.flz2006-01-081-1/+1
| | | | | | | | Approved by: simon
* | - Add an entry for Acer Acerscan 1240U.flz2006-01-081-1/+3
| | | | | | | | | | | | Reminded by: simon Approved by: simon MFC after: 3 days
OpenPOWER on IntegriCloud