Re: [PATCH net-next v3 03/24] ovpn: add basic netlink support
From: Antonio Quartulli <antonio@openvpn.net>
Date: 2024-05-08 14:49:59
On 08/05/2024 16:42, Sabrina Dubroca wrote:
2024-05-06, 03:16:16 +0200, Antonio Quartulli wrote:quoted
diff --git a/drivers/net/ovpn/netlink.c b/drivers/net/ovpn/netlink.c new file mode 100644 index 000000000000..c0a9f58e0e87 --- /dev/null +++ b/drivers/net/ovpn/netlink.c +int ovpn_nl_new_iface_doit(struct sk_buff *skb, struct genl_info *info) +{ + return -ENOTSUPP;nit: All thhese should probably be EOPNOTSUPP if those return values can be passed back to userspace, but since you're removing all of them as you implement the functions, it doesn't really matter.
Yeah, I just saw the warnings about these errors. I'll still change them in v4.
[...]quoted
+/** + * ovpn_nl_init - perform any ovpn specific netlink initialization + * @ovpn: the openvpn instance object + */ +int ovpn_nl_init(struct ovpn_struct *ovpn) +{ + return 0; +}Is this also part of the auto-generated code? Or maybe a leftover from previous iterations? This function doesn't do anything even after all other patches are applied.
Ouch, I missed this. Definitely a left over. Will remove it. Thanks a lot
-- Antonio Quartulli OpenVPN Inc.