]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agosendmail 8.11.1 imported
gshapiro [Sun, 1 Oct 2000 02:11:43 +0000 (02:11 +0000)]
sendmail 8.11.1 imported

23 years agoUpdate FreeBSD import information after sendmail 8.11.1 import
gshapiro [Sun, 1 Oct 2000 02:06:00 +0000 (02:06 +0000)]
Update FreeBSD import information after sendmail 8.11.1 import

23 years agoFix conflicts from merge of sendmail 8.11.1
gshapiro [Sun, 1 Oct 2000 02:03:50 +0000 (02:03 +0000)]
Fix conflicts from merge of sendmail 8.11.1

23 years agoThis commit was generated by cvs2svn to compensate for changes in r66494,
gshapiro [Sun, 1 Oct 2000 01:49:02 +0000 (01:49 +0000)]
This commit was generated by cvs2svn to compensate for changes in r66494,
which included commits to RCS files with non-trunk default branches.

23 years agoImport of sendmail version 8.11.1 into vendor branch SENDMAIL with
gshapiro [Sun, 1 Oct 2000 01:49:02 +0000 (01:49 +0000)]
Import of sendmail version 8.11.1 into vendor branch SENDMAIL with
release tag v8_11_1.

Obtained from: ftp://ftp.sendmail.org/pub/sendmail/

23 years agoRemove Build files -- they rely on the devtools system which isn't imported
gshapiro [Sun, 1 Oct 2000 01:22:44 +0000 (01:22 +0000)]
Remove Build files -- they rely on the devtools system which isn't imported
(or used)

23 years ago - Add acpi_disable_events() and set it with EVENTHANDLER_REGISTER in order to
iwasaki [Sat, 30 Sep 2000 22:37:24 +0000 (22:37 +0000)]
 - Add acpi_disable_events() and set it with EVENTHANDLER_REGISTER in order to
   avoid power on again problem after acpi_soft_off() calling.
 - Implement SleepOp/StallOp in AML interpreter.  Also provide ACPICA
   compatibility.
 - Minor changes on __inline function declaration in acpica_osd.h
   (obtained from NetBSD porting).

23 years agoUpdate include paths for new header locations.
msmith [Sat, 30 Sep 2000 20:13:57 +0000 (20:13 +0000)]
Update include paths for new header locations.

Submitted by: iwasaki

23 years agoMore updates to the ACPI code:
msmith [Sat, 30 Sep 2000 20:12:27 +0000 (20:12 +0000)]
More updates to the ACPI code:

 - Move all register I/O into acpi_io.c
 - Move event handling into acpi_event.c
 - Reorganise headers into acpivar/acpireg/acpiio
 - Move find-RSDT and find-ACPI-owned-memory into acpi_machdep
 - Allocate all resources (except those detailed only by AML)
   as real resources.  Add infrastructure that will make adding
   resource support to AML code easy.
 - Remove all ACPI #ifdefs in non-ACPI code
 - Removed unnecessary includes
 - Minor style and commenting fixes

Reviewed by: iwasaki

23 years agodocument support for ed(4) on alpha.
wilko [Sat, 30 Sep 2000 20:01:09 +0000 (20:01 +0000)]
document support for ed(4) on alpha.

Submitted by: alex

23 years agoThe `ed' NIC driver has been changed to work on Alpha now. So enable it
obrien [Sat, 30 Sep 2000 18:23:32 +0000 (18:23 +0000)]
The `ed' NIC driver has been changed to work on Alpha now.  So enable it
on all platforms.

Submitted by: Alexander Langer <alex@big.endian.de>

23 years agoNext round of ia64 work, including fixes to context switching,
dfr [Sat, 30 Sep 2000 17:48:44 +0000 (17:48 +0000)]
Next round of ia64 work, including fixes to context switching,
implementing cpu_fork(), copy*str(), bcopy(), copy{in,out}(). With these
changes, my test kernel reaches the mountroot prompt.

