forked from Minki/linux
net: ipmr: drop an instance of CONFIG_IP_MROUTE_MULTIPLE_TABLES
Trivial replace of ifdef with IS_BUILTIN(). Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fe9ef3ce39
commit
29c3f19739
@ -1396,11 +1396,12 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi
|
|||||||
rtnl_unlock();
|
rtnl_unlock();
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#ifdef CONFIG_IP_MROUTE_MULTIPLE_TABLES
|
|
||||||
case MRT_TABLE:
|
case MRT_TABLE:
|
||||||
{
|
{
|
||||||
u32 v;
|
u32 v;
|
||||||
|
|
||||||
|
if (!IS_BUILTIN(CONFIG_IP_MROUTE_MULTIPLE_TABLES))
|
||||||
|
return -ENOPROTOOPT;
|
||||||
if (optlen != sizeof(u32))
|
if (optlen != sizeof(u32))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
if (get_user(v, (u32 __user *)optval))
|
if (get_user(v, (u32 __user *)optval))
|
||||||
@ -1420,7 +1421,6 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi
|
|||||||
rtnl_unlock();
|
rtnl_unlock();
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
/* Spurious command, or MRT_VERSION which you cannot set. */
|
/* Spurious command, or MRT_VERSION which you cannot set. */
|
||||||
default:
|
default:
|
||||||
return -ENOPROTOOPT;
|
return -ENOPROTOOPT;
|
||||||
|
Loading…
Reference in New Issue
Block a user