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 @@ bad_ivmode:
|
||||||
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