| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| |
| |
| |
| |
| |
| | |
Use cnt.v_page_count, the actual count of available physical pages,
instead of vm_page_array_size to compute the maximum number of pv
entries.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
copy's were incorrect and so was the locking.
-A bug was also found that would create a race and
panic when an abort arrived on a socket being read
from.
-Also fix the reader to get MSG_TRUNC when a partial
delivery is aborted.
-Also addresses a couple of coverity caught error path
memory leaks and a couple of other valid complaints
Approved by: gnn
|
| | |
|
| | |
|
| |
| |
| |
| | |
don't blindly assume it succeeded.
|
| |
| |
| |
| |
| |
| | |
Obtained from: NetBSD (expand.c 1.58 and 1.59)
Submitted by: Paul Jarc
PR: 56147
|
| | |
|
| |
| |
| |
| | |
so adjust the KASSERT to reflect this.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
are done.
Reviewed by: piso
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Don't drop the lock just to reacquire it again to check rushjob, this
only wastes time.
- Use msleep() to drop the mutex while sleeping instead of explicitly
unlocking around tsleep.
Reviewed by: pjd
|
| |
| |
| |
| |
| |
| |
| | |
by this driver and largely are not even PCI devices in pcn_chipid.
- Use device_printf(9)/if_printf(9) rather than implementing their
functionality with printf(9).
- Sprinkle some const.
|
| |
| |
| |
| |
| | |
Reviewed by: brd
Approved by: ru (mentor)
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Only call iwi_stop() if we got far enough along in iwi_attach() to
alloc an ifnet.
- Release the firmware after stopping the interface and detaching the
ifnet.
MFC after: 1 month
Reviewed by: sam
|
| |
| |
| |
| | |
Requested by: bde
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
linux siginfo structure. l_sigval uses a l_uintptr_t for sival_ptr so
that sival_ptr is the right size for linux32 on amd64. Since no code
currently uses 'lsi_ptr' this is just a cosmetic nit rather than a bug
fix.
|
| |
| |
| |
| |
| | |
to dump CPUID level=2 stuff. A print_INTEL_info() function that does just
that was added a while ago.
|
| |
| |
| |
| | |
<machine/intr_machdep.h>.
|
| |
| |
| |
| | |
MFC after: 2 weeks
|
| |
| |
| |
| | |
Approved by: flz (mentor)
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
priority class and use this to:
- print "-" instead of a garbage value for ithreads. Print "-" instead
of the unused nice value for kthreads which are (mis)classified as
PRI_TIMESHARE. For such threads, the nice value can be set to nonzero
by root, but it is never used (at least by the 4bsd scheduler). For
ithreads, we didn't even print the unused value.
- print "i<priority>" and "r<priority>" instead of a biased "<priority>"
for idletime and realtime threads, Here <priority> is the priority
parameter to idprio/rtprio(1). Just add the prefix and remove the
bias for now. <priority> has been stored indirectly in the kernel
since 2001/02/12, and even the kernel cannot recover the original
value in all cases. Here we need to handle more cases than pri_to_rtp(),
but actually handle fewer cases, and end up printing garbage after
a thread changes its current priority while in the kernel.
- for idletime and realtime threads, if they are kthreads then add a prefix
of "k" to the previous string.
- for idletime and realtime threads, if they in the FIFO scheduling class
then add a suffix of "F" to the previous string (if it fits; the other
parts of the string are sure to fit unless <priority> is garbage).
|
| |
| |
| |
| |
| |
| | |
of seconds, just like in fetch(1)).
Submitted by: rdivacky
|
| |
| |
| |
| |
| |
| | |
LINT due to a conflict with KAME IPSEC.
Submitted by: Pawel Worach <pawel dot worach at gmail dot com>
|
| |
| |
| |
| | |
qualifier to force async from cur_spi to spi.
|
| |
| |
| |
| | |
Reviewed by: bde
|
| |
| |
| |
| |
| |
| |
| | |
file, net/ntoh.c, which just implement them using the inline functions from
<sys/endian.h>.
Suggested by: bde
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
label after the sbunlock() part.
This correctly handles calls to sendfile(2) without valid parameters
that was broken in rev. 1.240.
Coverity error: 272162
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
to be switched to is saved in sc->delayed_next_scr and
the actual switch is performed later. It was possible
to get into the endless loop when attempting to switch
to a closed vty (which is not allowed and beep-alerted
when attempted) and when the visual beep was in effect.
This caused sc->delayed_next_scr to never be reset and
endless attempts to switch to a closed vty and endless
visual beeping. How to repeat:
- boot into single-user
- run "kbdcontrol -b visual"
- quickly press Alt+F2 two times
PR: kern/68016
X-MFC after: 6.2-RELEASE
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Reduce the number of global variables
- Make global objects static
- Use bool consistently
- Sort getopt arguments and their processing
- Add function comments
- Change notlast != 0 into !last
|
| |
| |
| |
| |
| | |
PR: 85186
Submitted by: garys
|
| |
| |
| |
| |
| |
| | |
system call API.
MFC after: 3 weeks
|
| |
| |
| |
| |
| |
| |
| |
| | |
end values are specified.
PR: bin/68981
Submitted by: Stefan `Sec` Zehl
MFC after: 2 weeks
|
| |
| |
| |
| |
| |
| |
| |
| | |
how to change the auditd instance. When using a port/package-based
OpenBSM, changing the auditd pointer may be desirable.
Obtained from: TrustedBSD Project
MFC after: 3 weeks
|
| | |
|
| |
| |
| |
| | |
PR: bin/68981
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
patch was prepared and committed to priv(9) calls. Add XXX comments
as, in each case, the semantics appear to differ from the TCP/UDP
versions of the calls with respect to jail, and because cr_canseecred()
is not used to validate the query.
Obtained from: TrustedBSD Project
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
to wakeup on close of the sender. It basically moves
the return (when the asoc has a reader/writer) further
down and gets the wakeup and assoc appending (of the
PD-API event) moved up before the return. It also
moves the flag set right before the return so we can
assure only once adding the PD-API events.
Approved by: gnn
|
| | |
|
| | |
|