"descendants" and "depth" are declared as int, so they can't be larger
than INT_MAX. Static checkers complain and it's slightly confusing for
humans as well so let's just remove these conditions.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
return ret;
}
- if (descendants < 0 || descendants > INT_MAX)
+ if (descendants < 0)
return -ERANGE;
cgrp = cgroup_kn_lock_live(of->kn, false);
return ret;
}
- if (depth < 0 || depth > INT_MAX)
+ if (depth < 0)
return -ERANGE;
cgrp = cgroup_kn_lock_live(of->kn, false);