23 years agoUse issetugid instead of comparing get[ug]id and gete[ug]id.
nectar [Sat, 30 Sep 2000 17:29:54 +0000 (17:29 +0000)]
Use issetugid instead of comparing get[ug]id and gete[ug]id.

Suggested by: Don Lewis <Don.Lewis@tsc.tdk.com>

23 years agoSC_ALT_MOUSE_IMAGE is required for the mouse if SC_NO_FONT_LOADING or
marko [Sat, 30 Sep 2000 16:25:28 +0000 (16:25 +0000)]
SC_ALT_MOUSE_IMAGE is required for  the mouse if SC_NO_FONT_LOADING or
VGA_NO_FONT_LOADING are used.

PR: 21626
Submitted by: Vivek Khera <khera@kciLink.com>

23 years agoProperly setup link level header length for 802.2 and SNAP frames.
bp [Sat, 30 Sep 2000 14:33:53 +0000 (14:33 +0000)]
Properly setup link level header length for 802.2 and SNAP frames.

23 years agoFix compiling with AAC_DEBUG.
scottl [Sat, 30 Sep 2000 13:41:04 +0000 (13:41 +0000)]
Fix compiling with AAC_DEBUG.

23 years agoRemove a duplicate Feyman quote. Add his problem-solving algorithm.
phk [Sat, 30 Sep 2000 09:52:49 +0000 (09:52 +0000)]
Remove a duplicate Feyman quote.  Add his problem-solving algorithm.

23 years ago Big mbuf subsystem diff #1: incorporate mutexes and fix things up somewhat
bmilekic [Sat, 30 Sep 2000 06:30:39 +0000 (06:30 +0000)]
 Big mbuf subsystem diff #1: incorporate mutexes and fix things up somewhat
 to accomodate the changes.

 Here's a list of things that have changed (I may have left out a few); for a
 relatively complete list, see http://people.freebsd.org/~bmilekic/mtx_journal

   * Remove old (once useful) mcluster code for MCLBYTES > PAGE_SIZE which
     nobody uses anymore. It was great while it lasted, but now we're moving
     onto bigger and better things (Approved by: wollman).

   * Practically re-wrote the allocation macros in sys/sys/mbuf.h to accomodate
     new allocations which grab the necessary lock.

   * Make sure that necessary mbstat variables are manipulated with
     corresponding atomic() routines.

   * Changed the "wait" routines, cleaned it up, made one routine that does
     the job.

   * Generalized MWAKEUP() macro. Got rid of m_retry and m_retryhdr, as they
     are now included in the generalized "wait" routines.

   * Sleep routines now use msleep().

   * Free lists have locks.

   * etc... probably other stuff I'm missing...

  Things to look out for and work on later:

   * find a better way to (dynamically) adjust EXT_COUNTERS

   * move necessity to recurse on a lock from drain routines by providing
     lock-free lower-level version of MFREE() (and possibly m_free()?).

   * checkout include of mutex.h in sys/sys/mbuf.h - probably violating
     general philosophy here.

   The code has been reviewed quite a bit, but problems may arise... please,
   don't panic! Send me Emails: bmilekic@freebsd.org

Reviewed by: jlemon, cp, alfred, others?

23 years agoDocument passwd_format further.
green [Sat, 30 Sep 2000 00:37:44 +0000 (00:37 +0000)]
Document passwd_format further.

23 years agoRelease notes (and related documentation): ata(4) tagged queuing,
bmah [Fri, 29 Sep 2000 23:12:33 +0000 (23:12 +0000)]
Release notes (and related documentation):  ata(4) tagged queuing,
MFC asr(4) driver, update default kernel name, pcn(4) driver,
nullconsole type in i386 boot loader (+MFC), setproctitle(3) moved
to libc (+MFC), chio(1) voltag support, sed(1) -E (+MFC), ln(1) -i
(+MFC), PORTREVISION/PORTEPOCH (+MFC).

