From: Gao feng Date: Wed, 28 Aug 2013 04:10:16 +0000 (+0800) Subject: blcokio bandwidth: add missing set of CGroupBlockIODeviceBandwidth's read X-Git-Tag: v207~71 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=e862b60f1c77bc12bf49475930f79ce68489828a;p=elogind.git blcokio bandwidth: add missing set of CGroupBlockIODeviceBandwidth's read BlockIOReadBandwidth and BlockIOWriteBandwidth both use config_parse_blockio_bandwidth to set up CGroupBlockIODeviceBandwidth, We should set the read value based on the left values in config files. --- diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index e5fc4a3bd..471468795 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -2253,6 +2253,7 @@ int config_parse_blockio_bandwidth( b->path = path; path = NULL; b->bandwidth = (uint64_t) bytes; + b->read = streq("BlockIOReadBandwidth", lvalue); LIST_PREPEND(CGroupBlockIODeviceBandwidth, device_bandwidths, c->blockio_device_bandwidths, b);