Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-11 | make socket_instantiate_service use cleanup gcc attribute | Michael Scherer | |
2014-01-12 | bus: fix length calculation when serializing SD_BUS_TYPE_SIGNATURE | Kay Sievers | |
2014-01-11 | core: fix unused variable | Zbigniew Jędrzejewski-Szmek | |
2014-01-11 | network: use GNU-ism to simplify macros | Zbigniew Jędrzejewski-Szmek | |
Thanks David! | |||
2014-01-11 | journalctl: allow globbing in --unit and --user-unit | Zbigniew Jędrzejewski-Szmek | |
This is a continuation of e3e0314b systemctl: allow globbing in commands which take multiple unit names. Multiple patterns can be specified, as separate arguments, or as one argument with patterns seperated by commas. If patterns are given, at least one unit must be matched (by any of the patterns). This is different behaviour than systemctl, but here it is necessary because otherwise anything would be matched, which is unlikely to be the intended behaviour. https://bugs.freedesktop.org/show_bug.cgi?id=59336 | |||
2014-01-11 | journal: fix access to munmapped memory in sd_journal_enumerate_unique | Zbigniew Jędrzejewski-Szmek | |
sd_j_e_u needs to keep a reference to an object while comparing it with possibly duplicate objects in other files. Because the size of mmap cache is limited, with enough files and object to compare to, at some point the object being compared would be munmapped, resulting in a segmentation fault. Fix this issue by turning keep_always into a reference count that can be increased and decreased. Other callers which set keep_always=true are unmodified: their references are never released but are ignored when the whole file is closed, which happens at some point. keep_always is increased in sd_j_e_u and later on released. | |||
2014-01-11 | sd-dns: simplify headers | Tom Gundersen | |
As noted by Lennart: HAVE_CONFIG_H is done implicitly and sys/prctl.h is mandatory. | |||
2014-01-11 | sd-dns: update/add license texts | Tom Gundersen | |
2014-01-11 | sd-dns: cleanup public header | Tom Gundersen | |
Don't include internal headers Update license text Use _SD_BEGIN/END_DECLARATIONS | |||
2014-01-11 | sd-dns: initial commit | Daniel Buch | |
Origin: <http://0pointer.de/lennart/projects/libasyncns/> [tomegun: renamed some more files asyncns -> sd-dns and moved to libsystemd-bus as requested by Lennart] | |||
2014-01-11 | udev/net_id: Introduce predictable network names for Linux on System z | Hendrik Brueckner | |
Use the bus-ID to create predicatable devices names for network interfaces on Linux on System z instances. The bus-ID identifies a device in the s390 channel subsystem. Network interfaces of device type Ethernet are named as: enccw0.0.1234 (13 characters) up to enccwff.7.ffff (14 characters) CTC network devices of device type SLIP, use a different prefix as follows: slccw0.0.1234 (13 characters) See also Red Hat Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=870859 [tomegun: typical problem of netdevs switching names between reboots.] | |||
2014-01-11 | hwdb: Add support for Toshiba Satellite P75-A7200 keyboard | Unai Uribarri | |
2014-01-11 | Revert "bus: export bus address also when compiled without kdbus" | Kay Sievers | |
This reverts commit 9130f2128b64de19a3b7d6db7e0d371adfd296c2. It's too early to do that. For now we should only "break" the --enable-kdbus case, not the normal one. | |||
2014-01-10 | man: clarify sd_bus_e_get_errno with NULL arg | Zbigniew Jędrzejewski-Szmek | |
2014-01-10 | bus: convert a bus error with NULL name into an errno of 0 in ↵ | Lennart Poettering | |
sd_bus_error_get_errno() | |||
2014-01-09 | man: mention which variables will be expanded in ExecStart | Zbigniew Jędrzejewski-Szmek | |
2014-01-09 | core: fix lack of notifications after reload | Zbigniew Jędrzejewski-Szmek | |
2014-01-09 | tmpfiles: don't allow label_fix to print ENOENT when we want to ignore it | Lukas Nykryn | |
2014-01-09 | delta: ensure that d_type will be set on every fs | Lukas Nykryn | |
2014-01-08 | build-sys: fix distcheck | Zbigniew Jędrzejewski-Szmek | |
2014-01-08 | networkd: print the received DHCPv4 address and gateway | Zbigniew Jędrzejewski-Szmek | |
It seems that networkd stores in_addr.s_addr contents in reverse order (little-endian, not network order). This is a bit confusing, but sd_rtnl evidently likes this order. | |||
2014-01-08 | networkd: use structured logging for links and bridges | Zbigniew Jędrzejewski-Szmek | |
2014-01-08 | No need to canonicalize fixed paths | Zbigniew Jędrzejewski-Szmek | |
2014-01-08 | Improve messages about user mode a bit | Zbigniew Jędrzejewski-Szmek | |
2014-01-09 | nspawn: do not invoke RegisterMachine on machined from inside the new PID ↵ | Lennart Poettering | |
namespace On kdbus user credentials are not translated across PID namespaces, but simply invalidated if sender and receiver namespaces don't match. This makes it impossible to properly authenticate requests from different PID namespaces (which is probably a good thing). Hence, register the machine in the parent and not the client and properly synchronize this. | |||
2014-01-09 | bus: make the bus driver support the driver interface under both / and ↵ | Lennart Poettering | |
/org/freedesktop/DBus Some clients apparently use the "/" path instead of "/org/freedesktop/DBus". dbus-daemon didn't care, so we need to support both. | |||
2014-01-09 | logind: wait for the user service to finish startup before completing login ↵ | Lennart Poettering | |
attempt | |||
2014-01-08 | driverd: fix use-after-free error when maintaining match lists | Lennart Poettering | |
2014-01-08 | Revert "bus-driverd: do not track identical matches" | Kay Sievers | |
This reverts commit 234e28aa1cd37dee597c719ac5ca004c6215d28c. | |||
2014-01-08 | bus: export bus address also when compiled without kdbus | Mantas Mikulėnas | |
It was removed from user@.service, so it should be added here. | |||
2014-01-08 | bus: use existing macros from def.h | Mantas Mikulėnas | |
2014-01-08 | bus-driverd: do not track identical matches | Kay Sievers | |
Identical matches are only one time in the hash map but multiple times in the list; when removing, the hash will be empty but the list still has entries. Not adding dupicates to the list should keep us in sync and prevent hitting the assert. | |||
2014-01-08 | bus-driverd: properly reply to UpdateActivationEnvironment call | Kay Sievers | |
2014-01-08 | dbus1-generator: install user version | Kay Sievers | |
2014-01-08 | pam_systemd: export DBUS_SESSION_BUS_ADDRESS | Kay Sievers | |
2014-01-08 | bus: allow omitting quotes for values in match strings | Lennart Poettering | |
dbus-daemon allows this, the dbus specification doesn't explicitly say anything about it, so let's follow dbus-daemon on this. | |||
2014-01-08 | update TODO | Lennart Poettering | |
2014-01-08 | bus-driverd: implement UpdateActivationEnvironment method | Kay Sievers | |
2014-01-07 | man: document label escaping functions | Zbigniew Jędrzejewski-Szmek | |
2014-01-07 | man: fix bogus description of sd_bus_creds_has_*_cap | Zbigniew Jędrzejewski-Szmek | |
2014-01-07 | dbus1-generator: fix copy-pasto | Zbigniew Jędrzejewski-Szmek | |
2014-01-07 | sleep.c: fix typo | Michele Curti | |
2014-01-07 | man: document sd-bus error functions | Zbigniew Jędrzejewski-Szmek | |
2014-01-08 | bus-driverd: support user mode | Kay Sievers | |
2014-01-08 | bus-proxyd: support --user bus address | Kay Sievers | |
2014-01-07 | keymap: Recognize different Toshiba Satellite capitalizations | Martin Pitt | |
https://launchpad.net/bugs/665918 | |||
2014-01-06 | hwdb: fix match for Thinkpad X201 tablet | AppleBloom | |
https://bugs.freedesktop.org/show_bug.cgi?id=71929 | |||
2014-01-06 | hwdb: remove duplicate entry for Samsung 700Z | Dmitry Pisklov | |
keyboardbrightnessup/down are not even real keys. https://bugs.freedesktop.org/show_bug.cgi?id=72311 | |||
2014-01-06 | hwdb: add Samsung 700G | Dmitry Pisklov | |
https://bugs.freedesktop.org/show_bug.cgi?id=72311 | |||
2014-01-06 | hwdb: change key mappings for Samsung 90X3A | Raudi | |
The Key codes didn't match with the described key. Also the key identifier strings were missing. I hope I chose appropriate ones. https://bugs.freedesktop.org/show_bug.cgi?id=70296 |