#
d1d01586 |
| 05-Sep-2013 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Merge from head
|
#
46ed9e49 |
| 04-Sep-2013 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r255209
|
#
907745a8 |
| 10-Aug-2013 |
Alfred Perlstein <alfred@FreeBSD.org> |
Fix bug in r253719: fix command line watchdog disable.
r253719 disallowed watchdog(8) from disabling the watchdog by breaking the ability to pass 0 as a timeout arg. Fix this.
|
#
40f65a4d |
| 07-Aug-2013 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r254014
|
#
672ed870 |
| 02-Aug-2013 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r253862
- change the SI_SUB_RUN_SCHEDULER sysinits in hv_utilc and hv_netvsc_drv_freebsd.c to SI_SUB_KTHREAD_IDLE, since the former is no longer in FreeBSD. The use of these SYSINITs can pro
IFC @ r253862
- change the SI_SUB_RUN_SCHEDULER sysinits in hv_utilc and hv_netvsc_drv_freebsd.c to SI_SUB_KTHREAD_IDLE, since the former is no longer in FreeBSD. The use of these SYSINITs can probably be removed.
show more ...
|
#
22dbec3d |
| 30-Jul-2013 |
John Baldwin <jhb@FreeBSD.org> |
Apply a casting sledgehammer.
Submitted by: dhw
|
#
232b79f5 |
| 28-Jul-2013 |
Ian Lepore <ian@FreeBSD.org> |
Fix printf of seconds for systems where time_t is 64 bits.
|
#
3d30404f |
| 27-Jul-2013 |
Alfred Perlstein <alfred@FreeBSD.org> |
Fix watchdog pretimeout.
The original API calls for pow2ns, however the new APIs from Linux call for seconds.
We need to be able to convert to/from 2^Nns to seconds in both userland and kernel to f
Fix watchdog pretimeout.
The original API calls for pow2ns, however the new APIs from Linux call for seconds.
We need to be able to convert to/from 2^Nns to seconds in both userland and kernel to fix this and properly compare units.
show more ...
|
#
552311f4 |
| 17-Jul-2013 |
Xin LI <delphij@FreeBSD.org> |
IFC @253398
|
#
cfe30d02 |
| 19-Jun-2013 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Merge fresh head.
|
Revision tags: release/8.4.0 |
|
#
69e6d7b7 |
| 12-Apr-2013 |
Simon J. Gerraty <sjg@FreeBSD.org> |
sync from head
|
#
5e49d30e |
| 08-Apr-2013 |
Ed Schouten <ed@FreeBSD.org> |
Mark the act_tbl static/const.
This table is only used within this source file and is only accessed read-only.
MFC after: 1 week
|
#
8d7ad01f |
| 26-Mar-2013 |
Mark Johnston <markj@FreeBSD.org> |
Invert the meaning of -S (added in r247405) and document its meaning. Also, don't carp about the watchdog command taking too long until after the watchdog has been patted, and don't carp via warnx(3)
Invert the meaning of -S (added in r247405) and document its meaning. Also, don't carp about the watchdog command taking too long until after the watchdog has been patted, and don't carp via warnx(3) unless -S is set since syslog(3) already logs to standard error otherwise.
Discussed with: alfred Reviewed by: alfred Approved by: emaste (co-mentor)
show more ...
|
#
4b9b732a |
| 27-Feb-2013 |
Alfred Perlstein <alfred@FreeBSD.org> |
watchdogd(8) and watchdog(4) enhancements.
The following support was added to watchdog(4): - Support to query the outstanding timeout. - Support to set a software pre-timeout function watchdog with
watchdogd(8) and watchdog(4) enhancements.
The following support was added to watchdog(4): - Support to query the outstanding timeout. - Support to set a software pre-timeout function watchdog with an 'action' - Support to set a software only watchdog with a configurable 'action'
'action' can be a mask specifying a single operation or a combination of: log(9), printf(9), panic(9) and/or kdb_enter(9).
Support the following in watchdogged: - Support to utilize the new additions to watchdog(4). - Support to warn if a watchdog script runs for too long. - Support for "dry run" where we do not actually arm the watchdog, but only report on our timing.
Sponsored by: iXsystems, Inc. MFC after: 1 month
show more ...
|
#
d241a0e6 |
| 26-Feb-2013 |
Xin LI <delphij@FreeBSD.org> |
IFC @247348.
|
#
d9a44755 |
| 08-Feb-2013 |
David E. O'Brien <obrien@FreeBSD.org> |
Sync with HEAD.
|
#
3c5bfb58 |
| 26-Jan-2013 |
Ian Lepore <ian@FreeBSD.org> |
Revert accidental regression to previous misspelling.
Approved by: cognet (mentor)
|
#
e6af9f3a |
| 26-Jan-2013 |
Ian Lepore <ian@FreeBSD.org> |
Reduce watchdogd's memory footprint when running daemonized.
This uses the recently-added jemalloc(3) feature of setting the lg_chunk tuning option to zero to request that memory be allocated in the
Reduce watchdogd's memory footprint when running daemonized.
This uses the recently-added jemalloc(3) feature of setting the lg_chunk tuning option to zero to request that memory be allocated in the smallest chunks possible. Without this option, the default is to initally map 8MB, and then the mlockall() call wires that entire allocation even though the program only uses a few Kbytes of it at runtime.
PR: bin/173332 Approved by: cognet (mentor)
show more ...
|
#
b6473670 |
| 18-Jan-2013 |
Alfred Perlstein <alfred@FreeBSD.org> |
Spelling: exitting -> exiting
MFC after: 2 weeks
|
Revision tags: release/9.1.0 |
|
#
300675f6 |
| 27-Nov-2012 |
Alexander Motin <mav@FreeBSD.org> |
MFC
|
#
e477abf7 |
| 27-Nov-2012 |
Alexander Motin <mav@FreeBSD.org> |
MFC @ r241285
|
#
a10c6f55 |
| 11-Nov-2012 |
Neel Natu <neel@FreeBSD.org> |
IFC @ r242684
|
#
23090366 |
| 04-Nov-2012 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Sync from head
|
#
652c4260 |
| 03-Nov-2012 |
Xin LI <delphij@FreeBSD.org> |
Replace log(3) with flsll(3) for watchdogd(8) and drop libm dependency.
MFC after: 2 weeks
|
#
24bf3585 |
| 04-Sep-2012 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Merge head r233826 through r240095.
|