From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755447AbcLZTHz (ORCPT ); Mon, 26 Dec 2016 14:07:55 -0500 Received: from mail-it0-f65.google.com ([209.85.214.65]:35017 "EHLO mail-it0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751749AbcLZTHy (ORCPT ); Mon, 26 Dec 2016 14:07:54 -0500 MIME-Version: 1.0 In-Reply-To: <20161226111654.76ab0957@roar.ozlabs.ibm.com> References: <20161225030030.23219-1-npiggin@gmail.com> <20161225030030.23219-3-npiggin@gmail.com> <20161226111654.76ab0957@roar.ozlabs.ibm.com> From: Linus Torvalds Date: Mon, 26 Dec 2016 11:07:52 -0800 X-Google-Sender-Auth: ye44aQarQY69FnkU5unXhEMcIfQ Message-ID: Subject: Re: [PATCH 2/2] mm: add PageWaiters indicating tasks are waiting for a page bit To: Nicholas Piggin Cc: Dave Hansen , Bob Peterson , Linux Kernel Mailing List , Steven Whitehouse , Andrew Lutomirski , Andreas Gruenbacher , Peter Zijlstra , linux-mm , Mel Gorman Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Dec 25, 2016 at 5:16 PM, Nicholas Piggin wrote: > > I did actually play around with that. I could not get my skylake > to forward the result from a lock op to a subsequent load (the > latency was the same whether you use lock ; andb or lock ; andl > (32 cycles for my test loop) whereas with non-atomic versions I > was getting about 15 cycles for andb vs 2 for andl. Yes, interesting. It does look like the locked ops don't end up having the partial write issue and the size of the op doesn't matter. But it's definitely the case that the write buffer hit immediately after the atomic read-modify-write ends up slowing things down, so the profile oddity isn't just a profile artifact. I wrote a stupid test program that did an atomic increment, and then read either the same value, or an adjacent value in memory (so same instruvtion sequence, the difference just being what memory location the read accessed). Reading the same value after the atomic update was *much* more expensive than reading the adjacent value, so it causes some kind of pipeline hickup (by about 50% of the cost of the atomic op itself: iow, the "atomic-op followed by read same location" was over 1.5x slower than "atomic op followed by read of another location"). So the atomic ops don't serialize things entirely, but they *hate* having the value read (regardless of size) right after being updated, because it causes some kind of nasty pipeline issue. A cmpxchg does seem to avoid the issue. Linus