From: Jeff Layton <jlayton@kernel.org>
To: Steve Dickson <steved@redhat.com>
Cc: Chuck Lever <chuck.lever@oracle.com>, NeilBrown <neil@brown.name>,
Olga Kornievskaia <okorniev@redhat.com>,
Dai Ngo <Dai.Ngo@oracle.com>, Tom Talpey <tom@talpey.com>,
Trond Myklebust <trondmy@kernel.org>,
Anna Schumaker <anna@kernel.org>,
linux-nfs@vger.kernel.org, Jeff Layton <jlayton@kernel.org>
Subject: [PATCH nfs-utils v2 13/16] exportd/mountd: use cache type from notifications to target scanning
Date: Mon, 30 Mar 2026 09:38:33 -0400 [thread overview]
Message-ID: <20260330-exportd-netlink-v2-13-cc9bd5db2408@kernel.org> (raw)
In-Reply-To: <20260330-exportd-netlink-v2-0-cc9bd5db2408@kernel.org>
Parse the NFSD_A_CACHE_NOTIFY_CACHE_TYPE and
SUNRPC_A_CACHE_NOTIFY_CACHE_TYPE attributes from netlink multicast
notifications to determine which specific caches have pending
requests. Only issue GET_REQS for the caches that actually need
servicing, avoiding unnecessary netlink round-trips.
If the notification can't be parsed, fall back to scanning all caches
for that family.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
---
support/export/cache.c | 81 ++++++++++++++++++++++++++++++++++++++++----------
1 file changed, 66 insertions(+), 15 deletions(-)
diff --git a/support/export/cache.c b/support/export/cache.c
index 4261e1861215ea53183dd8ce14890b0195d841e8..5a2c5760cb5410845971ba831a9ae779d17a6d87 100644
--- a/support/export/cache.c
+++ b/support/export/cache.c
@@ -1180,22 +1180,45 @@ static int cache_nfsd_nl_open(void)
&nfsd_nl_family);
}
-static int nfsd_nl_notify_handler(struct nl_msg *UNUSED(msg), void *UNUSED(arg))
+static int nl_seq_check_handler(struct nl_msg *UNUSED(msg), void *UNUSED(arg))
{
return NL_OK;
}
-static void cache_nfsd_nl_drain(void)
+static int nfsd_notify_handler(struct nl_msg *msg, void *arg)
{
+ unsigned int *cache_mask = arg;
+ struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
+ struct nlattr *tb[NFSD_A_CACHE_NOTIFY_MAX + 1];
+
+ if (nla_parse(tb, NFSD_A_CACHE_NOTIFY_MAX,
+ genlmsg_attrdata(gnlh, 0),
+ genlmsg_attrlen(gnlh, 0), NULL) == 0 &&
+ tb[NFSD_A_CACHE_NOTIFY_CACHE_TYPE])
+ *cache_mask |= nla_get_u32(tb[NFSD_A_CACHE_NOTIFY_CACHE_TYPE]);
+ else
+ *cache_mask = ~0U;
+
+ xlog(D_NETLINK, "nfsd_notify_handler: cache_mask=%x", *cache_mask);
+ return NL_OK;
+}
+
+static unsigned int cache_nfsd_nl_drain(void)
+{
+ unsigned int cache_mask = 0;
struct nl_cb *cb;
cb = nl_cb_alloc(NL_CB_DEFAULT);
if (!cb)
- return;
+ return ~0U;
- nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, nfsd_nl_notify_handler, NULL);
+ nl_cb_set(cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
+ nl_seq_check_handler, NULL);
+ nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, nfsd_notify_handler,
+ &cache_mask);
nl_recvmsgs(nfsd_nl_notify_sock, cb);
nl_cb_put(cb);
+ return cache_mask;
}
struct get_export_reqs_data {
@@ -1552,8 +1575,6 @@ static void cache_nl_process_export(void)
if (!msg)
goto out_free;
- auth_reload();
-
for (i = 0; i < nreqs; i++) {
char *dom = reqs[i].client;
char *path = reqs[i].path;
@@ -1912,16 +1933,20 @@ out_free:
static void cache_nfsd_nl_process(void)
{
+ unsigned int cache_mask;
+
/* Drain pending nfsd notifications */
- cache_nfsd_nl_drain();
+ cache_mask = cache_nfsd_nl_drain();
auth_reload();
/* Handle any pending svc_export requests */
- cache_nl_process_export();
+ if (cache_mask & NFSD_CACHE_TYPE_SVC_EXPORT)
+ cache_nl_process_export();
/* Handle any pending expkey requests */
- cache_nl_process_expkey();
+ if (cache_mask & NFSD_CACHE_TYPE_EXPKEY)
+ cache_nl_process_expkey();
}
/*
@@ -1942,17 +1967,40 @@ static int cache_sunrpc_nl_open(void)
&sunrpc_nl_family);
}
-static void cache_sunrpc_nl_drain(void)
+static int sunrpc_notify_handler(struct nl_msg *msg, void *arg)
{
+ unsigned int *cache_mask = arg;
+ struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
+ struct nlattr *tb[SUNRPC_A_CACHE_NOTIFY_MAX + 1];
+
+ if (nla_parse(tb, SUNRPC_A_CACHE_NOTIFY_MAX,
+ genlmsg_attrdata(gnlh, 0),
+ genlmsg_attrlen(gnlh, 0), NULL) == 0 &&
+ tb[SUNRPC_A_CACHE_NOTIFY_CACHE_TYPE])
+ *cache_mask |= nla_get_u32(tb[SUNRPC_A_CACHE_NOTIFY_CACHE_TYPE]);
+ else
+ *cache_mask = ~0U;
+
+ xlog(D_NETLINK, "sunrpc_notify_handler: cache_mask=%x", *cache_mask);
+ return NL_OK;
+}
+
+static unsigned int cache_sunrpc_nl_drain(void)
+{
+ unsigned int cache_mask = 0;
struct nl_cb *cb;
cb = nl_cb_alloc(NL_CB_DEFAULT);
if (!cb)
- return;
+ return ~0U;
- nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, nfsd_nl_notify_handler, NULL);
+ nl_cb_set(cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
+ nl_seq_check_handler, NULL);
+ nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, sunrpc_notify_handler,
+ &cache_mask);
nl_recvmsgs(sunrpc_nl_notify_sock, cb);
nl_cb_put(cb);
+ return cache_mask;
}
/*
@@ -2436,16 +2484,19 @@ out_free:
static void cache_sunrpc_nl_process(void)
{
+ unsigned int cache_mask;
+
/* Drain pending sunrpc notifications */
- cache_sunrpc_nl_drain();
+ cache_mask = cache_sunrpc_nl_drain();
auth_reload();
/* Handle any pending ip_map requests */
- cache_nl_process_ip_map();
+ if (cache_mask & SUNRPC_CACHE_TYPE_IP_MAP)
+ cache_nl_process_ip_map();
/* Handle any pending unix_gid requests */
- if (manage_gids)
+ if (manage_gids && (cache_mask & SUNRPC_CACHE_TYPE_UNIX_GID))
cache_nl_process_unix_gid();
}
--
2.53.0
next prev parent reply other threads:[~2026-03-30 13:38 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-30 13:38 [PATCH nfs-utils v2 00/16] exportfs/exportd/mountd: allow them to use netlink for up/downcalls Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 01/16] nfsdctl: move *_netlink.h to support/include/ Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 02/16] support/export: remove unnecessary static variables in nfsd_fh expkey lookup Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 03/16] exportfs: remove obsolete legacy mode documentation from manpage Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 04/16] support/include: update netlink headers for all cache upcalls Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 05/16] build: add libnl3 and netlink header support for exportd and mountd Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 06/16] xlog: claim D_FAC3 as D_NETLINK Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 07/16] exportd/mountd: add netlink support for svc_export cache Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 08/16] exportd/mountd: add netlink support for the nfsd.fh cache Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 09/16] exportd/mountd: add netlink support for the auth.unix.ip cache Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 10/16] exportd/mountd: add netlink support for the auth.unix.gid cache Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 11/16] mountd/exportd: only use /proc interfaces if netlink setup fails Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 12/16] support/export: check for pending requests after opening netlink sockets Jeff Layton
2026-03-30 13:38 ` Jeff Layton [this message]
2026-03-30 13:38 ` [PATCH nfs-utils v2 14/16] exportfs: add netlink support for cache flush with /proc fallback Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 15/16] exportfs: use netlink to probe kernel support, skip export_test Jeff Layton
2026-03-30 13:38 ` [PATCH nfs-utils v2 16/16] mountd/exportd/exportfs: add --no-netlink option to disable netlink Jeff Layton
2026-04-03 12:55 ` [PATCH nfs-utils v2 00/16] exportfs/exportd/mountd: allow them to use netlink for up/downcalls Steve Dickson
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=20260330-exportd-netlink-v2-13-cc9bd5db2408@kernel.org \
--to=jlayton@kernel.org \
--cc=Dai.Ngo@oracle.com \
--cc=anna@kernel.org \
--cc=chuck.lever@oracle.com \
--cc=linux-nfs@vger.kernel.org \
--cc=neil@brown.name \
--cc=okorniev@redhat.com \
--cc=steved@redhat.com \
--cc=tom@talpey.com \
--cc=trondmy@kernel.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