From 2cd651066133e289e7acb01ac4b54645a87296ca Mon Sep 17 00:00:00 2001 From: Susant Sahani Date: Mon, 2 Mar 2020 15:43:42 +0900 Subject: [PATCH 1/2] man: fix typo --- man/systemd.network.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/systemd.network.xml b/man/systemd.network.xml index 209787bf1b..7d02b11d20 100644 --- a/man/systemd.network.xml +++ b/man/systemd.network.xml @@ -2519,7 +2519,7 @@ PacketLimit= - Specifies the hard lmit on the queue size in number of packets. When this limit is reached, incoming packets are + Specifies the hard limit on the queue size in number of packets. When this limit is reached, incoming packets are dropped. An unsigned integer ranges 0 to 4294967294. Defaults to unset and kernel's default is used. From 834ea1a4665fca6b31e605ac1cfa8eba7ea614a8 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 18 Feb 2020 00:12:22 +0900 Subject: [PATCH 2/2] test-network: remove unnecessary dummy interface --- test/test-network/systemd-networkd-tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index 6cc09235c6..97488243ff 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -149,6 +149,7 @@ def expectedFailureIfAlternativeNameIsNotAvailable(): def f(func): call('ip link add dummy98 type dummy', stderr=subprocess.DEVNULL) rc = call('ip link prop add dev dummy98 altname hogehogehogehogehoge', stderr=subprocess.DEVNULL) + call('ip link del dummy98', stderr=subprocess.DEVNULL) if rc == 0: return func else: