linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] percpu: remove unused chunk_alloc parameter from pcpu_get_pages()
@ 2017-02-25 20:59 Tahsin Erdogan
  2017-03-06 20:57 ` Tejun Heo
  0 siblings, 1 reply; 2+ messages in thread
From: Tahsin Erdogan @ 2017-02-25 20:59 UTC (permalink / raw)
  To: Tejun Heo, Christoph Lameter, Andrew Morton, Chris Wilson,
	Andrey Ryabinin, Roman Pen, Joonas Lahtinen, Michal Hocko,
	zijun_hu, Joonsoo Kim
  Cc: linux-mm, linux-kernel, Tahsin Erdogan

pcpu_get_pages() doesn't use chunk_alloc parameter, remove it.

Fixes: fbbb7f4e149f ("percpu: remove the usage of separate populated bitmap in percpu-vm")
Signed-off-by: Tahsin Erdogan <tahsin@google.com>
---
 mm/percpu-vm.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/mm/percpu-vm.c b/mm/percpu-vm.c
index 538998a137d2..9ac639499bd1 100644
--- a/mm/percpu-vm.c
+++ b/mm/percpu-vm.c
@@ -21,7 +21,6 @@ static struct page *pcpu_chunk_page(struct pcpu_chunk *chunk,
 
 /**
  * pcpu_get_pages - get temp pages array
- * @chunk: chunk of interest
  *
  * Returns pointer to array of pointers to struct page which can be indexed
  * with pcpu_page_idx().  Note that there is only one array and accesses
@@ -30,7 +29,7 @@ static struct page *pcpu_chunk_page(struct pcpu_chunk *chunk,
  * RETURNS:
  * Pointer to temp pages array on success.
  */
-static struct page **pcpu_get_pages(struct pcpu_chunk *chunk_alloc)
+static struct page **pcpu_get_pages(void)
 {
 	static struct page **pages;
 	size_t pages_size = pcpu_nr_units * pcpu_unit_pages * sizeof(pages[0]);
@@ -275,7 +274,7 @@ static int pcpu_populate_chunk(struct pcpu_chunk *chunk,
 {
 	struct page **pages;
 
-	pages = pcpu_get_pages(chunk);
+	pages = pcpu_get_pages();
 	if (!pages)
 		return -ENOMEM;
 
@@ -313,7 +312,7 @@ static void pcpu_depopulate_chunk(struct pcpu_chunk *chunk,
 	 * successful population attempt so the temp pages array must
 	 * be available now.
 	 */
-	pages = pcpu_get_pages(chunk);
+	pages = pcpu_get_pages();
 	BUG_ON(!pages);
 
 	/* unmap and free */
-- 
2.11.0.483.g087da7b7c-goog

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

* Re: [PATCH 1/3] percpu: remove unused chunk_alloc parameter from pcpu_get_pages()
  2017-02-25 20:59 [PATCH 1/3] percpu: remove unused chunk_alloc parameter from pcpu_get_pages() Tahsin Erdogan
@ 2017-03-06 20:57 ` Tejun Heo
  0 siblings, 0 replies; 2+ messages in thread
From: Tejun Heo @ 2017-03-06 20:57 UTC (permalink / raw)
  To: Tahsin Erdogan
  Cc: Christoph Lameter, Andrew Morton, Chris Wilson, Andrey Ryabinin,
	Roman Pen, Joonas Lahtinen, Michal Hocko, zijun_hu, Joonsoo Kim,
	linux-mm, linux-kernel

On Sat, Feb 25, 2017 at 12:59:26PM -0800, Tahsin Erdogan wrote:
> pcpu_get_pages() doesn't use chunk_alloc parameter, remove it.
> 
> Fixes: fbbb7f4e149f ("percpu: remove the usage of separate populated bitmap in percpu-vm")
> Signed-off-by: Tahsin Erdogan <tahsin@google.com>

Applied to wq/for-4.11-fixes.

Thanks.

-- 
tejun

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

end of thread, other threads:[~2017-03-06 21:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-25 20:59 [PATCH 1/3] percpu: remove unused chunk_alloc parameter from pcpu_get_pages() Tahsin Erdogan
2017-03-06 20:57 ` Tejun Heo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).