Lars Fredriksen
71cad36771
Reviewed by: Matthew Jacob
...
Changed the timeout to wait for writing of filemarks to complete from 1
minute to 3 minutes. This should probably be enhanced to be a sysctl variable.
2001-07-02 16:39:17 +00:00
Assar Westerlund
80631942e5
add MR-AFS port numbers
2001-07-02 16:03:50 +00:00
Crist J. Clark
92a99815a8
While in there fixing a fragment logging bug, fix it so we log
...
fragments "right." Log fragment information tcpdump(8)-style,
Jul 1 19:38:45 bubbles /boot/kernel/kernel: ipfw: 1000 Accept ICMP:8.0 192.168.64.60 192.168.64.20 in via ep0 (frag 53113:1480@0+)
That is, instead of the old,
... Fragment = <offset/8>
Do,
... (frag <IP ID>:<data len>@<offset>[+])
PR: kern/23446
Approved by: ru
MFC after: 1 week
2001-07-02 15:50:31 +00:00
Brian Feldman
5e6abe66d8
Detect the device on e.g. Dell OptiPlex GX110s.
2001-07-02 15:29:38 +00:00
Brian Feldman
0cfa4761f7
Make all this compile on 4.3, modulus sbuf.
2001-07-02 15:27:28 +00:00
Crist J. Clark
6ca048f825
Lose any stray host bits that a user may have entered when providing
...
a network number and netmask to the '-a' option.
Approved by: ru
MFC after: 1 week
2001-07-02 15:26:47 +00:00
Benno Rice
e5a44502dd
Add device ID for the OHCI controller in the Apple KeyLargo chip.
2001-07-02 14:03:25 +00:00
Kris Kennaway
0c50e5287e
Silence some of the -Wnon-const-format warnings and add __printflike()
...
to a function prototype which needs it.
Approved by: brian
MFC After: 2 weeks
2001-07-02 12:27:49 +00:00
Brian Somers
8e18db5a52
Fix some typos.
...
Submitted by: Jimmy Olgeni <olgeni@uli.it>
MFC after: 1 week
2001-07-02 12:23:28 +00:00
Yoshihiro Takahashi
d22e161a15
Fixed warning message.
...
Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
2001-07-02 10:18:56 +00:00
Yoshihiro Takahashi
bf23a1be12
Fixed to support C-NET(9N)E.
2001-07-02 10:14:57 +00:00
Nik Clayton
168b0b9d70
"changing" -> "charging"
...
PR: docs/15004
Submitted by: Kazuo Horikawa <horikawa@jp.FreeBSD.org>
2001-07-02 09:33:50 +00:00
Warner Losh
e58e069802
Minor style(9) changes before I get going.
2001-07-02 06:12:59 +00:00
Warner Losh
e51a61e842
Fix a couple of compile warnings because WLDEBUG and WLCACHE were
...
not defined.
2001-07-02 06:02:39 +00:00
Warner Losh
cf8a1123e4
Move wl driver to dev/wl. Repo copied to dev/wl, the old copies
...
removed and a minimal number of changes to make it compile in the new
location.
# I have a fully converted on a disk that may be crashed. If it is
# crashed, I'll redo the work.
2001-07-02 05:58:47 +00:00
Warner Losh
a3d1987d23
Bump config version in config.
2001-07-02 05:38:26 +00:00
Warner Losh
ab11128f3e
Bump config version.
2001-07-02 05:36:32 +00:00
Warner Losh
4442d34e46
Repo copy i82586.h to dev/ic/i82586.h.
...
This file currently is very ie specific, but I have plans to change
that...
2001-07-02 05:29:58 +00:00
Dima Dorfman
91308c55b5
Bring back part of rev. 1.296 I accidently reverted in the previous
...
commit.
2001-07-02 00:24:23 +00:00
Dima Dorfman
13704ca508
Introduce DEVICE_INIT, DEVICE_GET, and DEVICE_SHUTDOWN macros. As the
...
names suggest, they perform methods on Device's. In addition, they
check that the pointer passed to them is valid; if it isn't, they
pretend that the action failed. This fixes some crashes due to NULL
dereferences (e.g., PR 26509).
Approved by: jkh (some time ago)
2001-07-02 00:18:04 +00:00
Warner Losh
0c2e00bb8f
Combine a couple of tests to reduce the indentation level.
2001-07-01 23:41:57 +00:00
Warner Losh
554a9d4aa3
Some interrelated interrupt changes.
...
Frist, for pci slots, make the setup intr save the requested interrupt
vector and arg and return rather than passing it up to our parent. On
interrupts, we call this vector iff there's a card in the slot. This
should eliminate some of the hangs or "weird" messages that people see
when ejecting cards and also help close the race window somewhat.
Reading the pci bus one more time for this information is judged to be
an acceptible tradeoff since it is very very fast.
Cleanup a little how we detect unsupported cards. Only detect
unsupported cards (eg cardbus cards) on card insertion (or more
pedantically when a card is actually present). This should allow us
to change the message in the future to "cardbus card not supported
with OLDCARD" :-).
Note:
We may also consider this for the ISA bus case, but there the
reads are much more expensive and the location of the CD pin
status lines appears to be less standardized. Also, the ISA
management interrupt isn't shared with the card's interrupt.
The mutliplex the CSC and function interrupts bit also appears
to be non-standard (or at least not imlemented on all
bridges).
2001-07-01 23:41:43 +00:00
Warner Losh
c820d555c5
Write zeros into the base/bounds register bars. We need to do this
...
because NEWBUS (and I think some versions of Windows sometimes) writes
0xffffffff to these registers to disable them. When they are
"disabled" like this, writing memory ranges to the pcic registers are
ignored and you will get "card (null) (null)" when you insert a call
otherwise.
2001-07-01 23:41:24 +00:00
Warner Losh
6428acdc74
First cut at getting the pcic controller and power information for
...
each of the bridge chips. Before we wrongly assumes that all cardbus
bridge chips were intel compatible step A/B. This mostly worked, but
likely caused problems with certain cirrus logic cardbus bridges.
2001-07-01 23:41:09 +00:00
Warner Losh
c799054841
Clarify some of the 3.3V code with better comments. Also, since the
...
types are treated as a bitfield, test them as such.
2001-07-01 23:40:54 +00:00
Warner Losh
8ffbd9cfc5
Add comments explaining why we do the somewhat odd irq mapping on PC98
...
machines with C-BUS cards.
2001-07-01 23:40:41 +00:00
Warner Losh
f5d80c4a5f
Minor whitespace nit.
2001-07-01 23:40:19 +00:00
Warner Losh
0e3cd5fe1b
Obrien created this directory, but I didn't cvs add cvsignore
2001-07-01 23:37:03 +00:00
Warner Losh
1f94b9005c
Don't need the .keep_me files. Obrien and I committed past each other.
...
Add 0-9 to the list of possible kernel names at matsushita-san's
suggestion.
Submitted by: Makoto MATSUSHITA-san <matusita@jp.FreeBSD.org>
2001-07-01 23:35:44 +00:00
Kris Kennaway
bc56b93a4e
Add __printflike() to those static functions which need it.
2001-07-01 23:24:27 +00:00
Dima Dorfman
22e7ef3dd1
Mention xargs -J.
2001-07-01 22:58:45 +00:00
Dima Dorfman
7c9bebf9b3
Correct grammar.
2001-07-01 22:47:09 +00:00
Kris Kennaway
8fb0816a85
Silence format string warnings.
...
MFC after: 2 weeks
2001-07-01 22:00:26 +00:00
Cameron Grant
1b6c76a2fe
intel ich/ich2 driver - this needs some work but is functional enough for
...
the impatient.
Hardware...
Provided by: ps
Lost by: <censored>
Found by: <censored>
Not delivered by: Ashley Penney <ashp@unloved.org>
Retrieved by: greid, Andrew McKay <andy@openirc.co.uk>
Delivered by: Andrew McKay <andy@openirc.co.uk>
PR: kern/25507
Submitted by: Katsurajima Naoto <raven@katsurajima.seya.yokohama.jp>
2001-07-01 19:38:58 +00:00
Cameron Grant
113375dc42
add module version/dependancies
2001-07-01 18:59:15 +00:00
Cameron Grant
c76f01164f
don't set a flag that is already set
2001-07-01 18:57:16 +00:00
Cameron Grant
4712b1eba1
set default 'monitor' volume (ac97 headphones) to 75%
2001-07-01 18:53:24 +00:00
Gerard Roudier
0df908ab74
Submitted by: Chip Salzenberg <chip@perlsupport.com>.
...
MFC after: 5 days
- Mask GPCNTL against 0x1c (was 0xfc) for the reading of the NVRAM.
This ensures LEDC bit will not be set on 896 and later chips.
Submitted by Chip Salzenberg <chip@perlsupport.com>.
- Add probe for Tekram 390 U2B/U2W SCSI (53C895) LED handling.
Submitted by Chip Salzenberg <chip@valinux.com>
2001-07-01 16:04:07 +00:00
Mike Heffner
be1bf707c9
Convert two instances of a lseek()+read() combination to a pread().
...
PR: bin/17640
MFC after: 2 weeks
2001-07-01 04:46:20 +00:00
Benno Rice
640ce680dc
Don't include machine/autoconf.h for now. It's not used and is breaking the
...
build.
2001-07-01 02:45:15 +00:00
Benno Rice
b7ac1056e7
Register definitions for the OpenPIC used in various models of
...
iMac/PowerMac/iBook/PowerBook.
Obtained from: NetBSD
2001-07-01 02:43:38 +00:00
Benno Rice
c791ba59c0
Add TRAPF_* macros required by MI-ification of ast() and userret().
...
Submitted by: Mark Peek <mark@whistle.com>
2001-07-01 02:38:38 +00:00
Dima Dorfman
232edd1c88
Correct a brain-o in the stats output.
...
PR: 24839
Submitted by: AMAKAWA Shuhei <amakawa@sf.t.u-tokyo.ac.jp>
2001-06-30 21:39:31 +00:00
Mike Heffner
646bd49ed1
Reset errno so that subsequent TFTP requests don't fail after the
...
first failure.
PR: misc/25502
MFC after: 2 weeks
2001-06-30 21:39:09 +00:00
Warner Losh
189c7da2ec
Fix make release for new kernel locations
2001-06-30 17:20:12 +00:00
David E. O'Brien
1c08d95d1a
Add .cvsignore so that CVS stop's complaining about people's kernel build dirs.
2001-06-30 15:38:06 +00:00
David E. O'Brien
1453323996
Grrr, this was added in the wrong place.
...
Have I mentioned before how much I hate remove CVS when adding directories???
Ask me about it (got 3 hours...)
2001-06-30 15:21:34 +00:00
David E. O'Brien
5e6ded4212
Ensure sys/${MACHINE}/compile/FOO exists
...
Reviewed by: arch, imp, peter, and the USENIX terminal room secret kernel cabal
2001-06-30 15:16:29 +00:00
Nik Clayton
302bba85d6
/dist is a mount point used by sysinstall(8), not an extraction directory.
2001-06-30 14:56:44 +00:00
Mike Pritchard
d6368edb13
Fix a couple of typos.
2001-06-30 14:42:20 +00:00