| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
code. It will push 200000 packets, then report back what the min and max
periods it saw for different IDs were.
|
|
|
|
|
| |
PR: misc/120274
MFC after: 1 week
|
|
|
|
|
|
|
|
|
| |
the semantics of pthread_mutex_islocked_np() to return true if and only if
the mutex is held by the current thread.
Obviously, change the regression test to match.
MFC after: 2 weeks
|
|
|
|
| |
MFC after: 2 weeks
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Process (a) is blocked in read on a socket waiting on data.
- Process (b) is blocked in shutdown() on a socket waiting on (a).
- Process (c) delivers a signal to (b) interrupting its wait.
When the signal is delivered, the kernel panics as sblock() fails in
sorflush(). Even if it didn't panic, shutdown() would block potentially
indefinitely waiting for recv() to succeeded. Fixes to follow.
Reported by: Jos Backus <jos at catnook dot com>
|
|
|
|
|
| |
traces where there isn't any leading whitespace before the record number
in the ktrdump output.
|
|
|
|
| |
to RELENG_7 are not supported.
|
|
|
|
|
|
|
|
| |
listed in ObsoleteFiles.inc anyway.
Reported by: David Wolfskill
Approved by: rwatson (mentor)
MFC after: 3 days
|
| |
|
|
|
|
|
|
|
| |
mostly just test corner cases rather than accuracy. Some of the
tests don't pass right now if you compile libm at -O2 due to gcc
constant-folding some things that it shouldn't. I'll fix that
shortly.
|
| |
|
|
|
|
| |
shm_unlink(2)).
|
|
|
|
|
|
| |
PR: 119562
Submitted by: Daniel Rucci <dan@rucci.org>
MFC after: 3 days
|
|
|
|
|
| |
tailored for the long double format; instead, I just modified the existing
tests to test lrintl() and llrintl() as well.
|
|
|
|
|
|
|
| |
* Explain why 32768 entries is usually not enough
* Increase the scaling ratio to 10 to deal with 32-bit overflows that
can occur in calculating the canvas offsets
|
|
|
|
| |
Approved by: das, dds
|
|
|
|
| |
Approved by: das, dds
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
disk image. In some cases this can be a significant speed-up, if
most of the image can be kept in RAM while being populated.
On the 2GB image I'm currently working with, the build time,
excluding buildworld/buildkernel, goes from ~17 minutes to ~6
minutes.
This is not enabled by default, as it might have the opposite effect
on low-memory systems.
- During the generation of the image file be a bit more verbose in the
log file so it is possible to see what's being done.
- Add a NANO_DISKIMGDIR variable which makes it possibly to place the
final images somewhere other than ${MAKEOBJDIRPREFIX}. The default
value for NANO_DISKIMGDIR is $MAKEOBJDIRPREFIX.
Go for it: phk
|
|
|
|
|
| |
run from single-user mode, as they look at global open file and inflight
descriptor counts to check for leaks.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Due to a typo, setting NANO_DATASIZE=-1 resulted in the data slice
being the same size as entire image instead of the size of the
remaining space on the image.
- Fix detection of overcommit of the slices.
This fix mainly result in a nicer error than when newfs etc. tries to
write beyond the end of the disk image.
MFC after: 2 weeks
X-MFC after: RELENG_7 is open again
|
| |
|
| |
|
|
|
|
| |
cross-device moves.
|
|
|
|
| |
Now works under Solaris and Linux.
|
|
|
|
| |
The performance of the cross-device equivalents is under investigation.
|
| |
|
|
|
|
| |
can cause them to fail.
|
| |
|
| |
|
| |
|
|
|
|
| |
Case 20 corresponds to PR bin/118367.
|
|
|
|
| |
This fixes the reporting under prove(1)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
o push include paths to the Makefile
o use the AFTER trick to simplify adding new items
o prepare stat blocks for additional data
o align values for verbose output
o fillin some missing stats
MFC after: 1 week
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
default to the value of MK_KERBEROS unless set explicitly by
WITH_GSSAPI/WITHOUT_GSSAPI. (This introduces another type of
MK_* variables which itself is questionable.)
- Teach tools/build/options/makeman script that generates the
src.conf(5) manpage about the new type of MK_* variables.
- Fix broken logic in lib/Makefile.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
WITHOUT_KERBEROS knob. While GSS can be used for other things
some third party software (most notably ports/x11/kdelibs3)
takes the presence of libgssapi as an indication that kerberos
is available, and attempts to link with the kerberos libs. If
they are not available, the build will fail.
Because you might want to use GSS but not kerberos, add a knob
to re-enable it if WITHOUT_KERBEROS is present.
Document the new knob, and the new behavior of WITHOUT_KERBEROS.
Not objected and/or generally agreed to by: freebsd-arch
Problem discussed/analyzed in:
PR: ports/116484
|
| |
|
| |
|
| |
|
|
|
|
|
| |
support FENV_ACCESS, that was causing this test to fail. Use a volatile
to avoid the constant folding.
|
| |
|
| |
|
|
|
|
|
| |
support, rather than just "", which refers to the system default based
on the environment.
|
| |
|
|
|
|
| |
Discussed with: rwatson
|