summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* all:dg1995-12-0529-549/+367
| | | | | | | | | | | | | | | | Removed ifnet.if_init and ifnet.if_reset as they are generally unused. Change the parameter passed to if_watchdog to be a ifnet * rather than a unit number. All of this is an attempt to move toward not needing an array of softc pointers (which is usually static in size) to point to the driver softc. if_ed.c: Changed some of the argument passing to some functions to make a little more sense. if_ep.c, if_vx.c: Killed completely bogus use of if_timer. It was being set in such a way that the interface was being reset once per second (blech!).
* Add David O'Brien (obrien@cs.ucdavis.edu) for his immesurable contributionasami1995-12-051-1/+2
| | | | of a vim port.
* Gobs of small tweaks and cleanups.jfieber1995-12-0412-100/+107
| | | | Submitted by: Philippe Charnier <charnier@lirmm.fr>
* aargh! I tested JREMOD, only to discover that the "good oil" part ofpeter1995-12-042-6/+6
| | | | it for si.c was accidently inside some #ifdef DEBUG code....
* A major sweep over the sysctl stuff.phk1995-12-0414-169/+493
| | | | | | | | | | | | | Move a lot of variables home to their own code (In good time before xmas :-) Introduce the string descrition of format. Add a couple more functions to poke into these marvels, while I try to decide what the correct interface should look like. Next is adding vars on the fly, and sysctl looking at them too. Removed a tine bit of defunct and #ifdefed notused code in swapgeneric.
* Whitespace change - cosmetic alignment only.peter1995-12-042-6/+6
|
* The npx0 device is NOT optional.jfieber1995-12-042-11/+9
| | | | A few other minor tweaks.
* Submitted by: John Hayjulian1995-12-043-5/+9
| | | | patches to allow correct deletion of IPX routes
* Add in Gary's custom Received: line into the freefall.mcpeter1995-12-042-2/+8
|
* Add "majordom" to trusted user class for freefall's sendmail.mc file.peter1995-12-042-2/+4
| | | | | | | Sigh, I really hate this "feature". I'm tempted to comment the test out (like in sendmail 8.6.xx), especially since we log the info in the Received: header line anyway.. Doing it like this only makes it painful for things like uucp..
* Remove the part about recommending to put the version number inasami1995-12-041-6/+4
| | | | | pkg/DESCR. As in COMMENT, it is not necessary, as we already have it in ${PKGNAME}.
* Modify the handbook to reflect the re-addition of the SLIP link optionsnate1995-12-041-9/+9
| | | | to sliplogin.
* Added support for the slip.hosts options 'normal', 'compress', 'noicmp',nate1995-12-043-6/+86
| | | | | | and 'autocmp'. Obtained from: (mostly) slattach and (slightly) 1.X
* Close PR: kern/865jkh1995-12-041-1/+3
| | | | Submitted by: Juergen Lock <nox@jelal.hb.north.de>
* mountdbtab -> mountdtab; whoops!jkh1995-12-042-2/+4
| | | | A small extra diagnostic for loading packages.
* Added a prototype.bde1995-12-031-2/+3
| | | | | | Declared dsioctl() as static consistently. Note that both if_disc.c and subr_diskslice.c use the same prefix `ds' and there is a name conflict for dsioctl().
* Fixed the type mismatch in check for the bogus mmap function `nullop'.bde1995-12-031-3/+5
| | | | | The test should never succeed and should go away. Temporarily print a warning if it does succeed.
* Added prototypes.bde1995-12-031-5/+6
| | | | | | Staticized. Moved a NULL-initialized variable to the bss.
* __purified pmap_pte(). This seems to make no difference.bde1995-12-032-4/+4
|
* Completed function declarations and/or added prototypes.bde1995-12-036-24/+62
|
* Oops, the last commit left a redundant declaration.bde1995-12-031-3/+1
|
* Fold in changes to files no longer on the vendor branch from 8.7.3 update.peter1995-12-035-14/+18
|
* Staticized.bde1995-12-032-90/+74
| | | | | | | | | | Completed function declarations and added prototypes. Cleaned up prototypes. Cleaned up #includes. Removed unused variable `dkn'.
* This commit was generated by cvs2svn to compensate for changes in r12601,peter1995-12-0365-80/+6485
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import sendmail-8.7.3. One small but important bugfix.peter1995-12-0370-94/+6503
| | | | | | | | | | I was about to apply this bugfix manually, not expecting 8.7.3 to be released quite this quickly.. :-)
* | Correct two bogons I introduced, it formats again.roberto1995-12-031-3/+2
| |
* | Move the creation of the *random devices to the same "target" as themarkm1995-12-032-26/+10
| | | | | | | | | | | | | | | | rest of the memory group - std. Also correct the permissions so as not to force a security hole. If /dev/*random have the permission 640 and ownership bin.kmem, it forces applications that need random numbers to be at least SGID. Picture the scene of a SGID PGP being able to read /dev/kmem!
* | Add several questions including the MAXMEM kernel option, the DEC PCI cardroberto1995-12-031-11/+98
| | | | | | | | | | | | | | list and the npx0 being mandatory. Rewrite of the URL for the handbook to use the links instead of the ever changing numbers generated by sgmlfmt.
* | Added prototypes.bde1995-12-036-64/+158
| | | | | | | | | | | | | | | | | | cd9660_rrip.c: Added lots of bogus casts to hide type errors exposed by the prototypes. (Different structs are assumed to have a common prefix.) cd9660_vnops.c: Finished staticizing.
* | Added prototypes.bde1995-12-038-10/+60
| |
* | Added prototypes.bde1995-12-0327-55/+426
| | | | | | | | Removed some unnecessary #includes.
* | null_node_find() and umap_node_find() were sometimes called without abde1995-12-034-8/+8
| | | | | | | | `struct mount *' arg. I don't know what the effects of this were.
* | Restore white spaces to original cvs-1.4Alpha2 state so that we canpeter1995-12-0348-267/+267
| | | | | | | | deal with the cvs-1.6 (and beyond) imports more cleanly and safely.
* | Moved inline functions for insque() and remque() to <sys/queue.h>.bde1995-12-039-75/+62
| | | | | | | | | | | | | | Protected them with `#ifdef KERNEL' so that <sys/queue.h> is valid C++. Added the necessary #includes of <sys/queue.h>. These functions are bogus and should be replaced by the queue macros.
* | Completed function declarations and/or added prototypes.bde1995-12-035-22/+63
| | | | | | | | | | | | | | | | | | Staticized some functions. __purified some functions. Some functions were bogusly declared as returning `const'. This hasn't done anything since gcc-2.5. For later versions of gcc, the equivalent is __attribute__((const)) at the end of function declarations.
* | Completed function declarations and/or added prototypes and/or #includesbde1995-12-035-17/+29
| | | | | | | | to get the prototypes.
* | Removed unused thread support (partly to get rid of its incompletebde1995-12-032-92/+4
| | | | | | | | | | | | function declarations). Removed unused #includes (lots of vm ones).
* | Completed function declarations and/or added prototypes and/or movedbde1995-12-0316-253/+364
| | | | | | | | prototypes to the right place.
* | Make a few more items "hot"jkh1995-12-031-5/+17
| |
* | Add fixes from bash betaache1995-12-0312-30/+41
| | | | | | | | Back out trailing spaces changes
* | Small tweak: don't try closing /etc/netgroup if we haven't opened it yet.wpaul1995-12-021-1/+2
| |
* | install freebsd.cf rather than freefall.cf by default after 8.7.2 import.peter1995-12-021-3/+3
| |
* | *GULP* cvs remove the uncomfortably large list of files that are no longerpeter1995-12-0244-10185/+3
| | | | | | | | part of sendmail 8.7.2...
* | malloc.h: add sysctl class.phk1995-12-022-3/+7
| | | | | | | | | | | | sysctl.h add "AUTO" OID. both of which will be need RSN.
* | I don't know what I messed up in 1.40, but the crynwr mode didn't make it.phk1995-12-021-25/+224
| | | | | | | | Here it is then, I hope.
* | Update the freefall.mc file to (almost) match what is actually beingpeter1995-12-025-23/+151
| | | | | | | | | | | | run on freefall.. Create freebsd.mc which is intended to be installed by src/etc/Makefile onto generic freebsd systems.
* | Completed function declarations and/or added prototypes.bde1995-12-0210-15/+87
| |
* | Fixed call to mrt_ioctl(). mrt_ioctl() for some reason has differentbde1995-12-021-1/+5
| | | | | | | | number of args when MROUTING is defined.
* | Completed function declarations and/or added prototypes.bde1995-12-0216-29/+60
| |
* | Re-disable the cf/cf SUBDIR - we were not building it before anyway.peter1995-12-022-2/+2
| | | | | | | | The Makefile down there does not handle the obj dir well..
OpenPOWER on IntegriCloud