diff options
author | Thomas Huth | 2021-02-15 10:02:25 +0100 |
---|---|---|
committer | Laurent Vivier | 2021-03-09 21:47:45 +0100 |
commit | 27eb3722e439ccf7ef37ec39592acc9ebc5c687f (patch) | |
tree | ac6323fadca53d83eecc870027ea0b4a47f4720c /include/qemu | |
parent | MAINTAINERS: Fix the location of tools manuals (diff) | |
download | qemu-27eb3722e439ccf7ef37ec39592acc9ebc5c687f.tar.gz qemu-27eb3722e439ccf7ef37ec39592acc9ebc5c687f.tar.xz qemu-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 'include/qemu')
-rw-r--r-- | include/qemu/id.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/id.h b/include/qemu/id.h index b55c406e69..46b759b284 100644 --- a/include/qemu/id.h +++ b/include/qemu/id.h @@ -5,6 +5,7 @@ typedef enum IdSubSystems { ID_QDEV, ID_BLOCK, ID_CHR, + ID_NET, ID_MAX /* last element, used as array size */ } IdSubSystems; |