svn commit: r342316 - stable/12/sys/dev/sfxge/common
Andrew Rybchenko
arybchik at FreeBSD.org
Fri Dec 21 15:13:00 UTC 2018
Author: arybchik
Date: Fri Dec 21 15:12:58 2018
New Revision: 342316
URL: https://svnweb.freebsd.org/changeset/base/342316
Log:
MFC r340884
sfxge(4): fix probes in licensing support
EFSYS_PROBE1 takes one typed value (in addition to the probe name),
whereas EFSYS_PROBE has just the probe name.
Which to use is determined by the probe name - "fail1" probes are
expected to include the function result.
Submitted by: Mark Spender <mspender at solarflare.com>
Sponsored by: Solarflare Communications, Inc.
Differential Revision: https://reviews.freebsd.org/D18118
Modified:
stable/12/sys/dev/sfxge/common/efx_lic.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/dev/sfxge/common/efx_lic.c
==============================================================================
--- stable/12/sys/dev/sfxge/common/efx_lic.c Fri Dec 21 15:11:52 2018 (r342315)
+++ stable/12/sys/dev/sfxge/common/efx_lic.c Fri Dec 21 15:12:58 2018 (r342316)
@@ -522,7 +522,7 @@ efx_lic_v1v2_find_key(
return (found);
fail1:
- EFSYS_PROBE(fail1);
+ EFSYS_PROBE1(fail1, boolean_t, B_FALSE);
return (B_FALSE);
}
@@ -565,7 +565,7 @@ fail3:
fail2:
EFSYS_PROBE(fail2);
fail1:
- EFSYS_PROBE(fail1);
+ EFSYS_PROBE1(fail1, boolean_t, B_FALSE);
return (B_FALSE);
}
@@ -1187,7 +1187,7 @@ fail3:
fail2:
EFSYS_PROBE(fail2);
fail1:
- EFSYS_PROBE(fail1);
+ EFSYS_PROBE1(fail1, boolean_t, B_FALSE);
return (B_FALSE);
}
More information about the svn-src-all
mailing list