net: add netlink_ext_ack argument to rtnl_link_ops.validate
Add support for extended error reporting. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> Acked-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
ad744b223c
commit
a8b8a889e3
@@ -779,7 +779,8 @@ static struct pernet_operations ipgre_net_ops = {
|
||||
.size = sizeof(struct ip_tunnel_net),
|
||||
};
|
||||
|
||||
static int ipgre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
|
||||
static int ipgre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
__be16 flags;
|
||||
|
||||
@@ -802,7 +803,8 @@ static int ipgre_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ipgre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
|
||||
static int ipgre_tap_validate(struct nlattr *tb[], struct nlattr *data[],
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
__be32 daddr;
|
||||
|
||||
@@ -823,7 +825,7 @@ static int ipgre_tap_validate(struct nlattr *tb[], struct nlattr *data[])
|
||||
}
|
||||
|
||||
out:
|
||||
return ipgre_tunnel_validate(tb, data);
|
||||
return ipgre_tunnel_validate(tb, data, extack);
|
||||
}
|
||||
|
||||
static int ipgre_netlink_parms(struct net_device *dev,
|
||||
|
||||
@@ -465,7 +465,8 @@ static struct pernet_operations vti_net_ops = {
|
||||
.size = sizeof(struct ip_tunnel_net),
|
||||
};
|
||||
|
||||
static int vti_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
|
||||
static int vti_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -375,7 +375,8 @@ static int ipip_tunnel_init(struct net_device *dev)
|
||||
return ip_tunnel_init(dev);
|
||||
}
|
||||
|
||||
static int ipip_tunnel_validate(struct nlattr *tb[], struct nlattr *data[])
|
||||
static int ipip_tunnel_validate(struct nlattr *tb[], struct nlattr *data[],
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
u8 proto;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user