public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [RFC PATCH 2/8] udev: Rename enable_codel to network-aqm
Date: Thu, 02 Dec 2021 12:37:42 +0000	[thread overview]
Message-ID: <20211202123748.2525617-2-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20211202123748.2525617-1-michael.tremer@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 2703 bytes --]

This is a more generic term since CoDel is no longer being used

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/rootfiles/common/udev              | 4 ++--
 config/udev/99-aqm.rules                  | 2 ++
 config/udev/99-codel.rules                | 2 --
 config/udev/{enable_codel => network-aqm} | 0
 lfs/udev                                  | 8 ++++----
 5 files changed, 8 insertions(+), 8 deletions(-)
 create mode 100644 config/udev/99-aqm.rules
 delete mode 100644 config/udev/99-codel.rules
 rename config/udev/{enable_codel => network-aqm} (100%)

diff --git a/config/rootfiles/common/udev b/config/rootfiles/common/udev
index 4a01f3eef..5c1267abe 100644
--- a/config/rootfiles/common/udev
+++ b/config/rootfiles/common/udev
@@ -31,9 +31,9 @@ lib/udev
 lib/udev/ata_id
 lib/udev/cdrom_id
 lib/udev/collect
-lib/udev/enable_codel
 lib/udev/init-net-rules.sh
 lib/udev/mtd_probe
+lib/udev/network-aqm
 lib/udev/network-hotplug-bridges
 lib/udev/network-hotplug-rename
 lib/udev/network-hotplug-vlan
@@ -64,7 +64,7 @@ lib/udev/rules.d/75-probe_mtd.rules
 lib/udev/rules.d/78-sound-card.rules
 lib/udev/rules.d/80-drivers.rules
 lib/udev/rules.d/90-hwrng.rules
-lib/udev/rules.d/99-codel.rules
+lib/udev/rules.d/99-aqm.rules
 lib/udev/rules.d/99-offloading.rules
 lib/udev/scsi_id
 lib/udev/v4l_id
diff --git a/config/udev/99-aqm.rules b/config/udev/99-aqm.rules
new file mode 100644
index 000000000..69c909da7
--- /dev/null
+++ b/config/udev/99-aqm.rules
@@ -0,0 +1,2 @@
+# Call the AQM script
+SUBSYSTEM=="net", RUN+="/lib/udev/network-aqm"
diff --git a/config/udev/99-codel.rules b/config/udev/99-codel.rules
deleted file mode 100644
index d6747ba04..000000000
--- a/config/udev/99-codel.rules
+++ /dev/null
@@ -1,2 +0,0 @@
-# Call the enable codel script.
-SUBSYSTEM=="net", RUN+="/lib/udev/enable_codel"
diff --git a/config/udev/enable_codel b/config/udev/network-aqm
similarity index 100%
rename from config/udev/enable_codel
rename to config/udev/network-aqm
diff --git a/lfs/udev b/lfs/udev
index cfad0398b..3f526a3fa 100644
--- a/lfs/udev
+++ b/lfs/udev
@@ -126,11 +126,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	install -v -m 644 $(DIR_SRC)/config/udev/90-hwrng.rules \
 		/lib/udev/rules.d
 
-	# Install codel rules.
-	install -v -m 644 $(DIR_SRC)/config/udev/99-codel.rules \
+	# Install AQM rules
+	install -v -m 644 $(DIR_SRC)/config/udev/99-aqm.rules \
 		/lib/udev/rules.d
-	install -m 755 $(DIR_SRC)/config/udev/enable_codel \
-		/lib/udev/enable_codel
+	install -m 755 $(DIR_SRC)/config/udev/network-aqm \
+		/lib/udev/network-aqm
 
 	# Install offloading rules
 	install -v -m 644 $(DIR_SRC)/config/udev/99-offloading.rules \
-- 
2.30.2


  reply	other threads:[~2021-12-02 12:37 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-02 12:37 [RFC PATCH 1/8] AQM: Use CAKE as default qdisc where appropriate instead of fq_codel Michael Tremer
2021-12-02 12:37 ` Michael Tremer [this message]
2021-12-02 12:37 ` [RFC PATCH 3/8] QoS: Replace fq_codel by CAKE Michael Tremer
2021-12-02 12:37 ` [RFC PATCH 4/8] network-hotplug-bridges: Fix warning when address doesn't exist Michael Tremer
2021-12-02 12:37 ` [RFC PATCH 5/8] qos.cgi: Reindent change bandwidth window Michael Tremer
2021-12-02 12:37 ` [RFC PATCH 6/8] qos.cgi: Add control to change link-layer encapsulation Michael Tremer
2021-12-02 12:37 ` [RFC PATCH 7/8] network-aqm: Use "conservative" setting for all PPP connections Michael Tremer
2021-12-02 12:37 ` [RFC PATCH 8/8] QoS: Add CAKE profile to commmand line Michael Tremer
2021-12-02 12:42 ` [RFC PATCH 1/8] AQM: Use CAKE as default qdisc where appropriate instead of fq_codel Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211202123748.2525617-2-michael.tremer@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox