login
Header Space

 
 

Mailing list archives

Search results

Found 182 matching messages (0.077 seconds). Page 1 of 10.

Re: [Patch 003/005](memory hotplug) make alloc_bootmem_section()

... at 10:41 PM, Yasunori Goto goto@jp.fujitsu.com ... patch. > > > > Signed-off-by: Yasunori Goto goto@jp.fujitsu.com ... ARCH_LOW_ADDRESS_LIMIT #define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL #endif -- Yasunori Goto -- To unsubscribe from this ...

linux-kernel - Yasunori Goto - Apr 3 2008 - 02:07

Re: [PATCH -mm 00/14] bootmem rewrite v4

... sidx is zero) to make Yasunori's machine boot again > o ... ->last_success treatment as noted by > Yasunori Goto > > version 2: > o broken ... changed, 570 insertions(+), 494 deletions(-) > -- Yasunori Goto -- To unsubscribe from this ...

linux-kernel - Yasunori Goto - Jun 5 2008 - 21:15

Re: [Patch](Resend) mm/sparse.c: Improve the error handling for sparse_add_one_section()

... ,18 +411,16 @@ int sparse_add_one_section(struct zone * > goto out; > } > > - if (!usemap) { > - ret = -ENOMEM; > - ... (memmap, nr_pages); > + } > return ret; > } > #endif -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - Nov 28 2007 - 22:42

Re: [PATCH -mm] mm: Fix memory hotplug + sparsemem build.

... 18:37:12 +0900 Yasunori Goto goto@jp.fujitsu.com> ... - ret = kswapd_run(nid); > > - if (ret) > > - goto error; > > } > > > > /* call arch's memory ... Andy-san's comment. :-) Thanks. -- Yasunori Goto - To unsubscribe from this ...

linux-kernel - Yasunori Goto - Sep 13 2007 - 22:02

Re: [PATCH]Fix parsing kernelcore boot option for ia64

... Apr 2007 14:26:22 +0900 Yasunori Goto goto@jp.fujitsu.com> wrote: ... 21-rc6-mm1. > > > > Signed-off-by: Yasunori Goto goto@jp.fujitsu.com> > ... of it on ia64. Anyway, I'll try to fix it. -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - Apr 23 2007 - 07:46

Re: [PATCH] memory hotplug: fix early allocation handling

Looks good to me. Thanks. Acked-by: Yasunori Goto goto@jp.fujitsu.com> > From: ... wait_table = (wait_queue_head_t *) > alloc_bootmem_node(pgdat, alloc_size); > } else { -- Yasunori Goto -- To unsubscribe from this list: send ...

linux-kernel - Yasunori Goto - May 21 2008 - 03:29

Re: PS3: trouble with SPARSEMEM_VMEMMAP and kexec

... wrote: > >> > On Thu, 6 Dec 2007, Yasunori Goto wrote: > >> > > > I'll try Milton's suggestion to ... ok. Oh, I see. Sorry for noise. Bye. -- Yasunori Goto -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the ...

linux-kernel - Yasunori Goto - Dec 9 2007 - 21:55

Re: [PATCH 1/5] generic __remove_pages() support

... zone and marked the pages reserved. > > TODO: Yasunori Goto is working on patches to freeup ... zone *zone, struct mem_section *ms); > > #endif /* __LINUX_MEMORY_HOTPLUG_H */ > > -- Yasunori Goto -- To unsubscribe from this list: send ...

linux-kernel - Yasunori Goto - Mar 27 2008 - 22:26

Re: [Patch 002/005](memory hotplug) align memmap to page size

... , 2008 at 09:46:19PM +0900, Yasunori Goto wrote: > > To free memmap easier, ... hot-remove. > > > > > > Signed-off-by: Yasunori Goto goto@jp.fujitsu.com> > ... one usemap in the end. Bye. -- Yasunori Goto -- To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - Jun 16 2008 - 09:26

Re: [Patch 003/005](memory hotplug) make alloc_bootmem_section()

... 2008 at 09:47:29PM +0900, Yasunori Goto wrote: > > alloc_bootmem_section() can allocate specified ... patch. > > > > Signed-off-by: Yasunori Goto goto@jp.fujitsu.com> ... check the newest -mm code. -- Yasunori Goto -- To unsubscribe from this ...

