summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* build-sys: prepare release 192v192Lennart Poettering2012-09-252-4/+21
|
* selinux: use standard D-Bus error id for access deniedLennart Poettering2012-09-242-4/+3
|
* macro: increase VA_FORMAT_ADVANCE type array and hit assert when it is reachedLennart Poettering2012-09-241-2/+4
|
* journal: also use new VA_FORMAT_ADVANCE() macro in sd_journal_send()Lennart Poettering2012-09-241-1/+8
|
* log: fix repeated invocation of vsnprintf()/vaprintf() in log_struct()Lennart Poettering2012-09-244-2/+76
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=55213
* update TODOLennart Poettering2012-09-241-0/+10
|
* rules: only mark MD disks, not partitions, with SYSTEMD_READY=0Kay Sievers2012-09-241-2/+2
|
* journald: always pass first entry timestamp back from journal_file_verify()Lennart Poettering2012-09-243-12/+12
|
* journalctl: print correct timespan in verifyMirco Tischler2012-09-241-1/+1
| | | | | | The old code used a timestamp to print a timespan for unsealed journalfiles, incorrectly showing things like 2230 days of unsealed entries. Print the timespan between the first and last entry instead.
* util: don't export parsed_columnsLennart Poettering2012-09-241-1/+2
|
* journal: set seal even for readonly journalfilesMirco Tischler2012-09-241-2/+1
| | | | | journalctl needs to know wether the file has been sealed to be able to do verification.
* journalctl: reset cached column count on SIGWINCHDave Reisner2012-09-243-1/+10
| | | | | | | This requires a little bit of tip-toeing around to explicitly avoid touching the environment from a sig handler. Instead, simply create a function to reset the var to its "unset" state, allowing the next call to columns() to recalculate and cache the new value.
* mount: simplify device node conditions a bitLennart Poettering2012-09-241-10/+12
|
* mount: only run fsck for actual device nodesLennart Poettering2012-09-241-1/+3
|
* main: don't try to mout cpuset with cpu+cpuacct anymoreLennart Poettering2012-09-242-10/+30
| | | | | | Turns out cpuset needs explicit initialization before we could make use of it. Thus mounting cpuset with cpu/cpuacct would make it impossible to just create a group in "cpu" and start it.
* Revert "comment out uncommitted test source code"Lennart Poettering2012-09-241-4/+4
| | | | | | This reverts commit b8bc868009372deb2f30263322572723e5968842. Added the test file now.
* journal: add missing test fileLennart Poettering2012-09-242-0/+80
|
* NEWS: fix some typosLennart Poettering2012-09-231-3/+3
|
* comment out uncommitted test source codeKay Sievers2012-09-231-4/+4
|
* udev: free fd before return in accelerometer.cLukas Nykryn2012-09-231-1/+3
|
* udev: free fd before return in scsi_serial.cLukas Nykryn2012-09-231-1/+2
|
* udev: free rule structure on errorVáclav Pavlín2012-09-231-18/+14
|
* udev: check return value of writeVáclav Pavlín2012-09-231-1/+4
|
* udev: check return value of symlinkVáclav Pavlín2012-09-231-1/+4
|
* libudev: check return value of renameVáclav Pavlín2012-09-231-1/+4
|
* udev: check malloc return in collect/collect.cVáclav Pavlín2012-09-231-3/+22
| | | | Returns from no memory checks updated with log_oom call
* bash-completion: fix whitespaceDave Reisner2012-09-211-6/+6
| | | | Use spaces for indentation instead of tabs.
* bash-completion: add rumidentary support for journalctlDave Reisner2012-09-211-0/+51
|
* journal: bring mmap cache prototype in syncLennart Poettering2012-09-221-1/+1
|
* build-sys: prepare release 191v191Lennart Poettering2012-09-213-7/+52
|
* journal: always keep marked mmap windows aroundLennart Poettering2012-09-211-2/+2
|
* missing: Fix compilation error due to wrong __NR_name_to_handle_at definitionEelco Dolstra2012-09-211-4/+4
| | | | | "__NR_name_to_handle" should read "__NR_name_to_handle_at". This fixes a compilation error on systems with older kernel headers.
* journald: log how big the journal files may growLennart Poettering2012-09-212-6/+20
|
* journalctl: make the argument to -n optionalLennart Poettering2012-09-212-14/+21
|
* journal: completely rework the mmap cache as I too dumb to actually ↵Lennart Poettering2012-09-215-457/+341
| | | | | | | | | | understand it Instead of doing hand optimized fd bisect arrays just use plain old hashmaps. Now I can understand my own code again. Yay! As a side effect this should fix some bad memory accesses caused by accesses after mmap(), introduced in 189.
* multi-seat-x: drop a lot of unnecessary codeLennart Poettering2012-09-212-90/+7
|
* sysctl: always return the last error we encounteredLennart Poettering2012-09-211-9/+9
|
* nspawn: document why we don't check resolv.conf mount errorsLennart Poettering2012-09-211-0/+2
|
* nspawn: we can't overmount /etc/localtime anymore since it's usually a ↵Lennart Poettering2012-09-211-9/+42
| | | | | | symlink now Create the right symlink if possible for /etc/localtime
* hwclock: add missing OOM checkLennart Poettering2012-09-211-0/+5
|
* pam: document that we don't do error checking when parsing vtnrLennart Poettering2012-09-211-0/+1
|
* journal: don't allow journal_file_open() to be called with ret being NULLLennart Poettering2012-09-211-3/+2
|
* login: missing break for getopt ARG_NO_ASK_PASSWORD in loginctlLukas Nykryn2012-09-211-0/+1
|
* sysctl: fix error code handlingLukas Nykryn2012-09-211-0/+2
| | | | | After if (r <= 0) r can't be 0 so if (k < 0 && r == 0) never happens.
* modules-load: initalize files to nullVáclav Pavlín2012-09-211-1/+1
|
* locale: make sure that l is freedVáclav Pavlín2012-09-211-1/+3
|
* login: check return value of session_get_idle_hintVáclav Pavlín2012-09-211-1/+5
|
* logind: check return value, log warning on errorVáclav Pavlín2012-09-212-2/+6
|
* cgtop: missing '-'Václav Pavlín2012-09-211-1/+1
| | | | | | Return codes in systemd are negated and if (r < 0) if (r == ENOENT) was never true.
* multi-seat-x: drop framebuffer specific stuff, as we have a DRM driver nowDave Airlie2012-09-211-7/+1
|