mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
xfs: Remove kmem_zone_free() wrapper
We can remove it now, without needing to rework the KM_ flags. Use kmem_cache_free() directly. Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
parent
aaf54eb8bc
commit
377bcd5f3b
17 changed files with 27 additions and 33 deletions
|
@ -55,7 +55,7 @@ STATIC void
|
|||
xfs_icreate_item_release(
|
||||
struct xfs_log_item *lip)
|
||||
{
|
||||
kmem_zone_free(xfs_icreate_zone, ICR_ITEM(lip));
|
||||
kmem_cache_free(xfs_icreate_zone, ICR_ITEM(lip));
|
||||
}
|
||||
|
||||
static const struct xfs_item_ops xfs_icreate_item_ops = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue