Re: [PATCH V3] migration: simplify blockers

2023-07-05 Thread Steven Sistare
On 7/5/2023 5:33 PM, Steven Sistare wrote: > On 6/7/2023 11:58 AM, Peter Xu wrote: >> On Wed, Jun 07, 2023 at 07:35:32AM -0700, Steve Sistare wrote: >>> Modify migrate_add_blocker and migrate_del_blocker to take an Error ** >>> reason. This allows migration to own the Error object, so that if >>>

Re: [PATCH V3] migration: simplify blockers

2023-07-05 Thread Steven Sistare
On 6/7/2023 11:58 AM, Peter Xu wrote: > On Wed, Jun 07, 2023 at 07:35:32AM -0700, Steve Sistare wrote: >> Modify migrate_add_blocker and migrate_del_blocker to take an Error ** >> reason. This allows migration to own the Error object, so that if >> an error occurs, migration code can free the Erro

Re: [PATCH V3] migration: simplify blockers

2023-06-07 Thread Peter Xu
On Wed, Jun 07, 2023 at 07:35:32AM -0700, Steve Sistare wrote: > Modify migrate_add_blocker and migrate_del_blocker to take an Error ** > reason. This allows migration to own the Error object, so that if > an error occurs, migration code can free the Error and clear the client > handle, simplifyin

[PATCH V3] migration: simplify blockers

2023-06-07 Thread Steve Sistare
Modify migrate_add_blocker and migrate_del_blocker to take an Error ** reason. This allows migration to own the Error object, so that if an error occurs, migration code can free the Error and clear the client handle, simplifying client code. This is also a pre-requisite for future patches that wi