Home
last modified time | relevance | path

Searched refs:IPSET_MAX_RANGE (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/kernel/net/netfilter/ipset/
H A Dip_set_hash_ip.c150 if (((u64)ip_to - ip + 1) >> (32 - h->netmask) > IPSET_MAX_RANGE) in hash_ip4_uadt()
H A Dip_set_hash_ipmark.c150 if (((u64)ip_to - ip + 1) > IPSET_MAX_RANGE) in hash_ipmark4_uadt()
H A Dip_set_hash_net.c196 if (n > IPSET_MAX_RANGE) in hash_net4_uadt()
H A Dip_set_hash_ipport.c175 if (((u64)ip_to - ip + 1)*(port_to - port + 1) > IPSET_MAX_RANGE) in hash_ipport4_uadt()
H A Dip_set_hash_ipportip.c182 if (((u64)ip_to - ip + 1)*(port_to - port + 1) > IPSET_MAX_RANGE) in hash_ipportip4_uadt()
H A Dip_set_hash_netiface.c264 if (n > IPSET_MAX_RANGE) in hash_netiface4_uadt()
H A Dip_set_hash_netport.c244 if (n*(port_to - port + 1) > IPSET_MAX_RANGE) in hash_netport4_uadt()
H A Dip_set_hash_netnet.c258 if (n*m > IPSET_MAX_RANGE) in hash_netnet4_uadt()
H A Dip_set_hash_ipportnet.c255 if (((u64)ip_to - ip + 1)*(port_to - port + 1) > IPSET_MAX_RANGE) in hash_ipportnet4_uadt()
H A Dip_set_hash_netportnet.c298 if (n*m*(port_to - port + 1) > IPSET_MAX_RANGE) in hash_netportnet4_uadt()
/OK3568_Linux_fs/kernel/include/linux/netfilter/ipset/
H A Dip_set.h205 #define IPSET_MAX_RANGE (1<<20) macro