diff mbox series

apei/ghes: remove unused ghes_estatus_pool_size_request

Message ID 20230527095158.211568-1-linmiaohe@huawei.com (mailing list archive)
State Mainlined, archived
Headers show
Series apei/ghes: remove unused ghes_estatus_pool_size_request | expand

Commit Message

Miaohe Lin May 27, 2023, 9:51 a.m. UTC
ghes_estatus_pool_size_request is unused now. Remove it.

Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
---
 drivers/acpi/apei/ghes.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Rafael J. Wysocki June 5, 2023, 5:14 p.m. UTC | #1
On Sat, May 27, 2023 at 4:00 AM Miaohe Lin <linmiaohe@huawei.com> wrote:
>
> ghes_estatus_pool_size_request is unused now. Remove it.
>
> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>

Applied as 6.5 material, thanks!

> ---
>  drivers/acpi/apei/ghes.c | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
> index 34ad071a64e9..a4148a7d3afe 100644
> --- a/drivers/acpi/apei/ghes.c
> +++ b/drivers/acpi/apei/ghes.c
> @@ -152,7 +152,6 @@ struct ghes_vendor_record_entry {
>  };
>
>  static struct gen_pool *ghes_estatus_pool;
> -static unsigned long ghes_estatus_pool_size_request;
>
>  static struct ghes_estatus_cache __rcu *ghes_estatus_caches[GHES_ESTATUS_CACHES_SIZE];
>  static atomic_t ghes_estatus_cache_alloced;
> @@ -191,7 +190,6 @@ int ghes_estatus_pool_init(unsigned int num_ghes)
>         len = GHES_ESTATUS_CACHE_AVG_SIZE * GHES_ESTATUS_CACHE_ALLOCED_MAX;
>         len += (num_ghes * GHES_ESOURCE_PREALLOC_MAX_SIZE);
>
> -       ghes_estatus_pool_size_request = PAGE_ALIGN(len);
>         addr = (unsigned long)vmalloc(PAGE_ALIGN(len));
>         if (!addr)
>                 goto err_pool_alloc;
> --
> 2.27.0
>
diff mbox series

Patch

diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index 34ad071a64e9..a4148a7d3afe 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -152,7 +152,6 @@  struct ghes_vendor_record_entry {
 };
 
 static struct gen_pool *ghes_estatus_pool;
-static unsigned long ghes_estatus_pool_size_request;
 
 static struct ghes_estatus_cache __rcu *ghes_estatus_caches[GHES_ESTATUS_CACHES_SIZE];
 static atomic_t ghes_estatus_cache_alloced;
@@ -191,7 +190,6 @@  int ghes_estatus_pool_init(unsigned int num_ghes)
 	len = GHES_ESTATUS_CACHE_AVG_SIZE * GHES_ESTATUS_CACHE_ALLOCED_MAX;
 	len += (num_ghes * GHES_ESOURCE_PREALLOC_MAX_SIZE);
 
-	ghes_estatus_pool_size_request = PAGE_ALIGN(len);
 	addr = (unsigned long)vmalloc(PAGE_ALIGN(len));
 	if (!addr)
 		goto err_pool_alloc;