mpp
029ea9012d
Fix a bunch of spelling errors in a bunch of man pages.
1996-01-30 13:52:50 +00:00
ache
2484a93ae4
READTOCENTRYS: protect against stack overflow when incorrect data
...
stored in CD's TOC
1996-01-30 13:15:28 +00:00
ache
70d7165a28
READTOCENTRYS: handle 0 and lead out requests, add argument checking
1996-01-30 12:59:00 +00:00
dg
894e07d36c
savectx() strikes again: the saved stack pointer wasn't properly adjusted
...
to remove the return address. It's only the frame pointer and luck that
allowed the code to work at all.
1996-01-30 12:54:21 +00:00
peter
84050bbcdf
Call pipe_stat() when presented with a DTYPE_PIPE file in the linux
...
fstat() syscall, rather than panic("linux newfstat").
(Note: I've extracted this from a larger set of diffs, I'm confident I've
not missed any dependencies but can't modload it to test it on my system)
1996-01-30 12:23:17 +00:00
ache
018f8b73d4
Don't generate EINVAL for data_len too big in READTOCENTRYS, it
...
reduces automatically to reasonable value in the code below
1996-01-30 12:07:15 +00:00
ache
88c44f460a
Use starting track 0 for READTOCENTRYS, should be converted
...
to real starting track in CD driver.
Old code assume that starting track is always 1.
1996-01-30 12:00:43 +00:00
ache
0b35d6b137
Use 0 as starting track number for READTOCENTRYS,
...
should be converted to real starting track into CD driver.
Old variant assume that starting track is always 1.
1996-01-30 11:44:33 +00:00
ache
79c1885034
Fix READTOCENTRYS partialy based on kientzle@netcom.com patch partialy on
...
my own ideas
1996-01-30 11:32:20 +00:00
dfr
5697b4875c
Some patches to ppp which improve stability. I have been running a
...
ppp based on these patches for about 3 weeks with no downtime.
The original submitters comments:
Two features iijppp has over kernel ppp that I like are predictor1
compression and demand dialing. Here are a few bug fixes.
I expanded the priority queueing scheme and discovered it was broken
due to the assignment at ip.c line 300. All packets were being
queued at the same priority.
Fixing priority queueing broke predictor1 compression. Packets
were compressed before being queued and predictor1 worked as long
as the packets were popped off the queue in the same order they
were pushed onto the queue.
There were a few byte order problems in IP header tests also.
There is a recursion problem in SendLqrReport(). LcpClose() is
called when "Too many echo packets are lost" which winds up in
SendLqrReport() again. I believe the original intention was to
just stop the LQR timer with the call to StopLqr() but the side
effects hurt.
Submitted by: John Capo <jc@irbs.com>
1996-01-30 11:08:50 +00:00
ache
5cf5dc1c1b
Fix audio part, especially READTOCENTRYS inspired by NetBSD driver
...
and my own ideas
1996-01-30 10:31:12 +00:00
dg
d878e1bba3
Increase tmpstk size to 8K and make certain it is longword aligned.
1996-01-30 07:59:02 +00:00
dg
888db12379
Restore my change to the watchdog params that Paul spammed in rev 1.18.
1996-01-30 07:25:44 +00:00
nate
e72751bbe5
Back out the thread_init code in order to allow -current to bootstrap
...
from -stable, until a better solution is found.
Submitted by: Consensus of mailing list and the almighty Jordan :)
1996-01-30 05:55:20 +00:00
nate
75cf73fc72
Added 'install' to the inclde-tools target, as it has a new options "-C"
...
which is used when installing the include files.
Submitted by: John Hay -- John.Hay@csir.co.za
1996-01-30 05:46:35 +00:00
nate
74725ec43f
Kludge alert!
...
Add new 'include-tools' target, which the 'includes' target depends on.
Currently, it consists of rpcgen.
1996-01-30 05:22:00 +00:00
mpp
5481cb34cc
Fix a typo in a comment.
1996-01-30 02:56:08 +00:00
joerg
4027e1bdc0
Attempt to figure out the size of the device/file we are about to
...
format. A bit tricky, but i believe this to work for 98 % of the
cases.
1996-01-30 02:35:08 +00:00
asami
f1cc2873fa
ccdcontrol -> ccdconfig.
1996-01-30 01:25:40 +00:00
se
5c169641b0
Add heuristic to detect multi-function devices that don't announce this
...
feature in the header type register, though it is required by the PCI spec.
This should correctly probe both functions of the Intel 82371FB chip,
without the need for a special case based on the device ID.
1996-01-30 01:14:29 +00:00
mpp
15edaba8d4
Fix a bunch of spelling errors.
1996-01-29 23:52:43 +00:00
mpp
832c3759d7
Fix some spelling errors.
1996-01-29 22:53:24 +00:00
joerg
264a0035be
Add the -u flag to the cpio's used to install the initial files, just
...
to make sure they will be overwritten even in cases where the've
bogusly got more recent timestamps.
1996-01-29 20:17:27 +00:00
mpp
1ac2a891e6
Getpwent() and getservent() can wind up calling free() with
...
an invalid pointer if a call to yp_first() fails. Closes PR # 964,
and possibly # 952.
1996-01-29 20:16:30 +00:00
joerg
ecab0dd9b6
Remove redundant declaration for worminit(). Dunno why my config(8)
...
didn't generate it, but it's supposed to.
1996-01-29 19:46:26 +00:00
peter
3ef0d926e1
Minor tweak to allow the mbone mapper to work again on hosts which are
...
themselves acting as multicast routers.
Reviewed by: Bill Fenner (quite some time ago)
1996-01-29 16:04:20 +00:00
mpp
17b63fb8eb
Don't install sendmail setgid kmem since it doesn't really
...
require kmem access. It is currently configured to call getloadavg(3),
which uses sysctl(2) to determine the load average, which is the
only reason some sendmails require kmem access.
1996-01-29 13:19:49 +00:00
ache
b67dc5ec7b
Add missing cat9
1996-01-29 12:34:43 +00:00
dg
051c471301
Added a check/panic for vm_map_find failing to find space for the page
...
tables/u-pages when forking. This is a "can't happen" case. :-)
1996-01-29 12:10:30 +00:00
dg
4eb1dfc3d5
Implement what I mentioned in rev 1.18: limit per-bucket allocations to
...
60% of physical memory or 60% of malloc area size, whichever is smaller.
1996-01-29 11:12:37 +00:00
dg
9eb3675490
Fixed two bugs in the calculation of the malloc area (kmem_map) size:
...
1) The calculation didn't account for NMBCLUSTERS, so if a large number of
clusters was specified, it would leave little or no space for kernel
malloc.
2) It was bogusly restricted to v_page_count. This doesn't take into
account the sparseness of the malloc area and would have caused
problems on machines with small amounts of memory. It should probably
instead be changed to set the malloc limit to be constrained by
the amount of memory, but I didn't do this.
1996-01-29 09:58:34 +00:00
gpalmer
09b9c7fb63
Add an option to start mrouted. Off by default
1996-01-29 08:46:14 +00:00
gibbs
6a386e2d17
Add LIST_INSERT_BEFORE and TAILQ_INSERT_BEFORE.
...
Change examples to actually free() the nodes removed from lists.
Give examples of faster list deletion routines.
1996-01-29 03:23:05 +00:00
gibbs
37e6b26c0b
Add LIST_INSERT_BEFORE and TAILQ_INSERT_BEFORE. These are used by the
...
new eisaconf code.
1996-01-29 03:20:44 +00:00
gibbs
e8eaf43bfb
Prevent media eject on first open and re-enable ejection on last close.
...
The previous behavior was based on the lifetime of a "mount session"
which isn't very obvious.
1996-01-29 03:19:23 +00:00
gibbs
3d3c1425b1
Update copyright.
1996-01-29 03:18:20 +00:00
gibbs
044dede750
Kernel printf now returns int.
1996-01-29 03:18:05 +00:00
gibbs
3b3069ad10
Changes to support Performance enhancements in the sequencer.
...
Bring back the polling code (for dumps mostly), but protect it
with splbio() to make it safe for reprobes.
1996-01-29 03:17:39 +00:00
gibbs
c1bdaae5e0
Finally commit Serge's multicast and "misc other changes" patch. I
...
don't have a network to test it on here, but it does probe my card okay.
Submitted by: "Serge A. Babkin" <babkin@hq.icb.chel.su>
1996-01-29 03:16:14 +00:00
gibbs
fb4948f843
Another pass through eisaconf. Ioaddrs and Maddrs are link lists now.
...
The Bt driver is the only one that actually registers multiple addresses.
Probe output is formatted to 80 columns.
1996-01-29 03:13:23 +00:00
gibbs
b5138efd23
Performance optimizations. Unroll all bcopies. Use PIO to transfer SCBs
...
since setting up the DMA is too costly. Restructure for efficiency.
Pause the sequencer when a parity error occurs so that the kernel driver
knows during which phase the error was encountered.
1996-01-29 03:12:06 +00:00
jkh
0c61757e73
Whoops! Include paths.h instead of sys/cdefs.h - that results in
...
PATH_VARTMP having a somewhat saner value.
Submitted by: matthew green <mrg@eterna.com.au>
By way of: Eric Allman <eric@sendmail.org>
1996-01-29 02:58:11 +00:00
dyson
5704b3a0bc
Fixed an uninitialized variable (argument to vm_map_find) -- problem
...
that DG detected, and promptly found a fix.
Submitted by: davidg
1996-01-29 02:57:33 +00:00
wosch
f43a34aa1d
german calenda
1996-01-29 00:34:18 +00:00
wosch
61a70e21d6
include preprocessor commands like
...
#ifndef _calendar_christian_
#define _calendar_christian_
[...]
#endif
1996-01-29 00:33:02 +00:00
wosch
db86d07a14
install new calendars/de_DE.ISO8859-1/calendar.* files
1996-01-29 00:31:29 +00:00
wosch
9e7aff489f
Section SEE ALSO complete
1996-01-29 00:05:36 +00:00
wosch
e2e3dfb032
Section FILES and SEE ALSO complete
1996-01-29 00:02:39 +00:00
wosch
6873869c04
Section FILES and SEE ALSO completed
...
Section FILES and SEE ALSO completed
1996-01-28 23:57:38 +00:00
wosch
fdb0b3e8cb
Section FILES and SEE ALSO completed
1996-01-28 23:57:09 +00:00