mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 11:18:52 +03:00
Remove bcopy(), bzero(), bcmp()
bcopy() has a confusing argument order and is actually a move, not a copy; they're all deprecated since POSIX.1-2001 and removed in -2008, and we shim them out to mem*() on Linux anyway Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12996
This commit is contained in:
@@ -138,7 +138,7 @@ crypto_destroy_ctx_template(crypto_ctx_template_t tmpl)
|
||||
|
||||
ASSERT(ctx_tmpl->ct_prov_tmpl != NULL);
|
||||
|
||||
bzero(ctx_tmpl->ct_prov_tmpl, ctx_tmpl->ct_size);
|
||||
memset(ctx_tmpl->ct_prov_tmpl, 0, ctx_tmpl->ct_size);
|
||||
kmem_free(ctx_tmpl->ct_prov_tmpl, ctx_tmpl->ct_size);
|
||||
kmem_free(ctx_tmpl, sizeof (kcf_ctx_template_t));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user