svn commit: r279931 - head/lib/libstand
John Baldwin
jhb at FreeBSD.org
Thu Mar 12 17:10:05 UTC 2015
Author: jhb
Date: Thu Mar 12 17:10:04 2015
New Revision: 279931
URL: https://svnweb.freebsd.org/changeset/base/279931
Log:
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.
MFC after: 1 week
Modified:
head/lib/libstand/dosfs.c
Modified: head/lib/libstand/dosfs.c
==============================================================================
--- head/lib/libstand/dosfs.c Thu Mar 12 17:07:45 2015 (r279930)
+++ head/lib/libstand/dosfs.c Thu Mar 12 17:10:04 2015 (r279931)
@@ -786,7 +786,8 @@ static int
ioget(struct open_file *fd, u_int lsec, void *buf, u_int nsec)
{
int err;
-
+
+ twiddle(1);
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