MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sa_bulk_update

Function sa_bulk_update

freebsd/contrib/openzfs/module/zfs/sa.c:2106–2116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2104}
2105
2106int
2107sa_bulk_update(sa_handle_t *hdl, sa_bulk_attr_t *attrs, int count, dmu_tx_t *tx)
2108{
2109 int error;
2110
2111 ASSERT(hdl);
2112 mutex_enter(&hdl->sa_lock);
2113 error = sa_bulk_update_impl(hdl, attrs, count, tx);
2114 mutex_exit(&hdl->sa_lock);
2115 return (error);
2116}
2117
2118int
2119sa_remove(sa_handle_t *hdl, sa_attr_type_t attr, dmu_tx_t *tx)

Callers 15

zfs_setattrFunction · 0.85
zfs_putpagesFunction · 0.85
zfs_aclset_commonFunction · 0.85
zfs_truncFunction · 0.85
zfs_freespFunction · 0.85
zfs_link_createFunction · 0.85
zfs_link_destroyFunction · 0.85
zfs_setattr_dirFunction · 0.85
zfs_setattrFunction · 0.85
zfs_putpageFunction · 0.85
zfs_dirty_inodeFunction · 0.85
zfs_aclset_commonFunction · 0.85

Calls 3

mutex_enterFunction · 0.85
sa_bulk_update_implFunction · 0.85
mutex_exitFunction · 0.85

Tested by

no test coverage detected