cardoe 14/05/11 15:21:49 Modified: libvirt-1.2.3.ebuild ChangeLog Log: Add checks for kernel support for the guest bandwidth limiting feature. Research into this and the work done by Dan Moulding <[email protected]> (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 1CE396377CFE7E2B!)
Revision Changes Path 1.4 app-emulation/libvirt/libvirt-1.2.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-1.2.3.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-1.2.3.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-1.2.3.ebuild?r1=1.3&r2=1.4 Index: libvirt-1.2.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.3.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- libvirt-1.2.3.ebuild 21 Apr 2014 08:00:15 -0000 1.3 +++ libvirt-1.2.3.ebuild 11 May 2014 15:21:49 -0000 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.3.ebuild,v 1.3 2014/04/21 08:00:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.3.ebuild,v 1.4 2014/05/11 15:21:49 cardoe Exp $ EAPI=5 @@ -157,6 +157,16 @@ ~NETFILTER_XT_MARK " +BWLMT_CONFIG_CHECK=" + ~BRIDGE_EBT_NAT + ~NET_SCH_HTB + ~NET_SCH_SFQ + ~NET_SCH_INGRESS + ~NET_CLS_FW + ~NET_CLS_U32 + ~NET_ACT_POLICE +" + MACVTAP_CONFIG_CHECK=" ~MACVTAP" LVM_CONFIG_CHECK=" ~BLK_DEV_DM ~DM_SNAPSHOT ~DM_MULTIPATH" @@ -185,6 +195,8 @@ use lxc && CONFIG_CHECK+="${LXC_CONFIG_CHECK}" use macvtap && CONFIG_CHECK+="${MACVTAP_CONFIG_CHECK}" use virt-network && CONFIG_CHECK+="${VIRTNET_CONFIG_CHECK}" + # Bandwidth Limiting Support + use virt-network && CONFIG_CHECK+="${BWLMT_CONFIG_CHECK}" if [[ -n ${CONFIG_CHECK} ]]; then linux-info_pkg_setup fi 1.360 app-emulation/libvirt/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.360&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.360&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?r1=1.359&r2=1.360 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v retrieving revision 1.359 retrieving revision 1.360 diff -u -r1.359 -r1.360 --- ChangeLog 21 Apr 2014 08:00:15 -0000 1.359 +++ ChangeLog 11 May 2014 15:21:49 -0000 1.360 @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/libvirt # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.359 2014/04/21 08:00:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.360 2014/05/11 15:21:49 cardoe Exp $ + + 11 May 2014; Doug Goldstein <[email protected]> libvirt-1.2.3.ebuild: + Add checks for kernel support for the guest bandwidth limiting feature. + Research into this and the work done by Dan Moulding + <[email protected]> 21 Apr 2014; Agostino Sarubbo <[email protected]> libvirt-1.1.3.4.ebuild, libvirt-1.2.3.ebuild:
