diff options
author | Christopher James Halse Rogers <raof@ubuntu.com> | 2022-07-21 11:26:27 +1000 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-03-13 11:32:27 -0400 |
commit | 6ac9458f7a7419b95ded6125d3a28953547473f2 (patch) | |
tree | bb74bacc3d8fb768d3d5e35450098a5a15de5202 | |
parent | 2b5ca2a4889c0ae0528db8135426f872e17537dc (diff) |
lib: Export errname
The bcachefs module now wants this and it seems sensible.
Signed-off-by: Christopher James Halse Rogers <raof@ubuntu.com>
-rw-r--r-- | lib/errname.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/errname.c b/lib/errname.c index 2db8f5301ba0..71b2539fe99f 100644 --- a/lib/errname.c +++ b/lib/errname.c @@ -236,6 +236,7 @@ const char *errname(int err) return err > 0 ? name + 1 : name; } +EXPORT_SYMBOL(errname); /** * error_class - return standard/parent error (of a dynamic error code) |