From owner-freebsd-fs@FreeBSD.ORG Thu Dec 4 17:06:49 2008 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D91B51065673 for ; Thu, 4 Dec 2008 17:06:49 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from mail-gx0-f19.google.com (mail-gx0-f19.google.com [209.85.217.19]) by mx1.freebsd.org (Postfix) with ESMTP id 76B148FC13 for ; Thu, 4 Dec 2008 17:06:49 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by gxk12 with SMTP id 12so3019100gxk.19 for ; Thu, 04 Dec 2008 09:06:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=Li2Y+DxJbqcg0TZ82JW5/oGyyFyprpt9aKKztSAm7IM=; b=K5UDgJeNf6OTehVoKlKgwT7Abg/PBDejDEGiqubwWZlzs7hYDL89ldxZRpQLzyf5l0 D9CiNPg9JU6qFE/ZHsJoNJcSQcdIJALJybaIv489fxQtsrdU8TADxl77Q733aFWqYFsU 2QTI7a+UFo4BvDZ1KlHOo2tFI/sRF8QDNUigI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references; b=mEjMXYfctV4p0WRG0Rxn9aD6tr2B46tqf9N9ZjCrpwqi94cJnSyAk6TlcWPhZOu0Tt 2nPtzOlmsvP+1EGyYQ6DBh3mIvAtdSApPEC88zkIPMnRn8at1slPKVFqkI2dHwb89onw jQwDHQEtkvt6Crb5YxSsa5/kI40y88Crq5c3o= Received: by 10.151.103.11 with SMTP id f11mr10696708ybm.32.1228410164206; Thu, 04 Dec 2008 09:02:44 -0800 (PST) Received: by 10.150.123.1 with HTTP; Thu, 4 Dec 2008 09:02:44 -0800 (PST) Message-ID: <8cb6106e0812040902g69ec2f84t814c2f2b5cdb33f6@mail.gmail.com> Date: Thu, 4 Dec 2008 12:02:44 -0500 From: "Josh Carroll" To: "Gonzalo Nemmi" In-Reply-To: <200812041747.09040.gnemmi@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <8cb6106e0811241129o642dcf28re4ae177c8ccbaa25@mail.gmail.com> <20081125150342.GL2042@deviant.kiev.zoral.com.ua> <8cb6106e0812031453j6dc2f2f4i374145823c084eaa@mail.gmail.com> <200812041747.09040.gnemmi@gmail.com> Cc: freebsd-fs@freebsd.org, freebsd-stable@freebsd.org Subject: Re: ext2 inode size patch - RE: PR kern/124621 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2008 17:06:49 -0000 > Could you please point me to your patch and an explanation on how to apply it > and test it? You can grab the patch here: http://pflog.net/~floyd/ext2fs.diff To apply it: cd /usr/src/sys/gnu/fs patch < /path/to/ext2fs.diff cd /usr/src/sys/modules/ext2fs make clean && make kldload ./ext2fs.ko Then umount and mount again your ext2 file systems. This should apply cleanly to RELENG_7_0, RELENG_7_1 and RELENG_7 source. I'm not sure if it'll apply cleanly to -CURRENT or not (I can provide an updated patch if you need it). Note: if you have ext2fs built into your kernel, you'll have to build and install your kernel as usual after patching, instead of building the module separately. Also, if you already have ext2fs loaded, you'll need to kldunload it first of course. If you want to update the ext2fs.ko in your installed kernel in /boot/kernel, after a make in .../modules/ext2fs, you can "make install". Thanks, Josh