diff options
author | Eric Blake <eblake@redhat.com> | 2018-11-15 15:17:52 -0600 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2018-12-11 15:45:22 -0200 |
commit | aec90730fbfd056469e16c5e384d215f43f0850b (patch) | |
tree | 51bf2db56ea043d58fff92b135e1664ecce5d3d9 /include/sysemu | |
parent | f5878b0381106041e0eb0ad4a45751d49e9115af (diff) |
numa: Match struct to typedef name
There's no reason to violate our naming conventions by having a
struct with a different name than its typedef. Messed up since
its introduction in commit 8c85901e, but made more obvious when
commit 3bfe5716 promoted it to typedefs.h.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20181115211752.1295571-3-eblake@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/numa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/numa.h b/include/sysemu/numa.h index 21713b7e2f..b6ac7de43e 100644 --- a/include/sysemu/numa.h +++ b/include/sysemu/numa.h @@ -9,7 +9,7 @@ extern int nb_numa_nodes; /* Number of NUMA nodes */ extern bool have_numa_distance; -struct node_info { +struct NodeInfo { uint64_t node_mem; struct HostMemoryBackend *node_memdev; bool present; |