From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1BD55138010 for ; Thu, 23 Aug 2012 10:18:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFF26E04EB; Thu, 23 Aug 2012 10:17:46 +0000 (UTC) Received: from mx.virtyou.com (mx.virtyou.com [178.33.32.244]) by pigeon.gentoo.org (Postfix) with ESMTP id AF3CFE0733 for ; Thu, 23 Aug 2012 10:15:23 +0000 (UTC) Received: from [127.0.0.1] (p578b7bed.dip0.t-ipconnect.de [87.139.123.237]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx.virtyou.com (Postfix) with ESMTPSA id BB2F0DC04E for ; Thu, 23 Aug 2012 12:15:22 +0200 (CEST) Message-ID: <503602B8.3050507@wonkology.org> Date: Thu, 23 Aug 2012 12:15:20 +0200 From: Alex Schuster Organization: Wonkology User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] SSD performance tweaking References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Archives-Salt: 6c0612d6-7283-4624-a914-63990751591f X-Archives-Hash: 01dbacc014f110c4da67c9a3897a0c17 Mark Knecht writes: > I'm currently just using a single large partition & ext3. I didn't > do anything special in fdisk so the partition might not be aligned as > best it could be. I don't know. See if the partition's starting block is 63 as it used to be in the past. In this case the alignment is wrong, as SSDs have 4K (or even 8K) sectors consisting of 8 (or 16) 512 byte blocks. The starting block should be divisible by 8 (or 16) because of the large sector size, if not, a file system sector spans over two drive sectors, and both heed to be accessed when reading a file system sector. The size of an erasable block of SSDs is even larger, usually 512K, it would be best to align to that, too. A partition offset of 512K or 1M would avoid this. Wonko