summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rather than entering the debugger via kdb_enter() when detecting memoryrwatson2007-05-271-12/+6
| | | | corruption under SMBUFS_NAME_DEBUG, panic() with the same error message.
* Rather than entering the debugger via kdb_enter() in the event therwatson2007-05-271-5/+2
| | | | | root vnode is unexpectedly locked under NULLFS_DEBUG in nullfs and then returning EDEADLK, panic.
* Rather than entering DDB with the message "unexpected error" and wedgingrwatson2007-05-271-2/+1
| | | | | | the card, panic explicitly if EN_DEBUG is enabled. In the (default) case of !EN_DEBUG, the driver resets the card. Probably this case shouldn't exist at all.
* silence some compiler complaintssam2007-05-271-10/+10
|
* Add man pages for mmc (the mmc bus) and mmcsd (the memory cardimp2007-05-273-0/+114
| | | | implementation).
* fix compile warning by removing redundant LOG_ERR definekmacy2007-05-271-1/+0
|
* set IFF_OACTIVE to avoid hangs when the tx ring fills upkmacy2007-05-272-0/+10
|
* There are too many false positive LORs reported by WITNESS, so when ZFSpjd2007-05-264-4/+28
| | | | | | debug is turned off, initialize locks with NOWITNESS flag. At some point I'll get back to them, we would probably need BLESSING functionality, which is currently turned off by default.
* lex(1) no longer installs headers into GCC-internal dirsru2007-05-261-3/+3
| | | | (since src/usr.bin/lex/Makefile,v 1.20).
* A careful reading of the disclaimer that is required to download theimp2007-05-268-0/+216
| | | | | | | | | SD Simplified specification, as well as other SD and SDIO implemenations I've examined, suggest this disclaimer may be required. It is unclear to me exactly what the license would be for, or why it might be required. Err on the side of caution and include this disclaimer so anybody deploying this code can judge for themselves. I have no further unformation about the details.
* To avoid a deadlock when handling .. directory during a lookup, we unlockpjd2007-05-251-3/+6
| | | | | | | parent vnode and relock it after locking child vnode. The problem was that we always relock it exclusively, even when it was share-locked. Discussed with: jeff
* We no longer need to put namecache entries onto temporary mplist.pjd2007-05-251-11/+3
| | | | It was useful in revision 1.86, but should have been removed in 1.89.
* The cache_leaf_test() function seems to be unused, so remove it.pjd2007-05-252-32/+0
|
* The printf %b list in PRINT_TH_FLAGS has to be in octal numbering.andre2007-05-251-1/+1
| | | | | | Thus convert \8 to \10 and the warnings go away. Pointed out by: sam, ru, thompsa
* - Use m_getcl() rather than m_getjcl() when we're allocating 2KBgallatin2007-05-251-1/+10
| | | | | | | | | clusters. This helps quite a bit on my low end machines (improves performance by about 300Kpps when being blasted by a hardware packet generator). - Include one extended f/w counter forgotten in earlier commit Sponsored by: Myricom Inc.
* add missed headerkmacy2007-05-251-0/+148
|
* Remove unnecessary free argument casts.brian2007-05-254-32/+29
| | | | Don't abuse arcname's constness.
* update license headerskmacy2007-05-252-6/+6
|
* add toe device header missed by previous commitkmacy2007-05-251-0/+172
|
* Cleanup after previous commit.brueffer2007-05-251-3/+5
|
* Add a new option for ppp.conf: rad_port_id. It allows tonovel2007-05-254-12/+80
| | | | | | | | | | | | | | | change the way of what ppp submits to the RADIUS server as NAS-Port-Id. Possible options are: the PID of the process owning the corresponding interface, tun(4) interface number, interface index (as it would get returned by if_nametoindex(3)), or it's possible to keep the default behavior. Check the ppp(8) manual page for details. PR: bin/112764 Submitted by: novel (myself) Reviewed by: flz Approved by: flz MFC after: 1 month
* Include string.h for memcpy() and memcmp().delphij2007-05-251-0/+1
|
* Make the comparsion more obvious.delphij2007-05-251-1/+2
|
* Const'ify and ANSIfy the internal interfaces of regex(3).delphij2007-05-251-109/+100
| | | | | This is the final change that makes libc to compile with WERROR on my amd64 crashbox.
* ANSIfy function definitions, reduces diff against OpenBSD.delphij2007-05-251-17/+8
|
* Also fix the misspelling of hes_resolve().ru2007-05-251-1/+1
| | | | Submitted by: Danny Braniss
* The usage of "info" in init_hash() is read-only, so constifydelphij2007-05-251-3/+3
| | | | | the internal interface instead of casting away the constant constraint upon calling.
* (MFp4)kmacy2007-05-2523-1117/+4913
| | | | | | | | | | - upgrade to reflect state of 1.0.0.86 - move from firmware rev 3.2 to 4.0.0 - import driver bits for offload functionality - remove binary distribution clause from top level files as it runs counter to the intent of purely supporting the hardware MFC after: 3 days
* Update for the 4.21 import (manuals didn't change).ru2007-05-252-2/+2
|
* Re-add support for NIS netgroups (heavily modified from patch in PR)des2007-05-251-4/+22
| | | | | | PR: bin/112955 Submitted by: A. Blake Cooper <blake@cluebie.net> MFC after: 3 weeks
* do not directly call rtfree() to meet an assumption in the callee.jinmei2007-05-251-6/+9
| | | | | | | (this fix suppresses a warning message appearing in the boot time on IPv6-enabled systems) Approved by: gnn (mentor)
* Add a sysctl, 'debug.acpi.suspend_bounce', that causes the system to bouncenjl2007-05-251-0/+8
| | | | | | | | | back in a simulated resume instead of entering the requested suspend state. This helps in testing drivers separately from the acpi suspend code. To test your drivers, set debug.acpi.suspend_bounce=1 and then run acpiconf -s3 (or 4). MFC after: 1 day
* Include stand.h for loader.simokawa2007-05-251-0/+3
| | | | MFC after: 3 days
* - When I introduce wide character enabled ncurses into base, all headersrafan2007-05-254-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | are installed twice (once in non-widec version, onec in widec version). Headers with widec enabled are compatible with non-widec version for libraries. However, if you do a repeat build/install, the curses.h is always overwritten. The reason is that headers and statics libraries are installed with -S option to preserve their mtime if no actual changes, which saves time when doing incremental builds. The curses.h is installed by non-widec ncurses first, then by widec ncurses. So next time, it happens again. You see something like this: # pwd /usr/src/lib/ncurses # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) install: curses.h -> /usr/include/curses.h ===> ncursesw (installincludes) install: curses.h -> /usr/include/curses.h # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) install: curses.h -> /usr/include/curses.h ===> ncursesw (installincludes) install: curses.h -> /usr/include/curses.h The solution is to disable installing headers in non-widec version. Now you see this: # pwd /usr/src/lib/ncurses # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) ===> ncursesw (installincludes) # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) ===> ncursesw (installincludes) For form/panel/menu libraries, the headers are the same for both version. To be consistent with ncurses, I also disable the installation in non-widec version. Reported by: des Reviewed by: ru Thanks to: ru Approved by: delphij (mentor) MFC after: 2 weeks
* remove unneccessary curcpu reference in setting mmfsakmacy2007-05-251-3/+1
|
* move trap table initialization for cpu0 into sparc64_initkmacy2007-05-252-17/+36
|
* FreeBSD has <limits.h>.obrien2007-05-242-0/+6
|
* s/X11R6/local/gdes2007-05-243-4/+4
|
* Update for the 'file' 4.21 import.obrien2007-05-243-4/+4
|
* This commit was generated by cvs2svn to compensate for changes in r169962,obrien2007-05-2458-951/+1943
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of Christos Zoulas's FILE 4.21.obrien2007-05-2459-955/+1959
| |
* | Temporarily add 'WITH_GCC3' that removes -Wno-pointer-sign from theobrien2007-05-242-1/+6
| | | | | | | | | | | | | | compiler invocation. This is just to help get over the hump of people tracking down bugs that may cross the GCC 4.2 upgrade. It is envisioned that this option goes away after a suitable amount of time.
* | Enable FTP_COMBINE_CWDS.des2007-05-242-10/+2
| |
* | Fix handling of filenames containing whitespace.le2007-05-241-3/+3
| | | | | | | | | | PR: bin/112860 MFC in: 3 days
* | Fix for PR 112937, thanks to Ruslan Ermilov. I am stilljfv2007-05-241-1/+0
| | | | | | | | | | | | a bit confused how the 'link flap' was connected to the 'get' rather than 'set' address, but this seems the right thing to do here.
* | Search for a proper ucode image to use by incrementing the minorsam2007-05-243-8/+43
| | | | | | | | | | | | | | | | release number up to the max. This should eliminate the need to tweak the default imageid define for later releases that are found on the Intel web site. MFC after: 1 month
* | o add hints for avila boards; brings back i2c devices lost when iicbussam2007-05-242-1/+46
| | | | | | | | | | | | | | started using hints instead of wired down device enumeration o add usb commented out; will enable when support works MFC after: 1 month
* | Move to hints for configuring numerous devices so we can eliminate varioussam2007-05-242-50/+107
| | | | | | | | | | | | | | | | | | quirky code: uarts, led, cf/ide, ixpqmgr, npe are now specified with hints. May want to put some of these devices back in the code and just use hints to override/specify configuration. MFC after: 1 month
* | Don't muck with the internal state of a uart during probe, all wesam2007-05-241-7/+3
| | | | | | | | | | | | | | | | | | should setup is the class. This corrects an issue where enabling uart1 on the avila board caused uart0 to stop working during boot (no msgs generated by rc scripts were displayed). Reviewed by: imp MFC after: 3 weeks
* | Fix interrupt setup; rev 1.3 switched the irq to GPIO_TYPE_ACT_LOWsam2007-05-241-10/+9
| | | | | | | | | | | | | | | | but this does not work on avila boards; special case them to use GPIO_TYPE_EDG_RISING. MFC after: 3 weeks Submitted by: jhay
OpenPOWER on IntegriCloud