All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zoltan Menyhart <Zoltan.Menyhart_AT_bull.net@nospam.org>
To: Hirokazu Takahashi <taka@valinux.co.jp>
Cc: haveblue@us.ibm.com, linux-ia64@vger.kernel.org,
	linux-kernel@vger.kernel.org, iwamoto@valinux.co.jp
Subject: Re: Migrate pages from a ccNUMA node to another - patch
Date: Tue, 30 Mar 2004 14:32:33 +0000	[thread overview]
Message-ID: <40698501.BD3E12BF@nospam.org> (raw)
In-Reply-To: 20040330.210804.71938972.taka@valinux.co.jp

Hirokazu Takahashi wrote:

[...]
> 
> It's not hard to add "no-retry-mode" to "remap_onepage()" function
> if you want. It may skip to migrate some pages if they are accessed
> heavily. In paticular if you only want to care about anonymous pages,
> they will be handled very well.

Well, why not to give it a try ?
Yet your code is not really easy to read. :-)
I do not dare to adapt it on my own, I am afraid of breaking something.
Could you please provide me a modified version of your "remap_onepage()" ?
Can we move to 2.6.4 ?

In addition to "no-retry-mode", I need to specify where the new page
should be allocated from.

Here is my interface I need to implement with "remap_onepage()":

/*
 * Common part of checking & migrating the pages one by one.
 *
 * Arguments:	src_node:	Source NUMA node
 *		old_p:		-> old page structure
 *		node:		Destination NUMA node
 *		mm:		-> victim "mm_struct"
 *		pte:		-> PTE of the page to be moved
 *
 * Returns:	1:		Migration O. K.
 *		0:		Minor error, no actual migration has been done
 *		-Exxx:		Catastrophic error
 *
 * Notes:	- "mm->page_table_lock" and "mm->mmap_sem" have to be held.
 *		- The old page is "get_page()"-ed on entry to make sure it does not go
 *		  away in the mean time - on return it gets "put_page()"-ed.
 */
int
common_check_migrate_1_page(const int src_node, struct page * const old_p,
			const int node, struct mm_struct * const mm, pte_t * const pte)

Notes: "pte" can be NULL if I do not know it apriori
       I cannot release "mm->page_table_lock" otherwise I have to re-scan the "mm->pgd".

Thanks,

Zoltán Menyhárt

WARNING: multiple messages have this Message-ID (diff)
From: Zoltan Menyhart <Zoltan.Menyhart_AT_bull.net@nospam.org>
To: Hirokazu Takahashi <taka@valinux.co.jp>
Cc: haveblue@us.ibm.com, linux-ia64@vger.kernel.org,
	linux-kernel@vger.kernel.org, iwamoto@valinux.co.jp
Subject: Re: Migrate pages from a ccNUMA node to another - patch
Date: Tue, 30 Mar 2004 16:32:33 +0200	[thread overview]
Message-ID: <40698501.BD3E12BF@nospam.org> (raw)
In-Reply-To: 20040330.210804.71938972.taka@valinux.co.jp

Hirokazu Takahashi wrote:

[...]
> 
> It's not hard to add "no-retry-mode" to "remap_onepage()" function
> if you want. It may skip to migrate some pages if they are accessed
> heavily. In paticular if you only want to care about anonymous pages,
> they will be handled very well.

Well, why not to give it a try ?
Yet your code is not really easy to read. :-)
I do not dare to adapt it on my own, I am afraid of breaking something.
Could you please provide me a modified version of your "remap_onepage()" ?
Can we move to 2.6.4 ?

In addition to "no-retry-mode", I need to specify where the new page
should be allocated from.

Here is my interface I need to implement with "remap_onepage()":

