The patch titled mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches fix has been removed from the -mm tree. Its filename was mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches-fix.patch This patch was dropped because it was folded into mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches fix From: David Rientjes <rientjes@xxxxxxxxxx> You'll also need the following since vm_dirty_bytes is declared as an unsigned long. Signed-off-by: David Rientjes <rientjes@xxxxxxxxxx> Cc: Sven Wegener <sven.wegener@xxxxxxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Cc: Dave Chinner <david@xxxxxxxxxxxxx> Cc: Christoph Lameter <cl@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page-writeback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/page-writeback.c~mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches-fix mm/page-writeback.c --- a/mm/page-writeback.c~mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches-fix +++ a/mm/page-writeback.c @@ -209,7 +209,7 @@ int dirty_bytes_handler(struct ctl_table struct file *filp, void __user *buffer, size_t *lenp, loff_t *ppos) { - int old_bytes = vm_dirty_bytes; + unsigned long old_bytes = vm_dirty_bytes; int ret; ret = proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos); _ Patches currently in -mm which might be from rientjes@xxxxxxxxxx are mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches.patch mm-fix-dirty_bytes-dirty_background_bytes-sysctls-on-64bit-arches-fix.patch oom_kill-dont-call-for-int_sqrt0.patch page_fault-retry-with-nopage_retry.patch page_fault-retry-with-nopage_retry-fix.patch memcg-use-css-id.patch memcg-hierarchical-stat.patch memcg-fix-shrinking-memory-to-return-ebusy-by-fixing-retry-algorithm.patch memcg-fix-oom-killer-under-memcg.patch memcg-fix-oom-killer-under-memcg-fix2.patch memcg-fix-oom-killer-under-memcg-fix.patch memcg-show-memcg-information-during-oom.patch memcg-show-memcg-information-during-oom-fix2.patch memcg-show-memcg-information-during-oom-fix.patch memcg-show-memcg-information-during-oom-fix-fix.patch memcg-show-memcg-information-during-oom-fix-fix-checkpatch-fixes.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html