]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoo Deny access to System V IPC from within jail by default, as in the
rwatson [Tue, 31 Oct 2000 01:34:00 +0000 (01:34 +0000)]
o Deny access to System V IPC from within jail by default, as in the
  current implementation, jail neither virtualizes the Sys V IPC namespace,
  nor provides inter-jail protections on IPC objects.
o Support for System V IPC can be enabled by setting jail.sysvipc_allowed=1
  using sysctl.
o This is not the "real fix" which involves virtualizing the System V
  IPC namespace, but prevents processes within jail from influencing those
  outside of jail when not approved by the administrator.

Reported by: Paulo Fragoso <paulo@nlink.com.br>

23 years agoConvert the de driver into a loadable module. Still missing is an
markm [Tue, 31 Oct 2000 01:25:10 +0000 (01:25 +0000)]
Convert the de driver into a loadable module. Still missing is an
unload method. Lots of old cruft is removed.

Thanks to WPaul for large clue-injection and debugging services.

Reviewed by: wpaul

23 years agoGCC uses .asm files on the Alpha for crt{begin,end}.o rather than
obrien [Tue, 31 Oct 2000 01:06:28 +0000 (01:06 +0000)]
GCC uses .asm files on the Alpha for crt{begin,end}.o rather than
crtstuff.c as they do for other platforms.

Moral support from: jdp

23 years agoMove 'tw*' after 'twe*' so that it's possible to create the control device
msmith [Tue, 31 Oct 2000 00:21:41 +0000 (00:21 +0000)]
Move 'tw*' after 'twe*' so that it's possible to create the control device
for the 'twe' driver.  This is an expedient solution for an
actually-manifesting symptom of a major problem with MAKEDEV.  Roll on
DEVFS.

23 years agoCall dc_apply_fixup() in dc_setcfg() for the MII case.
wpaul [Tue, 31 Oct 2000 00:06:39 +0000 (00:06 +0000)]
Call dc_apply_fixup() in dc_setcfg() for the MII case.

23 years agoGrrr. The 'reg' variable in dc_apply_fixup() needs to be a u_int32_t, not
wpaul [Mon, 30 Oct 2000 23:51:39 +0000 (23:51 +0000)]
Grrr. The 'reg' variable in dc_apply_fixup() needs to be a u_int32_t, not
a u_int8_t. Pass the conical hat. This should fix certain cardbus 21143
cards that require SROM h0h0magic in order to enable their transceivers.

23 years agoChanges have been made to support a concept of VAR_FIXIT_TTY being
jkh [Mon, 30 Oct 2000 23:46:12 +0000 (23:46 +0000)]
Changes have been made to support a concept of VAR_FIXIT_TTY being
standard or serial.  This change needs to be done to the entire system that
depends on this.  This way we don't have some code using OnVTY checks
and other doing
        strcmp(variable_get(VAR_FIXIT_TTY), "standard") == 0
checks.  Also we need to set VAR_FIXIT_TTY to "serial" if we come up on
a serial console.

Also fixed a dialog problem in that dialog was used when dialog was
disabled causing some troubles such as not letting the cursor keys
work when exiting the fixit mode on media (ie. not the fixit shell but
for example fixit on a floppy).

Submitted by: Doug Ambrisko <ambrisko@whistle.com>
PR: 22352

23 years agoAdd an entry for the Xircom 10/100 Network PC Card adapter.
jhb [Mon, 30 Oct 2000 23:34:44 +0000 (23:34 +0000)]
Add an entry for the Xircom 10/100 Network PC Card adapter.

23 years agoUpdate to reflect that the XPT device can accept path inquiry commands.
scottl [Mon, 30 Oct 2000 23:33:39 +0000 (23:33 +0000)]
Update to reflect that the XPT device can accept path inquiry commands.

Reviewed by: gibbs

