diff options
author | Maciej Żenczykowski <maze@google.com> | 2024-07-29 17:30:10 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-08-12 17:23:57 -0700 |
commit | 246ef40670b71fef0c3e2cd11404279bc6d6468e (patch) | |
tree | c825acc84aa5c81d6bca345d0ce90195357df197 /net/ipv6 | |
parent | 9a4615be653b62cd06f38287b5b7aace18056d02 (diff) | |
download | linux-246ef40670b71fef0c3e2cd11404279bc6d6468e.tar.gz linux-246ef40670b71fef0c3e2cd11404279bc6d6468e.tar.bz2 linux-246ef40670b71fef0c3e2cd11404279bc6d6468e.zip |
ipv6: eliminate ndisc_ops_is_useropt()
as it doesn't seem to offer anything of value.
There's only 1 trivial user:
int lowpan_ndisc_is_useropt(u8 nd_opt_type) {
return nd_opt_type == ND_OPT_6CO;
}
but there's no harm to always treating that as
a useropt...
Cc: David Ahern <dsahern@kernel.org>
Cc: YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Link: https://patch.msgid.link/20240730003010.156977-1-maze@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ndisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index b8eec1b6cc2c..1e42e40fb379 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -200,9 +200,9 @@ static inline int ndisc_is_useropt(const struct net_device *dev, return opt->nd_opt_type == ND_OPT_PREFIX_INFO || opt->nd_opt_type == ND_OPT_RDNSS || opt->nd_opt_type == ND_OPT_DNSSL || + opt->nd_opt_type == ND_OPT_6CO || opt->nd_opt_type == ND_OPT_CAPTIVE_PORTAL || - opt->nd_opt_type == ND_OPT_PREF64 || - ndisc_ops_is_useropt(dev, opt->nd_opt_type); + opt->nd_opt_type == ND_OPT_PREF64; } static struct nd_opt_hdr *ndisc_next_useropt(const struct net_device *dev, |