diff mbox series

[1/6] fsverity: Export fsverity_get_digest

Message ID c07eae3c278f36b8772bead49ff2894204c713a4.1669631086.git.alexl@redhat.com (mailing list archive)
State New, archived
Headers show
Series Composefs: an opportunistically sharing verified image filesystem | expand

Commit Message

Alexander Larsson Nov. 28, 2022, 11:13 a.m. UTC
Composefs needs to call this when built in module form, so
we need to export the symbol. This uses EXPORT_SYMBOL_GPL
like the other fsverity functions do.

Signed-off-by: Alexander Larsson <alexl@redhat.com>
---
 fs/verity/measure.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/fs/verity/measure.c b/fs/verity/measure.c
index e99c00350c28..2f0f7e369bf2 100644
--- a/fs/verity/measure.c
+++ b/fs/verity/measure.c
@@ -100,3 +100,4 @@  int fsverity_get_digest(struct inode *inode,
 
 	return 0;
 }
+EXPORT_SYMBOL_GPL(fsverity_get_digest);