Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp174042imm; Sun, 8 Jul 2018 22:49:42 -0700 (PDT) X-Google-Smtp-Source: AAOMgpeKZ9Fvr1ALOoz0c3hQhmA698ZyNduHaEGDR1LewtR1aFzOBRmdIFgk5z3HpRI5nPs7fZKF X-Received: by 2002:a17:902:b604:: with SMTP id b4-v6mr19193840pls.18.1531115382202; Sun, 08 Jul 2018 22:49:42 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1531115382; cv=none; d=google.com; s=arc-20160816; b=g8efBPxTAcEWSjEqFDUYRpftdK2k1KviHFkLRP5t4ogZgVc0MSnUzJR4P1ma8N4hJg dBTdIuTubusyANM/MmZplmAcaZMDmmrTZwiTrwXo7gVZ6BIrdRp1PJNn6MeRR2E1FAIA xHCQIhuq90IZdjl1omsFYlyxXUYvozTArTu2FdzsixIHlEbNnqvus0kxtVa6c/pF+0r5 u0scXxR+wUVgQvuhT5cKYkw93/RrYK47fpiZEi31DOdgi9j+YsPEhV038ndxyzGFODFI M+4+tuRWyOV5Qwtaz8dtPfkm7PNjj98yv6qBQ9puya5wQcpxlUfY7aAHzZOo1Z6V91XB AdAQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=D7O3K1K+LZa+TJxp0XQH3T1O67F3b0bwc4oh/XsaRss=; b=nW0yvXlCvRiYw1o/uBOoW8FDN9JjO38GMk1NicIEcbxpkWZSlGUJZAAx6LCni3w3kM BxTKWMdV7BMMoELJMsQl+TNGugxndACawrM9iAiiqTJrc5rlAxfXMuKPWTBWiZ82NwGD dHSjx5WDDP7iOJe6KtgKNkPyN+ROqNp5uK8Zs8YEipXZl0zvRqkFxSQ+QCvli9kLVSnl G9z4o0CiPrqSqXkmlzCq5r5OBnUhZzViQgf9N++2Gh/ARc94s1xOUbT3ZW3gPGasDQWj M0OJ2xx6GR7tl+EyjVQj42tqHxPxwBDeVZ56Xhf7IbTGXJ+sto7hhaj6aCTyGDehYuEC 2Dtg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v7-v6si13926019plp.304.2018.07.08.22.49.28; Sun, 08 Jul 2018 22:49:42 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754432AbeGIFss (ORCPT + 99 others); Mon, 9 Jul 2018 01:48:48 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:45712 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750996AbeGIFsq (ORCPT ); Mon, 9 Jul 2018 01:48:46 -0400 Received: from localhost (unknown [46.44.180.42]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id AB2E22C; Mon, 9 Jul 2018 05:48:45 +0000 (UTC) Date: Mon, 9 Jul 2018 07:48:42 +0200 From: Greg KH To: Alexey Brodkin Cc: linux-kernel@vger.kernel.org, linux-snps-arc@lists.infradead.org, linux-arch@vger.kernel.org, Thomas Gleixner , stable@vger.kernel.org Subject: Re: [RESEND PATCH v2] devres: Really align data field to unsigned long long Message-ID: <20180709054842.GB7618@kroah.com> References: <20180709044444.6397-1-abrodkin@synopsys.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180709044444.6397-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 07:44:44AM +0300, Alexey Brodkin wrote: > Depending on ABI "long long" type of a particular 32-bit CPU > might be aligned by either word (32-bits) or double word (64-bits). > Make sure "data" is really 64-bit aligned for any 32-bit CPU. > > At least for 32-bit ARC cores ABI requires "long long" types > to be aligned by normal 32-bit word. This makes "data" field aligned to > 12 bytes. Which is still OK as long as we use 32-bit data only. > > But once we want to use native atomic64_t type (i.e. when we use special > instructions LLOCKD/SCONDD for accessing 64-bit data) we easily hit > misaligned access exception. So is this something you hit today? If not, why is this needed for stable kernels? > That's because even on CPUs capable of non-aligned data access LL/SC > instructions require strict alignment. Are you going to hit this code with all types of structures? What happens when you do have an unaligned access? > > Signed-off-by: Alexey Brodkin > Cc: Greg Kroah-Hartman You didn't cc: this address :( > Cc: Thomas Gleixner > Cc: stable@vger.kernel.org > --- > > Changes v1 -> v2: > > * Reworded commit message > * Inserted comment right in source [Thomas] > > drivers/base/devres.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/drivers/base/devres.c b/drivers/base/devres.c > index f98a097e73f2..466fa59c866a 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 */ > + /* > + * Depending on ABI "long long" type of a particular 32-bit CPU > + * might be aligned by either word (32-bits) or double word (64-bits). > + * Make sure "data" is really 64-bit aligned for any 32-bit CPU. > + */ > + unsigned long long data[] __aligned(sizeof(unsigned long long)); > }; Does this change the padding today for any other arches? If so, does the increased memory usage cause any noticable issues? thanks, greg k-h