Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-14 | udev/ata_id: zero out variable properly | Zbigniew Jędrzejewski-Szmek | |
b8a2b0f76 'use initalization instead of explicit zeroing' introduced a bug where only the first sizeof(uint_t*) bytes would be zeroed out, instead of the whole array. | |||
2013-04-14 | bus: remove two unused variables | Zbigniew Jędrzejewski-Szmek | |
2013-04-14 | systemd-python: fix formatting in docstring | Zbigniew Jędrzejewski-Szmek | |
2013-04-14 | readahead-analyze: avoid division-by-0 | Zbigniew Jędrzejewski-Szmek | |
Also remove a few casts and use _cleanup_fclose_ to simplify logic. | |||
2013-04-14 | MurmurHash3: actually inline functions | Zbigniew Jędrzejewski-Szmek | |
"__attribute__((always_inline))" does not replace "inline" and they still need to be used together. This fixes "always_inline function might not be inlinable [-Wattributes]" warning in gcc 4.7 Idea-from-patch-by: Siarhei Siamashka <siarhei.siamashka@gmail.com> | |||
2013-04-14 | kdbus: generare bloom filters properly for messages we send | Lennart Poettering | |
2013-04-14 | kdbus: update kdbus.h from upstream | Lennart Poettering | |
2013-04-14 | bus: always explicitly rewind read index before passing message to caller or ↵ | Lennart Poettering | |
callback | |||
2013-04-14 | bus: fix counting of argN= matches | Lennart Poettering | |
2013-04-14 | util: introduce alloca0() and use it at a number of places | Lennart Poettering | |
2013-04-14 | bus: zero data structure and catch up with error value change | Kay Sievers | |
2013-04-14 | kdbus: also parse cmdline message attribute | Lennart Poettering | |
2013-04-14 | kdbus: make name acquirement ioctls valgrind clean | Lennart Poettering | |
2013-04-13 | Include <fcntl.h> instead of <sys/fcntl.h> | Zbigniew Jędrzejewski-Szmek | |
<fcntl.h> is POSIX. On Linux, <sys/fcntl.h> simply includes <fcntl.h>, so there should be on difference. On Android likewise, except that there is some more stuff. QNX has only <fcntl.h>. https://bugs.freedesktop.org/show_bug.cgi?id=63423 | |||
2013-04-13 | fileio: in envfiles, do not skip lines following empty lines | Zbigniew Jędrzejewski-Szmek | |
https://bugs.freedesktop.org/show_bug.cgi?id=63477 | |||
2013-04-13 | Remove a few NULLs | Zbigniew Jędrzejewski-Szmek | |
Just {} is used in a lot of places now, and there's nothing special abose those few. | |||
2013-04-13 | kdbus: parse even more kernel meta data fields | Lennart Poettering | |
2013-04-13 | kdbus: update to newest kdbus API | Lennart Poettering | |
2013-04-12 | journal: fix broken tags _SOURCE_REALTIME_TIMESTAMP and _MACHINE_ID | Mirco Tischler | |
2013-04-12 | systemctl: new verb 'list-sockets' | Zbigniew Jędrzejewski-Szmek | |
LISTEN UNIT ACTIVATES /dev/initctl systemd-initctl.socket systemd-initctl.service /dev/log systemd-journald.socket systemd-journald.service ... [::]:19531 systemd-journal-gatewayd.socket systemd-journal-gatewayd.service kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service 17 sockets listed. Pass --all to see loaded but inactive sockets, too. | |||
2013-04-12 | util: add wrapper for realloc to avoid specyfing type | Zbigniew Jędrzejewski-Szmek | |
2013-04-12 | kdbus: make our little test pass cleanly again | Lennart Poettering | |
2013-04-12 | kbdus: add null bloom filter to our messages | Lennart Poettering | |
This makes things work again with the requirements of the kernel on bloom filters. | |||
2013-04-12 | kdbus: use a valid service name for testing | Lennart Poettering | |
2013-04-12 | kdbus: update kdbus.h from upstream | Lennart Poettering | |
2013-04-12 | kdbus: make sure msg structure is properly initialized | Lennart Poettering | |
2013-04-12 | bus: don't calculate kmsg message too large | Lennart Poettering | |
2013-04-12 | bus: add kdbus test for name registry | Lennart Poettering | |
2013-04-12 | dbus: fill in kdbus sender+destination from kdbus data | Lennart Poettering | |
2013-04-12 | bus: rename KDBUS_CMD_FNAME_POLICY_NONE -> KDBUS_CMD_FNAME_POLICY_OPEN | Kay Sievers | |
2013-04-12 | bus: test - re-enable check for returned error | Kay Sievers | |
2013-04-12 | bus: align the buffer we pass to the kernel | Kay Sievers | |
2013-04-12 | bus: create kdbus bus without an active policy | Kay Sievers | |
2013-04-12 | bus: implement basic name registration with kdbus | Lennart Poettering | |
2013-04-12 | bus: be nice to people who don't have kdbus in their kernels | Lennart Poettering | |
2013-04-12 | bus: make sure things still compile fine without valgrind's headers installed | Lennart Poettering | |
2013-04-12 | bus: make the kdbus code valgrind clean | Lennart Poettering | |
2013-04-12 | bus: parse and expose kdbus message timestamps | Lennart Poettering | |
2013-04-12 | bus: also parse PID starttime out of kdbus message | Lennart Poettering | |
2013-04-12 | bus: parse uid/gid/pid/tid meta data from kdbus messages | Lennart Poettering | |
2013-04-12 | bus: make kdbus work so that we can exchange real messages | Lennart Poettering | |
We have ignition, we have tremendous fire! | |||
2013-04-11 | hwclock: use _cleanup_ to simplify function | Zbigniew Jędrzejewski-Szmek | |
2013-04-11 | errno is positive | Zbigniew Jędrzejewski-Szmek | |
Make sure we compare errno against positive error codes. The ones in hwclock.c and install.c can have an impact, the rest are unlikely to be hit or in code that isn't widely used. Also check that errno > 0, to help gcc know that we are returning a negative error code. | |||
2013-04-11 | systemctl: show the name of failing unit in red | Zbigniew Jędrzejewski-Szmek | |
It makes it easier to pick out problematic unit names from a long list. | |||
2013-04-11 | systemctl: allow multiple arguments to --type | Zbigniew Jędrzejewski-Szmek | |
This mirrors --property, and is generally useful. New functionality is used in bash completion. In case of zsh completion, new functionality is less useful because of caching. Nevertheless, zsh completion for restart is made to behave more-or-less the same as bash completion. At least sockets can be restarted. | |||
2013-04-12 | bus: fix formatting of bus address | Lennart Poettering | |
2013-04-12 | bus: fix kdbus ioctl invocation | Lennart Poettering | |
2013-04-12 | bus: properly check if kdbus connection worked | Lennart Poettering | |
2013-04-12 | bus: fill in unique name when using kdbus | Lennart Poettering | |
2013-04-12 | bus: add kdbus test case | Lennart Poettering | |