mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 1/1] fs/read_write: Do not export __kernel_write() to the entire world
@ 2026-06-04  9:52 Andy Shevchenko
  2026-06-04 11:35 ` Christian Brauner
  0 siblings, 1 reply; 2+ messages in thread
From: Andy Shevchenko @ 2026-06-04  9:52 UTC (permalink / raw)
  To: Christian Brauner (Amutable), linux-fsdevel, linux-kernel
  Cc: Al Viro, Jan Kara, Andy Shevchenko

Since we have EXPORT_SYMBOL_FOR_MODULES(), we may narrow
the __kernel_write() export to the only which really needs it.
With that being done, update the respective comment.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---

v2: updated to use new name of the macro

 fs/read_write.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/fs/read_write.c b/fs/read_write.c
index 1e5444f4dab3..ba81bca1e3cb 100644
--- a/fs/read_write.c
+++ b/fs/read_write.c
@@ -641,13 +641,12 @@ ssize_t __kernel_write(struct file *file, const void *buf, size_t count, loff_t
 	return __kernel_write_iter(file, &iter, pos);
 }
 /*
- * This "EXPORT_SYMBOL_GPL()" is more of a "EXPORT_SYMBOL_DONTUSE()",
- * but autofs is one of the few internal kernel users that actually
+ * autofs is one of the few internal kernel users that actually
  * wants this _and_ can be built as a module. So we need to export
  * this symbol for autofs, even though it really isn't appropriate
  * for any other kernel modules.
  */
-EXPORT_SYMBOL_GPL(__kernel_write);
+EXPORT_SYMBOL_FOR_MODULES(__kernel_write, "autofs");
 
 ssize_t kernel_write(struct file *file, const void *buf, size_t count,
 			    loff_t *pos)
-- 
2.50.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v2 1/1] fs/read_write: Do not export __kernel_write() to the entire world
  2026-06-04  9:52 [PATCH v2 1/1] fs/read_write: Do not export __kernel_write() to the entire world Andy Shevchenko
@ 2026-06-04 11:35 ` Christian Brauner
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Brauner @ 2026-06-04 11:35 UTC (permalink / raw)
  To: linux-fsdevel, linux-kernel, Andy Shevchenko
  Cc: Christian Brauner, Al Viro, Jan Kara

On Thu, 04 Jun 2026 11:52:02 +0200, Andy Shevchenko wrote:
> Since we have EXPORT_SYMBOL_FOR_MODULES(), we may narrow
> the __kernel_write() export to the only which really needs it.
> With that being done, update the respective comment.

Applied to the vfs-7.2.misc branch of the vfs/vfs.git tree.
Patches in the vfs-7.2.misc branch should appear in linux-next soon.

Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.

It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.

Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs-7.2.misc

[1/1] fs/read_write: Do not export __kernel_write() to the entire world
      https://git.kernel.org/vfs/vfs/c/438f0c1fad74

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-06-04 11:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-04  9:52 [PATCH v2 1/1] fs/read_write: Do not export __kernel_write() to the entire world Andy Shevchenko
2026-06-04 11:35 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome