Re: [RFC PATCH] mm/zsmalloc: allocate exactly size of struct zs_pool

2014-11-30 Thread Minchan Kim
On Sat, Nov 29, 2014 at 07:23:55PM +0800, Ganesh Mahendran wrote:
> In zs_create_pool(), we allocate memory more then sizeof(struct zs_pool)
>   ovhd_size = roundup(sizeof(*pool), PAGE_SIZE);
> 
> This patch allocate memory of exactly needed size.
> 
> Signed-off-by: Ganesh Mahendran 
Acked-by: Minchan Kim 

-- 
Kind regards,
Minchan Kim
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [RFC PATCH] mm/zsmalloc: allocate exactly size of struct zs_pool

2014-11-30 Thread Minchan Kim
On Sat, Nov 29, 2014 at 07:23:55PM +0800, Ganesh Mahendran wrote:
 In zs_create_pool(), we allocate memory more then sizeof(struct zs_pool)
   ovhd_size = roundup(sizeof(*pool), PAGE_SIZE);
 
 This patch allocate memory of exactly needed size.
 
 Signed-off-by: Ganesh Mahendran opensource.gan...@gmail.com
Acked-by: Minchan Kim minc...@kernel.org

-- 
Kind regards,
Minchan Kim
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[RFC PATCH] mm/zsmalloc: allocate exactly size of struct zs_pool

2014-11-29 Thread Ganesh Mahendran
In zs_create_pool(), we allocate memory more then sizeof(struct zs_pool)
  ovhd_size = roundup(sizeof(*pool), PAGE_SIZE);

This patch allocate memory of exactly needed size.

Signed-off-by: Ganesh Mahendran 
---
 mm/zsmalloc.c |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c
index 2021df5..4d0a063 100644
--- a/mm/zsmalloc.c
+++ b/mm/zsmalloc.c
@@ -979,12 +979,11 @@ static bool can_merge(struct size_class *prev, int size, 
int pages_per_zspage)
  */
 struct zs_pool *zs_create_pool(gfp_t flags)
 {
-   int i, ovhd_size;
+   int i;
struct zs_pool *pool;
struct size_class *prev_class = NULL;
 
-   ovhd_size = roundup(sizeof(*pool), PAGE_SIZE);
-   pool = kzalloc(ovhd_size, GFP_KERNEL);
+   pool = kzalloc(sizeof(*pool), GFP_KERNEL);
if (!pool)
return NULL;
 
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[RFC PATCH] mm/zsmalloc: allocate exactly size of struct zs_pool

2014-11-29 Thread Ganesh Mahendran
In zs_create_pool(), we allocate memory more then sizeof(struct zs_pool)
  ovhd_size = roundup(sizeof(*pool), PAGE_SIZE);

This patch allocate memory of exactly needed size.

Signed-off-by: Ganesh Mahendran opensource.gan...@gmail.com
---
 mm/zsmalloc.c |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c
index 2021df5..4d0a063 100644
--- a/mm/zsmalloc.c
+++ b/mm/zsmalloc.c
@@ -979,12 +979,11 @@ static bool can_merge(struct size_class *prev, int size, 
int pages_per_zspage)
  */
 struct zs_pool *zs_create_pool(gfp_t flags)
 {
-   int i, ovhd_size;
+   int i;
struct zs_pool *pool;
struct size_class *prev_class = NULL;
 
-   ovhd_size = roundup(sizeof(*pool), PAGE_SIZE);
-   pool = kzalloc(ovhd_size, GFP_KERNEL);
+   pool = kzalloc(sizeof(*pool), GFP_KERNEL);
if (!pool)
return NULL;
 
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/