Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp1730202imm; Thu, 20 Sep 2018 01:49:33 -0700 (PDT) X-Google-Smtp-Source: ANB0VdaEHmId6Oroevu7SiHqY17frW5UeOL6NoT+PM82xyQQReA3yXc6pPFGNpt0rSSvwm/hwB3D X-Received: by 2002:a17:902:8c85:: with SMTP id t5-v6mr2482346plo.17.1537433373272; Thu, 20 Sep 2018 01:49:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537433373; cv=none; d=google.com; s=arc-20160816; b=I0jL0Ko3cuRjCaTtdAXDf3+k0Jt4d3WOORUkTRWfUFyoDc1JWRY8xlVvLDjflBgIls /VZlBbhb4ntP826ZU+c9rUmMvTiK5Yf+29HKpb3w+nfU9kPZqWYOjxP2YEok5OIyBt0v cWZa9HZJw2qtX+Yr5xQItU9v+UeVYs/RIhr8niprLGeSl93B7eatRh2gqkJNDdl0/HAL 9KjeP1aallq9NfT+UZTOfuRSuZ4ljpW6eXCgZTh9KVOoY/viPpAEHeGAxcz7TPQFs8rI zDF4RYRQIcaK4aZAAQMpwrgCOBo3LA16prrbzE9vsItPZS7APiijWMoTMRxHP6zNMKXM M46g== 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; bh=Kb9i6nGmfhJMuPyd6X+8uuYcAZ43lcmVML9EzKtKYkE=; b=W+8bqJMcgGBmkHP4StnIp5G1vGMCMRDdRILDD2kO4x2bS+hi9oije2IeJHPOW9TvOO ZcFTpaPoNUSlLE7jYiv/cGiCJNUsOAhIIVrYmhcXQElwptOVU2cTi0+UIfPRMyEOv2D1 hcYQFm1o3BadFpUt7oRhIG/pGwUpmEDmBrPLgiVqofsWzWeYLrGVOFICHnG+2UHUNKMG ZIvjAh2Pjg+CYY6TrdmY6aTsw2f62vj8xTvk7Q/6pcCySOsHlmNYlVgUlTBv4pEATakf UsF6B3VwQBhtinKjd/BO4kEzhfF4xu6l6VCG4LVTrs0FNZRha7d9fAfHwsHTFnmQJpZw EPaA== 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 w133-v6si23351844pfd.313.2018.09.20.01.49.18; Thu, 20 Sep 2018 01:49:33 -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 S1732114AbeITOaY (ORCPT + 99 others); Thu, 20 Sep 2018 10:30:24 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:35860 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729647AbeITOaY (ORCPT ); Thu, 20 Sep 2018 10:30:24 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 01FD8CCC; Thu, 20 Sep 2018 08:48:00 +0000 (UTC) Date: Thu, 20 Sep 2018 10:47:58 +0200 From: Greg Kroah-Hartman To: Rasmus Villemoes Cc: Jason Baron , Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: [PATCH 02/22] linux/device.h: use unique identifier for each struct _ddebug Message-ID: <20180920084758.GB10922@kroah.com> References: <20180919220444.23190-1-linux@rasmusvillemoes.dk> <20180919220444.23190-3-linux@rasmusvillemoes.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180919220444.23190-3-linux@rasmusvillemoes.dk> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 20, 2018 at 12:04:24AM +0200, Rasmus Villemoes wrote: > Changes on x86-64 later in this series require that all struct _ddebug > descriptors in a translation unit uses distinct identifiers. Realize > that for dev_dbg_ratelimited by generating such an identifier via > __UNIQUE_ID and pass that to an extra level of macros. > > No functional change. > > Cc: Greg Kroah-Hartman > Signed-off-by: Rasmus Villemoes Reviewed-by: Greg Kroah-Hartman