All of lore.kernel.org
 help / color / mirror / Atom feed
From: Don Dutile <ddutile@redhat.com>
To: Feng Tang <feng.tang@intel.com>
Cc: len.brown@intel.com, linux-acpi@vger.kernel.org,
	yinghai@kernel.org, linux-kernel@vger.kernel.org, x86@kernel.org,
	robert.moore@intel.com, agordeev@redhat.com,
	suresh.b.siddha@intel.com
Subject: Re: [PATCH v2 1/2] ACPI: Replace acpi_get_table_with_size() with acpi_get_table()
Date: Wed, 01 Aug 2012 16:59:39 -0400	[thread overview]
Message-ID: <501998BB.8060507@redhat.com> (raw)
In-Reply-To: <1343803064-5389-1-git-send-email-feng.tang@intel.com>

On 08/01/2012 02:37 AM, Feng Tang wrote:
> This is a preparation for removing the acpi_get_table_with_size(), as this
> function could be well covered by acpi_get_table(), and there is no need
> to have both of them to exist.
>
> v2: As reminded by Yinghai, apply the replacment to drivers/iommu/amd_iommu_init.c
> which is a new user of the acpi_get_table_with_size().
>
> Signed-off-by: Feng Tang<feng.tang@intel.com>
> ---
>   arch/x86/kernel/apic/es7000_32.c |    7 +++----
>   drivers/acpi/tables.c            |   21 +++++++++------------
>   drivers/iommu/amd_iommu_init.c   |   10 ++++------
>   drivers/iommu/dmar.c             |   14 +++++++-------
>   4 files changed, 23 insertions(+), 29 deletions(-)
>
> diff --git a/arch/x86/kernel/apic/es7000_32.c b/arch/x86/kernel/apic/es7000_32.c
> index 0874799..ae30b39 100644
> --- a/arch/x86/kernel/apic/es7000_32.c
> +++ b/arch/x86/kernel/apic/es7000_32.c
> @@ -242,19 +242,18 @@ static int __init find_unisys_acpi_oem_table(unsigned long *oem_addr)
>   {
>   	struct acpi_table_header *header = NULL;
>   	struct es7000_oem_table *table;
> -	acpi_size tbl_size;
>   	acpi_status ret;
>   	int i = 0;
>
>   	for (;;) {
> -		ret = acpi_get_table_with_size("OEM1", i++,&header,&tbl_size);
> +		ret = acpi_get_table("OEM1", i++,&header);
>   		if (!ACPI_SUCCESS(ret))
>   			return -1;
>
>   		if (!memcmp((char *)&header->oem_id, "UNISYS", 6))
>   			break;
>
> -		early_acpi_os_unmap_memory(header, tbl_size);
> +		early_acpi_os_unmap_memory(header, header->length);
>   	}
>
>   	table = (void *)header;
> @@ -262,7 +261,7 @@ static int __init find_unisys_acpi_oem_table(unsigned long *oem_addr)
>   	oem_addrX	= table->OEMTableAddr;
>   	oem_size	= table->OEMTableSize;
>
> -	early_acpi_os_unmap_memory(header, tbl_size);
> +	early_acpi_os_unmap_memory(header, header->length);
>
>   	*oem_addr	= (unsigned long)__acpi_map_table(oem_addrX, oem_size);
>
> diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
> index f336bca..5b8b7e0 100644
> --- a/drivers/acpi/tables.c
> +++ b/drivers/acpi/tables.c
> @@ -211,7 +211,6 @@ acpi_table_parse_entries(char *id,
>   	struct acpi_subtable_header *entry;
>   	unsigned int count = 0;
>   	unsigned long table_end;
> -	acpi_size tbl_size;
>
>   	if (acpi_disabled)
>   		return -ENODEV;
> @@ -220,9 +219,9 @@ acpi_table_parse_entries(char *id,
>   		return -EINVAL;
>
>   	if (strncmp(id, ACPI_SIG_MADT, 4) == 0)
> -		acpi_get_table_with_size(id, acpi_apic_instance,&table_header,&tbl_size);
> +		acpi_get_table(id, acpi_apic_instance,&table_header);
>   	else
> -		acpi_get_table_with_size(id, 0,&table_header,&tbl_size);
> +		acpi_get_table(id, 0,&table_header);
>
>   	if (!table_header) {
>   		printk(KERN_WARNING PREFIX "%4.4s not present\n", id);
> @@ -241,7 +240,7 @@ acpi_table_parse_entries(char *id,
>   		if (entry->type == entry_id
>   		&&  (!max_entries || count++<  max_entries))
>   			if (handler(entry, table_end)) {
> -				early_acpi_os_unmap_memory((char *)table_header, tbl_size);
> +				early_acpi_os_unmap_memory((char *)table_header, table_header->length);
>   				return -EINVAL;
>   			}
>
> @@ -253,7 +252,7 @@ acpi_table_parse_entries(char *id,
>   		       "%i found\n", id, entry_id, count - max_entries, count);
>   	}
>
> -	early_acpi_os_unmap_memory((char *)table_header, tbl_size);
> +	early_acpi_os_unmap_memory((char *)table_header, table_header->length);
>   	return count;
>   }
>
> @@ -278,7 +277,6 @@ acpi_table_parse_madt(enum acpi_madt_type id,
>   int __init acpi_table_parse(char *id, acpi_table_handler handler)
>   {
>   	struct acpi_table_header *table = NULL;
> -	acpi_size tbl_size;
>
>   	if (acpi_disabled)
>   		return -ENODEV;
> @@ -287,13 +285,13 @@ int __init acpi_table_parse(char *id, acpi_table_handler handler)
>   		return -EINVAL;
>
>   	if (strncmp(id, ACPI_SIG_MADT, 4) == 0)
> -		acpi_get_table_with_size(id, acpi_apic_instance,&table,&tbl_size);
> +		acpi_get_table(id, acpi_apic_instance,&table);
>   	else
> -		acpi_get_table_with_size(id, 0,&table,&tbl_size);
> +		acpi_get_table(id, 0,&table);
>
>   	if (table) {
>   		handler(table);
> -		early_acpi_os_unmap_memory(table, tbl_size);
> +		early_acpi_os_unmap_memory(table, table->length);
>   		return 0;
>   	} else
>   		return 1;
> @@ -307,9 +305,8 @@ int __init acpi_table_parse(char *id, acpi_table_handler handler)
>   static void __init check_multiple_madt(void)
>   {
>   	struct acpi_table_header *table = NULL;
> -	acpi_size tbl_size;
>
> -	acpi_get_table_with_size(ACPI_SIG_MADT, 2,&table,&tbl_size);
> +	acpi_get_table(ACPI_SIG_MADT, 2,&table);
>   	if (table) {
>   		printk(KERN_WARNING PREFIX
>   		       "BIOS bug: multiple APIC/MADT found,"
> @@ -318,7 +315,7 @@ static void __init check_multiple_madt(void)
>   		       "If \"acpi_apic_instance=%d\" works better, "
>   		       "notify linux-acpi@vger.kernel.org\n",
>   		       acpi_apic_instance ? 0 : 2);
> -		early_acpi_os_unmap_memory(table, tbl_size);
> +		early_acpi_os_unmap_memory(table, table->length);
>
>   	} else
>   		acpi_apic_instance = 0;
> diff --git a/drivers/iommu/amd_iommu_init.c b/drivers/iommu/amd_iommu_init.c
> index 500e7f1..6b19f42 100644
> --- a/drivers/iommu/amd_iommu_init.c
> +++ b/drivers/iommu/amd_iommu_init.c
> @@ -1525,14 +1525,13 @@ static void __init free_on_init_error(void)
>   static int __init early_amd_iommu_init(void)
>   {
>   	struct acpi_table_header *ivrs_base;
> -	acpi_size ivrs_size;
>   	acpi_status status;
>   	int i, ret = 0;
>
>   	if (!amd_iommu_detected)
>   		return -ENODEV;
>
> -	status = acpi_get_table_with_size("IVRS", 0,&ivrs_base,&ivrs_size);
> +	status = acpi_get_table("IVRS", 0,&ivrs_base);
>   	if (status == AE_NOT_FOUND)
>   		return -ENODEV;
>   	else if (ACPI_FAILURE(status)) {
> @@ -1614,7 +1613,7 @@ static int __init early_amd_iommu_init(void)
>
>   out:
>   	/* Don't leak any ACPI memory */
> -	early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
> +	early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_base->length);
>   	ivrs_base = NULL;
>
>   	return ret;
> @@ -1638,10 +1637,9 @@ out:
>   static bool detect_ivrs(void)
>   {
>   	struct acpi_table_header *ivrs_base;
> -	acpi_size ivrs_size;
>   	acpi_status status;
>
> -	status = acpi_get_table_with_size("IVRS", 0,&ivrs_base,&ivrs_size);
> +	status = acpi_get_table("IVRS", 0,&ivrs_base);
>   	if (status == AE_NOT_FOUND)
>   		return false;
>   	else if (ACPI_FAILURE(status)) {
> @@ -1650,7 +1648,7 @@ static bool detect_ivrs(void)
>   		return false;
>   	}
>
> -	early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_size);
> +	early_acpi_os_unmap_memory((char __iomem *)ivrs_base, ivrs_base->length);
>
>   	return true;
>   }
> diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c
> index 86e2f4a..aa65b6f 100644
> --- a/drivers/iommu/dmar.c
> +++ b/drivers/iommu/dmar.c
> @@ -48,7 +48,6 @@
>   LIST_HEAD(dmar_drhd_units);
>
>   struct acpi_table_header * __initdata dmar_tbl;
> -static acpi_size dmar_tbl_size;
>
>   static void __init dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
>   {
> @@ -285,10 +284,8 @@ static int __init dmar_table_detect(void)
>   	acpi_status status = AE_OK;
>
>   	/* if we could find DMAR table, then there are DMAR devices */
> -	status = acpi_get_table_with_size(ACPI_SIG_DMAR, 0,
> -				(struct acpi_table_header **)&dmar_tbl,
> -				&dmar_tbl_size);
> -
> +	status = acpi_get_table(ACPI_SIG_DMAR, 0,
> +				(struct acpi_table_header **)&dmar_tbl);
why is this cast needed if dmar_tbl is defined as struct acpi_table_header * ?

>   	if (ACPI_SUCCESS(status)&&  !dmar_tbl) {
>   		pr_warn("Unable to map DMAR\n");
>   		status = AE_NOT_FOUND;
> @@ -558,8 +555,11 @@ int __init detect_intel_iommu(void)
>   			x86_init.iommu.iommu_init = intel_iommu_init;
>   #endif
>   	}
> -	early_acpi_os_unmap_memory(dmar_tbl, dmar_tbl_size);
> -	dmar_tbl = NULL;
> +
> +	if (dmar_tbl) {
> +		early_acpi_os_unmap_memory(dmar_tbl, dmar_tbl->length);
> +		dmar_tbl = NULL;
> +	}
>
>   	return ret ? 1 : -ENODEV;
>   }


  reply	other threads:[~2012-08-01 20:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-01  6:37 [PATCH v2 1/2] ACPI: Replace acpi_get_table_with_size() with acpi_get_table() Feng Tang
2012-08-01 20:59 ` Don Dutile [this message]
2012-08-02  5:10   ` Feng Tang
2012-08-02  5:10     ` Feng Tang

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=501998BB.8060507@redhat.com \
    --to=ddutile@redhat.com \
    --cc=agordeev@redhat.com \
    --cc=feng.tang@intel.com \
    --cc=len.brown@intel.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robert.moore@intel.com \
    --cc=suresh.b.siddha@intel.com \
    --cc=x86@kernel.org \
    --cc=yinghai@kernel.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.