All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Cristian Marussi <cristian.marussi@arm.com>
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, sudeep.holla@arm.com,
	james.quinlan@broadcom.com, Jonathan.Cameron@huawei.com,
	f.fainelli@gmail.com, etienne.carriere@linaro.org,
	vincent.guittot@linaro.org, souvik.chakravarty@arm.com,
	wleavitt@marvell.com, peter.hilber@opensynergy.com,
	nicola.mazzucato@arm.com, tarek.el-sherbiny@arm.com,
	quic_kshivnan@quicinc.com,
	"Rafael J. Wysocki" <rafael@kernel.org>
Subject: Re: [PATCH v6 09/17] debugfs: Export debugfs_create_str symbol
Date: Thu, 19 Jan 2023 16:35:32 +0100	[thread overview]
Message-ID: <Y8ljRNjUAp6tDoj1@kroah.com> (raw)
In-Reply-To: <20221229182253.948175-10-cristian.marussi@arm.com>

On Thu, Dec 29, 2022 at 06:22:45PM +0000, Cristian Marussi wrote:
> Needed by SCMI Raw mode support when compiled as a loadable module.
> 
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: "Rafael J. Wysocki" <rafael@kernel.org>
> Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
> ---
> Used by the following patch in this series:
> 
> "firmware: arm_scmi: Populate a common SCMI debugsfs root"
> 
> SCMI stack can be configured as module so export is needed.
> ---
>  fs/debugfs/file.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
> index b54f470e0d03..1f971c880dde 100644
> --- a/fs/debugfs/file.c
> +++ b/fs/debugfs/file.c
> @@ -899,6 +899,7 @@ ssize_t debugfs_read_file_str(struct file *file, char __user *user_buf,
>  
>  	return ret;
>  }
> +EXPORT_SYMBOL_GPL(debugfs_create_str);


Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Cristian Marussi <cristian.marussi@arm.com>
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, sudeep.holla@arm.com,
	james.quinlan@broadcom.com, Jonathan.Cameron@huawei.com,
	f.fainelli@gmail.com, etienne.carriere@linaro.org,
	vincent.guittot@linaro.org, souvik.chakravarty@arm.com,
	wleavitt@marvell.com, peter.hilber@opensynergy.com,
	nicola.mazzucato@arm.com, tarek.el-sherbiny@arm.com,
	quic_kshivnan@quicinc.com,
	"Rafael J. Wysocki" <rafael@kernel.org>
Subject: Re: [PATCH v6 09/17] debugfs: Export debugfs_create_str symbol
Date: Thu, 19 Jan 2023 16:35:32 +0100	[thread overview]
Message-ID: <Y8ljRNjUAp6tDoj1@kroah.com> (raw)
In-Reply-To: <20221229182253.948175-10-cristian.marussi@arm.com>

On Thu, Dec 29, 2022 at 06:22:45PM +0000, Cristian Marussi wrote:
> Needed by SCMI Raw mode support when compiled as a loadable module.
> 
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: "Rafael J. Wysocki" <rafael@kernel.org>
> Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
> ---
> Used by the following patch in this series:
> 
> "firmware: arm_scmi: Populate a common SCMI debugsfs root"
> 
> SCMI stack can be configured as module so export is needed.
> ---
>  fs/debugfs/file.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
> index b54f470e0d03..1f971c880dde 100644
> --- a/fs/debugfs/file.c
> +++ b/fs/debugfs/file.c
> @@ -899,6 +899,7 @@ ssize_t debugfs_read_file_str(struct file *file, char __user *user_buf,
>  
>  	return ret;
>  }
> +EXPORT_SYMBOL_GPL(debugfs_create_str);


Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

  reply	other threads:[~2023-01-19 15:36 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-29 18:22 [PATCH v6 00/17] Introduce a unified API for SCMI Server testing Cristian Marussi
2022-12-29 18:22 ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 01/17] firmware: arm_scmi: Refactor xfer in-flight registration routines Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 02/17] firmware: arm_scmi: Refactor polling helpers Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 03/17] firmware: arm_scmi: Refactor scmi_wait_for_message_response Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 04/17] firmware: arm_scmi: Add flags field to xfer Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 05/17] firmware: arm_scmi: Add xfer Raw helpers Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 06/17] firmware: arm_scmi: Move errors defs and code to common.h Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 07/17] firmware: arm_scmi: Add internal platform/channel IDs Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 08/17] include: trace: Add platform and channel instance references Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 09/17] debugfs: Export debugfs_create_str symbol Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2023-01-19 15:35   ` Greg Kroah-Hartman [this message]
2023-01-19 15:35     ` Greg Kroah-Hartman
2022-12-29 18:22 ` [PATCH v6 10/17] firmware: arm_scmi: Populate a common SCMI debugsfs root Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 11/17] firmware: arm_scmi: Add debugfs ABI documentation for common entries Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 12/17] firmware: arm_scmi: Add core Raw transmission support Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 13/17] firmware: arm_scmi: Add debugfs ABI documentation for Raw mode Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 14/17] firmware: arm_scmi: Reject SCMI drivers while in " Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 15/17] firmware: arm_scmi: Call Raw mode hooks from the core stack Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 16/17] firmware: arm_scmi: Add Raw mode coexistence support Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2022-12-29 18:22 ` [PATCH v6 17/17] firmware: arm_scmi: Add per-channel Raw injection support Cristian Marussi
2022-12-29 18:22   ` Cristian Marussi
2023-01-11 21:30   ` Cristian Marussi
2023-01-11 21:30     ` Cristian Marussi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y8ljRNjUAp6tDoj1@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=cristian.marussi@arm.com \
    --cc=etienne.carriere@linaro.org \
    --cc=f.fainelli@gmail.com \
    --cc=james.quinlan@broadcom.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nicola.mazzucato@arm.com \
    --cc=peter.hilber@opensynergy.com \
    --cc=quic_kshivnan@quicinc.com \
    --cc=rafael@kernel.org \
    --cc=souvik.chakravarty@arm.com \
    --cc=sudeep.holla@arm.com \
    --cc=tarek.el-sherbiny@arm.com \
    --cc=vincent.guittot@linaro.org \
    --cc=wleavitt@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.