From mboxrd@z Thu Jan 1 00:00:00 1970 From: akpm@linux-foundation.org Subject: [merged] mm-tracing-print-symbol-name-for-kmem_alloc_node-call_site-events.patch removed from -mm tree Date: Fri, 31 Jan 2020 15:18:20 -0800 Message-ID: <20200131231820.3_xTItbW2%akpm@linux-foundation.org> Reply-To: linux-kernel@vger.kernel.org Return-path: Received: from mail.kernel.org ([198.145.29.99]:50472 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726347AbgAaXSV (ORCPT ); Fri, 31 Jan 2020 18:18:21 -0500 Sender: mm-commits-owner@vger.kernel.org List-Id: mm-commits@vger.kernel.org To: changbin.du@intel.com, joel@joelfernandes.org, mingo@redhat.com, mm-commits@vger.kernel.org, rostedt@goodmis.org, sunjunyong@xiaomi.com, sunjy516@gmail.com, timmurray@google.com The patch titled Subject: mm, tracing: print symbol name for kmem_alloc_node call_site events has been removed from the -mm tree. Its filename was mm-tracing-print-symbol-name-for-kmem_alloc_node-call_site-events.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Junyong Sun Subject: mm, tracing: print symbol name for kmem_alloc_node call_site events Print the call_site ip of kmem_alloc_node using '%pS' to improve the readability of raw slab trace points. Link: http://lkml.kernel.org/r/1577949568-4518-1-git-send-email-sunjunyong@xiaomi.com Signed-off-by: Junyong Sun Acked-by: Steven Rostedt (VMware) Cc: Ingo Molnar Cc: Joel Fernandes (Google) Cc: Changbin Du Cc: Tim Murray Signed-off-by: Andrew Morton --- include/trace/events/kmem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/include/trace/events/kmem.h~mm-tracing-print-symbol-name-for-kmem_alloc_node-call_site-events +++ a/include/trace/events/kmem.h @@ -88,8 +88,8 @@ DECLARE_EVENT_CLASS(kmem_alloc_node, __entry->node = node; ), - TP_printk("call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d", - __entry->call_site, + TP_printk("call_site=%pS ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d", + (void *)__entry->call_site, __entry->ptr, __entry->bytes_req, __entry->bytes_alloc, _ Patches currently in -mm which might be from sunjy516@gmail.com are