[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v7 4/5] migration: Add migrate_use_tls() helper
|
From: |
Leonardo Bras Soares Passos |
|
Subject: |
Re: [PATCH v7 4/5] migration: Add migrate_use_tls() helper |
|
Date: |
Wed, 19 Jan 2022 15:06:55 -0300 |
Hello Peter,
On Thu, Jan 13, 2022 at 4:02 AM Peter Xu <peterx@redhat.com> wrote:
>
> On Thu, Jan 06, 2022 at 07:13:41PM -0300, Leonardo Bras wrote:
> > void migration_channel_process_incoming(QIOChannel *ioc)
> > {
> > - MigrationState *s = migrate_get_current();
> > Error *local_err = NULL;
> >
> > trace_migration_set_incoming_channel(
> > ioc, object_get_typename(OBJECT(ioc)));
> >
> > - if (s->parameters.tls_creds &&
> > - *s->parameters.tls_creds &&
> > + if (migrate_use_tls() &&
> > !object_dynamic_cast(OBJECT(ioc),
> > TYPE_QIO_CHANNEL_TLS)) {
> > + MigrationState *s = migrate_get_current();
> > +
>
> Trivial nit: I'd rather keep the line there; as the movement offers nothing,
> imho..
The idea to move the 's' to inside the if block is to make it clear
it's only used in this case.
But if you think it's better to keep it at the beginning of the
function, sure, I can change that.
Just let me know.
>
> > migration_tls_channel_process_incoming(s, ioc, &local_err);
> > } else {
> > migration_ioc_register_yank(ioc);
>
> Reviewed-by: Peter Xu <peterx@redhat.com>
>
Thanks!
> --
> Peter Xu
>
Best regards,
Leo
Re: [PATCH v7 2/5] QIOChannelSocket: Implement io_writev zero copy flag & io_flush for CONFIG_LINUX, Daniel P . Berrangé, 2022/01/13
[PATCH v7 4/5] migration: Add migrate_use_tls() helper, Leonardo Bras, 2022/01/06
Re: [PATCH v7 4/5] migration: Add migrate_use_tls() helper, Daniel P . Berrangé, 2022/01/13
[PATCH v7 5/5] multifd: Implement zero copy write in multifd migration (multifd-zero-copy), Leonardo Bras, 2022/01/06