On Mon, Jan 26, 2026 at 05:50:55AM +0100, Christoph Hellwig wrote: > struct fsverity_info contains information that is only read in the > verification path. Apply the const qualifier to match various explicitly > passed arguments. > > Signed-off-by: Christoph Hellwig <[email protected]> > --- > fs/verity/verify.c | 15 ++++++++------- > 1 file changed, 8 insertions(+), 7 deletions(-)
Did you consider that fsverity_info::hash_block_verified is written to? It's a pointer to an array, so the 'const' doesn't apply to its contents. But logically it's still part of the fsverity information. - Eric _______________________________________________ Linux-f2fs-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
