svn commit: r351510 - stable/12/cddl/contrib/opensolaris/cmd/lockstat

Mark Johnston markj at FreeBSD.org
Mon Aug 26 15:21:30 UTC 2019


Author: markj
Date: Mon Aug 26 15:21:29 2019
New Revision: 351510
URL: https://svnweb.freebsd.org/changeset/base/351510

Log:
  MFC r351359:
  Fix inverted predicates for sx lock hold events in lockstat(1).

Modified:
  stable/12/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c
==============================================================================
--- stable/12/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c	Mon Aug 26 10:18:19 2019	(r351509)
+++ stable/12/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c	Mon Aug 26 15:21:29 2019	(r351510)
@@ -206,10 +206,10 @@ static ls_event_info_t g_event_info[LS_MAX_EVENTS] = {
 	    "lockstat:::rw-release", "arg1 == 1",
 	    "lockstat:::rw-acquire" },
 	{ 'H',	"Lock",	"SX shared hold",			"nsec",
-	    "lockstat:::sx-release", "arg1 == 0",
+	    "lockstat:::sx-release", "arg1 == 1",
 	    "lockstat:::sx-acquire" },
 	{ 'H',	"Lock",	"SX exclusive hold",			"nsec",
-	    "lockstat:::sx-release", "arg1 == 1",
+	    "lockstat:::sx-release", "arg1 == 0",
 	    "lockstat:::sx-acquire" },
 	{ 'H',	"Lock",	"Unknown event (type 38)",		"units"	},
 	{ 'H',	"Lock",	"Unknown event (type 39)",		"units"	},


More information about the svn-src-stable mailing list