From 1c231f56482546725c4dbd3303f70300bd3c63e9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 4 Mar 2014 19:20:21 +0100 Subject: logind: make $XDG_RUNTIME_DIR a per-user tmpfs This way each user allocates from his own pool, with its own size limit. This puts the size limit by default to 10% of the physical RAM size but makes it configurable in logind.conf. --- src/login/logind.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/login/logind.c') diff --git a/src/login/logind.c b/src/login/logind.c index fd113b3e79..03b77539bd 100644 --- a/src/login/logind.c +++ b/src/login/logind.c @@ -60,6 +60,8 @@ Manager *manager_new(void) { m->idle_action = HANDLE_IGNORE; m->idle_action_not_before_usec = now(CLOCK_MONOTONIC); + m->runtime_dir_size = PAGE_ALIGN((size_t) (physical_memory() / 10)); /* 10% */ + m->devices = hashmap_new(string_hash_func, string_compare_func); m->seats = hashmap_new(string_hash_func, string_compare_func); m->sessions = hashmap_new(string_hash_func, string_compare_func); -- cgit v1.2.3-54-g00ecf