23 years agoAllow XPT_PATH_INQ to be performed on the XPT device, as per the CAM spec.
scottl [Mon, 30 Oct 2000 23:30:28 +0000 (23:30 +0000)]
Allow XPT_PATH_INQ to be performed on the XPT device, as per the CAM spec.
Return ENOTSUP for XPT_ENG_INQ and XPT_ENG_EXEC when performed on the XPT
device.

Reviewed by: gibbs

23 years agoNote ipfilter update to 3.4.12, cd(4) support for write operations,
bmah [Mon, 30 Oct 2000 21:43:27 +0000 (21:43 +0000)]
Note ipfilter update to 3.4.12, cd(4) support for write operations,
MFC of OpenSSH-2.2.0, MFC of chio(1) enhancements, MFC of libisc
import, mergemaster improvements.

23 years agoTry a bit harder to test for ATA/ATAPI HW to probe, this is to avoid
sos [Mon, 30 Oct 2000 20:45:24 +0000 (20:45 +0000)]
Try a bit harder to test for ATA/ATAPI HW to probe, this is to avoid
some of the false comrades some devices fakes...

23 years agoRemove an evil conditional nested include of <sys/systm.h>
phk [Mon, 30 Oct 2000 20:37:45 +0000 (20:37 +0000)]
Remove an evil conditional nested include of <sys/systm.h>

23 years agoAdd a missing <sys/systm.h>
phk [Mon, 30 Oct 2000 20:37:19 +0000 (20:37 +0000)]
Add a missing <sys/systm.h>

23 years agoAdd back some #include <sys/systm.h> which were needed when <sys/ktr.h>
phk [Mon, 30 Oct 2000 20:37:01 +0000 (20:37 +0000)]
Add back some #include <sys/systm.h> which were needed when <sys/ktr.h>
doesn't mess us up.

Noted by: Harti Brandt <brandt@fokus.gmd.de>

23 years agoComment out the (old) acpi stuff, it breaks LINT.
phk [Mon, 30 Oct 2000 20:35:31 +0000 (20:35 +0000)]
Comment out the (old) acpi stuff, it breaks LINT.

23 years agoo Tighten up rules for which processes can't debug which other processes
rwatson [Mon, 30 Oct 2000 20:30:03 +0000 (20:30 +0000)]
o Tighten up rules for which processes can't debug which other processes
  in the p_candebug() function.  Synchronize with sef's CHECKIO()
  macro from the old procfs, which seems to be a good source of security
  checks.

Obtained from: TrustedBSD Project

23 years agoWhitespace only:
sheldonh [Mon, 30 Oct 2000 19:49:26 +0000 (19:49 +0000)]
Whitespace only:

 * Remove hard sentence breaks.
 * Remove trailing whitespace.
 * Separate macro arguments from trailing punctuation with whitespace.

23 years agoFix nits introduced in rev 1.9:
sheldonh [Mon, 30 Oct 2000 19:43:30 +0000 (19:43 +0000)]
Fix nits introduced in rev 1.9:

Remove single-space hard sentence break.
Mark errno up as a Variable (Va).

23 years agoMFC: Fix typo: Melco Inc. sells LUA-TX, not LU-ATX.
bmah [Mon, 30 Oct 2000 19:09:50 +0000 (19:09 +0000)]
MFC:  Fix typo:  Melco Inc. sells LUA-TX, not LU-ATX.

PR: misc/22383
Submitted by: WAKABAYASHI Susumu <susumu@wakabaya.net>

23 years agoNote MFC to 4-STABLE of mly(4) driver.
bmah [Mon, 30 Oct 2000 18:52:22 +0000 (18:52 +0000)]
Note MFC to 4-STABLE of mly(4) driver.

Submitted by: msmith

23 years agoDrop PKT_ALIAS_IGNORED packets if ``nat deny_incoming yes'' is in effect.
brian [Mon, 30 Oct 2000 18:02:01 +0000 (18:02 +0000)]
Drop PKT_ALIAS_IGNORED packets if ``nat deny_incoming yes'' is in effect.

