Linux-Fsdevel Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Chengguang Xu <cgxu519@mykernel.net>
To: miklos@szeredi.hu, viro@zeniv.linux.org.uk, amir73il@gmail.com
Cc: linux-fsdevel@vger.kernel.org, linux-unionfs@vger.kernel.org,
Chengguang Xu <cgxu519@mykernel.net>
Subject: [RFC PATCH v3 1/9] fs/dcache: Introduce a new lookup flag LOOKUP_DONTCACHE_NEGATIVE
Date: Fri, 15 May 2020 15:20:39 +0800 [thread overview]
Message-ID: <20200515072047.31454-2-cgxu519@mykernel.net> (raw)
In-Reply-To: <20200515072047.31454-1-cgxu519@mykernel.net>
Introduce a new lookup flag LOOKUP_DONTCACHE_NEGATIVE to skip
caching negative dentry in lookup.
Signed-off-by: Chengguang Xu <cgxu519@mykernel.net>
---
fs/namei.c | 14 ++++++++++----
include/linux/namei.h | 9 +++++++--
2 files changed, 17 insertions(+), 6 deletions(-)
diff --git a/fs/namei.c b/fs/namei.c
index a320371899cf..a258f0a1d5d6 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1532,6 +1532,9 @@ static struct dentry *__lookup_slow(const struct qstr *name,
if (unlikely(old)) {
dput(dentry);
dentry = old;
+ } else if ((flags & LOOKUP_DONTCACHE_NEGATIVE) &&
+ d_is_negative(dentry)) {
+ d_drop(dentry);
}
}
return dentry;
@@ -2554,6 +2557,7 @@ EXPORT_SYMBOL(lookup_one_len);
* @name: pathname component to lookup
* @base: base directory to lookup from
* @len: maximum length @len should be interpreted to
+ * @flags: lookup flags
*
* Note that this routine is purely a helper for filesystem usage and should
* not be called by generic code.
@@ -2562,7 +2566,8 @@ EXPORT_SYMBOL(lookup_one_len);
* i_mutex held, and will take the i_mutex itself if necessary.
*/
struct dentry *lookup_one_len_unlocked(const char *name,
- struct dentry *base, int len)
+ struct dentry *base, int len,
+ unsigned int flags)
{
struct qstr this;
int err;
@@ -2574,7 +2579,7 @@ struct dentry *lookup_one_len_unlocked(const char *name,
ret = lookup_dcache(&this, base, 0);
if (!ret)
- ret = lookup_slow(&this, base, 0);
+ ret = lookup_slow(&this, base, flags);
return ret;
}
EXPORT_SYMBOL(lookup_one_len_unlocked);
@@ -2588,9 +2593,10 @@ EXPORT_SYMBOL(lookup_one_len_unlocked);
* this one avoids such problems.
*/
struct dentry *lookup_positive_unlocked(const char *name,
- struct dentry *base, int len)
+ struct dentry *base, int len,
+ unsigned int flags)
{
- struct dentry *ret = lookup_one_len_unlocked(name, base, len);
+ struct dentry *ret = lookup_one_len_unlocked(name, base, len, flags);
if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) {
dput(ret);
ret = ERR_PTR(-ENOENT);
diff --git a/include/linux/namei.h b/include/linux/namei.h
index a4bb992623c4..1d43fc481e47 100644
--- a/include/linux/namei.h
+++ b/include/linux/namei.h
@@ -49,6 +49,9 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT};
/* LOOKUP_* flags which do scope-related checks based on the dirfd. */
#define LOOKUP_IS_SCOPED (LOOKUP_BENEATH | LOOKUP_IN_ROOT)
+/* Hint: don't cache negative. */
+#define LOOKUP_DONTCACHE_NEGATIVE 0x200000
+
extern int path_pts(struct path *path);
extern int user_path_at_empty(int, const char __user *, unsigned, struct path *, int *empty);
@@ -68,8 +71,10 @@ extern struct dentry *kern_path_locked(const char *, struct path *);
extern struct dentry *try_lookup_one_len(const char *, struct dentry *, int);
extern struct dentry *lookup_one_len(const char *, struct dentry *, int);
-extern struct dentry *lookup_one_len_unlocked(const char *, struct dentry *, int);
-extern struct dentry *lookup_positive_unlocked(const char *, struct dentry *, int);
+extern struct dentry *lookup_one_len_unlocked(const char *name,
+ struct dentry *base, int len, unsigned int flags);
+extern struct dentry *lookup_positive_unlocked(const char *name,
+ struct dentry *base, int len, unsigned int flags);
extern int follow_down_one(struct path *);
extern int follow_down(struct path *);
--
2.20.1
next prev parent reply other threads:[~2020-05-15 7:37 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-15 7:20 [RFC PATCH v3 0/9] Suppress negative dentry Chengguang Xu
2020-05-15 7:20 ` Chengguang Xu [this message]
2020-05-15 7:20 ` [RFC PATCH v3 2/9] ovl: Suppress negative dentry in lookup Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 3/9] cifs: Adjust argument for lookup_positive_unlocked() Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 4/9] debugfs: " Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 5/9] ecryptfs: Adjust argument for lookup_one_len_unlocked() Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 6/9] exportfs: " Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 7/9] kernfs: Adjust argument for lookup_positive_unlocked() Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 8/9] nfsd: " Chengguang Xu
2020-05-15 7:20 ` [RFC PATCH v3 9/9] quota: " Chengguang Xu
2020-05-15 7:30 ` [RFC PATCH v3 0/9] Suppress negative dentry Amir Goldstein
2020-05-15 8:25 ` Chengguang Xu
2020-05-15 8:42 ` Miklos Szeredi
2020-05-18 0:53 ` Ian Kent
2020-05-18 5:27 ` Amir Goldstein
2020-05-18 7:52 ` Miklos Szeredi
2020-05-18 8:51 ` Amir Goldstein
2020-05-18 9:17 ` Miklos Szeredi
2020-05-19 5:01 ` cgxu
2020-05-19 8:21 ` Miklos Szeredi
2020-05-19 9:23 ` cgxu
2020-05-20 14:44 ` Miklos Szeredi
2020-05-25 13:37 ` Chengguang Xu
2020-05-25 13:50 ` Miklos Szeredi
2020-05-18 10:26 ` Ian Kent
2020-05-18 10:39 ` Ian Kent
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=20200515072047.31454-2-cgxu519@mykernel.net \
--to=cgxu519@mykernel.net \
--cc=amir73il@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-unionfs@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=viro@zeniv.linux.org.uk \
--subject='Re: [RFC PATCH v3 1/9] fs/dcache: Introduce a new lookup flag LOOKUP_DONTCACHE_NEGATIVE' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).