From: Darrick J. Wong Date: Mon, 22 Apr 2024 17:01:15 +0000 (-0700) Subject: libxfs: remove kmem_alloc, kmem_zalloc, and kmem_free X-Git-Tag: v6.9.0~17^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb7854672d26b4c68285468554b1abfa18f96169;p=thirdparty%2Fxfsprogs-dev.git libxfs: remove kmem_alloc, kmem_zalloc, and kmem_free Remove all three of these helpers now that the kernel has dropped them. Signed-off-by: Darrick J. Wong Reviewed-by: Christoph Hellwig --- diff --git a/db/bmap_inflate.c b/db/bmap_inflate.c index c85d5dc0..00e1aff6 100644 --- a/db/bmap_inflate.c +++ b/db/bmap_inflate.c @@ -327,7 +327,7 @@ out_resv_list: /* Leak any unused blocks */ list_for_each_entry_safe(resv, n, &bd.resv_list, list) { list_del(&resv->list); - kmem_free(resv); + kfree(resv); } return error; } diff --git a/include/kmem.h b/include/kmem.h index 6818a404..386b4a6b 100644 --- a/include/kmem.h +++ b/include/kmem.h @@ -50,15 +50,7 @@ kmem_cache_free(struct kmem_cache *cache, void *ptr) free(ptr); } -extern void *kmem_alloc(size_t, int); extern void *kvmalloc(size_t, gfp_t); -extern void *kmem_zalloc(size_t, int); - -static inline void -kmem_free(const void *ptr) { - free((void *)ptr); -} - extern void *krealloc(void *, size_t, int); static inline void *kmalloc(size_t size, gfp_t flags) @@ -70,7 +62,7 @@ static inline void *kmalloc(size_t size, gfp_t flags) static inline void kfree(const void *ptr) { - return kmem_free(ptr); + free((void *)ptr); } #endif diff --git a/libxfs/defer_item.c b/libxfs/defer_item.c index d67032c2..680a7266 100644 --- a/libxfs/defer_item.c +++ b/libxfs/defer_item.c @@ -606,7 +606,7 @@ xfs_attr_free_item( if (attr->xattri_da_state) xfs_da_state_free(attr->xattri_da_state); if (attr->xattri_da_args->op_flags & XFS_DA_OP_RECOVERY) - kmem_free(attr); + kfree(attr); else kmem_cache_free(xfs_attr_intent_cache, attr); } diff --git a/libxfs/init.c b/libxfs/init.c index 82618a07..de91bbf3 100644 --- a/libxfs/init.c +++ b/libxfs/init.c @@ -893,7 +893,7 @@ libxfs_buftarg_free( struct xfs_buftarg *btp) { cache_destroy(btp->bcache); - kmem_free(btp); + kfree(btp); } /* diff --git a/libxfs/kmem.c b/libxfs/kmem.c index c264be01..a2a3935d 100644 --- a/libxfs/kmem.c +++ b/libxfs/kmem.c @@ -66,9 +66,14 @@ kmem_cache_zalloc(struct kmem_cache *cache, gfp_t flags) } void * -kmem_alloc(size_t size, int flags) +kvmalloc(size_t size, gfp_t flags) { - void *ptr = malloc(size); + void *ptr; + + if (flags & __GFP_ZERO) + ptr = calloc(1, size); + else + ptr = malloc(size); if (ptr == NULL) { fprintf(stderr, _("%s: malloc failed (%d bytes): %s\n"), @@ -78,23 +83,6 @@ kmem_alloc(size_t size, int flags) return ptr; } -void * -kvmalloc(size_t size, gfp_t flags) -{ - if (flags & __GFP_ZERO) - return kmem_zalloc(size, 0); - return kmem_alloc(size, 0); -} - -void * -kmem_zalloc(size_t size, int flags) -{ - void *ptr = kmem_alloc(size, flags); - - memset(ptr, 0, size); - return ptr; -} - void * krealloc(void *ptr, size_t new_size, int flags) { diff --git a/libxlog/xfs_log_recover.c b/libxlog/xfs_log_recover.c index 99f759d5..31b11fee 100644 --- a/libxlog/xfs_log_recover.c +++ b/libxlog/xfs_log_recover.c @@ -991,7 +991,7 @@ xlog_recover_new_tid( { struct xlog_recover *trans; - trans = kmem_zalloc(sizeof(struct xlog_recover), 0); + trans = kzalloc(sizeof(struct xlog_recover), 0); trans->r_log_tid = tid; trans->r_lsn = lsn; INIT_LIST_HEAD(&trans->r_itemq); @@ -1006,7 +1006,7 @@ xlog_recover_add_item( { struct xlog_recover_item *item; - item = kmem_zalloc(sizeof(struct xlog_recover_item), 0); + item = kzalloc(sizeof(struct xlog_recover_item), 0); INIT_LIST_HEAD(&item->ri_list); list_add_tail(&item->ri_list, head); } @@ -1085,7 +1085,7 @@ xlog_recover_add_to_trans( return 0; } - ptr = kmem_alloc(len, 0); + ptr = kmalloc(len, 0); memcpy(ptr, dp, len); in_f = (struct xfs_inode_log_format *)ptr; @@ -1107,13 +1107,12 @@ xlog_recover_add_to_trans( "bad number of regions (%d) in inode log format", in_f->ilf_size); ASSERT(0); - kmem_free(ptr); + kfree(ptr); return XFS_ERROR(EIO); } item->ri_total = in_f->ilf_size; - item->ri_buf = - kmem_zalloc(item->ri_total * sizeof(xfs_log_iovec_t), + item->ri_buf = kzalloc(item->ri_total * sizeof(xfs_log_iovec_t), 0); } ASSERT(item->ri_total > item->ri_cnt); @@ -1141,13 +1140,13 @@ xlog_recover_free_trans( /* Free the regions in the item. */ list_del(&item->ri_list); for (i = 0; i < item->ri_cnt; i++) - kmem_free(item->ri_buf[i].i_addr); + kfree(item->ri_buf[i].i_addr); /* Free the item itself */ - kmem_free(item->ri_buf); - kmem_free(item); + kfree(item->ri_buf); + kfree(item); } /* Free the transaction recover structure */ - kmem_free(trans); + kfree(trans); } /* diff --git a/repair/bmap_repair.c b/repair/bmap_repair.c index 845584f1..317061aa 100644 --- a/repair/bmap_repair.c +++ b/repair/bmap_repair.c @@ -595,7 +595,7 @@ xrep_bmap( if (error) return error; - rb = kmem_zalloc(sizeof(struct xrep_bmap), KM_NOFS | KM_MAYFAIL); + rb = kzalloc(sizeof(struct xrep_bmap), 0); if (!rb) return ENOMEM; rb->sc = sc; @@ -622,7 +622,7 @@ xrep_bmap( out_bitmap: free_slab(&rb->bmap_records); out_rb: - kmem_free(rb); + kfree(rb); return error; }