svn commit: r213531 - head/sbin/hastd

Pawel Jakub Dawidek pjd at FreeBSD.org
Thu Oct 7 18:20:16 UTC 2010


Author: pjd
Date: Thu Oct  7 18:20:16 2010
New Revision: 213531
URL: http://svn.freebsd.org/changeset/base/213531

Log:
  Log error message when we fail to destroy ggate provider.
  
  MFC after:	3 days

Modified:
  head/sbin/hastd/primary.c

Modified: head/sbin/hastd/primary.c
==============================================================================
--- head/sbin/hastd/primary.c	Thu Oct  7 18:19:02 2010	(r213530)
+++ head/sbin/hastd/primary.c	Thu Oct  7 18:20:16 2010	(r213531)
@@ -242,7 +242,8 @@ cleanup(struct hast_resource *res)
 		ggiod.gctl_unit = res->hr_ggateunit;
 		ggiod.gctl_force = 1;
 		if (ioctl(res->hr_ggatefd, G_GATE_CMD_DESTROY, &ggiod) < 0) {
-			pjdlog_warning("Unable to destroy hast/%s device",
+			pjdlog_errno(LOG_WARNING,
+			    "Unable to destroy hast/%s device",
 			    res->hr_provname);
 		}
 		res->hr_ggateunit = -1;


More information about the svn-src-all mailing list