Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-11-19 | pam_systemd: suppress LOG_DEBUG log messages if debugging is off | Lennart Poettering | 1 | -2/+4 | |
In the PAM module we need to suppress LOG_DEBUG messages manually, if debug logging is not on, as PAM won't do this for us. We did this correctly for most log messages already, but two were missing. Let's fix those too. Fixes: #10822 | |||||
2018-11-19 | test: kill all processes launched by test-execute before exiting | Evgeny Vereshchagin | 1 | -0/+3 | |
As was shown in https://github.com/systemd/systemd/issues/10696#issuecomment-439613204, currently `meson` waits for 1080 seconds (which is three times the global timeout) for the test to fail completely even though it takes just two minutes for it to really fail. This happens because the test itself leaves the services it has launched behind, which, in turn, makes meson think that the test is still in progress. KILL_ALL with SIGKILL should make the issue go away. | |||||
2018-11-19 | catalog: update Polish translation | Piotr Drąg | 1 | -20/+52 | |
2018-11-19 | test: let the shell find "touch" instead of hard-coded "/bin/touch" | Xi Ruoyao | 1 | -1/+1 | |
2018-11-18 | basic/missing: drop _ETHTOOL_LINK_MODE_MAX | Zbigniew Jędrzejewski-Szmek | 2 | -8/+1 | |
It was only used in one place, where we don't actually need it, and it is too easy to forget to update it when adding new items to the table. Let's just drop it. | |||||
2018-11-18 | udev: use an "inline" array instead of allocating for advertise mode | Zbigniew Jędrzejewski-Szmek | 3 | -23/+12 | |
The code is a bit shorter and we don't allocate the uint32_t[127] array. | |||||
2018-11-18 | basic/util: import memeqzero from casync | Zbigniew Jędrzejewski-Szmek | 3 | -0/+41 | |
2018-11-18 | cgroup v2: DefaultCPUAccounting=yes if CPU controller isn't required | Chris Down | 2 | -5/+14 | |
We now don't enable the CPU controller just for CPU accounting if we are on 4.15+ and using pure unified hierarchy, as this is provided externally to the CPU controller. This makes CPUAccounting=yes essentially free, so enabling it by default when it's cheap seems like a good idea. | |||||
2018-11-18 | cgtop: Still try to get CPU statistics if controller-free | Chris Down | 1 | -1/+1 | |
If CPU accounting is cheap, no controller necessarily needs to be enabled here for us to be able to read statistics. | |||||
2018-11-18 | cgroup v2: Don't require CPU controller for CPU accounting in 4.15+ | Chris Down | 6 | -32/+105 | |
systemd only uses functions that are as of Linux 4.15+ provided externally to the CPU controller (currently usage_usec), so if we have a new enough kernel, we don't need to set CGROUP_MASK_CPU for CPUAccounting=true as the CPU controller does not need to necessarily be enabled in this case. Part of this patch is modelled on an earlier patch by Ryutaroh Matsumoto (see PR #9665). | |||||
2018-11-18 | test-util: modernize | Zbigniew Jędrzejewski-Szmek | 1 | -2/+28 | |
2018-11-18 | ethtool: drop NetDevAdvertise | Yu Watanabe | 4 | -52/+81 | |
Fixes #10807. | |||||
2018-11-18 | missing: add ETHTOOL_LINK_MODE_* and struct ethtool_link_settings | Yu Watanabe | 2 | -26/+159 | |
2018-11-17 | test: also tests enumerating subsystems | Yu Watanabe | 1 | -41/+57 | |
2018-11-17 | udevd: replace udev_device in struct event by sd_device | Yu Watanabe | 1 | -66/+130 | |
2018-11-17 | udevd: update several log messages | Yu Watanabe | 1 | -50/+49 | |
2018-11-17 | udevd: decrease indentation | Yu Watanabe | 1 | -10/+6 | |
2018-11-17 | udevd: rename event sources in struct event | Yu Watanabe | 1 | -6/+7 | |
2018-11-17 | udevd: capitalize log messages in on_sigchld() | Yu Watanabe | 1 | -9/+13 | |
2018-11-17 | udevd: also use sd_device_monitor_start() in worker_main() | Yu Watanabe | 1 | -67/+53 | |
2018-11-17 | udevd: use sd_device_monitor_start() in manager_new() | Yu Watanabe | 1 | -16/+9 | |
2018-11-17 | udevd: replace udev_monitor by sd_device_monitor | Yu Watanabe | 1 | -51/+62 | |
2018-11-17 | udevd: use safe_fork() to spawn worker process | Yu Watanabe | 1 | -27/+20 | |
2018-11-17 | udevd: make worker_process_device() take sd_device instead of udev_device | Yu Watanabe | 1 | -8/+17 | |
2018-11-17 | udevd: make worker_lock_block_device() take sd_device instead of udev_device | Yu Watanabe | 1 | -16/+38 | |
Also adds many debug logs. | |||||
2018-11-17 | udevd: split worker_spawn() and manager_free() in small pieces | Yu Watanabe | 1 | -171/+187 | |
2018-11-17 | tests: introduce dummy_server_init and use it in all journald fuzzers | Evgeny Vereshchagin | 5 | -40/+32 | |
2018-11-17 | travis: make the ASan & UBsan job a little bit stricter | Evgeny Vereshchagin | 2 | -1/+7 | |
2018-11-17 | journald: check whether sscanf has changed the value corresponding to %n | Evgeny Vereshchagin | 2 | -1/+3 | |
It's possible for sscanf to receive strings containing all three fields and not matching the template at the same time. When this happens the value of k doesn't change, which basically means that process_audit_string tries to access memory randomly. Sometimes it works and sometimes it doesn't :-) See also https://bugzilla.redhat.com/show_bug.cgi?id=1059314. | |||||
2018-11-17 | volatile-root: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -22/+12 | |
2018-11-17 | tty-ask-password-agent: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -21/+18 | |
2018-11-17 | sysv-generator: configure logging before use and define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -21/+16 | |
2018-11-17 | stdio-bridge: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -94/+48 | |
2018-11-17 | sleep: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -9/+8 | |
2018-11-17 | remount-fs: configure logging before use and define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -44/+31 | |
2018-11-17 | random-seed: configure logging before use and define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -46/+27 | |
2018-11-17 | quotacheck: configure logging before use and define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -11/+12 | |
2018-11-17 | portabled: add missing STOPPING=1 notification | Zbigniew Jędrzejewski-Szmek | 1 | -0/+3 | |
2018-11-17 | portabled: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -16/+9 | |
2018-11-17 | path: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -6/+7 | |
2018-11-17 | makefs: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -19/+14 | |
2018-11-17 | notify: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -40/+25 | |
2018-11-17 | machined: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -15/+9 | |
2018-11-17 | user-runtime-dir: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -14/+11 | |
2018-11-17 | logind: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -19/+11 | |
2018-11-17 | inhibit: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -21/+12 | |
2018-11-17 | cat: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -15/+10 | |
2018-11-17 | import: define mains through macro | Zbigniew Jędrzejewski-Szmek | 4 | -35/+25 | |
2018-11-17 | id128: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -6/+5 | |
2018-11-17 | hwdb: define main through macro | Zbigniew Jędrzejewski-Szmek | 1 | -6/+5 | |