search for: page_discard_list

Displaying 8 results from an estimated 8 matches for "page_discard_list".

2007 Apr 18
1
[patch 8/9] Guest page hinting: discarded page list.
...linux-2.6/mm/page_alloc.c linux-2.6-patched/mm/page_alloc.c --- linux-2.6/mm/page_alloc.c 2006-09-01 12:50:25.000000000 +0200 +++ linux-2.6-patched/mm/page_alloc.c 2006-09-01 12:50:25.000000000 +0200 @@ -786,6 +786,42 @@ void drain_local_pages(void) } #endif /* CONFIG_PM */ +#if defined(CONFIG_PAGE_DISCARD_LIST) +DEFINE_PER_CPU(struct list_head, page_discard_list); + +static void __page_shrink_discards(void *info) +{ + static DEFINE_SPINLOCK(splice_lock); + struct list_head *discard_list = info; + struct list_head *cpu_list = &__get_cpu_var(page_discard_list); + + if (list_empty(cpu_list)) + return;...
2007 Apr 18
1
[patch 8/9] Guest page hinting: discarded page list.
...linux-2.6/mm/page_alloc.c linux-2.6-patched/mm/page_alloc.c --- linux-2.6/mm/page_alloc.c 2006-09-01 12:50:25.000000000 +0200 +++ linux-2.6-patched/mm/page_alloc.c 2006-09-01 12:50:25.000000000 +0200 @@ -786,6 +786,42 @@ void drain_local_pages(void) } #endif /* CONFIG_PM */ +#if defined(CONFIG_PAGE_DISCARD_LIST) +DEFINE_PER_CPU(struct list_head, page_discard_list); + +static void __page_shrink_discards(void *info) +{ + static DEFINE_SPINLOCK(splice_lock); + struct list_head *discard_list = info; + struct list_head *cpu_list = &__get_cpu_var(page_discard_list); + + if (list_empty(cpu_list)) + return;...
2007 Apr 18
0
[patch 9/9] Guest page hinting: full s390 support.
...6/arch/s390/Kconfig 2006-09-01 12:49:36.000000000 +0200 +++ linux-2.6-patched/arch/s390/Kconfig 2006-09-01 12:50:25.000000000 +0200 @@ -463,8 +463,13 @@ config KEXEC current kernel, and to start another kernel. It is like a reboot but is independent of hardware/microcode support. +config PAGE_DISCARD_LIST + bool + default n + config PAGE_STATES bool "Enable support for guest page hinting." + select PAGE_DISCARD_LIST endmenu diff -urpN linux-2.6/arch/s390/kernel/traps.c linux-2.6-patched/arch/s390/kernel/traps.c --- linux-2.6/arch/s390/kernel/traps.c 2006-09-01 12:49:25.000000000 +0...
2007 Apr 18
0
[patch 9/9] Guest page hinting: full s390 support.
...6/arch/s390/Kconfig 2006-09-01 12:49:36.000000000 +0200 +++ linux-2.6-patched/arch/s390/Kconfig 2006-09-01 12:50:25.000000000 +0200 @@ -463,8 +463,13 @@ config KEXEC current kernel, and to start another kernel. It is like a reboot but is independent of hardware/microcode support. +config PAGE_DISCARD_LIST + bool + default n + config PAGE_STATES bool "Enable support for guest page hinting." + select PAGE_DISCARD_LIST endmenu diff -urpN linux-2.6/arch/s390/kernel/traps.c linux-2.6-patched/arch/s390/kernel/traps.c --- linux-2.6/arch/s390/kernel/traps.c 2006-09-01 12:49:25.000000000 +0...
2007 Jun 28
6
[patch 0/6] resend: guest page hinting version 5.
Greetings, after Carsten pitched CMM2 on the kvm mini summit here is a repost of version 5 of the guest page hinting patches. The code is still the same but has been adapted to the latest git level. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.
2007 Jun 28
6
[patch 0/6] resend: guest page hinting version 5.
Greetings, after Carsten pitched CMM2 on the kvm mini summit here is a repost of version 5 of the guest page hinting patches. The code is still the same but has been adapted to the latest git level. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.
2007 May 11
6
[patch 0/6] [rfc] guest page hinting version 5
After way to many months here is the fifth version of the guest page hinting patches. Compared to version four a few improvements have been added: - Avoid page_host_discards() calls outside of page-states.h - The discard list is now implemented via the page_free_discarded hook and architecture specific code. - PG_state_change page flag has been replaced with architecture specficic
2007 May 11
6
[patch 0/6] [rfc] guest page hinting version 5
After way to many months here is the fifth version of the guest page hinting patches. Compared to version four a few improvements have been added: - Avoid page_host_discards() calls outside of page-states.h - The discard list is now implemented via the page_free_discarded hook and architecture specific code. - PG_state_change page flag has been replaced with architecture specficic