| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
picking old .pid file
|
|
|
|
| |
value now, if you know that you have a fifo deeper than 16.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
is incompatible with -pg. (We use a different version of mcount for
profiling frame-pointer-less assembler functions, but gcc doesn't know
about this.)
Added a missing dependency.
Cleaned up trailing backslashes.
Added comment about config's limitations/bugs handling dependencies and
backslashe/newlines.
Finished removing support for isdn drivers.
|
|
|
|
|
|
| |
since that's the only place that it's used.
Submitted by: se (apparently on suggestion from dfr)
|
| |
|
|
|
|
| |
still (stallion.c).
|
| |
|
|
|
|
| |
comments on it being outside.
|
|
|
|
|
|
|
|
|
| |
received and after the TerminateAck is sent (as
per rfc1661) rather than to ST_STOPPING. Going
to ST_STOPPING will leave us in a state where
we're waiting for the other side to do something -
not a good idea, especially as the client side sends
a TerminateReq then exits on idle timeout.
|
|
|
|
|
|
|
|
| |
ppp link, we gain nothing with a larger mtu.
Suggested by: joerg
Fix pred1 buffer size (must be == MAX_MTU)
|
| |
|
| |
|
|
|
|
|
|
|
| |
-DUSE_NANOSLEEP. Also, seperate the code for _THREAD_SAFE so that it uses
the simpler threaded nanosleep() call in libc_r.. We don't go to the same
extremes for emulating traditional sleep semantics (ie: eating any SIGALRM
that might happen) which things like apache seem to depend on.
|
| |
|
|
|
|
|
| |
remaining time pointer if it's NULL, since we don't write back in that
case! (*blush*!)
|
|
|
|
|
|
|
|
| |
shared function.
- use p->p_sleepend to try and get more accurate "time remaining" results
when the time has been adjusted.
- verify writeability of return address so that we can fail before sleeping
if the address for the result is bogus.
|
| |
|
|
|
|
|
| |
nanosleep(2). It sleeps until either the time expires, or a signal
permitted by the supplied mask arrives (eg: SIGALRM if appropriate)
|
|
|
|
|
|
| |
time for things like nanosleep. These sleep in terms of "ticks" and
calculate the elapsed time relative to the expected wakeup time and do
not return good results when the system time is adjusted.
|
| |
|
| |
|
|
|
|
| |
Make "same magic" error send a NAK (as per rfc).
|
|
|
|
|
|
| |
reduce the interface mtu.
Allow max mru spec of 16k.
Add "show m[rt]u" ability.
|
|
|
|
| |
Submitted by: Wolfgang Helbig <helbig@MX.BA-Stuttgart.De>
|
| |
|
| |
|
|
|
|
|
| |
"alias" for "set mru ...", but there's no such thing
as setting your mtu in the ppp protocol (rfc1661).
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
> Revision Changes Path
> 1.97 +2 -1 src/sys/i386/i386/trap.c
> 1.86 +2 -1 src/sys/i386/isa/clock.c
> 1.88 +2 -1 src/sys/i386/isa/isa.c
> 1.44 +3 -2 src/sys/i386/isa/npx.c
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
interrupt mask hackery wasn't happening when being modloaded via the
if_ppp lkm. It seems that the lkm system doesn't particularly like having
two sets of load/unload/etc routines. :-] This really should be fixed
by having a seperate if_ppp and ppp_tty lkm, but that requires that ppp_tty
is loaded after if_ppp, and needs to be able to link with symbols in
if_ppp. This gets messy, it is a better task for the in-kernel linker.
(if_ppp is generic, ppp_tty is a tty-specific bottom end for if_ppp, it's
not _too_ hard to have another "provider" (such as a hdlc sync card)
connected to if_ppp)
|
| |
|
|
|
|
|
|
| |
the *_imask down in the isa machine dependent layers requires code changes
to all pci drivers, but the interrupt registration mechanism is in flux
at the moment. These can go away when the interface is cleaned and settled.
|
|
|
|
|
|
|
| |
remove warning about ICU_LEN > 32, it's not likely to happen like this,
and besides, ICU_LEN is not the ideal indicator of "number of interrupts".
Reviewed by: bde, se
|
|
|
|
|
|
| |
s/intrmask/intrmask_t/g
Reviewed by: bde, se
|
|
|
|
|
| |
<machine/ipl.h> to those files that were depending on getting SWI_*
implicitly via <machine/cpufunc.h>
|
|
|
|
| |
than a Makefile.i386 hook)
|
|
|
|
| |
cuts the cost of a function call instead of an inline.
|
|
|
|
|
| |
implementation is now in isa/ipl_funcs.c (at least for the time being),
leaving the definitions of the SWI_* and cpl/idelayed/ipending.
|
|
|
|
| |
Reviewed by: bde
|
|
|
|
|
|
|
|
| |
than in the isa dependent code.
create intrmask_t in machine/types.h (replaces "intrmask" typedef from
sys/interrupt.h)
Reviewed by: bde
|
|
|
|
|
|
|
|
|
| |
that lkm's can use them for fiddling the masks without being dependent on
which mode the kernel is compiled in (SMP or UP). This is particularly
for ppp_tty.c which has some domain crossing between the net and tty
subsystems. The values are not used in the spl code, they are for
reference only (ie: the compiled code uses immediate values rather than
an indirect 32 bit address and 32 bit data fetch).
|
|
|
|
|
|
|
|
| |
top of the hardware interrupt handlers. Apparently this is slightly
faster with the bit scanning instruction that looks these up - this set of
changes reverts the original change.
Reviewed by: bde
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
rather than inlines. These are compiled with -fomit-frame-pointer and
work out pretty close to the original routines, but it might be a fraction
slower. The reason for doing this is to prevent the SWI_* and HWI_* values
from being compiled into drivers and lkms etc which is one of the things
that prevents the same lkm from being used on both SMP and UP kernels.
This gives us a lot more scope for experimenting with the splxxx
implementaton for SMP parallelism etc.
Reviewed by: bde
|
|
|
|
|
|
| |
PIC's.
Reviewed by: bde
|
|
|
|
|
| |
Obtained from: fsmp (part of what Steve added for IO APIC support)
Reviewed by: bde
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
CPU code-named `M2'.
- Use the result of cpuid instruction instead of DIR to identify
6x86MX cpu. DIR0 and DIR1 are not documented in the data sheet, and
cpuid instruction is enabled at reset time.
- Add a function, init_6x86MX() to initialize 6x86MX cpu. It supports
CPU_SUSP_HLT and CPU_IORT options. It always sets NC1 (640K - 1M is
not cached.), and enables L1 cache in write-back mode.
- Fix typo in the comment in identblue().
|
| |
|