Approved by: rwatson, ru

23 years agoAdded boolean argument to link searching functions, indicating
ru [Mon, 30 Oct 2000 17:24:12 +0000 (17:24 +0000)]
Added boolean argument to link searching functions, indicating
whether they should create a link if lookup has failed or not.

23 years agoUpdate the Promise RAID code, there are differences between BIOS
sos [Mon, 30 Oct 2000 17:11:40 +0000 (17:11 +0000)]
Update the Promise RAID code, there are differences between BIOS
version unfortunately...

23 years agoRemove unused #include statements
hm [Mon, 30 Oct 2000 14:49:26 +0000 (14:49 +0000)]
Remove unused #include statements
Submitted by: phk

23 years agoReplace old sigaction struct declaration with the new one as present
asmodai [Mon, 30 Oct 2000 14:27:18 +0000 (14:27 +0000)]
Replace old sigaction struct declaration with the new one as present
in <sys/signal.h>.

This might be a shortterm fix until the manpage is updated towards
POSIX terminology.  And maybe not...

PR: 21542
Submitted by: Ronald F. Guilmette <rfg@monkeys.com>

23 years agoMFS:
sanpei [Mon, 30 Oct 2000 14:26:52 +0000 (14:26 +0000)]
MFS:
cosmetic changes

use /etc/pccard_ether for Xircom CreditCard Netwave
and 3Com Corporation" "3C562" (BUT NOT SUPPORTED).

fix `card line' of RATOC REX-5572 (as SCSI only)

use `config auto' for RATOC REX-5536AM, REX-9836A,
ICM PSC-2401 SCSI

23 years agoCorrect incorrect information about the PATH used for exec*() calls.
asmodai [Mon, 30 Oct 2000 13:39:23 +0000 (13:39 +0000)]
Correct incorrect information about the PATH used for exec*() calls.

PR: 21990
Partially submitted by: Gerhard Sittig <Gerhard.Sittig@gmx.net>

23 years agoWhitespace only change: trim trailing whitespace.
asmodai [Mon, 30 Oct 2000 13:23:19 +0000 (13:23 +0000)]
Whitespace only change: trim trailing whitespace.

23 years agoA significant rewrite of PPTP aliasing code.
ru [Mon, 30 Oct 2000 12:39:41 +0000 (12:39 +0000)]
A significant rewrite of PPTP aliasing code.

PPTP links are no longer dropped by simple (and inappropriate in this
case) "inactivity timeout" procedure, only when requested through the
control connection.

It is now possible to have multiple PPTP servers running behind NAT.
Just redirect the incoming TCP traffic to port 1723, everything else
is done transparently.

Problems were reported and the fix was tested by:
Michael Adler <Michael.Adler@compaq.com>,
David Andersen <dga@lcs.mit.edu>

