Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752150AbbHTUtj (ORCPT ); Thu, 20 Aug 2015 16:49:39 -0400 Received: from mail-pd0-f178.google.com ([209.85.192.178]:34827 "EHLO mail-pd0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751284AbbHTUth (ORCPT ); Thu, 20 Aug 2015 16:49:37 -0400 Date: Thu, 20 Aug 2015 13:49:33 -0700 From: Brian Norris To: Richard Weinberger Cc: dedekind1@gmail.com, Dongsheng Yang , linux-mtd@lists.infradead.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/2] ubifs: Allow O_DIRECT Message-ID: <20150820204933.GG74600@google.com> References: <1440016553-26481-1-git-send-email-richard@nod.at> <1440016553-26481-2-git-send-email-richard@nod.at> <55D542C5.6040500@cn.fujitsu.com> <1440070300.31419.202.camel@gmail.com> <55D5BC92.8050903@nod.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55D5BC92.8050903@nod.at> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2081 Lines: 52 Pardon the innocent bystander's comment, but: On Thu, Aug 20, 2015 at 01:40:02PM +0200, Richard Weinberger wrote: > Am 20.08.2015 um 13:31 schrieb Artem Bityutskiy: > > On Thu, 2015-08-20 at 11:00 +0800, Dongsheng Yang wrote: > >> On 08/20/2015 04:35 AM, Richard Weinberger wrote: > >>> Currently UBIFS does not support direct IO, but some applications > >>> blindly use the O_DIRECT flag. > >>> Instead of failing upon open() we can do better and fall back > >>> to buffered IO. > >> > >> Hmmmm, to be honest, I am not sure we have to do it as Dave > >> suggested. I think that's just a work-around for current fstests. > >> > >> IMHO, perform a buffered IO when user request direct IO without > >> any warning sounds not a good idea. Maybe adding a warning would > >> make it better. > >> > >> I think we need more discussion about AIO&DIO in ubifs, and actually > >> I have a plan for it. But I have not listed the all cons and pros of > >> it so far. > >> > >> Artem, what's your opinion? > > > > Yes, this is my worry too. > > > > Basically, we need to see what is the "common practice" here, and > > follow it. This requires a small research. What would be the most > > popular Linux FS which does not support direct I/O? Can we check what > > it does? > > All popular filesystems seem to support direct IO. > That's the problem, application do not expect O_DIRECT to fail. Why can't we just suggest fixing the applications? The man pages for O_DIRECT clearly document the EINVAL return code: EINVAL The filesystem does not support the O_DIRECT flag. See NOTES for more information. and under NOTES: O_DIRECT support was added under Linux in kernel version 2.4.10. Older Linux kernels simply ignore this flag. Some filesystems may not implement the flag and open() will fail with EINVAL if it is used. Brian -- 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/