Linux NFS development
 help / color / mirror / Atom feed
* Question about O_APPEND | O_DIRECT
@ 2023-11-23 18:14 Tao Lyu
  2023-11-25 23:54 ` Trond Myklebust
  0 siblings, 1 reply; 15+ messages in thread
From: Tao Lyu @ 2023-11-23 18:14 UTC (permalink / raw)
  To: linux-nfs@vger.kernel.org

Hi,

Sorry to bother you here.

I'm using NFS and realize it doesn't support opening a file with "O_DIRECT | O_APPEND".

After checking the source code, 
I found it has one function that checks explicitly whether there is a combination flag of "O_APPEND | O_DIRECT".
If so, it will return invalid arguments.

int nfs_check_flags(int flags)
{
    if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
        return -EINVAL;

    return 0;
}

But I don't understand why NFS doesn't support this flag combination.
I'd appreciate it if someone could explain this to me.

Thanks in advance.

Best,
Tao



^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-23 18:14 Question about O_APPEND | O_DIRECT Tao Lyu
@ 2023-11-25 23:54 ` Trond Myklebust
  2023-11-27 15:28   ` Tao Lyu
  0 siblings, 1 reply; 15+ messages in thread
From: Trond Myklebust @ 2023-11-25 23:54 UTC (permalink / raw)
  To: linux-nfs@vger.kernel.org, tao.lyu@epfl.ch

On Thu, 2023-11-23 at 18:14 +0000, Tao Lyu wrote:
> Hi,
> 
> Sorry to bother you here.
> 
> I'm using NFS and realize it doesn't support opening a file with
> "O_DIRECT | O_APPEND".
> 
> After checking the source code, 
> I found it has one function that checks explicitly whether there is a
> combination flag of "O_APPEND | O_DIRECT".
> If so, it will return invalid arguments.
> 
> int nfs_check_flags(int flags)
> {
>     if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
>         return -EINVAL;
> 
>     return 0;
> }
> 
> But I don't understand why NFS doesn't support this flag combination.
> I'd appreciate it if someone could explain this to me.


Why do you need O_APPEND|O_DIRECT?

In order to implement O_APPEND|O_DIRECT, we would need to add an APPEND
operation, which does not exist in the NFS protocol. The WRITE
operation does not suffice, because it requires you to know the offset
at which you will be writing the data.

-- 
Trond Myklebust
Linux NFS client maintainer, Hammerspace
trond.myklebust@hammerspace.com



^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-25 23:54 ` Trond Myklebust
@ 2023-11-27 15:28   ` Tao Lyu
  2023-11-27 16:36     ` Christoph Hellwig
  0 siblings, 1 reply; 15+ messages in thread
From: Tao Lyu @ 2023-11-27 15:28 UTC (permalink / raw)
  To: Trond Myklebust, linux-nfs@vger.kernel.org

>> Hi,
>> 
>> Sorry to bother you here.
>> 
>> I'm using NFS and realize it doesn't support opening a file with
>> "O_DIRECT | O_APPEND".
>> 
>> After checking the source code, 
>> I found it has one function that checks explicitly whether there is a
>> combination flag of "O_APPEND | O_DIRECT".
>> If so, it will return invalid arguments.
>> 
>> int nfs_check_flags(int flags)
>> {
>>     if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
>>         return -EINVAL;
>> 
>>     return 0;
>> }
>> 
>> But I don't understand why NFS doesn't support this flag combination.
>> I'd appreciate it if someone could explain this to me.
>
>
> Why do you need O_APPEND|O_DIRECT?
>
> In order to implement O_APPEND|O_DIRECT, we would need to add an APPEND
> operation, which does not exist in the NFS protocol. The WRITE
> operation does not suffice, because it requires you to know the offset
> at which you will be writing the data.

Hi Trond,

Thank you so much for your reply.

O_APPEND | O_DIRECT can be used to bypass the client cache for multiple threads writing data without caring of the orders (e.g., logs).

