summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Teach dd(1) about an option to write sparse files. Can be useful forjoerg1997-10-114-7/+45
| | | | | | | things like diskless clients' swap files etc. Submitted by: pascal@zuo.dec.com (Pascal Pederiva) (ages ago, with many stylistic changes by me)
* Mention the improved sppp(4).joerg1997-10-111-0/+8
|
* sppp(4) is now also a consumer of the kernel MD5 code.joerg1997-10-111-0/+1
|
* Distribute and statizice a lot of the malloc M_* types.phk1997-10-1142-89/+135
| | | | Substantial input from: bde
* Do not use an intermediate file. The intermediate filename will gowosch1997-10-111-3/+2
| | | | into the info output which may breaks other programs (e.g. info2html).
* Freeing with unknown type is a panic kind of thing.phk1997-10-111-2/+2
|
* Remove all traces of M_VFSCONF, which were for all practicalphk1997-10-112-5/+2
| | | | purposes unused.
* Enable spppcontrol.joerg1997-10-111-1/+2
|
* This commit was generated by cvs2svn to compensate for changes in r30302,joerg1997-10-114-0/+698
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * The spppcontrol(8) utility that is required to set or display thingsjoerg1997-10-114-0/+698
| | | | | | | | | | | | like PAP and CHAP secrets with sppp(4). This is the first utility using the new SIOC[SG]IFGENERIC ioctls (and the reason for inventing them in the first place).
* | Update to match reality. PAP/CHAP are now implemented, a number of bugsjoerg1997-10-111-6/+29
| | | | | | | | fixed as well.
* | Jumbo patch to implement PAP and CHAP for sppp(4). Partially based onjoerg1997-10-112-152/+1504
| | | | | | | | | | Serge's (Cronyx's) code in the vendor branch. (FR support not yet merged.)
* | Remove a debug printf entirely.phk1997-10-111-4/+1
| |
* | Disable an extremely annoying printf.peter1997-10-111-1/+3
| |
* | Attempt to fix the previous fix to the contigmalloc1 prototype.peter1997-10-111-3/+4
| | | | | | | | | | struct malloc_type isn't defined in all cases (eg: from ddb), and the line wrapping was very badly mangled.
* | Update malloc.9 to reflect new reality.phk1997-10-111-106/+31
| |
* | Be a little closer to current reality.phk1997-10-111-21/+42
| |
* | Remove a #ifndef __FreeBSD__ chunk.phk1997-10-112-10/+2
| |
* | Dike out a weird warning.phk1997-10-112-2/+6
| |
* | Fix a misleading comment. Rename a variable to make more sense.phk1997-10-111-5/+4
| | | | | | | | Pointed out by by: bde
* | Make this file p-make clean. (Use "ld -O foo" instead of "ld; mvasami1997-10-111-11/+6
| | | | | | | | | | | | a.out foo".) Reviewed by: bde (actually more like "Suggested by")
* | make a string longer so we can handle deeper source trees.julian1997-10-111-1/+1
| | | | | | | | | | | | if global is in 2.2 can we do this there as well? Submitted by: doug ambrisko (ambrisko@whistle.com)
* | Make the target for the number of AIO daemons work.dyson1997-10-111-2/+18
| |
* | NIS+ compatibility kludge. A long time ago, I set up innetgr() sowpaul1997-10-111-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | that if searching through the special netgroup.byhost or netgroup.byuser maps didn't work, we would roll over to the 'slow' method of grovelling though the netgroup map and working out the dependencies on the fly. But I left this option hidden inside an #ifdef CHARITABLE since I didn't think I'd ever need it. Well, the Sun rpc.nisd NIS+ server in YP compat mode doesn't support the .byhost and .byuser reverse maps, so the failover is necessary in order to be compatible. *sigh* This closes PR #3891, and should be merged into RELENG_2_2.
* | struct kmemstats was renamed.phk1997-10-101-3/+3
| |
* | Fix contigmalloc() and contigmalloc1() arguments.phk1997-10-102-5/+5
| |
* | Make ufs_reclaim free the underlying inode.phk1997-10-105-9/+19
| |
* | Use generic ufs_reclaim().phk1997-10-105-49/+18
| |
* | Add type arg to ffs_mountfs and avoid examining v_tag to find outphk1997-10-103-35/+17
| | | | | | | | | | | | if MFS is getting a free ride. Use generic ufs_reclaim().
* | Remove a bunch of unused malloc types.phk1997-10-103-30/+19
| | | | | | | | | | A couple of potential bogons flagged. Various prototypes changed.
* | Rename "struct kmemstats" to "struct malloc_type" it makes more sense now.phk1997-10-102-14/+16
| | | | | | | | Fix type argument to hashinit() and phashinit()
* | Mega commit to cleanup the "remaining nits" after my malloc change.phk1997-10-104-20/+16
| | | | | | | | | | Introduce a M_EXT2NODE for ext2fs vnodes. Use generic ufs_reclaim instead of hijacking ffs_reclaim.
* | Make vmstat understand the dynamic malloc stuff. There are a numberphk1997-10-101-15/+23
| | | | | | | | of ugly hardcoded constants in there.
* | Make malloc more extensible. The malloc type is now a pointer tophk1997-10-103-251/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the struct kmemstats that describes the type. This allows subsystems to declare their malloc types locally and <sys/malloc.h> doesn't need tweaked everytime somebody gets an idea. You can even have a type local to a lkm... I don't know if we really need the longdesc, comments welcome. TODO: There is a single nit in ext2fs, that will be fixed later, and I intend to remove all unused malloc types and distribute the rest closer to their use.
* | Do not use -B in initial build of "make". It doesn't exist in 2.1.x.asami1997-10-101-4/+8
| | | | | | | | | | | | | | Instead, list the targets one per command line. Reviewed by: bde Submitted by: bde (part)
* | #include <machine/tss.h> explicitlypeter1997-10-103-0/+3
| |
* | Compensate for pcb.h tweaks.peter1997-10-108-9/+29
| | | | | | | | (Bruce pointed out the nesting)
* | Don't #include unneeded includes here. pcb_ext.h picks up lots of otherpeter1997-10-102-8/+4
| | | | | | | | stuff with it.
* | GPROC0_SEL isn't used in any *.s files it seems..peter1997-10-102-6/+2
| |
* | This has always bugged me. At single user, the implied example it givespeter1997-10-101-2/+2
| | | | | | | | | | | | is not valid - it says that "sh" is the default, but you can't actually type "sh" at this prompt - it has to be /bin/sh or some other full pathname.
* | Give PPP_FILTER a whirl.peter1997-10-101-3/+8
| |
* | Try out PPP_FILTERpeter1997-10-102-3/+5
| |
* | Also install pcap-int.h so things can call pcap_compile on arbitarypeter1997-10-101-2/+2
| | | | | | | | expressions (eg: in pppd)
* | Add IDs for Intel 82371MX/82437MX (mobile PCI chipset).asami1997-10-101-1/+5
| | | | | | | | Reviewed by: se
* | Change default keymap (I left all the international ones alone) sojkh1997-10-103-6/+6
| | | | | | | | | | that LALT is META by default. This will make the emacs users happy. Approved by: sos
* | Convert the VM86 option from a global option to an option only dependedpeter1997-10-1034-39/+80
| | | | | | | | | | on by the files that use it. Changing the VM86 option now only causes a recompile of a dozen files or so rather than the entire kernel.
* | Revive the connect-max-attempts option. When running in persist mode,peter1997-10-104-5/+31
| | | | | | | | | | this limits the number of retries before aborting. This can save expensive phone bills. :-) See rev 1.6 of main.c for original.
* | Allow a deleted deveice to delte it's nodes in other mounted devfsjulian1997-10-101-1/+7
| | | | | | | | filesystems even if not in SPLIT_DEVS mode.
* | Use err(3). Silent -Wall.charnier1997-10-105-181/+150
| |
* | Revive rev 1.10, which documents the secrets files overrides for thepeter1997-10-101-2/+6
| | | | | | | | local:remote IP addresses on the command line or the options.ttynn files.
OpenPOWER on IntegriCloud