Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 May 2012 00:37:15 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r235497 - in stable/8: sbin/geom/class/eli sys/geom/eli
Message-ID:  <201205160037.q4G0bF2B014142@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Wed May 16 00:37:15 2012
New Revision: 235497
URL: http://svn.freebsd.org/changeset/base/235497

Log:
  MFC r235201 r235419:
  	 Add missing period at the end of the error message
  
  Approved by:	cperciva (implicit)

Modified:
  stable/8/sbin/geom/class/eli/geli.8
  stable/8/sys/geom/eli/g_eli_integrity.c
Directory Properties:
  stable/8/sbin/geom/   (props changed)
  stable/8/sys/   (props changed)

Modified: stable/8/sbin/geom/class/eli/geli.8
==============================================================================
--- stable/8/sbin/geom/class/eli/geli.8	Wed May 16 00:36:51 2012	(r235496)
+++ stable/8/sbin/geom/class/eli/geli.8	Wed May 16 00:37:15 2012	(r235497)
@@ -879,6 +879,9 @@ will not protect your data against repla
 It is recommended to write the whole provider before the first use,
 in order to make sure that all sectors and their corresponding
 checksums are properly initialized into a consistent state.
+One can safely ignore data authentication errors that occur immediately
+after the first time a provider is attached and before it is
+initialized in this way.
 .Sh SEE ALSO
 .Xr crypto 4 ,
 .Xr gbde 4 ,

Modified: stable/8/sys/geom/eli/g_eli_integrity.c
==============================================================================
--- stable/8/sys/geom/eli/g_eli_integrity.c	Wed May 16 00:36:51 2012	(r235496)
+++ stable/8/sys/geom/eli/g_eli_integrity.c	Wed May 16 00:37:15 2012	(r235497)
@@ -204,8 +204,8 @@ g_eli_auth_read_done(struct cryptop *crp
 				 * Report previous corruption if there was one.
 				 */
 				if (coroff != -1) {
-					G_ELI_DEBUG(0, "%s: %jd bytes "
-					    "corrupted at offset %jd.",
+					G_ELI_DEBUG(0, "%s: Failed to authenticate %jd "
+					    "bytes of data at offset %jd.",
 					    sc->sc_name, (intmax_t)corsize,
 					    (intmax_t)coroff);
 					coroff = -1;
@@ -220,7 +220,8 @@ g_eli_auth_read_done(struct cryptop *crp
 		}
 		/* Report previous corruption if there was one. */
 		if (coroff != -1) {
-			G_ELI_DEBUG(0, "%s: %jd bytes corrupted at offset %jd.",
+			G_ELI_DEBUG(0, "%s: Failed to authenticate %jd "
+			    "bytes of data at offset %jd.",
 			    sc->sc_name, (intmax_t)corsize, (intmax_t)coroff);
 		}
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205160037.q4G0bF2B014142>