Yes, to support O_APPEND | O_DIRECT, NFS must first support APPEND.
But the key point is that looks like NFS has supported O_APPEND already.
I can successfully open a file with "O_RDWR|O_APPEND".

My confusion is why NFS supports O_RDWR and O_APPEND individually but does not support this combination.

Thank you in advance for helping me.

Best,
Tao

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 15:28   ` Tao Lyu
@ 2023-11-27 16:36     ` Christoph Hellwig
  2023-11-27 16:41       ` Tao Lyu
                         ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: Christoph Hellwig @ 2023-11-27 16:36 UTC (permalink / raw)
  To: Tao Lyu; +Cc: Trond Myklebust, linux-nfs@vger.kernel.org

On Mon, Nov 27, 2023 at 03:28:16PM +0000, Tao Lyu wrote:
> 
> O_APPEND | O_DIRECT can be used to bypass the client cache for multiple threads writing data without caring of the orders (e.g., logs).
> 
> Yes, to support O_APPEND | O_DIRECT, NFS must first support APPEND.
> But the key point is that looks like NFS has supported O_APPEND already.
> I can successfully open a file with "O_RDWR|O_APPEND".
> 
> My confusion is why NFS supports O_RDWR and O_APPEND individually but does not support this combination.

Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?

Btw, I think an APPEND operation in NFS would be a very good idea, and
I'd love to work with interested parties in the IETF on it.  Not that
we (Damien to be specific) plan to add support to Linux to also report
the actual offset an O_APPEND write wrote to through io_uring as we
have varios use cases for out of place write data stores for that.
It would be great to also support that programming model over NFS.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:36     ` Christoph Hellwig
@ 2023-11-27 16:41       ` Tao Lyu
  2023-11-27 16:50       ` Chuck Lever III
  2023-11-27 17:08       ` Trond Myklebust
  2 siblings, 0 replies; 15+ messages in thread
From: Tao Lyu @ 2023-11-27 16:41 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Trond Myklebust, linux-nfs@vger.kernel.org

> On Mon, Nov 27, 2023 at 03:28:16PM +0000, Tao Lyu wrote:
>> 
>> O_APPEND | O_DIRECT can be used to bypass the client cache for multiple threads writing data without caring of the orders (e.g., logs).
>> 
>> Yes, to support O_APPEND | O_DIRECT, NFS must first support APPEND.
>> But the key point is that looks like NFS has supported O_APPEND already.
>> I can successfully open a file with "O_RDWR|O_APPEND".
>> 
>> My confusion is why NFS supports O_RDWR and O_APPEND individually but does not support this combination.

> Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?

Hi Christoph, 

Yes, it just doesn't work with O_DIRECT.

> Btw, I think an APPEND operation in NFS would be a very good idea, and
> I'd love to work with interested parties in the IETF on it.  Not that
> we (Damien to be specific) plan to add support to Linux to also report
> the actual offset an O_APPEND write wrote to through io_uring as we
> have varios use cases for out of place write data stores for that.
> It would be great to also support that programming model over NFS.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:36     ` Christoph Hellwig
  2023-11-27 16:41       ` Tao Lyu
@ 2023-11-27 16:50       ` Chuck Lever III
  2023-11-27 16:55         ` Christoph Hellwig
  2023-11-28  1:50         ` Rick Macklem
  2023-11-27 17:08       ` Trond Myklebust
  2 siblings, 2 replies; 15+ messages in thread
From: Chuck Lever III @ 2023-11-27 16:50 UTC (permalink / raw)
  To: Christoph Hellwig, Tao Lyu; +Cc: Trond Myklebust, Linux NFS Mailing List


> On Nov 27, 2023, at 11:36 AM, Christoph Hellwig <hch@infradead.org> wrote:
> 
> On Mon, Nov 27, 2023 at 03:28:16PM +0000, Tao Lyu wrote:
>> 
>> O_APPEND | O_DIRECT can be used to bypass the client cache for multiple threads writing data without caring of the orders (e.g., logs).
>> 
>> Yes, to support O_APPEND | O_DIRECT, NFS must first support APPEND.
>> But the key point is that looks like NFS has supported O_APPEND already.
>> I can successfully open a file with "O_RDWR|O_APPEND".
>> 
>> My confusion is why NFS supports O_RDWR and O_APPEND individually but does not support this combination.

O_DIRECT is supposed to not depend on any cached information,
including the file size, which the client needs to know to
form an NFS WRITE with the correct offset to ensure it is an
appending write.

File sizes are managed on the server, so the server needs to
know that the client is requesting an appending write so it
knows where to put the payload.


> Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?
> 
> Btw, I think an APPEND operation in NFS would be a very good idea, and
> I'd love to work with interested parties in the IETF on it.

You can write and submit a personal draft that describes it; it
wouldn't need to be more than a few pages. The hard part of that
would be accumulating use case descriptions.

I think you could create a proof of concept by including a VERIFY
operation in front of the WRITE to ensure the WRITE occurs only
if the offset argument in the WRITE agrees with the file's size
on the server. If the VERIFY fails, the client grabs the updated
file size and tries again.


> Not that
> we (Damien to be specific) plan to add support to Linux to also report
> the actual offset an O_APPEND write wrote to through io_uring as we
> have varios use cases for out of place write data stores for that.
> It would be great to also support that programming model over NFS.

--
Chuck Lever



^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:50       ` Chuck Lever III
@ 2023-11-27 16:55         ` Christoph Hellwig
  2023-11-27 16:59           ` Chuck Lever III
  2023-11-28  1:50         ` Rick Macklem
  1 sibling, 1 reply; 15+ messages in thread
From: Christoph Hellwig @ 2023-11-27 16:55 UTC (permalink / raw)
  To: Chuck Lever III
  Cc: Christoph Hellwig, Tao Lyu, Trond Myklebust,
	Linux NFS Mailing List

On Mon, Nov 27, 2023 at 04:50:56PM +0000, Chuck Lever III wrote:
> > Btw, I think an APPEND operation in NFS would be a very good idea, and
> > I'd love to work with interested parties in the IETF on it.
> 
> You can write and submit a personal draft that describes it; it
> wouldn't need to be more than a few pages. The hard part of that
> would be accumulating use case descriptions.
> 
> I think you could create a proof of concept by including a VERIFY
> operation in front of the WRITE to ensure the WRITE occurs only
> if the offset argument in the WRITE agrees with the file's size
> on the server. If the VERIFY fails, the client grabs the updated
> file size and tries again.

That seems like exactly the wrong idea around.  The idea behind append
based models for write out of place storage is that you do not care
where it is written - you leave it to the server or storage device to
place it at the current append point.  You just need to know where it
got placed after the fact for some of them (not for simply logs,
though).


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:55         ` Christoph Hellwig
@ 2023-11-27 16:59           ` Chuck Lever III
  2023-11-28 13:06             ` Christoph Hellwig
  0 siblings, 1 reply; 15+ messages in thread
