Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 7 Mar 2001 13:37:57 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 7 Mar 2001 13:37:48 -0500 Received: from neon-gw.transmeta.com ([209.10.217.66]:18439 "EHLO neon-gw.transmeta.com") by vger.kernel.org with ESMTP id ; Wed, 7 Mar 2001 13:37:33 -0500 Date: Wed, 7 Mar 2001 10:36:38 -0800 (PST) From: Linus Torvalds To: Jeremy Hansen cc: Mike Black , Andre Hedrick , Douglas Gilbert , linux-kernel@vger.kernel.org Subject: Re: scsi vs ide performance on fsync's In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 7 Mar 2001, Jeremy Hansen wrote: > > So in the meantime as this gets worked out on a lower level, we've decided > to take the fsync() out of berkeley db for mysql transaction logs and > mount the filesystem -o sync. > > Can anyone perhaps tell me why this may be a bad idea? Two reasons: - it doesn't help. The disk will _still_ do write buffering. It's the DISK, not the OS. It doesn't matter what you do. - your performance will suck. Use fsync(). That's what it's there for. Tell people who don't have an UPS to disable write caching. If they have one (of the many, apparently) IDE disks that refuse to disable it, tell them to either get an UPS, or to switch to another disk. Linus - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/