mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 14:14:24 +08:00
net/bridge: replace simple_strtoul to kstrtol
simple_strtoull is obsolete, use kstrtol instead. Signed-off-by: Bernard Zhao <bernard@vivo.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
eaa54d6614
commit
520fbdf7fb
@ -36,15 +36,14 @@ static ssize_t store_bridge_parm(struct device *d,
|
||||
struct net_bridge *br = to_bridge(d);
|
||||
struct netlink_ext_ack extack = {0};
|
||||
unsigned long val;
|
||||
char *endp;
|
||||
int err;
|
||||
|
||||
if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
|
||||
return -EPERM;
|
||||
|
||||
val = simple_strtoul(buf, &endp, 0);
|
||||
if (endp == buf)
|
||||
return -EINVAL;
|
||||
err = kstrtoul(buf, 10, &val);
|
||||
if (err != 0)
|
||||
return err;
|
||||
|
||||
if (!rtnl_trylock())
|
||||
return restart_syscall();
|
||||
|
Loading…
Reference in New Issue
Block a user