From: Al Viro <viro@zeniv.linux.org.uk>
To: Jeff Layton <jlayton@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
Ilya Dryomov <idryomov@gmail.com>,
ceph-devel@vger.kernel.org,
Linux List Kernel Mailing <linux-kernel@vger.kernel.org>,
linux-cifs <linux-cifs@vger.kernel.org>
Subject: Re: [GIT PULL] Ceph fixes for 5.1-rc7
Date: Sun, 28 Apr 2019 15:48:50 +0100 [thread overview]
Message-ID: <20190428144850.GA23075@ZenIV.linux.org.uk> (raw)
In-Reply-To: <7bac7ba5655a8e783a70f915853a0846e7ff143b.camel@kernel.org>
On Sun, Apr 28, 2019 at 09:27:20AM -0400, Jeff Layton wrote:
> I don't see a problem doing what you suggest. An offset + fixed length
> buffer would be fine there.
>
> Is there a real benefit to using __getname though? It sucks when we have
> to reallocate but I doubt that it happens with any frequency. Most of
> these paths will end up being much shorter than PATH_MAX and that slims
> down the memory footprint a bit.
AFAICS, they are all short-lived; don't forget that slabs have cache,
so in that situation allocations are cheap.
> Also, FWIW -- this code was originally copied from cifs'
> build_path_from_dentry(). Should we aim to put something in common
> infrastructure that both can call?
>
> There are some significant logic differences in the two functions though
> so we might need some sort of callback function or something to know
> when to stop walking.
Not if you want it fast... Indirect calls are not cheap; the cost of
those callbacks would be considerable. Besides, you want more than
"where do I stop", right? It's also "what output do I use for this
dentry", both for you and for cifs (there it's "which separator to use",
in ceph it's "these we want represented as //")...
Can it be called on detached subtree, during e.g. open_by_handle()?
There it can get really fishy; you end up with base being at the
random point on the way towards root. How does that work, and if
it *does* work, why do we need the whole path in the first place?
BTW, for cifs there's no need to play with ->d_lock as we go. For
ceph, the only need comes from looking at d_inode(), and I wonder if
it would be better to duplicate that information ("is that a
snapdir/nosnap") into dentry iself - would certainly be cheaper.
OTOH, we are getting short on spare bits in ->d_flags...
next prev parent reply other threads:[~2019-04-28 14:48 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20190425174739.27604-1-idryomov@gmail.com>
[not found] ` <CAHk-=wgPBx9xPWY7obK60=RTnOF3Ln0j9XkhYbekML=Fi3bFXg@mail.gmail.com>
[not found] ` <342ef35feb1110197108068d10e518742823a210.camel@kernel.org>
[not found] ` <20190425200941.GW2217@ZenIV.linux.org.uk>
[not found] ` <86674e79e9f24e81feda75bc3c0dd4215604ffa5.camel@kernel.org>
[not found] ` <20190426165055.GY2217@ZenIV.linux.org.uk>
[not found] ` <b175faae4bb98d3379a8642fe5f4e00587c3a734.camel@kernel.org>
[not found] ` <20190428043801.GE2217@ZenIV.linux.org.uk>
2019-04-28 13:27 ` [GIT PULL] Ceph fixes for 5.1-rc7 Jeff Layton
2019-04-28 14:48 ` Al Viro [this message]
2019-04-28 15:47 ` Jeff Layton
2019-04-28 15:52 ` Al Viro
2019-04-28 16:18 ` Jeff Layton
2019-04-28 16:40 ` Al Viro
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190428144850.GA23075@ZenIV.linux.org.uk \
--to=viro@zeniv.linux.org.uk \
--cc=ceph-devel@vger.kernel.org \
--cc=idryomov@gmail.com \
--cc=jlayton@kernel.org \
--cc=linux-cifs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox