Re: [PATCH v6 2/3] ioreq: Indent ioreq_server_alloc_mfn() body one level deeper
Jan Beulich <[email protected]>
| Newsgroups | gmane.comp.emulators.xen.devel |
|---|---|
| Message-ID | <[email protected]> |
On 20.04.2026 11:38, Julian Vetter wrote:
> --- a/xen/common/ioreq.c
> +++ b/xen/common/ioreq.c
> @@ -277,22 +277,24 @@ static int ioreq_server_alloc_mfn(struct ioreq_server *s, bool buf)
> return 0;
> }
>
> - page = alloc_domheap_page(s->target, MEMF_no_refcount);
> + {
> + page = alloc_domheap_page(s->target, MEMF_no_refcount);
>
> - if ( !page )
> - return -ENOMEM;
> + if ( !page )
> + return -ENOMEM;
>
> - if ( !get_page_and_type(page, s->target, PGT_writable_page) )
> - {
> - /*
> - * The domain can't possibly know about this page yet, so failure
> - * here is a clear indication of something fishy going on.
> - */
> - domain_crash(s->emulator);
> - return -ENODATA;
> - }
> + if ( !get_page_and_type(page, s->target, PGT_writable_page) )
> + {
> + /*
> + * The domain can't possibly know about this page yet, so failure
> + * here is a clear indication of something fishy going on.
> + */
> + domain_crash(s->emulator);
> + return -ENODATA;
> + }
>
> - mfn = page_to_mfn(page);
> + mfn = page_to_mfn(page);
> + }
> iorp->va = vmap(&mfn, 1);
> if ( !iorp->va )
> goto fail;
Please would you then also add another blank line after the new closing curly
brace? (Based on the corresponding ioreq_server_free_mfn() change having been
dropped, I'd like to wait with ack-ing until the 3rd patch is in final shape.)
Jan