summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Handle hardware-imposed MTU/MRU limitations. PPPoE will no longerbrian2001-06-1821-80/+246
| | | | | | | | | | | | allow MRU/MTU negotiations to exceed 1492. Add an optional ``max'' specifier to ``set m[rt]u'', ie. set mtu max 1480 Bump the ppp version number. Sponsored by: Monzoon Networks AG and FreeBSD Services Limited
* Make this really work.ru2001-06-181-10/+10
|
* call pfxlist_onlink_check() at the end of in6_tmpifadd(), to make sureume2001-06-181-0/+11
| | | | | | | a temporary address generated from a detached public one also detached. Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp> Obtained from: KAME
* Don't remove the SI_CHEAPCLONE for unsupported minorsbrian2001-06-181-1/+2
|
* Remove the SI_CHEAPCLONE flag when hanging resources off the dev_tbrian2001-06-181-0/+2
|
* Add a -d command-line option; when used in conjunction with -f, rarpdroam2001-06-183-49/+129
| | | | | | | | | | | sends error messages to stderr, normal output to stdout, instead of logging everything via syslog. Turn off the FORMAT_AUDIT in the Makefile, until I can figure out how to disable the check for one single line in the source :( Reviewed by: dd, silence on -audit MFC after: 1 month
* Teach fstat(1) about FIFO's - it's OK to display them as regular files.roam2001-06-181-3/+10
| | | | | | While I'm here, fix two second-level indents to be four spaces. Reviewed by: dd, -audit
* (cantwrite): do not allocate memory for a NULL stringassar2001-06-181-1/+2
| | | | | | | | PR: misc/26044 MFC after: 1 week Submitted by: bde
* revert freeing of memory that gets allocated when str == NULLassar2001-06-184-8/+0
| | | | | | (this will be fixed in a better way) PR: misc/26044
* Support mail boxes that have dates without seconds (SysV) and thosemikeh2001-06-181-4/+33
| | | | | | | | that have a timezone as <-|+>nnnn (eg. imapd). PR: bin/11746 Obtained from: OpenBSD MFC after: 2 weeks
* Fix typo: clnt_destroy() only takes one arg.mikeh2001-06-181-1/+1
| | | | MFC after: 2 weeks
* use devclass_get_maxunit() correctlycg2001-06-183-4/+4
|
* revise dsp_clone() to return the first nonbusy channel instead of simplycg2001-06-174-15/+17
| | | | | | cycling channel numbers. remove unused fields from struct snddev_info.
* fix a potential panic in dsp_clone() if no pcm devices were detectedcg2001-06-171-0/+2
|
* Note support for the Digital Etherworks DE305 cardwilko2001-06-171-1/+2
|
* Don't assume that resource type is ioport and rid equal 0.nyan2001-06-172-10/+12
|
* Document the -a flag.alex2001-06-171-0/+12
|
* The final commit for the first phase of PowerPC support.benno2001-06-175-44/+145
| | | | | | This adds the config stuff needed to build kernels. Reviewed by: obrien
* Satisfy gcc's parenthetical needs and clamp down with WANRS=2.dd2001-06-172-2/+3
| | | | Reviewed by: md5(1)
* Allocate all resources using keyboard controller.nyan2001-06-172-16/+74
|
* Add the -p flag to force unknown control sequences to be passedmikeh2001-06-173-7/+18
| | | | | | | | through unchanged. Reviewed by: silence on -audit Obtained from: NetBSD MFC after: 3 weeks
* Use err(3) and style(9) cleanup.mikeh2001-06-171-21/+13
| | | | MFC after: 2 weeks
* Supported to select a keymap for PC-98x1.nyan2001-06-174-0/+44
|
* Added PC-98x1 keymaps.nyan2001-06-174-1/+273
|
* Add missing article.dd2001-06-171-1/+2
|
* Move cardbus and pccard bus bridge devices to near the bridge chips. Thisimp2001-06-171-2/+2
| | | | | is so that all the pccard options are together and this reduces diffs with GENERIC.
* Don't call printf without a format string (harmless in this case).dd2001-06-171-2/+2
|
* MFGENERIC:imp2001-06-171-12/+9
| | | | | | | | | 1.307 Turn on kernel debug support 1.309 Turn off pcm 1.311 move wx to miibus chipsets 1.312 Comment out USERCONFIG Reminded by: mihira-san <sanpei@sanpei.org>
* Revise wording of osreldate.h vs kernel warning to make it clear that itpeter2001-06-171-2/+3
| | | | is a userland-only header.
* Add an -a option which will make send-pr copy the specified file intodd2001-06-171-1/+21
| | | | | | | the Fix: section. Binary files (as determined by file(1)) are uuencode'd. Submitted by: alex
* Move setugid() a little sooner to before we release tracing in casepeter2001-06-161-2/+3
| | | | crdup() or change_e*id() block on malloc() or mutex.
* Some people are having problems with insert/eject. Add some debugimp2001-06-161-0/+4
| | | | | | | | information until the problems can be tracked down. Right now these are unconditional, but later it will be hidden behind a boot verbose. Also, if there are no events listed in the event mask, return right away. Specifically avoid writing back interrupt acks in this case.
* Correct a typo in an error message.dd2001-06-161-1/+1
|
* Make the synopsis resemble the usage in the source file.dd2001-06-161-5/+4
|
* Use INTR_TYPE_AV for the interrupt handlers because:peter2001-06-167-8/+8
| | | | | | | | | 1: most drivers are sensitive to timing, and 2: the handlers are MPSAFE and need a chance to get into the kernel before some other non-mpsafe handler blocks the ithread on Giant in shared irq cases. Reviewed by: cg (in principle)
* Add INTR_TYPE_AV so that we can get to the PI_AV priority in the ithreadpeter2001-06-162-1/+5
| | | | | | handlers. This is beneficial since it means that pcm's MPSAFE handler can get run before things that will block on Giant in the shared irq case.
* Clean up some junk. The bogus trapframe on the stack was removed from thepeter2001-06-161-7/+0
| | | | MI code in August 2000 elsewhere.
* Check for the PS_SINTR flag in the right field of struct kinfo_proctegge2001-06-161-1/+1
| | | | (ki_sflag).
* use a global devclass for all drivers - i'm not entirely sure why thiscg2001-06-1630-929/+936
| | | | | | | | | | | | | | | worked before. mixer, dsp and sndstat are seperate devices - give them their own cdevsws instead of demuxing requests sent to a single cdevsw. use the si_drv1/si_drv2 fields in dev_t structures for holding information specific to an open instance of mixer/dsp. nuke /dev/{dsp,dspW,audio}[0-9]* links - this functionality is now provided using cloning. various locking fixes.
* Add note about partition a better be at offset 0 for a disk to be bootable.wilko2001-06-161-0/+8
|
* less warningume2001-06-162-82/+82
| | | | warning: cast discards qualifiers from pointer target type
* Comply with POSIX rules:jlemon2001-06-161-2/+2
| | | | | | | o Use %u for printing u_int. o Cast sizeof() to u_long, and print with %lu Reviewed by: wollman
* Give inetd the ability to manage unix domain sockets. Details ofdwmalone2001-06-163-12/+169
| | | | | | | | | | | how to use this feature are in the man page. This is based on work by Lyndon Nerenberg. (The only difficult part about this patch is the fact that you can't fchown a unix domain socket, which means the sockets must be put in a secure directory). Reviewed by: dillon
* More tips. I'd never heard of look(1) before.nik2001-06-161-0/+159
| | | | Submitted by: Dru <genisis@istar.ca>
* Fix misindented esac.schweikh2001-06-167-7/+7
| | | | MFC after: 1 week
* Fix "alignemnt" typo.alex2001-06-166-6/+6
|
* More tips, this time from the Russian Fidonet FreeBSD Echo.nik2001-06-161-0/+12
| | | | | | And I never knew about ports(7) before. Submitted by: Alexey V. Neyman <avn@any.ru>
* This file was a horrible mixture of styles old and new.markm2001-06-161-27/+16
| | | | Apply style(9).
* Remove ncheck in an example; FreeBSD does not have it.schweikh2001-06-161-1/+3
| | | | | | PR: 10158 Submitted by: Remy Card <card@ens.uvsq.fr> MFC after: 2 weeks
* (do_authloop): handle !KRB4 && KRB5assar2001-06-161-4/+7
|
OpenPOWER on IntegriCloud