Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp1729516imm; Thu, 20 Sep 2018 01:48:40 -0700 (PDT) X-Google-Smtp-Source: ANB0VdZObUFXpWtrNhAUBwNN0/CH67au7GUPRSg5zNDpJd6J5gl/9+Mx4DmAZuWHZN8W6bxX7SBc X-Received: by 2002:a17:902:bc43:: with SMTP id t3-v6mr25088749plz.199.1537433320766; Thu, 20 Sep 2018 01:48:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537433320; cv=none; d=google.com; s=arc-20160816; b=KVrCYsrOi0TFF86EeX3AUuz4F9GP0zeiA2WfbgglxjOZPFNj+M154hcl3FDCsX7EHU B7QBGrdGPWp7bywbz0ow0r0sHLTgsygTDjG1J10TJQfl4RwuIQCkAxbR1A7NnhJKSTu6 y35z8n7wixwEaa6TQ6In5vHzrO8tD2QfZypOmzdYQJUOZLIzhCW9GmdPF4xSglM8CFHH y0HkAsL1w/9WnRonYq74vavYZIGv8ueTIb8m/W7KrEu34tTNo/N6EM0cvgv0SMzNiGPc 12oAoEapql0dmLArysqVHtnNCkhB0CRfU8wLbqBPS2rVmq3BiWQ0Lkdj0paBZs7Nf+Dw 1nBA== 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=khcHEeq/11vRY+J5rwxWyq9MWmaL8ONGqeJb7uCCphU=; b=yAiF2JrWMU8wM1GOkZUrM/OFRph8dj9JlukVRf+rfjaDogT+vchbLNybcX/7eSeHXA o5jAQOxQ1vdmvt0+cyfyuC7Wcx2M0GuFVDaYe3gpF4qwW1Wi+rAxKvbQggt9zT1e7UFj IHh+Ul76PqujMBR4SZvCwN3VyfNcFV3MP9lYzpLaWZY8ZJ+L87B74BdUzv5Mi3ESi+Bo I0NgkRFLe6rIqOJ2nfGkQfcpw9swK2Y549Reer+fhdZSD7tflNBQxKkeADfRhRMWKm1V kiiD68Ym76tJT0JSb3c2+mwlFn3W0dSXk+I5/2XTRk1eJZwDD3RoIwIOznMsE2kNkHJ4 ojmw== 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 k130-v6si24382085pfc.282.2018.09.20.01.48.24; Thu, 20 Sep 2018 01:48:40 -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 S1732064AbeITOaS (ORCPT + 99 others); Thu, 20 Sep 2018 10:30:18 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:35852 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729647AbeITOaS (ORCPT ); Thu, 20 Sep 2018 10:30:18 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 0CEFCCCC; Thu, 20 Sep 2018 08:47:54 +0000 (UTC) Date: Thu, 20 Sep 2018 10:47:52 +0200 From: Greg Kroah-Hartman To: Rasmus Villemoes Cc: Jason Baron , Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: [PATCH 01/22] linux/device.h: use DYNAMIC_DEBUG_BRANCH in dev_dbg_ratelimited Message-ID: <20180920084752.GA10922@kroah.com> References: <20180919220444.23190-1-linux@rasmusvillemoes.dk> <20180919220444.23190-2-linux@rasmusvillemoes.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180919220444.23190-2-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:23AM +0200, Rasmus Villemoes wrote: > dev_dbg_ratelimited tests the dynamic debug descriptor the old-fashioned > way, and doesn't utilize the static key/jump label implementation on > architectures that HAVE_JUMP_LABEL. Use the DYNAMIC_DEBUG_BRANCH which > is defined appropriately. > > Cc: Greg Kroah-Hartman > Signed-off-by: Rasmus Villemoes Reviewed-by: Greg Kroah-Hartman