Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Aug 2017 12:24:25 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r322948 - head/sys/geom
Message-ID:  <201708271224.v7RCOPGY040060@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);
 	}
 



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