From nobody Wed Dec 31 13:51:46 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A04B2C4332F for ; Thu, 2 Nov 2023 04:22:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348469AbjKBEWU (ORCPT ); Thu, 2 Nov 2023 00:22:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40324 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348439AbjKBEWP (ORCPT ); Thu, 2 Nov 2023 00:22:15 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D3056DC for ; Wed, 1 Nov 2023 21:22:12 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83064C433C7; Thu, 2 Nov 2023 04:22:12 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.96) (envelope-from ) id 1qyPDf-00Egnx-1w; Thu, 02 Nov 2023 00:22:11 -0400 Message-ID: <20231102042211.411364767@goodmis.org> User-Agent: quilt/0.66 Date: Thu, 02 Nov 2023 00:21:08 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Masami Hiramatsu , Mark Rutland , Andrew Morton , Christophe JAILLET Subject: [for-next][PATCH 1/2] seq_buf: Export seq_buf_putc() References: <20231102042107.733372008@goodmis.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Christophe JAILLET Mark seq_buf_putc() which is part of the seq_buf API to be exported to kernel loadable GPL modules. Link: https://lkml.kernel.org/r/5c9a5ed97ac37dbdcd9c1e7bcbdec9ac166e79be.16= 98861216.git.christophe.jaillet@wanadoo.fr Signed-off-by: Christophe JAILLET Signed-off-by: Steven Rostedt (Google) --- lib/seq_buf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/seq_buf.c b/lib/seq_buf.c index 23518f77ea9c..fb99168c3309 100644 --- a/lib/seq_buf.c +++ b/lib/seq_buf.c @@ -208,6 +208,7 @@ int seq_buf_putc(struct seq_buf *s, unsigned char c) seq_buf_set_overflow(s); return -1; } +EXPORT_SYMBOL_GPL(seq_buf_putc); =20 /** * seq_buf_putmem - write raw data into the sequenc buffer --=20 2.42.0 From nobody Wed Dec 31 13:51:46 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E2FFCC4167D for ; Thu, 2 Nov 2023 04:22:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348474AbjKBEWX (ORCPT ); Thu, 2 Nov 2023 00:22:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40346 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348448AbjKBEWP (ORCPT ); Thu, 2 Nov 2023 00:22:15 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5C4E6E4 for ; Wed, 1 Nov 2023 21:22:13 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C6642C433CC; Thu, 2 Nov 2023 04:22:12 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.96) (envelope-from ) id 1qyPDf-00EgoV-2c; Thu, 02 Nov 2023 00:22:11 -0400 Message-ID: <20231102042211.622636406@goodmis.org> User-Agent: quilt/0.66 Date: Thu, 02 Nov 2023 00:21:09 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Masami Hiramatsu , Mark Rutland , Andrew Morton , Christophe JAILLET Subject: [for-next][PATCH 2/2] seq_buf: Export seq_buf_puts() References: <20231102042107.733372008@goodmis.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Christophe JAILLET Mark seq_buf_puts() which is part of the seq_buf API to be exported to kernel loadable GPL modules. Link: https://lkml.kernel.org/r/b9e3737f66ec2450221b492048ce0d9c65c84953.16= 98861216.git.christophe.jaillet@wanadoo.fr Signed-off-by: Christophe JAILLET Signed-off-by: Steven Rostedt (Google) --- lib/seq_buf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/seq_buf.c b/lib/seq_buf.c index fb99168c3309..010c730ca7fc 100644 --- a/lib/seq_buf.c +++ b/lib/seq_buf.c @@ -187,6 +187,7 @@ int seq_buf_puts(struct seq_buf *s, const char *str) seq_buf_set_overflow(s); return -1; } +EXPORT_SYMBOL_GPL(seq_buf_puts); =20 /** * seq_buf_putc - sequence printing of simple character --=20 2.42.0