[NETFILTER]: x_tables: remove obsolete overflow check
authorPatrick McHardy <kaber@trash.net>
Wed, 5 Dec 2007 07:25:26 +0000 (23:25 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 22:55:54 +0000 (14:55 -0800)
We're not multiplying the size with the number of CPUs anymore, so the
check is obsolete.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/netfilter/arp_tables.c
net/ipv4/netfilter/ip_tables.c
net/ipv6/netfilter/ip6_tables.c

index a21722d5c9fa44736e99351625a2617f2060c293..d5cae7e906cf8643e2a4e2719e509358f0812029 100644 (file)
@@ -811,8 +811,6 @@ static int do_replace(void __user *user, unsigned int len)
                return -ENOPROTOOPT;
 
        /* overflow check */
-       if (tmp.size >= INT_MAX / num_possible_cpus())
-               return -ENOMEM;
        if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
                return -ENOMEM;
 
index 87d369244bd9433c431e38c782a5b2690d5efa92..64ffe57ef1b35f01bbf786dc0aa1b36068e18a5f 100644 (file)
@@ -1323,8 +1323,6 @@ do_replace(void __user *user, unsigned int len)
                return -ENOPROTOOPT;
 
        /* overflow check */
-       if (tmp.size >= INT_MAX / num_possible_cpus())
-               return -ENOMEM;
        if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
                return -ENOMEM;
 
index e60c1b4b1ec8c6112d46583243d92abef1e54eb4..d3e884a5c6a895bbc5b168301e3f5004a5bc520c 100644 (file)
@@ -1042,8 +1042,6 @@ do_replace(void __user *user, unsigned int len)
                return -EFAULT;
 
        /* overflow check */
-       if (tmp.size >= INT_MAX / num_possible_cpus())
-               return -ENOMEM;
        if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters))
                return -ENOMEM;
 
This page took 0.029372 seconds and 5 git commands to generate.