summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@kernel.org>2026-02-02 13:33:39 -0800
committerEric Biggers <ebiggers@kernel.org>2026-02-04 11:31:54 -0800
commit433fbcac9ebe491b518b21c7305fba9a748c7d2c (patch)
tree51316e102b14d2aff90eb737385366a3408c3f9a /fs
parentf77f281b61183a5c0b87e6a4d101c70bd32c1c79 (diff)
fsverity: remove inode from fsverity_verification_ctx
This field is no longer used, so remove it. Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20260202213339.143683-1-ebiggers@kernel.org Signed-off-by: Eric Biggers <ebiggers@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/verity/verify.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/verity/verify.c b/fs/verity/verify.c
index 37e000f01c18..31797f9b24d0 100644
--- a/fs/verity/verify.c
+++ b/fs/verity/verify.c
@@ -19,7 +19,6 @@ struct fsverity_pending_block {
};
struct fsverity_verification_context {
- struct inode *inode;
struct fsverity_info *vi;
/*
@@ -316,7 +315,6 @@ static void
fsverity_init_verification_context(struct fsverity_verification_context *ctx,
struct fsverity_info *vi)
{
- ctx->inode = vi->inode;
ctx->vi = vi;
ctx->num_pending = 0;
if (vi->tree_params.hash_alg->algo_id == HASH_ALGO_SHA256 &&