njoly
cbcd12b119
Define RUMP_DISKFS to provide getdiskinfo from rumpdev_disk library.
2011-11-14 11:28:05 +00:00
dholland
78108b8ccc
Split up excessively large main().
...
Fix -d behavior to match documentation.
2011-11-13 15:42:35 +00:00
dholland
26b9d6b1f1
Cleanup for edquota.
...
Factor out common malloc and linked list code. Distinguish lists of
quota info from single records.
2011-11-13 15:41:34 +00:00
mbalmer
5d1027619d
Fix a "lonely name".
2011-11-13 14:39:42 +00:00
mbalmer
a2091c8232
Remove software pulsing in gpio(4), this functionality is now provided
...
by the gpiopwm(4) driver.
2011-11-13 13:20:02 +00:00
mbalmer
55c6b7f708
Second part of typo fixing cycle...
2011-11-12 16:34:03 +00:00
mbalmer
2f3d365a23
Fix typo.
2011-11-12 15:44:36 +00:00
wiz
918f67027f
Use Sq, and remove trailing whitespace.
2011-11-09 14:16:00 +00:00
is
5224338e35
If hosts.lpd contains '+', don't insist on reverse DNS == forward DNS.
2011-11-09 12:45:58 +00:00
jakllsch
7c5be444d3
freeaddrinfo() only on getaddrinfo() success.
2011-11-05 19:19:29 +00:00
zoltan
5a5d868dc5
Add IPv6 support for NPF.
2011-11-04 01:00:27 +00:00
martin
77a3a1ee2a
Minor usage tweaks for SMALLPROG
2011-11-03 20:46:41 +00:00
martin
d1852e4e9b
Minor nits in the sparc64 example
2011-11-03 20:09:18 +00:00
wiz
31ed07fa18
Spelling.
2011-11-02 20:27:33 +00:00
wiz
3e94948cb5
New sentence, new line.
2011-11-02 20:26:56 +00:00
christos
fb62226b8d
mention macos/x needing -N
2011-11-02 18:12:54 +00:00
christos
5b280d5010
Don't document long defunct flags
2011-11-02 18:09:43 +00:00
pgoyette
da505ca133
Update license to reflect actual source of this code which was extracted
...
from a larger work.
2011-11-01 22:30:32 +00:00
manu
ff9e6ef6d0
Fix the confusion between nodeid and inode numbers
2011-10-30 05:17:41 +00:00
manu
df227937ba
openlog with LOG_NDELAY so that pzerfused does not deadlock later
...
on vnode recycling because it wants to log a message.
Patch from Manuel Bouyer.
2011-10-23 05:03:37 +00:00
mbalmer
6e0f0ba65d
Revieve -> Receive in a comment.
2011-10-17 16:50:47 +00:00
mbalmer
c008138e06
This file received some typo-love.
2011-10-17 16:37:50 +00:00
mbalmer
2790b28f0e
Fix typo in comment.
2011-10-17 16:31:14 +00:00
plunky
f65a48c2ec
max WARNS is 4
2011-10-13 17:23:28 +00:00
christos
4a5d314575
add support for setting the ufs label. (Nathan Whitehorn)
2011-10-09 21:33:43 +00:00
joerg
70f70a6342
Simplify.
2011-10-07 10:50:01 +00:00
joerg
02eb62396f
Simplify
2011-10-07 10:46:29 +00:00
joerg
0b2dbbfed6
Use __dead
2011-10-07 10:30:21 +00:00
joerg
32ffffe1af
Fix under-allocation-by-one
2011-10-07 10:06:39 +00:00
mrg
bffbba31b4
fix the sendmail, mailerconf and atf checks to use ${DEST_DIR}.
...
add a note about this to the top of the file.
2011-10-07 02:07:56 +00:00
wiz
5dbc169dd3
Install i2cscan(8).
2011-10-06 12:38:57 +00:00
wiz
ed0c37a1b4
Add man page for review.
2011-10-06 11:13:45 +00:00
wiz
7caa96aa36
Sort SEE ALSO.
2011-10-06 11:05:42 +00:00
mbalmer
d394843f35
Remove the GPIODETACH gpio(4) ioctl (it is still available in COMPAT_50) and
...
the 'detach' command line option from gpioctl(8). Drivers that are
attached to gpio pins can be detached using the drvctl(8) command.
2011-10-03 11:16:47 +00:00
mbalmer
d0a114ea0b
Build i2cscan, since it is the list files.
2011-10-03 07:29:33 +00:00
jmcneill
f11f373e5d
add userland implementation of I2C_SCAN code
2011-10-02 16:48:47 +00:00
mbalmer
44f61c8547
It's actually 'the flag locator', not 'flags' (as 'flags' can not be used
...
as a locator name for reasons unknown to me.)
2011-10-02 12:43:52 +00:00
mbalmer
90077b6e6d
Add a ga_flags field to the gpio_attach structure to hand driver
...
specific flags to drivers being attached at gpio pins. gpioiic(4)
uses this to reverse the SDA/SCL signal order. gpioctl(8) accepts
the flag values as optional argument to the attach command.
While here, make sure we retain backwards compatability and wrap compat
code in #ifdef COMPAT_50/#endif.
2011-10-02 09:33:18 +00:00
jym
afca4e3b49
Fix an implementation inconsistency with the prop_*_send_syscall() and
...
prop_*_recv_syscall() functions from proplib(3). They now share the
same logic as the one from prop_*_send_ioctl() functions:
- returns an int
- 0 indicates "no error", otherwise returns the error number (and
set errno)
Many consumers of the prop_*_{ioctl, syscall} expect errno to be set
on error and use err() to display the error message. As such, ensures that
errno gets set before returning from these functions.
prop_*_send_syscall() functions returned a boolean, and now return an int.
Fix all call sites to use the new paradigm (only quota2 is affected in src).
As the prop_*_{send,recv}_syscall() API appeared in -current and is only
used by the recent quota2 code, I am not bumping the lib. The API change
only affects the prop_*_send_syscall() function (recv_syscall()s were
already used correctly), so ensure you are not mixing "old" -current
quota binaries with a new proplib(3) (or the other way around). This
change will be announced via a HEADS-UP and UPDATING.
Does not affect the kernel part of proplib.
Document the correct API in prop_array(3) and prop_dictionary(3).
Thanks to Francois Tigeot for noticing the API inconsistency and
reporting it on tech-kern@.
ok bouyer@.
2011-09-30 22:08:18 +00:00
jruoho
be8b5eb28c
Define _PATH_CPUCTL.
2011-09-27 11:24:20 +00:00
jruoho
cb6e031ff5
Fix wrong err(3) message (no such thing as IOC_CPU_GETINFO).
2011-09-26 06:51:57 +00:00
christos
0049ea08f4
Bump the queue size to 32K
2011-09-24 20:19:39 +00:00
mrg
162d7d5b76
remove an extra ".TP" that broke my build.
2011-09-22 07:30:04 +00:00
wiz
bb903ea004
New sentence, new line. Remove empty EXAMPLE section.
2011-09-21 20:12:11 +00:00
christos
9a4d7431cb
Add a canonicalize option to avoid disaster when one converts directories
...
to symlinks in the tree and back. This option is expensive, it could be
made better by cacheing, but not now.
2011-09-21 19:34:54 +00:00
christos
9525895f88
constify
2011-09-21 19:32:59 +00:00
christos
3584aaaf1c
- don't use an uninitialized grouplist (from Patrick Welche)
...
- While here:
* Allow all numeric users and groups
* Error check string to number conversion
* Factor out common code
2011-09-20 14:28:52 +00:00
joerg
6818646ac8
Use __dead
2011-09-16 15:39:25 +00:00
wiz
5f13296f84
Wording, from Snader_LB.
2011-09-15 11:52:09 +00:00
mbalmer
53d80c937c
Bump (c) year.
2011-09-15 11:46:32 +00:00