svn commit: r197842 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

Pawel Jakub Dawidek pjd at FreeBSD.org
Wed Oct 7 20:54:07 UTC 2009


Author: pjd
Date: Wed Oct  7 20:54:07 2009
New Revision: 197842
URL: http://svn.freebsd.org/changeset/base/197842

Log:
  Fix white-spaces.
  
  MFC after:	3 days

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c	Wed Oct  7 20:20:51 2009	(r197841)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c	Wed Oct  7 20:54:07 2009	(r197842)
@@ -433,7 +433,7 @@ vdev_geom_open_by_guid(vdev_t *vd)
 	if (cp != NULL) {
 		len = strlen(cp->provider->name) + strlen("/dev/") + 1;
 		buf = kmem_alloc(len, KM_SLEEP);
-	
+
 		snprintf(buf, len, "/dev/%s", cp->provider->name);
 		spa_strfree(vd->vdev_path);
 		vd->vdev_path = buf;
@@ -663,11 +663,11 @@ static void
 vdev_geom_io_done(zio_t *zio)
 {
 
-	/*																						    
-	 * If the device returned ENXIO, then attempt we should verify if GEOM														
-	 * provider has been removed. If this is the case, then we trigger an														 
-	 * asynchronous removal of the device.																		
-	 */																						   
+	/*
+	 * If the device returned ENXIO, then attempt we should verify if GEOM
+	 * provider has been removed. If this is the case, then we trigger an
+	 * asynchronous removal of the device.
+	 */
 	if (zio->io_error == ENXIO) {
 		vdev_t *vd = zio->io_vd;
 		vdev_geom_ctx_t *ctx;


More information about the svn-src-all mailing list