svn commit: r218994 - stable/8/usr.sbin/fdformat

Bruce Cran brucec at FreeBSD.org
Thu Feb 24 11:03:16 UTC 2011


Author: brucec
Date: Thu Feb 24 11:03:16 2011
New Revision: 218994
URL: http://svn.freebsd.org/changeset/base/218994

Log:
  MFC r218910:
  
  The FD_FORM ioctl used to ignore errors from the floppy controller; now when
  it encounters an error it returns an error from the ioctl.
  Ignore any errors when using the FD_FORM ioctl.
  
  PR:   kern/103862

Modified:
  stable/8/usr.sbin/fdformat/fdformat.c
Directory Properties:
  stable/8/usr.sbin/fdformat/   (props changed)

Modified: stable/8/usr.sbin/fdformat/fdformat.c
==============================================================================
--- stable/8/usr.sbin/fdformat/fdformat.c	Thu Feb 24 10:45:41 2011	(r218993)
+++ stable/8/usr.sbin/fdformat/fdformat.c	Thu Feb 24 11:03:16 2011	(r218994)
@@ -75,8 +75,7 @@ format_track(int fd, int cyl, int secs, 
 		f.fd_formb_secno(i) = il[i+1];
 		f.fd_formb_secsize(i) = secsize;
 	}
-	if(ioctl(fd, FD_FORM, (caddr_t)&f) < 0)
-		err(EX_OSERR, "ioctl(FD_FORM)");
+	(void)ioctl(fd, FD_FORM, (caddr_t)&f);
 }
 
 static int


More information about the svn-src-stable mailing list