From owner-svn-src-head@FreeBSD.ORG Thu Apr 28 20:25:16 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47D08106566C; Thu, 28 Apr 2011 20:25:16 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 36B5C8FC15; Thu, 28 Apr 2011 20:25:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p3SKPGBN057786; Thu, 28 Apr 2011 20:25:16 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p3SKPGmm057784; Thu, 28 Apr 2011 20:25:16 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201104282025.p3SKPGmm057784@svn.freebsd.org> From: John Baldwin Date: Thu, 28 Apr 2011 20:25:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r221183 - head/sys/fs/ext2fs X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2011 20:25:16 -0000 Author: jhb Date: Thu Apr 28 20:25:15 2011 New Revision: 221183 URL: http://svn.freebsd.org/changeset/base/221183 Log: Update a comment since ext2fs does not use SU. Reviewed by: kib Modified: head/sys/fs/ext2fs/ext2_readwrite.c Modified: head/sys/fs/ext2fs/ext2_readwrite.c ============================================================================== --- head/sys/fs/ext2fs/ext2_readwrite.c Thu Apr 28 19:19:25 2011 (r221182) +++ head/sys/fs/ext2fs/ext2_readwrite.c Thu Apr 28 20:25:15 2011 (r221183) @@ -164,9 +164,9 @@ READ(ap) if (ioflag & (IO_VMIO|IO_DIRECT)) { /* - * If there are no dependencies, and it's VMIO, - * then we don't need the buf, mark it available - * for freeing. The VM has the data. + * If it's VMIO or direct I/O, then we don't + * need the buf, mark it available for + * freeing. If it's VMIO, the VM has the data. */ bp->b_flags |= B_RELBUF; brelse(bp);