mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 14:40:12 -04:00
staging: lustre: replace OBD_SLAB_ALLOC_PTR with kmem_cache_alloc
The OBD_SLAB_ALLOC_PTR macro expands to call to kmem_cache_alloc, which may be used directly. Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b4fb17e750
commit
bbc63f56fb
@@ -35,7 +35,7 @@ static inline struct osc_quota_info *osc_oqi_alloc(u32 id)
|
||||
{
|
||||
struct osc_quota_info *oqi;
|
||||
|
||||
OBD_SLAB_ALLOC_PTR(oqi, osc_quota_kmem);
|
||||
oqi = kmem_cache_alloc(osc_quota_kmem, GFP_NOFS | __GFP_ZERO);
|
||||
if (oqi != NULL)
|
||||
oqi->oqi_id = id;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user