Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Apr 2015 18:45:04 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r281317 - in stable: 10/lib/libstand 9/lib/libstand
Message-ID:  <201504091845.t39Ij44S061043@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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/10/lib/libstand/dosfs.c
Directory Properties:
  stable/10/   (props changed)

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

Modified: stable/10/lib/libstand/dosfs.c
==============================================================================
--- stable/10/lib/libstand/dosfs.c	Thu Apr  9 18:03:27 2015	(r281316)
+++ stable/10/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(1);
     if ((err = (fd->f_dev->dv_strategy)(fd->f_devdata, F_READ, lsec, 
 					secbyt(nsec), buf, NULL)))
 	return(err);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504091845.t39Ij44S061043>