* - set_page_refcounted-vm_bug_on-fix.patch removed from -mm tree
@ 2008-02-05 22:32 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2008-02-05 22:32 UTC (permalink / raw)
To: qiyong, clameter, mm-commits
The patch titled
set_page_refcounted() VM_BUG_ON fix
has been removed from the -mm tree. Its filename was
set_page_refcounted-vm_bug_on-fix.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: set_page_refcounted() VM_BUG_ON fix
From: Qi Yong <qiyong@fc-cn.com>
The current PageTail semantic is that a PageTail page is first a
PageCompound page. So remove the redundant PageCompound test in
set_page_refcounted().
Signed-off-by: Qi Yong <qiyong@fc-cn.com>
Cc: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/internal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN mm/internal.h~set_page_refcounted-vm_bug_on-fix mm/internal.h
--- a/mm/internal.h~set_page_refcounted-vm_bug_on-fix
+++ a/mm/internal.h
@@ -24,7 +24,7 @@ static inline void set_page_count(struct
*/
static inline void set_page_refcounted(struct page *page)
{
- VM_BUG_ON(PageCompound(page) && PageTail(page));
+ VM_BUG_ON(PageTail(page));
VM_BUG_ON(atomic_read(&page->_count));
set_page_count(page, 1);
}
_
Patches currently in -mm which might be from qiyong@fc-cn.com are
origin.patch
kill-an-unused-ptr_err-in-bdev_cache_init.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-02-05 22:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-05 22:32 - set_page_refcounted-vm_bug_on-fix.patch removed from -mm tree akpm
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.