aboutsummaryrefslogtreecommitdiff
path: root/vswitchd/system-stats.c
AgeCommit message (Collapse)Author
2011-11-01Fix build on FreeBSD.Edward Tomasz NapieraƂa
Patch below fixes build on FreeBSD; tested on 10.0-CURRENT. Signed-off-by: Edward Tomasz Napierala <trasz@FreeBSD.org> Signed-off-by: Ben Pfaff <blp@nicira.com>
2011-03-13system-stats: Don't bother calling kill() after read_pidfile().Justin Pettit
The function read_pidfile() will only return a PID if the process is still running, so there's no reason to send a signal to check again. Suggested-by: Andrew Evans <aevans@nicira.com>
2010-11-29Make installation directories overridable at runtime.Ben Pfaff
This makes it possible to run tests that need access to installation directories, such as the rundir, without having access to the actual installation directories (/var/run is generally not world-writable), by setting environment variables. This is not a good way to do things in general--usually it would be better to choose the correct directories at configure time--so for now this is undocumented.
2010-10-29vlog: Make client supply semicolon for VLOG_DEFINE_THIS_MODULE.Ben Pfaff
It's kind of odd for VLOG_DEFINE_THIS_MODULE to supply its own semicolon, so this commit switches to the more common form.
2010-09-23ovs-vswitchd: Export system stats through Open_vSwitch table.Ben Pfaff
This is intended to provide controllers enough information to determine whether a switch is overloaded or busted, to enable them to spread load fairly across a group of switches. Feature #2421. CC: Peter Balland <peter@nicira.com>