mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

'event-loop-base' provides basic property handling for all 'AioContext' based event loops. So let's define a new 'MainLoopClass' that inherits from it. This will permit tweaking the main loop's properties through qapi as well as through the command line using the '-object' keyword[1]. Only one instance of 'MainLoopClass' might be created at any time. 'EventLoopBaseClass' learns a new callback, 'can_be_deleted()' so as to mark 'MainLoop' as non-deletable. [1] For example: -object main-loop,id=main-loop,aio-max-batch=<value> Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Acked-by: Markus Armbruster <armbru@redhat.com> Message-id: 20220425075723.20019-3-nsaenzju@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
37 lines
903 B
C
37 lines
903 B
C
/*
|
|
* QEMU event-loop backend
|
|
*
|
|
* Copyright (C) 2022 Red Hat Inc
|
|
*
|
|
* Authors:
|
|
* Nicolas Saenz Julienne <nsaenzju@redhat.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
#ifndef QEMU_EVENT_LOOP_BASE_H
|
|
#define QEMU_EVENT_LOOP_BASE_H
|
|
|
|
#include "qom/object.h"
|
|
#include "block/aio.h"
|
|
#include "qemu/typedefs.h"
|
|
|
|
#define TYPE_EVENT_LOOP_BASE "event-loop-base"
|
|
OBJECT_DECLARE_TYPE(EventLoopBase, EventLoopBaseClass,
|
|
EVENT_LOOP_BASE)
|
|
|
|
struct EventLoopBaseClass {
|
|
ObjectClass parent_class;
|
|
|
|
void (*init)(EventLoopBase *base, Error **errp);
|
|
void (*update_params)(EventLoopBase *base, Error **errp);
|
|
bool (*can_be_deleted)(EventLoopBase *base);
|
|
};
|
|
|
|
struct EventLoopBase {
|
|
Object parent;
|
|
|
|
/* AioContext AIO engine parameters */
|
|
int64_t aio_max_batch;
|
|
};
|
|
#endif
|