23 years agoRecognize the ATI Rage128-LF Mobility AGP video adapter.
jhb [Fri, 29 Sep 2000 21:15:02 +0000 (21:15 +0000)]
Recognize the ATI Rage128-LF Mobility AGP video adapter.

23 years agoSpelling police in a comment: Defalut -> Default.
jhb [Fri, 29 Sep 2000 21:14:05 +0000 (21:14 +0000)]
Spelling police in a comment: Defalut -> Default.

23 years agoAssume MAINTAINER. I will be taking the job of merging NetBSD/OpenBSD
will [Fri, 29 Sep 2000 19:51:48 +0000 (19:51 +0000)]
Assume MAINTAINER.  I will be taking the job of merging NetBSD/OpenBSD
improvements (including :C & :L, among others).  After that, I'll be coming
up with other ways to improve make(1).

Discussed in spirit with: peter

23 years agoAnsify and fix warnings.
dfr [Fri, 29 Sep 2000 16:53:39 +0000 (16:53 +0000)]
Ansify and fix warnings.

23 years agoImplement dirty and access bit exceptions.
dfr [Fri, 29 Sep 2000 16:52:50 +0000 (16:52 +0000)]
Implement dirty and access bit exceptions.

23 years agoBodge the simplelocks in a way which works UP.
dfr [Fri, 29 Sep 2000 16:51:33 +0000 (16:51 +0000)]
Bodge the simplelocks in a way which works UP.

23 years agoMake the alpha hacks dependant on __alpha__ instead of !__i386__.
dfr [Fri, 29 Sep 2000 16:50:31 +0000 (16:50 +0000)]
Make the alpha hacks dependant on __alpha__ instead of !__i386__.

23 years agoUse write-back instead of write-combining for region 7.
dfr [Fri, 29 Sep 2000 15:41:43 +0000 (15:41 +0000)]
Use write-back instead of write-combining for region 7.

23 years agoAdd a few more files for the ia64 port.
dfr [Fri, 29 Sep 2000 13:48:14 +0000 (13:48 +0000)]
Add a few more files for the ia64 port.

23 years agoThis is the first snapshot of the FreeBSD/ia64 kernel. This kernel will
dfr [Fri, 29 Sep 2000 13:46:07 +0000 (13:46 +0000)]
This is the first snapshot of the FreeBSD/ia64 kernel. This kernel will
not work on any real hardware (or fully work on any simulator). Much more
needs to happen before this is actually functional but its nice to see
the FreeBSD copyright message appear in the ia64 simulator.

23 years agoAdd ia64 support.
dfr [Fri, 29 Sep 2000 13:36:47 +0000 (13:36 +0000)]
Add ia64 support.

23 years agoChange ".align 3" to ".p2align 3" so that this works with ia64.
dfr [Fri, 29 Sep 2000 13:35:57 +0000 (13:35 +0000)]
Change ".align 3" to ".p2align 3" so that this works with ia64.

23 years agoAdd machine type for ia64.
dfr [Fri, 29 Sep 2000 13:35:14 +0000 (13:35 +0000)]
Add machine type for ia64.

23 years agoDon't support dynamic linking on ia64 for now - the tools can't cope.
dfr [Fri, 29 Sep 2000 13:34:04 +0000 (13:34 +0000)]
Don't support dynamic linking on ia64 for now - the tools can't cope.

23 years agoChange the conditionaal so that we only build this on i386 instead of
dfr [Fri, 29 Sep 2000 13:32:24 +0000 (13:32 +0000)]
Change the conditionaal so that we only build this on i386 instead of
trying to build it on all non-alpha arches.

23 years agoAdd ia64 support and fix problems when cross-building when the host has
dfr [Fri, 29 Sep 2000 13:29:43 +0000 (13:29 +0000)]
Add ia64 support and fix problems when cross-building when the host has
a different pointer size from the target.

23 years agoIgnore HESIOD_CONFIG and HES_DOMAIN environmental variables for
nectar [Fri, 29 Sep 2000 12:56:33 +0000 (12:56 +0000)]
Ignore HESIOD_CONFIG and HES_DOMAIN environmental variables for
set-user-ID and set-group-ID programs.

