From owner-svn-src-stable-10@FreeBSD.ORG Thu Apr 9 18:45:04 2015 Return-Path: Delivered-To: svn-src-stable-10@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A83B4519; Thu, 9 Apr 2015 18:45:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92A6B3DE; Thu, 9 Apr 2015 18:45:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t39Ij4jO061044; Thu, 9 Apr 2015 18:45:04 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t39Ij44S061043; Thu, 9 Apr 2015 18:45:04 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201504091845.t39Ij44S061043@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Thu, 9 Apr 2015 18:45:04 +0000 (UTC) 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 X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 18:45:04 -0000 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);