Am 31.01.2025 um 14:41 hat Fabiano Rosas geschrieben:
> Kevin Wolf <[email protected]> writes:
>
> > Add an option in BlockExportOptions to allow creating an export on an
> > inactive node without activating the node. This mode needs to be
> > explicitly supported by the export type (so that it doesn't perform any
> > operations that are forbidden for inactive nodes), so this patch alone
> > doesn't allow this option to be successfully used yet.
> >
> > Signed-off-by: Kevin Wolf <[email protected]>
> > diff --git a/block.c b/block.c
> > index 61e131e71f..7eeb8d076e 100644
> > --- a/block.c
> > +++ b/block.c
> > @@ -6845,6 +6845,10 @@ void bdrv_init_with_whitelist(void)
> > bdrv_init();
> > }
> >
> > +bool bdrv_is_inactive(BlockDriverState *bs) {
> > + return bs->open_flags & BDRV_O_INACTIVE;
> > +}
>
> This function is needed by patch 1/15.
Thanks, I'll move it there.
Kevin