From: Chuck Lever III @ 2023-11-27 16:59 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Tao Lyu, Trond Myklebust, Linux NFS Mailing List



> On Nov 27, 2023, at 11:55 AM, Christoph Hellwig <hch@infradead.org> wrote:
> 
> On Mon, Nov 27, 2023 at 04:50:56PM +0000, Chuck Lever III wrote:
>>> Btw, I think an APPEND operation in NFS would be a very good idea, and
>>> I'd love to work with interested parties in the IETF on it.
>> 
>> You can write and submit a personal draft that describes it; it
>> wouldn't need to be more than a few pages. The hard part of that
>> would be accumulating use case descriptions.
>> 
>> I think you could create a proof of concept by including a VERIFY
>> operation in front of the WRITE to ensure the WRITE occurs only
>> if the offset argument in the WRITE agrees with the file's size
>> on the server. If the VERIFY fails, the client grabs the updated
>> file size and tries again.
> 
> That seems like exactly the wrong idea around.  The idea behind append
> based models for write out of place storage is that you do not care
> where it is written - you leave it to the server or storage device to
> place it at the current append point.  You just need to know where it
> got placed after the fact for some of them (not for simply logs,
> though).

I said "proof of concept" -- obviously you don't want this kind of
racy arrangement as a long-term solution, you just want something
that works with current server implementations for experimentation.