/*
 * Common part of checking & migrating the pages one by one.
 *
 * Arguments:	src_node:	Source NUMA node
 *		old_p:		-> old page structure
 *		node:		Destination NUMA node
 *		mm:		-> victim "mm_struct"
 *		pte:		-> PTE of the page to be moved
 *
 * Returns:	1:		Migration O. K.
 *		0:		Minor error, no actual migration has been done
 *		-Exxx:		Catastrophic error
 *
 * Notes:	- "mm->page_table_lock" and "mm->mmap_sem" have to be held.
 *		- The old page is "get_page()"-ed on entry to make sure it does not go
 *		  away in the mean time - on return it gets "put_page()"-ed.
 */
int
common_check_migrate_1_page(const int src_node, struct page * const old_p,
			const int node, struct mm_struct * const mm, pte_t * const pte)

Notes: "pte" can be NULL if I do not know it apriori
       I cannot release "mm->page_table_lock" otherwise I have to re-scan the "mm->pgd".

Thanks,

Zoltán Menyhárt

  reply	other threads:[~2004-03-30 14:32 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-26  9:02 Migrate pages from a ccNUMA node to another Zoltan Menyhart
2004-03-26  9:02 ` Zoltan Menyhart
2004-03-26 10:39 ` Robin Holt
2004-03-26 10:39   ` Robin Holt
2004-03-26  7:10   ` Andi Kleen
2004-03-26  7:10     ` Andi Kleen
2004-03-26  9:18     ` Migrate pages from a ccNUMA node to another - patch Zoltan Menyhart
2004-03-26  9:18       ` Zoltan Menyhart
2004-03-26 17:20       ` Dave Hansen
2004-03-26 17:20         ` Dave Hansen
2004-03-30  8:27         ` IWAMOTO Toshihiro
2004-03-30  8:27           ` IWAMOTO Toshihiro
2004-03-30  9:05           ` Hirokazu Takahashi
2004-03-30  9:05             ` Hirokazu Takahashi
2004-03-30 11:20             ` Zoltan Menyhart
2004-03-30 11:20               ` Zoltan Menyhart
2004-03-30 12:08               ` Hirokazu Takahashi
2004-03-30 12:08                 ` Hirokazu Takahashi
2004-03-30 14:32                 ` Zoltan Menyhart [this message]
2004-03-30 14:32                   ` Zoltan Menyhart
2004-04-03  2:58                   ` Hirokazu Takahashi
2004-04-03  2:58                     ` Hirokazu Takahashi
2004-04-05 15:07                     ` Zoltan Menyhart
2004-04-05 15:07                       ` Zoltan Menyhart
2004-04-05 15:40                       ` Dave Hansen
2004-04-05 15:40                         ` Dave Hansen
2004-04-06 14:42                         ` Migrate pages from a ccNUMA node to another Zoltan Menyhart
2004-04-06 14:42                           ` Zoltan Menyhart
2004-04-08 13:32                       ` Migrate pages from a ccNUMA node to another - patch Hirokazu Takahashi
2004-04-08 13:32                         ` Hirokazu Takahashi
2004-03-30 11:39         ` Zoltan Menyhart
2004-03-30 11:39           ` Zoltan Menyhart
2004-03-30 15:18           ` Dave Hansen
2004-03-30 15:18             ` Dave Hansen
2004-03-30 15:58           ` Dave Hansen
2004-03-30 15:58             ` Dave Hansen
2004-03-30 16:37             ` Dave Hansen
2004-03-30 16:37               ` Dave Hansen
2004-04-01  8:44             ` Migrate pages from a ccNUMA node to another Zoltan Menyhart
2004-04-01  8:44               ` Zoltan Menyhart
2004-03-26 12:38   ` Zoltan Menyhart
2004-03-26 12:38     ` Zoltan Menyhart
2004-03-29 23:16 ` Erich Focht
2004-03-29 23:16   ` Erich Focht
2004-03-30  9:57   ` Zoltan Menyhart
2004-03-30  9:57     ` Zoltan Menyhart

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=40698501.BD3E12BF@nospam.org \
    --to=zoltan.menyhart_at_bull.net@nospam.org \
    --cc=haveblue@us.ibm.com \
    --cc=iwamoto@valinux.co.jp \
    --cc=linux-ia64@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=taka@valinux.co.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.