Prev: epoll clarification sought: multithreaded epoll_wait for UDP sockets?
Next: replace DECLARE_DMA_UNMAP_ADD_{ADDR,LEN} with DEFINE_DMA_UNMAP_ADD_{ADDR,LEN}
From: John Kacur on 3 Mar 2010 17:50 This fixes the following problem that occurs when CONFIG_DEBUG_VM=y mm/highmem.c:534: error: 'pkmap_count' undeclared (first use in this function) Signed-off-by: John Kacur <jkacur(a)redhat.com> --- mm/highmem.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/mm/highmem.c b/mm/highmem.c index 1b534a8..887a487 100644 --- a/mm/highmem.c +++ b/mm/highmem.c @@ -531,7 +531,7 @@ static int __set_page_address(struct page *page, void *virtual, int pos) struct page_address_map *pam; VM_BUG_ON(!PageHighMem(page)); - VM_BUG_ON(atomic_read(&pkmap_count[pos]) != 0); + VM_BUG_ON(atomic_read(&pkmap[pos].count) != 0); VM_BUG_ON(pos < 0 || pos >= LAST_PKMAP); pas = page_slot(page); -- 1.6.5.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |