| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
on so that multiple copies can be run easily.
Update documentation with group and port arguments which are optional.
|
|
|
|
|
| |
MFC after: 3 weeks
Spotted by: bz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
parts relied on the now removed NET_NEEDS_GIANT.
Most of I4B has been disconnected from the build
since July 2007 in HEAD/RELENG_7.
This is what was removed:
- configuration in /etc/isdn
- examples
- man pages
- kernel configuration
- sys/i4b (drivers, layers, include files)
- user space tools
- i4b support from ppp
- further documentation
Discussed with: rwatson, re
|
| |
|
|
|
|
| |
Approved by: kib (mentor)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
AIO calls.
This small program queues up a controllable number of concurrent AIO
read operations w/ controllable io size against a disk or regular file.
There are a few other things to add (notably optional write support!)
but it works well enough at the present time to stress the AIO code out
relatively harshly in the disk IO case.
|
|
|
|
|
|
| |
prior to this patch, the prompt would not appear due to buffering.
Approved by: flz
|
|
|
|
|
|
| |
fit in a signed char
o change default output to something more useful for sta mode
o futz w/ various field names and widths; need to do full pass over this stuff
|
| |
|
| |
|
|
|
|
| |
Approved by: sam
|
|
|
|
|
|
|
|
| |
post collection. This is too error prone and introduces uncertainty into
the timing. We'll simply have to require synchronized TSCs to run
schedgraph on MP.
Sponsored by: Nokia
|
|
|
|
|
|
|
|
|
|
|
| |
transmissions by the number of them running so that they do not
overwhelm the source.
Added a simple shell script to kick off sinks on multiple hosts as
well as a source on the host where the shell script is run. The script
also collects the output of all the sinks and the source into files named
for the host on which the tests are run. A date is appended to each output
file to make it unique per run.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
after similar calls related to struct pwd in libutil/pw_util.c:
- gr_equal()
Perform a deep comparison of two struct grp's. It does a thorough, yet
unoptimized comparison of all the members regardless of order.
- gr_make()
Create a string (see group(5)) from a struct grp.
- gr_dup()
Duplicate a struct grp. Returns a value that is a single contiguous
block of memory.
- gr_scan()
Create a struct grp from a string (as produced by gr_make()).
MFC after: 3 weeks
|
|
|
|
|
| |
NULL by having the test program return *NULL* for NULL's (no existing
variable) instead of an empty string (variable with empty value).
|
|
|
|
|
|
| |
if they are different in /etc, copy them to /cfg.
Submitted by: mat
|
|
|
|
| |
Supported by: Hobnob and Marvell
|
|
|
|
|
| |
Supported by: Hobnob
Obtained from: Atheros (earlier version)
|
|
|
|
| |
Supported by: Hobnob
|
|
|
|
| |
numbers.
|
| |
|
| |
|
|
|
|
|
| |
Add code to reflect packets back from the sink so that we can measure
round trip at the source.
|
| |
|
| |
|
|
|
|
| |
build libkse. This should fix WITHOUT_LIBTHR builds as a side effect.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
recreated during installworld (they are in BSD.include.dist).
Reported by: Pawel Worach
Approved by: rwatson (mentor)
X-MFC: with revision 1.13
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
a tinybsd build. If we do not do this, we can accidentally remove
critical files from directories like /lib (if mounted).
PR: misc/121763
Submitted by: Richard Arends < richard at unixguru dot nl >
MFC after: 3 days
|
|
|
|
|
| |
Unlike whereintheworld, it continuously monitors the log file; it also
produses less verbose output.
|
| |
|
|
|
|
|
|
|
| |
for multicast packets. Parameters for the interface, packet size,
number of packets, and interpacket gap may be given on the command line.
The sink records how many packets were missed, and at what time each
packet arrived.
|
|
|
|
|
|
| |
Issue ':call FreeBSD_Style()' while editing a file.
Submitted by: scf
|
|
|
|
|
|
|
|
|
|
|
|
| |
Solaris and AIX.
fcntl(fd, F_DUP2FD, arg) and dup2(fd, arg) are functionnaly equivalent.
Document it.
Add some regression tests (identical to the dup2(2) regression tests).
PR: 120233
Submitted by: Jukka Ukkonen
Approved by: rwaston (mentor)
MFC after: 1 month
|
|
|
|
|
|
|
| |
previous commit.
Approved by: rwatson (mentor)
X-MFC: with revision 1.13
|
|
|
|
|
|
|
|
|
| |
have dependencies or need to install a new user/group, are not
problematic anymore.
PR: 121367
Submitted by: Richard Arends < richard at unixguru dot nl >
MFC after: 3 days
|
|
|
|
| |
precision.
|
|
|
|
|
|
|
|
|
|
| |
Use the correct value of errno. Although the errno value passed into
printf() follows the *env() call, it is not guaranteed to be the errno
from that call. When I wrote the regression tester, the environment I
used did pass the errno from the call. Consolidate the print for the
return code and errno into a function in the process of fixing this.
Approved by: wes (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
| |
Note: it may be a good idea to deduce obsolete usr/lib32/ files from
obsolete lib/ and usr/lib/ files.
PR: 120492
PR: 121118
PR: 121121
Submitted by: KAMIYA Satosi, Richard Tector
Approved by: rwatson (mentor)
MFC after: 1 month
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
various open flags and then tests various operations to make sure that
they are properly constrained by open flags. Various I/O mechansms
are tried, including aio if compiled into the kernel or loaded as a
module. There's more to be done here but it's a useful start, running
about 220 individual tests.
This is in support of FreeBSD-SA-08:03.sendfile.
|