| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
kernel as a pseudo-device. The changes were:
- #ifdef DEBUG -> #ifdef VINUMDEBUG
- opt_vinum.h for holding above config variable
- Fixing up a few stray problems where DEBUG wasn't optional.
- config.c -> vinumconfig.c (there's already a config.o)
- Other *.c -> vinum*.c (wasn't strictly necessary, but done in case we end
up with something else conflicting later on and we might have to have yet
more repository copies of files).
- include file paths fixups.. (ie: get them all from the kernel tree
instead of partly from the kernel and partly from /usr/include/machine)
I've spoken with Greg about this.. I hope this doesn't mess him around
too much..
|
| |
|
|
|
|
| |
VESA_800x600 to run.
|
|
|
|
| |
Fix a minor overflow.
|
|
|
|
|
| |
Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp> and
Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
|
|
|
|
| |
from outside the src/sys tree like before.
|
|
|
|
| |
was savaged in the blood bath a few hours ago.
|
|
|
|
|
|
|
|
|
|
|
| |
CPU_WT_ALLOC does not work correctly for K6-2s of model 8+ and
probably K6-3s (when they appear on the market soon). In addition,
print_AMD_info() incorrectly printfs write allocation's size. I've
fixed them, so they now Do The Right Thing, and added a
"NO_MEMORY_HOLE" option to easily allow 15-16mb range handling for us
K6 and K6-2 users.
Submitted by: Brian Feldman <green@unixhelp.org>
|
| |
|
|
|
|
|
|
|
| |
and can serve as a template for further efforts. Consider this my (belated)
Christmas present to the Project :)
Requested by: jkh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ISDN4BSD is the work of our brand-new comitter: Hellmuth Michaelis,
who has done a tremendous amount of work to bring us this far.
There are still some outstanding issues and files to bring into
the tree, and for now it will be needed to pick up all the extra
docs from the isdn4bsd release.
It is probably also a very good idea to subscribe to the isdn@freebsd.org
mailing list before you try this out.
These files correspond to release "beta Version 0.70.00 / December
1998" from Hellmuth.
|
|
|
|
| |
program to set PPP options like authentication with.
|
| |
|
|
|
|
| |
Pre 3.0 branch cleanup casualty #4: pcvt
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
last cleanup. Since the oid_arg2 field of struct sysctl_oid is not wide
enough to hold a long, the SYSCTL_LONG() macro has been modified to only
support exporting long variables by pointer instead of by value.
Reviewed by: bde
|
| |
|
|
|
|
| |
Pre 3.0 branch cleanup casualty #4: pcvt
|
|
|
|
| |
Superceded by the snd driver...
|
|
|
|
| |
Superceded by acd driver...
|
|
|
|
| |
Superceded by acd driver...
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
No CAM drivers available. If somebody CAMifies one of these, they
will be welcome back in the tree
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
It might cause some problem and something like USB has its
own driver.
|
| |
|
| |
|
| |
|
|
|
|
| |
make sure flags and stuff are set sensibly.
|
|
|
|
|
|
| |
slightly garbled but older servers seemed to understand it).
Reviewed by: David O'Brien <obrien@nuxi.ucdavis.edu>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
"I've been having a problem running the patches [committed to current]
installed with the COMPAT_LINUX_THREADS option along
with the VM_STACK patches I did. I'm not sure what
the problem is, since it seemed to work before.
In any event, the attached patch fixes the problem for
me. While I've had no report of problems from anyone
else, possibly it would be wise to commit the patch
until the problem is found.
Also, there was some left-over junk in the linux_misc.c
file from some earlier work I did. The attached patch
cleans that up too."
Submitted by: "Richard Seaman, Jr." <dick@tar.com>
|
| |
|
|
|
|
| |
CRC in received frames, which we need to trim manually.
|
|
|
|
|
| |
ethernet CRC in received frames and has no option to turn this behavior
off. Trim the CRC off manually in vr_rxeof().
|
|
|
|
|
| |
an existing chain, don't forget to move xl_tx_tail to point to the new
tail end.
|
|
|
|
|
|
|
|
|
|
|
| |
in cyopen() were done in a different order than in sioopen(), partly
to (ab)use a side effect of comparam() and partly because I didn't
understand what the reset was doing (it flushes the fifos). This
turned out to be more than a cosmetic problem. Flushing the fifos
quite late is good for discarding input that arrived while the line
state was being initialized, and in the cy driver it also seems to
reduce a problem with input that arrived long ago during the previous
close (the UART loses sync too easily and for too long).
|
|
|
|
|
|
|
|
|
| |
merge). This fixes at least hanging in revoke(2) when a somewhat
active slave pty is revoked. The hang made the window for the
null pointer bug in ufsspec_{read,write} much larger.
There are many other bugs in this area (revoke of an active fifo
at best leaks memory...).
|
|
|
|
|
|
|
|
|
| |
may be revoked, so vnop routines must be careful about accessing
the vnode if they may have blocked.
Fixed marking for update after successfully reading or writing 0
bytes. In this case, POSIX.1 specifies marking if and only if the
requested count is nonzero, but rev.1.86 never marked.
|