mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-23 02:44:41 +03:00
Remaining {=> const} char|void *tag
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #13348
This commit is contained in:
+2
-2
@@ -1449,13 +1449,13 @@ sa_handle_get(objset_t *objset, uint64_t objid, void *userp,
|
||||
}
|
||||
|
||||
int
|
||||
sa_buf_hold(objset_t *objset, uint64_t obj_num, void *tag, dmu_buf_t **db)
|
||||
sa_buf_hold(objset_t *objset, uint64_t obj_num, const void *tag, dmu_buf_t **db)
|
||||
{
|
||||
return (dmu_bonus_hold(objset, obj_num, tag, db));
|
||||
}
|
||||
|
||||
void
|
||||
sa_buf_rele(dmu_buf_t *db, void *tag)
|
||||
sa_buf_rele(dmu_buf_t *db, const void *tag)
|
||||
{
|
||||
dmu_buf_rele(db, tag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user