#
1709ccf9 |
| 29-Mar-2014 |
Martin Matuska <mm@FreeBSD.org> |
Merge head up to r263906.
|
#
3447a66d |
| 14-Mar-2014 |
Neel Natu <neel@FreeBSD.org> |
Don't dump entries that were modified during the time the KTR buffer was being copied to userspace. Failing to do this would result in entries at the bottom of the ktrdump output to be more recent th
Don't dump entries that were modified during the time the KTR buffer was being copied to userspace. Failing to do this would result in entries at the bottom of the ktrdump output to be more recent than entries at the top.
With this change the timestamps are monotonically decreasing going from the top to the bottom of the ktrdump output.
show more ...
|
#
f8c8b7ee |
| 14-Mar-2014 |
Neel Natu <neel@FreeBSD.org> |
Fix an issue with ktrdump(8) where it would not print all entries in the KTR buffer.
This happens when 'i' tries to wrap around from 0 to 'entries - 1'. Since 'i' is a signed integer the modulo oper
Fix an issue with ktrdump(8) where it would not print all entries in the KTR buffer.
This happens when 'i' tries to wrap around from 0 to 'entries - 1'. Since 'i' is a signed integer the modulo operation actually returns a negative number.
Fix this by computing the next index to use "by hand" instead of relying on the modulo operator.
show more ...
|
#
5748b897 |
| 19-Feb-2014 |
Martin Matuska <mm@FreeBSD.org> |
Merge head up to r262222 (last merge was incomplete).
|
#
945a2095 |
| 20-Jan-2014 |
Kai Wang <kaiw@FreeBSD.org> |
MFH@260917.
|
#
4f18ae67 |
| 19-Jan-2014 |
Glen Barber <gjb@FreeBSD.org> |
MFH: Tracking commit (r260891)
Sponsored by: The FreeBSD Foundation
|
#
0d52168e |
| 17-Jan-2014 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Print the ktr(4) format line that caused a failure.
Sponsored by: Nginx, Inc.
|
Revision tags: release/10.0.0, release/9.2.0 |
|
#
cfe30d02 |
| 19-Jun-2013 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Merge fresh head.
|
Revision tags: release/8.4.0 |
|
#
d9a44755 |
| 08-Feb-2013 |
David E. O'Brien <obrien@FreeBSD.org> |
Sync with HEAD.
|
Revision tags: release/9.1.0 |
|
#
300675f6 |
| 27-Nov-2012 |
Alexander Motin <mav@FreeBSD.org> |
MFC
|
#
32484645 |
| 17-Nov-2012 |
Neel Natu <neel@FreeBSD.org> |
IFC @ r243164
|
#
28d91af3 |
| 15-Nov-2012 |
Jeff Roberson <jeff@FreeBSD.org> |
- Implement run-time expansion of the KTR buffer via sysctl. - Implement a function to ensure that all preempted threads have switched back out at least once. Use this to make sure there are no
- Implement run-time expansion of the KTR buffer via sysctl. - Implement a function to ensure that all preempted threads have switched back out at least once. Use this to make sure there are no stale references to the old ktr_buf or the lock profiling buffers before updating them.
Reviewed by: marius (sparc64 parts), attilio (earlier patch) Sponsored by: EMC / Isilon Storage Division
show more ...
|
#
a10c6f55 |
| 11-Nov-2012 |
Neel Natu <neel@FreeBSD.org> |
IFC @ r242684
|
#
23090366 |
| 04-Nov-2012 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Sync from head
|
#
913f53dc |
| 30-Oct-2012 |
Navdeep Parhar <np@FreeBSD.org> |
Catch up with r238925. ktr_entries may not be a power of 2.
|
Revision tags: release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0 |
|
#
718f2aed |
| 26-Jan-2011 |
Dmitry Chagin <dchagin@FreeBSD.org> |
Add -H flag to print thread id.
|
Revision tags: release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0 |
|
#
7d4b968b |
| 17-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Merge from head up to r188941 (last revision before the USB stack switch)
|
Revision tags: release/7.2.0_cvs, release/7.2.0 |
|
#
1829d5da |
| 12-Mar-2009 |
Warner Losh <imp@FreeBSD.org> |
Update the projects tree to a newer FreeBSD current.
|
#
612f2a05 |
| 21-Feb-2009 |
Xin LI <delphij@FreeBSD.org> |
Remove unnecessary opt* definations.
|
Revision tags: release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0 |
|
#
e5ed7bcc |
| 12-Jan-2006 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Skip format flags, when parsing ktr_desc.
|
#
ee574da5 |
| 09-Dec-2005 |
Nate Lawson <njl@FreeBSD.org> |
Really fix the relative timestamp bug. It was only incorrect for the ALQ case. It seems entries are in reverse order when read from the kernel memory but in the right order when read from a file (i
Really fix the relative timestamp bug. It was only incorrect for the ALQ case. It seems entries are in reverse order when read from the kernel memory but in the right order when read from a file (i.e. ALQ). Handle both cases.
MFC after: 1 day
show more ...
|
#
c578cf5e |
| 06-Dec-2005 |
Nate Lawson <njl@FreeBSD.org> |
Fix -r flag to actually work. "now" comes after "then", not vice versa.
MFC after: 1 day
|
Revision tags: release/6.0.0_cvs, release/6.0.0 |
|
#
671cff5a |
| 06-Jun-2005 |
Christian S.J. Peron <csjp@FreeBSD.org> |
Append a newline character to the usage string.
MFC after: 3 days
|
#
f682f10c |
| 21-May-2005 |
Ruslan Ermilov <ru@FreeBSD.org> |
Sync program's usage() with manpage's SYNOPSIS.
|
Revision tags: release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
#
c7f4c395 |
| 27-Sep-2004 |
Julian Elischer <julian@FreeBSD.org> |
Don't use an uninitialised variable when reading from a ktr alq file.
|