Hi Andrew, Today's linux-next merge of the akpm tree got a conflict in mm/mempolicy.c between commit e9d5bc24d665 ("mm/mpol: Make mempolicy home-node aware") from the tip tree and commit "mempolicy: fix a memory corruption by refcount imbalance in alloc_pages_vma()" from the akpm tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc mm/mempolicy.c index 6e2cd87,3c23d89..0000000 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@@ -1603,7 -1587,8 +1603,8 @@@ asmlinkage long compat_sys_mbind(compat struct mempolicy *get_vma_policy(struct task_struct *task, struct vm_area_struct *vma, unsigned long addr) { - struct mempolicy *pol = task->mempolicy; + struct mempolicy *pol = get_task_policy(task); + int got_ref; if (vma) { if (vma->vm_ops && vma->vm_ops->get_policy) {