895756d9b9
Change-Id: Idcb903002aec823aa1e546e8e90815ebac614e5b
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
source $LIBDIR/ml2_drivers/sriovnicswitch
|
|
|
|
|
|
function configure_qos_ml2 {
|
|
neutron_ml2_extension_driver_add "qos"
|
|
}
|
|
|
|
|
|
function configure_ml2 {
|
|
OIFS=$IFS;
|
|
IFS=",";
|
|
mechanism_drivers_array=($Q_ML2_PLUGIN_MECHANISM_DRIVERS);
|
|
IFS=$OIFS;
|
|
for mechanism_driver in "${mechanism_drivers_array[@]}"; do
|
|
if [ "$(type -t configure_ml2_$mechanism_driver)" = function ]; then
|
|
configure_ml2_$mechanism_driver
|
|
fi
|
|
done
|
|
}
|
|
|
|
function configure_ml2_extension_drivers {
|
|
if is_neutron_legacy_enabled; then
|
|
# NOTE(yamamoto): This overwrites what neutron-legacy set,
|
|
# with the latest set of drivers.
|
|
# While we modifies Q_ML2_PLUGIN_EXT_DRIVERS (via
|
|
# neutron_ml2_extension_driver_add calls) in the post-config phase,
|
|
# lib/neutron-legcay populates this in "configure_neutron", which is
|
|
# before post-config.
|
|
# REVISIT(yamamoto): Probably this ought to be in lib/neutron-legcay
|
|
iniset /$NEUTRON_CORE_PLUGIN_CONF ml2 extension_drivers ${Q_ML2_PLUGIN_EXT_DRIVERS}
|
|
fi
|
|
}
|