mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 19:01:14 +00:00
1dd34bbb4b
The xen sexpr config format has long supported specifying vif rate limiting, e.g. (device (vif (mac '00:16:3e:1b:b1:47') (rate '10240KB/s') ... ) ) Add support for mapping rate to and from <bandwidth> in the xenconfig sexpr parser and formatter. rate is mapped to the required 'average' attribute of the <outbound> element, e.g. <interface type='bridge'> ... <bandwidth> <outbound average='10240'/> </bandwidth> </interface> Also add unit tests to check the conversion logic. This patch benefits both the old xen driver and the libxl driver. Both drivers gain support for vif bandwidth when converting to/from domXML and xen-sxpr. In addition, the old xen driver will now be able to handle vif 'rate' setting when communicating with xend.
28 lines
514 B
Plaintext
28 lines
514 B
Plaintext
#
|
|
# These symbols are dependent upon --with-xen via WITH_XEN or --with-libxl via WITH_LIBXL.
|
|
#
|
|
|
|
# xenconfig/xen_sxpr.h
|
|
xenFormatSxpr;
|
|
xenFormatSxprChr;
|
|
xenFormatSxprDisk;
|
|
xenFormatSxprNet;
|
|
xenFormatSxprOnePCI;
|
|
xenFormatSxprSound;
|
|
xenGetDomIdFromSxpr;
|
|
xenGetDomIdFromSxprString;
|
|
xenParseSxpr;
|
|
xenParseSxprChar;
|
|
xenParseSxprSound;
|
|
xenParseSxprString;
|
|
xenParseSxprVifRate;
|
|
|
|
# xenconfig/xen_xm.h
|
|
xenFormatXM;
|
|
xenParseXM;
|
|
|
|
# Let emacs know we want case-insensitive sorting
|
|
# Local Variables:
|
|
# sort-fold-case: t
|
|
# End:
|