search for: __have_arch_page_test_dirty

Displaying 2 results from an estimated 2 matches for "__have_arch_page_test_dirty".

2007 Apr 18
0
[patch 9/9] Guest page hinting: full s390 support.
....6-patched/include/asm-generic/pgtable.h 2006-09-01 12:50:25.000000000 +0200 @@ -139,8 +139,15 @@ static inline void ptep_set_wrprotect(st #define pte_same(A,B) (pte_val(A) == pte_val(B)) #endif -#ifndef __HAVE_ARCH_PAGE_TEST_AND_CLEAR_DIRTY -#define page_test_and_clear_dirty(page) (0) +#ifndef __HAVE_ARCH_PAGE_TEST_DIRTY +#define page_test_dirty(page) (0) +#endif + +#ifndef __HAVE_ARCH_PAGE_CLEAR_DIRTY +#define page_clear_dirty(page) do { } while (0) +#endif + +#ifndef __HAVE_ARCH_PAGE_TEST_DIRTY #define pte_maybe_dirty(pte) pte_dirty(pte) #else #define pte_maybe_dirty(pte) (1) diff -urpN linux-2.6/include/a...
2007 Apr 18
0
[patch 9/9] Guest page hinting: full s390 support.
....6-patched/include/asm-generic/pgtable.h 2006-09-01 12:50:25.000000000 +0200 @@ -139,8 +139,15 @@ static inline void ptep_set_wrprotect(st #define pte_same(A,B) (pte_val(A) == pte_val(B)) #endif -#ifndef __HAVE_ARCH_PAGE_TEST_AND_CLEAR_DIRTY -#define page_test_and_clear_dirty(page) (0) +#ifndef __HAVE_ARCH_PAGE_TEST_DIRTY +#define page_test_dirty(page) (0) +#endif + +#ifndef __HAVE_ARCH_PAGE_CLEAR_DIRTY +#define page_clear_dirty(page) do { } while (0) +#endif + +#ifndef __HAVE_ARCH_PAGE_TEST_DIRTY #define pte_maybe_dirty(pte) pte_dirty(pte) #else #define pte_maybe_dirty(pte) (1) diff -urpN linux-2.6/include/a...