Re: [PATCH RFC 1/3] fs: introduce helper d_path_fast()
From: Linus Torvalds
Date: Sat May 08 2021 - 18:56:07 EST
On Sat, May 8, 2021 at 3:42 PM Linus Torvalds
<torvalds@xxxxxxxxxxxxxxxxxxxx> wrote:
>
> But your READ_ONCE() is definitely the right thing to do (whether we
> do your re-org or not, and whether we do this "prepend_buffer" thing
> or not).
Oh, and looking at it some more, I think it would probably be a good
thing to make __dentry_path() take a
struct prepend_buffer *orig
argument, the same way prepend_path() does. Also, like prepend_path(),
the terminating NUL should probably be done by the caller.
Doing those two changes would simplify the hackery we now have in
"dentry_path()" due to the "//deleted" games. The whole "restore '/'
that was overwritten by the NUL added by __dentry_path() is
unbelievably ugly.
Linus