mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
memory: Have memory_region_init_ram() handler return a boolean
Following the example documented since commit e3fe3988d7
("error:
Document Error API usage rules"), have memory_region_init_ram()
return a boolean indicating whether an error is set or not.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Message-Id: <20231120213301.24349-7-philmd@linaro.org>
This commit is contained in:
parent
d3143bd531
commit
fe5f33d6b0
2 changed files with 7 additions and 3 deletions
|
@ -1582,8 +1582,10 @@ void memory_region_init_iommu(void *_iommu_mr,
|
|||
* give the RAM block a unique name for migration purposes.
|
||||
* We should lift this restriction and allow arbitrary Objects.
|
||||
* If you pass a non-NULL non-device @owner then we will assert.
|
||||
*
|
||||
* Return: true on success, else false setting @errp with error.
|
||||
*/
|
||||
void memory_region_init_ram(MemoryRegion *mr,
|
||||
bool memory_region_init_ram(MemoryRegion *mr,
|
||||
Object *owner,
|
||||
const char *name,
|
||||
uint64_t size,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue