From owner-svn-src-all@FreeBSD.ORG Tue May 10 15:25:32 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 583851065670; Tue, 10 May 2011 15:25:32 +0000 (UTC) (envelope-from gleb.kurtsou@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7D3DC8FC0A; Tue, 10 May 2011 15:25:31 +0000 (UTC) Received: by wyf23 with SMTP id 23so6180133wyf.13 for ; Tue, 10 May 2011 08:25:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=47WmXn8AhQwVMHOiMqFbr/zn4qAzxNGiG7rYIVrFQYw=; b=o3hU9pf895QaPkM6wg2ast3qOB/UcvjBlwN4PyOdajgDtwSEp6kBxjHLlp+5fd8G85 /ZoKHzGQuoG0qA5849Z+4+qrfkpt696HoEuIaQyvQatPxzE9MVUzxOHRm+/oOvGwYM0R glbuHPHAC6BwyCad1fpzEeTrrkYuuzjWN6uRM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=dY0ewOAtglVeEWPaArd94O54TUV+nrkLmgPHNuyXermPNlV34cSrB65UCPs9K2j0V7 TQGUZtFnXpjT8Vp1pc+FJ1c9jNOP8697A7JrrTzryb+CfeA6tv2ed6p4e9l4xhd8hoHV M/rQay3a31FsxJMu1Lqh3bIw6ERWzsQcjemOU= Received: by 10.227.100.219 with SMTP id z27mr38204wbn.45.1305039717453; Tue, 10 May 2011 08:01:57 -0700 (PDT) Received: from localhost (lan-78-157-92-5.vln.skynet.lt [78.157.92.5]) by mx.google.com with ESMTPS id bs4sm4446552wbb.52.2011.05.10.08.01.55 (version=SSLv3 cipher=OTHER); Tue, 10 May 2011 08:01:56 -0700 (PDT) Date: Tue, 10 May 2011 18:01:16 +0300 From: Gleb Kurtsou To: John Baldwin Message-ID: <20110510150116.GA51558@tops> References: <201104281736.p3SHaQhl032994@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <201104281736.p3SHaQhl032994@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r221176 - head/sys/fs/ext2fs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 May 2011 15:25:32 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Could you also commit the patch attached. No functional changes, it removes incorrect comment copy-pasted from UFS to ext2. Thanks, Gleb. --liOOAslEiF7prFVr Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename="0002-ext2fs-Remove-stale-comment.patch" >From 24f4656c71d716e23e3c043ac6d0894284efa301 Mon Sep 17 00:00:00 2001 From: Gleb Kurtsou Date: Thu, 21 Oct 2010 01:51:59 +0300 Subject: [PATCH 02/25] ext2fs: Remove stale comment --- sys/fs/ext2fs/ext2_lookup.c | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/sys/fs/ext2fs/ext2_lookup.c b/sys/fs/ext2fs/ext2_lookup.c index 56963b2..7edd54f 100644 --- a/sys/fs/ext2fs/ext2_lookup.c +++ b/sys/fs/ext2fs/ext2_lookup.c @@ -117,12 +117,6 @@ static int ext2_dirbadentry(struct vnode *dp, struct ext2fs_direct_2 *de, /* * Vnode op for reading directories. - * - * The routine below assumes that the on-disk format of a directory - * is the same as that defined by . If the on-disk - * format changes, then it will be necessary to do a conversion - * from the on-disk format that read returns to the format defined - * by . */ /* * this is exactly what we do here - the problem is that the conversion -- 1.7.3.5 --liOOAslEiF7prFVr--