repo.or.cz
/
qemu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
blockjob: Update description of the 'device' field in the QMP API
[qemu.git]
/
stubs
/
uuid.c
blob
92ad71783100c983d23091f25ec45887934c8f6c
1
#include
"qemu/osdep.h"
2
#include
"qemu-common.h"
3
#include
"sysemu/sysemu.h"
4
#include
"qmp-commands.h"
5
6
UuidInfo
*
qmp_query_uuid
(
Error
**
errp
)
7
{
8
UuidInfo
*
info
=
g_malloc0
(
sizeof
(*
info
));
9
10
info
->
UUID
=
g_strdup
(
UUID_NONE
);
11
return
info
;
12
}
13