23 years agoStart using crt[in].o to adhear to the ELF ABI
obrien [Mon, 30 Oct 2000 12:25:22 +0000 (12:25 +0000)]
Start using crt[in].o to adhear to the ELF ABI
(and crtstuff.c's requirements).

23 years agoRemove unused #includes.
non [Mon, 30 Oct 2000 12:21:19 +0000 (12:21 +0000)]
Remove unused #includes.

Submitted by: phk@FreeBSD.ORG

23 years agoNow that the amount of (pseudo) interfaces is growing with IPv6,
guido [Mon, 30 Oct 2000 11:53:19 +0000 (11:53 +0000)]
Now that the amount of (pseudo) interfaces is growing with IPv6,
get rid of stupid upperbound on the amount of interfaces (was 8).

23 years agoThis commit was generated by cvs2svn to compensate for changes in r67957,
kris [Mon, 30 Oct 2000 11:03:32 +0000 (11:03 +0000)]
This commit was generated by cvs2svn to compensate for changes in r67957,
which included commits to RCS files with non-trunk default branches.

23 years agoInitial import of AES algorithm code (aka Rijndael) from KAME.
kris [Mon, 30 Oct 2000 11:03:32 +0000 (11:03 +0000)]
Initial import of AES algorithm code (aka Rijndael) from KAME.

23 years agoremove an unused function (and a warning)
n_hibma [Mon, 30 Oct 2000 10:58:02 +0000 (10:58 +0000)]
remove an unused function (and a warning)

23 years agoAdd entry for umodem
n_hibma [Mon, 30 Oct 2000 10:55:03 +0000 (10:55 +0000)]
Add entry for umodem

23 years agoCatch a left over reference to "/a".
obrien [Mon, 30 Oct 2000 10:54:09 +0000 (10:54 +0000)]
Catch a left over reference to "/a".

23 years agoAdd several new features, reorder some code, and continue with the
dougb [Mon, 30 Oct 2000 10:33:51 +0000 (10:33 +0000)]
Add several new features, reorder some code, and continue with the
process of making the script more cross platform friendly.

* Add -i option to automatically install files that do not exist
  on the system already.
* Add the ability to specify DESTDIR.
* Allow the user to specify scripts to run right before the
  comparison starts, and when mm is done. This will
  allow the user to specify customized local behavior, and
  implement features such as automatically deleting files.
* Document the above changes in the man page.
* Switch to using 'ident' for the CVS Id comparison, which
  should help with portability, and makes it faster.
* Reorder, and in one case fix some code by doing things in
  ways that make more sense.
* Check to see if the file exists on the system before doing
  the comparisons. This saves CPU cycles, and streamlines
  the auto-install process.

I used bits and pieces of suggestions and patches from various
people, ultimately too numerous to name. Which is not to say
that they were not both appreciated, and helpful in achieving
the ultimate result.

23 years agostring.h has been repo copied to mystring.h
obrien [Mon, 30 Oct 2000 10:04:56 +0000 (10:04 +0000)]
string.h has been repo copied to mystring.h

23 years agoIPFW does not discard *any* IP fragments with OFF=1, only TCP ones.
ru [Mon, 30 Oct 2000 09:44:20 +0000 (09:44 +0000)]
IPFW does not discard *any* IP fragments with OFF=1, only TCP ones.

23 years agoFix the PCCARD ATA breakage..
sos [Mon, 30 Oct 2000 09:36:40 +0000 (09:36 +0000)]
Fix the PCCARD ATA breakage..
This is due to a bug that has been in there since Warneer did the
PCCARD stuff, the altioaddr is not offset 8 its offset 14 from
the base address.
Also only probe the master device, no known PCCARD ATA thingies
has a slave AFAIK..

23 years agoAdd pfil.9 manpage to build after a repository copy.
ru [Mon, 30 Oct 2000 09:16:18 +0000 (09:16 +0000)]
Add pfil.9 manpage to build after a repository copy.

23 years agoRevert previous commit after discussion with phk.
kris [Mon, 30 Oct 2000 09:13:46 +0000 (09:13 +0000)]
Revert previous commit after discussion with phk.

23 years agoRemove unused #includes
phk [Mon, 30 Oct 2000 08:08:00 +0000 (08:08 +0000)]
Remove unused #includes

Reviewed by: ken

23 years agoFix support for cardbus cards:
wpaul [Mon, 30 Oct 2000 07:54:38 +0000 (07:54 +0000)]
Fix support for cardbus cards:
- Add DRIVER_MODULE() declaration to make this driver a
  child of cardbus
- Handle different width EEPROMs

The CIS parser still barfs when scanning this card, but it seems to
probe/attach correctly anyway. I can't do a traffic test just yet
since I don't have a proper crossover cable handy.

23 years agoRemove more unused #includes.
phk [Mon, 30 Oct 2000 07:42:06 +0000 (07:42 +0000)]
Remove more unused #includes.

23 years agoinstall rc.firewall6.
ume [Mon, 30 Oct 2000 07:12:21 +0000 (07:12 +0000)]
install rc.firewall6.

23 years agoWrite support for the cd(4) driver.
ken [Mon, 30 Oct 2000 07:03:00 +0000 (07:03 +0000)]
Write support for the cd(4) driver.

This allows writing to DVD-RAM, PD and similar drives that probe as CD
devices.  Note that these are randomly writeable devices, not
sequential-only devices like CD-R drives, which are supported by cdrecord.

Add a new flag value for dsopen(), DSO_COMPATLABEL.  The cd(4) driver now
uses this flag instead of the DSO_NOLABELS flag.  The DSO_NOLABELS always
used a "fake" disklabel for the entire disk, provided by the caller.

With the DSO_COMPATLABEL flag, dsopen() will first search the media for a
label, and if it finds a label, it will use that label.  Otherwise it will
use the fake disklabel provided by the caller.  This provides backwards
compatibility, since we will still have labels for ISO9660 media.

It also provides new functionality, since you can now have a regular BSD
disklabel on read-only media, or on writeable media (e.g. DVD-RAM).

Bruce and I both think that we should eventually (in a few years) get
away from using disklabels for ISO9660 media, and just use the whole disk
device (/dev/cd0).  At that point disklabel handling in the cd(4) driver
could follow the "normal" model, as used in the da(4) driver.

Also, clean up the path in a couple of places in cdregister().  (Thanks to
Nick Hibma for catching that bug.)

Reviewed by: bde

23 years agoAdd some additional message types for coming raylan driver from Duncan
imp [Mon, 30 Oct 2000 06:03:57 +0000 (06:03 +0000)]
Add some additional message types for coming raylan driver from Duncan
Barclay.

23 years agoAlpha verions of the crt initialization and finalization files required
obrien [Mon, 30 Oct 2000 05:21:08 +0000 (05:21 +0000)]
Alpha verions of the crt initialization and finalization files required
by the ELF ABI.

23 years agoChange "PERL_THREADED=yes" to "PERL_THREADED=true".
vanilla [Mon, 30 Oct 2000 04:52:33 +0000 (04:52 +0000)]
Change "PERL_THREADED=yes" to "PERL_THREADED=true".

23 years agoRemember to decrement interrupt nesting level if leaving early
mjacob [Mon, 30 Oct 2000 04:18:54 +0000 (04:18 +0000)]
Remember to decrement interrupt nesting level if leaving early
(in the unlikely case we get a clock interrupt on a non-primary CPU).

23 years agoAdd suffix "-thread" to archname when perl with thread support.
vanilla [Mon, 30 Oct 2000 03:27:06 +0000 (03:27 +0000)]
Add suffix "-thread" to archname when perl with thread support.

Approved by: markm

23 years agoChange my email on MAINTAINER from an RPI address to my FreeBSD address.
gad [Mon, 30 Oct 2000 01:09:32 +0000 (01:09 +0000)]
Change my email on MAINTAINER from an RPI address to my FreeBSD address.

23 years agoAdd ``all'' logging.
brian [Mon, 30 Oct 2000 00:15:35 +0000 (00:15 +0000)]
Add ``all'' logging.

Submitted by: eivind

23 years agoBump our version to reflect the recent MPPE additions (and ccp struct
brian [Mon, 30 Oct 2000 00:15:34 +0000 (00:15 +0000)]
Bump our version to reflect the recent MPPE additions (and ccp struct
size change).

23 years agoMove the MPPE keysize display in ``show ccp''.
brian [Mon, 30 Oct 2000 00:15:33 +0000 (00:15 +0000)]
Move the MPPE keysize display in ``show ccp''.

23 years agoVarious whitespace changes.
brian [Mon, 30 Oct 2000 00:15:29 +0000 (00:15 +0000)]
Various whitespace changes.
Make some functions static.

23 years agostaticise mbuftype()
brian [Mon, 30 Oct 2000 00:15:27 +0000 (00:15 +0000)]
staticise mbuftype()

23 years agoAdd MPPE and MSChap v2 support (denied and disabled by default)
brian [Mon, 30 Oct 2000 00:15:04 +0000 (00:15 +0000)]
Add MPPE and MSChap v2 support (denied and disabled by default)

Submitted by: Ustimenko Semen <semen@iclub.nsu.ru>

23 years agoAdd two new classes of problem reports primarily for the Ports Collection:
steve [Sun, 29 Oct 2000 22:11:39 +0000 (22:11 +0000)]
Add two new classes of problem reports primarily for the Ports Collection:

- update: For submitting non-maintainer updates/changes
- maintainer-update: For submitting maintainer updates/changes

The intent is to make it easier to spot maintainer sactioned or submitted
updates to ports though it might also be useful for userland code that is
maintained by someone that is not a FreeBSD committer.

Submitted by: nbm and many others

23 years agoUpdate to version 3.113. Major changes were to incorporate FreeBSD-
steve [Sun, 29 Oct 2000 22:05:52 +0000 (22:05 +0000)]
Update to version 3.113.  Major changes were to incorporate FreeBSD-
specific changes into the original distribution (although sometimes
with a slightly different approach) and to add two commandline
options to send-pr(1):

-c which allows you to specify an address to CC this
PR to
-s allow the severity to be specified on the commandline

PR: 17922

23 years ago_aio_aqueue(): Change kevent registration to use its own struct file pointer.
alc [Sun, 29 Oct 2000 21:38:28 +0000 (21:38 +0000)]
_aio_aqueue(): Change kevent registration to use its own struct file pointer.
 Otherwise, aio_read() and aio_write() on sockets are broken if a kevent is
 registered.  (The code after kevent registration for handling sockets assumes
 that the struct file pointer "fp" still refers to the socket, not the kqueue.)

23 years ago- ipv6_prefix_* and ipv6_ifconfig_* work for end node
ume [Sun, 29 Oct 2000 19:59:05 +0000 (19:59 +0000)]
- ipv6_prefix_* and ipv6_ifconfig_* work for end node
- rtsol should be work for only one interface
- new variable ipv6_defaultrouter is added
- option name of rtadvd in comment are corrected
- ipv6_firewall_enable, ipv6_firewall_type, ipv6_firewall_script,
  ipv6_firewall_logging are added to introduce rc.firewall6.

IPv6 firewall rule is just starting point and should be brushed up.
This commit includes PR18621, PR21694, PR22051.

PR: conf/18621, conf/21694, conf/22051
Reviewed by: asmodai

23 years agoAllow all users to access the dev -> devname sysctl.
phk [Sun, 29 Oct 2000 19:50:06 +0000 (19:50 +0000)]
Allow all users to access the dev -> devname sysctl.

23 years agoRemove unneeded <stddef.h> #includes.
phk [Sun, 29 Oct 2000 16:57:42 +0000 (16:57 +0000)]
Remove unneeded <stddef.h> #includes.

23 years ago- Sync with latest manpage of rtadvd.
ume [Sun, 29 Oct 2000 16:44:10 +0000 (16:44 +0000)]
- Sync with latest manpage of rtadvd.
- Ripped MIP6 related description out.  MIP6 is not merged, yet.

Obtained from: KAME Project

23 years agoMake a few more mallocs use M_ZERO.
dwmalone [Sun, 29 Oct 2000 16:29:05 +0000 (16:29 +0000)]
Make a few more mallocs use M_ZERO.

Submitted by: josh@zipperup.org
Submitted by: Robert Drehmel <robd@gmx.net>
Approved by: imp

23 years agoUnmask cypress ata controllers. This bug was hidden before
gallatin [Sun, 29 Oct 2000 16:27:40 +0000 (16:27 +0000)]
Unmask cypress ata controllers.  This bug was hidden before
the addition of the serverworks isab support because the
cypress case was the last one in the switch

23 years agoMake malloc use M_ZERO in some more locations.
dwmalone [Sun, 29 Oct 2000 16:14:28 +0000 (16:14 +0000)]
Make malloc use M_ZERO in some more locations.
Don't check for a null pointer if malloc called with M_WAITOK.

Submitted by: josh@zipperup.org
Submitted by: Robert Drehmel <robd@gmx.net>
Approved by: bp

23 years agoFix memory leak.
sumikawa [Sun, 29 Oct 2000 16:10:48 +0000 (16:10 +0000)]
Fix memory leak.

Obtained from: KAME

23 years agoMove suser() and suser_xxx() prototypes and a related #define from
phk [Sun, 29 Oct 2000 16:06:56 +0000 (16:06 +0000)]
Move suser() and suser_xxx() prototypes and a related #define from
<sys/proc.h> to <sys/systm.h>.

Correctly document the #includes needed in the manpage.

Add one now needed #include of <sys/systm.h>.
Remove the consequent 48 unused #includes of <sys/proc.h>.

23 years agoUse CHECK_FLAG
des [Sun, 29 Oct 2000 15:56:10 +0000 (15:56 +0000)]
Use CHECK_FLAG

23 years agoFix a typo in a date line. I wouldn't normally ignore MAINTAINER, but the
nik [Sun, 29 Oct 2000 15:55:15 +0000 (15:55 +0000)]
Fix a typo in a date line.  I wouldn't normally ignore MAINTAINER, but the
PR's been assigned to Warner since June.

PR: docs/18835
Submitted by: shirota@mbox.media.nagoya-u.ac.jp

23 years agoStricter error checking in the I/O functions.
des [Sun, 29 Oct 2000 15:52:05 +0000 (15:52 +0000)]
Stricter error checking in the I/O functions.

23 years agoLink kbdmap.5 to keymap.5
nik [Sun, 29 Oct 2000 15:49:03 +0000 (15:49 +0000)]
Link kbdmap.5 to keymap.5

PR: docs/19995 docs/20298

23 years agoAdd the use of M_ZERO to some malloc calls.
dwmalone [Sun, 29 Oct 2000 15:47:16 +0000 (15:47 +0000)]
Add the use of M_ZERO to some malloc calls.

Submitted by: josh@zipperup.org
Submitted by: Robert Drehmel <robd@gmx.net>
Approved by: gibbs

23 years agoAdd CHECK_FLAGS, a macro for (safely) checking if a particular flag is set.
des [Sun, 29 Oct 2000 15:45:31 +0000 (15:45 +0000)]
Add CHECK_FLAGS, a macro for (safely) checking if a particular flag is set.

23 years agoInsetad of using fileno(ftp) as stdin for tar, use a pipe and have the
des [Sun, 29 Oct 2000 15:39:51 +0000 (15:39 +0000)]
Insetad of using fileno(ftp) as stdin for tar, use a pipe and have the
parent pass the data received from the server to the child.

23 years agoWeaken a bogus dependency on <sys/proc.h> in <sys/buf.h> by #ifdef'ing
phk [Sun, 29 Oct 2000 14:54:55 +0000 (14:54 +0000)]
Weaken a bogus dependency on <sys/proc.h> in <sys/buf.h> by #ifdef'ing
the offending inline function (BUF_KERNPROC) on it being #included
already.

I'm not sure BUF_KERNPROC() is even the right thing to do or in the
right place or implemented the right way (inline vs normal function).

Remove consequently unneeded #includes of <sys/proc.h>

23 years ago.Xr to mount_ext2fs, mount_hpfs, mount_linprocfs, mount_nwfs, and
nik [Sun, 29 Oct 2000 14:45:36 +0000 (14:45 +0000)]
.Xr to mount_ext2fs, mount_hpfs, mount_linprocfs, mount_nwfs, and
mount_std.

PR: docs/20369
Submitted by: bmah

23 years agoEntry for umodem0 devices, 124.
n_hibma [Sun, 29 Oct 2000 14:06:12 +0000 (14:06 +0000)]
Entry for umodem0 devices, 124.

23 years agoRemove unneeded #include <sys/proc.h> lines.
phk [Sun, 29 Oct 2000 13:57:19 +0000 (13:57 +0000)]
Remove unneeded #include <sys/proc.h> lines.

23 years agoBe explicit about the fact that you can only specify one IP address/hostname
n_hibma [Sun, 29 Oct 2000 13:49:18 +0000 (13:49 +0000)]
Be explicit about the fact that you can only specify one IP address/hostname

23 years agoBreak a line more appropriately.
asmodai [Sun, 29 Oct 2000 13:37:13 +0000 (13:37 +0000)]
Break a line more appropriately.

23 years agoWhitespace only commit.
asmodai [Sun, 29 Oct 2000 13:33:57 +0000 (13:33 +0000)]
Whitespace only commit.

23 years agoUpdate the twe manpage to correspond with the latest source changes.
asmodai [Sun, 29 Oct 2000 13:31:24 +0000 (13:31 +0000)]
Update the twe manpage to correspond with the latest source changes.

Submitted by: msmith

23 years agoBack out previous commit (MLINK malloc.conf.5 -> malloc.3).
eivind [Sun, 29 Oct 2000 13:20:24 +0000 (13:20 +0000)]
Back out previous commit (MLINK malloc.conf.5 -> malloc.3).
This did not work correctly with whatis(1).

Issue brought up by: mpp

23 years agoAdd the ATA RAID device 'ar'.
sos [Sun, 29 Oct 2000 13:04:04 +0000 (13:04 +0000)]
Add the ATA RAID device 'ar'.

23 years agoDocument FTP_PASSIVE_MODE and FTP_PASSWORD.
des [Sun, 29 Oct 2000 12:58:08 +0000 (12:58 +0000)]
Document FTP_PASSIVE_MODE and FTP_PASSWORD.

PR: docs/20626
Submitted by: nik

23 years agoRemove obsolete /dev/drum references
jedgar [Sun, 29 Oct 2000 12:19:52 +0000 (12:19 +0000)]
Remove obsolete /dev/drum references

Reviewed by: alex, asmodai, billf

23 years agoThe previous commit had the fascinating side effect of bringing the
dougb [Sun, 29 Oct 2000 10:19:55 +0000 (10:19 +0000)]
The previous commit had the fascinating side effect of bringing the
openssl version 0.9.5a version of this file into RELENG_5. This is
a good thing, but should be documented.

23 years agofix warning compile error about unused variable
darrenr [Sun, 29 Oct 2000 10:07:43 +0000 (10:07 +0000)]
fix warning compile error about unused variable

23 years agoAdd a CVS Id tag
dougb [Sun, 29 Oct 2000 10:00:58 +0000 (10:00 +0000)]
Add a CVS Id tag

23 years agoAdd link malloc.conf.5 -> malloc.3
eivind [Sun, 29 Oct 2000 09:59:35 +0000 (09:59 +0000)]
Add link malloc.conf.5 -> malloc.3

23 years agoFix params passed to pci_porten() and pci_memen().
phk [Sun, 29 Oct 2000 09:59:28 +0000 (09:59 +0000)]
Fix params passed to pci_porten() and pci_memen().

23 years agoTeach sysinstall how to restart itself on Ctrl-C (as an addition to its old
eivind [Sun, 29 Oct 2000 09:57:50 +0000 (09:57 +0000)]
Teach sysinstall how to restart itself on Ctrl-C (as an addition to its old
tricks of rebooting and continuing where it was.)

Reviewed by: jkh, jhb

23 years agoAdd a hook for doing #include magic (for src/tools/tools/kerninclude).
phk [Sun, 29 Oct 2000 09:47:50 +0000 (09:47 +0000)]
Add a hook for doing #include magic (for src/tools/tools/kerninclude).

23 years agoUpdate copyright
dougb [Sun, 29 Oct 2000 09:41:06 +0000 (09:41 +0000)]
Update copyright