From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 4/6] QoS: Drop support for hardcoded ACK rules Date: Mon, 04 Oct 2021 18:52:20 +0100 Message-ID: <20211004175222.9208-4-michael.tremer@ipfire.org> In-Reply-To: <20211004175222.9208-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1115384852375250125==" List-Id: --===============1115384852375250125== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This feature has to go in order to take advantage of CONNMARK which will drastically decrease CPU load when passing packets. We no longer will see every packet in the QOS-INC chain in order to change classification of that packet. It is also party counter-intuitive to have parts of one connection in one class and the corresponding ACK packets in another. Signed-off-by: Michael Tremer --- config/qos/makeqosscripts.pl | 27 --------------------------- html/cgi-bin/qos.cgi | 22 ++-------------------- 2 files changed, 2 insertions(+), 47 deletions(-) diff --git a/config/qos/makeqosscripts.pl b/config/qos/makeqosscripts.pl index 5bdd5b811..230dc3265 100644 --- a/config/qos/makeqosscripts.pl +++ b/config/qos/makeqosscripts.pl @@ -72,7 +72,6 @@ $qossettings{'DEF_OUT_SPD'} =3D ''; $qossettings{'DEF_INC_SPD'} =3D ''; $qossettings{'DEFCLASS_INC'} =3D ''; $qossettings{'DEFCLASS_OUT'} =3D ''; -$qossettings{'ACK'} =3D ''; $qossettings{'RED_DEV'} =3D `cat /var/ipfire/red/iface`; $qossettings{'IMQ_DEV'} =3D 'imq0'; $qossettings{'TOS'} =3D ''; @@ -80,7 +79,6 @@ $qossettings{'VALID'} =3D 'yes'; =20 &General::readhash("${General::swroot}/qos/settings", \%qossettings); =20 -my $ACK_MARK =3D ($qossettings{'ACK'} << $QOS_OUT_SHIFT) . "/$QOS_OUT_MASK"; my $DEF_OUT_MARK =3D ($qossettings{'DEFCLASS_OUT'} << $QOS_OUT_SHIFT) . "/$Q= OS_OUT_MASK"; my $DEF_INC_MARK =3D ($qossettings{'DEFCLASS_INC'} << $QOS_INC_SHIFT) . "/$Q= OS_INC_MASK"; =20 @@ -224,31 +222,6 @@ print < @@ -668,7 +666,6 @@ END
$Lang::tr{'downlink std class'}: $qossettings{'DEFCLASS_INC'}
$Lang::tr{'uplink std class'}: $qossettings{'DEFCLASS_OUT'} -
ACKs: $qossettings{'ACK'}

@@ -692,7 +689,7 @@ if ( ($qossettings{'OUT_SPD'} eq '') || ($qossettings{'IN= C_SPD'} eq '') ) { exit } =20 -if ( ($qossettings{'DEFCLASS_INC'} eq '') || ($qossettings{'DEFCLASS_OUT'} e= q '') || ($qossettings{'ACK'} eq '') ) { +if ( ($qossettings{'DEFCLASS_INC'} eq '') || ($qossettings{'DEFCLASS_OUT'} e= q '') ) { &changedefclasses(); &Header::closebigbox(); &Header::closepage(); @@ -742,21 +739,6 @@ END else { print "\n"; } } print <  - -
- -
$Lang::tr{'enter ack class'} -
ACKs:
--=20 2.31.0 --===============1115384852375250125==--