From: Michal Koutný Date: Tue, 16 Apr 2024 14:20:09 +0000 (+0200) Subject: cgroup/pids: Remove superfluous zeroing X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=15b8b9ab5081d8dce9aa27a594ba4db2c29cefc0;p=linux.git cgroup/pids: Remove superfluous zeroing Atomic counters are in kzalloc'd struct. They are zeroed already and atomic64_t does not need special initialization (cf kernel/trace/trace_clock.c:trace_counter). Signed-off-by: Michal Koutný Signed-off-by: Tejun Heo --- diff --git a/kernel/cgroup/pids.c b/kernel/cgroup/pids.c index 7695e60bcb409..0e5ec7d59b4d2 100644 --- a/kernel/cgroup/pids.c +++ b/kernel/cgroup/pids.c @@ -75,9 +75,7 @@ pids_css_alloc(struct cgroup_subsys_state *parent) if (!pids) return ERR_PTR(-ENOMEM); - atomic64_set(&pids->counter, 0); atomic64_set(&pids->limit, PIDS_MAX); - atomic64_set(&pids->events_limit, 0); return &pids->css; }