1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-27 14:03:43 +03:00

oomd: delete unused variables

This commit is contained in:
Anita Zhang 2021-03-26 00:54:46 -07:00
parent 69c8f0255a
commit 14140b3544
2 changed files with 0 additions and 4 deletions

View File

@ -11,9 +11,6 @@
/* Pressure counters are lagging (~2 seconds) compared to swap so polling too frequently just wastes CPU */
#define MEM_PRESSURE_INTERVAL_USEC (1 * USEC_PER_SEC)
/* Used to weight the averages */
#define AVERAGE_SIZE_DECAY 4
/* Take action if 10s of memory pressure > 60 for more than 30s. We use the "full" value from PSI so this is the
* percentage of time all tasks were delayed (i.e. unproductive).
* Generally 60 or higher might be acceptable for something like system.slice with no memory.high set; processes in

View File

@ -34,7 +34,6 @@ struct OomdCGroupContext {
/* These are only used for acting on high memory pressure. */
loadavg_t mem_pressure_limit;
usec_t mem_pressure_duration_usec;
usec_t mem_pressure_limit_hit_start;
usec_t last_had_mem_reclaim;
};