Suggested by: Danny Braniss <danny@cs.huji.ac.il>

23 years ago- Documented the host/bits syntax for destination argument.
ru [Fri, 29 Sep 2000 10:52:21 +0000 (10:52 +0000)]
- Documented the host/bits syntax for destination argument.
- Documented that netmask could be specified with third argument.

23 years agoInterpret the address argument as network-type address for `destination'
ru [Fri, 29 Sep 2000 10:50:11 +0000 (10:50 +0000)]
Interpret the address argument as network-type address for `destination'
argument only.  Before that, the `route add default gateway' first tried
the `gateway' as network address and passed its name to getnetbyname(3),
which in the BIND resolution case does the T_PTR lookup on that name.

23 years agoFixed the case where argument of 0.0.0.0/8 would match the default route.
ru [Fri, 29 Sep 2000 10:37:16 +0000 (10:37 +0000)]
Fixed the case where argument of 0.0.0.0/8 would match the default route.

23 years agoDocument that net.inet.ip.fw.one_pass only affects dummynet(4).
ru [Fri, 29 Sep 2000 08:39:06 +0000 (08:39 +0000)]
Document that net.inet.ip.fw.one_pass only affects dummynet(4).

Noticed by: Peter Jeremy<peter.jeremy@alcatel.com.au>

23 years agoAdjust for new location and name of kernel.
jkh [Fri, 29 Sep 2000 07:47:19 +0000 (07:47 +0000)]
Adjust for new location and name of kernel.

PR: 21423
Reported by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>

23 years agoBring this a bit more up to date.
julian [Fri, 29 Sep 2000 06:55:02 +0000 (06:55 +0000)]
Bring this a bit more up to date.
Remove the entire copy of ip_fw.h and just point readers at it as it
gets out of date..
Add mentions of dummynet and the fwd actions.

Still to do: Whoever did the 'stateful' stuff might mention it..

23 years agoFill in some more missing bits from cpu_features according to the Intel
peter [Fri, 29 Sep 2000 04:53:00 +0000 (04:53 +0000)]
Fill in some more missing bits from cpu_features according to the Intel
Pentium4 cpuid docs.

23 years agoFirst shot at identifying the Pentum 4 acording to our reading of the
peter [Fri, 29 Sep 2000 04:38:35 +0000 (04:38 +0000)]
First shot at identifying the Pentum 4 acording to our reading of the
the cpu_id extensions in the Intel docs.  There is more info available.
See the following URL for more details.
http://developer.intel.com/design/processor/future/manuals/CPUID_Supplement.htm

Requested by: Intel

23 years agoAdd support for pccard attachments of the ex driver. It supports the
imp [Fri, 29 Sep 2000 03:58:06 +0000 (03:58 +0000)]
Add support for pccard attachments of the ex driver.  It supports the
Olicom OC-2220 card, and maybe others.

Submitted by: iwasaki
Reviewed by: mdodd

23 years agoMove maxusers around to reduce the diff from RELENG_4 version.
obrien [Fri, 29 Sep 2000 03:24:03 +0000 (03:24 +0000)]
Move maxusers around to reduce the diff from RELENG_4 version.

23 years agoMFS: do not include MSDSOFS support for the Alpha
obrien [Fri, 29 Sep 2000 03:10:10 +0000 (03:10 +0000)]
MFS: do not include MSDSOFS support for the Alpha

23 years agoChange paths, /modules -> /boot/kernel in FILES section
marko [Fri, 29 Sep 2000 01:53:39 +0000 (01:53 +0000)]
Change paths, /modules -> /boot/kernel in FILES section

PR: 21635
Submitted by: Mike Meyer <mwm@mired.org>

23 years agoUse stronger random number generation for TCP_ISSINCR and tcp_iss.
kris [Fri, 29 Sep 2000 01:37:19 +0000 (01:37 +0000)]
Use stronger random number generation for TCP_ISSINCR and tcp_iss.

