diff mbox series

fs/seq_file: export seq_put_hex_ll symbol

Message ID 20191001135322.GA26299@kappa (mailing list archive)
State New, archived
Headers show
Series fs/seq_file: export seq_put_hex_ll symbol | expand

Commit Message

Torin Carey Oct. 1, 2019, 1:53 p.m. UTC
The seq_put_hex_ll symbol should be exported to allow dynamically loaded
modules to call the function.

Signed-off-by: Torin Carey <torin@tcarey.uk>
---
 fs/seq_file.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Christoph Hellwig Oct. 6, 2019, 4:01 p.m. UTC | #1
On Tue, Oct 01, 2019 at 02:53:24PM +0100, Torin Carey wrote:
> The seq_put_hex_ll symbol should be exported to allow dynamically loaded
> modules to call the function.

Please send it along with the series for your patch adding a user.
diff mbox series

Patch

diff --git a/fs/seq_file.c b/fs/seq_file.c
index 1600034a929b..9382d3b335fa 100644
--- a/fs/seq_file.c
+++ b/fs/seq_file.c
@@ -772,6 +772,7 @@  void seq_put_hex_ll(struct seq_file *m, const char *delimiter,
 	}
 	m->count += len;
 }
+EXPORT_SYMBOL(seq_put_hex_ll);
 
 void seq_put_decimal_ll(struct seq_file *m, const char *delimiter, long long num)
 {