linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] page-allocator: Remove dead function free_cold_page()
@ 2009-08-05 10:28 Mel Gorman
  2009-08-06  1:52 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Mel Gorman @ 2009-08-05 10:28 UTC (permalink / raw)
  To: KOSAKI Motohiro, Andrew Morton; +Cc: LKML, linux-mm

The function free_cold_page() has no callers so delete it.

Signed-off-by: Mel Gorman <mel@csn.ul.ie>
--- 
 include/linux/gfp.h |    1 -
 mm/page_alloc.c     |    5 -----
 2 files changed, 6 deletions(-)

diff --git a/include/linux/gfp.h b/include/linux/gfp.h
index 7c777a0..c32bfa8 100644
--- a/include/linux/gfp.h
+++ b/include/linux/gfp.h
@@ -326,7 +326,6 @@ void free_pages_exact(void *virt, size_t size);
 extern void __free_pages(struct page *page, unsigned int order);
 extern void free_pages(unsigned long addr, unsigned int order);
 extern void free_hot_page(struct page *page);
-extern void free_cold_page(struct page *page);
 
 #define __free_page(page) __free_pages((page), 0)
 #define free_page(addr) free_pages((addr),0)
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index d052abb..36758db 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1065,11 +1065,6 @@ void free_hot_page(struct page *page)
 	free_hot_cold_page(page, 0);
 }
 	
