Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-30 | memfd: drop memfd_get_name() as it is unused | Lennart Poettering | |
2014-10-30 | update TODO | Lennart Poettering | |
2014-10-30 | journal: when sending huge log messages prefer memfds over temporary files ↵ | Lennart Poettering | |
in /dev/shm Previously when a log message grew beyond the maximum AF_UNIX/SOCK_DGRAM datagram limit we'd send an fd to a deleted file in /dev/shm instead. Because the sender could still modify the file after delivery we had to immediately copy the data on the receiving side. With memfds we can optimize this logic, and also remove the dependency on /dev/shm: simply send a sealed memfd around, and if we detect the seal memory map the fd and use it directly. | |||
2014-10-30 | CODING_STYLE: clarify that we really should use O_CLOEXEC everywhere | Lennart Poettering | |
2014-10-30 | memfd: always create our memfds with CLOEXEC set | Lennart Poettering | |
We really shouldn't create fds ever that have the flag unset. | |||
2014-10-30 | util: unify how we see srand() | Lennart Poettering | |
2014-10-30 | util: don't block on getrandom() | Lennart Poettering | |
2014-10-30 | sysusers: Preserve ownership and mode on /etc/passwd and friends | Colin Guthrie | |
When running sysusers we would clobber file ownership and permissions on the files /etc/passwd, /etc/group and /etc/[g]shadow. This simply preserves the ownership and mode if existing files are found. | |||
2014-10-30 | keymap: Ignore brightness keys on Dell Inspiron 1520 to avoid double events | Hans de Goede | |
On the Dell Inspiron 1520 both the atkbd and acpi-video input devices report an event for pressing the brightness up / down key-combos, resulting in user space seeing double events and increasing / decreasing the brightness 2 steps for each keypress. This hwdb snippet suppresses the atkbd events, making the Inspiron 1520 work like most modern laptops which emit brightness up / down events through acpi-video only. Reported by Pavel Malyshev <p.malishev@gmail.com> https://bugzilla.redhat.com/show_bug.cgi?id=1141525 | |||
2014-10-29 | zsh-completion: update start/restart completions | Zbigniew Jędrzejewski-Szmek | |
Now zsh should behave the same for those two subcommands as bash. | |||
2014-10-29 | bash-completion: use improved filtering to make things faster | Zbigniew Jędrzejewski-Szmek | |
2014-10-29 | systemctl: obey --state in list-unit-files | Zbigniew Jędrzejewski-Szmek | |
2014-10-29 | systemctl: let list-{units,unit-files } honour --type | Zbigniew Jędrzejewski-Szmek | |
The docs don't clarify what is expected, but I don't see any reason why --type should be ignored. Also restucture the compund conditions into separate clauses for easier reading. | |||
2014-10-29 | bash-completion: rework startable/restartable units once more | Zbigniew Jędrzejewski-Szmek | |
I tried to use 'systemctl --all list-units' to filter unit files, but this always filters out unit files which are not loaded. We want to complete systemctl start with those units too, so this approach is not going to work. New version is rather slow, but hopefully correct. | |||
2014-10-29 | missing.h: fix wrong __NR_getrandom syscall def | Dave Reisner | |
278 is vmsplice on x86_64. 318 is what we want: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/x86/syscalls/syscall_64.tbl | |||
2014-10-30 | udev: path_id - update comments | Kay Sievers | |
2014-10-30 | busctl: add new "capture" verb to record bus messages in libpcap compatible ↵ | Lennart Poettering | |
files, for dissection with wireshark | |||
2014-10-29 | nspawn: ignore EEXIST when creating mount point | Dave Reisner | |
A combination of commits f3c80515c and 79d80fc14 cause nspawn to silently fail with a commandline such as: # systemd-nspawn -D /build/extra-x86_64 --bind=/usr strace shows the culprit: [pid 27868] writev(2, [{"Failed to create mount point /build/extra-x86_64/usr: File exists", 82}, {"\n", 1}], 2) = 83 | |||
2014-10-29 | sd-bus: properly handle removals of non-existing matches | Lennart Poettering | |
2014-10-29 | missing: no tabs please, we are british | Lennart Poettering | |
2014-10-29 | update TODO | Lennart Poettering | |
2014-10-29 | missing: simplify memfd ifdeffery | Lennart Poettering | |
2014-10-29 | util: make use of the new getrandom() syscall if it is available when ↵ | Lennart Poettering | |
needing entropy Doesn't require an fd, and could be a bit faster, so let's make use of it, if it is available. | |||
2014-10-29 | sd-rtnl: add bridge port rtnl attributes. | Susant Sahani | |
Add bridge port attributes to sd-rtnl to configure via networkd. | |||
2014-10-29 | sd-rtnl: add support to set packet family type | Susant Sahani | |
This patch adds functionality to set family type in the rtnl message for example PF_BRIDGE. | |||
2014-10-29 | sd-rtnl: mark nested attributes with the NLA_F_NESTED flag | Tom Gundersen | |
The kernel mostly does not check this, but let's be consisntent and allways set it anyway. Based on patch from Susant Sahani. | |||
2014-10-29 | sd-rtnl: fix reading of nla type | Tom Gundersen | |
We must filter out the 'network-byteorder' and 'nested' flags. | |||
2014-10-29 | networkd: add Patch of MTU discovery for IPIP and GRE | Susant Sahani | |
Add path of MTU disovery for IPIP and GRE Kind of tunnels | |||
2014-10-29 | networkd: add back path of MTU discovery for SIT | Susant Sahani | |
2014-10-28 | NEWS: well, it's Options= now, not Discard= | Lennart Poettering | |
2014-10-28 | build-sys: do not use "label" functions in libsystemd_sharedsystemd/v217 | Kay Sievers | |
2014-10-28 | update NEWS | Lennart Poettering | |
2014-10-28 | test: use assert_se() when testing tables so that we get a useful error when ↵ | Lennart Poettering | |
something fails | |||
2014-10-28 | service: add missing state table entry | Lennart Poettering | |
2014-10-28 | core: send sigabrt on watchdog timeout to get the stacktrace | Umut Tezduyar Lindskog | |
if sigabrt doesn't do the job, follow regular shutdown routine, sigterm > sigkill. | |||
2014-10-28 | swap: don't add too many deps for swap files form /proc/swap | Lennart Poettering | |
2014-10-28 | udev: path_id - set supported_parent for well-known SCSI setups | Kay Sievers | |
2014-10-28 | NEWS: fix typos | Ronny Chevalier | |
2014-10-28 | NEWS: update | Kay Sievers | |
2014-10-28 | NEWS | Tom Gundersen | |
2014-10-28 | update NEWS | Lennart Poettering | |
2014-10-28 | update NEWS | Lennart Poettering | |
2014-10-28 | build-sys: bump version number in preparation for release | Lennart Poettering | |
2014-10-28 | build-sys: bump library versions in preparation for 217 release | Lennart Poettering | |
2014-10-28 | NEWS: add contributor list in preparation for 217 release | Lennart Poettering | |
2014-10-28 | update NEWS | Lennart Poettering | |
2014-10-28 | polkit: actually generate new InteractiveAuthorizationRequired error on the ↵ | Lennart Poettering | |
right occasions | |||
2014-10-28 | update TODO | Lennart Poettering | |
2014-10-28 | sd-bus: add support for new InteractiveAuthorizationRequired error from dbus ↵ | Lennart Poettering | |
spec | |||
2014-10-28 | update TODO | Lennart Poettering | |