svn commit: r197945 - head/sys/dev/fdc

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Oct 10 21:49:04 UTC 2009


Author: trasz
Date: Sat Oct 10 21:49:04 2009
New Revision: 197945
URL: http://svn.freebsd.org/changeset/base/197945

Log:
  Orphaning provider with EXDEV seems weird; perhaps the author meant
  ENXIO here?

Modified:
  head/sys/dev/fdc/fdc.c

Modified: head/sys/dev/fdc/fdc.c
==============================================================================
--- head/sys/dev/fdc/fdc.c	Sat Oct 10 21:43:04 2009	(r197944)
+++ head/sys/dev/fdc/fdc.c	Sat Oct 10 21:49:04 2009	(r197945)
@@ -864,7 +864,7 @@ fdc_worker(struct fdc_data *fdc)
 		fd->flags |= FD_NEWDISK;
 		mtx_unlock(&fdc->fdc_mtx);
 		g_topology_lock();
-		g_orphan_provider(fd->fd_provider, EXDEV);
+		g_orphan_provider(fd->fd_provider, ENXIO);
 		fd->fd_provider->flags |= G_PF_WITHER;
 		fd->fd_provider =
 		    g_new_providerf(fd->fd_geom, fd->fd_geom->name);


More information about the svn-src-head mailing list