Reviewed by: peter, jlemon

23 years agoAdd man pages for mod*(2). Shamelessly cut/pasted from the kld*(2) man
peter [Thu, 28 Sep 2000 22:39:59 +0000 (22:39 +0000)]
Add man pages for mod*(2).  Shamelessly cut/pasted from the kld*(2) man
pages by Chris Costello.

23 years agoRemove superfluous code:
des [Thu, 28 Sep 2000 20:09:36 +0000 (20:09 +0000)]
Remove superfluous code:

   1) use devname() instead of searching /dev for the dump device

   2) use fopen() instead of open() so we don't need to differentiate
      between compressing and not compressing when writing the core
      file or the kernel (zopen() returns a FILE *, so we just use
      fwrite() in both cases)

There should be no functional changes.

23 years agoAdd suspend/resume hooks.
nsayer [Thu, 28 Sep 2000 14:02:49 +0000 (14:02 +0000)]
Add suspend/resume hooks.

Submitted by: sean@stat.duke.edu

23 years agoThere is not 342 series, 340 series includes 340, 341, and 342
sanpei [Thu, 28 Sep 2000 10:23:17 +0000 (10:23 +0000)]
There is not 342 series, 340 series includes 340, 341, and 342
models.

Suggested by: Brooks Davis <brooks@one-eyed-alien.net>

23 years agoImplement sn_pccard_match. The match routines are the compromise
imp [Thu, 28 Sep 2000 07:35:06 +0000 (07:35 +0000)]
Implement sn_pccard_match.  The match routines are the compromise
matching methods so that we can run the same driver on both NEWCARD
and OLDCARD.  Also set the device description to the card that we
found, if any.

The sn driver should be ready when the NEWCARD catches up.  There's a
config activation issue as well as a kernel thread issue to resolve
first.

23 years agoAdd pccard_product_lookup comatibility shim
imp [Thu, 28 Sep 2000 07:22:30 +0000 (07:22 +0000)]
Add pccard_product_lookup comatibility shim

23 years agoUse su -m instead of just su to avoid reading the users login profile
brian [Thu, 28 Sep 2000 05:43:44 +0000 (05:43 +0000)]
Use su -m instead of just su to avoid reading the users login profile

23 years agoCheck so_error in filt_so{read|write} in order to detect UDP errors.
jlemon [Thu, 28 Sep 2000 04:41:22 +0000 (04:41 +0000)]
Check so_error in filt_so{read|write} in order to detect UDP errors.

PR: 21601

23 years agoNo need to work around SCCS variable expansion any more.
kris [Thu, 28 Sep 2000 02:54:44 +0000 (02:54 +0000)]
No need to work around SCCS variable expansion any more.

23 years agoGet out the roto-rooter and clean up the abuse of nexus ivars by the
peter [Thu, 28 Sep 2000 00:37:32 +0000 (00:37 +0000)]
Get out the roto-rooter and clean up the abuse of nexus ivars by the
i386/isa/pcibus.c.  This gets -current running again on multiple host->pci
machines after the most recent nexus commits.  I had discussed this with
Mike Smith, but ended up doing it slightly differently to what we
discussed as it turned out cleaner this way.  Mike was suggesting creating
a new resource (SYS_RES_PCIBUS) or something and using *_[gs]et_resource(),
but IMHO that wasn't ideal as SYS_RES_* is meant to be a global platform
property, not a quirk of a given implementation.  This does use the ivar
methods but does so properly.  It also now prints the physical pci bus that
a host->pci bridge (pcib) corresponds to.

23 years agoFix cosmetic error in rmjob message.
wollman [Wed, 27 Sep 2000 19:23:15 +0000 (19:23 +0000)]
Fix cosmetic error in rmjob message.

PR: 21006

23 years agoSet SO_REUSEADDR so that lpd can start while old lpd connections are still
wollman [Wed, 27 Sep 2000 19:03:05 +0000 (19:03 +0000)]
Set SO_REUSEADDR so that lpd can start while old lpd connections are still
winding down (or timing out).  Also, be slightly more informative in
mcleanup() about why lpd is exiting.

