The patch titled mm: un-needed add-store operation wastes a few bytes has been removed from the -mm tree. Its filename was un-needed-add-store-operation-wastes-a-few-bytes.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: mm: un-needed add-store operation wastes a few bytes From: nkalmala <nkalmala@xxxxxxxxx> Un-needed add-store operation wastes a few bytes. 8 bytes wasted with -O2, on a ppc. Signed-off-by: nkalmala <nkalmala@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/page_alloc.c~un-needed-add-store-operation-wastes-a-few-bytes mm/page_alloc.c --- a/mm/page_alloc.c~un-needed-add-store-operation-wastes-a-few-bytes +++ a/mm/page_alloc.c @@ -853,7 +853,7 @@ again: pcp = &zone_pcp(zone, cpu)->pcp[cold]; local_irq_save(flags); if (!pcp->count) { - pcp->count += rmqueue_bulk(zone, 0, + pcp->count = rmqueue_bulk(zone, 0, pcp->batch, &pcp->list); if (unlikely(!pcp->count)) goto failed; _ Patches currently in -mm which might be from nkalmala@xxxxxxxxx are origin.patch ppc-booke-reg-mcsr-msg-misquoted.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