summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* G/C some cruft.jhb2006-02-284-74/+4
|
* - Autogenerate a menu containing a list of countries and keymaps supportedjhb2006-02-2814-8/+392
| | | | | | | | | | | | | | | by syscons. - If we are running as init, popup the country menu before the main menu. If a non-default country is chosen, then a second menu is brought up to let the user choose a keymap. By default the default keymap for the country that was selected is highlighted. If the user chooses the default country, then the default keymap is just assumed and the user is not presented with the keymap menu. Currently the default country is set to "United States" except for PC98 which assumes "Japan". PR: bin/93853 Submitted by: Seth Kingsley sethk at magnesium dot net MFC after: 3 days
* Allow PHOLD()'s of curproc even if P_WEXIT is set. Normally we don't wantjhb2006-02-281-1/+2
| | | | | | | | | | | | | | | | to allow PHOLD()'s of processes that have P_WEXIT set as once that flag is set we aren't guaranteed to block in exit1() waiting for the PRELE() (we might already be past the wait). However, curproc is a bit of a special case. By the time P_WEXIT is set, the process is single-threaded, so the only thread for which can do a PHOLD(curproc) is the thread executing in exit1(). The fact that this thread is executing ensures that the process won't go away before the current hold is released via PRELE(). This fixes some panics due to kicking off softupdate operations inside of exit1() after the recent PHOLD changes to fix ptrace/procfs vs exit races. MFC after: 1 week Tested by: pho
* update examples to use the correct terms that was never updated when thejmg2006-02-281-3/+3
| | | | | | earlier descriptions were gone over... MFC after: 3 days
* regen for 32bit sendfileps2006-02-284-6/+6
|
* Fix 32bit sendfile by implementing kern_sendfile so that it takesps2006-02-284-58/+124
| | | | | | | | the header and trailers as iovec arguments instead of copying them in inside of sendfile. Reviewed by: jhb MFC after: 3 weeks
* when acpi does not explicitly enumerate lapic/cpu's there shouldsam2006-02-281-1/+1
| | | | | | only be 1 Reviewed by: jhb
* Const'ify arguments to a couple of functions to fix breakagedeischen2006-02-282-3/+3
| | | | with -O2.
* use standard mode instead of 500 for /sbin/init.luigi2006-02-281-1/+0
| | | | | | | | | | | | | | | As discussed on -current, there is no sensitive info in /sbin/init to prevent reading it from non-privileged users, nor any reason to remove the 'x' bit as the first thing the program does is check the uid and exit if it is not run by root. Instead (and this is why i make the change), mode 500 prevents operation when exporting the partition without -maproot=0 to diskless clients. All previuos releases are affected by the same problem, so a merge to RELENG_6 at least would be appropriate (after proper re@ approval of course).
* Fix mpt_reset to try mpt_hard_reset more than once, and to trymjacob2006-02-282-43/+86
| | | | | | | | | | | | | | | | | | mpt_soft_reset more than once. And to wait for MPT_DB_STATE_READY twice. I mean, this is crucial- give the IOC a chance to get ready. If mpt_reset is called to reinit things, and we succeed, make sure to re-enable interrupts. This is what has mostly led to system lockup after having to hard reset the chip. Also, if we think that interrupts aren't function in mpt_cam_timeout, for goodness sake, turn them on again. In read_cfg_header, return distinguishing errnos so the caller can decide what's an error. It's *not* an error to fail to read a RAID page from a non-RAID capable device like the FC929X. Some whitespace fixes (removing spaces from ends of lines).
* Don't do a time travel to 12006...delphij2006-02-281-1/+1
|
* Reimplement mutex_init to get rid of compile warning.davidxu2006-02-281-88/+39
|
* Make ukbd(4) to not delay break scancodes in "raw" mode.emax2006-02-281-3/+1
| | | | | | | Developed with: Norbert Koch < NKoch at demig dot de > No response from: freebsd-current@ Tested by: Norbert Koch < NKoch at demig dot de > MFC after: 1 day
* Fix up the Bridge Identifier field in the BPDU packet.thompsa2006-02-281-15/+30
| | | | | | | | | | - use the cu_bridge_id rather than the cu_rootid for the bridge address [1] - the memcmp return value is not signed so the wrong interface may have been selected - fix up the calculation of sc_bridge_id PR: kern/93909 [1] MFC after: 3 days
* Correct the vnode locking in fdescfs.kris2006-02-281-4/+2
| | | | | | | PR: kern/93905 Submitted by: Kostik Belousov <kostikbel@gmail.com> Reviewed by: jeff MFC After: 1 week
* Get this to compile with the recent UART changes.cognet2006-02-271-3/+3
|
* Bump a date in .Dd field. Last change brought some new functionality.wkoszek2006-02-271-1/+1
| | | | | | Spotted by: brueffer Approved by: cognet (mentor) MFC after: 1 week
* Extend kldunload(8) functionality and fix minor problems:wkoszek2006-02-273-40/+50
| | | | | | | | | | | | | | | | o multiple modules can be unloaded at once (specified either by id or be module name) o exit with EX_USAGE after usage() is called. o remove unused variables, since we keep command line flags as bitmask, in 'opt'. o 'kldload -n ...' does nothing. Add comment to this options. Additionally: o Update manual page to conform new functionality. o Increace WARNS to 6. Because we can. Approved by: cognet (mentor) MFC after: 1 week
* Staticize a couple of functions.deischen2006-02-2723-71/+106
| | | | | | Remove a few unused locks. Remove locks from application namespace.
* Correct a comment.deischen2006-02-273-22/+6
| | | | | | | | | Staticize two tables thare are not visible in <resolv.h> and which are also local in Solaris' libresolv. Remove two functions that are not referenced in libc nor anywhere else I can find, not visible in <resolv.h> and which are also local in Solaris libresolv.
* DDB depends on KDB for some time now.brueffer2006-02-271-1/+2
| | | | | Submitted by: Kent Stewart <kstewart@owt.com> MFC after: 3 days
* Big style(9) fix. This commit brings no functional change.wkoszek2006-02-271-53/+56
| | | | | Approved by: cognet (mentor) MFC after: 1 week
* Plug memory leakemax2006-02-271-0/+4
| | | | MFC after: 1 day
* A bandaid to unbreak world.ru2006-02-271-0/+1
|
* Fix a botched commit that broke world.ru2006-02-271-2/+5
|
* explain what list chan displayssam2006-02-271-4/+23
| | | | MFC after: 1 week
* Since we set the decription, we don't need to also print it. Noticed by: ru@imp2006-02-271-2/+0
|
* Don't forget to free the ifaces when we free the ivarsimp2006-02-271-1/+3
|
* Avoid moving onto a new line while testing if there is a syslog prioritydwmalone2006-02-271-1/+2
| | | | | | | | | in the buffer. This isn't exactly the patch that Stephen submitted, but is based on one of his suggestions. PR: 93841 Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu> MFC after: 2 weeks
* backout 1.136 until we can resolve report that it causes output to stallsam2006-02-272-42/+18
|
* This patch fixes a problem, which exists if you have IPSEC in your kernelwkoszek2006-02-274-3/+4
| | | | | | | | | | | and want to have crypto support loaded as KLD. By moving zlib to separate module and adding MODULE_DEPEND directives, it is possible to use such configuration without complication. Otherwise, since IPSEC is linked with zlib (just like crypto.ko) you'll get following error: interface zlib.1 already present in the KLD 'kernel'! Approved by: cognet (mentor)
* Connect zlib to the build.wkoszek2006-02-271-1/+2
| | | | Approved by: cognet (mentor)
* Document how to change the polling interval for the 64-bit interfaceharti2006-02-271-0/+6
| | | | counters in case an interface reports the wrong speed via if_mib.
* Reconnect bsnmpd to the build. It was temporarily disable because of aharti2006-02-271-0/+1
| | | | mis-import. Thanks for fixing this to markm@.
* This commit was generated by cvs2svn to compensate for changes in r156066,harti2006-02-2727-78/+377
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of bsnmpd 1.12harti2006-02-2727-78/+377
| |
* | Fix pmccontrol(8) on Intel Xeon's running in 64 bit mode.jkoshy2006-02-271-1/+1
| | | | | | | | PR: kern/93773
* | CODA_COMPAT_5 may not be defined unconditionally in the coda5 module.yar2006-02-273-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | Otherwise a kernel build would break in the coda5 module if the main kernel conf file enabled CODA_COMPAT_5, too. Redefined symbols are strictly disallowed by -Werror. To overcome this issue, introduce a different symbol indicating coda5 build, CODA5_MODULE, and translate it to CODA_COMPAT_5 appropriately in /sys/coda/coda.h. MFC after: 3 days
* | Add a man page for mkfilters(1) and put the corrected perl script in thedarrenr2006-02-273-1/+10
| | | | | | | | | | | | ipfilter usr/share directory PR: docs/26879
* | Detect that the "audit" group is missing earlier during install.ru2006-02-271-1/+1
| |
* | One more grammar nit.glebius2006-02-271-1/+1
| | | | | | | | Submitted by: ru
* | Disable custom locking in the vkbd(4) for now and make it rely on theemax2006-02-271-2/+20
| | | | | | | | | | | | | | Giant mutex (just like the rest of keyboard drivers and syscons(4) do). Tested by: markus MFC after: 1 day
* | Add SWIDTH information for zh_CN.eucCN.delphij2006-02-271-0/+88
| | | | | | | | | | | | Submitted by: ume Obtained from: NetBSD MFC Candidate.
* | Add the Tripp-Lite U209-000-R serial adapter.iedowse2006-02-272-0/+5
| | | | | | | | | | PR: usb/78543, usb/93347 MFC after: 1 week
* | It has not been possible to specify a dumpdev in loader.conf since 2002,kris2006-02-271-10/+0
| | | | | | | | so don't raise false hopes here.
* | Fix typo in manual page reference.wkoszek2006-02-261-1/+1
| | | | | | | | | | Approved by: cognet (mentor) MFC after: 3 days
* | Reference sha256(1) instead of sha256(8), which doesn't exist.wkoszek2006-02-261-1/+1
| | | | | | | | | | Approved by: cognet (mentor) MFC after: 3 days
* | Remove the ill-considered effect of using the type definitions asmjacob2006-02-263-38/+55
| | | | | | | | | | distributed by LSI-Logic. For FreeBSD, just use the posix defines instead of trying to figure out how wide an int is. Apologies to all.
* | propagate role of device for ISP_GET_PDBINFOmjacob2006-02-261-0/+1
| |
* | The UQ_OPEN_CLEARSTALL entry added in revision 1.48 is no longeriedowse2006-02-261-2/+0
| | | | | | | | | | | | required now that we save the data toggle when closing a pipe. Verified by: Fredrik Lindberg
OpenPOWER on IntegriCloud