-void free_cold_page(struct page *page)
-{
-	free_hot_cold_page(page, 1);
-}
-
 /*
  * split_page takes a non-compound higher-order page, and splits it into
  * n (1<<order) sub-pages: page[0..n]

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH] page-allocator: Remove dead function free_cold_page()
  2009-08-05 10:28 [PATCH] page-allocator: Remove dead function free_cold_page() Mel Gorman
@ 2009-08-06  1:52 ` Andrew Morton
  2009-08-06  2:36   ` KOSAKI Motohiro
  2009-08-06 16:25   ` Mel Gorman
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Morton @ 2009-08-06  1:52 UTC (permalink / raw)
  To: Mel Gorman; +Cc: KOSAKI Motohiro, LKML, linux-mm

On Wed, 5 Aug 2009 11:28:17 +0100 Mel Gorman <mel@csn.ul.ie> wrote:

> The function free_cold_page() has no callers so delete it.
> 
> Signed-off-by: Mel Gorman <mel@csn.ul.ie>
> --- 
>  include/linux/gfp.h |    1 -
>  mm/page_alloc.c     |    5 -----
>  2 files changed, 6 deletions(-)
> 
> diff --git a/include/linux/gfp.h b/include/linux/gfp.h
> index 7c777a0..c32bfa8 100644
> --- a/include/linux/gfp.h
> +++ b/include/linux/gfp.h
> @@ -326,7 +326,6 @@ void free_pages_exact(void *virt, size_t size);
>  extern void __free_pages(struct page *page, unsigned int order);
>  extern void free_pages(unsigned long addr, unsigned int order);
>  extern void free_hot_page(struct page *page);
> -extern void free_cold_page(struct page *page);
>  
>  #define __free_page(page) __free_pages((page), 0)
>  #define free_page(addr) free_pages((addr),0)
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index d052abb..36758db 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -1065,11 +1065,6 @@ void free_hot_page(struct page *page)
>  	free_hot_cold_page(page, 0);
>  }
>  	
> -void free_cold_page(struct page *page)
> -{
> -	free_hot_cold_page(page, 1);
> -}
> -
>  /*
>   * split_page takes a non-compound higher-order page, and splits it into
>   * n (1<<order) sub-pages: page[0..n]

Well I spose so.  But the function is valid and might need to be
resurrected at any stage.  We could `#if 0' it to save a few bytes of
text, perhaps.

I wonder how many free_page() callers should really be calling
free_cold_page().  c'mon, write a thingy to work it out ;) You can
query a page's hotness by timing how long it takes to read all its
cachelines.


--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH] page-allocator: Remove dead function free_cold_page()
  2009-08-06  1:52 ` Andrew Morton
@ 2009-08-06  2:36   ` KOSAKI Motohiro
  2009-08-06 16:25   ` Mel Gorman
  1 sibling, 0 replies; 4+ messages in thread
From: KOSAKI Motohiro @ 2009-08-06  2:36 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Mel Gorman, LKML, linux-mm

2009/8/6 Andrew Morton <akpm@linux-foundation.org>:
> On Wed, 5 Aug 2009 11:28:17 +0100 Mel Gorman <mel@csn.ul.ie> wrote:
>
>> The function free_cold_page() has no callers so delete it.
>>
>> Signed-off-by: Mel Gorman <mel@csn.ul.ie>
>> ---
>>  include/linux/gfp.h |    1 -
>>  mm/page_alloc.c     |    5 -----
>>  2 files changed, 6 deletions(-)
>>
>> diff --git a/include/linux/gfp.h b/include/linux/gfp.h
>> index 7c777a0..c32bfa8 100644
>> --- a/include/linux/gfp.h
>> +++ b/include/linux/gfp.h
>> @@ -326,7 +326,6 @@ void free_pages_exact(void *virt, size_t size);
>>  extern void __free_pages(struct page *page, unsigned int order);
>>  extern void free_pages(unsigned long addr, unsigned int order);
>>  extern void free_hot_page(struct page *page);
>> -extern void free_cold_page(struct page *page);
>>
>>  #define __free_page(page) __free_pages((page), 0)
>>  #define free_page(addr) free_pages((addr),0)
>> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
>> index d052abb..36758db 100644
>> --- a/mm/page_alloc.c
>> +++ b/mm/page_alloc.c
>> @@ -1065,11 +1065,6 @@ void free_hot_page(struct page *page)
>>       free_hot_cold_page(page, 0);
>>  }
>>
>> -void free_cold_page(struct page *page)
>> -{
>> -     free_hot_cold_page(page, 1);
>> -}
>> -
>>  /*
>>   * split_page takes a non-compound higher-order page, and splits it into
>>   * n (1<<order) sub-pages: page[0..n]
>
> Well I spose so.  But the function is valid and might need to be
> resurrected at any stage.  We could `#if 0' it to save a few bytes of
> text, perhaps.
>
> I wonder how many free_page() callers should really be calling
> free_cold_page().  c'mon, write a thingy to work it out ;) You can
> query a page's hotness by timing how long it takes to read all its
> cachelines.

if we decide to keep this function, I think we also need to consider
make it exporting.
Driver developers never user unexported function.

Or, Can we free_hot_page() and free_cold_page move to inlined function?

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH] page-allocator: Remove dead function free_cold_page()
  2009-08-06  1:52 ` Andrew Morton
  2009-08-06  2:36   ` KOSAKI Motohiro
@ 2009-08-06 16:25   ` Mel Gorman
  1 sibling, 0 replies; 4+ messages in thread
From: Mel Gorman @ 2009-08-06 16:25 UTC (permalink / raw)
  To: Andrew Morton; +Cc: KOSAKI Motohiro, LKML, linux-mm

On Wed, Aug 05, 2009 at 06:52:47PM -0700, Andrew Morton wrote:
> On Wed, 5 Aug 2009 11:28:17 +0100 Mel Gorman <mel@csn.ul.ie> wrote:
> 
> > The function free_cold_page() has no callers so delete it.
> > 
> > Signed-off-by: Mel Gorman <mel@csn.ul.ie>
> > --- 
> >  include/linux/gfp.h |    1 -
> >  mm/page_alloc.c     |    5 -----
> >  2 files changed, 6 deletions(-)
> > 
> > diff --git a/include/linux/gfp.h b/include/linux/gfp.h
> > index 7c777a0..c32bfa8 100644
> > --- a/include/linux/gfp.h
> > +++ b/include/linux/gfp.h
> > @@ -326,7 +326,6 @@ void free_pages_exact(void *virt, size_t size);
> >  extern void __free_pages(struct page *page, unsigned int order);
> >  extern void free_pages(unsigned long addr, unsigned int order);
> >  extern void free_hot_page(struct page *page);
> > -extern void free_cold_page(struct page *page);
> >  
> >  #define __free_page(page) __free_pages((page), 0)
> >  #define free_page(addr) free_pages((addr),0)
> > diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> > index d052abb..36758db 100644
> > --- a/mm/page_alloc.c
> > +++ b/mm/page_alloc.c
> > @@ -1065,11 +1065,6 @@ void free_hot_page(struct page *page)
> >  	free_hot_cold_page(page, 0);
> >  }
> >  	
> > -void free_cold_page(struct page *page)
> > -{
> > -	free_hot_cold_page(page, 1);
> > -}
> > -
> >  /*
> >   * split_page takes a non-compound higher-order page, and splits it into
> >   * n (1<<order) sub-pages: page[0..n]
> 
> Well I spose so.  But the function is valid and might need to be
> resurrected at any stage.  We could `#if 0' it to save a few bytes of
> text, perhaps.
> 

We could although the code is so trivial, it's not like it's hard to
reimplement.

> I wonder how many free_page() callers should really be calling
> free_cold_page().  c'mon, write a thingy to work it out ;) You can
> query a page's hotness by timing how long it takes to read all its
> cachelines.
> 

Hmm, interesting idea, I'll give it more of a think and see what falls
out!

-- 
Mel Gorman
Part-time Phd Student                          Linux Technology Center
University of Limerick                         IBM Dublin Software Lab

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2009-08-06 16:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-05 10:28 [PATCH] page-allocator: Remove dead function free_cold_page() Mel Gorman
2009-08-06  1:52 ` Andrew Morton
2009-08-06  2:36   ` KOSAKI Motohiro
2009-08-06 16:25   ` Mel Gorman

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