From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Jan Beulich <JBeulich@suse.com>,
xen-devel <xen-devel@lists.xenproject.org>
Cc: Keir Fraser <keir@xen.org>
Subject: Re: [PATCH] x86: introduce clear_fixmap()
Date: Wed, 4 Mar 2015 09:58:19 +0000 [thread overview]
Message-ID: <54F6D73B.1000102@citrix.com> (raw)
In-Reply-To: <54F6DA0E02000078000660E1@mail.emea.novell.com>
[-- Attachment #1.1: Type: text/plain, Size: 3054 bytes --]
On 04/03/15 09:10, Jan Beulich wrote:
> ... making more obvious what its so far open coded users intend.
>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
>
> --- a/xen/arch/x86/domain.c
> +++ b/xen/arch/x86/domain.c
> @@ -310,7 +310,7 @@ void free_vcpu_guest_context(struct vcpu
> {
> if ( !per_cpu(vgc_pages[i], cpu) )
> continue;
> - __set_fixmap(idx - i, 0, 0);
> + clear_fixmap(idx - i);
> free_domheap_page(per_cpu(vgc_pages[i], cpu));
> per_cpu(vgc_pages[i], cpu) = NULL;
> }
> --- a/xen/arch/x86/io_apic.c
> +++ b/xen/arch/x86/io_apic.c
> @@ -2552,7 +2552,7 @@ void __init init_ioapic_mappings(void)
>
> if ( bad_ioapic_register(i) )
> {
> - __set_fixmap(idx, 0, 0);
> + clear_fixmap(idx);
> continue;
> }
>
> --- a/xen/arch/x86/mpparse.c
> +++ b/xen/arch/x86/mpparse.c
> @@ -541,7 +541,7 @@ static inline void __init construct_defa
> static __init void efi_unmap_mpf(void)
> {
> if (efi_enabled)
> - __set_fixmap(FIX_EFI_MPF, 0, 0);
> + clear_fixmap(FIX_EFI_MPF);
> }
>
> static struct intel_mp_floating *__initdata mpf_found;
> --- a/xen/arch/x86/msi.c
> +++ b/xen/arch/x86/msi.c
> @@ -112,7 +112,7 @@ static void msix_put_fixmap(struct arch_
>
> if ( --msix->table_refcnt[i] == 0 )
> {
> - __set_fixmap(idx, 0, 0);
> + clear_fixmap(idx);
> msix_fixmap_free(idx);
> msix->table_idx[i] = 0;
> }
> --- a/xen/arch/x86/tboot.c
> +++ b/xen/arch/x86/tboot.c
> @@ -138,7 +138,7 @@ void __init tboot_probe(void)
> TXT_PUB_CONFIG_REGS_BASE + TXTCR_SINIT_BASE);
> tboot_copy_memory((unsigned char *)&sinit_size, sizeof(sinit_size),
> TXT_PUB_CONFIG_REGS_BASE + TXTCR_SINIT_SIZE);
> - __set_fixmap(FIX_TBOOT_MAP_ADDRESS, 0, 0);
> + clear_fixmap(FIX_TBOOT_MAP_ADDRESS);
> }
>
> /* definitions from xen/drivers/passthrough/vtd/iommu.h
> @@ -477,7 +477,7 @@ int __init tboot_parse_dmar_table(acpi_t
> dmar_table_raw = xmalloc_array(unsigned char, dmar_table_length);
> tboot_copy_memory(dmar_table_raw, dmar_table_length, pa);
> dmar_table = (struct acpi_table_header *)dmar_table_raw;
> - __set_fixmap(FIX_TBOOT_MAP_ADDRESS, 0, 0);
> + clear_fixmap(FIX_TBOOT_MAP_ADDRESS);
>
> rc = dmar_handler(dmar_table);
> xfree(dmar_table_raw);
> --- a/xen/include/asm-x86/fixmap.h
> +++ b/xen/include/asm-x86/fixmap.h
> @@ -78,6 +78,8 @@ extern void __set_fixmap(
> #define set_fixmap_nocache(idx, phys) \
> __set_fixmap(idx, (phys)>>PAGE_SHIFT, PAGE_HYPERVISOR_NOCACHE)
>
> +#define clear_fixmap(idx) __set_fixmap(idx, 0, 0)
> +
> #define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))
> #define __virt_to_fix(x) ((FIXADDR_TOP - ((x)&PAGE_MASK)) >> PAGE_SHIFT)
>
>
>
>
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
[-- Attachment #1.2: Type: text/html, Size: 3854 bytes --]
[-- Attachment #2: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
prev parent reply other threads:[~2015-03-04 9:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-04 9:10 [PATCH] x86: introduce clear_fixmap() Jan Beulich
2015-03-04 9:58 ` Andrew Cooper [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54F6D73B.1000102@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=keir@xen.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.