Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-16 | loopback-setup: remove stray hunk | Tom Gundersen | |
2013-12-16 | network: use SETLINK to bring up interfaces | Tom Gundersen | |
2013-12-16 | rtnl: replace message_append by typesafe versions | Tom Gundersen | |
2013-12-16 | rtnl: simplify link_new() | Tom Gundersen | |
Drop most of the arguments and instead introduce link_set_{flags,type}. | |||
2013-11-14 | loopback-setup: move to rtnl | Tom Gundersen | |
This should be equivalent to the old behavior. | |||
2013-04-18 | move _cleanup_ attribute in front of the type | Harald Hoyer | |
http://lists.freedesktop.org/archives/systemd-devel/2013-April/010510.html | |||
2013-04-05 | Use initalization instead of explicit zeroing | Zbigniew Jędrzejewski-Szmek | |
Before, we would initialize many fields twice: first by filling the structure with zeros, and then a second time with the real values. We can let the compiler do the job for us, avoiding one copy. A downside of this patch is that text gets slightly bigger. This is because all zero() calls are effectively inlined: $ size build/.libs/systemd text data bss dec hex filename before 897737 107300 2560 1007597 f5fed build/.libs/systemd after 897873 107300 2560 1007733 f6075 build/.libs/systemd … actually less than 1‰. A few asserts that the parameter is not null had to be removed. I don't think this changes much, because first, it is quite unlikely for the assert to fail, and second, an immediate SEGV is almost as good as an assert. | |||
2013-03-31 | Modernization | Zbigniew Jędrzejewski-Szmek | |
Use _cleanup_ and wrap lines to ~80 chars and such. | |||
2012-04-13 | loopback: handle EPERM more gracefully | Lennart Poettering | |
2012-04-12 | build-sys: move *-setup out of shared to avoid selinux being pulled in | Lennart Poettering | |