| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Thanks to "Mike Durian" <durian@plutotech.com> for the very good
problem report and his support as a beta tester of this patch.
|
|
|
|
|
|
|
|
|
|
|
|
| |
one too small for (hex) 12345678 and 4 too small for -1234567890. Large
values can be created by config and userconfig although not (previously)
by visual userconfig.
Fixed a sign extension bug for backspacing on "negative" hex values in
editval().
Increased field width and range for `flags' so that all possible values
can be displayed and edited.
|
|
|
|
| |
YA2.2C.
|
|
|
|
|
|
|
| |
away, so this header is no longer generated.
This change should be in 2.2. The old version shouldn;t have been in
2.2 (blush).
|
|
|
|
| |
Should be in 2.2.
|
|
|
|
|
|
| |
lots of warnings.
Should be in 2.2. Previous version shouldn't have been in 2.2.
|
| |
|
|
|
|
|
|
| |
rev.1.29 of kern_sysctl.c.
Should be in 2.2.
|
| |
|
|
|
|
|
| |
# WARNING: can effectively kill your disks with some controllers
(I am the victim of -current kernel, inodes wiped completely)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
actually harmless.
2. Fixed code to match comment in scintr().
3. Don't allow even root to take control of the machine when securelevel > 0.
I've secured the accesses to PSL_IOPL in all drivers and asked pst to
review it, but he seems to be busy. Write access to /dev/kmem and
other critival devices currently leaks across raisings of securelevel
via open fd's, so there may as well be a similar leak for PSL_IOPL.
4. (Most important.) Don't corrupt memory beyond the screen buffers if
the cursor happens to be off the 80x25 screen when syscons starts.
5. Fix console cursor update (not perfect yet).
Submitted by: bruce
~
|
| |
|
|
|
|
|
|
|
|
| |
getting the same behavior using the flags, which can be done inside of
UserConfig. (Also document other syscons flags which were previously
undocumented).
Requested by: bde
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
negative-logic flags (flags 0x01 and 0x02 for npx0, defaulting to unset = on).
This changes the default from off to on. The options have been in current
for several months with no problems reported.
Added a boot-time negative-logic flag for the old I5886_FAST_BCOPY option
which went away too soon (flag 0x04 for npx0, defaulting to unset = on).
Added a boot-time way to set the memory size (iosiz in config, iosize in
userconfig for npx0).
LINT:
Removed old options. Documented npx0's flags and iosiz.
options.i386:
Removed old options.
identcpu.c:
Don't set the function pointers here. Setting them has to be delayed
until after userconfig has had a chance to disable them and until after
a good npx0 has been detected.
machdep.c:
Use npx0's iosize instead of MAXMEM if it is nonzero.
support.s:
Added vectors and glue code for copyin() and copyout().
Fixed ifdefs for i586_bzero().
Added ifdefs for i586_bcopy().
npx.c:
Set the function pointers here.
Clear hw_float when an npx exists but is too broken to use.
Restored style from a year or three ago in npxattach().
|
|
|
|
|
|
| |
The change in if_epreg.h affects if_epreg.o and 3c5x9.o.
These changes are probably harmless, but I can't test them.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
2.2 are more obvious. -Winline is unimportant, but -W gives thousands
of warnings for comparisions. Turning off -W also loses warnings for:
- auto variables clobbered by longjmp. Not much of a problem in the kernel.
- functions returning without a value. I don't like losing this.
- an expression statement or the left side of a comma operand contains no
side effects. Turning this off also stops warnings for the low quality
debugging macros in gsc.c and lpt.c.
Should be in 2.2.
|
|
|
|
| |
Obtained from: SCSI branch
|
|
|
|
|
|
| |
in bios.S. I only fixed the case that is known to be broken here.
Should be in 2.2.
|
|
|
|
| |
There's gotta be a better way of syncronizing our release numbers. :-)
|
|
|
|
|
|
|
|
|
|
|
| |
for get_diskinfo(), whose BIOS call sets %es:%edi in some cases, although
most documentation says that it doesn't change %edi in the cases that
happened to matter (for hard disks).
This shall be in 2.1.6 and 2.2.
Submitted by: Tor.Egge@idt.ntnu.no
(except I kept the unnecessary preservation of %edx and %ecx)
|
|
|
|
|
|
|
|
|
|
| |
are adding new drivers...) to match, as best I can tell, majors.i386.
Improve behaviour when attempting to save changes for devices that should
not be changeable. Now correclty avoids non-device items, PCI devices and
devices with no isa_device structure.
Submitted by: (observations from) joerg, bde
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
uses one or the other. This required some changes to the ahc_reset()
function, and how early the probes had to allocate their softc.
Turn the AHC_IN/OUT* macros into inline functions and lowercase their names
to indicate this change. Geting AHC_OUTSB to work as a macro doing
conditional memory mapped I/O would have been too gross.
Be smart about the STPWEN control bit in SCFRCTL1. It should only be set
if the low byte of the bus is to be terminated. We figure this out either
by "caching" the value left over from the BIOS setup before we reset the card
or by using the values stored in the seeprom if it is availible.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
uses one or the other. This required some changes to the ahc_reset()
function, and how early the probes had to allocate their softc.
Turn the AHC_IN/OUT* macros into inline functions and lowercase their names
to indicate this change. Geting AHC_OUTSB to work as a macro doing
conditional memory mapped I/O would have been too gross.
Stop setting STPWEN in the main driver and let the PCI front end do it
instead. It knows better.
Add the clearing of the QOUTQCNT variable during command complete processing
in the SCB paging case.
Go back to doing unconditional retries for the QUEUE FULL status condition.
This is really a kludge, but the code to handle it properly is on the SCSI
branch and will not make it into 2.2.
|
|
|
|
|
|
|
|
|
| |
uses one or the other. This required some changes to the ahc_reset()
function, and how early the probes had to allocate their softc.
Turn the AHC_IN/OUT* macros into inline functions and lowercase their names
to indicate this change. Geting AHC_OUTSB to work as a macro doing
conditional memory mapped I/O would have been too gross.
|
|
|
|
| |
Update comment on AHC_SCBPAGING_ENABLE since I think it works now.
|
|
|
|
|
|
|
|
|
|
| |
1) get_free_or_disc_scb was not being passed its argument correctly
in one case
2) Add protection in the form of the QOUTQCNT variable to prevent
overflowing the QOUTFIFO.
This should make SCB Paging work. Really, I mean it now. 8-)
|
|
|
|
|
|
|
|
| |
using a sockaddr_dl.
Fix the other packet-information socket options (SO_TIMESTAMP, IP_RECVDSTADDR)
to work for multicast UDP and raw sockets as well. (They previously only
worked for unicast UDP).
|
|
|
|
|
| |
much eliminates the unnecessary unmapping of the kernel during
context switches and during invtlb...
|
|
|
|
|
|
|
|
| |
This allows the user to add modify syscons's configuration flags using
UserConfig that will allow older/quirky hardware (most notably older IBM
ThinkPad laptops) to work with the standard boot kernel.
Inspired by: The Nomads
|
| |
|
|
|
|
|
|
| |
understand the socket state flag.
2.2 candidate.
|
|
|
|
|
|
|
|
| |
directories to a different parent directory always failed. This bug
was caused by 4.4Lite2 changing the directory format and ext2fs not
keeping up.
Should be in 2.2.
|
|
|
|
|
|
| |
vm_map_remove, not after...
2.2-RELEASE candidate.
|
|
|
|
|
|
| |
It probably broke the support for the device.
Pointed-Out by: joerg
|
|
|
|
| |
Submitted by: The FreeBSD(98) Development Team
|
|
|
|
|
|
|
|
|
|
| |
(2) Don't depend on BOOTSEG
(3) Change BOOTSEG from 0x9000 to 0x1000
Should be in 2.2.
Submitted by: FreeBSD(98) Development Team
|
|
|
|
|
|
|
|
|
| |
This follows more closely the suggestions in the latest NCR docs, and has
been running on my system for weeks with no problem. It does improve the
quality of diagnostic messages and does allow to better understand the
sequence of events in case of an error.
This should go into 2.2 and 2.1.6.
|
|
|
|
|
|
|
|
|
| |
panics.
This should be in 2.2, of course.
Submitted by: davidg
Obtained from: bouyer@antioche.ibp.fr (Manuel BOUYER) (fix for NetBSD)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This fixes several bugs and one missing feature:
- cluster_read() was needlessly used for reading files of size exactly 1
block.
- EFAULT errors for read didn't terminate the loop. This was probably
harmless.
- IO_VMIO handling was missing near line 275. I don't know what this does.
- B_CLUSTEROK was only set if (doclusterwrite) nead line 293. This was
harmless, if only because another bug prevents doclusterwrite from being
0.
- MNT_NOATIME wasn't implemented.
This should be in 2.2, of course.
Reviewed by: davidg
|
|
|
|
|
|
|
| |
if I586_CPU is defined. Note there is a runtime check so the code
won't be run for non-Pentium CPUs anyway.
2.2 candidate, this code has been tested for almost half year in -current.
|
|
|
|
| |
2.2 & 2.1.6 candidate.
|
|
|
|
|
|
|
| |
the message buffer size in <sys/msgbuf.h>.
Reviewed by: davidg,joerg
Submitted by: bde
|
|
|
|
|
|
| |
used on the first transaction on an SCB is indeterminate.
Spaces -> tabs.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
handlers if interrupts are nested more than a few (3) deep. This
only reduces the maximum nesting level by 1 with the standard
drivers unless there is a related bug somewhere, but can't hurt
much (the worst case is returning to hoggish interrupt handler like
wdintr(), but such interrupt handlers hurt anyway).
Fixed a previously harmless race incrementing the interrupt nesting
level.
This should be in 2.1.6 and 2.2.
|
|
|
|
|
|
|
|
| |
fix Joerg's freeze.
Definitely a 2.2 candidate.
Reviewed by: joerg
|
|
|
|
|
|
|
|
|
|
| |
medium with another size is being inserted. Right now, this case was
broken and led to a situation where a medium could only be replaced
with another one of the same size.
Closes PR #kern/1830: Can't mount optical disk...
Submitted by: akiyama@kme.mei.co.jp (Shunsuke Akiyama)
|
|
|
|
|
|
|
| |
hardware interrupt counts add up to the total. Previously, software
interrupts generated by splz() were counted in the total. These
software interrupts seem to be very rare - there have apparently been
0 of them on freefall among the last 352448857 interrupts.
|
|
|
|
|
| |
- were missingUKERNEL. This was harmless until I declared the kernel's
main().
|