summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-02-15 10:02:25 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-03-09 21:47:45 +0100
commit27eb3722e439ccf7ef37ec39592acc9ebc5c687f (patch)
treeac6323fadca53d83eecc870027ea0b4a47f4720c /util
parent33b2b388a54e69ba307356eb8cfdd9894112ae3f (diff)
downloadqemu-27eb3722e439ccf7ef37ec39592acc9ebc5c687f.zip
net: Use id_generate() in the network subsystem, too
We already got a global function called id_generate() to create unique IDs within QEMU. Let's use it in the network subsytem, too, instead of inventing our own ID scheme here. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20210215090225.1046239-1-thuth@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'util')
-rw-r--r--util/id.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/id.c b/util/id.c
index 5addb4460e..ded41c5025 100644
--- a/util/id.c
+++ b/util/id.c
@@ -35,6 +35,7 @@ static const char *const id_subsys_str[ID_MAX] = {
[ID_QDEV] = "qdev",
[ID_BLOCK] = "block",
[ID_CHR] = "chr",
+ [ID_NET] = "net",
};
/*