svn commit: r281317 - in stable: 10/lib/libstand 9/lib/libstand

John Baldwin jhb at FreeBSD.org
Thu Apr 9 18:45:05 UTC 2015


Author: jhb
Date: Thu Apr  9 18:45:03 2015
New Revision: 281317
URL: https://svnweb.freebsd.org/changeset/base/281317

Log:
  MFC 279931:
  Spin the twiddle in dosfs to give visual feedback for disk I/O on
  FAT filesystems as is done for other filesystems in the loader.

Modified:
  stable/9/lib/libstand/dosfs.c
Directory Properties:
  stable/9/lib/libstand/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/lib/libstand/dosfs.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/9/lib/libstand/dosfs.c
==============================================================================
--- stable/9/lib/libstand/dosfs.c	Thu Apr  9 18:03:27 2015	(r281316)
+++ stable/9/lib/libstand/dosfs.c	Thu Apr  9 18:45:03 2015	(r281317)
@@ -767,7 +767,8 @@ static int
 ioget(struct open_file *fd, u_int lsec, void *buf, u_int nsec)
 {
     int	err;
-    
+
+    twiddle();
     if ((err = (fd->f_dev->dv_strategy)(fd->f_devdata, F_READ, lsec, 
 					secbyt(nsec), buf, NULL)))
 	return(err);


More information about the svn-src-all mailing list