Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754625AbdIHG0K (ORCPT ); Fri, 8 Sep 2017 02:26:10 -0400 Received: from mail-pg0-f66.google.com ([74.125.83.66]:34819 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753206AbdIHG0I (ORCPT ); Fri, 8 Sep 2017 02:26:08 -0400 X-Google-Smtp-Source: ADKCNb6P59cY6Rza58uKhl1MAkZiOAQJX34Tx3hQVloN8Lf3lYvoYmqrVjf2bvdd7RDwG093Lre2hQ== Date: Fri, 8 Sep 2017 15:23:17 +0900 From: Sergey Senozhatsky To: Helge Deller Cc: linux-kernel@vger.kernel.org, Sergey Senozhatsky , Petr Mladek , Andrew Morton Subject: Re: [PATCH 00/14] Fix wrong %pF and %pS printk format specifier usages Message-ID: <20170908062317.GB496@jagdpanzerIV.localdomain> References: <1504729681-3504-1-git-send-email-deller@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1504729681-3504-1-git-send-email-deller@gmx.de> User-Agent: Mutt/1.9.0 (2017-09-02) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 442 Lines: 13 On (09/06/17 22:27), Helge Deller wrote: > This patch series fixes the wrong usages of the %pF and %pS printk format > specifiers throughout the kernel code. > > Both specifiers have the same result on most architectures. But on ia64, ppc64 > and parisc64 architectures the %pF specifier does an extra conversion because > there function pointers are actually function descriptors. Helge, did you also grep for %pf? or just for %pF? -ss