And, if the above WRITE succeeds, the client would know exactly
where the server placed the payload in the file.


--
Chuck Lever



^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:36     ` Christoph Hellwig
  2023-11-27 16:41       ` Tao Lyu
  2023-11-27 16:50       ` Chuck Lever III
@ 2023-11-27 17:08       ` Trond Myklebust
  2023-11-27 17:19         ` hch
  2 siblings, 1 reply; 15+ messages in thread
From: Trond Myklebust @ 2023-11-27 17:08 UTC (permalink / raw)
  To: hch@infradead.org, tao.lyu@epfl.ch; +Cc: linux-nfs@vger.kernel.org

On Mon, 2023-11-27 at 08:36 -0800, Christoph Hellwig wrote:
> On Mon, Nov 27, 2023 at 03:28:16PM +0000, Tao Lyu wrote:
> > 
> > O_APPEND | O_DIRECT can be used to bypass the client cache for
> > multiple threads writing data without caring of the orders (e.g.,
> > logs).
> > 
> > Yes, to support O_APPEND | O_DIRECT, NFS must first support APPEND.
> > But the key point is that looks like NFS has supported O_APPEND
> > already.
> > I can successfully open a file with "O_RDWR|O_APPEND".
> > 
> > My confusion is why NFS supports O_RDWR and O_APPEND individually
> > but does not support this combination.
> 
> Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?
> 
> Btw, I think an APPEND operation in NFS would be a very good idea,
> and
> I'd love to work with interested parties in the IETF on it.  Not that
> we (Damien to be specific) plan to add support to Linux to also
> report
> the actual offset an O_APPEND write wrote to through io_uring as we
> have varios use cases for out of place write data stores for that.
> It would be great to also support that programming model over NFS.
> 

Note that APPEND would only really work with O_DIRECT, since it is
anathema to cached I/O to not be able to control the placement of the
data. However it is useful for the case where you want to write logs.

In addition, the model will always break down if someone decides they
want to write a log entry of size > wsize. Once you have to split up
the data, you (obviously) lose the atomicity you need in order to write
a contiguous record.

-- 
Trond Myklebust
Linux NFS client maintainer, Hammerspace
trond.myklebust@hammerspace.com



^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 17:08       ` Trond Myklebust
@ 2023-11-27 17:19         ` hch
  2023-11-27 17:23           ` Tao Lyu
  0 siblings, 1 reply; 15+ messages in thread
From: hch @ 2023-11-27 17:19 UTC (permalink / raw)
  To: Trond Myklebust
  Cc: hch@infradead.org, tao.lyu@epfl.ch, linux-nfs@vger.kernel.org

On Mon, Nov 27, 2023 at 05:08:22PM +0000, Trond Myklebust wrote:
> Note that APPEND would only really work with O_DIRECT, since it is
> anathema to cached I/O to not be able to control the placement of the
> data.

Yes.

> In addition, the model will always break down if someone decides they
> want to write a log entry of size > wsize. Once you have to split up
> the data, you (obviously) lose the atomicity you need in order to write
> a contiguous record.

Yes.  Note that there is work going on to define atomic I/O limits
on the various Linux lists currently.  Although in the block layer
we also have a separate limit for the maximum append size already.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 17:19         ` hch
@ 2023-11-27 17:23           ` Tao Lyu
  0 siblings, 0 replies; 15+ messages in thread
