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.
This commit is contained in:
jhb 2015-04-09 18:45:03 +00:00
parent d79cd9bb71
commit 8bd7c86f6f

View File

@ -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);