PR: 21595

23 years agoFix typo
phantom [Wed, 27 Sep 2000 18:24:31 +0000 (18:24 +0000)]
Fix typo

PR: misc/21596
Submitted by: TOGAWA Satoshi <toga@puyo.org>

23 years agoDo the right thing if bdevvp is called twice for the same device.
mckusick [Wed, 27 Sep 2000 18:03:17 +0000 (18:03 +0000)]
Do the right thing if bdevvp is called twice for the same device.

Obtained from: Poul-Henning Kamp <phk@freebsd.org>

23 years agoFix specification for ftp5.fr.freebsd.org
jkh [Wed, 27 Sep 2000 17:23:57 +0000 (17:23 +0000)]
Fix specification for ftp5.fr.freebsd.org

Reported by: Jean-Claude Christophe <jch@oleane.net>

23 years agoFix spelling of Katmai [Katami].
asmodai [Wed, 27 Sep 2000 11:33:31 +0000 (11:33 +0000)]
Fix spelling of Katmai [Katami].

23 years agoFixed broken path /etc/mailer.conf -> /etc/mail/mailer.conf
marko [Wed, 27 Sep 2000 07:46:14 +0000 (07:46 +0000)]
Fixed broken path /etc/mailer.conf -> /etc/mail/mailer.conf

PR: 21586
Submitted by: tim@desert.net

23 years agoWhitespace, spelling and comments cleanup. Try to bring this a little
msmith [Wed, 27 Sep 2000 05:43:54 +0000 (05:43 +0000)]
Whitespace, spelling and comments cleanup.  Try to bring this a little
closer to a consistent style without going totally overboard.  Preserve
the 8-space indents even though I loathe them.

23 years agoShut up some debugging messages that appear to have been left on by
msmith [Wed, 27 Sep 2000 01:40:47 +0000 (01:40 +0000)]
Shut up some debugging messages that appear to have been left on by
default.

Fix the identify/probe/attach cycle somewhat.  Now in acpi_identify we
parse enough of the RSDT/FACP to find the communications port and
interrupt so that we can establish these as resources on the acpi device.

