public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [V3] firmware: vpd: use memunmap instead of iounmap
@ 2017-08-10 23:13 Pan Bian
  2017-08-11  0:45 ` Dmitry Torokhov
  0 siblings, 1 reply; 2+ messages in thread
From: Pan Bian @ 2017-08-10 23:13 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Guenter Roeck, Dmitry Torokhov, Wei Yongjun,
	Thierry Escande, Christophe JAILLET, Wei-Ning Huang
  Cc: linux-kernel, Pan Bian

In functions vpd_sections_init() and vpd_section_init(), iounmap() is
used to unmap memory. However, in these cases, memunmap() should be
used.

Signed-off-by: Pan Bian <bianpan2016@163.com>
---
V2: change error label err_iounmap to err_memunmap
V3: add changes from V1 to V2
---
 drivers/firmware/google/vpd.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/firmware/google/vpd.c b/drivers/firmware/google/vpd.c
index 7894572..35e553b 100644
--- a/drivers/firmware/google/vpd.c
+++ b/drivers/firmware/google/vpd.c
@@ -202,7 +202,7 @@ static int vpd_section_init(const char *name, struct vpd_section *sec,
 	sec->raw_name = kasprintf(GFP_KERNEL, "%s_raw", name);
 	if (!sec->raw_name) {
 		err = -ENOMEM;
-		goto err_iounmap;
+		goto err_memunmap;
 	}
 
 	sysfs_bin_attr_init(&sec->bin_attr);
@@ -233,8 +233,8 @@ static int vpd_section_init(const char *name, struct vpd_section *sec,
 	sysfs_remove_bin_file(vpd_kobj, &sec->bin_attr);
 err_free_raw_name:
 	kfree(sec->raw_name);
-err_iounmap:
-	iounmap(sec->baseaddr);
+err_memunmap:
+	memunmap(sec->baseaddr);
 	return err;
 }
 
@@ -245,7 +245,7 @@ static int vpd_section_destroy(struct vpd_section *sec)
 		kobject_put(sec->kobj);
 		sysfs_remove_bin_file(vpd_kobj, &sec->bin_attr);
 		kfree(sec->raw_name);
-		iounmap(sec->baseaddr);
+		memunmap(sec->baseaddr);
 	}
 
 	return 0;
@@ -262,7 +262,7 @@ static int vpd_sections_init(phys_addr_t physaddr)
 		return -ENOMEM;
 
 	memcpy_fromio(&header, temp, sizeof(struct vpd_cbmem));
-	iounmap(temp);
+	memunmap(temp);
 
 	if (header.magic != VPD_CBMEM_MAGIC)
 		return -ENODEV;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [V3] firmware: vpd: use memunmap instead of iounmap
  2017-08-10 23:13 [V3] firmware: vpd: use memunmap instead of iounmap Pan Bian
@ 2017-08-11  0:45 ` Dmitry Torokhov
  0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2017-08-11  0:45 UTC (permalink / raw)
  To: Pan Bian
  Cc: Greg Kroah-Hartman, Guenter Roeck, Wei Yongjun, Thierry Escande,
	Christophe JAILLET, Wei-Ning Huang, linux-kernel

On Fri, Aug 11, 2017 at 07:13:13AM +0800, Pan Bian wrote:
> In functions vpd_sections_init() and vpd_section_init(), iounmap() is
> used to unmap memory. However, in these cases, memunmap() should be
> used.
> 
> Signed-off-by: Pan Bian <bianpan2016@163.com>

Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

> ---
> V2: change error label err_iounmap to err_memunmap
> V3: add changes from V1 to V2
> ---
>  drivers/firmware/google/vpd.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/firmware/google/vpd.c b/drivers/firmware/google/vpd.c
> index 7894572..35e553b 100644
> --- a/drivers/firmware/google/vpd.c
> +++ b/drivers/firmware/google/vpd.c
> @@ -202,7 +202,7 @@ static int vpd_section_init(const char *name, struct vpd_section *sec,
>  	sec->raw_name = kasprintf(GFP_KERNEL, "%s_raw", name);
>  	if (!sec->raw_name) {
>  		err = -ENOMEM;
> -		goto err_iounmap;
> +		goto err_memunmap;
>  	}
>  
>  	sysfs_bin_attr_init(&sec->bin_attr);
> @@ -233,8 +233,8 @@ static int vpd_section_init(const char *name, struct vpd_section *sec,
>  	sysfs_remove_bin_file(vpd_kobj, &sec->bin_attr);
>  err_free_raw_name:
>  	kfree(sec->raw_name);
> -err_iounmap:
> -	iounmap(sec->baseaddr);
> +err_memunmap:
> +	memunmap(sec->baseaddr);
>  	return err;
>  }
>  
> @@ -245,7 +245,7 @@ static int vpd_section_destroy(struct vpd_section *sec)
>  		kobject_put(sec->kobj);
>  		sysfs_remove_bin_file(vpd_kobj, &sec->bin_attr);
>  		kfree(sec->raw_name);
> -		iounmap(sec->baseaddr);
> +		memunmap(sec->baseaddr);
>  	}
>  
>  	return 0;
> @@ -262,7 +262,7 @@ static int vpd_sections_init(phys_addr_t physaddr)
>  		return -ENOMEM;
>  
>  	memcpy_fromio(&header, temp, sizeof(struct vpd_cbmem));
> -	iounmap(temp);
> +	memunmap(temp);
>  
>  	if (header.magic != VPD_CBMEM_MAGIC)
>  		return -ENODEV;
> -- 
> 1.9.1
> 
> 

-- 
Dmitry

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-08-11  0:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-10 23:13 [V3] firmware: vpd: use memunmap instead of iounmap Pan Bian
2017-08-11  0:45 ` Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox