From: Leon Romanovsky <leonro@nvidia.com>
To: David Ahern <dsahern@kernel.org>
Cc: <stephen@networkplumber.org>, <netdev@vger.kernel.org>,
<linux-rdma@vger.kernel.org>, David Ahern <dahern@nvidia.com>
Subject: Re: [PATCH iproute2-next v2 4/4] devlink: Drop now duplicate pid fallback for netns
Date: Wed, 13 May 2026 08:40:45 +0300 [thread overview]
Message-ID: <20260513054045.GY15586@unreal> (raw)
In-Reply-To: <20260512193412.32019-5-dsahern@kernel.org>
On Tue, May 12, 2026 at 01:34:07PM -0600, David Ahern wrote:
> From: David Ahern <dahern@nvidia.com>
>
> Now that netns_get_fd handles by name and pid, the special
> handling in devlink to fallback to PID can be removed with
> both cases handled by the FD attribute.
>
> Signed-off-by: David Ahern <dahern@nvidia.com>
> ---
> devlink/devlink.c | 25 +++++++------------------
> 1 file changed, 7 insertions(+), 18 deletions(-)
<...>
> static char *dl_argv_next(struct dl *dl)
> {
> char *ret;
> @@ -2153,14 +2147,12 @@ static int dl_argv_parse(struct dl *dl, uint64_t o_required,
> err = dl_argv_str(dl, &netns_str);
> if (err)
> return err;
> - opts->netns = netns_get_fd(netns_str);
> - if ((int)opts->netns < 0) {
> - dl_arg_dec(dl);
> - err = dl_argv_uint32_t(dl, &opts->netns);
> - if (err)
> - return err;
> - opts->netns_is_pid = true;
> - }
> +
> + err = netns_get_fd(netns_str);
> + if (err < 0)
> + return err;
> +
> + opts->netns = err;
> o_found |= DL_OPT_NETNS;
> } else if (dl_argv_match(dl, "action") &&
> (o_all & DL_OPT_RELOAD_ACTION)) {
> @@ -2725,10 +2717,7 @@ static void dl_opts_put(struct nlmsghdr *nlh, struct dl *dl)
> mnl_attr_put_u8(nlh, DEVLINK_ATTR_TRAP_ACTION,
> opts->trap_action);
> if (opts->present & DL_OPT_NETNS)
> - mnl_attr_put_u32(nlh,
> - opts->netns_is_pid ? DEVLINK_ATTR_NETNS_PID :
> - DEVLINK_ATTR_NETNS_FD,
> - opts->netns);
> + mnl_attr_put_u32(nlh, DEVLINK_ATTR_NETNS_FD, opts->netns);
You can also remove netns_is_pid from struct dl_opts.
It is unfortunate that devlink implements DEVLINK_ATTR_NETNS_PID in
the kernel, given that user space can provide this functionality
with trivial effort.
Thanks
next prev parent reply other threads:[~2026-05-13 5:41 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-12 19:34 [PATCH iproute2-next v2 0/4] Allow rdma dev netns to take a pid David Ahern
2026-05-12 19:34 ` [PATCH iproute2-next v2 1/4] namespace: Add fallback to netns by pid David Ahern
2026-05-13 5:49 ` Leon Romanovsky
2026-05-12 19:34 ` [PATCH iproute2-next v2 2/4] iplink: Drop pid fallback code for netns David Ahern
2026-05-13 5:49 ` Leon Romanovsky
2026-05-12 19:34 ` [PATCH iproute2-next v2 3/4] rdma: Allow netns to be specified by pid David Ahern
2026-05-13 5:49 ` Leon Romanovsky
2026-05-12 19:34 ` [PATCH iproute2-next v2 4/4] devlink: Drop now duplicate pid fallback for netns David Ahern
2026-05-13 5:40 ` Leon Romanovsky [this message]
2026-05-14 1:06 ` David Ahern
2026-05-15 19:30 ` [PATCH iproute2-next v2 0/4] Allow rdma dev netns to take a pid patchwork-bot+netdevbpf
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=20260513054045.GY15586@unreal \
--to=leonro@nvidia.com \
--cc=dahern@nvidia.com \
--cc=dsahern@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=stephen@networkplumber.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.