Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-15 | udev: Line buffer 'udev monitor' output (#3733) | Stef Walter | |
Callers of the 'udev monitor' tool expect to see output when an event occurs. The stdio buffering defeats that. This patch switches it to line buffering. | |||
2016-04-08 | udevadm: assert return value | Zbigniew Jędrzejewski-Szmek | |
This mirrors what we do in now(). CID #1351755. | |||
2016-02-23 | tree-wide: minor formatting inconsistency cleanups | Vito Caputo | |
2016-02-10 | tree-wide: remove Emacs lines from all files | Daniel Mack | |
This should be handled fine now by .dir-locals.el, so need to carry that stuff in every file. | |||
2015-12-07 | udev: add emacs header line | Zbigniew Jędrzejewski-Szmek | |
Otherwise emacs wants to use 2-space indentation and other attrocities. | |||
2015-11-16 | tree-wide: sort includes | Thomas Hindoe Paaboel Andersen | |
Sort the includes accoding to the new coding style. | |||
2015-10-25 | util-lib: split out fd-related operations into fd-util.[ch] | Lennart Poettering | |
There are more than enough to deserve their own .c file, hence move them over. | |||
2015-04-10 | shared: add formats-util.h | Ronny Chevalier | |
2015-02-23 | remove unused includes | Thomas Hindoe Paaboel Andersen | |
This patch removes includes that are not used. The removals were found with include-what-you-use which checks if any of the symbols from a header is in use. | |||
2015-01-05 | udevadm,..: make --help output of udev tools more like the output of the ↵ | Lennart Poettering | |
various other tools | |||
2014-11-28 | treewide: use log_*_errno whenever %m is in the format string | Michal Schmidt | |
If the format string contains %m, clearly errno must have a meaningful value, so we might as well use log_*_errno to have ERRNO= logged. Using: find . -name '*.[ch]' | xargs sed -r -i -e \ 's/log_(debug|info|notice|warning|error|emergency)\((".*%m.*")/log_\1_errno(errno, \2/' Plus some whitespace, linewrap, and indent adjustments. | |||
2014-07-29 | udev: place opening { at the same line as the function declaration | Kay Sievers | |
2014-05-15 | Remove unnecessary casts in printfs | Zbigniew Jędrzejewski-Szmek | |
No functional change expected :) | |||
2014-01-31 | use memzero(foo, length); for all memset(foo, 0, length); calls | Greg KH | |
In trying to track down a stupid linker bug, I noticed a bunch of memset() calls that should be using memzero() to make it more "obvious" that the options are correct (i.e. 0 is not the length, but the data to set). So fix up all current calls to memset(foo, 0, length) to memzero(foo, length). | |||
2013-12-24 | log: log_error() and friends add a newline after each line anyway, so avoid ↵ | Lennart Poettering | |
including it in the log strings | |||
2013-12-18 | udevadm: modernization | Zbigniew Jędrzejewski-Szmek | |
2013-12-18 | udevadm,scsi_id: add short options to help strings and to the man page | Zbigniew Jędrzejewski-Szmek | |
Also clean things up a bit here and there. | |||
2013-11-08 | clients: fix some signal handler issues | Lennart Poettering | |
2013-01-09 | udev: move string copy functions to shared/ | Kay Sievers | |
2012-11-12 | use the same email address everywhere | Kay Sievers | |
2012-04-16 | udev: replace ARRAY_SIZE() with ELEMENTSOF() | Kay Sievers | |
2012-04-08 | udev: switch to systemd logging functions | Kay Sievers | |
2012-04-04 | move imported udev into place | Kay Sievers | |