mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
dm crypt: use kzfree
Use kzfree() instead of memset() + kfree(). Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> Reviewed-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
This commit is contained in:
parent
45194e4f89
commit
b81d6cf79b
@ -1156,8 +1156,7 @@ static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
|
|||||||
crypto_free_ablkcipher(tfm);
|
crypto_free_ablkcipher(tfm);
|
||||||
bad_cipher:
|
bad_cipher:
|
||||||
/* Must zero key material before freeing */
|
/* Must zero key material before freeing */
|
||||||
memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
|
kzfree(cc);
|
||||||
kfree(cc);
|
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1183,8 +1182,7 @@ static void crypt_dtr(struct dm_target *ti)
|
|||||||
dm_put_device(ti, cc->dev);
|
dm_put_device(ti, cc->dev);
|
||||||
|
|
||||||
/* Must zero key material before freeing */
|
/* Must zero key material before freeing */
|
||||||
memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
|
kzfree(cc);
|
||||||
kfree(cc);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int crypt_map(struct dm_target *ti, struct bio *bio,
|
static int crypt_map(struct dm_target *ti, struct bio *bio,
|
||||||
|
Loading…
Reference in New Issue
Block a user