Commit Graph

109999 Commits

Author SHA1 Message Date
toshii 92684e028b Make emuxki_voice_set_audioparms return EINVAL if invalid sample rate
is passed.
2003-03-17 12:20:27 +00:00
jdolecek 104bc312b7 add kqueue support 2003-03-17 11:39:16 +00:00
jdolecek b26a2a3bdd no need to export union_vfsops here 2003-03-17 10:31:14 +00:00
jdolecek b712ffbfbd add comment for one NULL union_vfsops member 2003-03-17 10:28:41 +00:00
jdolecek ad5a73ba6b build and install union LKM now that it works 2003-03-17 09:18:53 +00:00
jdolecek 46eb0d5bf0 make it possible for UNION fs to be loaded via LKM - instead of
having some #ifdef UNION code in vfs_vnops.c, introduce variable
'vn_union_readdir_hook' which is set to address of appropriate
vn_readdir() hook by union filesystem when it's loaded & mounted
2003-03-17 09:11:29 +00:00
jdolecek 0e2c1bbb82 apparently variable 'buf' in vn_readdir() shadows some global symbol,
remove from prototype
2003-03-17 09:06:40 +00:00
jdolecek babb6ed282 drop some variable names from physio() prototype - e.g. 'minphys' shadows
global minphys()
2003-03-17 09:05:30 +00:00
wiz 42a6975065 Improve English, sort SEE ALSO.
XXX: list of valid charclasses should be added.
2003-03-17 08:49:46 +00:00
wiz f885d77c51 Drop trailing space. 2003-03-17 08:41:31 +00:00
wiz 64e132da8b Fix typo. 2003-03-17 08:39:54 +00:00
wiz aae776727f Use .Dv in some places, add "function" in another, and sort SEE ALSO. 2003-03-17 08:33:45 +00:00
wiz 0d4f93ac07 Use Dv in some places, and sort SEE ALSO. 2003-03-17 08:29:44 +00:00
wiz 70fd69c1f5 New sentence, new line; bump date for recent changes. 2003-03-17 08:19:22 +00:00
wiz c434363e30 Bump date for recent change. 2003-03-17 08:16:10 +00:00
wiz 2df55409df Update date for recent changes. 2003-03-17 08:15:07 +00:00
wiz bb0017433e Bump date for BRIDGE_IPF description. 2003-03-17 08:01:58 +00:00
wiz 676e42ffce Consistent tab usage. 2003-03-17 08:00:38 +00:00
martin 358b4d4e49 When being passed bogus file descriptors make close(2) return EBADF.
From Stephen Ma in PR kern/20762.
2003-03-17 07:57:13 +00:00
wiz a798d4ff8e Consistent tab usage. 2003-03-17 07:45:04 +00:00
wiz 0385ba9e85 Fix section in Xref. 2003-03-17 07:30:38 +00:00
wiz 644690013e Replace some man macros with mdoc macros, and clean up a bit. 2003-03-17 07:28:59 +00:00
rafal 090fac3d8b Update for devopen() change. 2003-03-17 03:07:14 +00:00
rafal 5bd093cfbd If the boot device starts with a PCI bus spec, skip over that when looking
for a boot device type; this gets the boot.ip32 booting a kernel off disk.

While here remove some unrolled string compares in favor of strncmp() to
make code more readable.
2003-03-17 03:04:51 +00:00
martin b38f12bdd4 Fix a race condition where a writer could already have closed the fifo
before the reader woke up - this made the reader loop again, waiting
for another writer, even though there was input available.

Thanks to Jaromir for spotting the real cause and sugesting a solution.

This should fix PR port-sparc64/20283.
2003-03-17 00:06:24 +00:00
wiz 5ef9540a69 hexadecimal, not hexidecimal. 2003-03-16 21:55:14 +00:00
wiz 447edbab8d hexadecimal, not hexidecimal. Reported to the authors. 2003-03-16 21:54:46 +00:00
wiz 8d68f8869a hexadecimal, not hexidecimal. PR 20738 by Igor Sobrado. 2003-03-16 20:41:33 +00:00
fvdl 3306d06ea7 Don't use bitfields, make the fxsave structure packed instead. Makes
life a bit easier (for i.e. taking the address of a field).
2003-03-16 20:35:28 +00:00
cjep de21c5e413 kernal -> kernel 2003-03-16 19:42:09 +00:00
jdolecek 4b261fc76f allocate majors for vmmon/vmnet - VMware pseudo devices
we have the sources in othersrc tree now, so it's useful to have some
other bits in tree as well to simplify module use
2003-03-16 18:04:08 +00:00
martin c43762a960 Don't access memory before the start of a file. 2003-03-16 17:44:15 +00:00
jdolecek 9f465ef9fb fix typo
from PR misc/20751 by Igor Sobrado
2003-03-16 16:58:46 +00:00
jdolecek 8de2ac78dc fix typos
from PR misc/20752 by Igor Sobrado
2003-03-16 16:57:53 +00:00
toshii 36a24737cd Fix recording with formats other than 16 bit slinear_le, based on the
patch submitted as kern/20620.
2003-03-16 16:33:48 +00:00
fvdl cc8c490f0c Adapt for changed struct reg 2003-03-16 16:26:58 +00:00
fvdl f6215de412 Sync with other reg state structures. 2003-03-16 16:26:11 +00:00
christos d5632de9bf Don't do:
if ((xdrp->x_handy -= need) < 0)
		return FALSE;

because by repeatedly calling this we can cause overflow, and then overwrite
valid memory. Instead do:

	if (xdrp->x_handy < need)
		return FALSE;
	xdrp->x_handy -= need;
2003-03-16 15:42:22 +00:00
jdc 0dfeec7835 Add tc=xterm entries to xterm+sl and xterm+sl-twm entries.
From Monroe Williams in PR misc/20606.
2003-03-16 15:06:25 +00:00
toshii 6e79d819f7 Remove a couple of false comments, as pointed out in kern/20620. 2003-03-16 13:34:24 +00:00
darcy 795a64ffd8 Text on pkg_add assumes sh(1). This fix adds text describing how to
set environment under csh(1) as well.

Closes PR install/14797.
2003-03-16 13:10:01 +00:00
jdolecek 66c83f4d8e union fs moved from miscfs/union to fs/union
omission pointed out by Martti Kuparinen
2003-03-16 11:50:27 +00:00
jdolecek 9fe8da698b we really don't need to print random stack garbage on the end of dump 2003-03-16 09:59:09 +00:00
jdolecek 75f054650f constify ptrace_ops[] 2003-03-16 09:44:25 +00:00
yamt f9cc84c69d getlock: detect duplicated locks slightly correctly.
XXX how should we do for byte range lock?
2003-03-16 09:05:56 +00:00
he cea7b7a329 Add the newly separated-out ether_sprintf.c here, so that the booters
can be allowed to link with no unresolved symbols again.
2003-03-16 08:39:58 +00:00
jdolecek a0deb3e9c4 move union filesystem code from sys/miscfs/union to sys/fs/union 2003-03-16 08:26:46 +00:00
matt 77533df068 Remove some debugging code. 2003-03-16 08:12:26 +00:00
matt e86e032c61 Make cfroots const. 2003-03-16 08:09:58 +00:00
matt 137a763c9b Only define POOL_LOGSIZE/pool_size if POOL_DIAGNOSTIC is defined. 2003-03-16 08:06:51 +00:00