From: Tao Lyu @ 2023-11-27 17:23 UTC (permalink / raw)
  To: hch@infradead.org, Trond Myklebust, chuck.lever@oracle.com
  Cc: linux-nfs@vger.kernel.org

Hi Trond, Christoph, and Chuck,

I understand it.
Thanks a lot for your explanation.

Best,
Tao

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:50       ` Chuck Lever III
  2023-11-27 16:55         ` Christoph Hellwig
@ 2023-11-28  1:50         ` Rick Macklem
  2023-11-28 13:09           ` Christoph Hellwig
  1 sibling, 1 reply; 15+ messages in thread
From: Rick Macklem @ 2023-11-28  1:50 UTC (permalink / raw)
  To: Chuck Lever III
  Cc: Christoph Hellwig, Tao Lyu, Trond Myklebust,
	Linux NFS Mailing List

On Mon, Nov 27, 2023 at 8:51 AM Chuck Lever III <chuck.lever@oracle.com> wrote:
>
>
> > On Nov 27, 2023, at 11:36 AM, Christoph Hellwig <hch@infradead.org> wrote:
> >
> > On Mon, Nov 27, 2023 at 03:28:16PM +0000, Tao Lyu wrote:
> >>
> >> O_APPEND | O_DIRECT can be used to bypass the client cache for multiple threads writing data without caring of the orders (e.g., logs).
> >>
> >> Yes, to support O_APPEND | O_DIRECT, NFS must first support APPEND.
> >> But the key point is that looks like NFS has supported O_APPEND already.
> >> I can successfully open a file with "O_RDWR|O_APPEND".
> >>
> >> My confusion is why NFS supports O_RDWR and O_APPEND individually but does not support this combination.
>
> O_DIRECT is supposed to not depend on any cached information,
> including the file size, which the client needs to know to
> form an NFS WRITE with the correct offset to ensure it is an
> appending write.
>
> File sizes are managed on the server, so the server needs to
> know that the client is requesting an appending write so it
> knows where to put the payload.
>
>
> > Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?
> >
> > Btw, I think an APPEND operation in NFS would be a very good idea, and
> > I'd love to work with interested parties in the IETF on it.
It is not easy to deal with w.r.t. RPC retries.
I suppose a NFSv4.2 extension that either requires (or strongly
recommends) persistent sessions might work?
(Persistent sessions should pretty well guarantee an RPC is not
redone on the server.)

>
> You can write and submit a personal draft that describes it; it
> wouldn't need to be more than a few pages. The hard part of that
> would be accumulating use case descriptions.
>
> I think you could create a proof of concept by including a VERIFY
> operation in front of the WRITE to ensure the WRITE occurs only
> if the offset argument in the WRITE agrees with the file's size
> on the server. If the VERIFY fails, the client grabs the updated
> file size and tries again.
This is what the FreeBSD NFSv4 client does.
Since compounds are not atomic, it is not guaranteed to work and
you might get a lot of "tries again" if multiple clients were doing the
appends on the same file concurrently. (The compound includes a
GETTTR size before the VERIFY, so trying again is pretty straightforward.)

rick

>
>
> > Not that
> > we (Damien to be specific) plan to add support to Linux to also report
> > the actual offset an O_APPEND write wrote to through io_uring as we
> > have varios use cases for out of place write data stores for that.
> > It would be great to also support that programming model over NFS.
>
> --
> Chuck Lever
>
>

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-27 16:59           ` Chuck Lever III
@ 2023-11-28 13:06             ` Christoph Hellwig
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Hellwig @ 2023-11-28 13:06 UTC (permalink / raw)
  To: Chuck Lever III
  Cc: Christoph Hellwig, Tao Lyu, Trond Myklebust,
	Linux NFS Mailing List

> I said "proof of concept" -- obviously you don't want this kind of
> racy arrangement as a long-term solution, you just want something
> that works with current server implementations for experimentation.
> 
> And, if the above WRITE succeeds, the client would know exactly
> where the server placed the payload in the file.

