summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Make the isab devclass global to allow for multiple ISA bridge drivers.jhb2003-07-083-12/+29
| | | | | | | - Factor out code common to all ISA bridge drivers attach methods into a isab_attach() function. - Rename the PCI-ISA bridge driver's attach function to pci_isab_attach() and have it call isab_attach().
* Add my birthday to the calendar.blackend2003-07-081-0/+1
|
* Bring build(7) in sync with src/Makefile by removing documentationsmkelly2003-07-081-29/+0
| | | | | | | | | | | for targets that have been unsupported since April: - upgrade - aout-to-elf - aout-to-elf-build - aout-to-elf-install - move-aout-libs Approved by: imp
* Correct to match reality regarding interface names.dannyboy2003-07-082-6/+11
| | | | | | | PR: 51006 Submitted by: "Dmitry Pryanishnikov" <dmitry@atlantis.dp.ua> mdoc clue by: "Simon L. Nielsen" <simon@nitro.dk> MFC after: 10 days
* Remove utmp references, no longer done by login(1) in 5.x.dannyboy2003-07-081-15/+3
| | | | | PR: 54201 Submitted by: mdg <mdg@secureworks.net>
* pam_lastlog, not login, in 5.x.dannyboy2003-07-081-12/+9
| | | | | PR: 54200 Submitted by: Matthew George <mdg@secureworks.net>
* When _PTHREADSINVARIANTS is defined SIGABRT is not includedmtm2003-07-083-2/+19
| | | | | | in the set of signals to block. Also, make the PANIC macro call abort() instead of simply exiting.
* * introduce a section on SYNTAX to document the handlingluigi2003-07-081-44/+77
| | | | | | | | | | | | | | spaces and comma-separated lists of arguments; * reword the description of address specifications, to include previous and current changes for address sets and lists; * document the new '-n' flag. * update the section on differences between ipfw1 and ipfw2 (this is becoming boring!) MFC after: 3 days
* A bunch of changes (mostly syntactic sugar, all backward compatible):luigi2003-07-081-251/+383
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Make the addr-set size optional (defaults to /24) You can now write 1.2.3.0/24{56-80} or 1.2.3.0{56-80} Also make the parser more strict. * Support a new format for the list of addresses: 1.2.3.4,5.6.7.8/30,9.10.11.12/22,12.12.12.13, ... which exploits the new capabilities of O_IP_SRC_MASK/O_IP_DST_MASK * Allow spaces after commas to make lists of addresses more readable. 1.2.3.4, 5.6.7.8/30, 9.10.11.12/22, 12.12.12.13, ... * ipfw will now accept full commands as a single argument and strip extra leading/trailing whitespace as below: ipfw "-q add allow ip from 1.2.3.4 to 5.6.7.8, 9.10.11.23 " This should help in moving the body of ipfw into a library that user programs can invoke. * Cleanup some comments and data structures. * Do not print rule counters for dynamic rules with ipfw -d list (PR 51182) * Improve 'ipfw -h' output (PR 46785) * Add a '-n' flag to test the syntax of commands without actually calling [gs]etsockopt() (PR 44238) * Support the '-n' flag also with the preprocessors; Manpage commit to follow. MFC after: 3 days
* Merge the handlers of O_IP_SRC_MASK and O_IP_DST_MASK opcodes, andluigi2003-07-081-17/+13
| | | | | | | | | | | | support matching a list of addr/mask pairs so one can write more efficient rulesets which were not possible before e.g. add 100 skipto 1000 not src-ip 10.0.0.0/8,127.0.0.1/8,192.168.0.0/16 The change is fully backward compatible. ipfw2 and manpage commit to follow. MFC after: 3 days
* - When stealing a kse in kseq_move() ignore the current kseq's min nicejeff2003-07-081-7/+13
| | | | | value. We want to steal any thread, even one that is not given a slice on its current queue.
* Put some concrete limits on pipe memory consumption:silby2003-07-083-17/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Limit the total number of pipes so that we do not exhaust all vm objects in the kernel map. When this limit is reached, a ratelimited message will be printed to the console. - Put a soft limit on the amount of memory consumable by pipes. Once the limit has been reached, all new pipes will be limited to 4K in size, rather than the default of 16K. - Put a limit on the number of pages that may be used for high speed page flipping in order to reduce the amount of wired memory. Pipe writes that occur while this limit is exceeded will fall back to non-page flipping mode. The above values are auto-tuned in subr_param.c and are scaled to take into account both the size of physical memory and the size of the kernel map. These limits help to reduce the "kernel resources exhausted" panics that could be caused by opening a large number of pipes. (Pipes alone are no longer able to exhaust all resources, but other kernel memory hogs in league with pipes may still be able to do so.) PR: 53627 Ideas / comments from: hsu, tjr, dillon@apollo.backplane.com MFC after: 1 week
* Remove last vestiges of the old rc.mtm2003-07-081-138/+33
|
* "towards" -> "toward". According to dictionary.com, the use of "towards"jkoshy2003-07-082-4/+4
| | | | | | | | | | is common in British English, while "toward" is the preferred form in American English. Use the American form for consistency. Correct the date on the manual page. Submitted by: Tom Rhodes <trhodes@freebsd.org>, underway@comcast.net (Gary W. Swearingen)
* Style nit.obrien2003-07-081-2/+2
|
* Fix LOR between scheduler lock and SMP rendezvous lock.davidxu2003-07-081-6/+1
| | | | Reviewed by: jhb
* MFC noted: chroot(8) -u/-g/-G.bmah2003-07-072-2/+2
|
* Add support for a -n argument which displays user and group IDsbrooks2003-07-072-5/+14
| | | | | | numerically rather than converting to a user or group name. MFC After: 1 week
* FreeBSD 2.0.5 is old hat. Also cross-reference GEOM_VOL from the discussionwollman2003-07-071-8/+9
| | | | | of wiring SCSI devices, since it provides a non-SCSI-specific way of accomplishing a similar task.
* Fix wording: `irregardless' is a solecism.wollman2003-07-071-2/+2
|
* Put NFSSERVER in the right list of filesystem stuff. Building a kernelwollman2003-07-071-1/+1
| | | | with only NFSSERVER won't get you anywhere.
* Single-character style fix.wollman2003-07-071-1/+1
|
* - Clean up an unused variable.jeff2003-07-071-0/+2
| | | | Submitted by: Steve Kargl <skg@routmask.apl.washington.edu>
* Add "blame" as an "annotate" alias for interoperability with subversion.obrien2003-07-071-1/+1
|
* Only define a default editor if one isn't already defined.obrien2003-07-071-0/+2
|
* Add a workaround for the USB_PRODUCT_MCT_SITECOM_USB232 device: limitwpaul2003-07-071-1/+4
| | | | | | | the bulk out buffer size to 16 bytes. The bulk out endpoint descriptor reports 32 bytes, but if you use this value, data will get dropped. Reviewed/approved by: scottl
* * add a function to display a complete feeder chain on the console, forcg2003-07-072-1/+18
| | | | | | | | | debugging. * set the parent of non-format feeders, so that sndstat doesn't miss out things like feeder_rate. MFC: 1 week
* Correctly print signal mask, the bug was introduced by cut and pastedavidxu2003-07-072-22/+40
| | | | in last commit.
* Add corega PCCL-11 to match entry added to pccarddevs a while ago.imp2003-07-071-0/+1
| | | | Noticed going into openbsd...
* - Complete the vm object locking in vm_pageout_object_deactivate_pages().alc2003-07-071-21/+27
| | | | | | | | | - Change vm_pageout_object_deactivate_pages()'s first parameter from a vm_map_t to a pmap_t. - Change vm_pageout_object_deactivate_pages()'s and vm_pageout_map_deactivate_pages()'s last parameter from a vm_pindex_t to a long. Since the number of pages in an address space doesn't require 64 bits on an i386, vm_pindex_t is overkill.
* Reset the PSM aux device twice to help pierce through some KVM's tomikeh2003-07-072-0/+18
| | | | | | get the correct data from the attached mouse. Multiple resets should be harmless, but just in case, the second one is non-fatal and is just ignored.
* Add a newline to debug message.davidxu2003-07-072-2/+2
|
* Avoid accessing user provided parameters in critical region.davidxu2003-07-0718-92/+130
| | | | Reviewed by: deischen
* Remove MAINTAINER= lines from individual Makefiles in favor of thegshapiro2003-07-0716-45/+0
| | | | MAINTAINER file (which already had entries for sendmail).
* Put back install/distribution dependency on the buildable .cfgshapiro2003-07-071-1/+1
| | | | | | files to get mergemaster working again. Noticed by: Shin-ichi YOSHIMOTO <yosimoto@waishi.jp>
* Print thread's scope, also print signal mask for every thread and printdavidxu2003-07-072-34/+26
| | | | it in one line.
* * support ich5cg2003-07-061-9/+14
| | | | | | | PR: kern/53242 Submitted by: Shin-ichi Yoshimoto <yosimoto@waishi.jp> (partly) Tested by: Dominic Marks <dom@cus.org.uk> (version in PR) MFC after: 1 week
* Convert the dc(4) driver to the busdma API. This is a necessary stepmux2003-07-064-234/+608
| | | | | | | | | | | | | | | to have this driver working on sparc64. It still needs to be made endian-clean before it can work there. Special thanks to dragonk@evilcode.net for sending me a dc(4) card so that I was able to do this work. Many cheers to all the people that tested this change, thanks to them, this change shouldn't break anything :-). Tested by: marcel (i386 and ia64), ru (i386), wilko (alpha), mbr (i386), wpaul (i386) and Will Saxon <WillS@housing.ufl.edu> (i386)
* MFi386alc2003-07-062-3/+3
| | | | | Updates to cnt.v_wire_count, the global count of wired pages, should be performed using atomic ops.
* Use 'id' instead of 'grep' to detect the presence of the smmsp user/group.gshapiro2003-07-061-2/+2
| | | | | | | | This fixes the check for users with smmsp in NIS instead of their local files. Suggested by: peter MFC after: 5 days
* Do not install sendmail example/infrastructure files if NO_SENDMAIL isgshapiro2003-07-061-0/+4
| | | | | | | | | defined. The only two files installed in this case are aliases (which I believe other MTAs may use) and mailer.conf (which isn't sendmail, it belongs to mailwrapper). PR: 50477 MFC after: 5 days
* Bow to popular demand and default SENDMAIL_SUBMIT_MC togshapiro2003-07-061-4/+13
| | | | | | | | | | `hostname`.submit.mc which is templated from freebsd.submit.mc if the default file does not exist. This makes the building of the submit.cf behavior identical to that of the the sendmail.cf. PR: 44256 Submitted by: Matt Emmerton <matt@gsicomp.on.ca> MFC after: 5 days
* Thanks to Ruslan's src/etc/sendmail/Makefile patch, it is now safegshapiro2003-07-062-30/+0
| | | | | | | (though probably not a good idea in general) to set the various SENDMAIL_*_MC variables to /etc/mail/sendmail.mc or /etc/mail/submit.mc. MFC after: 5 days
* Get rid of unneeded depend targetgshapiro2003-07-061-2/+0
| | | | | Submitted by: ru MFC after: 5 days
* - Prevent buildworld from trying to write to /etc/mail/gshapiro2003-07-061-87/+48
| | | | | | | | | | | | | - Stop 'make clean' from removing SENDMAIL_CF - install and distribute targets should not attempt to build anything - SENDMAIL_ADDITIONAL_CF were not installed in the distribution case - If SENDMAIL_SET_USER_ID was defined, submit.cf was needlessly installed in the distribution case - Collapse install and distribution target into one to remove code duplication Submitted by: ru MFC after: 5 days
* Grammar tweaking. "has been" is very often not as good as "is" or "was".markm2003-07-061-6/+6
|
* Style fixes: tab after a dependency operator should be a single spacegshapiro2003-07-062-29/+29
| | | | | | | second level indent of tab should be four spaces Submitted by: ru MFC after: 3 days
* Woops - don't forget to declare locals needed for that last commit.bsd2003-07-061-0/+2
|
* Don't unconditionally reset the hardware debug registers in cpu_exit(),bsd2003-07-061-4/+6
| | | | | | | | | | | reset them only if they were previously in use. Unconditionally resetting the registers wipes them out frequently, which interferes with their use for kernel debugging. While I'm here, be less verbose in the associated comment of a neighboring function. Noticed by: bde
* Fix a bug that could cause dc(4) to m_freem() an already freedmux2003-07-062-2/+4
| | | | | | mbuf or something that isn't an mbuf. MFC after: 3 days
OpenPOWER on IntegriCloud