diff options
author | Abhijit Pawar <abhi.c.pawar@gmail.com> | 2012-12-09 18:12:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-10 14:09:00 -0500 |
commit | 4b5511ebc7e1cf94e4f13be19c2cf3e90edc3395 (patch) | |
tree | e6882f930d0952aa08162fba55b166a87cebf410 /net/ipv4 | |
parent | 008d4278072216bd2459a6e41b07b688fe95ee83 (diff) |
net: remove obsolete simple_strto<foo>
This patch replace the obsolete simple_strto<foo> with kstrto<foo>
Signed-off-by: Abhijit Pawar <abhi.c.pawar@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/ipt_CLUSTERIP.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c index fe5daea5214d..75e33a7048f8 100644 --- a/net/ipv4/netfilter/ipt_CLUSTERIP.c +++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c | |||
@@ -661,6 +661,7 @@ static ssize_t clusterip_proc_write(struct file *file, const char __user *input, | |||
661 | #define PROC_WRITELEN 10 | 661 | #define PROC_WRITELEN 10 |
662 | char buffer[PROC_WRITELEN+1]; | 662 | char buffer[PROC_WRITELEN+1]; |
663 | unsigned long nodenum; | 663 | unsigned long nodenum; |
664 | int rc; | ||
664 | 665 | ||
665 | if (size > PROC_WRITELEN) | 666 | if (size > PROC_WRITELEN) |
666 | return -EIO; | 667 | return -EIO; |
@@ -669,11 +670,15 @@ static ssize_t clusterip_proc_write(struct file *file, const char __user *input, | |||
669 | buffer[size] = 0; | 670 | buffer[size] = 0; |
670 | 671 | ||
671 | if (*buffer == '+') { | 672 | if (*buffer == '+') { |
672 | nodenum = simple_strtoul(buffer+1, NULL, 10); | 673 | rc = kstrtoul(buffer+1, 10, &nodenum); |
674 | if (rc) | ||
675 | return rc; | ||
673 | if (clusterip_add_node(c, nodenum)) | 676 | if (clusterip_add_node(c, nodenum)) |
674 | return -ENOMEM; | 677 | return -ENOMEM; |
675 | } else if (*buffer == '-') { | 678 | } else if (*buffer == '-') { |
676 | nodenum = simple_strtoul(buffer+1, NULL,10); | 679 | rc = kstrtoul(buffer+1, 10, &nodenum); |
680 | if (rc) | ||
681 | return rc; | ||
677 | if (clusterip_del_node(c, nodenum)) | 682 | if (clusterip_del_node(c, nodenum)) |
678 | return -ENOENT; | 683 | return -ENOENT; |
679 | } else | 684 | } else |