But I'm not sure how this proof of concept helps me to prove anything
except that this method sucks :)


^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-28  1:50         ` Rick Macklem
@ 2023-11-28 13:09           ` Christoph Hellwig
  2023-11-28 18:28             ` Trond Myklebust
  0 siblings, 1 reply; 15+ messages in thread
From: Christoph Hellwig @ 2023-11-28 13:09 UTC (permalink / raw)
  To: Rick Macklem
  Cc: Chuck Lever III, Christoph Hellwig, Tao Lyu, Trond Myklebust,
	Linux NFS Mailing List

On Mon, Nov 27, 2023 at 05:50:49PM -0800, Rick Macklem wrote:
> > > Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?
> > >
> > > Btw, I think an APPEND operation in NFS would be a very good idea, and
> > > I'd love to work with interested parties in the IETF on it.
> It is not easy to deal with w.r.t. RPC retries.

Indeed.

> I suppose a NFSv4.2 extension that either requires (or strongly
> recommends) persistent sessions might work?
> (Persistent sessions should pretty well guarantee an RPC is not
> redone on the server.)

I guess so.  That of course actually means we rely on a viable
implementation of persistent sessions.  The Linux server doesn't
support them, and I'm not sure which servers actually do.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Question about O_APPEND | O_DIRECT
  2023-11-28 13:09           ` Christoph Hellwig
@ 2023-11-28 18:28             ` Trond Myklebust
  0 siblings, 0 replies; 15+ messages in thread
From: Trond Myklebust @ 2023-11-28 18:28 UTC (permalink / raw)
  To: rick.macklem@gmail.com, hch@infradead.org
  Cc: linux-nfs@vger.kernel.org, tao.lyu@epfl.ch,
	chuck.lever@oracle.com

On Tue, 2023-11-28 at 05:09 -0800, Christoph Hellwig wrote:
> On Mon, Nov 27, 2023 at 05:50:49PM -0800, Rick Macklem wrote:
> > > > Well, it does support O_RDWR|O_APPEND, just not with O_DIRECT?
> > > > 
> > > > Btw, I think an APPEND operation in NFS would be a very good
> > > > idea, and
> > > > I'd love to work with interested parties in the IETF on it.
> > It is not easy to deal with w.r.t. RPC retries.
> 
> Indeed.
> 
> > I suppose a NFSv4.2 extension that either requires (or strongly
> > recommends) persistent sessions might work?
> > (Persistent sessions should pretty well guarantee an RPC is not
> > redone on the server.)
> 
> I guess so.  That of course actually means we rely on a viable
> implementation of persistent sessions.  The Linux server doesn't
> support them, and I'm not sure which servers actually do.

Nobody is going to implement the overhead of persistent sessions just
in order to add support for APPEND.
The only thing that will be achieved by tying the functionality to
persistent sessions is to ensure that people will completely ignore the
spec.


-- 
Trond Myklebust
Linux NFS client maintainer, Hammerspace
trond.myklebust@hammerspace.com



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2023-11-28 18:28 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-23 18:14 Question about O_APPEND | O_DIRECT Tao Lyu
2023-11-25 23:54 ` Trond Myklebust
2023-11-27 15:28   ` Tao Lyu
2023-11-27 16:36     ` Christoph Hellwig
2023-11-27 16:41       ` Tao Lyu
2023-11-27 16:50       ` Chuck Lever III
2023-11-27 16:55         ` Christoph Hellwig
2023-11-27 16:59           ` Chuck Lever III
2023-11-28 13:06             ` Christoph Hellwig
2023-11-28  1:50         ` Rick Macklem
2023-11-28 13:09           ` Christoph Hellwig
2023-11-28 18:28             ` Trond Myklebust
2023-11-27 17:08       ` Trond Myklebust
2023-11-27 17:19         ` hch
2023-11-27 17:23           ` Tao Lyu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox