Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758378AbbKSLIx (ORCPT ); Thu, 19 Nov 2015 06:08:53 -0500 Received: from pandora.arm.linux.org.uk ([78.32.30.218]:39822 "EHLO pandora.arm.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758188AbbKSLIv (ORCPT ); Thu, 19 Nov 2015 06:08:51 -0500 Date: Thu, 19 Nov 2015 11:08:42 +0000 From: Russell King - ARM Linux To: Thomas Gleixner Cc: Marc Gonzalez , Daniel Lezcano , LKML , Mans Rullgard , Viresh Kumar , Nicolas Pitre , Tony Lindgren , Sebastian Frias Subject: Re: [PATCH] clocksource: Store reg field within struct clocksource Message-ID: <20151119110842.GX8644@n2100.arm.linux.org.uk> References: <564C8086.80804@sigmadesigns.com> <20151118172114.GS8644@n2100.arm.linux.org.uk> <20151119103645.GV8644@n2100.arm.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1489 Lines: 32 On Thu, Nov 19, 2015 at 11:42:48AM +0100, Thomas Gleixner wrote: > On Thu, 19 Nov 2015, Russell King - ARM Linux wrote: > > The basic cause of this problem is the ____cacheline_aligned annotation > > which effectively prevents wrapping struct clocksource to provide > > implementation specific data. > > > > Maybe your idea is that struct clocksource should be bloated with all > > implementation specific data in the long term? > > Certainly not. That mmio use case is sane enough, but you are right, > that we should try to lift that ____cacheline_aligned restriction. I don't think the cache line alignment of struct clocksource matters anymore - the core timekeeping code no longer uses struct clocksource but instead uses struct timekeeper, which caches much of the data from struct clocksource. The only member of struct clocksource which it does access is max_cycles, which is more than 32 bytes into struct clocksource. So, I see no reason to waste memory with all these struct clocksources being bloated out to cacheline alignments. In addition, once ____cacheline_aligned is removed, I see no reason for Marc's change either. -- FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up according to speedtest.net. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/