summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* MF 22sobrien1997-12-017-56/+42
|
* Reorder struct callout for better cacheline behavior.dg1997-12-011-2/+2
|
* Add mount_devfs(8) to the SEE ALSO section.steve1997-12-012-2/+4
| | | | PR: 5125
* improve anti-spam rulesets: check_relay, check_mail, check_rcpt.jmb1997-12-013-38/+132
| | | | | | | | | | | break each ruleset into identified sections. (called groups). note which groups can be reordered. each group accepts and returns the same strings, as much as possible. reactivate Paul Vixie's RBL (in check_mail) add rules to limit mail relaying to a list of hosts and domains in the R class (check_rcpt, not active on hub.freebsd.org) Submitted by: jmb
* improve anti-spam rulesets: check_relay, check_mail, check_rcpt.jmb1997-11-301-29/+103
| | | | | | | | | | | | break each ruleset into identified sections. (called groups). note which groups can be reordered. each group accepts and returns the same strings, as much as possible. reactivate Paul Vixie's RBL (in check_mail) add rules to limit mail relaying to a list of hosts and domains in the R class (check_rcpt, not active on hub.freebsd.org) Submitted by: jmb
* Correct a last minute code change. Would have been an infinite loop underdyson1997-11-301-8/+4
| | | | | certain error conditions. Submitted by: pst@shockwave.com
* Fix an spl nit.dyson1997-11-301-1/+7
|
* Remove manpath.[ch] here and use the ones in ../manpath instead.steve1997-11-304-553/+2
|
* Resurrect manpath.c here.steve1997-11-301-0/+525
|
* Sleep 10secs after kill -HUP instead of 3secs, some daemons like Apacheache1997-11-301-2/+2
| | | | may have log time to re-configure
* Remove this copy of manpath.c and add the .PATH directive to get tosteve1997-11-302-520/+2
| | | | | | the same file in ${.CURDIR}/../man. Suggested by: Bruce Evans
* fix a few style nites...jmg1997-11-302-24/+30
| | | | | | | make isa_dmacascade, isa_dmastart, isa_dmadone, and find_isadev MUCH easier to be found by starting them at the beginging of the line... remove braces inside of ifdef RESOURCE_CHECK... found by % in vi...
* Finish up the vast majority of the AIO/LIO functionality. Proper signaldyson1997-11-301-106/+552
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | support was missing in the previous version of the AIO code. More tunables added, and very efficient support for VCHR files has been added. Kernel threads are not used for VCHR files, all work for such files is done for the requesting process directly. Some attempt has been made to charge the requesting process for resource utilization, but more work is needed. aio_fsync is still missing (but the original fsync system call can be used for now.) aio_cancel is essentially a noop, but that is okay per POSIX. More aio_cancel functionality can be added later, if it is found to be needed. The functions implemented include: aio_read, aio_write, lio_listio, aio_error, aio_return, aio_cancel, aio_suspend. The code has been implemented to support the POSIX spec 1003.1b (formerly known as POSIX 1003.4 spec) features of the above. The async I/O features are truly async, with the VCHR mode of operation being essentially the same as physio (for appropriate files) for maximum efficiency. This code also supports the signal capability, is highly tunable, allowing management of resource usage, and has been written to allow a per process usage quota. Both the O'Reilly POSIX.4 book and the actual POSIX 1003.1b document were the reference specs used. Any filedescriptor can be used with these new system calls. I know of no exceptions where these system calls will not work. (TTY's will also probably work.)
* Always call gripe_reading_mp_config with the required arguments.steve1997-11-302-4/+4
| | | | | PR: 3894 Submitted by: Stephen Clawson <sclawson@marker.cs.utah.edu>
* s/geteid/geteuid/ - it's lucky I have a large supply of left-over pointypeter1997-11-291-1/+1
| | | | hats from Tristan's last birthday party. :-]
* Work around the problems caused by calling issetugid() in libtermcap inpeter1997-11-291-2/+41
| | | | | | | | a similar way to libc. Sigh. This is not pretty but seems to work. Somthing like this was needed in preference to bogusly bumping the major library number here. The syscall(SYS_issetugid) idea is originally Bruce's.
* Shuffle things a bit for better cacheline behavior.dg1997-11-292-12/+12
|
* Get rid of the dynamic linker's internal malloc package, and arrangejdp1997-11-296-1130/+948
| | | | | | | | | | | | | | | | | | | | | | | | | | things so that it uses the same malloc as is used by the program being executed. This has several advantages, the big one being that you can now debug core dumps from dynamically linked programs and get useful information out of them. Until now, that didn't work. The internal malloc package placed the tables describing the loaded shared libraries in a mapped region of high memory that was not written to core files. Thus the debugger had no way of determining what was loaded where in memory. Now that the dynamic linker uses the application's malloc package (normally, but not necessarily, the system malloc), its tables end up in the regular heap area where they will be included in core dumps. The debugger now works very well indeed, thank you very much. Also ... Bring the program a little closer to conformance with style(9). There is still a long way to go. Add minimal const correctness changes to get rid of compiler warnings caused by the recent const changes in <dlfcn.h> and <link.h>. Improve performance by eliminating redundant calculations of symbols' hash values.
* Disable the VCHR optimization for AIO until I have implemented it. Just indyson1997-11-291-1/+2
| | | | | case anyone wants to play with the POSIX AIO/LIO stuff. (As it is, it should work with ANY vnode, on UP systems only, for now.)
* Fix and complete the AIO syscalls. There are some performance enhancementsdyson1997-11-293-306/+804
| | | | coming up soon, but the code is functional. Docs will be forthcoming.
* In the "ldd -v" output, display the N_AUX information for eachjdp1997-11-282-6/+26
| | | | | symbol. It indicates whether the symbol refers to a function or a data object.
* Remove the prototypes for dlopen and related functions. They don'tjdp1997-11-283-30/+3
| | | | | belong here. The standard place for them is <dlfcn.h>, and there is already another copy of the prototypes there.
* Sort option list so that -amin works.steve1997-11-281-1/+5
| | | | | PR: 5171 Submitted by: Dmitrij Tejblum <tejblum@arc.hq.cti.ru>
* The previous revision (objfiles.c:1.2) fixed backtracing in thejdp1997-11-271-1/+2
| | | | | | | | absence of full debugging symbols for the kernel, but broke it for application programs. This commit disables that change except when kernel debugging mode is in effect. This needs to go into -2.2 as well, after a suitable burn-in period.
* Upgrade minor versionpst1997-11-271-2/+2
|
* Resolve merge conflicts.pst1997-11-275-54/+108
|
* This commit was generated by cvs2svn to compensate for changes in r31434,pst1997-11-2792-960/+2933
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import TCL v8.0 PL2.pst1997-11-2795-1015/+3026
| |
* | Make this manpage reveal its true identity. A diff of thesesteve1997-11-271-2/+2
| | | | | | | | | | | | | | changes has also been sent to opie-bugs@inner.net. PR: 5129 Submitted by: jkh
* | datasize-curr -> datasize-cur, typo fix.steve1997-11-271-2/+2
| | | | | | | | | | PR: 5152 Submitted by: owaki@st.rim.or.jp
* | Recognize 3C569 network interface when `PC98' is defined.kato1997-11-272-4/+14
| | | | | | | | Submitted by: HAMADA Naoki <hamada@astec.co.jp>
* | Sync with sys/i386/i386/userconfig.c revision 1.97.kato1997-11-271-2/+4
| |
* | Sync with sys/i386/conf/files.i386 revision 1.179.kato1997-11-272-2/+12
| |
* | Sync with sys/i386/isa/syscons.c revision 1.240.kato1997-11-271-2/+9
| |
* | Remove an extraneous ".kbd" that crept in for the Swiss Germanjoerg1997-11-263-6/+6
| | | | | | | | | | | | keyboard map. Submitted by: georg.wagner@ubs.com
* | Removed an unused line of code, that caused an ``maybe used uninitialized''joerg1997-11-262-4/+2
| | | | | | | | | | | | warning. Found by: Simon Shapiro
* | Use err(3). -Wall cleaning. cosmetics in man page.charnier1997-11-263-23/+30
| |
* | Remove \n at end of syslog string. -Wall cleaning. Cosmetics in man page.charnier1997-11-263-28/+39
| |
* | Cosmetics in man page. Add rcsid and sort #includes.charnier1997-11-262-15/+22
| |
* | Use err(3). -Wall cleaning. Use Pa for file names and add section in Xrefs.charnier1997-11-262-23/+29
| |
* | Display connect time as 0 if we've never beenbrian1997-11-261-3/+3
| | | | | | | | | | connected. Pointed out by: Jeff Kletsky <Jeff@wagsky.com>
* | kinit(1) and its man page do not agre on what is reported with -v. Fix this.markm1997-11-252-3/+4
| | | | | | | | Submitted by: Sheldon Hearn.
* | From the author:markm1997-11-257-11/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here are the remanding changes required to support the Ensoniq Soundscape using FreeBSD 3.0-current. Notes: 1) ad1848_init already has code to detect if DMA_DUPLEX should be set so it is not necessary (and is in fact a mistake) to hard code setting it. Not all soundcards (i.e. the current sscape driver) are capable of using DMA_DUPLEX. 2) The other changes are hopefully self explanatory. Feel free to let me know if you need additional information. Submitted by: john@feith.com (John Wehle)
* | - Don't worry about the previous state of the card (insert/removed), andnate1997-11-251-2/+4
| | | | | | | | | | | | | | instead Do The Right Thing when the kernel states a card was inserted/removed. This isn't a complete fix, but better than nothing. Reviewed by: Guido van Rooij <guido@gvr.org>
* | Move the hardware currsor off screen when getting back from ansos1997-11-253-6/+27
| | | | | | | | | | unknown mode. Fix warning on uninitialized var.
* | Sync with sys/i386/i386/machdep.c revision up to 1.274.kato1997-11-252-14/+20
| |
* | Sync with sys/i386/i386/trap.c revision 1.115.kato1997-11-251-7/+11
| |
* | Sync with sys/i386/isa/isa.c revision 1.107.kato1997-11-251-3/+1
| |
* | Sync with sys/i386/isa/syscons.c and syscons.h revisions 1.229 andkato1997-11-252-146/+233
| | | | | | | | 1.36, respectively.
* | Sync with sys/i386/isa/if_ed.c, if_fe.c and sio.c revisions 1.129,kato1997-11-254-8/+8
| | | | | | | | 1.35 and 1.189, respectively.
OpenPOWER on IntegriCloud