From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=3.0 tests=DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS,T_DKIM_INVALID, USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 478D2C6778A for ; Mon, 9 Jul 2018 13:54:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EE4222087C for ; Mon, 9 Jul 2018 13:54:45 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="vLUVtiSz" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EE4222087C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932863AbeGINym (ORCPT ); Mon, 9 Jul 2018 09:54:42 -0400 Received: from merlin.infradead.org ([205.233.59.134]:54350 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754437AbeGINyk (ORCPT ); Mon, 9 Jul 2018 09:54:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=bLvUsFAxTgM2bSGjpsYqXrpnnt2jvGtCNP4l0nS5its=; b=vLUVtiSzknfbbC8vahqv5r4sb +mu0JLNa4nIuY7pFB3vjrhzCQUoJSRGBU8zufNPGMJWkyxVwvKI8xI+PU6YHgXyxA+6YKwirZ+lar 7k1b8/2Fjld72FhFMu5n1kn/poDhb1Gc+PJmHh2s+SfCE7WeVZ2QEIgLEk2Hbkpw2fqcqppys144u MMKsq0tYYso5db52YtGYzqYQI7uWdya9FNF+Rgq/0joybPA9SuLW4JCBWsD+sGUbadJkycvw0Kvnm XGY0sZ9lYGDpBCkrFGWZoxJ8gLkGg1cFfaXBVPLz1pGcoAtUDliMpdudwiN+YnnpsEZoFSbiV6W94 uxOxpO22g==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=hirez.programming.kicks-ass.net) by merlin.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fcWcG-00017x-53; Mon, 09 Jul 2018 13:54:12 +0000 Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 794D620297EAB; Mon, 9 Jul 2018 15:54:09 +0200 (CEST) Date: Mon, 9 Jul 2018 15:54:09 +0200 From: Peter Zijlstra To: Alexey Brodkin Cc: linux-kernel@vger.kernel.org, linux-snps-arc@lists.infradead.org, linux-arch@vger.kernel.org, Greg Kroah-Hartman , Geert Uytterhoeven , David Laight , Thomas Gleixner , Will Deacon , Greg KH , stable@vger.kernel.org Subject: Re: [PATCH v3] devres: Explicitly align datai[] to 64-bit Message-ID: <20180709135409.GQ2476@hirez.programming.kicks-ass.net> References: <20180709134550.29541-1-abrodkin@synopsys.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180709134550.29541-1-abrodkin@synopsys.com> User-Agent: Mutt/1.10.0 (2018-05-17) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 09, 2018 at 04:45:50PM +0300, Alexey Brodkin wrote: > diff --git a/drivers/base/devres.c b/drivers/base/devres.c > index f98a097e73f2..d65327cb83c9 100644 > --- a/drivers/base/devres.c > +++ b/drivers/base/devres.c > @@ -24,8 +24,12 @@ struct devres_node { > > struct devres { > struct devres_node node; > - /* -- 3 pointers */ > - unsigned long long data[]; /* guarantee ull alignment */ > + /* > + * data[] must be 64 bit aligned even on 32 bit architectures > + * because it might be accessed by instructions that require > + * aligned memory arguments such as atomic64_t. > + */ > + u8 __aligned(8) data[]; > }; >From a quick reading in Documentation/driver-model/devres.txt this devres muck is supposed to be device memory, right? atomics (as in atomic*_t) are not defined for use on mmio. wth kind of code is relying on this?