svn commit: r201240 - stable/7/sys/opencrypto

Bjoern A. Zeeb bz at FreeBSD.org
Tue Dec 29 23:42:54 UTC 2009


Author: bz
Date: Tue Dec 29 23:42:54 2009
New Revision: 201240
URL: http://svn.freebsd.org/changeset/base/201240

Log:
  MFC r199904:
  
    Add SDT iter probes forgotten in r199885 (r201231 in stable/7).

Modified:
  stable/7/sys/opencrypto/deflate.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/opencrypto/deflate.c
==============================================================================
--- stable/7/sys/opencrypto/deflate.c	Tue Dec 29 23:40:57 2009	(r201239)
+++ stable/7/sys/opencrypto/deflate.c	Tue Dec 29 23:42:54 2009	(r201240)
@@ -148,6 +148,12 @@ deflate_global(data, size, decomp, out)
 			    zbuf.state->dummy, zbuf.total_out);
 			goto bad;
 		}
+		SDT_PROBE5(opencrypto, deflate, deflate_global, iter,
+		    decomp, error, __LINE__,
+		    zbuf.avail_in, zbuf.avail_out);
+		SDT_PROBE5(opencrypto, deflate, deflate_global, iter,
+		    decomp, error, __LINE__,
+		    zbuf.state->dummy, zbuf.total_out);
 		if (decomp && zbuf.avail_in == 0 && error == Z_STREAM_END) {
 			/* Done. */
 			break;


More information about the svn-src-stable mailing list