From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932627AbdHYN2C (ORCPT ); Fri, 25 Aug 2017 09:28:02 -0400 Received: from mail.kernel.org ([198.145.29.99]:50342 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932201AbdHYN2A (ORCPT ); Fri, 25 Aug 2017 09:28:00 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org BBE4A219AA Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=goodmis.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=rostedt@goodmis.org Date: Fri, 25 Aug 2017 09:27:57 -0400 From: Steven Rostedt To: Borislav Petkov Cc: linux-edac , Tony Luck , Yazen Ghannam , X86 ML , LKML Subject: Re: [PATCH 4/7] seq_buf: Export seq_buf_printf() to modules Message-ID: <20170825092757.434f1eda@gandalf.local.home> In-Reply-To: <20170825102411.8682-5-bp@alien8.de> References: <20170825102411.8682-1-bp@alien8.de> <20170825102411.8682-5-bp@alien8.de> X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 25 Aug 2017 12:24:08 +0200 Borislav Petkov wrote: > From: Borislav Petkov > > Will be used in a module in a later patch. > > Signed-off-by: Borislav Petkov > Acked-by: Steven Rostedt (VMware) > --- > lib/seq_buf.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/seq_buf.c b/lib/seq_buf.c > index cb18469e1f49..b5217cf1824d 100644 > --- a/lib/seq_buf.c > +++ b/lib/seq_buf.c > @@ -90,6 +90,7 @@ int seq_buf_printf(struct seq_buf *s, const char *fmt, ...) > > return ret; > } > +EXPORT_SYMBOL_GPL(seq_buf_printf); May want to add seq_buf_putc() and seq_buf_puts() as well. Will explain in other patches. -- Steve > > #ifdef CONFIG_BINARY_PRINTF > /**