summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2019-09-26 00:12:20 +0900
committerGitHub <noreply@github.com>2019-09-26 00:12:20 +0900
commit10b843efb006da57c47cb07d48a2b21dbdfba8eb (patch)
treeb2aa47563c8e166e9d353baea14cf799d63f7bad
parent37afb0ac787783a1635165b8a4e3ba5fbd007dfd (diff)
parent35bdba21151798c8204661726c21ae4a49e4662b (diff)
downloadsystemd-10b843efb006da57c47cb07d48a2b21dbdfba8eb.tar.gz
Merge pull request #13649 from keszybz/arphrd-minimization
Arphrd minimization
-rw-r--r--src/basic/arphrd-list.c15
-rw-r--r--src/basic/arphrd-list.h2
-rw-r--r--src/basic/arphrd-to-name.awk11
-rw-r--r--src/test/test-arphrd-list.c24
-rw-r--r--src/test/test-mountpoint-util.c7
5 files changed, 21 insertions, 38 deletions
diff --git a/src/basic/arphrd-list.c b/src/basic/arphrd-list.c
index b9a9cb7ed4..7e5570ab9f 100644
--- a/src/basic/arphrd-list.c
+++ b/src/basic/arphrd-list.c
@@ -12,17 +12,6 @@ static const struct arphrd_name* lookup_arphrd(register const char *str, registe
#include "arphrd-from-name.h"
#include "arphrd-to-name.h"
-const char *arphrd_to_name(int id) {
-
- if (id <= 0)
- return NULL;
-
- if ((size_t) id >= ELEMENTSOF(arphrd_names))
- return NULL;
-
- return arphrd_names[id];
-}
-
int arphrd_from_name(const char *name) {
const struct arphrd_name *sc;
@@ -34,7 +23,3 @@ int arphrd_from_name(const char *name) {
return sc->id;
}
-
-int arphrd_max(void) {
- return ELEMENTSOF(arphrd_names);
-}
diff --git a/src/basic/arphrd-list.h b/src/basic/arphrd-list.h
index 5dcfe5e12d..aae56bc88c 100644
--- a/src/basic/arphrd-list.h
+++ b/src/basic/arphrd-list.h
@@ -3,5 +3,3 @@
const char *arphrd_to_name(int id);
int arphrd_from_name(const char *name);
-
-int arphrd_max(void);
diff --git a/src/basic/arphrd-to-name.awk b/src/basic/arphrd-to-name.awk
index 5a35673e2c..db1c739abb 100644
--- a/src/basic/arphrd-to-name.awk
+++ b/src/basic/arphrd-to-name.awk
@@ -1,9 +1,12 @@
BEGIN{
- print "static const char* const arphrd_names[] = { "
+ print "const char *arphrd_to_name(int id) {"
+ print " switch(id) {"
}
-!/CISCO/ {
- printf " [ARPHRD_%s] = \"%s\",\n", $1, $1
+!/^HDLC$/ {
+ printf " case ARPHRD_%s: return \"%s\";\n", $1, $1
}
END{
- print "};"
+ print " default: return NULL;"
+ print " }"
+ print "}"
}
diff --git a/src/test/test-arphrd-list.c b/src/test/test-arphrd-list.c
index 02bb25b695..d7352b54e0 100644
--- a/src/test/test-arphrd-list.c
+++ b/src/test/test-arphrd-list.c
@@ -1,31 +1,27 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <linux/if_arp.h>
-#include <string.h>
-#include "macro.h"
#include "string-util.h"
+#include "tests.h"
-_unused_ \
-static const struct arphrd_name* lookup_arphrd(register const char *str, register GPERF_LEN_TYPE len);
-
-#include "arphrd-from-name.h"
#include "arphrd-list.h"
-#include "arphrd-to-name.h"
int main(int argc, const char *argv[]) {
+ test_setup_logging(LOG_INFO);
+
+ for (int i = 0; i <= ARPHRD_VOID + 1; i++) {
+ const char *name;
- unsigned i;
+ name = arphrd_to_name(i);
+ if (name) {
+ log_info("%i: %s", i, name);
- for (i = 1; i < ELEMENTSOF(arphrd_names); i++) {
- if (arphrd_names[i]) {
- assert_se(streq(arphrd_to_name(i), arphrd_names[i]));
- assert_se(arphrd_from_name(arphrd_names[i]) == (int) i);
+ assert_se(arphrd_from_name(name) == i);
}
}
- assert_se(arphrd_to_name(arphrd_max()) == NULL);
- assert_se(arphrd_to_name(0) == NULL);
+ assert_se(arphrd_to_name(ARPHRD_VOID + 1) == NULL);
assert_se(arphrd_from_name("huddlduddl") == -EINVAL);
assert_se(arphrd_from_name("") == -EINVAL);
diff --git a/src/test/test-mountpoint-util.c b/src/test/test-mountpoint-util.c
index 8c5aac8eb7..499873f0ce 100644
--- a/src/test/test-mountpoint-util.c
+++ b/src/test/test-mountpoint-util.c
@@ -81,10 +81,11 @@ static void test_mnt_id(void) {
continue;
}
- log_debug("mnt ids of %s are %i, %i\n", p, mnt_id, mnt_id2);
-
- if (mnt_id == mnt_id2)
+ if (mnt_id == mnt_id2) {
+ log_debug("mnt ids of %s is %i\n", p, mnt_id);
continue;
+ } else
+ log_debug("mnt ids of %s are %i, %i\n", p, mnt_id, mnt_id2);
/* The ids don't match? If so, then there are two mounts on the same path, let's check if
* that's really the case */