From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: MIME-Version: 1.0 References: <20180904075347.GH11854@BitWizard.nl> In-Reply-To: <20180904075347.GH11854@BitWizard.nl> From: =?UTF-8?B?54Sm5pmT5Yas?= Date: Tue, 4 Sep 2018 16:58:59 +0800 Message-ID: Subject: Re: POSIX violation by writeback error To: R.E.Wolff@bitwizard.nl Cc: jlayton@redhat.com, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: On Tue, Sep 4, 2018 at 3:53 PM Rogier Wolff wrote: ... > > > > Jlayton's patch is simple but wonderful idea towards correct error > > reporting. It seems one crucial thing is still here to be fixed. Does > > anyone have some idea? > > > > The crucial thing may be that a read() after a successful > > open()-write()-close() may return old data. > > > > That may happen where an async writeback error occurs after close() > > and the inode/mapping get evicted before read(). > > Suppose I have 1Gb of RAM. Suppose I open a file, write 0.5Gb to it > and then close it. Then I repeat this 9 times. > > Now, when writing those files to storage fails, there is 5Gb of data > to remember and only 1Gb of RAM. > > I can choose any part of that 5Gb and try to read it. > > Please make a suggestion about where we should store that data? That is certainly not possible to be done. But at least, shall we report error on read()? Silently returning wrong data may cause further damage, such as removing wrong files since it was marked as garbage in the old file. As I can see, that is all about error reporting. As for suggestion, maybe the error flag of inode/mapping, or the entire inode should not be evicted if there was an error. That hopefully won't take much memory. On extreme conditions, where too much error inode requires staying in memory, maybe we should panic rather then spread the error. > > In the easy case, where the data easily fits in RAM, you COULD write a > solution. But when the hardware fails, the SYSTEM will not be able to > follow the posix rules. Nope, we are able to follow the rules. The above is one way that follows the POSIX rules. > > Roger. > > -- > ** R.E.Wolff@BitWizard.nl ** http://www.BitWizard.nl/ ** +31-15-2600998 ** > ** Delftechpark 26 2628 XH Delft, The Netherlands. KVK: 27239233 ** > *-- BitWizard writes Linux device drivers for any device you may have! --* > The plan was simple, like my brother-in-law Phil. But unlike > Phil, this plan just might work.