Pass the softc to acpi_queue_event so that it doesn't dereference NULL
when acpi_intr is invoked in the attach routine (because devclass_get_softc
isn't going to work yet).

Account for our allocated resources properly so that we can free them
if required.

23 years agoSince the nexus is responsible for creating the I/O resources (ports, memory)
msmith [Wed, 27 Sep 2000 00:51:42 +0000 (00:51 +0000)]
Since the nexus is responsible for creating the I/O resources (ports, memory)
it ought to be able to deal with devices directly attached to it having
allocations of such resources.  Make it so.

23 years agoAdd code for device wake capability during sleeping state.
iwasaki [Tue, 26 Sep 2000 20:21:19 +0000 (20:21 +0000)]
Add code for device wake capability during sleeping state.
 - Add acpi_gpe_enable_bit() to manipulate GPE enable registers based
  on _PRW objects.
 - Add acpi_set_device_wakecap().  This will manipulate related
   PowerResource objects and execute _PSW method of the device.
 - Cleanup and some small fixes.

This code was implemented based on 7.2.1 _PRW in spec mainly.

23 years agoRemoved garbage (CFLAGS+= ${PROTOS} was a vestige of an old way of
bde [Tue, 26 Sep 2000 19:32:51 +0000 (19:32 +0000)]
Removed garbage (CFLAGS+= ${PROTOS} was a vestige of an old way of
configuring INET).

23 years agoRemoved fresh garbage (vestiges of old way of configuring number of
bde [Tue, 26 Sep 2000 19:25:14 +0000 (19:25 +0000)]
Removed fresh garbage (vestiges of old way of configuring number of
units), mature garbage (vestiges of old way of configuring bpf) and
old garbage (vestiges of old way of configuring INET).

Fixed most style bugs.

23 years agoRemoved mature garbage (vestiges of old way of configuring bpf) and old
bde [Tue, 26 Sep 2000 19:17:35 +0000 (19:17 +0000)]
Removed mature garbage (vestiges of old way of configuring bpf) and old
garbage (vestiges of old way of configuring INET).

Fixed most style bugs.

23 years agoCall make_dev() with the correct minor number.
phk [Tue, 26 Sep 2000 19:09:44 +0000 (19:09 +0000)]
Call make_dev() with the correct minor number.
(no, this driver still doesn't play ball with DEVFS)

23 years agoRemoved garbage (CFLAGS+= ${PROTOS} was a vestige of an old way of
bde [Tue, 26 Sep 2000 18:55:24 +0000 (18:55 +0000)]
Removed garbage (CFLAGS+= ${PROTOS} was a vestige of an old way of
configuring INET).

Fixed most style bugs (mainly hard-coding of ${.TARGET}).

23 years agoHandle slip options in the usual way (generate a dummy options file in
bde [Tue, 26 Sep 2000 18:34:30 +0000 (18:34 +0000)]
Handle slip options in the usual way (generate a dummy options file in
the module Makefile and don't clutter the sources with ifdefs).

Fixed nearby formatting bugs.

23 years agoRemoved fresh garbage (old way of configuring number of units) and old
bde [Tue, 26 Sep 2000 18:20:37 +0000 (18:20 +0000)]
Removed fresh garbage (old way of configuring number of units) and old
garbage (very old way of configuring INET).

Fixed a style bug (hard-coded ${.TARGET}).

23 years agoBacked out previous commit (SMPng megacommit: support for garbage added
bde [Tue, 26 Sep 2000 18:09:02 +0000 (18:09 +0000)]
Backed out previous commit (SMPng megacommit: support for garbage added
to ppp_tty.c by the megacommit, and garbage added here).

23 years agoRemoved unused includes (garbage left over/created by the SMPng megacommit).
bde [Tue, 26 Sep 2000 17:48:55 +0000 (17:48 +0000)]
Removed unused includes (garbage left over/created by the SMPng megacommit).

23 years agoAdd struct proc *acpi_thread in acpi_softc.
iwasaki [Tue, 26 Sep 2000 17:42:34 +0000 (17:42 +0000)]
Add struct proc *acpi_thread in acpi_softc.

23 years agoClear intrrupt before kthread gets ready.
takawata [Tue, 26 Sep 2000 12:39:37 +0000 (12:39 +0000)]
Clear intrrupt before kthread gets ready.

Submitted by: iwasaki

23 years agoAdd event queueing kernel thread and GPE related code.
takawata [Tue, 26 Sep 2000 12:09:57 +0000 (12:09 +0000)]
Add event queueing kernel thread and GPE related code.

23 years agoDocument the pmtimer driver.
iwasaki [Tue, 26 Sep 2000 11:27:30 +0000 (11:27 +0000)]
Document the pmtimer driver.

Pointed-out by: esu@yk.rim.or.jp (Shinya Esu)

23 years agoRecognize new Pentium III Xeon (stepping A0).
kato [Tue, 26 Sep 2000 08:59:55 +0000 (08:59 +0000)]
Recognize new Pentium III Xeon (stepping A0).

PR: 21233
Submitted by: ade

23 years agoadd Cisco Systems Aironet 342 Series 11Mbps 802.11 wireless NIC
sanpei [Tue, 26 Sep 2000 06:39:47 +0000 (06:39 +0000)]
add Cisco Systems Aironet 342 Series 11Mbps 802.11 wireless NIC
same cis as Aironet 340

PR: 21447

23 years agoaio_qphysio: Eliminate one instance of an out-of-range check that is
alc [Tue, 26 Sep 2000 06:35:22 +0000 (06:35 +0000)]
aio_qphysio: Eliminate one instance of an out-of-range check that is
 performed twice.  Eliminate initialization that is already performed
 by _aio_aqueue.

aio_physwakeup: Eliminate redundant synchronization that is already
 performed by bufdone.

23 years agoadd Cisco Systems Aironet 340 Series 11Mbps 802.11 wireless NIC
sanpei [Tue, 26 Sep 2000 06:29:40 +0000 (06:29 +0000)]
add Cisco Systems Aironet 340 Series 11Mbps 802.11 wireless NIC

PR: 20777

23 years agoMake size of dynamic loader argument variable to support
takawata [Tue, 26 Sep 2000 05:09:21 +0000 (05:09 +0000)]
Make size of dynamic loader argument variable to support
various executable file format.

Reviewed by: peter

23 years agoext2fs depends on ufs code, so update it to properly handle v_lock field.
bp [Tue, 26 Sep 2000 01:31:46 +0000 (01:31 +0000)]
ext2fs depends on ufs code, so update it to properly handle v_lock field.

Noticed by: bde

23 years agoSupport multiple (comma separated) names as arguments to -U
brian [Tue, 26 Sep 2000 01:03:16 +0000 (01:03 +0000)]
Support multiple (comma separated) names as arguments to -U

PR: 11051

23 years agoFinally make do_tcpdrain sysctl live under correct parent, _net_inet_tcp,
bmilekic [Mon, 25 Sep 2000 23:40:22 +0000 (23:40 +0000)]
Finally make do_tcpdrain sysctl live under correct parent, _net_inet_tcp,
as opposed to _debug. Like before, default value remains 1.

23 years agooff-by-1 error in string length validation
itojun [Mon, 25 Sep 2000 23:04:36 +0000 (23:04 +0000)]
off-by-1 error in string length validation
From: Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>

23 years agoCorrect a logic mistake introduced in a recent cleanup of
gibbs [Mon, 25 Sep 2000 21:56:19 +0000 (21:56 +0000)]
Correct a logic mistake introduced in a recent cleanup of
ahc_build_transfer_msg() that would cause use to fail to send the
DT_REQ ppr_option in a PPR message for periods where DT transfers
are required.

23 years agoFix the http proxy fetch code.
jkh [Mon, 25 Sep 2000 20:19:43 +0000 (20:19 +0000)]
Fix the http proxy fetch code.

Submitted by: Philipp Mergenthaler <p@i609.hadiko.de>
PR: 21449

23 years agoStop the freebsd hardwired version of send-pr from requesting
peter [Mon, 25 Sep 2000 19:37:55 +0000 (19:37 +0000)]
Stop the freebsd hardwired version of send-pr from requesting
submitter-id's and try and stop people sending 'Confidential: yes' PRs.
The gnats database is public.

23 years agoPrevious commit was to add an -X switch to disable recursive expansion with
peter [Mon, 25 Sep 2000 18:46:24 +0000 (18:46 +0000)]
Previous commit was to add an -X switch to disable recursive expansion with
-V.

PR: bin/17188
Submitted by: Mark Valentine <mark@thuvia.demon.co.uk>

23 years ago*** empty log message ***
peter [Mon, 25 Sep 2000 18:44:30 +0000 (18:44 +0000)]
*** empty log message ***

23 years agoMissing quote
peter [Mon, 25 Sep 2000 18:23:34 +0000 (18:23 +0000)]
Missing quote

PR: misc/19745
Submitted by: Tony Finch <dot@dotat.at>

23 years agoIn theory, m_dup should not be necessary, as m_copypacket should be
nsayer [Mon, 25 Sep 2000 17:24:02 +0000 (17:24 +0000)]
In theory, m_dup should not be necessary, as m_copypacket should be
sifficient. But somewhere (I believe in the UDP stuff), someone is
overwriting an mbuf without calling m_pullup() first. This results in
broad- and multi-cast traffic that is passed through the bridge getting
corrupted.

This should be backed out when there is some assurance that the upper
layers (and I suppose all of the device drivers) are fixed.

Suggested by: archie