From: Steffen Trumtrar <[email protected]> This is required to provide uuid based integrity functionality for: ima_policy (fsuuid option) and the 'evmctl' command ('--uuid' option).
Co-developed-by: Oleksij Rempel <[email protected]> Co-developed-by: Juergen Borleis <[email protected]> Signed-off-by: Steffen Trumtrar <[email protected]> --- fs/ubifs/super.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 138b9426c6c1..a8383ca39a47 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -2230,6 +2230,8 @@ static int ubifs_fill_super(struct super_block *sb, void *data, int silent) goto out_umount; } + import_uuid(&sb->s_uuid, c->uuid); + mutex_unlock(&c->umount_mutex); return 0; -- 2.20.1

