#
9ecd2e32 |
| 11-Dec-2012 |
Alfred Perlstein <alfred@FreeBSD.org> |
Allow sysctl to filter boot and runtime tunables.
Add the following flags to sysctl: -W - show only writable sysctls -T - show only tuneable sysctls
This can be used to create a /var/run/sysctl
Allow sysctl to filter boot and runtime tunables.
Add the following flags to sysctl: -W - show only writable sysctls -T - show only tuneable sysctls
This can be used to create a /var/run/sysctl.boot to compare set tunables versus booted tunables.
Sponsored by: iXsystems
show more ...
|
#
aae75101 |
| 11-Dec-2012 |
Xin LI <delphij@FreeBSD.org> |
In parse():
- Only operate on copy, don't operate on source. - Eliminate home-rolled strsep(). - Constify the parameter.
MFC after: 2 weeks
|
Revision tags: release/9.1.0 |
|
#
6a068746 |
| 15-May-2012 |
Alexander Motin <mav@FreeBSD.org> |
MFC
|
#
3d328873 |
| 30-Apr-2012 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Merge head r233826 through r234834.
|
#
38f1b189 |
| 26-Apr-2012 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r234692
sys/amd64/include/cpufunc.h sys/amd64/include/fpu.h sys/amd64/amd64/fpu.c sys/amd64/vmm/vmm.c
- Add API to allow vmm FPU state init/save/restore.
FP stuff discussed with: kib
|
#
ad0e6cda |
| 11-Apr-2012 |
Eitan Adler <eadler@FreeBSD.org> |
s/Free Memory Pages/Free Memory/ to avoid confusion, since we're reporting a number of bytes rather than a number of pages
PR: misc/165208 Submitted by: Arnaud Lacombe <lacombar@gmail.com> Approved
s/Free Memory Pages/Free Memory/ to avoid confusion, since we're reporting a number of bytes rather than a number of pages
PR: misc/165208 Submitted by: Arnaud Lacombe <lacombar@gmail.com> Approved by: cperciva MFC after: 3 days
show more ...
|
Revision tags: release/8.3.0_cvs, release/8.3.0 |
|
#
8fa0b743 |
| 23-Jan-2012 |
Xin LI <delphij@FreeBSD.org> |
IFC @230489 (pending review).
|
#
80dbff4e |
| 04-Jan-2012 |
Sean Bruno <sbruno@FreeBSD.org> |
IFC to head to catch up the bhyve branch
Approved by: grehan@
|
Revision tags: release/9.0.0 |
|
#
0b6230f1 |
| 01-Dec-2011 |
John Baldwin <jhb@FreeBSD.org> |
If the -d flag is specified, ignore any new values specified and only display the descriptions of specified nodes.
Reported by: Jason Hellenthal jhell of dataix net MFC after: 2 weeks
|
Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0 |
|
#
cbc134ad |
| 20-Jan-2011 |
Matthew D Fleming <mdf@FreeBSD.org> |
Introduce signed and unsigned version of CTLTYPE_QUAD, renaming existing uses. Rename sysctl_handle_quad() to sysctl_handle_64().
|
#
f8e4b4ef |
| 19-Jan-2011 |
Matthew D Fleming <mdf@FreeBSD.org> |
sysctl(8) should use the CTLTYPE to determine the type of data when reading. (This was already done for writing to a sysctl). This requires all SYSCTL setups to specify a type. Most of them are no
sysctl(8) should use the CTLTYPE to determine the type of data when reading. (This was already done for writing to a sysctl). This requires all SYSCTL setups to specify a type. Most of them are now checked at compile-time.
Remove SYSCTL_*X* sysctl additions as the print being in hex should be controlled by the -x flag to sysctl(8).
Succested by: bde
show more ...
|
#
5bf6a940 |
| 18-Jan-2011 |
Matthew D Fleming <mdf@FreeBSD.org> |
The kernel is not exporting any "T,dev_t" sysctl nodes anymore, so remove the capability and mention from sysctl(8).
|
#
13e86ef7 |
| 16-Sep-2010 |
Marko Zec <zec@FreeBSD.org> |
Make the format of "Real Memory" and "Virtual Memory" lines more consistent with the rest of sysctl vm.vmtotal output.
MFC after: 3 days
|
Revision tags: release/8.1.0_cvs, release/8.1.0 |
|
#
a4bf5fb9 |
| 28-Apr-2010 |
Kirk McKusick <mckusick@FreeBSD.org> |
Update to current version of head.
|
#
accfa147 |
| 20-Apr-2010 |
Rebecca Cran <brucec@FreeBSD.org> |
MFC r205118:
Free the memory allocated via strdup.
PR: bin/113881 Submitted by: Alexander Drozdov (dzal_mail at mtu-net.ru) Approved by: rrs (mentor)
|
Revision tags: release/7.3.0_cvs, release/7.3.0 |
|
#
f2359a24 |
| 13-Mar-2010 |
Rebecca Cran <brucec@FreeBSD.org> |
Free the memory allocated via strdup.
PR: bin/113881 Submitted by: Alexander Drozdov dzal_mail mtu-net.ru Approved by: rrs (mentor) MFC after: 1 week
|
#
1a0fda2b |
| 04-Mar-2010 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
IFH@204581
|
#
6d7a8f6c |
| 15-Feb-2010 |
Ulrich Spörlein <uqs@FreeBSD.org> |
sysctl(8): make WARNS=3 clean
Fixes inspired by work done in DragonflyBSD.
PR: bin/140016 Approved by: ed (Co-mentor)
|
#
a83e6639 |
| 14-Feb-2010 |
Gavin Atkinson <gavin@FreeBSD.org> |
Merge r203310,203547,203717 from head:
Implement the "-i" option to sysctl(8), to ignore failures while retrieving individual OIDs. This allows the same list of OIDs to be passed to sysctl(8)
Merge r203310,203547,203717 from head:
Implement the "-i" option to sysctl(8), to ignore failures while retrieving individual OIDs. This allows the same list of OIDs to be passed to sysctl(8) across different systems where particular OIDs may not exist, and still get as much information as possible from them.
PR: bin/123644 Submitted by: dhw
show more ...
|
#
aea5fda5 |
| 09-Feb-2010 |
Gavin Atkinson <gavin@FreeBSD.org> |
Add -i to usage()
Noticed by: ru MFC after: 5 days
|
#
24b2aa32 |
| 31-Jan-2010 |
Gavin Atkinson <gavin@FreeBSD.org> |
Implement the "-i" option to sysctl(8), to ignore failures while retrieving individual OIDs. This allows the same list of OIDs to be passed to sysctl(8) across different systems where particular OID
Implement the "-i" option to sysctl(8), to ignore failures while retrieving individual OIDs. This allows the same list of OIDs to be passed to sysctl(8) across different systems where particular OIDs may not exist, and still get as much information as possible from them.
PR: bin/123644 Submitted by: dhw Approved by: ed (mentor) MFC after: 2 weeks
show more ...
|
Revision tags: release/8.0.0_cvs, release/8.0.0 |
|
#
874108ae |
| 12-Nov-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
MFC @199204
|
#
8f1c21a6 |
| 03-Nov-2009 |
Ed Schouten <ed@FreeBSD.org> |
Just use devname(3) to print device names.
Right now sysctl just prints the major/minor numbers of a device. Instead of rolling our own routine for this, we'd better just call devname(3) to perform
Just use devname(3) to print device names.
Right now sysctl just prints the major/minor numbers of a device. Instead of rolling our own routine for this, we'd better just call devname(3) to perform a translation to a device name for us.
show more ...
|
#
a7b5ad27 |
| 21-Oct-2009 |
Ed Schouten <ed@FreeBSD.org> |
Make input parsing in Farhenheit actually work.
Don't clobber *p with '\0' when testing whether it has the value of 'F'. Just use the semantics of strtof() properly. If it returns p, we know that it
Make input parsing in Farhenheit actually work.
Don't clobber *p with '\0' when testing whether it has the value of 'F'. Just use the semantics of strtof() properly. If it returns p, we know that it parsed the string until it reached 'C' or 'F'.
The code has not changed since it has been imported (r161951, Sep 3, 2006).
Submitted by: Alexandre Perrin <kaworu@kaworu.ch> MFC after: 1 week
show more ...
|
#
10b3b545 |
| 17-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Merge from head
|