linux-kernel - Yasunori Goto - Jun 16 2008 - 09:18

[RFC] memory hotremove patch take 2 [05/10] (make basic remove code)

... ret = capture_isolate_freed_pages(info); + if(ret < 0) + goto failed_removal; + + nr_pages = end_pfn - start_pfn; + pfn = start_pfn ... __add_pages(struct zone *zone, unsigned long start_pfn, -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - May 8 2007 - 23:11

[RFC:Patch: 003/008](memory hotplug) check node online in __alloc_pages

... : if (NUMA_BUILD && (gfp_mask & GFP_THISNODE) == GFP_THISNODE) goto nopage; + pgdat_remove_read_lock(); + + if (unlikely(!node_online(zonelist_nid ... , so set up alloc_flags according -- Yasunori Goto -- To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - Jul 31 2008 - 07:58

[RFC:Patch: 001/008](memory hotplug) change parameter from pointer of zonelist to node id

... , high_zoneidx, ALLOC_NO_WATERMARKS, + zonelist_nid); if (page) goto got_pg; if (gfp_mask & __GFP_NOFAIL) { @@ -1638,7 ... extern unsigned slab_node(struct mempolicy *policy); -- Yasunori Goto -- To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - Jul 31 2008 - 07:55

[RFC] memory hotremove patch take 2 [02/10] (make page unused)

... (start < tmp->end_pfn && end > tmp->start_pfn) { + goto out_free; + } + } + } + info->start_pfn = start; + info->end_pfn = ... page, int order) +{ + return 0; +} + +#endif +#endif -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - May 8 2007 - 23:10

Re: [RFC] memory hotremove patch take 2 [07/10] (delay freeing anon_vma)

... 633,10 @@ static int unmap_and_move(new_page_t get goto unlock; wait_on_page_writeback(page); } - + if (PageAnon(page) && ... (int flag) +{ + return 0; +} + #endif #endif -- Yasunori Goto - To unsubscribe from this list: send ...

linux-kernel - Yasunori Goto - May 8 2007 - 23:11

Re: [PATCH] mm: show node to memory section relationship with symlinks in sysfs

... -09-30 at 17:06 +0900, Yasunori Goto wrote: > > > > +#define section_nr_to_nid(section_nr) ... layer underneath them. > > So, using Yasunori-san's example the memory ... . This is true cause. Bye. -- Yasunori Goto -- To unsubscribe from this ...

linux-kernel - Yasunori Goto - Sep 30 2008 - 22:48

Re: [PATCH 2/2] Align ZONE_MOVABLE to a MAX_ORDER_NR_PAGES boundary

Looks good. :-) Thanks. Acked-by: Yasunori Goto goto@jp.fujitsu.com> > > ... > + zone_movable_pfn[nid] = > + roundup(zone_movable_pfn[nid], MAX_ORDER_NR_PAGES); > } > > /** -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - Apr 24 2007 - 22:00

[RFC] memory hotremove patch take 2 [06/10] (ia64's remove_memory code)

... ret = offline_pages(start_pfn, end_pfn, timeout); + if (ret) + goto out; + /* we can free mem_map at this point ... +out: + return ret; } + EXPORT_SYMBOL_GPL(remove_memory); #endif -- Yasunori Goto - To unsubscribe from this list: send ...

linux-kernel - Yasunori Goto - May 8 2007 - 23:11

[RFC] memory hotremove patch take 2 [09/10] (direct isolation for remove)

... page, 0); + __put_page(page); + unlock_page(page); + goto move_newpage; + } + unlock: unlock_page(page); @@ -758,7 + ... and IO resources (EXPERIMENTAL)" if (!64BIT && EXPERIMENTAL) -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - May 8 2007 - 23:12

[RFC] memory hotremove patch take 2 [10/10] (retry swap-in page)

... and tries later. Signed-off-by: Yasunori Goto goto@jp.fujitsu.com> mm ... + /* swap in now. try lator*/ + goto unlock; + /* * Establish migration ptes or remove ptes */ -- Yasunori Goto - To unsubscribe from this list: ...

linux-kernel - Yasunori Goto - May 8 2007 - 23:12

speck-geostationary