svn commit: r322948 - head/sys/geom

Konstantin Belousov kib at FreeBSD.org
Sun Aug 27 12:24:26 UTC 2017


Author: kib
Date: Sun Aug 27 12:24:25 2017
New Revision: 322948
URL: https://svnweb.freebsd.org/changeset/base/322948

Log:
  Let g_access() log the actual error number.
  
  Submitted by:	 Fabian Keil <fk at fabiankeil.de>
  PR:	221855
  MFC after:	1 week

Modified:
  head/sys/geom/geom_subr.c

Modified: head/sys/geom/geom_subr.c
==============================================================================
--- head/sys/geom/geom_subr.c	Sun Aug 27 11:37:07 2017	(r322947)
+++ head/sys/geom/geom_subr.c	Sun Aug 27 12:24:25 2017	(r322948)
@@ -918,8 +918,8 @@ g_access(struct g_consumer *cp, int dcr, int dcw, int 
 		return (EPERM);
 	/* If we try to open more but provider is error'ed: fail */
 	else if ((dcr > 0 || dcw > 0 || dce > 0) && pp->error != 0) {
-		printf("%s(%d): provider %s has error\n",
-		       __func__, __LINE__, pp->name);
+		printf("%s(%d): provider %s has error %d set\n",
+		    __func__, __LINE__, pp->name, pp->error);
 		return (pp->error);
 	}
 


More information about the svn-src-all mailing list