svn commit: r200145 - stable/8/sys/opencrypto

Bjoern A. Zeeb bz at FreeBSD.org
Sat Dec 5 19:09:27 UTC 2009


Author: bz
Date: Sat Dec  5 19:09:26 2009
New Revision: 200145
URL: http://svn.freebsd.org/changeset/base/200145

Log:
  MFC r199904:
  
    Add SDT iter probes forgotten in r199885 (r200138 for stable/8).

Modified:
  stable/8/sys/opencrypto/deflate.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/opencrypto/deflate.c
==============================================================================
--- stable/8/sys/opencrypto/deflate.c	Sat Dec  5 19:07:28 2009	(r200144)
+++ stable/8/sys/opencrypto/deflate.c	Sat Dec  5 19:09:26 2009	(r200145)
@@ -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-8 mailing list