mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
libqos: add alloc_init_flags
Allow a generic interface to alloc_init_flags, not just through pc_alloc_init_flags. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 1421698563-6977-6-git-send-email-jsnow@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
f1518d1192
commit
fa02e6084f
3 changed files with 11 additions and 3 deletions
|
@ -285,3 +285,11 @@ QGuestAllocator *alloc_init(uint64_t start, uint64_t end)
|
|||
|
||||
return s;
|
||||
}
|
||||
|
||||
QGuestAllocator *alloc_init_flags(QAllocOpts opts,
|
||||
uint64_t start, uint64_t end)
|
||||
{
|
||||
QGuestAllocator *s = alloc_init(start, end);
|
||||
s->opts = opts;
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue