Describe the bug

No overcommit log message

To reproduce

7.0.0 source code server.c linuxOvercommitMemoryValue() return atoi(buf); linuxMemoryWarnings() if (linuxOvercommitMemoryValue() == 0) { "WARNING msg" }

Expected behavior redis-7.0.1, 7.0.2 syscheck.c current code: if (atoi(buf)) { "WARNING msg" }
Please correct this: if (atoi(buf) == 0) { "msg" }

Additional information

Comment From: enjoy-binbin

sorry for that, see #10906 and #10841

it will be fix in 7.0.3, so now just ignore the warning (the vm.overcommit_memory = 1 is working, we did a wrong check, so the warning is always printed)